Re: [PATCH 2/3] [POWERPC] Add AMCC Kilauea eval board support to platforms/40x

2007-10-10 Thread Stefan Roese
On Wednesday 10 October 2007, Josh Boyer wrote: > > > Do you really need config options for 405EP/EX? I don't seem them used > > > anywhere else in the code (and it's also contradictory to the whole new > > > multiplatform way of looking at stuff :). > > > > > > I know the 405/440 is still somewhat

Re: [PATCH v2] powerpc: don't enable cpu hotplug on mpic-based pseries

2007-10-10 Thread Olof Johansson
On Thu, Oct 11, 2007 at 03:52:04PM +1000, Paul Mackerras wrote: > Olof Johansson writes: > > > Don't allow cpu hotplug on systems lacking XICS interrupt controller, > > since current code is hardcoded for it. > ... > > + for (np = NULL; (np = of_find_node_by_name(np, > > +

Re: [PATCH v2] powerpc: don't enable cpu hotplug on mpic-based pseries

2007-10-10 Thread Paul Mackerras
Olof Johansson writes: > Don't allow cpu hotplug on systems lacking XICS interrupt controller, > since current code is hardcoded for it. ... > + for (np = NULL; (np = of_find_node_by_name(np, > +"interrupt-controller"));) { Looks like for_each_n

Re: [PATCH 3/7] [POWERPC] remove iSeries_vio_dev

2007-10-10 Thread Olof Johansson
On Thu, Oct 11, 2007 at 03:29:49PM +1000, Stephen Rothwell wrote: > Hi Olof, > > On Thu, 11 Oct 2007 00:27:31 -0500 Olof Johansson <[EMAIL PROTECTED]> wrote: > > > > Oh nevermind, I just noticed the variable got moved in the next > > patch. Twice the review work! > > Thanks for the review in any

Re: [PATCH 3/7] [POWERPC] remove iSeries_vio_dev

2007-10-10 Thread Stephen Rothwell
Hi Olof, On Thu, 11 Oct 2007 00:27:31 -0500 Olof Johansson <[EMAIL PROTECTED]> wrote: > > Oh nevermind, I just noticed the variable got moved in the next > patch. Twice the review work! Thanks for the review in any case. -- Cheers, Stephen Rothwell[EMAIL PROTECTED] http://ww

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread Grant Likely
On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > > My main concern is that I don't like the implicit numbering that > > occurs simply based on the order of devices in the device tree. If > > the probe algorithm ever changes to parse in reverse order or > > something reorders the tree, then t

Re: [PATCH] [POWERPC] move of_platform_driver initialisations: arch/powerpc

2007-10-10 Thread Olof Johansson
On Thu, Oct 11, 2007 at 03:19:03PM +1000, Stephen Rothwell wrote: > We no longer initialise the name and owner fields of the > of_platform_driver, but use the fields of the embedded device_driver's > name field instead. > > Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> Acked-by: Olof Johans

Re: [PATCH 3/7] [POWERPC] remove iSeries_vio_dev

2007-10-10 Thread Olof Johansson
On Thu, Oct 11, 2007 at 12:25:35AM -0500, Olof Johansson wrote: > Hi Stephen, > > > @@ -189,6 +191,34 @@ void iommu_devnode_init_iSeries(struct pci_dev *pdev, > > struct device_node *dn) > > } > > #endif > > > > +extern struct iommu_table vio_iommu_table; > > This looks like it really should

Re: [PATCH 3/7] [POWERPC] remove iSeries_vio_dev

2007-10-10 Thread Olof Johansson
Hi Stephen, On Thu, Oct 11, 2007 at 02:53:32PM +1000, Stephen Rothwell wrote: > It was only being used to carry around dma_iommu_ops and vio_iommu_table > which we can use directly instead. This also means that vio_bus_device > doesn't need to refer to them either. > > diff --git a/arch/powerpc/

[PATCH] [POWERPC] move of_platform_driver initialisations: arch/powerpc

2007-10-10 Thread Stephen Rothwell
We no longer initialise the name and owner fields of the of_platform_driver, but use the fields of the embedded device_driver's name field instead. Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> --- arch/powerpc/platforms/pasemi/gpio_mdio.c |4 +++- arch/powerpc/sysdev/axonram.c

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread David Gibson
On Wed, Oct 10, 2007 at 10:58:25PM -0600, Grant Likely wrote: > On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > > On Wed, Oct 10, 2007 at 10:18:50PM -0600, Grant Likely wrote: > > > On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > > > > On Wed, Oct 10, 2007 at 08:25:36PM -0600, Grant L

