mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
e0418347f9
Setup initrd_high and fdt_high to be placed in lowmem space for kernel to be able to reach it. Values are setup at run time to ensure that the same setting can be used on different memory setup. Do this setting only when variables are not Similar run time detection was done for Zynqmp and Versal. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
36 lines
710 B
Text
36 lines
710 B
Text
menu "MicroBlaze architecture"
|
|
depends on MICROBLAZE
|
|
|
|
config SYS_ARCH
|
|
default "microblaze"
|
|
|
|
choice
|
|
prompt "Target select"
|
|
optional
|
|
|
|
config TARGET_MICROBLAZE_GENERIC
|
|
bool "Support microblaze-generic"
|
|
select BOARD_LATE_INIT
|
|
select DM
|
|
select DM_SERIAL
|
|
select OF_CONTROL
|
|
select SUPPORT_SPL
|
|
select SYSRESET
|
|
imply CMD_DM
|
|
|
|
endchoice
|
|
|
|
config STACK_SIZE
|
|
hex "Define max stack size that can be used by u-boot"
|
|
default 0x200000
|
|
help
|
|
Defines Max stack size that can be used by u-boot so that the
|
|
initrd_high will be calculated as base stack pointer minus this
|
|
stack size.
|
|
|
|
source "board/xilinx/microblaze-generic/Kconfig"
|
|
|
|
config SPL_LDSCRIPT
|
|
default "arch/microblaze/cpu/u-boot-spl.lds"
|
|
|
|
endmenu
|