Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755258Ab2ECBX2 (ORCPT ); Wed, 2 May 2012 21:23:28 -0400 Received: from mail-pb0-f46.google.com ([209.85.160.46]:50868 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753208Ab2ECBX1 (ORCPT ); Wed, 2 May 2012 21:23:27 -0400 From: David Daney To: Ralf Baechle , Grant Likely , Rob Herring , devicetree-discuss@lists.ozlabs.org, "David S. Miller" , netdev@vger.kernel.org Cc: linux-kernel@vger.kernel.org, linux-mips@linux-mips.org, afleming@gmail.com, galak@kernel.crashing.org, David Daney Subject: [PATCH v6 0/3] netdev/of/phy: MDIO bus multiplexer support. Date: Wed, 2 May 2012 18:16:36 -0700 Message-Id: <1336007799-31016-1-git-send-email-ddaney.cavm@gmail.com> X-Mailer: git-send-email 1.7.2.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2672 Lines: 67 From: David Daney This code has been working well for about six months on a couple of different configurations (boards), so I thought it would be a good time to send it out again, and I hope get it on the path towards merging. v6: Correct Kconfig depends in 2/3 as noticed by David Miller. Test against net-next. v5: Correct Kconfig depends in 3/3 as noticed by David Miller. v4: Correct some comment text and rename a couple of variables to better reflect their purpose. v3: Update binding to use "mdio-mux-gpio" compatible property. Cleanups suggested by Grant Likely. Now uses the driver probe deferral mechanism if GPIOs or parent bus not available. v2: Update bindings to use "reg" and "mdio-parent-bus" instead of "cell-index" and "parent-bus" v1: We have several different boards with a multiplexer in the MDIO bus. There is an MDIO bus controller connected to a switching device with several child MDIO busses. Everything is wired up using device tree bindings. 1/3 - New of_mdio_find_bus() function used to help configuring the driver topology. 2/3 - MDIO bus multiplexer framework. 3/3 - A driver for a GPIO controlled multiplexer. David Daney (3): netdev/of/phy: New function: of_mdio_find_bus(). netdev/of/phy: Add MDIO bus multiplexer support. netdev/of/phy: Add MDIO bus multiplexer driven by GPIO lines. .../devicetree/bindings/net/mdio-mux-gpio.txt | 127 +++++++++++++ Documentation/devicetree/bindings/net/mdio-mux.txt | 136 ++++++++++++++ drivers/net/phy/Kconfig | 19 ++ drivers/net/phy/Makefile | 2 + drivers/net/phy/mdio-mux-gpio.c | 142 +++++++++++++++ drivers/net/phy/mdio-mux.c | 192 ++++++++++++++++++++ drivers/net/phy/mdio_bus.c | 32 ++++ drivers/of/of_mdio.c | 2 + include/linux/mdio-mux.h | 21 ++ include/linux/of_mdio.h | 2 + 10 files changed, 675 insertions(+), 0 deletions(-) create mode 100644 Documentation/devicetree/bindings/net/mdio-mux-gpio.txt create mode 100644 Documentation/devicetree/bindings/net/mdio-mux.txt create mode 100644 drivers/net/phy/mdio-mux-gpio.c create mode 100644 drivers/net/phy/mdio-mux.c create mode 100644 include/linux/mdio-mux.h -- 1.7.2.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/