All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/11] dm: Removal of some boards due to DM_MMC deadline
@ 2019-05-11 19:23 Simon Glass
  2019-05-11 19:23 ` [U-Boot] [PATCH 01/11] patman: Update cros_subprocess to use bytearray Simon Glass
                   ` (11 more replies)
  0 siblings, 12 replies; 21+ messages in thread
From: Simon Glass @ 2019-05-11 19:23 UTC (permalink / raw)
  To: u-boot

This series starts the process of removing boards which have not been
converted to driver model for MMC.

In some cases it is possible to convert the board and it still builds.
Probably that is preferably to completely removing it, so that approach is
taken where possible.

Other unconverted ARM boards include:

   pcm058 vining_2000 cgtqmx6eval udoo riotboard_spl db-88f6281-bp-nand
   sheevaplug udoo_neo db-88f6281-bp-spi mccmon6_nor mx6qsabrelite
   gwventana_nand mx6cuboxi gwventana_emmc sksimx6 picosam9g45 pfla02
   zc5202 marsboard ls1021atwr_sdcard_ifc_SECURE_BOOT gwventana_gw5904
   ot1200_spl riotboard mccmon6_sd xpress_spl colibri_pxa270
   display5_factory vinco dh_imx6 xpress kp_imx6q_tpc zc5601 ot1200

PowerPC has quite a few also.


Simon Glass (11):
  patman: Update cros_subprocess to use bytearray
  Add a simple script to remove boards
  solidrun: Fix soldrun typo
  atmel: gurnard: Complete DM migration
  bubblegum_96: Complete DM migration
  arm: Remove s32v234evb board
  arm: Remove ls1088ardb_sdcard_qspi_SECURE_BOOT board
  arm: Remove ls1046ardb_sdcard_SECURE_BOOT board
  arm: Remove ls1043ardb_sdcard_SECURE_BOOT board
  evb-ast2500: Enable CONFIG_DM_MMC
  vf610twr/_nand: Enable CONFIG_DM_MMC

 arch/arm/Kconfig                              |   1 -
 arch/arm/cpu/armv8/s32v234/Makefile           |   6 -
 arch/arm/cpu/armv8/s32v234/cpu.c              |  98 -----
 arch/arm/cpu/armv8/s32v234/cpu.h              |   7 -
 arch/arm/cpu/armv8/s32v234/generic.c          | 349 ------------------
 arch/arm/include/asm/arch-s32v234/clock.h     |  33 --
 arch/arm/include/asm/arch-s32v234/ddr.h       | 156 --------
 arch/arm/include/asm/arch-s32v234/imx-regs.h  | 328 ----------------
 arch/arm/include/asm/arch-s32v234/lpddr2.h    |  74 ----
 .../include/asm/arch-s32v234/mc_cgm_regs.h    | 253 -------------
 .../arm/include/asm/arch-s32v234/mc_me_regs.h | 198 ----------
 .../include/asm/arch-s32v234/mc_rgm_regs.h    |  30 --
 arch/arm/include/asm/arch-s32v234/mmdc.h      |  88 -----
 arch/arm/include/asm/arch-s32v234/siul.h      | 149 --------
 board/freescale/s32v234evb/Kconfig            |  23 --
 board/freescale/s32v234evb/MAINTAINERS        |   8 -
 board/freescale/s32v234evb/Makefile           |   9 -
 board/freescale/s32v234evb/clock.c            | 343 -----------------
 board/freescale/s32v234evb/lpddr2.c           | 136 -------
 board/freescale/s32v234evb/s32v234evb.c       | 182 ---------
 board/freescale/s32v234evb/s32v234evb.cfg     |  28 --
 board/solidrun/clearfog/MAINTAINERS           |   2 +-
 configs/bubblegum_96_defconfig                |   1 +
 configs/evb-ast2500_defconfig                 |   1 +
 configs/gurnard_defconfig                     |   3 +
 .../ls1043ardb_sdcard_SECURE_BOOT_defconfig   |  68 ----
 .../ls1046ardb_sdcard_SECURE_BOOT_defconfig   |  65 ----
 ...1088ardb_sdcard_qspi_SECURE_BOOT_defconfig |  69 ----
 configs/s32v234evb_defconfig                  |  17 -
 configs/vf610twr_defconfig                    |   1 +
 configs/vf610twr_nand_defconfig               |   1 +
 include/configs/s32v234evb.h                  | 190 ----------
 tools/patman/cros_subprocess.py               |  33 +-
 tools/patman/gitutil.py                       |   2 +
 tools/rmboard.py                              | 150 ++++++++
 35 files changed, 181 insertions(+), 2921 deletions(-)
 delete mode 100644 arch/arm/cpu/armv8/s32v234/Makefile
 delete mode 100644 arch/arm/cpu/armv8/s32v234/cpu.c
 delete mode 100644 arch/arm/cpu/armv8/s32v234/cpu.h
 delete mode 100644 arch/arm/cpu/armv8/s32v234/generic.c
 delete mode 100644 arch/arm/include/asm/arch-s32v234/clock.h
 delete mode 100644 arch/arm/include/asm/arch-s32v234/ddr.h
 delete mode 100644 arch/arm/include/asm/arch-s32v234/imx-regs.h
 delete mode 100644 arch/arm/include/asm/arch-s32v234/lpddr2.h
 delete mode 100644 arch/arm/include/asm/arch-s32v234/mc_cgm_regs.h
 delete mode 100644 arch/arm/include/asm/arch-s32v234/mc_me_regs.h
 delete mode 100644 arch/arm/include/asm/arch-s32v234/mc_rgm_regs.h
 delete mode 100644 arch/arm/include/asm/arch-s32v234/mmdc.h
 delete mode 100644 arch/arm/include/asm/arch-s32v234/siul.h
 delete mode 100644 board/freescale/s32v234evb/Kconfig
 delete mode 100644 board/freescale/s32v234evb/MAINTAINERS
 delete mode 100644 board/freescale/s32v234evb/Makefile
 delete mode 100644 board/freescale/s32v234evb/clock.c
 delete mode 100644 board/freescale/s32v234evb/lpddr2.c
 delete mode 100644 board/freescale/s32v234evb/s32v234evb.c
 delete mode 100644 board/freescale/s32v234evb/s32v234evb.cfg
 delete mode 100644 configs/ls1043ardb_sdcard_SECURE_BOOT_defconfig
 delete mode 100644 configs/ls1046ardb_sdcard_SECURE_BOOT_defconfig
 delete mode 100644 configs/ls1088ardb_sdcard_qspi_SECURE_BOOT_defconfig
 delete mode 100644 configs/s32v234evb_defconfig
 delete mode 100644 include/configs/s32v234evb.h
 create mode 100755 tools/rmboard.py

