mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-22 11:13:07 +00:00
ea0f45d187
Due to different signature keys, the PG1 and the PG2 boards can no longer use the same FSBL (tiboot3). This makes it impossible anyway to maintaine a single flash.bin for both variants, so we can also split the build. A new target is added to indicates the build is for PG1 vs. PG2 boards. Hence now the variants have separated defconfig files. The runtime board_is_sr1() check does make no sense anymore, so remove it and replace with build time check. Documentation is updated accordingly. New binary artifacts are already available via meta-iot2050. Signed-off-by: Su Baocheng <baocheng.su@siemens.com> [Jan: refactor config option into targets, tweak some wordings] Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
52 lines
1,002 B
Text
52 lines
1,002 B
Text
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) Siemens AG, 2018-2022
|
|
#
|
|
# Authors:
|
|
# Le Jin <le.jin@siemens.com>
|
|
# Jan Kiszka <jan.kiszka@siemens.com>
|
|
|
|
choice
|
|
prompt "Siemens SIMATIC IOT2050 boards"
|
|
optional
|
|
|
|
config TARGET_IOT2050_A53_PG1
|
|
bool "IOT2050 PG1 running on A53"
|
|
select IOT2050_A53_COMMON
|
|
help
|
|
This builds U-Boot for the Product Generation 1 (PG1) of the IOT2050
|
|
devices.
|
|
|
|
config TARGET_IOT2050_A53_PG2
|
|
bool "IOT2050 PG2 running on A53"
|
|
select IOT2050_A53_COMMON
|
|
help
|
|
This builds U-Boot for the Product Generation 2 (PG2) of the IOT2050
|
|
devices.
|
|
|
|
endchoice
|
|
|
|
config IOT2050_A53_COMMON
|
|
bool
|
|
select ARM64
|
|
select SOC_K3_AM654
|
|
select BOARD_LATE_INIT
|
|
select SYS_DISABLE_DCACHE_OPS
|
|
select BINMAN
|
|
|
|
if IOT2050_A53_COMMON
|
|
|
|
config SYS_BOARD
|
|
default "iot2050"
|
|
|
|
config SYS_VENDOR
|
|
default "siemens"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "iot2050"
|
|
|
|
config IOT2050_BOOT_SWITCH
|
|
bool "Disable eMMC boot via USER button (Advanced version only)"
|
|
default y
|
|
|
|
endif
|