public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [RFC 00/17] mx6sabre: Add DM and SPL FIT support
@ 2019-01-16 14:03 Abel Vesa
  2019-01-16 14:03 ` [U-Boot] [RFC 01/17] common: Break USB_STORAGE dependency between SPL and u-boot proper Abel Vesa
                   ` (16 more replies)
  0 siblings, 17 replies; 26+ messages in thread
From: Abel Vesa @ 2019-01-16 14:03 UTC (permalink / raw)
  To: u-boot

This comes as an answer to the following:

https://lists.denx.de/pipermail/u-boot/2018-November/348078.html
https://lists.denx.de/pipermail/u-boot/2018-November/348062.html

Abel Vesa (17):
  common: Break USB_STORAGE dependency between SPL and u-boot proper
  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
  dts: imx: Add imx6q-sabreauto dts and imx6qdl-sabreauto dtsi files
  dts: imx: Add imx6q-sabresd dts and imx6qdl-sabresd dtsi files
  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

 arch/arm/dts/Makefile                       |    4 +-
 arch/arm/dts/imx6q-sabreauto.dts            |   78 ++
 arch/arm/dts/imx6q-sabresd.dts              |   92 +++
 arch/arm/dts/imx6qdl-sabreauto.dtsi         | 1118 +++++++++++++++++++++++++++
 arch/arm/dts/imx6qdl-sabresd.dtsi           | 1065 +++++++++++++++++++++++++
 arch/arm/mach-imx/mx6/fit_spl.its           |   41 +
 arch/arm/mach-imx/spl.c                     |   10 +
 arch/x86/cpu/coreboot/Kconfig               |    1 +
 board/efi/efi-x86_payload/Kconfig           |    1 +
 board/freescale/mx6sabreauto/mx6sabreauto.c |   73 +-
 board/freescale/mx6sabresd/mx6sabresd.c     |   55 +-
 common/Makefile                             |    2 +-
 configs/apalis_imx6_defconfig               |    1 +
 configs/colibri_imx6_defconfig              |    1 +
 configs/mx6sabreauto_defconfig              |   20 +-
 configs/mx6sabresd_defconfig                |   22 +-
 drivers/mmc/fsl_esdhc.c                     |    8 +-
 drivers/usb/Kconfig                         |    9 +
 drivers/usb/host/ehci-mx6.c                 |    7 +-
 19 files changed, 2478 insertions(+), 130 deletions(-)
 create mode 100644 arch/arm/dts/imx6q-sabreauto.dts
 create mode 100644 arch/arm/dts/imx6q-sabresd.dts
 create mode 100644 arch/arm/dts/imx6qdl-sabreauto.dtsi
 create mode 100644 arch/arm/dts/imx6qdl-sabresd.dtsi
 create mode 100644 arch/arm/mach-imx/mx6/fit_spl.its

-- 
2.7.4

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

end of thread, other threads:[~2019-01-18 23:54 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-16 14:03 [U-Boot] [RFC 00/17] mx6sabre: Add DM and SPL FIT support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 01/17] common: Break USB_STORAGE dependency between SPL and u-boot proper Abel Vesa
2019-01-16 18:41   ` Tom Rini
2019-01-16 14:03 ` [U-Boot] [RFC 02/17] usb: ehci-mx6: Make regulator DM_REGULATOR dependent Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 03/17] configs: imx6sabreauto: Add DM_MMC support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 04/17] configs: imx6sabreauto: Add DM_USB support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 05/17] mmc: fsl_esdhc: Fix DM_REGULATOR ifdefs for SPL builds Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 06/17] arm: imx: Add board_fit_config_name_match to support FIT in SPL Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 07/17] dts: imx: Add imx6q-sabreauto dts and imx6qdl-sabreauto dtsi files Abel Vesa
2019-01-16 22:08   ` Fabio Estevam
2019-01-16 14:03 ` [U-Boot] [RFC 08/17] dts: imx: Add imx6q-sabresd dts and imx6qdl-sabresd " Abel Vesa
2019-01-16 14:14   ` Fabio Estevam
2019-01-16 14:18     ` Abel Vesa
2019-01-16 14:42       ` Fabio Estevam
2019-01-18 23:54   ` Lukasz Majewski
2019-01-16 14:03 ` [U-Boot] [RFC 09/17] arm: imx: Add FIT SPL its Abel Vesa
2019-01-18 23:53   ` Lukasz Majewski
2019-01-16 14:03 ` [U-Boot] [RFC 10/17] configs: mx6sabreauto: Add SPL FIT and DM support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 11/17] configs: mx6sabresd: " Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 12/17] mx6sabreauto: Add DM_GPIO support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 13/17] mx6sabresd: " Abel Vesa
2019-01-16 14:51   ` Fabio Estevam
2019-01-16 14:03 ` [U-Boot] [RFC 14/17] configs: mx6sabreauto: Add DM_SPI_FLASH necessary configs Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 15/17] configs: mx6sabresd: " Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 16/17] board: mx6sabreauto: Remove the non-DM code Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 17/17] board: mx6sabresd: Remove " Abel Vesa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox