[PATCHv5 00/20] USB support for Armada 38x and Armada 375

Gregory CLEMENT gregory.clement at free-electrons.com
Mon May 12 07:29:47 PDT 2014


On 11/05/2014 20:17, Thomas Petazzoni wrote:
> Hello,
> 
> This patch set adds the USB support for the Armada 38x and Armada 375
> SOCs. These SoCs use an xHCI but still need specific initialization,
> mainly to setup the MBus memory windows. They also have another USB
> controller for EHCI, identical to the one used on other mvebu SOCs.
> 
> This series is also available in
> the branch USB-375-38x-3.15-rc1-V5
> https://github.com/MISL-EBU-System-SW/mainline-public.git


Hi,

it seems that no this series is in a pretty good shape.

Jason could you take it in mvebu/for-next? I would like see in
linux-next for a few days before sending a formal pull request.

In the mean time I would like to know how we can handle the merge of
this series.

The 5 first patches modify the EHCI part of the USB subsystem, Alan
Stern gave his acked-by for the 4th first one, and as the 5th one is
just an update of the documentation, I think Alan could take them.

The others patches don't depends on it neither for building or for
running the kernel. Of course at the end to be able to use USB on the
Armada 375/38x platform we will need some of them, but if they are
missing, then there will be no USB support as in the current kernel,
so no regression will be introduce.

Then patches from 6 to 9 are related to the xHCI part of the USB
subsystem, Felipe Balbi gave his acked-by for the former version (I am
going ta ask him his formal acked-by for the new ones), however the
xHCI maintainer Mathias Nyman didn't comment them. I hope he agree to
take them. As for the EHCI part, the others patches don't depends on
it neither for building or for running the kernel.

Patches 10 and 11 related to the USB PHY part have been reviewed but
the PHY maintainers Kishon Vijay Abraham I and Felipe Balbi didn't
comment them. For Kishon Vijay Abraham I, it was our fault he wasn't
in copy of this email. Here again no dependencies for building or
running the kernel.

Finally patches 12 to 20 are mvebu related and the patch 15 should be
handle directly by arm-soc but there is nothing controversial in it,
they are here to allow to enable the use of USB on the Armada 375/38x
platform. Here again no dependencies for building or running the
kernel.


>From my point of view these 4 chunks can be merged independently, but
if there is a need to merge the series as a whole then it should be
done through the arm-soc tree because most of the merge conflict are
likely to happen in the dts and config file.

Thanks!

Gregory

