blob: aa63fae021e94fbf11b26c33a66b94343279de0b [file] [log] [blame]
Simon Glass0649cd02017-08-03 12:21:49 -06001menu "Environment"
2
Rasmus Villemoesc8221682019-12-15 22:29:39 +00003config ENV_SUPPORT
4 def_bool y
5
Rasmus Villemoes1d0adee2020-02-19 09:47:39 +00006config SAVEENV
7 def_bool y if CMD_SAVEENV
8
Adam Forde91907a2020-07-03 06:48:56 -05009config ENV_OVERWRITE
10 bool "Enable overwriting environment"
11 help
12 Use this to permit overriding of certain environmental variables
13 like Ethernet and Serial
14
Simon Glassc1c3fe22017-08-03 12:21:59 -060015config ENV_IS_NOWHERE
16 bool "Environment is not stored"
Patrice Chotard208bd2b2019-05-07 11:24:02 +020017 default y if !ENV_IS_IN_EEPROM && !ENV_IS_IN_EXT4 && \
18 !ENV_IS_IN_FAT && !ENV_IS_IN_FLASH && \
19 !ENV_IS_IN_MMC && !ENV_IS_IN_NAND && \
20 !ENV_IS_IN_NVRAM && !ENV_IS_IN_ONENAND && \
21 !ENV_IS_IN_REMOTE && !ENV_IS_IN_SPI_FLASH && \
22 !ENV_IS_IN_UBI
Simon Glassc1c3fe22017-08-03 12:21:59 -060023 help
24 Define this if you don't want to or can't have an environment stored
Shyam Saini919d25c2018-06-07 19:47:19 +053025 on a storage medium. In this case the environment will still exist
Simon Glassc1c3fe22017-08-03 12:21:59 -060026 while U-Boot is running, but once U-Boot exits it will not be
27 stored. U-Boot will therefore always start up with a default
28 environment.
29
Simon Glass0649cd02017-08-03 12:21:49 -060030config ENV_IS_IN_EEPROM
31 bool "Environment in EEPROM"
32 depends on !CHAIN_OF_TRUST
33 help
34 Use this if you have an EEPROM or similar serial access
35 device and a driver for it.
36
37 - CONFIG_ENV_OFFSET:
38 - CONFIG_ENV_SIZE:
39
40 These two #defines specify the offset and size of the
41 environment area within the total memory of your EEPROM.
42
Simon Glass0649cd02017-08-03 12:21:49 -060043 Note that we consider the length of the address field to
44 still be one byte because the extra address bits are hidden
45 in the chip address.
46
Simon Glass0649cd02017-08-03 12:21:49 -060047 - CONFIG_ENV_EEPROM_IS_ON_I2C
48 define this, if you have I2C and SPI activated, and your
49 EEPROM, which holds the environment, is on the I2C bus.
50
51 - CONFIG_I2C_ENV_EEPROM_BUS
52 if you have an Environment on an EEPROM reached over
53 I2C muxes, you can define here, how to reach this
54 EEPROM. For example:
55
56 #define CONFIG_I2C_ENV_EEPROM_BUS 1
57
58 EEPROM which holds the environment, is reached over
59 a pca9547 i2c mux with address 0x70, channel 3.
60
61config ENV_IS_IN_FAT
62 bool "Environment is in a FAT filesystem"
63 depends on !CHAIN_OF_TRUST
Maxime Ripardfb694642018-01-23 21:17:01 +010064 default y if ARCH_BCM283X
Maxime Ripard0163c912018-01-23 21:17:04 +010065 default y if ARCH_SUNXI && MMC
Maxime Ripardfb694642018-01-23 21:17:01 +010066 default y if MMC_OMAP_HS && TI_COMMON_CMD_OPTIONS
Tuomas Tynkkynen3cd084d2018-01-05 02:45:19 +020067 select FS_FAT
Simon Glass0649cd02017-08-03 12:21:49 -060068 select FAT_WRITE
69 help
Simon Glass91d3aa02017-08-03 12:21:50 -060070 Define this if you want to use the FAT file system for the environment.
Simon Glass0649cd02017-08-03 12:21:49 -060071
Jorge Ramirez-Ortiz1087a792018-01-10 11:33:48 +010072config ENV_IS_IN_EXT4
73 bool "Environment is in a EXT4 filesystem"
74 depends on !CHAIN_OF_TRUST
Michal Simek07661782020-08-19 10:44:23 +020075 select FS_EXT4
Jorge Ramirez-Ortiz1087a792018-01-10 11:33:48 +010076 select EXT4_WRITE
77 help
78 Define this if you want to use the EXT4 file system for the environment.
79
Simon Glass0649cd02017-08-03 12:21:49 -060080config ENV_IS_IN_FLASH
81 bool "Environment in flash memory"
82 depends on !CHAIN_OF_TRUST
Maxime Ripardfb694642018-01-23 21:17:01 +010083 default y if ARCH_CINTEGRATOR
84 default y if ARCH_INTEGRATOR_CP
85 default y if M548x || M547x || M5282 || MCF547x_8x
86 default y if MCF532x || MCF52x2
87 default y if MPC86xx || MPC83xx
88 default y if ARCH_MPC8572 || ARCH_MPC8548 || ARCH_MPC8641
89 default y if SH && !CPU_SH4
Simon Glass0649cd02017-08-03 12:21:49 -060090 help
91 Define this if you have a flash device which you want to use for the
92 environment.
93
94 a) The environment occupies one whole flash sector, which is
95 "embedded" in the text segment with the U-Boot code. This
96 happens usually with "bottom boot sector" or "top boot
97 sector" type flash chips, which have several smaller
98 sectors at the start or the end. For instance, such a
99 layout can have sector sizes of 8, 2x4, 16, Nx32 kB. In
100 such a case you would place the environment in one of the
101 4 kB sectors - with U-Boot code before and after it. With
102 "top boot sector" type flash chips, you would put the
103 environment in one of the last sectors, leaving a gap
104 between U-Boot and the environment.
105
106 CONFIG_ENV_OFFSET:
107
108 Offset of environment data (variable area) to the
109 beginning of flash memory; for instance, with bottom boot
110 type flash chips the second sector can be used: the offset
111 for this sector is given here.
112
113 CONFIG_ENV_OFFSET is used relative to CONFIG_SYS_FLASH_BASE.
114
115 CONFIG_ENV_ADDR:
116
117 This is just another way to specify the start address of
118 the flash sector containing the environment (instead of
119 CONFIG_ENV_OFFSET).
120
121 CONFIG_ENV_SECT_SIZE:
122
123 Size of the sector containing the environment.
124
125
126 b) Sometimes flash chips have few, equal sized, BIG sectors.
127 In such a case you don't want to spend a whole sector for
128 the environment.
129
130 CONFIG_ENV_SIZE:
131
132 If you use this in combination with CONFIG_ENV_IS_IN_FLASH
133 and CONFIG_ENV_SECT_SIZE, you can specify to use only a part
134 of this flash sector for the environment. This saves
135 memory for the RAM copy of the environment.
136
137 It may also save flash memory if you decide to use this
138 when your environment is "embedded" within U-Boot code,
139 since then the remainder of the flash sector could be used
140 for U-Boot code. It should be pointed out that this is
141 STRONGLY DISCOURAGED from a robustness point of view:
142 updating the environment in flash makes it always
143 necessary to erase the WHOLE sector. If something goes
144 wrong before the contents has been restored from a copy in
145 RAM, your target system will be dead.
146
147 CONFIG_ENV_ADDR_REDUND
Simon Glass0649cd02017-08-03 12:21:49 -0600148
149 These settings describe a second storage area used to hold
150 a redundant copy of the environment data, so that there is
151 a valid backup copy in case there is a power failure during
152 a "saveenv" operation.
153
154 BE CAREFUL! Any changes to the flash layout, and some changes to the
155 source code will make it necessary to adapt <board>/u-boot.lds*
156 accordingly!
157
158config ENV_IS_IN_MMC
159 bool "Environment in an MMC device"
160 depends on !CHAIN_OF_TRUST
Maxime Ripardd282a1d2018-01-23 21:17:00 +0100161 depends on MMC
Maxime Ripardfb694642018-01-23 21:17:01 +0100162 default y if ARCH_EXYNOS4
163 default y if MX6SX || MX7D
164 default y if TEGRA30 || TEGRA124
165 default y if TEGRA_ARMV8_COMMON
Simon Glass0649cd02017-08-03 12:21:49 -0600166 help
167 Define this if you have an MMC device which you want to use for the
168 environment.
169
170 CONFIG_SYS_MMC_ENV_DEV:
171
172 Specifies which MMC device the environment is stored in.
173
174 CONFIG_SYS_MMC_ENV_PART (optional):
175
176 Specifies which MMC partition the environment is stored in. If not
177 set, defaults to partition 0, the user area. Common values might be
178 1 (first MMC boot partition), 2 (second MMC boot partition).
179
180 CONFIG_ENV_OFFSET:
181 CONFIG_ENV_SIZE:
182
183 These two #defines specify the offset and size of the environment
184 area within the specified MMC device.
185
186 If offset is positive (the usual case), it is treated as relative to
187 the start of the MMC partition. If offset is negative, it is treated
188 as relative to the end of the MMC partition. This can be useful if
189 your board may be fitted with different MMC devices, which have
190 different sizes for the MMC partitions, and you always want the
191 environment placed at the very end of the partition, to leave the
192 maximum possible space before it, to store other data.
193
194 These two values are in units of bytes, but must be aligned to an
195 MMC sector boundary.
196
197 CONFIG_ENV_OFFSET_REDUND (optional):
198
199 Specifies a second storage area, of CONFIG_ENV_SIZE size, used to
200 hold a redundant copy of the environment data. This provides a
201 valid backup copy in case the other copy is corrupted, e.g. due
202 to a power failure during a "saveenv" operation.
203
204 This value may also be positive or negative; this is handled in the
205 same way as CONFIG_ENV_OFFSET.
206
207 This value is also in units of bytes, but must also be aligned to
208 an MMC sector boundary.
209
Simon Glass0649cd02017-08-03 12:21:49 -0600210config ENV_IS_IN_NAND
211 bool "Environment in a NAND device"
212 depends on !CHAIN_OF_TRUST
213 help
214 Define this if you have a NAND device which you want to use for the
215 environment.
216
217 - CONFIG_ENV_OFFSET:
218 - CONFIG_ENV_SIZE:
219
220 These two #defines specify the offset and size of the environment
221 area within the first NAND device. CONFIG_ENV_OFFSET must be
222 aligned to an erase block boundary.
223
224 - CONFIG_ENV_OFFSET_REDUND (optional):
225
226 This setting describes a second storage area of CONFIG_ENV_SIZE
227 size used to hold a redundant copy of the environment data, so
228 that there is a valid backup copy in case there is a power failure
229 during a "saveenv" operation. CONFIG_ENV_OFFSET_REDUND must be
230 aligned to an erase block boundary.
231
232 - CONFIG_ENV_RANGE (optional):
233
234 Specifies the length of the region in which the environment
235 can be written. This should be a multiple of the NAND device's
236 block size. Specifying a range with more erase blocks than
237 are needed to hold CONFIG_ENV_SIZE allows bad blocks within
238 the range to be avoided.
239
240 - CONFIG_ENV_OFFSET_OOB (optional):
241
242 Enables support for dynamically retrieving the offset of the
243 environment from block zero's out-of-band data. The
244 "nand env.oob" command can be used to record this offset.
245 Currently, CONFIG_ENV_OFFSET_REDUND is not supported when
246 using CONFIG_ENV_OFFSET_OOB.
247
248config ENV_IS_IN_NVRAM
249 bool "Environment in a non-volatile RAM"
250 depends on !CHAIN_OF_TRUST
251 help
252 Define this if you have some non-volatile memory device
253 (NVRAM, battery buffered SRAM) which you want to use for the
254 environment.
255
256 - CONFIG_ENV_ADDR:
257 - CONFIG_ENV_SIZE:
258
259 These two #defines are used to determine the memory area you
260 want to use for environment. It is assumed that this memory
261 can just be read and written to, without any special
262 provision.
263
264config ENV_IS_IN_ONENAND
265 bool "Environment is in OneNAND"
266 depends on !CHAIN_OF_TRUST
267 help
268 Define this if you want to put your local device's environment in
269 OneNAND.
270
271 - CONFIG_ENV_ADDR:
272 - CONFIG_ENV_SIZE:
273
274 These two #defines are used to determine the device range you
275 want to use for environment. It is assumed that this memory
276 can just be read and written to, without any special
277 provision.
278
279config ENV_IS_IN_REMOTE
Heinrich Schuchardt646f1ab2018-03-17 22:53:11 +0000280 bool "Environment is in remote memory space"
Simon Glass0649cd02017-08-03 12:21:49 -0600281 depends on !CHAIN_OF_TRUST
282 help
283 Define this if you have a remote memory space which you
284 want to use for the local device's environment.
285
286 - CONFIG_ENV_ADDR:
287 - CONFIG_ENV_SIZE:
288
289 These two #defines specify the address and size of the
290 environment area within the remote memory space. The
291 local device can get the environment from remote memory
292 space by SRIO or PCIE links.
293
294config ENV_IS_IN_SPI_FLASH
295 bool "Environment is in SPI flash"
Tom Rinia4298dd2019-05-29 17:01:28 -0400296 depends on !CHAIN_OF_TRUST && SPI
Maxime Ripardfb694642018-01-23 21:17:01 +0100297 default y if ARMADA_XP
298 default y if INTEL_BAYTRAIL
299 default y if INTEL_BRASWELL
300 default y if INTEL_BROADWELL
301 default y if NORTHBRIDGE_INTEL_IVYBRIDGE
302 default y if INTEL_QUARK
303 default y if INTEL_QUEENSBAY
Simon Glass0649cd02017-08-03 12:21:49 -0600304 help
305 Define this if you have a SPI Flash memory device which you
306 want to use for the environment.
307
308 - CONFIG_ENV_OFFSET:
309 - CONFIG_ENV_SIZE:
310
311 These two #defines specify the offset and size of the
312 environment area within the SPI Flash. CONFIG_ENV_OFFSET must be
313 aligned to an erase sector boundary.
314
315 - CONFIG_ENV_SECT_SIZE:
316
317 Define the SPI flash's sector size.
318
319 - CONFIG_ENV_OFFSET_REDUND (optional):
320
321 This setting describes a second storage area of CONFIG_ENV_SIZE
322 size used to hold a redundant copy of the environment data, so
323 that there is a valid backup copy in case there is a power failure
324 during a "saveenv" operation. CONFIG_ENV_OFFSET_REDUND must be
325 aligned to an erase sector boundary.
326
Patrick Delaunayabe66b12019-02-27 15:20:38 +0100327config USE_ENV_SPI_BUS
328 bool "SPI flash bus for environment"
329 depends on ENV_IS_IN_SPI_FLASH
330 help
331 Force the SPI bus for environment.
332 If not defined, use CONFIG_SF_DEFAULT_BUS.
Simon Glass0649cd02017-08-03 12:21:49 -0600333
Patrick Delaunayabe66b12019-02-27 15:20:38 +0100334config ENV_SPI_BUS
335 int "Value of SPI flash bus for environment"
336 depends on USE_ENV_SPI_BUS
337 help
338 Value the SPI bus and chip select for environment.
Simon Glass0649cd02017-08-03 12:21:49 -0600339
Patrick Delaunayabe66b12019-02-27 15:20:38 +0100340config USE_ENV_SPI_CS
341 bool "SPI flash chip select for environment"
342 depends on ENV_IS_IN_SPI_FLASH
343 help
344 Force the SPI chip select for environment.
345 If not defined, use CONFIG_SF_DEFAULT_CS.
Simon Glass0649cd02017-08-03 12:21:49 -0600346
Patrick Delaunayabe66b12019-02-27 15:20:38 +0100347config ENV_SPI_CS
348 int "Value of SPI flash chip select for environment"
349 depends on USE_ENV_SPI_CS
350 help
351 Value of the SPI chip select for environment.
Simon Glass0649cd02017-08-03 12:21:49 -0600352
Patrick Delaunayabe66b12019-02-27 15:20:38 +0100353config USE_ENV_SPI_MAX_HZ
Marek Vasutdd309612019-05-04 19:10:05 +0200354 bool "SPI flash max frequency for environment"
Patrick Delaunayabe66b12019-02-27 15:20:38 +0100355 depends on ENV_IS_IN_SPI_FLASH
356 help
357 Force the SPI max work clock for environment.
358 If not defined, use CONFIG_SF_DEFAULT_SPEED.
Simon Glass0649cd02017-08-03 12:21:49 -0600359
Patrick Delaunayabe66b12019-02-27 15:20:38 +0100360config ENV_SPI_MAX_HZ
Marek Vasutdd309612019-05-04 19:10:05 +0200361 int "Value of SPI flash max frequency for environment"
Patrick Delaunayabe66b12019-02-27 15:20:38 +0100362 depends on USE_ENV_SPI_MAX_HZ
363 help
364 Value of the SPI max work clock for environment.
365
366config USE_ENV_SPI_MODE
367 bool "SPI flash mode for environment"
368 depends on ENV_IS_IN_SPI_FLASH
369 help
370 Force the SPI work mode for environment.
371
372config ENV_SPI_MODE
373 hex "Value of SPI flash work mode for environment"
374 depends on USE_ENV_SPI_MODE
375 help
376 Value of the SPI work mode for environment.
377 See include/spi.h for value.
Simon Glass0649cd02017-08-03 12:21:49 -0600378
379config ENV_IS_IN_UBI
380 bool "Environment in a UBI volume"
381 depends on !CHAIN_OF_TRUST
Miquel Raynal00e27042019-10-03 19:50:12 +0200382 depends on MTD_UBI
383 depends on CMD_UBI
Simon Glass0649cd02017-08-03 12:21:49 -0600384 help
385 Define this if you have an UBI volume that you want to use for the
386 environment. This has the benefit of wear-leveling the environment
387 accesses, which is important on NAND.
388
389 - CONFIG_ENV_UBI_PART:
390
391 Define this to a string that is the mtd partition containing the UBI.
392
393 - CONFIG_ENV_UBI_VOLUME:
394
395 Define this to the name of the volume that you want to store the
396 environment in.
397
398 - CONFIG_ENV_UBI_VOLUME_REDUND:
399
400 Define this to the name of another volume to store a second copy of
401 the environment in. This will enable redundant environments in UBI.
402 It is assumed that both volumes are in the same MTD partition.
403
Tom Rinicb6617a2019-11-10 11:28:03 -0500404config SYS_REDUNDAND_ENVIRONMENT
405 bool "Enable redundant environment support"
406 depends on ENV_IS_IN_EEPROM || ENV_IS_IN_FLASH || ENV_IS_IN_MMC || \
407 ENV_IS_IN_NAND || ENV_IS_IN_SPI_FLASH || ENV_IS_IN_UBI
408 help
409 Normally, the environemt is stored in a single location. By
410 selecting this option, you can then define where to hold a redundant
411 copy of the environment data, so that there is a valid backup copy in
412 case there is a power failure during a "saveenv" operation.
413
Simon Glass0649cd02017-08-03 12:21:49 -0600414config ENV_FAT_INTERFACE
415 string "Name of the block device for the environment"
416 depends on ENV_IS_IN_FAT
Michal Simek8d782112020-02-25 15:50:33 +0100417 default "mmc"
Simon Glass0649cd02017-08-03 12:21:49 -0600418 help
419 Define this to a string that is the name of the block device.
420
421config ENV_FAT_DEVICE_AND_PART
422 string "Device and partition for where to store the environemt in FAT"
423 depends on ENV_IS_IN_FAT
424 default "0:1" if TI_COMMON_CMD_OPTIONS
Michal Simek7fa8d5e2020-08-24 13:35:53 +0200425 default "0:auto" if ARCH_ZYNQ || ARCH_ZYNQMP
Maxime Ripard0163c912018-01-23 21:17:04 +0100426 default "0:auto" if ARCH_SUNXI && MMC_SUNXI_SLOT_EXTRA = -1
427 default "1:auto" if ARCH_SUNXI && MMC_SUNXI_SLOT_EXTRA != -1
Simon Glass0649cd02017-08-03 12:21:49 -0600428 default "0" if ARCH_AT91
429 help
430 Define this to a string to specify the partition of the device. It can
431 be as following:
432
433 "D:P", "D:0", "D", "D:" or "D:auto" (D, P are integers. And P >= 1)
434 - "D:P": device D partition P. Error occurs if device D has no
435 partition table.
436 - "D:0": device D.
437 - "D" or "D:": device D partition 1 if device D has partition
438 table, or the whole device D if has no partition
439 table.
440 - "D:auto": first partition in device D with bootable flag set.
441 If none, first valid partition in device D. If no
442 partition table then means device D.
443
David Woodhouse6731bef2020-06-19 23:07:17 +0100444 If ENV_FAT_INTERFACE is set to "mmc" then device 'D' can be omitted,
445 leaving the string starting with a colon, and the boot device will
446 be used.
447
Simon Glass0649cd02017-08-03 12:21:49 -0600448config ENV_FAT_FILE
Shyam Saini919d25c2018-06-07 19:47:19 +0530449 string "Name of the FAT file to use for the environment"
Simon Glass0649cd02017-08-03 12:21:49 -0600450 depends on ENV_IS_IN_FAT
451 default "uboot.env"
452 help
453 It's a string of the FAT file name. This file use to store the
454 environment.
455
Jorge Ramirez-Ortiz1087a792018-01-10 11:33:48 +0100456config ENV_EXT4_INTERFACE
457 string "Name of the block device for the environment"
458 depends on ENV_IS_IN_EXT4
459 help
460 Define this to a string that is the name of the block device.
461
462config ENV_EXT4_DEVICE_AND_PART
463 string "Device and partition for where to store the environemt in EXT4"
464 depends on ENV_IS_IN_EXT4
465 help
466 Define this to a string to specify the partition of the device. It can
467 be as following:
468
469 "D:P", "D:0", "D", "D:" or "D:auto" (D, P are integers. And P >= 1)
470 - "D:P": device D partition P. Error occurs if device D has no
471 partition table.
472 - "D:0": device D.
473 - "D" or "D:": device D partition 1 if device D has partition
474 table, or the whole device D if has no partition
475 table.
476 - "D:auto": first partition in device D with bootable flag set.
477 If none, first valid partition in device D. If no
478 partition table then means device D.
479
David Woodhouseb0493bb2020-08-04 10:05:47 +0100480 If ENV_EXT4_INTERFACE is set to "mmc" then device 'D' can be omitted,
481 leaving the string starting with a colon, and the boot device will
482 be used.
483
Jorge Ramirez-Ortiz1087a792018-01-10 11:33:48 +0100484config ENV_EXT4_FILE
Shyam Saini919d25c2018-06-07 19:47:19 +0530485 string "Name of the EXT4 file to use for the environment"
Jorge Ramirez-Ortiz1087a792018-01-10 11:33:48 +0100486 depends on ENV_IS_IN_EXT4
Patrick Delaunay87dac742020-07-28 11:51:14 +0200487 default "/uboot.env"
Jorge Ramirez-Ortiz1087a792018-01-10 11:33:48 +0100488 help
489 It's a string of the EXT4 file name. This file use to store the
490 environment (explicit path to the file)
491
Tom Rinia09fea12019-11-18 20:02:10 -0500492config ENV_ADDR
493 hex "Environment address"
494 depends on ENV_IS_IN_FLASH || ENV_IS_IN_NVRAM || ENV_IS_IN_ONENAND || \
495 ENV_IS_IN_REMOTE || ENV_IS_IN_SPI_FLASH
496 default 0x0 if ENV_IS_IN_SPI_FLASH
497 help
498 Offset from the start of the device (or partition)
499
500config ENV_ADDR_REDUND
501 hex "Redundant environment address"
502 depends on ENV_IS_IN_FLASH && SYS_REDUNDAND_ENVIRONMENT
503 help
504 Offset from the start of the device (or partition) of the redundant
505 environment location.
Simon Glass0649cd02017-08-03 12:21:49 -0600506
507config ENV_OFFSET
Tom Rinia09fea12019-11-18 20:02:10 -0500508 hex "Environment offset"
509 depends on ENV_IS_IN_EEPROM || ENV_IS_IN_MMC || ENV_IS_IN_NAND || \
510 ENV_IS_IN_SPI_FLASH
Jagan Tekid7b433e2019-12-21 13:24:35 +0530511 default 0x3f8000 if ARCH_ROCKCHIP && ENV_IS_IN_MMC
Jagan Teki54b85a92019-12-21 13:24:36 +0530512 default 0x140000 if ARCH_ROCKCHIP && ENV_IS_IN_SPI_FLASH
Simon Glass0649cd02017-08-03 12:21:49 -0600513 default 0x88000 if ARCH_SUNXI
Michal Simek4aee6242018-07-19 08:45:45 +0200514 default 0xE0000 if ARCH_ZYNQ
515 default 0x1E00000 if ARCH_ZYNQMP
T Karthik Reddyf8c0f9f2019-08-05 16:18:57 +0530516 default 0x7F40000 if ARCH_VERSAL
Alexey Brodkin70b5ea72019-01-15 11:42:48 +0300517 default 0 if ARC
Markus Klotzbuechera9221f32019-05-15 15:15:54 +0200518 default 0x140000 if ARCH_AT91
519 default 0x260000 if ARCH_OMAP2PLUS
Varalaxmi Bingi63e988e2020-02-05 03:58:20 -0700520 default 0x1080000 if MICROBLAZE && ENV_IS_IN_SPI_FLASH
Simon Glass0649cd02017-08-03 12:21:49 -0600521 help
522 Offset from the start of the device (or partition)
523
Tom Rinia09fea12019-11-18 20:02:10 -0500524config ENV_OFFSET_REDUND
525 hex "Redundant environment offset"
526 depends on (ENV_IS_IN_EEPROM || ENV_IS_IN_MMC || ENV_IS_IN_NAND || \
527 ENV_IS_IN_SPI_FLASH) && SYS_REDUNDAND_ENVIRONMENT
528 help
529 Offset from the start of the device (or partition) of the redundant
530 environment location.
531
Simon Glass0649cd02017-08-03 12:21:49 -0600532config ENV_SIZE
533 hex "Environment Size"
Michal Simek4aee6242018-07-19 08:45:45 +0200534 default 0x40000 if ENV_IS_IN_SPI_FLASH && ARCH_ZYNQMP
Markus Klotzbuechera9221f32019-05-15 15:15:54 +0200535 default 0x20000 if ARCH_SUNXI || ARCH_ZYNQ || ARCH_OMAP2PLUS || ARCH_AT91
Jagan Tekid7b433e2019-12-21 13:24:35 +0530536 default 0x8000 if ARCH_ROCKCHIP && ENV_IS_IN_MMC
Jagan Teki54b85a92019-12-21 13:24:36 +0530537 default 0x2000 if ARCH_ROCKCHIP && ENV_IS_IN_SPI_FLASH
Jagan Tekid7b433e2019-12-21 13:24:35 +0530538 default 0x8000 if ARCH_ZYNQMP || ARCH_VERSAL
Alexey Brodkin70b5ea72019-01-15 11:42:48 +0300539 default 0x4000 if ARC
Markus Klotzbuechera9221f32019-05-15 15:15:54 +0200540 default 0x1f000
Simon Glass0649cd02017-08-03 12:21:49 -0600541 help
542 Size of the environment storage area
543
Michal Simek4aee6242018-07-19 08:45:45 +0200544config ENV_SECT_SIZE
545 hex "Environment Sector-Size"
Tom Rinia09fea12019-11-18 20:02:10 -0500546 depends on ENV_IS_IN_FLASH || ENV_IS_IN_SPI_FLASH
Jagan Teki54b85a92019-12-21 13:24:36 +0530547 default 0x2000 if ARCH_ROCKCHIP
T Karthik Reddyf8c0f9f2019-08-05 16:18:57 +0530548 default 0x40000 if ARCH_ZYNQMP || ARCH_VERSAL
Markus Klotzbuechera9221f32019-05-15 15:15:54 +0200549 default 0x20000 if ARCH_ZYNQ || ARCH_OMAP2PLUS || ARCH_AT91
Varalaxmi Bingi63e988e2020-02-05 03:58:20 -0700550 default 0x20000 if MICROBLAZE && ENV_IS_IN_SPI_FLASH
Michal Simek4aee6242018-07-19 08:45:45 +0200551 help
552 Size of the sector containing the environment.
553
Simon Glass0649cd02017-08-03 12:21:49 -0600554config ENV_UBI_PART
555 string "UBI partition name"
556 depends on ENV_IS_IN_UBI
557 help
558 MTD partition containing the UBI device
559
560config ENV_UBI_VOLUME
561 string "UBI volume name"
562 depends on ENV_IS_IN_UBI
563 help
564 Name of the volume that you want to store the environment in.
565
Markus Klotzbuecherff4818c2019-05-15 15:15:53 +0200566config ENV_UBI_VOLUME_REDUND
567 string "UBI redundant volume name"
Tom Rinicb6617a2019-11-10 11:28:03 -0500568 depends on ENV_IS_IN_UBI && SYS_REDUNDAND_ENVIRONMENT
Markus Klotzbuecherff4818c2019-05-15 15:15:53 +0200569 help
570 Name of the redundant volume that you want to store the environment in.
571
Hamish Guthrie985186d2019-05-15 15:15:55 +0200572config ENV_UBI_VID_OFFSET
573 int "ubi environment VID offset"
574 depends on ENV_IS_IN_UBI
575 default 0
576 help
577 UBI VID offset for environment. If 0, no custom VID offset is used.
578
Tom Rini8d8ee472019-11-12 22:46:36 -0500579config SYS_RELOC_GD_ENV_ADDR
Patrick Delaunay35c26832020-06-10 19:28:42 +0200580 bool "Relocate gd->env_addr"
Tom Rini8d8ee472019-11-12 22:46:36 -0500581 help
582 Relocate the early env_addr pointer so we know it is not inside
583 the binary. Some systems need this and for the rest, it doesn't hurt.
584
Tom Rini7d080772020-07-24 17:14:47 -0400585config SYS_MMC_ENV_DEV
586 int "mmc device number"
587 depends on ENV_IS_IN_MMC || ENV_IS_IN_FAT || SYS_LS_PPA_FW_IN_MMC || \
588 CMD_MVEBU_BUBT || FMAN_ENET || QE
589 default 0
590 help
591 MMC device number on the platform where the environment is stored.
592
593config SYS_MMC_ENV_PART
594 int "mmc partition number"
595 depends on ENV_IS_IN_MMC || ENV_IS_IN_FAT
596 default 0
597 help
598 MMC hardware partition device number on the platform where the
599 environment is stored. Note that this is not related to any software
600 defined partition table but instead if we are in the user area, which is
601 partition 0 or the first boot partition, which is 1 or some other defined
602 partition.
603
Rasmus Villemoesf3d8f7d2018-03-20 11:38:45 +0100604config USE_DEFAULT_ENV_FILE
605 bool "Create default environment from file"
606 help
607 Normally, the default environment is automatically generated
608 based on the settings of various CONFIG_* options, as well
609 as the CONFIG_EXTRA_ENV_SETTINGS. By selecting this option,
610 you can instead define the entire default environment in an
611 external file.
612
613config DEFAULT_ENV_FILE
614 string "Path to default environment file"
615 depends on USE_DEFAULT_ENV_FILE
616 help
617 The path containing the default environment. The format is
618 the same as accepted by the mkenvimage tool: lines
619 containing key=value pairs, blank lines and lines beginning
620 with # are ignored.
621
Alex Kiernand9101302018-04-01 16:37:53 +0000622config ENV_VARS_UBOOT_RUNTIME_CONFIG
623 bool "Add run-time information to the environment"
624 help
625 Enable this in order to add variables describing certain
626 run-time determined information about the hardware to the
627 environment. These will be named board_name, board_rev.
628
Ovidiu Panaitb8879f22020-05-06 20:38:42 +0300629config DELAY_ENVIRONMENT
630 bool "Delay environment loading"
631 depends on !OF_CONTROL
632 help
633 Enable this to inhibit loading the environment during board
634 initialization. This can address the security risk of untrusted data
635 being used during boot. Normally the environment is loaded when the
636 board is initialised so that it is available to U-Boot. This inhibits
637 that so that the environment is not available until explicitly loaded
638 later by U-Boot code. With CONFIG_OF_CONTROL this is instead
639 controlled by the value of /config/load-environment.
640
Marek Vasut47f3b1f2020-07-07 20:51:38 +0200641config ENV_APPEND
642 bool "Always append the environment with new data"
643 default n
644 help
645 If defined, the environment hash table is only ever appended with new
646 data, but the existing hash table can never be dropped and reloaded
647 with newly imported data. This may be used in combination with static
648 flags to e.g. to protect variables which must not be modified.
649
Marek Vasutd045cba2020-07-07 20:51:39 +0200650config ENV_WRITEABLE_LIST
651 bool "Permit write access only to listed variables"
652 default n
653 help
654 If defined, only environment variables which explicitly set the 'w'
655 writeable flag can be written and modified at runtime. No variables
656 can be otherwise created, written or imported into the environment.
657
Marek Vasut3ec46992020-05-22 01:10:14 +0200658config ENV_ACCESS_IGNORE_FORCE
659 bool "Block forced environment operations"
660 default n
661 help
662 If defined, don't allow the -f switch to env set override variable
663 access flags.
664
York Sun474ecd22018-06-26 10:03:22 -0700665if SPL_ENV_SUPPORT
666config SPL_ENV_IS_NOWHERE
667 bool "SPL Environment is not stored"
668 default y if ENV_IS_NOWHERE
669 help
670 Similar to ENV_IS_NOWHERE, used for SPL environment.
671
672config SPL_ENV_IS_IN_MMC
673 bool "SPL Environment in an MMC device"
674 depends on !SPL_ENV_IS_NOWHERE
675 depends on ENV_IS_IN_MMC
676 default y
677 help
678 Similar to ENV_IS_IN_MMC, used for SPL environment.
679
680config SPL_ENV_IS_IN_FAT
681 bool "SPL Environment is in a FAT filesystem"
682 depends on !SPL_ENV_IS_NOWHERE
683 depends on ENV_IS_IN_FAT
684 default y
685 help
686 Similar to ENV_IS_IN_FAT, used for SPL environment.
687
688config SPL_ENV_IS_IN_EXT4
689 bool "SPL Environment is in a EXT4 filesystem"
690 depends on !SPL_ENV_IS_NOWHERE
691 depends on ENV_IS_IN_EXT4
692 default y
693 help
694 Similar to ENV_IS_IN_EXT4, used for SPL environment.
695
696config SPL_ENV_IS_IN_NAND
697 bool "SPL Environment in a NAND device"
698 depends on !SPL_ENV_IS_NOWHERE
699 depends on ENV_IS_IN_NAND
700 default y
701 help
702 Similar to ENV_IS_IN_NAND, used for SPL environment.
703
704config SPL_ENV_IS_IN_SPI_FLASH
705 bool "SPL Environment is in SPI flash"
706 depends on !SPL_ENV_IS_NOWHERE
707 depends on ENV_IS_IN_SPI_FLASH
708 default y
709 help
710 Similar to ENV_IS_IN_SPI_FLASH, used for SPL environment.
711
712config SPL_ENV_IS_IN_FLASH
713 bool "SPL Environment in flash memory"
714 depends on !SPL_ENV_IS_NOWHERE
715 depends on ENV_IS_IN_FLASH
716 default y
717 help
718 Similar to ENV_IS_IN_FLASH, used for SPL environment.
719
720endif
721
722if TPL_ENV_SUPPORT
723
724config TPL_ENV_IS_NOWHERE
725 bool "TPL Environment is not stored"
726 default y if ENV_IS_NOWHERE
727 help
728 Similar to ENV_IS_NOWHERE, used for TPL environment.
729
730config TPL_ENV_IS_IN_MMC
731 bool "TPL Environment in an MMC device"
732 depends on !TPL_ENV_IS_NOWHERE
733 depends on ENV_IS_IN_MMC
734 default y
735 help
736 Similar to ENV_IS_IN_MMC, used for TPL environment.
737
738config TPL_ENV_IS_IN_FAT
739 bool "TPL Environment is in a FAT filesystem"
740 depends on !TPL_ENV_IS_NOWHERE
741 depends on ENV_IS_IN_FAT
742 default y
743 help
744 Similar to ENV_IS_IN_FAT, used for TPL environment.
745
746config TPL_ENV_IS_IN_EXT4
747 bool "TPL Environment is in a EXT4 filesystem"
748 depends on !TPL_ENV_IS_NOWHERE
749 depends on ENV_IS_IN_EXT4
750 default y
751 help
752 Similar to ENV_IS_IN_EXT4, used for TPL environment.
753
754config TPL_ENV_IS_IN_NAND
755 bool "TPL Environment in a NAND device"
756 depends on !TPL_ENV_IS_NOWHERE
757 depends on ENV_IS_IN_NAND
758 default y
759 help
760 Similar to ENV_IS_IN_NAND, used for TPL environment.
761
762config TPL_ENV_IS_IN_SPI_FLASH
763 bool "TPL Environment is in SPI flash"
764 depends on !TPL_ENV_IS_NOWHERE
765 depends on ENV_IS_IN_SPI_FLASH
766 default y
767 help
768 Similar to ENV_IS_IN_SPI_FLASH, used for TPL environment.
769
770config TPL_ENV_IS_IN_FLASH
771 bool "TPL Environment in flash memory"
772 depends on !TPL_ENV_IS_NOWHERE
773 depends on ENV_IS_IN_FLASH
774 default y
775 help
776 Similar to ENV_IS_IN_FLASH, used for TPL environment.
777
778endif
779
Simon Glassbc438b62020-09-10 20:21:24 -0600780config VERSION_VARIABLE
781 bool "Add a 'ver' environment variable with the U-Boot version"
782 help
783 If this variable is defined, an environment variable
784 named "ver" is created by U-Boot showing the U-Boot
785 version as printed by the "version" command.
786 Any change to this variable will be reverted at the
787 next reset.
788
Simon Glass0649cd02017-08-03 12:21:49 -0600789endmenu