Re: 2.6.23-mm1 - build failure with advansys

2007-10-12 Thread Andrew Morton
On Sat, 13 Oct 2007 10:14:22 +0530 Kamalesh Babulal <[EMAIL PROTECTED]> wrote: > Hi Andrew, > > Another build failure with following message > > CC drivers/scsi/advansys.o > drivers/scsi/advansys.c:71:2: warning: #warning this driver is still not > properly converted to the DMA API > dri

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

2007-10-12 Thread Kalra Ashish-B00888
This should be fine, as cd->sfis is allocated in host memory using a _coherent allocator and the SATA-2 controller is DMA'ing the D2H FIS into it. Ashish -Original Message- From: Alan Cox [mailto:[EMAIL PROTECTED] Sent: Friday, October 12, 2007 7:25 PM To: Li Yang-r58472 Cc: [EMAIL PRO

[PATCH] [POWERPC] ucc_geth: Fix build break introduced by commit 09f75cd7bf13720738e6a196cc0107ce9a5bd5a0

2007-10-12 Thread Emil Medve
CC drivers/net/ucc_geth.o drivers/net/ucc_geth.c: In function 'ucc_geth_startup': drivers/net/ucc_geth.c:2614: warning: assignment makes integer from pointer without a cast drivers/net/ucc_geth.c:2651: warning: assignment makes integer from pointer without a cast drivers/net/ucc_geth.c: In

RE: Override timer interrupt

2007-10-12 Thread Benjamin Herrenschmidt
On Fri, 2007-10-12 at 16:39 -0500, Rune Torgersen wrote: > > From: Mark A. Greer > > > Is there an easy way to use something other than the decrementer for > the > > > timer interrupt? > > > Check out the clocksource stuff. It let's you set up numerous clock > > sources and set the rating of ea

[PATCH 6/7] bestcomm: FEC task support

2007-10-12 Thread Grant Likely
From: Sylvain Munaut <[EMAIL PROTECTED]> This is the microcode for the FEC task and the associated support code. The microcode itself comes directly from the offical API (v2.2) Signed-off-by: Sylvain Munaut <[EMAIL PROTECTED]> Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- arch/powerpc/sy

[PATCH 7/7] bestcomm: GenBD task support

2007-10-12 Thread Grant Likely
From: Sylvain Munaut <[EMAIL PROTECTED]> This is the microcode for the GenBD task and the associated support code. This is a generic task that copy data to/from a hardware FIFO. This is currently locked to 32bits wide access but could be extended as needed. The microcode itself comes directly fro

[PATCH 2/7] rheap: Changes config mechanism

2007-10-12 Thread Grant Likely
From: Sylvain Munaut <[EMAIL PROTECTED]> Instead of having in the makefile all the option that requires rheap, we define a configuration symbol and when needed we make sure it's selected. Signed-off-by: Sylvain Munaut <[EMAIL PROTECTED]> Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- arch/

[PATCH 0/7] Respin of Sylvain's bestcomm patches

2007-10-12 Thread Grant Likely
Paulus/Kumar; Here's a respin of Sylvain's bestcomm patches. I've addressed the outstanding minor issues. I think this stuff needs to be merged. Cheers, g. -- Grant Likely, B.Sc. P.Eng. Secret Lab Technologies Ltd. ___ Linuxppc-dev mailing list Linux

[PATCH 4/7] bestcomm: core bestcomm support for Freescale MPC5200

2007-10-12 Thread Grant Likely
From: Sylvain Munaut <[EMAIL PROTECTED]> This patch adds support for the core of the BestComm API for the Freescale MPC5200(b). The BestComm engine is a microcode-controlled / tasks-based DMA used by several of the onchip devices. Setting up the tasks / memory allocation and all common low level

[PATCH 5/7] bestcomm: ATA task support

2007-10-12 Thread Grant Likely
From: Sylvain Munaut <[EMAIL PROTECTED]> This is the microcode for the ATA task and the associated support code. The microcode itself comes directly from the offical API (v2.2) Signed-off-by: Sylvain Munaut <[EMAIL PROTECTED]> Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- arch/powerpc/sy

