blob: 81a2199ae5f8948ccea7c9535f39ee9627101ea3 [file] [log] [blame]
Dennis Gilmore5a3db5d2020-12-08 21:07:36 -06001menu "Helios4 configuration"
2 depends on TARGET_HELIOS4
3
4config ENV_SIZE
5 hex "Environment Size"
6 default 0x10000
7
8config ENV_OFFSET
9 hex "Environment offset"
10 default 0xF0000
11
12config ENV_SECT_SIZE
13 hex "Environment Sector-Size"
14 # Use SPI or SATA flash erase block size of 4 KiB
15 default 0x1000 if MVEBU_SPL_BOOT_DEVICE_SPI || MVEBU_SPL_BOOT_DEVICE_SATA
16 # Use optimistic 64 KiB erase block, will vary between actual media
17 default 0x10000 if MVEBU_SPL_BOOT_DEVICE_MMC || MVEBU_SPL_BOOT_DEVICE_UART
18
Dennis Gilmore5a3db5d2020-12-08 21:07:36 -060019endmenu