summaryrefslogtreecommitdiffstats
path: root/firmware/Kconfig
blob: ae7bbdc71e3a37ae485d52c7719c4da150ebac40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# SPDX-License-Identifier: GPL-2.0-only

menu "Firmware files"

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

config FIRMWARE_IMX_DDR4_PMU_TRAIN
	bool

config FIRMWARE_IMX8MM_ATF
	bool

config FIRMWARE_IMX8MN_ATF
	bool

config FIRMWARE_IMX8MP_ATF
	bool

config FIRMWARE_IMX8MQ_ATF
	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