All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] USB3 support for Armada 38x
@ 2014-04-18 10:22 ` Gregory CLEMENT
  0 siblings, 0 replies; 62+ messages in thread
From: Gregory CLEMENT @ 2014-04-18 10:22 UTC (permalink / raw)
  To: Mathias Nyman, Greg Kroah-Hartman, linux-usb, linux-kernel,
	Jason Cooper, Andrew Lunn, Sebastian Hesselbarth,
	Gregory CLEMENT
  Cc: Thomas Petazzoni, Ezequiel Garcia, linux-arm-kernel,
	Lior Amsalem, Tawfik Bayouk, Nadav Haklai, Grant Likely,
	Rob Herring, devicetree

Hello,

This patch set adds the USB3 support for the Armada 38x and also
prepares the support for Armada 375. These SoCs use an xHCI but still
need specific initialization, mainly to setup the windows memory on
the mbus.

The first patch extend the the xhci-plat driver to allow to register
platform specific functions.

The second patch use it to setup the windows memory on the mbus for
Armada 38x.

Then the 3rd patch update he binding documentation.

This first 3 patches should go through the xhci subsystem, I really
would like to have a feedback on the 1st patch from the USB
maintainers.

The rest of the series is more platform specific and should go through
the mvebu tree, except the last patch that should be taken directly by
the arm-soc maintainer.

The support for Armada 375 is coming soon.

Thanks,

Gregory

Gregory CLEMENT (8):
  usb: host: xhci-plat: Allow to register glue code using the device
    tree
  usb: host: xhci-plat: Add support for the Armada 38x glue code
  xhci-platform: Add a new controller using xhci: Armada 38x
  ARM: mvebu: Add USB3 UTMI support
  ARM: mvebu: Add Device Tree description of xHCI hosts on Armada 38x
  ARM: mvebu: Add USB3 support for Armada 38x
  ARM: configs: Add usb_xhci_mvebu to mvebu_v7_defconfig
  ARM: configs: Add usb_xhci_mvebu to multi_v7_defconfig

 Documentation/devicetree/bindings/usb/usb-xhci.txt |   3 +-
 arch/arm/boot/dts/armada-385-db.dts                |   8 ++
 arch/arm/boot/dts/armada-385-rd.dts                |   4 +
 arch/arm/boot/dts/armada-38x.dtsi                  |  17 ++++
 arch/arm/configs/multi_v7_defconfig                |   1 +
 arch/arm/configs/mvebu_v7_defconfig                |   1 +
 arch/arm/mach-mvebu/Kconfig                        |   1 +
 arch/arm/mach-mvebu/Makefile                       |   2 +-
 arch/arm/mach-mvebu/usb-utmi.c                     |  64 +++++++++++++
 drivers/usb/host/Kconfig                           |   7 ++
 drivers/usb/host/Makefile                          |   1 +
 drivers/usb/host/xhci-mvebu.c                      | 105 +++++++++++++++++++++
 drivers/usb/host/xhci-mvebu.h                      |  21 +++++
 drivers/usb/host/xhci-plat.c                       |  82 +++++++++++++++-
 drivers/usb/host/xhci.h                            |   4 +
 15 files changed, 315 insertions(+), 6 deletions(-)
 create mode 100644 arch/arm/mach-mvebu/usb-utmi.c
 create mode 100644 drivers/usb/host/xhci-mvebu.c
 create mode 100644 drivers/usb/host/xhci-mvebu.h

-- 
1.8.1.2


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

end of thread, other threads:[~2014-04-23 15:25 UTC | newest]

Thread overview: 62+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-18 10:22 [PATCH 0/8] USB3 support for Armada 38x Gregory CLEMENT
2014-04-18 10:22 ` Gregory CLEMENT
2014-04-18 10:22 ` Gregory CLEMENT
2014-04-18 10:22 ` [PATCH 1/8] usb: host: xhci-plat: Allow to register glue code using the device tree Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-20  3:15   ` Felipe Balbi
2014-04-20  3:15     ` Felipe Balbi
2014-04-20  3:15     ` Felipe Balbi
2014-04-18 10:22 ` [PATCH 2/8] usb: host: xhci-plat: Add support for the Armada 38x glue code Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 11:13   ` Sebastian Hesselbarth
2014-04-18 11:13     ` Sebastian Hesselbarth
2014-04-18 11:13     ` Sebastian Hesselbarth
2014-04-18 11:43     ` Gregory CLEMENT
2014-04-18 11:43       ` Gregory CLEMENT
2014-04-18 11:47       ` Sebastian Hesselbarth
2014-04-18 11:47         ` Sebastian Hesselbarth
2014-04-18 11:47         ` Sebastian Hesselbarth
2014-04-20  3:20   ` Felipe Balbi
2014-04-20  3:20     ` Felipe Balbi
2014-04-20  3:20     ` Felipe Balbi
2014-04-23  7:44     ` Gregory CLEMENT
2014-04-23  7:44       ` Gregory CLEMENT
2014-04-23  7:44       ` Gregory CLEMENT
2014-04-23 15:22       ` Felipe Balbi
2014-04-23 15:22         ` Felipe Balbi
2014-04-23 15:22         ` Felipe Balbi
2014-04-18 10:22 ` [PATCH 3/8] xhci-platform: Add a new controller using xhci: Armada 38x Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-20  3:21   ` Felipe Balbi
2014-04-20  3:21     ` Felipe Balbi
2014-04-20  3:21     ` Felipe Balbi
2014-04-18 10:22 ` [PATCH 4/8] ARM: mvebu: Add USB3 UTMI support Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 11:19   ` Sebastian Hesselbarth
2014-04-18 11:19     ` Sebastian Hesselbarth
2014-04-18 11:19     ` Sebastian Hesselbarth
2014-04-18 12:19     ` Gregory CLEMENT
2014-04-18 12:19       ` Gregory CLEMENT
2014-04-18 12:19       ` Gregory CLEMENT
2014-04-20  3:22   ` Felipe Balbi
2014-04-20  3:22     ` Felipe Balbi
2014-04-20  3:22     ` Felipe Balbi
2014-04-18 10:22 ` [PATCH 5/8] ARM: mvebu: Add Device Tree description of xHCI hosts on Armada 38x Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 11:23   ` Sebastian Hesselbarth
2014-04-18 11:23     ` Sebastian Hesselbarth
2014-04-18 11:23     ` Sebastian Hesselbarth
2014-04-18 11:45     ` Gregory CLEMENT
2014-04-18 11:45       ` Gregory CLEMENT
2014-04-18 11:45       ` Gregory CLEMENT
2014-04-18 10:22 ` [PATCH 6/8] ARM: mvebu: Add USB3 support for " Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 10:22 ` [PATCH 7/8] ARM: configs: Add usb_xhci_mvebu to mvebu_v7_defconfig Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 10:22 ` [PATCH 8/8] ARM: configs: Add usb_xhci_mvebu to multi_v7_defconfig Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT
2014-04-18 10:22   ` Gregory CLEMENT

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.