All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/26] mx6sabre: Add DM and SPL FIT support
@ 2019-01-18 14:53 Abel Vesa
  2019-01-18 14:53 ` [U-Boot] [PATCH 01/26] usb: Rename SPL_USB_SUPPORT to SPL_USB_STORAGE Abel Vesa
                   ` (26 more replies)
  0 siblings, 27 replies; 35+ messages in thread
From: Abel Vesa @ 2019-01-18 14:53 UTC (permalink / raw)
  To: u-boot

This comes as a next iteration to the followin RFC:
https://lists.denx.de/pipermail/u-boot/2019-January/354834.html

Changes since that RFC:
 * Add all the dl/qp/q dts and dtsi files from linux as suggested
   by Fabio Estevam
 * Removed the ENET reset gpio handling from board file since
   relying on the phy-reset-gpios from imx6qdl-sabresd.dtsi 
 * Reworked the SPL_USB_SUPPORT and renamed it to SPL_USB_STORAGE 
   as suggested by Tom Rini

Abel Vesa (26):
  usb: Rename SPL_USB_SUPPORT to SPL_USB_STORAGE
  usb: ehci-mx6: Make regulator DM_REGULATOR dependent
  configs: imx6sabreauto: Add DM_MMC support
  configs: imx6sabreauto: Add DM_USB support
  mmc: fsl_esdhc: Fix DM_REGULATOR ifdefs for SPL builds
  arm: imx: Add board_fit_config_name_match to support FIT in SPL
  arm: dts: Add devicetree for i.MX6QP
  arm: dts: Add imx6qdl-sabreauto dtsi file
  arm: dts: Add imx6qdl-sabresd dtsi file
  arm: dts: Add all imx6sabre u-boot dtsi files
  arm: dts: Add imx6q-sabreauto dts file
  arm: dts: Add imx6q-sabresd dts file
  arm: dts: Add imx6dl-sabreauto dts file
  arm: dts: Add imx6dl-sabresd dts file
  arm: dts: Add imx6qp-sabreauto dts file
  arm: dts: Add imx6qp-sabresd dts file
  arm: imx: Add FIT SPL its
  configs: mx6sabreauto: Add SPL FIT and DM support
  configs: mx6sabresd: Add SPL FIT and DM support
  mx6sabreauto: Add DM_GPIO support
  mx6sabresd: Add DM_GPIO support
  configs: mx6sabreauto: Add DM_SPI_FLASH necessary configs
  configs: mx6sabresd: Add DM_SPI_FLASH necessary configs
  board: mx6sabreauto: Remove the non-DM code
  board: mx6sabresd: Remove non-DM code
  board: mx6sabresd: Remove the enet reset gpio handling

 arch/arm/dts/Makefile                       |   8 +-
 arch/arm/dts/imx6dl-sabreauto-u-boot.dtsi   |   6 +
 arch/arm/dts/imx6dl-sabreauto.dts           |  17 +
 arch/arm/dts/imx6dl-sabresd.dts             |  17 +
 arch/arm/dts/imx6q-sabreauto-u-boot.dtsi    |   6 +
 arch/arm/dts/imx6q-sabreauto.dts            |  25 ++
 arch/arm/dts/imx6q-sabresd-u-boot.dtsi      |   6 +
 arch/arm/dts/imx6q-sabresd.dts              |  25 ++
 arch/arm/dts/imx6qdl-sabreauto-u-boot.dtsi  |  14 +
 arch/arm/dts/imx6qdl-sabreauto.dtsi         | 634 ++++++++++++++++++++++++++++
 arch/arm/dts/imx6qdl-sabresd-u-boot.dtsi    |  14 +
 arch/arm/dts/imx6qdl-sabresd.dtsi           | 623 +++++++++++++++++++++++++++
 arch/arm/dts/imx6qp-sabreauto-u-boot.dtsi   |   6 +
 arch/arm/dts/imx6qp-sabreauto.dts           |  93 ++++
 arch/arm/dts/imx6qp-sabresd.dts             |  93 ++++
 arch/arm/dts/imx6qp.dtsi                    |  89 ++++
 arch/arm/include/asm/arch-am33xx/spl.h      |   2 +-
 arch/arm/mach-imx/mx6/fit_spl.its           |  41 ++
 arch/arm/mach-imx/spl.c                     |  10 +
 arch/arm/mach-omap2/boot-common.c           |   2 +-
 board/freescale/mx6sabreauto/mx6sabreauto.c |  73 +---
 board/freescale/mx6sabresd/mx6sabresd.c     |  60 +--
 common/Makefile                             |   5 +-
 common/spl/Kconfig                          |   4 +-
 common/spl/Makefile                         |   2 +-
 common/spl/spl_usb.c                        |   4 -
 configs/am43xx_evm_usbhost_boot_defconfig   |   2 +-
 configs/am43xx_hs_evm_defconfig             |   2 +-
 configs/mx6sabreauto_defconfig              |  20 +-
 configs/mx6sabresd_defconfig                |  22 +-
 drivers/mmc/fsl_esdhc.c                     |   8 +-
 drivers/usb/host/ehci-mx6.c                 |   7 +-
 include/configs/imx6_spl.h                  |   2 +
 33 files changed, 1794 insertions(+), 148 deletions(-)
 create mode 100644 arch/arm/dts/imx6dl-sabreauto-u-boot.dtsi
 create mode 100644 arch/arm/dts/imx6dl-sabreauto.dts
 create mode 100644 arch/arm/dts/imx6dl-sabresd.dts
 create mode 100644 arch/arm/dts/imx6q-sabreauto-u-boot.dtsi
 create mode 100644 arch/arm/dts/imx6q-sabreauto.dts
 create mode 100644 arch/arm/dts/imx6q-sabresd-u-boot.dtsi
 create mode 100644 arch/arm/dts/imx6q-sabresd.dts
 create mode 100644 arch/arm/dts/imx6qdl-sabreauto-u-boot.dtsi
 create mode 100644 arch/arm/dts/imx6qdl-sabreauto.dtsi
 create mode 100644 arch/arm/dts/imx6qdl-sabresd-u-boot.dtsi
 create mode 100644 arch/arm/dts/imx6qdl-sabresd.dtsi
 create mode 100644 arch/arm/dts/imx6qp-sabreauto-u-boot.dtsi
 create mode 100644 arch/arm/dts/imx6qp-sabreauto.dts
 create mode 100644 arch/arm/dts/imx6qp-sabresd.dts
 create mode 100644 arch/arm/dts/imx6qp.dtsi
 create mode 100644 arch/arm/mach-imx/mx6/fit_spl.its

