From: Kishon Vijay Abraham I <kishon@ti.com>
To: <gregkh@linuxfoundation.org>
Cc: <kishon@ti.com>, <linux-kernel@vger.kernel.org>
Subject: [GIT PULL] phy: for 4.7
Date: Mon, 2 May 2016 09:52:51 +0530 [thread overview]
Message-ID: <1462162987-13023-1-git-send-email-kishon@ti.com> (raw)
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 <kishon@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
next reply other threads:[~2016-05-02 4:23 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-02 4:22 Kishon Vijay Abraham I [this message]
2016-05-02 4:22 ` [PATCH 01/16] phy: rcar-gen2: add fallback binding Kishon Vijay Abraham I
2016-05-02 4:22 ` [PATCH 02/16] phy: rcar-gen3-usb2: " Kishon Vijay Abraham I
2016-05-02 4:22 ` [PATCH 03/16] phy: rcar-gen3-usb2, rcar-gen2: Use ARCH_RENESAS Kishon Vijay Abraham I
2016-05-02 4:22 ` [PATCH 04/16] phy: Rename phy-brcmstb-sata driver to phy-brcm-sata driver Kishon Vijay Abraham I
2016-05-02 4:22 ` [PATCH 05/16] phy: Add support for NS2 SATA3 PHY in Broadcom SATA3 PHY driver Kishon Vijay Abraham I
2016-05-02 4:22 ` [PATCH 06/16] dt-bindings: phy: bindings document for common " Kishon Vijay Abraham I
2016-05-02 4:22 ` [PATCH 07/16] phy: rcar-gen3-usb2: remove unnecesary struct rcar_gen3_data Kishon Vijay Abraham I
2016-05-02 4:22 ` [PATCH 08/16] phy: rcar-gen3-usb2: Add vbus-supply to handle VBUS on/off Kishon Vijay Abraham I
2016-05-02 4:23 ` [PATCH 09/16] phy: rcar-gen3-usb2: add extcon support Kishon Vijay Abraham I
2016-05-02 4:23 ` [PATCH 10/16] dt-bindings: phy-mt65xx-usb: add support for mt2701 platform Kishon Vijay Abraham I
2016-05-02 4:23 ` [PATCH 11/16] phy: phy-mt65xx-usb3: " Kishon Vijay Abraham I
2016-05-02 4:23 ` [PATCH 12/16] phy: rockhip-usb: Remove CLK_IS_ROOT Kishon Vijay Abraham I
2016-05-02 4:23 ` [PATCH 13/16] phy: bcm-ns-usb2: new driver for USB 2.0 PHY on Northstar Kishon Vijay Abraham I
2016-05-02 4:23 ` [PATCH 14/16] phy: exynos-mipi-video: Drop support for direct access to PMU Kishon Vijay Abraham I
2016-05-02 4:23 ` [PATCH 15/16] phy: exynos-mipi-video: Rewrite handling of phy registers Kishon Vijay Abraham I
2016-05-02 4:23 ` [PATCH 16/16] phy: exynos-mipi-video: Add support for Exynos 5420 and 5433 SoCs Kishon Vijay Abraham I
2016-05-03 21:51 ` [GIT PULL] phy: for 4.7 Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1462162987-13023-1-git-send-email-kishon@ti.com \
--to=kishon@ti.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox