Re: [PATCH 11/11] mmc: Add OpenFirmware bindings for SDHCI driver

2009-03-21 Thread yamazaki
Hi Thank you for your reply again. Ah, then it must be connected via MPC8347's localbus. That's right. I will try it,and I inform them of the result. On Sat, Mar 21, 2009 at 09:15:25AM +0900, yamazaki wrote: Hi Thank you for your reply. I know RICOH has PCI SD/MMC controller. But

Re: [PATCH] tracing: Fix TRACING_SUPPORT dependency

2009-03-21 Thread Ingo Molnar
* Anton Vorontsov avoront...@ru.mvista.com wrote: On Fri, Mar 20, 2009 at 08:57:43PM +0100, Ingo Molnar wrote: * Anton Vorontsov avoront...@ru.mvista.com wrote: On Fri, Mar 20, 2009 at 08:04:28PM +0100, Ingo Molnar wrote: * Anton Vorontsov avoront...@ru.mvista.com wrote:

Re: [PATCH] tracing: Fix TRACING_SUPPORT dependency

2009-03-21 Thread Steven Rostedt
On Sat, 21 Mar 2009, Ingo Molnar wrote: * Anton Vorontsov avoront...@ru.mvista.com wrote: On Fri, Mar 20, 2009 at 08:57:43PM +0100, Ingo Molnar wrote: * Anton Vorontsov avoront...@ru.mvista.com wrote: On Fri, Mar 20, 2009 at 08:04:28PM +0100, Ingo Molnar wrote: *

Re: [PATCH] tracing: Fix TRACING_SUPPORT dependency

2009-03-21 Thread Steven Rostedt
On Sat, 21 Mar 2009, Ingo Molnar wrote: Hm, do all the tracers even compile on ppc32 with your patch? We had periodic build failures on weird, unmaintained architectures that had no irqflags-tracing support and hence didnt know the raw_irqs_save/restore primitives ...

Re: [PATCH] tracing: Fix TRACING_SUPPORT dependency

2009-03-21 Thread Ingo Molnar
* Steven Rostedt rost...@goodmis.org wrote: On Sat, 21 Mar 2009, Steven Rostedt wrote: Since we know that's not an issue with PPC32, perhaps we should add (I hate to do this)... depends on TRACE_IRQFLAGS_SUPPORT || PPC32 And document that the || PPC32 should go when

Re: [PATCH -next] gianfar: Fix build with CONFIG_PM enabled

2009-03-21 Thread David Miller
From: Kumar Gala ga...@kernel.crashing.org Date: Thu, 19 Mar 2009 10:16:26 -0500 On Mar 19, 2009, at 10:12 AM, Anton Vorontsov wrote: commit 4826857f1bf07f9c0f1495e9b05d125552c88a85 (gianfar: pass the proper dev to DMA ops) introduced this build breakage: ... Signed-off-by: Anton

Re: [PATCH -next] fsl_pq_mdio: Revive Gianfar TBI PHY support

2009-03-21 Thread David Miller
From: Andy Fleming aflem...@freescale.com Date: Thu, 19 Mar 2009 10:56:59 -0500 On Mar 19, 2009, at 10:52 AM, Anton Vorontsov wrote: commit 1577ecef766650a57fceb171acee2b13cbfaf1d3 (netdev: Merge UCC and gianfar MDIO bus drivers) broke the TSEC TBI PHY support: the ... Signed-off-by:

Re: Fix for __div64_32 locks when using some 64 bit numbers

2009-03-21 Thread Benjamin Herrenschmidt
On Fri, 2009-03-20 at 12:33 -0700, davidastro wrote: Hi Ben: I was wondering if you have any change to look into and test the propose fix I suggested in my previous post. I'd like to know if the fix is correct. Sorry, I haven't had a chance yet. I will asap. Ben. Thanks for your

[PATCH v2 00/13] Rework network drivers to use of_mdio common code

2009-03-21 Thread Grant Likely
This series reworks some of the phylib code and adds of_mdio helper functions to make it easier for device drivers to retrieve the PHY configuration by reading the OF device tree. Most of these changes have been only compile tested, but not booted on real hardware. Exceptions are mpc52xx and

[PATCH v2 01/13] net: fix fec_mpc52xx driver to use net_device_ops

2009-03-21 Thread Grant Likely
From: Henk Stegeman henk.stege...@gmail.com Fix fec_mpc52xx driver to use net_device_ops and to be careful not to dereference phy_device if a phy has not yet been connected. Waiting for a signed-off-by line from Henk on this one CC: Henk Stegeman henk.stege...@gmail.com ---

