blob: cad51c1cf02226d9ace9d6ee6dd856e131b0e428 [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
19config SYS_SPI_U_BOOT_OFFS
20 hex "address of u-boot payload in SPI flash"
21 default 0x20000
22 depends on MVEBU_SPL_BOOT_DEVICE_SPI
23
24endmenu