[PATCH 7/7] [POWERPC] iSeries: move viodasd probing

2007-10-10 Thread Stephen Rothwell
This way we only have entries in the device tree for disks that actually exist. A slight complication is that disks may be attached to LPARs at runtime. Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> Acked-by: Jens Axboe <[EMAIL PROTECTED]> --- arch/powerpc/platforms/iseries/dt.c |6 -

[PATCH 6/7] [POWERPC] iSeries: move detection of virtual tapes

2007-10-10 Thread Stephen Rothwell
Now we will only have entries in the device tree for the actual existing devices (including their OS/400 properties). This way viotape.c gets all the information about the devices from the device tree. Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> --- arch/powerpc/platforms/iseries/dt.c |

[PATCH 5/7] [POWERPC] iSeries: move detection of virtual cdroms

2007-10-10 Thread Stephen Rothwell
Now we will only have entries in the device tree for the actual existing devices (including their OS/400 properties). This way viocd.c gets all the information about the devices from the device tree. Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> Acked-by: Jens Axboe <[EMAIL PROTECTED]> ---

[PATCH 4/7] [POWERPC] Remove more iSeries specific stuff from vio.c

2007-10-10 Thread Stephen Rothwell
Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> --- arch/powerpc/kernel/vio.c | 78 ++- arch/powerpc/platforms/iseries/iommu.c | 24 +- include/asm-powerpc/iseries/iommu.h|4 ++ 3 files changed, 52 insertions(+), 54 deletions(-) --

[PATCH 3/7] [POWERPC] remove iSeries_vio_dev

2007-10-10 Thread Stephen Rothwell
It was only being used to carry around dma_iommu_ops and vio_iommu_table which we can use directly instead. This also means that vio_bus_device doesn't need to refer to them either. Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> Acked-by: Jens Axboe <[EMAIL PROTECTED]> --- arch/powerpc/kern

[PATCH 2/7] [POWERPC] iSeries: simplify viocd initialisation

2007-10-10 Thread Stephen Rothwell
We don't need to keep a lump of dma coherent memory around for the life of the module. Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> Acked-by: Jens Axboe <[EMAIL PROTECTED]> --- drivers/cdrom/viocd.c | 37 + 1 files changed, 13 insertions(+), 24 deletio

[PATCH 1/7] [POWERPC] Clean up vio.h

2007-10-10 Thread Stephen Rothwell
Remove vio_dma_ops declaration (since it no longer exists) and some unused fields from struct vio_driver. Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> --- arch/powerpc/kernel/vio.c | 11 --- include/asm-powerpc/vio.h |5 - 2 files changed, 0 insertions(+), 16 deletions(-)

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread Grant Likely
On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > On Wed, Oct 10, 2007 at 10:18:50PM -0600, Grant Likely wrote: > > On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > > > On Wed, Oct 10, 2007 at 08:25:36PM -0600, Grant Likely wrote: > > > > On 10/10/07, David Gibson <[EMAIL PROTECTED]> wro

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread David Gibson
On Wed, Oct 10, 2007 at 10:18:50PM -0600, Grant Likely wrote: > On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > > On Wed, Oct 10, 2007 at 08:25:36PM -0600, Grant Likely wrote: > > > On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > > > > We've used 'cell-index' for similar purposes on o

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread Grant Likely
On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > On Wed, Oct 10, 2007 at 08:25:36PM -0600, Grant Likely wrote: > > On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > > > We've used 'cell-index' for similar purposes on other 4xx. > > > > Unfortunately, 'cell' has been used in the sense of

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread David Gibson
On Wed, Oct 10, 2007 at 08:25:36PM -0600, Grant Likely wrote: > On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > > On Wed, Oct 10, 2007 at 03:38:02PM -0500, Josh Boyer wrote: [snip] > > > "number" seems a bit to generic to me. logical-number seems a bit more > > > descriptive. > > > > We've

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread Grant Likely
On 10/10/07, David Gibson <[EMAIL PROTECTED]> wrote: > On Wed, Oct 10, 2007 at 03:38:02PM -0500, Josh Boyer wrote: > > On Mon, 2007-10-08 at 01:53 -0600, Grant Likely wrote: > > > From: Grant Likely <[EMAIL PROTECTED]> > > > > > > Signed-off-by: Grant Likely <[EMAIL PROTECTED]> > > > --- > > > > >

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread David Gibson
On Wed, Oct 10, 2007 at 03:38:02PM -0500, Josh Boyer wrote: > On Mon, 2007-10-08 at 01:53 -0600, Grant Likely wrote: > > From: Grant Likely <[EMAIL PROTECTED]> > > > > Signed-off-by: Grant Likely <[EMAIL PROTECTED]> > > --- > > > > This is a first draft, please review and comment. > > I'll start