[PATCH v2 02/13] of: add of_parse_phandle() helper for parsing phandle properties

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca of_parse_phandle() is a helper function to read and parse a phandle property and return a pointer to the resulting device_node. Signed-off-by: Grant Likely grant.lik...@secretlab.ca CC: Michael Ellerman mich...@ellerman.id.au --- drivers/of/base.c

[PATCH v2 03/13] phylib: rework to prepare for OF registration of PHYs

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca This patch makes changes in preparation for supporting open firmware device tree descriptions of MDIO busses. Changes include: - Cleanup handling of phy_map[] entries; they are already NULLed when registering and so don't need to be re-cleared, and

[PATCH v2 04/13] phylib: add *_direct() variants of phy_connect and phy_attach functions

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca Add phy_connect_direct() and phy_attach_direct() functions so that drivers can use a pointer to the phy_device instead of trying to determine the phy's bus_id string. This patch is useful for OF device tree descriptions of phy devices where the driver

[PATCH v2 06/13] net: Rework mpc5200 fec driver to use of_mdio infrastructure.

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca The patch reworks the MPC5200 Fast Ethernet Controller (FEC) driver to use the of_mdio infrastructure for registering PHY devices from data out openfirmware device tree, and eliminates the assumption that the PHY for the FEC is always attached to the

[PATCH v2 05/13] openfirmware: Add OF phylib support code

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca Add support for parsing the device tree for PHY devices on an MDIO bus CC: Andy Fleming aflem...@freescale.com CC: linuxppc-dev@ozlabs.org CC: devtree-disc...@ozlabs.org Signed-off-by: Grant Likely grant.lik...@secretlab.ca --- drivers/of/Kconfig

[PATCH v2 07/13] net: Rework gianfar driver to use of_mdio infrastructure.

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca This patch simplifies the driver by making use of more common code. Signed-off-by: Grant Likely grant.lik...@secretlab.ca --- drivers/net/gianfar.c | 103 + drivers/net/gianfar.h |3 +

[PATCH v2 08/13] net: Rework ucc_geth driver to use of_mdio infrastructure

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca This patch simplifies the driver by making use of more common code. It also removes what appears to be a large block of duplicated code. Signed-off-by: Grant Likely grant.lik...@secretlab.ca --- drivers/net/ucc_geth.c | 65

[PATCH v2 09/13] net: Rework pasemi_mac driver to use of_mdio infrastructure

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca This patch simplifies the driver by making use of more common code. Signed-off-by: Grant Likely grant.lik...@secretlab.ca --- arch/powerpc/platforms/pasemi/gpio_mdio.c | 29 - drivers/net/pasemi_mac.c |

[PATCH v2 10/13] powerpc/82xx: Rework Embedded Planet ep8248e platform to use of_mdio

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca This patch modifies the bitbanged MDIO driver in the ep8248e platform code to use the common of_mdio infrastructure. Signed-off-by: Grant Likely grant.lik...@secretlab.ca --- arch/powerpc/platforms/82xx/ep8248e.c |7 ++- 1 files changed, 2

[PATCH v2 11/13] net: Rework fs_enet driver to use of_mdio infrastructure

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca This patch simplifies the driver by making use of more common code. Signed-off-by: Grant Likely grant.lik...@secretlab.ca --- drivers/net/fs_enet/fs_enet-main.c | 69 ++-- drivers/net/fs_enet/mii-bitbang.c | 29

[PATCH v2 12/13] powerpc/440: Hacks to ml507 .dts and Marvell PHY driver to test ll_temac

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca CC: Yoshio Kashiwagi kashiw...@co-nss.co.jp CC: David H. Lynch Jr. dh...@dlasys.net CC: John Linn john.l...@xilinx.com CC: John Bonesio john.bone...@xilinx.com CC: David DeBonis ddeb...@xilinx.com CC: Wilson Yang wy...@xilinx.com For information and

[PATCH v2 13/13] net: add Xilinx ll_temac device driver

2009-03-21 Thread Grant Likely
From: Grant Likely grant.lik...@secretlab.ca This patch adds support for the Xilinx ll_temac 10/100/1000 Ethernet device. The ll_temac ipcore is typically used on Xilinx Virtex and Spartan designs attached to either a PowerPC 4xx or Microblaze processor. At the present moment, this driver only