lkml.org 
[lkml]   [2017]   [Aug]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Subject[GIT PULL v2] phy: for 4.14
Date
Hi Greg,

Stephen Rothwell reported a issue with my previous pull request
w.r.t missing Signed-off-by committer. I've fixed that in this pull
request.

It adds a new USB phy driver for Ralink SoC, add support for PCIe and
SATA PHY in phy-mt65xx-usb3 driver, add support for allwinner A83T
USB PHY and Qualcomm IPQ8074 in sun4i-usb-phy driver and
qcom-qmp-phy driver respectively.

Please let me know if I have to make any changes.

Thanks
Kishon

The following changes since commit 5771a8c08880cdca3bfb4a3fc6d309d6bba20877:

Linux v4.13-rc1 (2017-07-15 15:22:10 -0700)

are available in the git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git tags/phy-for-4.14_v2

for you to fetch changes up to d9c51f4c53ae2af03aa8bd001d46f21b0adcdab8:

phy: brcm-sata: fix a timeout test in init (2017-08-22 10:11:27 +0530)

----------------------------------------------------------------
phy: for 4.14

*) Add USB PHY driver for Ralink SoC
*) Make phy-mt65xx-usb3 driver support PCIe and SATA phy
*) Add mediatek directory and rename phy-mt65xx-usb3 to phy-mtk-tphy.c
since it now supports USB3.0, PCIe and SATA PHYs
*) Make sun4i-usb-phy driver support USB PHYs for A83T SoC
*) Make phy-qcom-qmp driver support USB PHYs for IPQ8074 SoC
*) Make rockchip-inno-usb2 driver support usb2-phy for rv1108 SoC
*) Minor fixes in phy drivers

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>

----------------------------------------------------------------
Chen-Yu Tsai (4):
dt-bindings: phy: sun4i-usb-phy: Add property descriptions for H3
dt-bindings: phy: sun4i-usb-phy: Add compatible string for A83T
phy: sun4i-usb: Support secondary clock for HSIC PHY
phy: sun4i-usb: Support A83T USB PHYs

Chunfeng Yun (3):
dt-bindings: phy-mt65xx-usb: supports PCIe, SATA and rename file
phy: phy-mt65xx-usb3: add mediatek directory and rename file
phy: samsung: use of_device_get_match_data()

Dan Carpenter (3):
phy: phy-twl4030-usb: silence an uninitialized variable warning
phy: cpcap-usb: remove a stray tab
phy: brcm-sata: fix a timeout test in init

Frank Wang (5):
phy: rockchip-inno-usb2: add support for rockchip,usbgrf property
dt-bindings: phy-rockchip-inno-usb2: add rockchip,usbgrf property
phy: rockchip-inno-usb2: add support for otg-mux interrupt
dt-bindings: phy-rockchip-inno-usb2: add otg-mux interrupt
phy: rockchip-inno-usb2: add support of usb2-phy for rv1108 SoCs

John Crispin (2):
dt-bindings: phy: Add bindings for ralink-usb PHY
phy: ralink-usb: add driver for Mediatek/Ralink

Quentin Schulz (1):
phy: allwinner: phy-sun4i-usb: Add log when probing

Roger Quadros (1):
phy: ti-pipe3: Use TRM recommended settings for SATA DPLL

Ryder Lee (2):
phy: phy-mt65xx-usb3: add PCIe PHY support
phy: phy-mt65xx-usb3: add SATA PHY support

Shawn Lin (1):
phy: rockchip-typec: remove unused dfp variable

Varadarajan Narayanan (4):
dt-bindings: phy: qmp: Add output-clock-names
dt-bindings: phy: qmp: Add support for QMP phy in IPQ8074
phy: qcom-qmp: Fix phy pipe clock name
phy: qcom-qmp: Add support for IPQ8074

Vivek Gautam (1):
phy: qcom-qmp: Fix failure path in phy_init functions

Documentation/devicetree/bindings/phy/{phy-mt65xx-usb.txt => phy-mtk-tphy.txt} | 17 ++--
Documentation/devicetree/bindings/phy/phy-rockchip-inno-usb2.txt | 11 ++-
Documentation/devicetree/bindings/phy/qcom-qmp-phy.txt | 11 +++
Documentation/devicetree/bindings/phy/ralink-usb-phy.txt | 23 +++++
Documentation/devicetree/bindings/phy/sun4i-usb-phy.txt | 10 ++-
MAINTAINERS | 2 +-
drivers/phy/Kconfig | 10 +--
drivers/phy/Makefile | 3 +-
drivers/phy/allwinner/phy-sun4i-usb.c | 112 ++++++++++++++++++++----
drivers/phy/broadcom/phy-brcm-sata.c | 2 +-
drivers/phy/mediatek/Kconfig | 14 +++
drivers/phy/mediatek/Makefile | 5 ++
drivers/phy/{phy-mt65xx-usb3.c => mediatek/phy-mtk-tphy.c} | 557 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------
drivers/phy/motorola/phy-cpcap-usb.c | 2 +-
drivers/phy/qualcomm/phy-qcom-qmp.c | 162 ++++++++++++++++++++++++++++++-----
drivers/phy/ralink/Kconfig | 11 +++
drivers/phy/ralink/Makefile | 1 +
drivers/phy/ralink/phy-ralink-usb.c | 249 +++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/phy/rockchip/phy-rockchip-inno-usb2.c | 215 +++++++++++++++++++++++++++++++++++-----------
drivers/phy/rockchip/phy-rockchip-typec.c | 3 +-
drivers/phy/samsung/phy-exynos-dp-video.c | 5 +-
drivers/phy/samsung/phy-exynos5-usbdrd.c | 7 +-
drivers/phy/samsung/phy-samsung-usb2.c | 9 +-
drivers/phy/ti/phy-ti-pipe3.c | 10 +--
drivers/phy/ti/phy-twl4030-usb.c | 2 +-
25 files changed, 1200 insertions(+), 253 deletions(-)
rename Documentation/devicetree/bindings/phy/{phy-mt65xx-usb.txt => phy-mtk-tphy.txt} (88%)
create mode 100644 Documentation/devicetree/bindings/phy/ralink-usb-phy.txt
create mode 100644 drivers/phy/mediatek/Kconfig
create mode 100644 drivers/phy/mediatek/Makefile
rename drivers/phy/{phy-mt65xx-usb3.c => mediatek/phy-mtk-tphy.c} (51%)
create mode 100644 drivers/phy/ralink/Kconfig
create mode 100644 drivers/phy/ralink/Makefile
create mode 100644 drivers/phy/ralink/phy-ralink-usb.c

--
2.11.0

\
 
 \ /
  Last update: 2017-08-22 07:00    [W:0.057 / U:1.952 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site