blob: c5923e333c3dd04763548e59c5d2a48b4d66ae63 [file] [log] [blame]
Tom Rini8086a822021-08-24 20:40:59 -04001config MACH_IMX
2 bool
3
Breno Lima998ffd32017-11-27 21:09:00 -02004config HAS_CAAM
5 bool
6
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +01007config IMX_CONFIG
8 string
Adrian Alonso994d9cf2015-10-12 13:48:09 -05009
10config ROM_UNIFIED_SECTIONS
11 bool
Peng Fan1b64ffa2016-01-28 16:55:00 +080012
Stefan Agner42960412018-01-05 15:08:17 +010013config SYSCOUNTER_TIMER
14 bool
15
Stefan Agner4bb73f12018-01-05 15:08:18 +010016config GPT_TIMER
17 bool
18
Peng Fan1b64ffa2016-01-28 16:55:00 +080019config IMX_RDC
20 bool "i.MX Resource domain controller driver"
21 depends on ARCH_MX6 || ARCH_MX7
22 help
23 i.MX Resource domain controller is used to assign masters
24 and peripherals to differet domains. This can be used to
25 isolate resources.
Peng Fanfcabb6d2016-01-28 16:55:04 +080026
27config IMX_BOOTAUX
28 bool "Support boot auxiliary core"
Peng Fan5ac9b442020-05-05 20:18:02 +080029 depends on ARCH_MX7 || ARCH_MX6 || ARCH_VF610 || ARCH_IMX8M
Peng Fanfcabb6d2016-01-28 16:55:04 +080030 help
31 bootaux [addr] to boot auxiliary core.
Gary Bissonf702c1d2016-08-25 19:03:16 +020032
Peng Fan415f8952020-05-01 22:08:34 +080033config IMX_MODULE_FUSE
34 bool "i.MX Module Fuse"
35 depends on ARCH_MX6
36 help
37 i.MX module fuse to runtime disable some driver, including
38 Linux OS device node.
39
Peng Fan683cf992016-10-11 14:29:12 +080040config USE_IMXIMG_PLUGIN
41 bool "Use imximage plugin code"
Ye Liba604b82019-05-16 03:18:51 +000042 depends on ARCH_MX7 || ARCH_MX6 || ARCH_MX7ULP
Peng Fan683cf992016-10-11 14:29:12 +080043 help
44 i.MX6/7 supports DCD and Plugin. Enable this configuration
45 to use Plugin, otherwise DCD will be used.
46
Stefano Babicf8b509b2019-09-20 08:47:53 +020047config IMX_HAB
Gary Bissonf702c1d2016-08-25 19:03:16 +020048 bool "Support i.MX HAB features"
Ye Liebabd8d2021-03-25 17:30:17 +080049 depends on ARCH_MX7 || ARCH_MX6 || ARCH_MX5 || ARCH_IMX8M
Breno Lima998ffd32017-11-27 21:09:00 -020050 select FSL_CAAM if HAS_CAAM
Ye Li504c6672021-03-25 17:30:18 +080051 imply CMD_DEKBLOB if HAS_CAAM
Gary Bissonf702c1d2016-08-25 19:03:16 +020052 help
53 This option enables the support for secure boot (HAB).
Patrick Delaunay02ff85e2020-02-28 15:18:16 +010054 See doc/imx/habv4/* for more details.
Simon Glass3ec09a02017-04-26 22:27:54 -060055
Breno Matheus Lima13960fd2019-07-18 12:34:08 +000056config CSF_SIZE
57 hex "Maximum size for Command Sequence File (CSF) binary"
Tom Rini60812732020-06-16 19:06:26 -040058 depends on IMX_HAB
59 default 0x2000 if ARCH_IMX8M
Breno Matheus Limac592c342019-09-23 18:39:47 +000060 default 0x2060
Breno Matheus Lima13960fd2019-07-18 12:34:08 +000061 help
62 Define the maximum size for Command Sequence File (CSF) binary
63 this information is used to define the image boot data.
64
Simon Glass3ec09a02017-04-26 22:27:54 -060065config CMD_BMODE
66 bool "Support the 'bmode' command"
67 default y
Marek Vasut28c0b632020-08-05 15:34:04 +020068 depends on ARCH_MX7 || ARCH_MX6 || ARCH_MX5
Simon Glass3ec09a02017-04-26 22:27:54 -060069 help
70 This enables the 'bmode' (bootmode) command for forcing
71 a boot from specific media.
72
73 This is useful for forcing the ROM's usb downloader to
74 activate upon a watchdog reset which is nice when iterating
75 on U-Boot. Using the reset button or running bmode normal
76 will set it back to normal. This command currently
77 supports i.MX53 and i.MX6.
Simon Glass88391242017-04-26 22:28:06 -060078
79config CMD_DEKBLOB
80 bool "Support the 'dek_blob' command"
Clement Faurea93b0d92021-03-25 17:30:33 +080081 select IMX_CAAM_DEK_ENCAP if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP
82 select IMX_OPTEE_DEK_ENCAP if ARCH_IMX8M
Clement Faure9cb2f972021-03-25 17:30:34 +080083 select IMX_SECO_DEK_ENCAP if ARCH_IMX8
Simon Glass88391242017-04-26 22:28:06 -060084 help
85 This enables the 'dek_blob' command which is used with the
86 Freescale secure boot mechanism. This command encapsulates and
Patrick Delaunay02ff85e2020-02-28 15:18:16 +010087 creates a blob of data. See also CMD_BLOB and doc/imx/habv4/* for
Simon Glass88391242017-04-26 22:28:06 -060088 more information.
Simon Glassf3a50ee2017-05-17 03:25:28 -060089
Clement Faurea93b0d92021-03-25 17:30:33 +080090config IMX_CAAM_DEK_ENCAP
91 bool "Support the DEK blob encapsulation with CAAM U-Boot driver"
92 help
93 This enables the DEK blob encapsulation with the U-Boot CAAM driver.
94 This option is only available on imx6, imx7 and imx7ulp.
95
96config IMX_OPTEE_DEK_ENCAP
97 select TEE
98 select OPTEE
99 bool "Support the DEK blob encapsulation with OP-TEE"
100 help
101 This enabled the DEK blob encapsulation with OP-TEE. The communication
102 with OP-TEE is done through a SMC call and OP-TEE shared memory. This
103 option is available on imx8mm.
104
Clement Faure9cb2f972021-03-25 17:30:34 +0800105config IMX_SECO_DEK_ENCAP
106 bool "Support the DEK blob encapsulation with SECO"
107 help
108 This enabled the DEK blob encapsulation with the SECO API. This option
109 is only available on imx8.
110
Clement Le Marquis6abb36e2021-03-25 17:30:32 +0800111config CMD_PRIBLOB
112 bool "Support the set_priblob_bitfield command"
113 depends on HAS_CAAM && IMX_HAB
114 help
115 This option enables the priblob command which can be used
116 to set the priblob setting to 0x3.
117
Simon Glassf3a50ee2017-05-17 03:25:28 -0600118config CMD_HDMIDETECT
119 bool "Support the 'hdmidet' command"
120 help
121 This enables the 'hdmidet' command which detects if an HDMI monitor
122 is connected.
Fabio Estevam49bcdd72017-11-27 10:25:09 -0200123
Shyam Sainif63ef492019-06-14 13:05:33 +0530124config CMD_NANDBCB
125 bool "i.MX6 NAND Boot Control Block(BCB) command"
Miquel Raynald0935362019-10-03 19:50:03 +0200126 depends on MTD_RAW_NAND && CMD_MTDPARTS
Parthiban Nallathambia99188b2019-10-18 11:46:19 +0200127 select BCH if MX6UL || MX6ULL
Alice Guoa3f815b2020-05-05 22:04:00 +0800128 default y if ((ARCH_MX6 || ARCH_MX7 || ARCH_IMX8M) && NAND_MXS)
Shyam Sainif63ef492019-06-14 13:05:33 +0530129 help
130 Unlike normal 'nand write/erase' commands, this command update
131 Boot Control Block(BCB) for i.MX6 platform NAND IP's.
132
133 This is similar to kobs-ng, which is used in Linux as separate
134 rootfs package.
135
Breno Limac89287e2021-03-25 17:30:02 +0800136config FSL_MFGPROT
137 bool "Support the 'mfgprot' command"
138 depends on IMX_HAB && ARCH_MX7
139 help
140 This option enables the manufacturing protection command
141 which can be used has a protection feature for Manufacturing
142 process. With this tool is possible to authenticate the
143 chip to the OEM's server.
144
Fabio Estevam49bcdd72017-11-27 10:25:09 -0200145config NXP_BOARD_REVISION
146 bool "Read NXP board revision from fuses"
147 depends on ARCH_MX6 || ARCH_MX7
148 help
149 NXP boards based on i.MX6/7 contain the board revision information
150 stored in the fuses. Select this option if you want to be able to
151 retrieve the board revision information.
Lukasz Majewski71d42b32018-12-05 17:04:02 +0100152
153config DDRMC_VF610_CALIBRATION
154 bool "Enable DDRMC (DDR3) on-chip calibration"
155 depends on ARCH_VF610
156 help
157 Vybrid (vf610) SoC provides some on-chip facility to tune the DDR3
158 memory parameters. Select this option if you want to calculate them
159 at boot time.
160 NOTE:
161 NXP does NOT recommend to perform this calibration at each boot. One
162 shall perform it on a new PCB and then use those values to program
163 the ddrmc_cr_setting on relevant board file.
Peng Fan36986792019-09-16 03:09:31 +0000164
165config SPL_IMX_ROMAPI_LOADADDR
166 hex "Default load address to load image through ROM API"
Ye Li7a71c612021-08-07 16:00:39 +0800167 depends on IMX8MN || IMX8MP || IMX8ULP
Jorge Ramirez-Ortiz4b3bfe22019-12-11 10:42:36 +0100168
169config IMX_DCD_ADDR
170 hex "DCD Blocks location on the image"
171 default 0x00910000 if !ARCH_MX7ULP
172 default 0x2f010000 if ARCH_MX7ULP
173 help
174 Indicates where the Device Configuration Data, a binary table used by
175 the ROM code to configure the device at early boot stage, is located.
176 This information is shared with the user via mkimage -l just so the
177 image can be signed.
Peng Fan718d55d2021-08-07 16:00:40 +0800178
179config SPL_LOAD_IMX_CONTAINER
180 bool "Enable SPL loading U-Boot as a i.MX Container image"
181 depends on SPL
182 help
183 This is to let SPL could load i.MX Container image
184
185config IMX_CONTAINER_CFG
186 string "i.MX Container config file"
187 depends on SPL
188 help
189 This is to specific the cfg file for generating container
190 image which will be loaded by SPL.