-- 
2.7.4

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

end of thread, other threads:[~2019-01-28 15:31 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-18 14:53 [U-Boot] [PATCH 00/26] mx6sabre: Add DM and SPL FIT support Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 01/26] usb: Rename SPL_USB_SUPPORT to SPL_USB_STORAGE Abel Vesa
2019-01-18 15:03   ` Tom Rini
2019-01-18 15:29     ` Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 02/26] usb: ehci-mx6: Make regulator DM_REGULATOR dependent Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 03/26] configs: imx6sabreauto: Add DM_MMC support Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 04/26] configs: imx6sabreauto: Add DM_USB support Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 05/26] mmc: fsl_esdhc: Fix DM_REGULATOR ifdefs for SPL builds Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 06/26] arm: imx: Add board_fit_config_name_match to support FIT in SPL Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 07/26] arm: dts: Add devicetree for i.MX6QP Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 08/26] arm: dts: Add imx6qdl-sabreauto dtsi file Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 09/26] arm: dts: Add imx6qdl-sabresd " Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 10/26] arm: dts: Add all imx6sabre u-boot dtsi files Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 11/26] arm: dts: Add imx6q-sabreauto dts file Abel Vesa
2019-01-18 15:26   ` Fabio Estevam
2019-01-18 14:53 ` [U-Boot] [PATCH 12/26] arm: dts: Add imx6q-sabresd " Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 13/26] arm: dts: Add imx6dl-sabreauto " Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 14/26] arm: dts: Add imx6dl-sabresd " Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 15/26] arm: dts: Add imx6qp-sabreauto " Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 16/26] arm: dts: Add imx6qp-sabresd " Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 17/26] arm: imx: Add FIT SPL its Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 18/26] configs: mx6sabreauto: Add SPL FIT and DM support Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 19/26] configs: mx6sabresd: " Abel Vesa
2019-01-18 15:16   ` Fabio Estevam
2019-01-18 15:26     ` Abel Vesa
2019-01-18 15:30       ` Tom Rini
2019-01-28 15:31         ` Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 20/26] mx6sabreauto: Add DM_GPIO support Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 21/26] mx6sabresd: " Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 22/26] configs: mx6sabreauto: Add DM_SPI_FLASH necessary configs Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 23/26] configs: mx6sabresd: " Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 24/26] board: mx6sabreauto: Remove the non-DM code Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 25/26] board: mx6sabresd: Remove " Abel Vesa
2019-01-18 14:53 ` [U-Boot] [PATCH 26/26] board: mx6sabresd: Remove the enet reset gpio handling Abel Vesa
2019-01-18 15:00 ` [U-Boot] [PATCH 00/26] mx6sabre: Add DM and SPL FIT support Fabio Estevam

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.