[PATCH 0/8] arm64: meson: Add support for USB on Amlogic G12A

From: Neil Armstrong
Date: Tue Feb 12 2019 - 10:14:21 EST


This patchset adds support for USB on Amlogic G12A SoCs.

This patchset is composed with :
- bindings of the PHYs
- bindings of the USB Control Glue
- PHY Drivers
- USB Control Glue driver

Device Tree nodes will be added in a separate patchset.

The Amlogic G12A USB Complex is composed of :
- 2 USB Controllers :
* DWC3 for USB2 and USB3 Host functionality
* DWC2 for USB2 Peripheral functionality
- 2 USB2 OTG PHYs, only a single one will be routed to either DWC2 to DWC3
- 1 USB3 PHY shared with PCIE funcionnality
- A Glue to control PHY routing, setup and OTG detection

The Glue configures the UTMI 8bit interfaces for the USB2 PHYs, including
routing of the OTG PHY between the DWC3 and DWC2 controllers, and
setups the on-chip OTG mode selection for this PHY.

The PHYs are children of the Glue node since the Glue controls the interface
with the PHY, not the DWC3 controller.

The PHY interconnect is handled into ports subnodes, which eases describing
which PHY is enabled (like the USB3 shared PHY) and futures layouts on
derivatives of the G12A Family.

This drivers supports the on-probe setup of the OTG mode, and manually
via a debugfs interface. The IRQ mode change detect is yet to be added
in a future patchset, mainly due to lack of hardware to validate on.

Neil Armstrong (8):
dt-bindings: phy: Add Amlogic G12A USB2 PHY Bindings
dt-bindings: phy: Add Amlogic G12A USB3+PCIE Combo PHY Bindings
dt-bindings: usb: dwc2: Add Amlogic G12A DWC2 Compatible
dt-bindings: usb: dwc3: Add Amlogic G12A DWC3 Glue Bindings
phy: amlogic: add Amlogic G12A USB2 PHY Driver
phy: amlogic: Add Amlogic G12A USB3 + PCIE Combo PHY Driver
usb: dwc2: Add Amlogic G12A DWC2 Params
usb: dwc3: Add Amlogic G12A DWC3 glue

.../bindings/phy/meson-g12a-usb2-phy.txt | 22 +
.../bindings/phy/meson-g12a-usb3-pcie-phy.txt | 25 +
.../devicetree/bindings/usb/amlogic,dwc3.txt | 109 +++
.../devicetree/bindings/usb/dwc2.txt | 1 +
drivers/phy/amlogic/Kconfig | 24 +
drivers/phy/amlogic/Makefile | 2 +
drivers/phy/amlogic/phy-meson-g12a-usb2.c | 191 +++++
.../phy/amlogic/phy-meson-g12a-usb3-pcie.c | 414 +++++++++++
drivers/usb/dwc2/params.c | 12 +
drivers/usb/dwc3/Kconfig | 9 +
drivers/usb/dwc3/Makefile | 1 +
drivers/usb/dwc3/dwc3-meson-g12a.c | 650 ++++++++++++++++++
12 files changed, 1460 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/meson-g12a-usb2-phy.txt
create mode 100644 Documentation/devicetree/bindings/phy/meson-g12a-usb3-pcie-phy.txt
create mode 100644 drivers/phy/amlogic/phy-meson-g12a-usb2.c
create mode 100644 drivers/phy/amlogic/phy-meson-g12a-usb3-pcie.c
create mode 100644 drivers/usb/dwc3/dwc3-meson-g12a.c

--
2.20.1