2014-07-30 05:08:14 +00:00
|
|
|
CONFIG_ARM=y
|
2022-01-24 21:08:41 +00:00
|
|
|
# CONFIG_ARM64_CRC32 is not set
|
2022-04-13 09:47:20 +00:00
|
|
|
CONFIG_COUNTER_FREQUENCY=24000000
|
2022-03-04 16:30:09 +00:00
|
|
|
CONFIG_ARCH_VEXPRESS64=y
|
2021-02-15 07:27:57 +00:00
|
|
|
CONFIG_NR_DRAM_BANKS=2
|
vexpress64: fvp: enable OF_CONTROL
The FVP base model is relying on a DT for Linux operation, so there is
no reason we would need to rely on hardcoded information for U-Boot.
Letting U-Boot use a DT will open up the usage of actual peripherals,
beyond the support for semihosting only.
Enable OF_CONTROL in the Kconfig, and use the latest dts files from
Linux. Depending on whether we use the boot-wrapper or TF-A, there is
already a DTB provided or not, respectively.
To cover the boot-wrapper, we add an arm64 Linux kernel header, which
allows the boot-wrapper to treat U-Boot like a Linux kernel. U-Boot will
find the pointer to the DTB in x0, and will use it.
Even though TF-A carries a DT, at the moment this is not made available
to non-secure world, so to not break users, we use the U-Boot provided
DTB copy in that case. For some reason TF-A puts some DT like structure
at the address x0 is pointing at, but that is very small and doesn't
carry any hardware information. Make the code to ignore those small DTBs.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2022-03-04 16:30:11 +00:00
|
|
|
CONFIG_DEFAULT_DEVICE_TREE="fvp-base-revc"
|
2022-08-23 19:24:14 +00:00
|
|
|
CONFIG_SYS_PROMPT="VExpress64# "
|
2016-07-29 10:01:47 +00:00
|
|
|
CONFIG_IDENT_STRING=" vexpress_aemv8a"
|
2022-04-01 14:33:18 +00:00
|
|
|
CONFIG_SYS_MEMTEST_START=0x80000000
|
|
|
|
CONFIG_SYS_MEMTEST_END=0xff000000
|
2022-01-29 15:25:30 +00:00
|
|
|
CONFIG_REMAKE_ELF=y
|
2020-04-28 20:15:47 +00:00
|
|
|
CONFIG_ANDROID_BOOT_IMAGE=y
|
2016-06-13 13:45:14 +00:00
|
|
|
CONFIG_BOOTDELAY=1
|
2017-08-14 17:22:17 +00:00
|
|
|
CONFIG_USE_BOOTARGS=y
|
2019-08-21 17:29:09 +00:00
|
|
|
CONFIG_BOOTARGS="console=ttyAMA0 earlycon=pl011,0x1c090000 debug user_debug=31 loglevel=9"
|
2016-10-08 18:41:44 +00:00
|
|
|
# CONFIG_DISPLAY_CPUINFO is not set
|
2022-05-11 20:21:06 +00:00
|
|
|
CONFIG_SYS_MAXARGS=64
|
2022-05-11 22:01:06 +00:00
|
|
|
CONFIG_SYS_CBSIZE=512
|
2022-05-11 21:38:09 +00:00
|
|
|
CONFIG_SYS_PBSIZE=541
|
2020-04-28 20:15:47 +00:00
|
|
|
CONFIG_CMD_ABOOTIMG=y
|
2016-04-22 20:41:25 +00:00
|
|
|
CONFIG_CMD_MEMTEST=y
|
|
|
|
CONFIG_CMD_ARMFLASH=y
|
2022-02-25 16:19:50 +00:00
|
|
|
CONFIG_BOOTP_BOOTFILESIZE=y
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_CACHE=y
|
2018-11-20 18:47:12 +00:00
|
|
|
CONFIG_CMD_UBI=y
|
2017-03-13 17:48:42 +00:00
|
|
|
# CONFIG_MMC is not set
|
2019-10-03 17:50:05 +00:00
|
|
|
CONFIG_MTD=y
|
2022-05-13 13:18:27 +00:00
|
|
|
CONFIG_SYS_FLASH_CFI_WIDTH_32BIT=y
|
2022-12-02 21:42:20 +00:00
|
|
|
CONFIG_FLASH_SHOW_PROGRESS=0
|
2018-10-14 20:10:50 +00:00
|
|
|
CONFIG_SYS_FLASH_USE_BUFFER_WRITE=y
|
2022-07-23 17:04:55 +00:00
|
|
|
CONFIG_SYS_FLASH_EMPTY_INFO=y
|
2018-10-14 20:10:50 +00:00
|
|
|
CONFIG_SYS_FLASH_PROTECTION=y
|
|
|
|
CONFIG_SYS_FLASH_CFI=y
|
2022-07-23 17:05:04 +00:00
|
|
|
CONFIG_SYS_MAX_FLASH_SECT=256
|
2022-03-04 16:30:14 +00:00
|
|
|
CONFIG_VIRTIO_MMIO=y
|