mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-24 02:42:18 +01:00
Split the DH STM32MP13x based boards from ST STM32MP13x target, this way the DH board specific code can be reused for STM32MP13x DHSOM. Signed-off-by: Marek Vasut <marek.vasut@mailbox.org> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
46 lines
789 B
Plaintext
46 lines
789 B
Plaintext
if TARGET_DH_STM32MP1_PDK2
|
|
|
|
config SYS_BOARD
|
|
default "dh_stm32mp1"
|
|
|
|
config SYS_VENDOR
|
|
default "dhelectronics"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "stm32mp15_dh_dhsom"
|
|
|
|
config ENV_SECT_SIZE
|
|
default 0x10000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
config ENV_OFFSET
|
|
default 0x1E0000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
config ENV_OFFSET_REDUND
|
|
default 0x1F0000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
source "board/st/common/Kconfig"
|
|
endif
|
|
|
|
if TARGET_DH_STM32MP13X
|
|
|
|
config SYS_BOARD
|
|
default "dh_stm32mp1"
|
|
|
|
config SYS_VENDOR
|
|
default "dhelectronics"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "stm32mp13_st_common"
|
|
|
|
config ENV_SECT_SIZE
|
|
default 0x10000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
config ENV_OFFSET
|
|
default 0x3E0000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
config ENV_OFFSET_REDUND
|
|
default 0x3F0000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
source "board/st/common/Kconfig"
|
|
endif
|