From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752759AbdA3Lur (ORCPT ); Mon, 30 Jan 2017 06:50:47 -0500 Received: from lelnx194.ext.ti.com ([198.47.27.80]:21354 "EHLO lelnx194.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751395AbdA3Lt7 (ORCPT ); Mon, 30 Jan 2017 06:49:59 -0500 From: Kishon Vijay Abraham I To: CC: , Subject: [GIT PULL] phy: for 4.11 Date: Mon, 30 Jan 2017 17:19:23 +0530 Message-ID: <1485776992-8818-1-git-send-email-kishon@ti.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Greg, Please find the phy pull request for 4.11 merge window below. This adds couple of Qualcomm PHY drivers (HSIC and HS) and a USB3 phy driver used in Broadcom NSP SoC. This also includes minor fixes and cleanups. Let me know if I have to change something. Cheers Kishon The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77: Linux 4.10-rc1 (2016-12-25 16:13:08 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git tags/phy-for-4.11 for you to fetch changes up to 0b10f64dbe60cb1b2056f647c052b4278627fe24: phy: qcom-ufs: Fix misplaced jump label (2017-01-27 13:59:13 +0530) ---------------------------------------------------------------- phy: for 4.11 *) Add USB HSIC and HS phy driver for Qualcomm's SoC *) Add USB3 PHY driver for Broadcom NSP SoC *) Make sun4i-usb-phy driver to be used for V3s USB PHY *) Misc fixes and cleanups Signed-off-by: Kishon Vijay Abraham I ---------------------------------------------------------------- Baolin Wang (1): phy: rockchip-inno-usb2: Set EXTCON_USB when EXTCON_CHG_USB_SDP was set Bhumika Goyal (1): drivers: phy: constify phy_ops structures Bjorn Andersson (4): phy: qcom-ufs: Don't kfree devres resource phy: qcom-ufs: Correct usage of regulator_get() phy: qcom-ufs: Remove -always-on property phy: qcom-ufs: Suppress extraneous logging Chanwoo Choi (2): phy: rcar-gen3-usb2: Replace the deprecated extcon API phy: sun4i-usb: Replace the deprecated extcon API Icenowy Zheng (1): phy: sun4i-usb: add support for V3s USB PHY Randy Dunlap (1): phy: fix rockchip-inno-usb2 build errors Stephen Boyd (2): phy: Add support for Qualcomm's USB HSIC phy phy: Add support for Qualcomm's USB HS phy Vivek Gautam (1): phy: qcom-ufs: Fix misplaced jump label Yendapally Reddy Dhananjaya Reddy (2): dt-bindings: phy: Add documentation for NSP USB3 PHY phy: Add USB3 PHY support for Broadcom NSP SoC .../devicetree/bindings/phy/brcm,nsp-usb3-phy.txt | 39 +++ .../devicetree/bindings/phy/qcom,usb-hs-phy.txt | 84 ++++++ .../devicetree/bindings/phy/qcom,usb-hsic-phy.txt | 65 +++++ .../devicetree/bindings/phy/sun4i-usb-phy.txt | 1 + Documentation/devicetree/bindings/ufs/ufs-qcom.txt | 1 - drivers/phy/Kconfig | 24 ++ drivers/phy/Makefile | 3 + drivers/phy/phy-bcm-cygnus-pcie.c | 2 +- drivers/phy/phy-bcm-nsp-usb3.c | 177 ++++++++++++ drivers/phy/phy-hi6220-usb.c | 2 +- drivers/phy/phy-mt65xx-usb3.c | 2 +- drivers/phy/phy-qcom-ufs-i.h | 1 - drivers/phy/phy-qcom-ufs-qmp-14nm.c | 15 +- drivers/phy/phy-qcom-ufs-qmp-20nm.c | 12 +- drivers/phy/phy-qcom-ufs.c | 37 +-- drivers/phy/phy-qcom-usb-hs.c | 296 ++++++++++++++++++++ drivers/phy/phy-qcom-usb-hsic.c | 160 +++++++++++ drivers/phy/phy-rcar-gen3-usb2.c | 10 +- drivers/phy/phy-rockchip-inno-usb2.c | 7 +- drivers/phy/phy-sun4i-usb.c | 18 +- 20 files changed, 893 insertions(+), 63 deletions(-) create mode 100644 Documentation/devicetree/bindings/phy/brcm,nsp-usb3-phy.txt create mode 100644 Documentation/devicetree/bindings/phy/qcom,usb-hs-phy.txt create mode 100644 Documentation/devicetree/bindings/phy/qcom,usb-hsic-phy.txt create mode 100644 drivers/phy/phy-bcm-nsp-usb3.c create mode 100644 drivers/phy/phy-qcom-usb-hs.c create mode 100644 drivers/phy/phy-qcom-usb-hsic.c