[PATCH 1/7] exports rheap symbol to modules

2007-10-12 Thread Grant Likely
From: Sylvain Munaut <[EMAIL PROTECTED]> Theses can be useful in modules too. So we export them. Signed-off-by: Sylvain Munaut <[EMAIL PROTECTED]> Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- arch/powerpc/lib/rheap.c | 15 +++ 1 files changed, 15 insertions(+), 0 deletions(

[PATCH 3/7] mpc52xx: Update mpc52xx_psc structure with B revision changes

2007-10-12 Thread Grant Likely
From: Sylvain Munaut <[EMAIL PROTECTED]> On the mpc5200b the ccr register is 32 bits wide while on the mpc5200 it's only 16 bits. It's up to the driver to use the correct format depending on the chip it's running on. The 5200b also offers some more registers & status in AC97 mode. Again, if not r

Re: Override timer interrupt

2007-10-12 Thread Mark A. Greer
On Fri, Oct 12, 2007 at 04:39:53PM -0500, Rune Torgersen wrote: > > From: Mark A. Greer > > > Is there an easy way to use something other than the decrementer for > the > > > timer interrupt? > > > Check out the clocksource stuff. It let's you set up numerous clock > > sources and set the rating

Re: [RFC] [PATCH] PowerPC: add more than 4MB kernel image size support to bootwarapper

2007-10-12 Thread Mark A. Greer
On Sun, Oct 07, 2007 at 08:31:46PM -0500, Scott Wood wrote: Sorry for the delay, Scott. > Mark A. Greer wrote: > >Why? Because its only safe to download a zImage to certain "safe" > >locations. > >Where those "safe" locations are vary by firmware, firmware version, and > >zImage size. This is

RE: Override timer interrupt

2007-10-12 Thread Rune Torgersen
> From: Mark A. Greer > > Is there an easy way to use something other than the decrementer for the > > timer interrupt? > Check out the clocksource stuff. It let's you set up numerous clock > sources and set the rating of each one. You can start looking in > arch/powerpc/kernel/time.c for examp

Re: Override timer interrupt

2007-10-12 Thread Mark A. Greer
On Fri, Oct 12, 2007 at 03:49:02PM -0500, Rune Torgersen wrote: > Is there an easy way to use something other than the decrementer for the > timer interrupt? > > Reason i'm asking is tha t on our board, the decrementer cannot be > divided to 1khz evenly, so we have rounding errors for time, but we

Override timer interrupt

2007-10-12 Thread Rune Torgersen
Is there an easy way to use something other than the decrementer for the timer interrupt? Reason i'm asking is tha t on our board, the decrementer cannot be divided to 1khz evenly, so we have rounding errors for time, but we do have a 1KHz timer interrupt from an FPGA that is source of a T1 clock.

Re: mpc52xx bestcomm patches.

2007-10-12 Thread Grant Likely
On 10/12/07, Kumar Gala <[EMAIL PROTECTED]> wrote: > > On Oct 12, 2007, at 1:54 PM, Grant Likely wrote: > > > On 10/12/07, Kumar Gala <[EMAIL PROTECTED]> wrote: > >> > >> On Oct 12, 2007, at 1:30 PM, Grant Likely wrote: > >> > >>> Paulus, how do you feel about merging these changes? > >>> > >>> Thi

[PATCH] cpm: Fix a couple minor issues in cpm_common.c.

2007-10-12 Thread Scott Wood
A debugging printk is removed, and a comment is fixed to match the code. Signed-off-by: Scott Wood <[EMAIL PROTECTED]> --- arch/powerpc/sysdev/cpm_common.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/arch/powerpc/sysdev/cpm_common.c b/arch/powerpc/sysdev/cpm_common

Re: mpc52xx bestcomm patches.

2007-10-12 Thread Kumar Gala
On Oct 12, 2007, at 1:54 PM, Grant Likely wrote: > On 10/12/07, Kumar Gala <[EMAIL PROTECTED]> wrote: >> >> On Oct 12, 2007, at 1:30 PM, Grant Likely wrote: >> >>> Paulus, how do you feel about merging these changes? >>> >>> This is Sylvain's series of bestcomm patches. >>> >>> http://patchwork.o

Re: mpc52xx bestcomm patches.

2007-10-12 Thread Grant Likely
On 10/12/07, Kumar Gala <[EMAIL PROTECTED]> wrote: > > On Oct 12, 2007, at 1:30 PM, Grant Likely wrote: > > > Paulus, how do you feel about merging these changes? > > > > This is Sylvain's series of bestcomm patches. > > > > http://patchwork.ozlabs.org/linuxppc/patch?id=13488 > > http://patchwork.o

Re: mpc52xx bestcomm patches.

2007-10-12 Thread Kumar Gala
On Oct 12, 2007, at 1:30 PM, Grant Likely wrote: > Paulus, how do you feel about merging these changes? > > This is Sylvain's series of bestcomm patches. > > http://patchwork.ozlabs.org/linuxppc/patch?id=13488 > http://patchwork.ozlabs.org/linuxppc/patch?id=13489 > http://patchwork.ozlabs.org/lin

mpc52xx bestcomm patches.

2007-10-12 Thread Grant Likely
Paulus, how do you feel about merging these changes? This is Sylvain's series of bestcomm patches. http://patchwork.ozlabs.org/linuxppc/patch?id=13488 http://patchwork.ozlabs.org/linuxppc/patch?id=13489 http://patchwork.ozlabs.org/linuxppc/patch?id=13490 http://patchwork.ozlabs.org/linuxppc/patch

Re: [PATCH 4/4 v2] [POWERPC] Kilauea defconfig file

2007-10-12 Thread Scott Wood
David Gibson wrote: > This is, of course, why CONFIG_DEVICE_TREE makes no real sense and > never has: it's a per-image, not a per-configuration variable. Enh. It's useful. When we have an image config file, let me know. :-) -Scott ___ Linuxppc-dev mai

