mbox series

[0/5] Add XHCI, EHCI and OHCI drivers for Broadcom STB SoCs

Message ID 1538000414-24873-1-git-send-email-alcooperx@gmail.com (mailing list archive)
Headers show
Series Add XHCI, EHCI and OHCI drivers for Broadcom STB SoCs | expand

Message

Alan Cooper Sept. 26, 2018, 10:20 p.m. UTC
Add XHCI, EHCI and OHCI drivers for Broadcom STB SoCs. These drivers
depend on getting access to the new Broadcom STB USB PHY driver
through a device-tree phandle and will fail if the driver is not
available.

Al Cooper (5):
  dt-bindings: Add Broadcom STB OHCI, EHCI and XHCI binding document
  usb: host: Add OHCI driver for Broadcom STB SoCs
  usb: host: Add EHCI driver for Broadcom STB SoCs
  usb: host: Add XHCI driver for Broadcom STB SoCs
  usb: host: Enable building of new Broadcom STB USB drivers

 .../devicetree/bindings/usb/brcm,ehci-brcm.txt     |  22 ++
 .../devicetree/bindings/usb/brcm,ohci-brcm.txt     |  22 ++
 .../devicetree/bindings/usb/brcm,xhci-brcm.txt     |  23 ++
 MAINTAINERS                                        |   9 +
 drivers/usb/host/Kconfig                           |  27 ++
 drivers/usb/host/Makefile                          |   7 +
 drivers/usb/host/ehci-brcm.c                       | 304 +++++++++++++++++++++
 drivers/usb/host/ohci-brcm.c                       | 204 ++++++++++++++
 drivers/usb/host/xhci-brcm.c                       | 294 ++++++++++++++++++++
 9 files changed, 912 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/usb/brcm,ehci-brcm.txt
 create mode 100644 Documentation/devicetree/bindings/usb/brcm,ohci-brcm.txt
 create mode 100644 Documentation/devicetree/bindings/usb/brcm,xhci-brcm.txt
 create mode 100644 drivers/usb/host/ehci-brcm.c
 create mode 100644 drivers/usb/host/ohci-brcm.c
 create mode 100644 drivers/usb/host/xhci-brcm.c