All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/21] STiH410-B2260: add reset, usb and fastboot support
@ 2017-03-17 16:25 patrice.chotard at st.com
  2017-03-17 16:25 ` [U-Boot] [PATCH 01/21] reset: Add STi reset support patrice.chotard at st.com
                   ` (21 more replies)
  0 siblings, 22 replies; 46+ messages in thread
From: patrice.chotard at st.com @ 2017-03-17 16:25 UTC (permalink / raw)
  To: u-boot

From: Patrice Chotard <patrice.chotard@st.com>

This series adds :
	_ add reset driver
	_ update existing sdhci driver to use reset framework
	_ add usb phy driver
	_ add ehci support
	_ add ohci support
	_ add xhci support
	_ add fastboot support

With all this feature enable, it's now possible to 
	_ boot on usb mass storage device
	_ boot from kernel image and dtb previously loaded using tftp
	_ update mmc partiton using fastboot

Patrice Chotard (21):
  reset: Add STi reset support
  mmc: sti_sdhci: Rework sti_mmc_core_config()
  ARM: dts: stih410-family: Add missing reset_names for mmc1 node
  mmc: sti_sdhci: Use reset framework
  phy: Add STi phy usb support
  usb: ehci: Add STi ehci support
  STiH410-B2260: enable USB related flags
  usb: ohci: Add STi ohci support
  STiH410-B2260: enable OHCI related flags
  usb: xhci: Add STi xhci support
  STiH410-B2260: enable XHCI related flags
  STiH410-B2260: Enabling USB Host Networking
  usb: dwc3: Add dwc3 support for STi
  STiH410-B2260: enable DWC3 support
  board: STiH410-B2260: add fastboot support
  STiH410-B2260: enable USB download gadget related flags
  STiH410-B2260: enable FASTBOOT related flags
  STiH410-B2260: enable OF_LIBFDT_OVERLAY
  STiH410-B2260: enable CMD_EXT4_WRITE
  STiH410-B2260: enable CMD_GPT
  STiH410-B2260: enable CMD_PART

 arch/arm/Kconfig                              |   1 +
 arch/arm/dts/stih407-family.dtsi              |   1 +
 arch/arm/include/asm/arch-stih410/sys_proto.h |  11 +
 board/st/stih410-b2260/board.c                |  44 ++++
 configs/stih410-b2260_defconfig               |  33 +++
 drivers/mmc/sti_sdhci.c                       |  60 +++--
 drivers/reset/Kconfig                         |   8 +
 drivers/reset/Makefile                        |   1 +
 drivers/reset/sti-reset.c                     | 321 ++++++++++++++++++++++++++
 drivers/usb/Kconfig                           |   4 +
 drivers/usb/dwc3/Kconfig                      |   8 +
 drivers/usb/dwc3/Makefile                     |   1 +
 drivers/usb/dwc3/dwc3-sti.c                   | 137 +++++++++++
 drivers/usb/host/Kconfig                      |  26 +++
 drivers/usb/host/Makefile                     |   3 +
 drivers/usb/host/ehci-sti.c                   |  91 ++++++++
 drivers/usb/host/ohci-sti.c                   |  90 ++++++++
 drivers/usb/host/xhci-sti.c                   | 156 +++++++++++++
 drivers/usb/phy/Kconfig                       |  11 +
 drivers/usb/phy/Makefile                      |   1 +
 drivers/usb/phy/sti_phy_usb.c                 | 158 +++++++++++++
 include/configs/stih410-b2260.h               |  16 ++
 include/dwc3-sti-uboot.h                      |  50 ++++
 23 files changed, 1210 insertions(+), 22 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-stih410/sys_proto.h
 create mode 100644 drivers/reset/sti-reset.c
 create mode 100644 drivers/usb/dwc3/dwc3-sti.c
 create mode 100644 drivers/usb/host/ehci-sti.c
 create mode 100644 drivers/usb/host/ohci-sti.c
 create mode 100644 drivers/usb/host/xhci-sti.c
 create mode 100644 drivers/usb/phy/Kconfig
 create mode 100644 drivers/usb/phy/sti_phy_usb.c
 create mode 100644 include/dwc3-sti-uboot.h

