0189bcb47c
This is a separate U-Boot package that allows to build the intermediate SPL binary for the Cortex-R5 core on TI's k3 platforms. Usually, the resulting SPL will be used for k3-image-gen to build the full R5 boot binary tiboot3.bin. Signed-off-by: Xuanhao Shi <x-shi@ti.com> Signed-off-by: Anand Gadiyar <gadiyar@ti.com> Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Acked-by: Andrew Davis <afd@ti.com> Tested-by: Bryan Brattlof <bb@ti.com> Cc: Romain Naour <romain.naour@gmail.com> Cc: Francois Perrad <francois.perrad@gadz.org> Reviewed-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
36 lines
962 B
Plaintext
36 lines
962 B
Plaintext
config BR2_TARGET_TI_K3_R5_LOADER
|
|
bool "ti-k3-r5-loader"
|
|
depends on BR2_aarch64
|
|
help
|
|
Separate U-Boot build for R5 cores on TI's k3 boards.
|
|
Usually used to build tiboot3.bin with k3-image-gen.
|
|
|
|
if BR2_TARGET_TI_K3_R5_LOADER
|
|
|
|
choice
|
|
prompt "Configuration"
|
|
default BR2_TARGET_TI_K3_R5_LOADER_USE_DEFCONFIG
|
|
|
|
config BR2_TARGET_TI_K3_R5_LOADER_USE_DEFCONFIG
|
|
bool "Using an in-tree board defconfig file"
|
|
|
|
config BR2_TARGET_TI_K3_R5_LOADER_USE_CUSTOM_CONFIG
|
|
bool "Using a custom board (def)config file"
|
|
|
|
endchoice
|
|
|
|
config BR2_TARGET_TI_K3_R5_LOADER_BOARD_DEFCONFIG
|
|
string "Board defconfig"
|
|
depends on BR2_TARGET_TI_K3_R5_LOADER_USE_DEFCONFIG
|
|
help
|
|
Name of the board for which TI K3 R5 Loader should be
|
|
built, without the _defconfig suffix.
|
|
|
|
config BR2_TARGET_TI_K3_R5_LOADER_CUSTOM_CONFIG_FILE
|
|
string "Configuration file path"
|
|
depends on BR2_TARGET_TI_K3_R5_LOADER_USE_CUSTOM_CONFIG
|
|
help
|
|
Path to the TI K3 R5 Loader configuration file.
|
|
|
|
endif
|