Re: [PATCH] Bootwrapper: Enable debug info on boot wrapper

2007-10-10 Thread David Gibson
On Wed, Oct 10, 2007 at 01:56:05PM -0600, Grant Likely wrote: > Any comments on this one? Scott? David? Seems reasonable AFAICT. > On 10/3/07, Grant Likely <[EMAIL PROTECTED]> wrote: > > From: Grant Likely <[EMAIL PROTECTED]> > > > > Add '-g' to BOOTCFLAGS if CONFIG_DEBUG_INFO is set. > > > > S

Re: [PATCH 4/9] add platform support for MPC837x MDS board

2007-10-10 Thread Stephen Rothwell
On Wed, 10 Oct 2007 18:06:39 +0800 Li Yang <[EMAIL PROTECTED]> wrote: > > +++ b/arch/powerpc/platforms/83xx/mpc837x_mds.c > > +#include You actually neeed linux/of.h (for of_ routines) and asm/prom.h (for of_flat_dt_is_compatible). -- Cheers, Stephen Rothwell[EMAIL PROTECTED

Re: [PATCH 3/9] add Freescale SerDes PHY support

2007-10-10 Thread Stephen Rothwell
On Wed, 10 Oct 2007 18:06:38 +0800 Li Yang <[EMAIL PROTECTED]> wrote: > > +++ b/arch/powerpc/sysdev/fsl_serdes.c > > +#include You actually want linux/of.h not asm/prom.h -- Cheers, Stephen Rothwell[EMAIL PROTECTED] http://www.canb.auug.org.au/~sfr/ pgp3HbBvMMsUL.pgp Descr

Re: Build failure on treeboot-walnut.cg

2007-10-10 Thread Paul Mackerras
Timur Tabi writes: > Is this a new policy? Modules in the kernel are not built unless you want > them. Even in arch/powerpc/platforms, only the specific platform file I'm > targeting is built. So I don't really understand why you claim it's normal > for platform-specific files to be built, r

Re: Hard hang in hypervisor!?

2007-10-10 Thread Paul Mackerras
Linas Vepstas writes: > Err .. it was cpu 0 that was spinlocked. Are interrupts not > distributed? We have some bogosities in the xics code that I noticed a couple of days ago. Basically we only set the xics to distribute interrupts to all cpus if (a) the affinity mask is equal to CPU_MASK_ALL

[PATCH 2/2] ucc_geth: use rx-clock-name and tx-clock-name device tree properties

2007-10-10 Thread Timur Tabi
This patch updates the ucc_geth device driver to check the new rx-clock-name and tx-clock-name properties first. If present, it uses the new function qe_clock_source() to obtain the clock source. Otherwise, it checks the deprecated rx-clock and tx-clock properties. The device trees for 832x, 836

[PATCH 1/2] qe: add function qe_clock_source

2007-10-10 Thread Timur Tabi
Add function qe_clock_source() which takes a string containing the name of a QE clock source (as is typically found in device trees) and returns the matching enum qe_clock value. Update booting-without-of.txt to indicate that the UCC properties rx-clock and tx-clock are deprecated and replaced wit

[PATCH 0/2] QE clock source improvements

2007-10-10 Thread Timur Tabi
(Replaces all previous versions of this patch) This patch set adds a new property to make specifying QE clock sources easier, adds a function to help parse the property, updates some other functions to use an enum instead of an integer, and updates the ucc_geth driver to take advantage of all thi

Re: [PATCH 0/2] QE clock source improvements

2007-10-10 Thread Timur Tabi
Sorry, please ignore this set. Something got screwed up with the patches. I'm going to resend. Timur Tabi wrote: > This patch set adds a new property to make specifying QE clock sources > easier, adds a function to help parse the property, updates some other > functions to use an enum instead of

