summaryrefslogtreecommitdiffstats
path: root/firmware/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/Kconfig')
-rw-r--r--firmware/Kconfig81
1 files changed, 75 insertions, 6 deletions
diff --git a/firmware/Kconfig b/firmware/Kconfig
index b4a6fd9137..ae7bbdc71e 100644
--- a/firmware/Kconfig
+++ b/firmware/Kconfig
@@ -6,27 +6,96 @@ config EXTRA_FIRMWARE_DIR
string "Firmware blobs root directory"
default "firmware"
+config MISSING_FIRMWARE_ERROR
+ bool "Fail the build when required firmware is missing"
+ default y
+ help
+ In-tree Defconfigs that enable multiple boards with different firmware
+ binary requirements would say y here, so you don't need unrelated firmware
+ for the build to succeed.
+
+ Defconfigs custom-tailored to products would say n here as all boards
+ being built should be functional and have their firmware available.
+
+ If in doubt, say Y and refer to the documentation on where to acquire the
+ needed firmware.
+
config FIRMWARE_IMX_LPDDR4_PMU_TRAIN
- bool
+ bool
config FIRMWARE_IMX_DDR4_PMU_TRAIN
- bool
+ bool
config FIRMWARE_IMX8MM_ATF
- bool
+ bool
config FIRMWARE_IMX8MN_ATF
- bool
+ bool
config FIRMWARE_IMX8MP_ATF
- bool
+ bool
config FIRMWARE_IMX8MQ_ATF
- bool
+ bool
+
+config FIRMWARE_IMX93_ATF
+ bool
+
+config FIRMWARE_IMX8MM_OPTEE
+ bool "install OP-TEE on i.MX8MM boards"
+ depends on FIRMWARE_IMX8MM_ATF && PBL_OPTEE
+ help
+ This enables OP-TEE loading and starting on i.MX8MM. Place the OP-TEE binary
+ in CONFIG_EXTRA_FIRMWARE_DIR/imx8mm-bl32.bin. When this option is enabled then
+ the TF-A binary will be used from CONFIG_EXTRA_FIRMWARE_DIR/imx8mm-bl31.bin-optee.
+
+config FIRMWARE_IMX8MN_OPTEE
+ bool "install OP-TEE on i.MX8MN boards"
+ depends on FIRMWARE_IMX8MN_ATF && PBL_OPTEE
+ help
+ This enables OP-TEE loading and starting on i.MX8MN. Place the OP-TEE binary
+ in CONFIG_EXTRA_FIRMWARE_DIR/imx8mn-bl32.bin. When this option is enabled then
+ the TF-A binary will be used from CONFIG_EXTRA_FIRMWARE_DIR/imx8mn-bl31.bin-optee.
+
+config FIRMWARE_IMX8MP_OPTEE
+ bool "install OP-TEE on i.MX8MP boards"
+ depends on FIRMWARE_IMX8MP_ATF && PBL_OPTEE
+ help
+ This enables OP-TEE loading and starting on i.MX8MP. Place the OP-TEE binary
+ in CONFIG_EXTRA_FIRMWARE_DIR/imx8mp-bl32.bin. When this option is enabled then
+ the TF-A binary will be used from CONFIG_EXTRA_FIRMWARE_DIR/imx8mp-bl31.bin-optee.
+
+config FIRMWARE_IMX8MQ_OPTEE
+ bool "install OP-TEE on i.MX8MQ boards"
+ depends on FIRMWARE_IMX8MQ_ATF && PBL_OPTEE
+ help
+ This enables OP-TEE loading and starting on i.MX8MQ. Place the OP-TEE binary
+ in CONFIG_EXTRA_FIRMWARE_DIR/imx8mq-bl32.bin. When this option is enabled then
+ the TF-A binary will be used from CONFIG_EXTRA_FIRMWARE_DIR/imx8mq-bl31.bin-optee.
+
+config FIRMWARE_IMX93_OPTEE
+ bool "install OP-TEE on i.MX93 boards"
+ depends on FIRMWARE_IMX93_ATF && PBL_OPTEE
+ help
+ This enables OP-TEE loading and starting on i.MX93. Place the OP-TEE binary
+ in CONFIG_EXTRA_FIRMWARE_DIR/imx93-bl32.bin. When this option is enabled then
+ the TF-A binary will be used from CONFIG_EXTRA_FIRMWARE_DIR/imx93-bl31.bin-optee.
+ Additionally OP-TEE requires a RAM firmware loaded into the ELE. This is expected
+ in CONFIG_EXTRA_FIRMWARE_DIR/mx93a0-ahab-container.img and
+ CONFIG_EXTRA_FIRMWARE_DIR/mx93a1-ahab-container.img. You can obtain it from
+ https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-ele-imx-0.1.0.bin
+
+config FIRMWARE_TQMA6UL_OPTEE
+ bool
+ depends on MACH_TQMA6UL && PBL_OPTEE
+ default y
config FIRMWARE_CCBV2_OPTEE
bool
depends on MACH_WEBASTO_CCBV2 && PBL_OPTEE
default y
+config FIRMWARE_LS1028A_ATF
+ bool
+
endmenu