Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753405AbcKIJd3 (ORCPT ); Wed, 9 Nov 2016 04:33:29 -0500 Received: from mail-pf0-f177.google.com ([209.85.192.177]:36074 "EHLO mail-pf0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752899AbcKIJd0 (ORCPT ); Wed, 9 Nov 2016 04:33:26 -0500 From: Yendapally Reddy Dhananjaya Reddy To: Rob Herring , Mark Rutland , Russell King , Ray Jui , Scott Branden , Jon Mason , Florian Fainelli , Kishon Vijay Abraham I Cc: bcm-kernel-feedback-list@broadcom.com, netdev@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Yendapally Reddy Dhananjaya Reddy Subject: [PATCH 0/6] USB support for Broadcom NSP SoC Date: Wed, 9 Nov 2016 04:33:08 -0500 Message-Id: <1478683994-12008-1-git-send-email-yendapally.reddy@broadcom.com> X-Mailer: git-send-email 2.1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2148 Lines: 46 This patch set contains the usb support for Broadcom NSP SoC. The usb phy is connected through mdio interface. The mdio interface can be used to access either internal phys or external phys using a multiplexer. The first patch provides the documentation details for mdio-mux and second patch provides the documentation details for usb3 phy. The third patch contains the mdio-mux support and fourth patch contains the changes to the mdio bus driver. The fifth patch provides the phy driver and sixth patch provides the enable method for usb. This patch series has been tested on NSP bcm958625HR board. This patch series is based on v4.9.0-rc1 and is available from github- repo: https://github.com/Broadcom/cygnus-linux.git branch:nsp-usb-v1 Yendapally Reddy Dhananjaya Reddy (6): dt-bindings: mdio-mux: Add documentation for mdio mux for NSP SoC dt-bindings: phy: Add documentation for NSP USB3 PHY net: mdio-mux: Add MDIO mux driver for NSP SoC net: phy: Initialize mdio clock at probe function phy: Add USB3 PHY support for Broadcom NSP SoC arm: dts: nsp: Add USB nodes to device tree .../devicetree/bindings/net/brcm,mdio-mux-nsp.txt | 57 +++++++ .../devicetree/bindings/phy/brcm,nsp-usb3-phy.txt | 39 +++++ arch/arm/boot/dts/bcm-nsp.dtsi | 57 +++++++ arch/arm/boot/dts/bcm958625k.dts | 16 ++ drivers/net/phy/Kconfig | 9 ++ drivers/net/phy/Makefile | 1 + drivers/net/phy/mdio-bcm-iproc.c | 6 +- drivers/net/phy/mdio-mux-bcm-nsp.c | 121 ++++++++++++++ drivers/phy/Kconfig | 9 ++ drivers/phy/Makefile | 1 + drivers/phy/phy-bcm-nsp-usb3.c | 176 +++++++++++++++++++++ 11 files changed, 488 insertions(+), 4 deletions(-) create mode 100644 Documentation/devicetree/bindings/net/brcm,mdio-mux-nsp.txt create mode 100644 Documentation/devicetree/bindings/phy/brcm,nsp-usb3-phy.txt create mode 100644 drivers/net/phy/mdio-mux-bcm-nsp.c create mode 100644 drivers/phy/phy-bcm-nsp-usb3.c -- 2.1.0