[PATCH 1/2] qe: add function qe_clock_source

2007-10-10 Thread Timur Tabi
Add function qe_clock_source() which takes a string containing the name of a QE clock source (as is typically found in device trees) and returns the matching enum qe_clock value. Update booting-without-of.txt to indicate that the UCC properties rx-clock and tx-clock are deprecated and replaced wit

[PATCH 2/2] ucc_geth: use rx-clock-name and tx-clock-name device tree properties

2007-10-10 Thread Timur Tabi
This patch updates the ucc_geth device driver to check the new rx-clock-name and tx-clock-name properties first. If present, it uses the new function qe_clock_source() to obtain the clock source. Otherwise, it checks the deprecated rx-clock and tx-clock properties. The device trees for 832x, 836

[PATCH 0/2] QE clock source improvements

2007-10-10 Thread Timur Tabi
This patch set adds a new property to make specifying QE clock sources easier, adds a function to help parse the property, updates some other functions to use an enum instead of an integer, and updates the ucc_geth driver to take advantage of all this.

[PATCH 1/2] qe: add function qe_clock_source

2007-10-10 Thread Timur Tabi
Add function qe_clock_source() which takes a string containing the name of a QE clock source (as is typically found in device trees) and returns the matching enum qe_clock value. Update booting-without-of.txt to indicate that the UCC properties rx-clock and tx-clock are deprecated and replaced wit

[PATCH 2/2] ucc_geth: use rx-clock-name and tx-clock-name device tree properties

2007-10-10 Thread Timur Tabi
This patch updates the ucc_geth device driver to check the new rx-clock-name and tx-clock-name properties first. If present, it uses the new function qe_clock_source() to obtain the clock source. Otherwise, it checks the deprecated rx-clock and tx-clock properties. The device trees for 832x, 836

Re: irq identification has changed from 2.6.10 to 2.6.23. an explanation is requested

2007-10-10 Thread Scott Wood
Eno 3 Compton wrote: > I had a driver working under 2.6.10 on a mpc8248. The kernel got changed > under me to 2.6.23. Now, when I call request_irq with SIU_INT_IRQ5, > which is defined in asm-powerpc/irq.h, and once compiled and worked > properly, I get compilation errors. The compiler can't fin

irq identification has changed from 2.6.10 to 2.6.23. an explanation is requested

2007-10-10 Thread Eno 3 Compton
Dear All, I had a driver working under 2.6.10 on a mpc8248. The kernel got changed under me to 2.6.23. Now, when I call request_irq with SIU_INT_IRQ5, which is defined in asm-powerpc/irq.h, and once compiled and worked properly, I get compilation errors. The compiler can't find the symbol definiti

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread Josh Boyer
On Mon, 2007-10-08 at 01:53 -0600, Grant Likely wrote: > From: Grant Likely <[EMAIL PROTECTED]> > > Signed-off-by: Grant Likely <[EMAIL PROTECTED]> > --- > > This is a first draft, please review and comment. I'll start off with the fact that I hardly consider myself a DT expert, so take what I s

Re: [PATCH 2/3] Remove empty ppc_md.setup_arch hooks.

2007-10-10 Thread Josh Boyer
On Wed, 2007-10-10 at 12:48 -0600, Grant Likely wrote: > From: Grant Likely <[EMAIL PROTECTED]> Assuming Paul likes the overall change, the 4xx parts look fine to me. > Signed-off-by: Grant Likely <[EMAIL PROTECTED]> Acked-by: Josh Boyer <[EMAIL PROTECTED]> > --- > > arch/powerpc/platforms/40x

Re: [PATCH 2/3] [POWERPC] Add AMCC Kilauea eval board support to platforms/40x

2007-10-10 Thread Josh Boyer
On Mon, 2007-10-08 at 11:08 +0200, Stefan Roese wrote: > This patch adds basic support for the new 405EX and the AMCC eval board > Kilauea to arch/powerpc. > > Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> > --- > arch/powerpc/platforms/40x/Kconfig | 17 +++-- > arch/powerpc/platforms/4

Re: [PATCH 3/3] [POWERPC] Kilauea DTS

2007-10-10 Thread Josh Boyer
On Mon, 2007-10-08 at 11:10 +0200, Stefan Roese wrote: > Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> Looks pretty good. Just a couple of questions. > --- > arch/powerpc/boot/dts/kilauea.dts | 253 > + > 1 files changed, 253 insertions(+), 0 deletions(-)

