2014-07-30 05:08:14 +00:00
|
|
|
menu "MicroBlaze architecture"
|
|
|
|
depends on MICROBLAZE
|
|
|
|
|
|
|
|
config SYS_ARCH
|
|
|
|
default "microblaze"
|
|
|
|
|
2022-06-24 12:15:01 +00:00
|
|
|
config NEEDS_MANUAL_RELOC
|
|
|
|
bool "Disable position-independent pre-relocation code"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
U-Boot expects to be linked to a specific hard-coded address, and to
|
|
|
|
be loaded to and run from that address. This option lifts that
|
|
|
|
restriction, thus allowing the code to be loaded to and executed from
|
|
|
|
almost any 4K aligned address. This logic relies on the relocation
|
|
|
|
information that is embedded in the binary to support U-Boot
|
|
|
|
relocating itself to the top-of-RAM later during execution.
|
|
|
|
|
|
|
|
config STATIC_RELA
|
|
|
|
def_bool y if !NEEDS_MANUAL_RELOC
|
|
|
|
|
2014-07-30 05:08:14 +00:00
|
|
|
choice
|
|
|
|
prompt "Target select"
|
2015-05-12 19:46:23 +00:00
|
|
|
optional
|
2014-07-30 05:08:14 +00:00
|
|
|
|
|
|
|
config TARGET_MICROBLAZE_GENERIC
|
|
|
|
bool "Support microblaze-generic"
|
2017-01-23 00:43:11 +00:00
|
|
|
select BOARD_LATE_INIT
|
2015-12-09 10:44:17 +00:00
|
|
|
select DM
|
2015-12-01 13:24:20 +00:00
|
|
|
select DM_SERIAL
|
2018-07-23 13:55:13 +00:00
|
|
|
select OF_CONTROL
|
|
|
|
select SUPPORT_SPL
|
2021-11-30 16:33:51 +00:00
|
|
|
select SPL_LIBCOMMON_SUPPORT if SPL
|
|
|
|
select SPL_LIBGENERIC_SUPPORT if SPL
|
2018-07-13 06:26:28 +00:00
|
|
|
select SYSRESET
|
2020-09-17 12:52:09 +00:00
|
|
|
select DM_SPI
|
|
|
|
select DM_SPI_FLASH
|
|
|
|
select SPI
|
2018-07-23 13:55:14 +00:00
|
|
|
imply CMD_DM
|
2014-07-30 05:08:14 +00:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2020-10-22 09:08:58 +00:00
|
|
|
source "board/xilinx/Kconfig"
|
2014-07-30 05:08:14 +00:00
|
|
|
source "board/xilinx/microblaze-generic/Kconfig"
|
|
|
|
|
|
|
|
endmenu
|