[patch 12/13] fb: Move and rename extern declaration for global_mode_option

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> Move the extern declaration for global_mode_option to and rename the variable to fb_mode_option. Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/video/fbmem.c |4 +--- drivers/video/modedb.c |4 ++-- include/linux/fb.h

[patch 09/13] ps3fb: Dont keep the borders for non-fullscreen modes in XDR memory

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> Don't keep the borders for non-fullscreen modes in XDR memory: - Extract ps3fb_sync_image() - Work around the alignment restrictions of L1GPU_CONTEXT_ATTRIBUTE_FB_BLIT by using an offset with L1GPU_CONTEXT_ATTRIBUTE_DISPLAY_FLIP - Only copy th

[patch 13/13] ps3fb: Default to 480p on DVI-D/HDMI if video=safe

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> ps3fb: Default to the 480p video mode on DVI-D and HDMI displays if `video=safe' is passed on the kernel command line. This is intended to be used by `kboot'-style boot loaders (i.e. first-stage kernels) for the PS3, to provide a failsafe video mode.

[patch 11/13] ps3fb: Enhance horizontal panning on firmware 1.90 and up

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> ps3fb: Enhance horizontal panning on firmware 1.90 and up: - On firmware 1.90 and up, L1GPU_CONTEXT_ATTRIBUTE_FB_BLIT supports copying rectangles from XDR to DDR memory with different source and destination line lengths. Hence larger horizonta

[patch 07/13] ps3fb: Fix possible overlap of GPU command buffer and frame buffer

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> ps3fb: In the case of non-fullscreen video modes, there was a partial overlap of the GPU command buffer and the frame buffer. Fix and cleanup various issues with overlap and alignment: - Move the GPU command buffer from the beginning to the end of vid

[patch 10/13] ps3fb: Add virtual screen and panning support

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> ps3fb: Add virtual screen and panning support: - The vertical virtual screen size is limited by the amount of memory reserved for ps3fb, - The horizontal virtual screen size is limited to the fullscreen width, - Advertise that we support panni