Re: [PATCH] Bootwrapper: Enable debug info on boot wrapper

2007-10-10 Thread Scott Wood
Grant Likely wrote: > Any comments on this one? Scott? David? It's fine with me. -Scott ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: [PATCH] Bootwrapper: Enable debug info on boot wrapper

2007-10-10 Thread Grant Likely
Any comments on this one? Scott? David? Cheers, g. On 10/3/07, Grant Likely <[EMAIL PROTECTED]> wrote: > From: Grant Likely <[EMAIL PROTECTED]> > > Add '-g' to BOOTCFLAGS if CONFIG_DEBUG_INFO is set. > > Signed-off-by: Grant Likely <[EMAIL PROTECTED]> > --- > > arch/powerpc/boot/Makefile |

Re: [PATCH 2/3] [POWERPC] Add AMCC Kilauea eval board support to platforms/40x

2007-10-10 Thread Josh Boyer
On Tue, 2007-10-09 at 13:34 +0200, Stefan Roese wrote: > Hi Olof, > > On Monday 08 October 2007, Olof Johansson wrote: > > > +config KILAUEA > > > + bool "Kilauea" > > > + depends on 40x > > > + default y > > > + select 405EX > > > + help > > > + This option enables support for the AMCC PPC405EX

[PATCH 3/3] Platforms shouldn't mess with ROOT_DEV

2007-10-10 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> There is no good reason for board platform code to mess with the ROOT_DEV. Remove it from all in-tree platforms except powermac Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- arch/powerpc/platforms/52xx/efika.c|9 - arch/powerpc/platfo

[PATCH 1/3] Only call ppc_md.setup_arch() if it is provided.

2007-10-10 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> This allows platforms which don't have anything to do at setup_arch time (like a bunch of the 4xx platforms) to eliminate an empty setup_arch hook. Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- arch/powerpc/kernel/setup_32.c |3 ++- arch/powerpc/

[PATCH 0/3] Miscellaneous powerpc patches

2007-10-10 Thread Grant Likely
Paulus, Here are some patches that have been received favorably on the mailing list. However, they aren't specific to one particular platform, so Kumar suggested that they should probably go straight to your tree. If they look okay to you, can you please pick them up? Thanks, g. -- Grant Likel

[PATCH 2/3] Remove empty ppc_md.setup_arch hooks.

2007-10-10 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- arch/powerpc/platforms/40x/virtex.c |5 - arch/powerpc/platforms/40x/walnut.c |5 - arch/powerpc/platforms/44x/bamboo.c |5 - arch/powerpc/platforms/44x/ebony.c |5 - a

[PATCH 1/3] XilinxFB: use pdata to pass around framebuffer parameters.

2007-10-10 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> The call to xilinxfb_assign is getting unwieldy when adding features to the Xilinx framebuffer driver. Change xilinxfb_assign() to accept a pointer to a xilinxfb_platform_data structure to prepare for adding additition configuration options. Signed-off-by:

[PATCH 3/3] XilinxFB: Allow fixed framebuffer base address

2007-10-10 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> Allow a fixed framebuffer address to be assigned to the framebuffer device instead of allocating the framebuffer from the consistent memory pool. Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- drivers/video/xilinxfb.c | 22 -- in

[PATCH 0/3] More XilinxFB changes

2007-10-10 Thread Grant Likely
Here are some more changes on the xilinxfb driver. These changes add the ability to specify a custom resolution or framebuffer physical address. Useful for FPGA designs which use a modified xilinxfb device. Please review and comment. Cheers, g. -- Grant Likely, B.Sc. P.Eng. Secret Lab Technolog

[PATCH 2/3] Xilinxfb: Add support for custom screen resolution

2007-10-10 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> Some custom implementations of the xilinx fb can use resolutions other than 640x480. This patch allows the resolution to be specified in the device tree or the xilinx_platform_data structure. Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- drivers/vid

Re: [PATCH] Device tree bindings for Xilinx devices

2007-10-10 Thread Grant Likely
Anybody have any comments on this? Segher? David? Cheers, g. On 10/8/07, Grant Likely <[EMAIL PROTECTED]> wrote: > From: Grant Likely <[EMAIL PROTECTED]> > > Signed-off-by: Grant Likely <[EMAIL PROTECTED]> > --- > > This is a first draft, please review and comment. > > On a side node, I think b

