linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/11] Add USB support for Hikey 970
@ 2020-09-07 15:59 Mauro Carvalho Chehab
  2020-09-07 15:59 ` [PATCH v2 01/11] phy: hisilicon: add USB physical layer for Kirin 3670 Mauro Carvalho Chehab
                   ` (10 more replies)
  0 siblings, 11 replies; 19+ messages in thread
From: Mauro Carvalho Chehab @ 2020-09-07 15:59 UTC (permalink / raw)
  Cc: linuxarm, mauro.chehab, Mauro Carvalho Chehab, John Stultz,
	Manivannan Sadhasivam, Greg Kroah-Hartman, linux-kernel,
	Felipe Balbi, David S. Miller, Kishon Vijay Abraham I, linux-usb,
	linux-arm-kernel, Vinod Koul, Rob Herring, devicetree,
	Rob Herring, Dragan Cvetic, Arnd Bergmann, Krzysztof Kozlowski,
	Derek Kiernan, Philipp Zabel, Wei Xu, Yu Chen

Add the PHY layer for Hikey 970 and a misc driver that it is
required for the USB hub to work. The same USB hub is needed
by Hikey 960. 

That's the second version, addressing the points raised by
Mark on the RFC version and adding an extra patch in order for
it to use the dwc3-of-simple driver. Such binding is required,
as using dwc3 directly causes an Serror on ARM.

-

PS.: I'll be sending the dts bindings later on. We need first to
add a small quirk to dwc3:

    https://patchwork.kernel.org/patch/10909965/

I'll be sending a newer version of this specific patch probably
tomorrow.

Mauro Carvalho Chehab (8):
  phy: hisilicon: phy-hi3670-usb3: use a consistent namespace
  phy: hisilicon: phy-hi3670-usb3: fix coding style
  phy: hisilicon: phy-hi3670-usb3: change some DT properties
  dt-bindings: phy: convert phy-kirin970-usb3.txt to yaml
  MAINTAINERS: add myself as maintainer for Kirin 970 USB PHY
  misc: hisi_hikey_usb: add support for Hikey 970
  dwc3-of-simple: add support for Hikey 970
  dts: hisilicon: add support for USB3 on Hikey 970

Yu Chen (3):
  phy: hisilicon: add USB physical layer for Kirin 3670
  phy: hisilicon: phy-hi3670-usb3: fix some issues at the init code
  misc: hisi_hikey_usb: Driver to support onboard USB gpio hub on
    Hikey960

 .../bindings/phy/hisilicon,hi3670-usb3.yaml   |  72 ++
 MAINTAINERS                                   |  16 +-
 .../boot/dts/hisilicon/hi3670-hikey970.dts    | 102 +++
 arch/arm64/boot/dts/hisilicon/hi3670.dtsi     |  58 ++
 drivers/misc/Kconfig                          |   9 +
 drivers/misc/Makefile                         |   1 +
 drivers/misc/hisi_hikey_usb.c                 | 274 +++++++
 drivers/phy/hisilicon/Kconfig                 |  10 +
 drivers/phy/hisilicon/Makefile                |   1 +
 drivers/phy/hisilicon/phy-hi3670-usb3.c       | 671 ++++++++++++++++++
 drivers/usb/dwc3/dwc3-of-simple.c             |   4 +-
 11 files changed, 1216 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
 create mode 100644 drivers/misc/hisi_hikey_usb.c
 create mode 100644 drivers/phy/hisilicon/phy-hi3670-usb3.c

-- 
2.26.2



^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2020-09-09 18:15 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-07 15:59 [PATCH v2 00/11] Add USB support for Hikey 970 Mauro Carvalho Chehab
2020-09-07 15:59 ` [PATCH v2 01/11] phy: hisilicon: add USB physical layer for Kirin 3670 Mauro Carvalho Chehab
2020-09-07 15:59 ` [PATCH v2 02/11] phy: hisilicon: phy-hi3670-usb3: fix some issues at the init code Mauro Carvalho Chehab
2020-09-07 15:59 ` [PATCH v2 03/11] phy: hisilicon: phy-hi3670-usb3: use a consistent namespace Mauro Carvalho Chehab
2020-09-07 15:59 ` [PATCH v2 04/11] phy: hisilicon: phy-hi3670-usb3: fix coding style Mauro Carvalho Chehab
2020-09-07 15:59 ` [PATCH v2 05/11] phy: hisilicon: phy-hi3670-usb3: change some DT properties Mauro Carvalho Chehab
2020-09-07 15:59 ` [PATCH v2 06/11] dt-bindings: phy: convert phy-kirin970-usb3.txt to yaml Mauro Carvalho Chehab
2020-09-07 15:59 ` [PATCH v2 07/11] MAINTAINERS: add myself as maintainer for Kirin 970 USB PHY Mauro Carvalho Chehab
2020-09-07 15:59 ` [PATCH v2 08/11] misc: hisi_hikey_usb: Driver to support onboard USB gpio hub on Hikey960 Mauro Carvalho Chehab
2020-09-09  8:35   ` Greg Kroah-Hartman
2020-09-09  8:44     ` Mauro Carvalho Chehab
2020-09-09  9:55       ` Mauro Carvalho Chehab
2020-09-09 18:15         ` Greg Kroah-Hartman
2020-09-07 15:59 ` [PATCH v2 09/11] misc: hisi_hikey_usb: add support for Hikey 970 Mauro Carvalho Chehab
2020-09-07 15:59 ` [PATCH v2 10/11] dwc3-of-simple: " Mauro Carvalho Chehab
2020-09-08  6:02   ` Felipe Balbi
2020-09-08  6:53   ` Mauro Carvalho Chehab
2020-09-08  7:45     ` Felipe Balbi
2020-09-07 15:59 ` [PATCH v2 11/11] dts: hisilicon: add support for USB3 on " Mauro Carvalho Chehab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).