Merge tag 'xilinx-for-v2020.01' of https://gitlab.denx.de/u-boot/custodians/u-boot...
[platform/kernel/u-boot.git] / arch / microblaze / Kconfig
1 menu "MicroBlaze architecture"
2         depends on MICROBLAZE
3
4 config SYS_ARCH
5         default "microblaze"
6
7 choice
8         prompt "Target select"
9         optional
10
11 config TARGET_MICROBLAZE_GENERIC
12         bool "Support microblaze-generic"
13         select BOARD_LATE_INIT
14         select DM
15         select DM_SERIAL
16         select OF_CONTROL
17         select SUPPORT_SPL
18         select SYSRESET
19         imply CMD_DM
20
21 endchoice
22
23 config STACK_SIZE
24         hex "Define max stack size that can be used by u-boot"
25         default 0x200000
26         help
27           Defines Max stack size that can be used by u-boot so that the
28           initrd_high will be calculated as base stack pointer minus this
29           stack size.
30
31 source "board/xilinx/microblaze-generic/Kconfig"
32
33 config SPL_LDSCRIPT
34         default "arch/microblaze/cpu/u-boot-spl.lds"
35
36 endmenu