History log of /u-boot/board/st/stm32mp1/Makefile
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# c37a6684 11-Oct-2022 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp: fix compilation issue with DEBUG_UART

Fix the compilation issue when CONFIG_DEBUG_UART is activated

drivers/serial/serial_stm32.o: in function `debug_uart_init':
drivers/serial/serial_stm32.c:291: undefined reference to \
`board_debug_uart_init'

The board_debug_uart_init is needed for SPL boot, called in
cpu.c::mach_cpu_init(); it is defined in board/st/stm32mp1/spl.c.

But with the removal #ifdefs patch, the function debug_uart_init() is
always compiled even if not present in the final U-Boot image.

This patch adds a file to provided this function when DEBUG_UART and SPL
are activated.

Fixes: c8b2eef52b6c ("stm32mp15: tidy up #ifdefs in cpu.c")
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>

# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>

# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>

# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>

# 4549e789 06-May-2018 Tom Rini <trini@konsulko.com>

SPDX: Convert all of our multiple license tags to Linux Kernel style

When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borrow from. So we picked the
area of the file that usually had a full license text and replaced it
with an appropriate SPDX-License-Identifier: entry. Since then, the
Linux Kernel has adopted SPDX tags and they place it as the very first
line in a file (except where shebangs are used, then it's second line)
and with slightly different comment styles than us.

In part due to community overlap, in part due to better tag visibility
and in part for other minor reasons, switch over to that style.

This commit changes all instances where we have multiple licenses (in
these cases, dual license) declared in the SPDX-License-Identifier tag.
In this case we change from listing "LICENSE-A LICENSE-B" or "LICENSE-A
or LICENSE-B" or "(LICENSE-A OR LICENSE-B)" to "LICENSE-A OR LICENSE-B"
as per the Linux Kernel style document. Note that parenthesis are
allowed so when they were used before we continue to use them.

Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Tom Rini <trini@konsulko.com>

# f8598d98 12-Mar-2018 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: st: add generic board for STM32MP1 family

Add first support for STM32MP157C-ED1 board with "Basic" boot chain
1/ Boot Rom: load SPL with STM32 image header in SYSRAM
2/ SPL: power up and initialize the DDR and load U-Boot image
from SDCARD in DDR
3/ U-Boot: search and load extlinux.conf in SDCARD
(DISTRO activated)

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>

# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@foss.st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4fb46816 24-May-2020 Patrick Delaunay <patrick.delaunay@st.com>

board: stm32mp1: move the function board_debug_uart_init in spl.c

Move the debug function board_debug_uart_init in spl.c
as the debug_uart_init() function is called in arch_cpu_init()
only for SPL and remove the board.c file.

For TFABOOT, the UART TX pin configuration is done in TF-A.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# ba2c20ce 13-Jan-2020 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: move stboard command in board/st/common directory

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>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# afb0840f 05-Jul-2019 Patrick Delaunay <patrick.delaunay@st.com>

stm32mp1: add stboard command

Allow to update board identification in OTP 59.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>


# 4549e789 06-May-2018 Tom Rini <trini@konsulko.com>

SPDX: Convert all of our multiple license tags to Linux Kernel style

When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borrow from. So we picked the
area of the file that usually had a full license text and replaced it
with an appropriate SPDX-License-Identifier: entry. Since then, the
Linux Kernel has adopted SPDX tags and they place it as the very first
line in a file (except where shebangs are used, then it's second line)
and with slightly different comment styles than us.

In part due to community overlap, in part due to better tag visibility
and in part for other minor reasons, switch over to that style.

This commit changes all instances where we have multiple licenses (in
these cases, dual license) declared in the SPDX-License-Identifier tag.
In this case we change from listing "LICENSE-A LICENSE-B" or "LICENSE-A
or LICENSE-B" or "(LICENSE-A OR LICENSE-B)" to "LICENSE-A OR LICENSE-B"
as per the Linux Kernel style document. Note that parenthesis are
allowed so when they were used before we continue to use them.

Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Tom Rini <trini@konsulko.com>


# f8598d98 12-Mar-2018 Patrick Delaunay <patrick.delaunay@st.com>

board: st: add generic board for STM32MP1 family

Add first support for STM32MP157C-ED1 board with "Basic" boot chain
1/ Boot Rom: load SPL with STM32 image header in SYSRAM
2/ SPL: power up and initialize the DDR and load U-Boot image
from SDCARD in DDR
3/ U-Boot: search and load extlinux.conf in SDCARD
(DISTRO activated)

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>