[patch 08/13] ps3fb: Use fb_info.par properly

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> ps3fb: Use fb_info.par properly: o Move mode-specific fields into struct ps3fb_par o Allocate struct ps3fb_par using framebuffer_alloc() o Protect access to ps3fb_par in ps3fb_sync() using the console semaphore (this semaphore is already held

[patch 05/13] ps3fb: Clean up includes

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> ps3fb: Clean up includes Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/video/ps3fb.c | 10 +- 1 files changed, 1 insertion(+), 9 deletions(-) --- a/drivers/video/ps3fb.c +++ b/drivers/video/ps3fb.c @@ -22,22 +22,14 @@

[patch 06/13] ps3fb: Make ps3fb_wait_for_vsync() and ps3fb_flip_ctl() static

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> ps3fb: Make ps3fb_wait_for_vsync() and ps3fb_flip_ctl() static, as they're no (longer) used outside ps3fb. Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/video/ps3fb.c |6 ++ 1 files changed, 2 insertions(+), 4 deletions(-)

[patch 03/13] ps3fb: Convert from printk()/DPRINTK() to dev_*()/pr_*()

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> Convert ps3fb from printk()/DPRINTK() to dev_*()/pr_*() Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/video/ps3fb.c | 183 ++ 1 files changed, 96 insertions(+), 87 deletions(-) ---

[patch 04/13] ps3fb: Do not print warnings on invalid frame numbers

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> ps3fb: Do not print warnings on invalid frame numbers, as this can be triggered from user space. Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/video/ps3fb.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- a/drive

[patch 02/13] ps3fb: Fix spurious mode change failures

2007-10-12 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> ps3fb: Add a `mode' parameter to ps3fb_get_res_table(), as in some cases it should check the full-screen flag of the _new_ video mode instead of the current video mode. This bug caused spurious mode change failures when switching between fullscreen and

[patch 01/13] ps3av: Fix black and white stripes

2007-10-12 Thread Geert Uytterhoeven
From: Masashi Kimoto <[EMAIL PROTECTED]> Fix the black and white stripes issue with WUXGA monitor via HDMI. It seems that when we use a VESA resolution from boot up, the AV settings driver could not be initialized correctly. In that case we need a dummy packet before VESA setting. [Geert] Refact

[patch 00/13] ps3av/fb patches for 2.6.24

2007-10-12 Thread Geert Uytterhoeven
Hi Tony, Andrew, Here are the remaining patches for the PS3 Audio/Video Settings Driver (ps3av) and the PS3 Virtual Frame Buffer Device Driver (ps3fb) that are not yet in 2.6.23-mm1: [1] ps3av: Fix black and white stripes [2] ps3fb: Fix spurious mode change failures [3] ps3fb: Con

Re: [PATCH] PowerPC: Add NEW EMAC driver support to 440EPx Sequoia board.

2007-10-12 Thread Josh Boyer
On Fri, 2007-10-12 at 17:07 +0400, Valentine Barshak wrote: > This one has to be applied on top of the previously submitted RGMII patch: > > http://ozlabs.org/pipermail/linuxppc-dev/2007-October/043435.html > > Josh, are these OK, since Paul has NEW EMAC driver in his tree now? > Thanks, > Valent

Re: [PATCH] NEW EMAC Fix RGMII build error: use of_device_is_compatible

2007-10-12 Thread Josh Boyer
On Fri, 2007-10-12 at 17:04 +0400, Valentine Barshak wrote: > Fix build RGMII error: use of_device_is_compatible() > insteadof now deprecated device_is_compatible() function. > > Signed-off-by: Valentine Barshak <[EMAIL PROTECTED]> Acked-by: Josh Boyer <[EMAIL PROTECTED]> Jeff, this should go in

Re: [PATCH v3 5/9] add documentation for SATA nodes

2007-10-12 Thread Arnd Bergmann
On Friday 12 October 2007, Li Yang wrote: > + > [EMAIL PROTECTED] { > +   compatible = "fsl,mpc8315-sata"; > +   reg = <19000 1000>; > +   interrupts = <2d 8>; > +   interrupt-parent = < &ipic >; > +   phy-handle = < &serdes1 >; > +      

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

2007-10-12 Thread Arnd Bergmann
On Friday 12 October 2007, Li Yang wrote: > 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. Some of my comments here are similar to those for the ata driver, so I won't be as verbo

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

2007-10-12 Thread Li Yang-r58472
> -Original Message- > From: Alan Cox [mailto:[EMAIL PROTECTED] > Sent: Friday, October 12, 2007 9:55 PM > To: Li Yang-r58472 > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; > linuxppc-dev@ozlabs.org; Kalra Ashish-B00888; Li Yang-r58472 > Subject: Re: [PATCH v2] drivers/ata: add support to Fr

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

2007-10-12 Thread Arnd Bergmann
On Friday 12 October 2007, Li Yang wrote: > 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. Most of the driver looks really good, but here are a few things th

[PATCH] ps3disk: Remove superfluous cast

2007-10-12 Thread Geert Uytterhoeven
ps3disk: Remove a superfluous cast As ps3disk is a ppc64-only driver, sector_t equals to unsigned long. Future {re,ab}use is protected by the safety net called `compiler warning'. Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/block/ps3disk.c |3 +-- 1 files changed, 1 ins

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

2007-10-12 Thread Alan Cox
> + cd = pp->cmdentry + tag; > + > + memcpy(fis, &cd->sfis, 6 * 4); /* should we use memcpy_from_io() */ If cd->sfis points at memory over the PCI bus (eg mmio or memory on the controller card) then you need to use ioread/_io type functions. If cd->sfis points into host memory where the F

Re: linux-2.6.git: cannot build PS3 image

2007-10-12 Thread Geert Uytterhoeven
On Fri, 12 Oct 2007, Geert Uytterhoeven wrote: > On current linux-2.6.git (782e3b3b3804c38d5130c7f21d7ec7bf6709023f), I get: > > | WRAParch/powerpc/boot/zImage.ps3 > | DTC: dts->dtb on file > "/usr/people/geert.nba/ps3/ps3-linux-2.6/arch/powerpc/boot/dts/ps3.dts" > | ln: accessing `arch/po

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

2007-10-12 Thread Li Yang
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 Kalra <[EMAIL PROTECTED]> Signed-off-by: Li Yang <[E

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

2007-10-12 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 v3 8/9] add MPC837x MDS default kernel configuration

2007-10-12 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 v3 7/9] ipic: clean up unsupported ack operations

2007-10-12 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 v3 6/9] add documentation for SerDes nodes

2007-10-12 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 8d49942.

[PATCH v3 5/9] add documentation for SATA nodes

2007-10-12 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 a96e853.

[PATCH v3 3/9] add Freescale SerDes PHY support

2007-10-12 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 |3 + arch/powerpc/sysdev/Makefile |1 + ar

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

2007-10-12 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 | 103 +++

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

2007-10-12 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 v3 1/9] add e300c4 entry to cputable

2007-10-12 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 d3fb7d0..03b973f 100644 --- a/arch/powerpc/kernel/cputable.c +++

[PATCH v3 0/9] Add MPC837x generic support and MPC837xE MDS support

2007-10-12 Thread Li Yang
The patch series has been re-built to apply on the latest Linus' HEAD after pulling Paul's for-2.6.24. All comments on list are addressed. ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: [PATCH] PowerPC: Add NEW EMAC driver support to 440EPx Sequoia board.

2007-10-12 Thread Valentine Barshak
This one has to be applied on top of the previously submitted RGMII patch: http://ozlabs.org/pipermail/linuxppc-dev/2007-October/043435.html Josh, are these OK, since Paul has NEW EMAC driver in his tree now? Thanks, Valentine. ___ Linuxppc-dev mailing

[PATCH] NEW EMAC Fix RGMII build error: use of_device_is_compatible

2007-10-12 Thread Valentine Barshak
Fix build RGMII error: use of_device_is_compatible() insteadof now deprecated device_is_compatible() function. Signed-off-by: Valentine Barshak <[EMAIL PROTECTED]> --- drivers/net/ibm_newemac/rgmii.c |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -pruN linux-2.6.orig/drivers/net/

[PATCH] PowerPC: Add NEW EMAC driver support to 440EPx Sequoia board.

2007-10-12 Thread Valentine Barshak
This patch enables NEW EMAC support for PowerPC 440EPx Sequoia board and adds BCM5248 and Marvell 88E PHY support to NEW EMAC driver. These PHY chips are used on PowerPC440EPx boards. The PHY code is based on the previous work by Stefan Roese <[EMAIL PROTECTED]> Signed-off-by: Stefan Roese <[E

Re: [PATCH] [POWERPC] Use PAGE_OFFSET to tell if an address is user/kernel in SW TLB handlers

2007-10-12 Thread Josh Boyer
On Fri, 2007-10-12 at 13:30 +1000, David Gibson wrote: > On Thu, Oct 11, 2007 at 01:42:30PM -0500, Kumar Gala wrote: > > Move to using PAGE_OFFSET instead of TASK_SIZE or KERNELBASE value on > > 6xx/40x/44x/fsl-booke to determine if the faulting address is a kernel or > > user space address. This

Re: [PATCH] PowerPC: Fix find_legacy_serial_ports on OPB.

2007-10-12 Thread Josh Boyer
On Fri, 2007-10-12 at 12:31 +1000, David Gibson wrote: > On Thu, Oct 11, 2007 at 01:31:53PM -0500, Josh Boyer wrote: > > On Thu, 2007-10-11 at 21:26 +0400, Valentine Barshak wrote: > > > Josh Boyer wrote: > > > > On Thu, 2007-10-11 at 17:50 +0200, Arnd Bergmann wrote: > > > >> On Thursday 11 Octobe

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

2007-10-12 Thread Li Yang-r58472
> -Original Message- > From: Wood Scott-B07421 > Sent: Friday, October 12, 2007 4:10 AM > To: Li Yang-r58472 > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; > linuxppc-dev@ozlabs.org > Subject: Re: [PATCH 3/9 v2] add Freescale SerDes PHY support > > On Thu, Oct 11, 2007 at 05:53:45PM +080

[PATCH/RFT] powerpc: 64-bit irqtrace support

2007-10-12 Thread Johannes Berg
This adds irqtrace support to 64-bit powerpc to enable lockdep. Signed-off-by: Johannes Berg <[EMAIL PROTECTED]> --- Requires Christoph's stack trace patch to really enable lockdep. This patch is updated against the current powerpc master branch, mostly required because of the introduction of exc

Re: Set up device tree for PCI bus

2007-10-12 Thread Benjamin Herrenschmidt
On Fri, 2007-10-12 at 12:48 +0200, Hommel, Thomas (GE Indust, GE Fanuc) wrote: > Hi all, > I'm wondering how to set up a proper device tree for a PCI bus. The bus > has a tree-like structure with several bridges and can be extended > dynamically (by adding PMC/XMC modules). .../... > A problem

Set up device tree for PCI bus

2007-10-12 Thread Hommel, Thomas (GE Indust, GE Fanuc)
Hi all, I'm wondering how to set up a proper device tree for a PCI bus. The bus has a tree-like structure with several bridges and can be extended dynamically (by adding PMC/XMC modules). The structure looks like this: -- |

linux-2.6.git: cannot build PS3 image

2007-10-12 Thread Geert Uytterhoeven
On current linux-2.6.git (782e3b3b3804c38d5130c7f21d7ec7bf6709023f), I get: | WRAParch/powerpc/boot/zImage.ps3 | DTC: dts->dtb on file "/usr/people/geert.nba/ps3/ps3-linux-2.6/arch/powerpc/boot/dts/ps3.dts" | ln: accessing `arch/powerpc/boot/zImage.ps3': No such file or directory `make V=

Re: powerpc commits for 2.6.24

2007-10-12 Thread Stefan Roese
On Friday 12 October 2007, Josh Boyer wrote: > I added Stefan's latest patch set to my tree as well. They look good. Thanks Josh. Best regards, Stefan ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-de