All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Add support for USB on ST-Ericsson Ux500
@ 2021-07-05 16:28 Stephan Gerhold
  2021-07-05 16:28 ` [PATCH 1/3] power: pmic: Add driver for ST-Ericsson AB8500 via PRCMU Stephan Gerhold
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Stephan Gerhold @ 2021-07-05 16:28 UTC (permalink / raw)
  To: u-boot
  Cc: Marek Vasut, Linus Walleij, Joe Hershberger, Jaehoon Chung,
	Stephan Gerhold

This patch series adds support for USB on ST-Ericsson Ux500 by:
  - Adding a driver to talk to the AB8500 PMIC
  - Adding a driver to enable the USB PHY
  - Adding a simple Ux500 glue driver for the musb-new driver

This was tested on the u8500 "stemmy" board that is already present
in U-Boot.


Stephan Gerhold (3):
  power: pmic: Add driver for ST-Ericsson AB8500 via PRCMU
  phy: Add driver for ST-Ericsson AB8500 USB PHY
  usb: musb-new: Add glue driver for ST-Ericsson Ux500

 drivers/phy/Kconfig              |   6 +
 drivers/phy/Makefile             |   1 +
 drivers/phy/phy-ab8500-usb.c     |  54 +++++++
 drivers/power/pmic/Kconfig       |  10 ++
 drivers/power/pmic/Makefile      |   1 +
 drivers/power/pmic/ab8500.c      | 258 +++++++++++++++++++++++++++++++
 drivers/usb/musb-new/Kconfig     |  11 +-
 drivers/usb/musb-new/Makefile    |   1 +
 drivers/usb/musb-new/musb_core.c |   2 +-
 drivers/usb/musb-new/ux500.c     | 179 +++++++++++++++++++++
 include/power/ab8500.h           | 125 +++++++++++++++
 11 files changed, 646 insertions(+), 2 deletions(-)
 create mode 100644 drivers/phy/phy-ab8500-usb.c
 create mode 100644 drivers/power/pmic/ab8500.c
 create mode 100644 drivers/usb/musb-new/ux500.c
 create mode 100644 include/power/ab8500.h

-- 
2.32.0


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

end of thread, other threads:[~2021-07-07 23:48 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-05 16:28 [PATCH 0/3] Add support for USB on ST-Ericsson Ux500 Stephan Gerhold
2021-07-05 16:28 ` [PATCH 1/3] power: pmic: Add driver for ST-Ericsson AB8500 via PRCMU Stephan Gerhold
2021-07-06  1:08   ` Jaehoon Chung
2021-07-06  8:52     ` Stephan Gerhold
2021-07-06 21:25       ` Jaehoon Chung
2021-07-07 13:15         ` Stephan Gerhold
2021-07-05 16:28 ` [PATCH 2/3] phy: Add driver for ST-Ericsson AB8500 USB PHY Stephan Gerhold
2021-07-06  1:10   ` Jaehoon Chung
2021-07-06  9:01     ` Stephan Gerhold
2021-07-07 23:46   ` Linus Walleij
2021-07-05 16:28 ` [PATCH 3/3] usb: musb-new: Add glue driver for ST-Ericsson Ux500 Stephan Gerhold
2021-07-07 23:47   ` Linus Walleij

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.