Re: include/asm/cpm2.h:14:21: error: asm/cpm.h: No such file or directory

2007-10-10 Thread Scott Wood
On Tue, Oct 09, 2007 at 09:03:13PM -0700, Misbah khan wrote: > > Please Let me know the Status > > Misbah Are you suddenly Timur's boss? :-) The issue was a misapplied patch in Kumar's tree. It has been fixed, as he pointed out in another post in this thread. -Scott _

Re: [PATCH v2] powerpc: don't enable cpu hotplug on mpic-based pseries

2007-10-10 Thread Olof Johansson
On Wed, Oct 10, 2007 at 05:08:44AM -0500, Milton Miller wrote: > Olof's patch searched the device-tree again, looking for an mpic. This > code instead checks that we found an xics the first time by checking the > init function. I'm glad you find the kernel so perfect that your best use of time i

Please pull linux-2.6-mpc52xx.git

2007-10-10 Thread Grant Likely
Paulus, Sylvain has asked if I would like to help with the mpc52xx maintainership. If it's okay by you, here is a patch that adds me as co-maintainer for the mpc52xx platform along with 3 other mpc52xx related fixes. Sylvain, can you please reply to this message confirming that this is what we t

Marvell 88se6121 in Kernel2.4

2007-10-10 Thread mike zheng
Hello, Anyone has the source code of kernel2.4 device driver for Marvel 88se6121? Thanks in advance, Mike ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: crash on shutdown on rs/6000 powerpc

2007-10-10 Thread Milton Miller
Joel Schoopp wrote: >Paulus wrote: >> [c0003f923c40] c003bff4 .xics_migrate_irqs_away+0x3c/0x20c >> [c0003f923d00] c0040d54 .pseries_cpu_disable+0x98/0xb4 >> [c0003f923d80] c0028e4c .__cpu_disable+0x44/0x58 >> [c0003f923df0] c007e204 .take_cpu_down+0

Re: crash on shutdown on rs/6000 powerpc

2007-10-10 Thread Joel Schopp
> [c0003f923c40] c003bff4 .xics_migrate_irqs_away+0x3c/0x20c > [c0003f923d00] c0040d54 .pseries_cpu_disable+0x98/0xb4 > [c0003f923d80] c0028e4c .__cpu_disable+0x44/0x58 > [c0003f923df0] c007e204 .take_cpu_down+0x34/0x60 > [c0003f923e70] c

Please pull linux-2.6-virtex.git

2007-10-10 Thread Grant Likely
Josh, please pull: git://git.secretlab.ca/git/linux-2.6-virtex.git virtex-for-2.6.24 This tree is based on Paulus' current top-of-tree. There are some minor changes in here plus the XilinxFB migration to use of_platform bus. Normally fb changes go in via the -mm tree; but I've confirmed with To

Re: [PATCH] drivers/ata: add support to Freescale 3.0Gbps SATA Controller

2007-10-10 Thread Kumar Gala
On Wed, 10 Oct 2007, Li Yang wrote: > From: Ashish Kalra <[EMAIL PROTECTED]> > > This patch adds support for Freescale 3.0Gbps SATA Controller supporting > Native Command Queueing(NCQ), device hotplug, and ATAPI. This controller > can be found on MPC8315 and MPC8378. > > Signed-off-by: Ashish K

Re: [RFC][POWERPC] Add arch/powerpc 4xx NDFC (NAND) support

2007-10-10 Thread Valentine Barshak
Stefan Roese wrote: > diff --git a/arch/powerpc/boot/dts/sequoia.dts > b/arch/powerpc/boot/dts/sequoia.dts > index 36be75b..9b15482 100644 > --- a/arch/powerpc/boot/dts/sequoia.dts > +++ b/arch/powerpc/boot/dts/sequoia.dts > @@ -122,6 +122,38 @@ > interrupt-map-mask = ; >

Re: [PATCH v2] powerpc: don't enable cpu hotplug on mpic-based pseries

2007-10-10 Thread Milton Miller
Don't allow cpu hotplug on pSeries systems lacking XICS interrupt controller, since current code is hardcoded to call xics routines. Signed-off-by: Milton Miller <[EMAIL PROTECTED]> -- Olof's patch searched the device-tree again, looking for an mpic. This code instead checks that we found an x

[PATCH 9/9] add MPC837x MDS board default device tree

