Re: [PATCH] 83xx: add support for the kmeter1 board.

2009-04-26 Thread Heiko Schocher
Hello Kumar, Kumar Gala wrote: [...] >> diff --git a/arch/powerpc/platforms/83xx/kmeter1.c >> b/arch/powerpc/platforms/83xx/kmeter1.c >> new file mode 100644 >> index 000..99cf5c6 >> --- /dev/null >> +++ b/arch/powerpc/platforms/83xx/kmeter1.c >> @@ -0,0 +1,170 @@ >> +/* [...] >> +np = of_

Re: [2.6.30-rc3] powerpc: compilation error of mace module

2009-04-26 Thread David Miller
From: Rogério Brito Date: Sun, 26 Apr 2009 12:57:09 -0300 > I am attempting to compile a new kernel for my OldWorld ppc box and I'm > having some problems. The first one that appears to happen is the following: Turn on CONFIG_COMPAT_NET_DEV_OPS in your kernel config. There was no reason for you

MPC8548 eTsec

2009-04-26 Thread jay_chen
Dear All: I am using linux 2.6.14.5 (with many modification) and MPC8548. Sometimes(very rare) the nic will boot up with rx problem. (tx is just fine) I see pkts are all dropped in chip but no any RX or BSY interrupt are ever raised. (Receive Drop Counter is increased) If I down and up the nic, t

Re: [PATCH V1 2/3] Rename the PSC functions to DMA

2009-04-26 Thread Grant Likely
On Sun, Apr 26, 2009 at 10:04 PM, Grant Likely wrote: > On Sun, Apr 26, 2009 at 1:53 PM, Jon Smirl wrote: >> Rename the functions in the mpc5200 DMA file from i2s to dma to reflect the >> file they are in. >> >> Signed-off-by: Jon Smirl > > Acked-by: Grant Likely Okay, I've taken a second loo

Re: [PATCH V1 3/3] Rename exports in mpc5200_dma.c

2009-04-26 Thread Jon Smirl
On Mon, Apr 27, 2009 at 12:08 AM, Grant Likely wrote: > On Sun, Apr 26, 2009 at 1:53 PM, Jon Smirl wrote: >> Rename the public DMA exports into the global name space so that the DMA >> code can be built as a module. >> >> Signed-off-by: Jon Smirl > > Nack.  mpc5200_dma is too generic for the gl

microblaze: Statically linking device tree blobs into the kernel

2009-04-26 Thread John Williams
To MicroBlazers and other interested parties: Currently the MicroBlaze kernel boot-time ABI requires r7 to point to a valid DTB, whereupon in early kernel setup the DTB is copied to a statically allocated 16k memory region inside the kernel. From there it is later queried by the platform startup c

Re: [PATCH V1 3/3] Rename exports in mpc5200_dma.c

2009-04-26 Thread Grant Likely
On Sun, Apr 26, 2009 at 1:53 PM, Jon Smirl wrote: > Rename the public DMA exports into the global name space so that the DMA code > can be built as a module. > > Signed-off-by: Jon Smirl Nack. mpc5200_dma is too generic for the global namespace... (in fact, I should also relook at the previous

Re: [PATCH V1 2/3] Rename the PSC functions to DMA

2009-04-26 Thread Grant Likely
On Sun, Apr 26, 2009 at 1:53 PM, Jon Smirl wrote: > Rename the functions in the mpc5200 DMA file from i2s to dma to reflect the > file they are in. > > Signed-off-by: Jon Smirl Acked-by: Grant Likely > --- >  sound/soc/fsl/mpc5200_dma.c     |  194 > --- >

Re: [PATCH V1 1/3] Basic split of mpc5200 DMA code out from mpc5200_psc_i2s

2009-04-26 Thread Grant Likely
On Sun, Apr 26, 2009 at 1:53 PM, Jon Smirl wrote: > Basic split of mpc5200 DMA code out from i2s into a standalone file. > > Signed-off-by: Jon Smirl Acked-by: Grant Likely But you should really also send this to the ALSA list. I cannot merge this patch. g. > --- >  sound/soc/fsl/Kconfig  

Re: [PATCH 2/2] powerpc: Add 2.06 tlbie mnemonics

2009-04-26 Thread Benjamin Herrenschmidt
On Fri, 2009-04-24 at 16:24 +1000, Michael Neuling wrote: > From: Milton Miller > > This adds the PowerPC 2.06 tlbie mnemonics and keeps backwards > compatibilty for CPUs before 2.06. > > Only useful for bare metal systems. I'd rather stick that in mmu features rather than cpu features to sav

Re: Porting the ibm_newemac driver to use phylib (and other PHY/MAC questions)

2009-04-26 Thread Benjamin Herrenschmidt
On Mon, 2009-04-20 at 20:10 -0400, Kyle Moffett wrote: > > IIRC, Ben had some issues with how phylib and the EMAC would need to > > interact. Not sure if he has those written down somewhere or not. > > (CC'd). > > Hmm, yeah, I'd be interested to see those. There's enough similar > between phylib

[PATCH V1 2/3] Rename the PSC functions to DMA

2009-04-26 Thread Jon Smirl
Rename the functions in the mpc5200 DMA file from i2s to dma to reflect the file they are in. Signed-off-by: Jon Smirl --- sound/soc/fsl/mpc5200_dma.c | 194 --- sound/soc/fsl/mpc5200_dma.h | 26 +++-- sound/soc/fsl/mpc5200_psc_i2s.c | 160 +++

[PATCH V1 3/3] Rename exports in mpc5200_dma.c

2009-04-26 Thread Jon Smirl
Rename the public DMA exports into the global name space so that the DMA code can be built as a module. Signed-off-by: Jon Smirl --- sound/soc/fsl/mpc5200_dma.c | 18 -- sound/soc/fsl/mpc5200_dma.h | 10 +- sound/soc/fsl/mpc5200_psc_i2s.c | 14 +++--

[PATCH V1 1/3] Basic split of mpc5200 DMA code out from mpc5200_psc_i2s

2009-04-26 Thread Jon Smirl
Basic split of mpc5200 DMA code out from i2s into a standalone file. Signed-off-by: Jon Smirl --- sound/soc/fsl/Kconfig |4 sound/soc/fsl/Makefile |2 sound/soc/fsl/mpc5200_dma.c | 457 + sound/soc/fsl/mpc5200_dma.h | 81

[PATCH V1 0/3] Split the DMA core out from mpc5200_psc_i2s.c

2009-04-26 Thread Jon Smirl
Patch series to separate out the mpc5200 core DMA routines from mpc5200_psc_i2s.c into a standalone mpc5200_dma.c. No intention to change how anything works, this is just a code reorg needed for later patches to build on. --- Jon Smirl (3): Rename exports in mpc5200_dma.c Rename the P

[2.6.30-rc3] powerpc: compilation error of mace module

2009-04-26 Thread Rogério Brito
Hi there, people. I am attempting to compile a new kernel for my OldWorld ppc box and I'm having some problems. The first one that appears to happen is the following: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CC [M] drivers/net/mace.o drivers/net/mace.c: In functi

Re: [PATCH v3 09/13] net: Rework ucc_geth driver to use of_mdio infrastructure

2009-04-26 Thread Joakim Tjernlund
Change in fixed link case, see inline. > > From: Grant Likely > > This patch simplifies the driver by making use of more common code. > > Signed-off-by: Grant Likely > Acked-by: Andy Fleming > --- > > drivers/net/ucc_geth.c | 47 --- > drivers