> 
> Changes between v4 and v5:
> 
>  * Fixed a compile time problem when CONFIG_USB_XHCI_MVEBU was
>    disabled. Noticed by Shimoda, Yoshihiro
>    <yoshihiro.shimoda.uh at renesas.com>.
> 
>  * Added Acked-by from Alan Stern on patches 1 to 4.
> 
> Changes between v3 and v4:
> 
>  * Additional patch that removes the use of of_irq_parse_and_map() in
>    ehci-orion, and just uses platform_get_irq() instead, to avoid a
>    different case between DT and non-T.
> 
>  * Additional patch that renames the ehci-orion error handling goto
>    labels to have more meaningful names, in preparation for handling
>    of additional error cases in followup patches.
> 
>  * Additional patch to update the ehci-orion Device Tree binding
>    documentation.
> 
>  * Merge of 375/38x XHCI support patches: one patch for the driver,
>    one patch for the Device Tree binding documentation (instead of one
>    patch of these, for each SoC).
> 
>  * Update of the XHCI Device Tree binding documentation to indicate
>    the new optional clocks property.
> 
>  * Update of armada-375.dtsi to add missing spaces in the phy-names
>    definition.
> 
>  * Update of armada-38x.dtsi to use 0x4000 instead of 0x3fff for the
>    register area length. Noticed by Andrew Lunn.
> 
>  * Changed the PHY driver Kconfig option to only be enabled either
>    when MACH_ARMADA_375 or COMPILE_TEST are enabled. In the previous
>    version, the PHY driver was always enabled, regardless of the
>    platform.
> 
>  * Various improvements to the PHY driver:
> 
>     - Rename USB2_PHY_CONFIG_ENABLE to USB2_PHY_CONFIG_DISABLE, as
>       suggested by Ezequiel Garcia.
>     - Simplify the logic of armada375_usb_phy_init() by handling the
>       !cluster_phy->enable case first.
>     - Use devm_ioremap_resource() in the ->probe() function instead of
>       of_iomap().
>     - Bail out from ->probe() when a PHY cannot be created.
>     - Fix typos in comments.
> 
>  * Reworded the Kconfig prompt and help text of XHCI_MVEBU to indicate
>    that it's for both 375 and 38x (it was only indicating 38x until
>    now).
> 
>  * Changed the Makefile bit of the xhci-mvebu driver according to the
>    suggestion of Felipe Balbi, so that things work properly when
>    CONFIG_USB_XHCI_MVEBU is 'm'.
> 
>  * Various improvements in the ehci-orion driver:
> 
>     - Use better goto labels for error handling in ->probe().
>     - Use devm_phy_optional_get() instead of devm_phy_get(), which
>       allows to handle EPROBE_DEFER cases nicely.
>     - Call phy_power_off() when needed (probe error handling, and
>       remove).
>     - Use __initconst instead of __initdata for override structure, as
>       noticed by checkpatch.
>     - Fix use after free errors noticed by Felipe Balbi.
> 
>  * Various improvements to the XHCI driver:
> 
>     - Don't make xhci_mvebu_mbus_config() an __init function, since
>       it's called from probe(), which isn't in __init.
>     - Don't use the buggy 'priv[0]' solution implemented in the
>       previous version of the patch set (see in
>       http://lists.infradead.org/pipermail/linux-arm-kernel/2014-May/253871.html
>       the details of why it doesn't work). Instead, add a 'struct
>       clk*' field in xhci_hcd to support the clock in xhci-plat,
>       exactly like xhci_hcd has msix_count and msix_entries for
>       xhci-pci.
>     - Misc minor code style improvements.
> 
> Thomas
> 
> Gregory CLEMENT (17):
>   usb: ehci-orion: fix clock reference leaking
>   usb: ehci-orion: add optional PHY support
>   usb: host: xhci-plat: sort the headers in alphabetic order
>   usb: host: xhci-plat: add clock support
>   usb: host: xhci-plat: add support for the Armada 375/38x XHCI
>     controllers
>   Documentation: dt-bindings: update xhci-platform DT binding
>   phy: add support for USB cluster on the Armada 375 SoC
>   Documentation: dt-bindings: document the Armada 375 USB cluster
>     binding
>   ARM: mvebu: add USB3 support for Armada 38x
>   ARM: mvebu: add USB3 support for Armada 375
>   ARM: configs: enable XHCI mvebu support in mvebu_v7_defconfig
>   ARM: configs: enable XHCI mvebu support in multi_v7_defconfig
>   ARM: mvebu: add Device Tree description of xHCI controllers on Armada
>     38x
>   ARM: mvebu: add Device Tree description of the EHCI controller on
>     Armada 38x
>   ARM: mvebu: add Device Tree description of USB cluster controller on
>     Armada 375
>   ARM: mvebu: add Device Tree description of the xHCI controller on
>     Armada 375
>   ARM: mvebu: add Device Tree description of the EHCI controller on
>     Armada 375
> 
> Thomas Petazzoni (3):
>   usb: ehci-orion: use platform_get_irq() for DT probing
>   usb: ehci-orion: rename error goto labels in ehci_orion_drv_probe()
>   Documentation: dt-bindings: update ehci-orion binding documentation
> 
>  .../bindings/phy/armada-375-usb-phy-cluster.txt    |  19 +++
>  .../devicetree/bindings/usb/ehci-orion.txt         |   5 +
>  Documentation/devicetree/bindings/usb/usb-xhci.txt |   7 +-
>  arch/arm/boot/dts/armada-375-db.dts                |   8 ++
>  arch/arm/boot/dts/armada-375.dtsi                  |  34 +++++
>  arch/arm/boot/dts/armada-385-db.dts                |  12 ++
>  arch/arm/boot/dts/armada-385-rd.dts                |   4 +
>  arch/arm/boot/dts/armada-38x.dtsi                  |  25 ++++
>  arch/arm/configs/multi_v7_defconfig                |   1 +
>  arch/arm/configs/mvebu_v7_defconfig                |   1 +
>  arch/arm/mach-mvebu/Kconfig                        |   2 +
>  drivers/phy/Kconfig                                |   6 +
>  drivers/phy/Makefile                               |   1 +
>  drivers/phy/phy-armada375-usb2.c                   | 157 +++++++++++++++++++++
>  drivers/usb/host/Kconfig                           |   8 ++
>  drivers/usb/host/Makefile                          |   3 +
>  drivers/usb/host/ehci-orion.c                      |  92 ++++++++----
>  drivers/usb/host/xhci-mvebu.c                      |  70 +++++++++
>  drivers/usb/host/xhci-mvebu.h                      |  21 +++
>  drivers/usb/host/xhci-plat.c                       |  42 +++++-
>  drivers/usb/host/xhci.h                            |   2 +
>  21 files changed, 488 insertions(+), 32 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/phy/armada-375-usb-phy-cluster.txt
>  create mode 100644 drivers/phy/phy-armada375-usb2.c
>  create mode 100644 drivers/usb/host/xhci-mvebu.c
>  create mode 100644 drivers/usb/host/xhci-mvebu.h
> 


-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com



More information about the linux-arm-kernel mailing list