-- 
2.21.0.1020.gf2820cf01a-goog

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

end of thread, other threads:[~2019-05-14 14:11 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-11 19:23 [U-Boot] [PATCH 00/11] dm: Removal of some boards due to DM_MMC deadline Simon Glass
2019-05-11 19:23 ` [U-Boot] [PATCH 01/11] patman: Update cros_subprocess to use bytearray Simon Glass
2019-05-11 19:23 ` [U-Boot] [PATCH 02/11] Add a simple script to remove boards Simon Glass
2019-05-11 19:44   ` Tom Rini
2019-05-12 19:03     ` Simon Glass
2019-05-11 19:23 ` [U-Boot] [PATCH 03/11] solidrun: Fix soldrun typo Simon Glass
2019-05-12 10:00   ` Stefan Roese
2019-05-11 19:23 ` [U-Boot] [PATCH 04/11] atmel: gurnard: Complete DM migration Simon Glass
2019-05-11 19:23 ` [U-Boot] [PATCH 05/11] bubblegum_96: " Simon Glass
2019-05-11 19:23 ` [U-Boot] [PATCH 06/11] arm: Remove s32v234evb board Simon Glass
2019-05-11 19:23 ` [U-Boot] [PATCH 07/11] arm: Remove ls1088ardb_sdcard_qspi_SECURE_BOOT board Simon Glass
2019-05-11 19:23 ` [U-Boot] [PATCH 08/11] arm: Remove ls1046ardb_sdcard_SECURE_BOOT board Simon Glass
2019-05-11 19:23 ` [U-Boot] [PATCH 09/11] arm: Remove ls1043ardb_sdcard_SECURE_BOOT board Simon Glass
2019-05-11 19:23 ` [U-Boot] [PATCH 10/11] evb-ast2500: Enable CONFIG_DM_MMC Simon Glass
2019-05-13 16:39   ` Maxim Sloyko
2019-05-11 19:23 ` [U-Boot] [PATCH 11/11] vf610twr/_nand: " Simon Glass
2019-05-11 19:36 ` [U-Boot] [PATCH 00/11] dm: Removal of some boards due to DM_MMC deadline Tom Rini
2019-05-12 19:03   ` Simon Glass
2019-05-12 20:08     ` Simon Glass
2019-05-14 14:08       ` Tom Rini
2019-05-14 14:11     ` 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.