All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v8 00/14] Add support for MediaTek xHCI host controller
@ 2020-05-02  9:35 Frank Wunderlich
  2020-05-02  9:35 ` [PATCH v8 01/14] dm: core: Add function to get child count of ofnode or device Frank Wunderlich
                   ` (14 more replies)
  0 siblings, 15 replies; 24+ messages in thread
From: Frank Wunderlich @ 2020-05-02  9:35 UTC (permalink / raw)
  To: u-boot

The series of patches are used to support xHCI host controller on
MediaTek SoCs which has a glue layer IPPC (IP Port Control), and
add USB function on T-PHY including T-PHY V1 and V2;
Finally add USB related nodes for MT7629 platform.

The files of xhci-mtk.* and phy-mtk-tphy.* are ported from
Linux Kenrel 5.6-rc1

v8 changes:
    1. fix build-error reported by Marek in Part 5
    2. make 2 functions static in part 10 suggested by Jagan
    3. added review by Jagan on parts 4 + 10

v7 changes:
    1. add @index for nodes with reg property suggested by Fabio
    2. provide phy bulk init/exit/power on/off suggested by Jagan

v6 changes:
    1. add Reviewed-by Simon & Weijie

v5 changes:
    1. print error number suggested by Marek
    2. support interrupt transfer
    3. update MAINTAINER about MediaTek

v4 changes:
    1. add phy_bulk API
    2. use phy_bulk in xhci-mtk driver, also include dwc3/dwc2 drivers

v3 changes:
    1. provide non/inline edev_get_child_count() suggested by Simon
    2. squash [PATCH v2 02/10] into [PATCH v2 03/10] suggested by Simon
    3. use macros to access IPPC registers suggested by Marek

v2 changes:
    1. move ofnode_get_child_count() into ofnode.c suggested by Simon
    2. add a test item for ofnode_get_child_count() suggested by Simon
    3. use clk_bulk to get clocks suggested by Marek
    4. use clrsetbits_le32() etc suggeseted by Marek
    5. get the count of phys by dev_get_child_count()
    6. drop reference to fixed clock clk20m

Chunfeng Yun (14):
  dm: core: Add function to get child count of ofnode or device
  test: dm: add test item for ofnode_get_child_count()
  phy: Add API for a bulk of phys
  test: dm: phy: add a test item for the phy_bulk API
  usb: dwc3: use the phy bulk API to get phys
  usb: dwc2_udc_otg: use the phy bulk API to get phys
  phy: phy-mtk-tphy: add support USB phys
  phy: phy-mtk-tphy: add support new version
  phy: phy-mtk-tphy: add a new reference clock
  xhci: mediatek: Add support for MTK xHCI host controller
  arm: dts: mt7629: add usb related nodes
  dt-bindings: phy-mtk-tphy: add properties of address mapping and
    clocks
  dt-bindings: usb: mtk-xhci: Add binding for MediaTek xHCI host
    controller
  MAINTAINERS: MediaTek: add USB related files

 MAINTAINERS                                   |   3 +
 arch/arm/dts/mt7629-rfb.dts                   |   8 +
 arch/arm/dts/mt7629.dtsi                      |  41 +++
 arch/sandbox/dts/test.dts                     |  29 ++
 doc/device-tree-bindings/phy/phy-mtk-tphy.txt |  78 ++++-
 .../usb/mediatek,mtk-xhci.txt                 |  40 +++
 drivers/core/ofnode.c                         |  11 +
 drivers/core/read.c                           |   5 +
 drivers/phy/phy-mtk-tphy.c                    | 316 +++++++++++++++++-
 drivers/phy/phy-uclass.c                      |  97 ++++++
 drivers/usb/dwc3/core.c                       |  87 +----
 drivers/usb/dwc3/dwc3-generic.c               |   7 +-
 drivers/usb/gadget/dwc2_udc_otg.c             |  93 +-----
 drivers/usb/host/Kconfig                      |   6 +
 drivers/usb/host/Makefile                     |   1 +
 drivers/usb/host/xhci-dwc3.c                  |   7 +-
 drivers/usb/host/xhci-mtk.c                   | 303 +++++++++++++++++
 drivers/usb/host/xhci.c                       |  10 +
 include/dm/ofnode.h                           |   8 +
 include/dm/read.h                             |  13 +
 include/dwc3-uboot.h                          |  11 +-
 include/generic-phy.h                         |  92 +++++
 include/usb/xhci.h                            |   3 +
 test/dm/ofnode.c                              |  21 ++
 test/dm/phy.c                                 |  33 ++
 25 files changed, 1135 insertions(+), 188 deletions(-)
 create mode 100644 doc/device-tree-bindings/usb/mediatek,mtk-xhci.txt
 create mode 100644 drivers/usb/host/xhci-mtk.c

-- 
2.25.1

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

end of thread, other threads:[~2020-05-06 10:33 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-02  9:35 [PATCH v8 00/14] Add support for MediaTek xHCI host controller Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 01/14] dm: core: Add function to get child count of ofnode or device Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 02/14] test: dm: add test item for ofnode_get_child_count() Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 03/14] phy: Add API for a bulk of phys Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 04/14] test: dm: phy: add a test item for the phy_bulk API Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 05/14] usb: dwc3: use the phy bulk API to get phys Frank Wunderlich
2020-05-06  3:09   ` Chunfeng Yun
2020-05-06  7:35     ` Frank Wunderlich
2020-05-06 10:33       ` Chunfeng Yun
2020-05-02  9:35 ` [PATCH v8 06/14] usb: dwc2_udc_otg: " Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 07/14] phy: phy-mtk-tphy: add support USB phys Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 08/14] phy: phy-mtk-tphy: add support new version Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 09/14] phy: phy-mtk-tphy: add a new reference clock Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 10/14] xhci: mediatek: Add support for MTK xHCI host controller Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 11/14] arm: dts: mt7629: add usb related nodes Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 12/14] dt-bindings: phy-mtk-tphy: add properties of address mapping and clocks Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 13/14] dt-bindings: usb: mtk-xhci: Add binding for MediaTek xHCI host controller Frank Wunderlich
2020-05-02  9:35 ` [PATCH v8 14/14] MAINTAINERS: MediaTek: add USB related files Frank Wunderlich
2020-05-02 10:32 ` [PATCH v8 00/14] Add support for MediaTek xHCI host controller Marek Vasut
2020-05-03  6:33   ` Frank Wunderlich
2020-05-03 11:43     ` Marek Vasut
2020-05-06  2:41       ` Chunfeng Yun
2020-05-04 16:52   ` Frank Wunderlich
2020-05-04 17:16     ` Tom Rini

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.