From patchwork Mon Jan 13 14:17:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Patrick Delaunay X-Patchwork-Id: 239574 List-Id: U-Boot discussion From: patrick.delaunay at st.com (Patrick Delaunay) Date: Mon, 13 Jan 2020 15:17:39 +0100 Subject: [PATCH 0/3] stm32mp1: split board and SOC support for STM32MP15x family Message-ID: <20200113141742.28182-1-patrick.delaunay@st.com> This serie prepare the introduction of boards with STM32MP15x SOC not provided by STMicroelectronics. I introduce two new CONFIG: one for SOC and one ST boards (EV1, DK1, DK2). And also create a new directory board/st/common to manage part common with all the board (today only command stboard). Patrick Delaunay (3): stm32mp1: move stboard command in board/st/common directory board: stm32mp1: move CONFIG_ENV_XXX in defconfig stm32mp1: split board and SOC support for STM32MP15x family arch/arm/dts/Makefile | 2 +- arch/arm/mach-stm32mp/Kconfig | 32 +++++++++++++++------ board/st/common/Kconfig | 7 +++++ board/st/common/MAINTAINERS | 6 ++++ board/st/common/Makefile | 6 ++++ board/st/{stm32mp1 => common}/cmd_stboard.c | 3 ++ board/st/stm32mp1/Kconfig | 20 ++----------- board/st/stm32mp1/Makefile | 1 - board/st/stm32mp1/stm32mp1.c | 2 +- configs/stm32mp15_basic_defconfig | 4 ++- configs/stm32mp15_optee_defconfig | 4 ++- configs/stm32mp15_trusted_defconfig | 4 ++- 12 files changed, 59 insertions(+), 32 deletions(-) create mode 100644 board/st/common/Kconfig create mode 100644 board/st/common/MAINTAINERS create mode 100644 board/st/common/Makefile rename board/st/{stm32mp1 => common}/cmd_stboard.c (98%)