-- 
1.9.1

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

end of thread, other threads:[~2017-04-19  0:12 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-17 16:25 [U-Boot] [PATCH 00/21] STiH410-B2260: add reset, usb and fastboot support patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 01/21] reset: Add STi reset support patrice.chotard at st.com
2017-03-22 13:05   ` Simon Glass
2017-03-17 16:25 ` [U-Boot] [PATCH 02/21] mmc: sti_sdhci: Rework sti_mmc_core_config() patrice.chotard at st.com
2017-03-21 22:31   ` Jaehoon Chung
2017-03-17 16:25 ` [U-Boot] [PATCH 03/21] ARM: dts: stih410-family: Add missing reset_names for mmc1 node patrice.chotard at st.com
2017-03-21 22:31   ` Jaehoon Chung
2017-03-17 16:25 ` [U-Boot] [PATCH 04/21] mmc: sti_sdhci: Use reset framework patrice.chotard at st.com
2017-03-21 22:33   ` Jaehoon Chung
2017-03-17 16:25 ` [U-Boot] [PATCH 05/21] phy: Add STi phy usb support patrice.chotard at st.com
2017-03-17 16:38   ` Marek Vasut
2017-03-20 10:14     ` Patrice CHOTARD
2017-03-22 13:06   ` Simon Glass
2017-03-23  8:09     ` Patrice CHOTARD
2017-03-17 16:25 ` [U-Boot] [PATCH 06/21] usb: ehci: Add STi ehci support patrice.chotard at st.com
2017-03-17 16:40   ` Marek Vasut
2017-03-20  8:39     ` Patrice CHOTARD
2017-03-22 13:05   ` Simon Glass
2017-03-23  9:59     ` Patrice CHOTARD
2017-04-01  4:21       ` Simon Glass
2017-04-03  9:39         ` Patrice CHOTARD
2017-04-09 19:27           ` Simon Glass
2017-04-18  6:56             ` Patrice CHOTARD
2017-04-19  0:12               ` Simon Glass
2017-03-17 16:25 ` [U-Boot] [PATCH 07/21] STiH410-B2260: enable USB related flags patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 08/21] usb: ohci: Add STi ohci support patrice.chotard at st.com
2017-03-17 16:41   ` Marek Vasut
2017-03-20  8:41     ` Patrice CHOTARD
2017-03-17 16:25 ` [U-Boot] [PATCH 09/21] STiH410-B2260: enable OHCI related flags patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 10/21] usb: xhci: Add STi xhci support patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 11/21] STiH410-B2260: enable XHCI related flags patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 12/21] STiH410-B2260: Enabling USB Host Networking patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 13/21] usb: dwc3: Add dwc3 support for STi patrice.chotard at st.com
2017-03-17 16:42   ` Marek Vasut
2017-03-20 13:45     ` Patrice CHOTARD
2017-03-17 16:25 ` [U-Boot] [PATCH 14/21] STiH410-B2260: enable DWC3 support patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 15/21] board: STiH410-B2260: add fastboot support patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 16/21] STiH410-B2260: enable USB download gadget related flags patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 17/21] STiH410-B2260: enable FASTBOOT " patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 18/21] STiH410-B2260: enable OF_LIBFDT_OVERLAY patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 19/21] STiH410-B2260: enable CMD_EXT4_WRITE patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 20/21] STiH410-B2260: enable CMD_GPT patrice.chotard at st.com
2017-03-17 16:25 ` [U-Boot] [PATCH 21/21] STiH410-B2260: enable CMD_PART patrice.chotard at st.com
2017-03-17 16:42   ` Marek Vasut
2017-03-20 13:45     ` Patrice CHOTARD
2017-03-22  9:56 ` [U-Boot] [PATCH 00/21] STiH410-B2260: add reset, usb and fastboot support Patrice CHOTARD

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.