2007-10-10 Thread Li Yang
Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- arch/powerpc/boot/dts/mpc8377_mds.dts | 288 ++ arch/powerpc/boot/dts/mpc8378_mds.dts | 268 arch/powerpc/boot/dts/mpc8379_mds.dts | 308 + 3 files changed, 86

[PATCH 3/9] add Freescale SerDes PHY support

2007-10-10 Thread Li Yang
The SerDes(serializer/deserializer) PHY block is a new SoC block used in Freescale chips to support multiple serial interfaces, such as PCI Express, SGMII, SATA. Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- arch/powerpc/platforms/Kconfig |4 + arch/powerpc/sysdev/Makefile |1 + ar

[PATCH 6/9] add documentation for SerDes nodes

2007-10-10 Thread Li Yang
Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- Documentation/powerpc/booting-without-of.txt | 29 ++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt index f499f76.

[PATCH 4/9] add platform support for MPC837x MDS board

2007-10-10 Thread Li Yang
The MPC837x MDS is a new member of Freescale MDS reference system. Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- arch/powerpc/platforms/83xx/Kconfig | 12 arch/powerpc/platforms/83xx/Makefile |1 + arch/powerpc/platforms/83xx/mpc837x_mds.c | 102 +++

[PATCH 2/9] ipic: add new interrupts introduced by new chip

2007-10-10 Thread Li Yang
These interrupts are introduced by the latest Freescale SoC such as MPC837x. The patch also adds comment to interrupts. Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- arch/powerpc/sysdev/ipic.c | 224 ++-- arch/powerpc/sysdev/ipic.h |7 +- include/asm

[PATCH 5/9] add documentation for SATA nodes

2007-10-10 Thread Li Yang
Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- Documentation/powerpc/booting-without-of.txt | 32 ++ 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt index 76733a3.

[PATCH 8/9] add MPC837x MDS default kernel configuration

2007-10-10 Thread Li Yang
Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- arch/powerpc/configs/mpc837x_mds_defconfig | 878 1 files changed, 878 insertions(+), 0 deletions(-) create mode 100644 arch/powerpc/configs/mpc837x_mds_defconfig diff --git a/arch/powerpc/configs/mpc837x_mds_defconfig

[PATCH 7/9] ipic: clean up unsupported ack operations

2007-10-10 Thread Li Yang
IPIC controller doesn't support ack operations. The pending registers are read-only. The patch removes ack operations which are not needed. Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- arch/powerpc/sysdev/ipic.c | 40 ++-- 1 files changed, 2 insertions(+)

[PATCH 1/9] add e300c4 entry to cputable

2007-10-10 Thread Li Yang
Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- arch/powerpc/kernel/cputable.c | 13 - 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index b1f8000..d80c365 100644 --- a/arch/powerpc/kernel/cputable.c +++

Re: [linux-usb-devel] [PATCH 0/3] usb: ehci ppc device-tree-aware driver

2007-10-10 Thread Stefan Roese
On Wednesday 10 October 2007, Arnd Bergmann wrote: > > Do PPC folk sign off on how this is done? > > > > I don't follow all the ins/outs of the OF devtree stuff... > > The driver looks good to me, both the interaction with the of_platform_bus > layer and the handling of I/O addresses. I haven't act

MPC8548 PCI Burst issue

2007-10-10 Thread FabioJo
I have an issue with a 8548 while I memcpy a block from DDR over a Tundra-60X bridge. I have been told by FS that the best way in my case is to use the DMA for DDR to PCI transfer. I can't find any reference or API for this implementation. May someone points me on the right documentation or API.

Re: [linux-usb-devel] [PATCH 0/3] usb: ehci ppc device-tree-aware driver

2007-10-10 Thread Arnd Bergmann
On Wednesday 10 October 2007, David Brownell wrote: > On Monday 24 September 2007, Valentine Barshak wrote: > > Some PowerPC systems have a built-in EHCI controller. > > This is a device tree aware version of the EHCI controller driver. > > Currently it's been tested on the PowerPC 440EPx Sequoia b

libfdt: Add functions to get/add/delete memory reservemap entries

2007-10-10 Thread David Gibson
This patch adds functions to libfdt for accessing the memory reservation map section of a device tree blob. fdt_num_mem_rsv() retreives the number of reservation entries in a dtb, and fdt_get_mem_rsv() retreives a specific reservation entry. fdt_add_mem_rsv() adds a new entry, and fdt_del_mem_rsv(