stm32mp1: move stboard command in board/st/common directory
authorPatrick Delaunay <patrick.delaunay@st.com>
Mon, 13 Jan 2020 14:17:40 +0000 (15:17 +0100)
committerPatrick Delaunay <patrick.delaunay@st.com>
Fri, 17 Jan 2020 12:58:27 +0000 (13:58 +0100)
Move the ST command in board/st/common, as this command is only used
by ST board. Prepare the support in U-Boot of boards with STM32MP15x
SOC but not STMicroelectronics.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
board/st/common/Kconfig [new file with mode: 0644]
board/st/common/MAINTAINERS [new file with mode: 0644]
board/st/common/Makefile [new file with mode: 0644]
board/st/common/cmd_stboard.c [moved from board/st/stm32mp1/cmd_stboard.c with 98% similarity]
board/st/stm32mp1/Kconfig
board/st/stm32mp1/Makefile

diff --git a/board/st/common/Kconfig b/board/st/common/Kconfig
new file mode 100644 (file)
index 0000000..1824087
--- /dev/null
@@ -0,0 +1,6 @@
+config CMD_STBOARD
+       bool "stboard - command for OTP board information"
+       default y
+       help
+         This compile the stboard command to
+         read and write the board in the OTP.
diff --git a/board/st/common/MAINTAINERS b/board/st/common/MAINTAINERS
new file mode 100644 (file)
index 0000000..3b02f4a
--- /dev/null
@@ -0,0 +1,6 @@
+ST BOARDS
+M:     Patrick Delaunay <patrick.delaunay@st.com>
+L:     uboot-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
+T:     git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
+S:     Maintained
+F:     board/st/common/
diff --git a/board/st/common/Makefile b/board/st/common/Makefile
new file mode 100644 (file)
index 0000000..8553606
--- /dev/null
@@ -0,0 +1,6 @@
+# SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
+#
+# Copyright (C) 2020, STMicroelectronics - All Rights Reserved
+#
+
+obj-$(CONFIG_CMD_STBOARD) += cmd_stboard.o
similarity index 98%
rename from board/st/stm32mp1/cmd_stboard.c
rename to board/st/common/cmd_stboard.c
index 04352ae..e994a88 100644 (file)
@@ -3,6 +3,7 @@
  * Copyright (C) 2019, STMicroelectronics - All Rights Reserved
  */
 
+#ifndef CONFIG_SPL_BUILD
 #include <common.h>
 #include <console.h>
 #include <misc.h>
@@ -143,3 +144,5 @@ U_BOOT_CMD(stboard, 6, 0, do_stboard,
           "  - Variant: 1 ... 15\n"
           "  - Revision: A...O\n"
           "  - BOM: 1...15\n");
+
+#endif
index 4fa2360..9f985e5 100644 (file)
@@ -15,15 +15,10 @@ config ENV_SECT_SIZE
 config ENV_OFFSET
        default 0x280000 if ENV_IS_IN_SPI_FLASH
 
-config CMD_STBOARD
-       bool "stboard - command for OTP board information"
-       default y
-       help
-         This compile the stboard command to
-         read and write the board in the OTP.
-
 config TARGET_STM32MP157C_DK2
        bool "support of STMicroelectronics STM32MP157C-DK2 Discovery Board"
        default y
 
+source "board/st/common/Kconfig"
+
 endif
index 3c6c035..8188075 100644 (file)
@@ -7,7 +7,6 @@ ifdef CONFIG_SPL_BUILD
 obj-y += spl.o
 else
 obj-y += stm32mp1.o
-obj-$(CONFIG_CMD_STBOARD) += cmd_stboard.o
 endif
 
 obj-y += board.o