Hi Greg, Please find below the pull request for 4.7 merge window.
It adds a new PHY driver for USB2 PHY on Northstar SoC and reuses existing PHY drivers to add support for Broadcom NS2 SATA3 PHY, MIPI DPHYs in Exynos542x/Exynos5433 SoCs and USB3 PHY on mt2701. Let me know if I have to change something. Thanks Kishon The following changes since commit 5128de85124c728cdbb6b35bd9dc7410f02c0ca1: phy: rockchip-emmc: adapt binding to specifiy register offset and length (2016-04-13 18:33:05 +0530) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git tags/phy-for-4.7 for you to fetch changes up to 71f5c63c07e5be7abdce40891778ffbf3cec04f0: phy: exynos-mipi-video: Add support for Exynos 5420 and 5433 SoCs (2016-04-30 20:12:30 +0530) ---------------------------------------------------------------- phy: for 4.7 *) Add a new PHY driver for USB2 PHY on Northstar SoC *) Add support for Broadcom NS2 SATA3 PHY in existing Broadcom SATA3 PHY driver *) Add support for MIPI DPHYs in Exynos5420-compatible (5420, 5422 and 5800) and Exynos5433 SoCs *) Add support for USB3 PHY on mt2701 *) Add extcon support for Renesas R-car USB2 PHY driver *) Misc cleanups Signed-off-by: Kishon Vijay Abraham I <kis...@ti.com> ---------------------------------------------------------------- Anup Patel (3): phy: Rename phy-brcmstb-sata driver to phy-brcm-sata driver phy: Add support for NS2 SATA3 PHY in Broadcom SATA3 PHY driver dt-bindings: phy: bindings document for common Broadcom SATA3 PHY driver Chunfeng Yun (2): dt-bindings: phy-mt65xx-usb: add support for mt2701 platform phy: phy-mt65xx-usb3: add support for mt2701 platform Marek Szyprowski (2): phy: exynos-mipi-video: Rewrite handling of phy registers phy: exynos-mipi-video: Add support for Exynos 5420 and 5433 SoCs Rafał Miłecki (1): phy: bcm-ns-usb2: new driver for USB 2.0 PHY on Northstar Simon Horman (3): phy: rcar-gen2: add fallback binding phy: rcar-gen3-usb2: add fallback binding phy: rcar-gen3-usb2, rcar-gen2: Use ARCH_RENESAS Stephen Boyd (1): phy: rockhip-usb: Remove CLK_IS_ROOT Sylwester Nawrocki (1): phy: exynos-mipi-video: Drop support for direct access to PMU Yoshihiro Shimoda (3): phy: rcar-gen3-usb2: remove unnecesary struct rcar_gen3_data phy: rcar-gen3-usb2: Add vbus-supply to handle VBUS on/off phy: rcar-gen3-usb2: add extcon support .../devicetree/bindings/phy/bcm-ns-usb2-phy.txt | 21 + ...brcm,brcmstb-sata-phy.txt => brcm-sata-phy.txt} | 15 +- .../devicetree/bindings/phy/phy-mt65xx-usb.txt | 4 +- .../devicetree/bindings/phy/rcar-gen2-phy.txt | 8 +- .../devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 12 +- .../devicetree/bindings/phy/samsung-phy.txt | 18 +- drivers/phy/Kconfig | 30 +- drivers/phy/Makefile | 3 +- drivers/phy/phy-bcm-ns-usb2.c | 137 +++++++ drivers/phy/phy-brcm-sata.c | 412 ++++++++++++++++++++ drivers/phy/phy-brcmstb-sata.c | 250 ------------ drivers/phy/phy-exynos-mipi-video.c | 321 ++++++++++++--- drivers/phy/phy-mt65xx-usb3.c | 77 ++-- drivers/phy/phy-rcar-gen2.c | 1 + drivers/phy/phy-rcar-gen3-usb2.c | 88 ++++- drivers/phy/phy-rockchip-usb.c | 2 +- include/linux/bcma/bcma.h | 1 + include/linux/bcma/bcma_driver_arm_c9.h | 15 + include/linux/mfd/syscon/exynos5-pmu.h | 3 + 19 files changed, 1035 insertions(+), 383 deletions(-) create mode 100644 Documentation/devicetree/bindings/phy/bcm-ns-usb2-phy.txt rename Documentation/devicetree/bindings/phy/{brcm,brcmstb-sata-phy.txt => brcm-sata-phy.txt} (69%) create mode 100644 drivers/phy/phy-bcm-ns-usb2.c create mode 100644 drivers/phy/phy-brcm-sata.c delete mode 100644 drivers/phy/phy-brcmstb-sata.c create mode 100644 include/linux/bcma/bcma_driver_arm_c9.h -- 1.7.9.5