summaryrefslogtreecommitdiff
path: root/api/Kconfig
blob: d9362724e5f613d999b2a62ac899f7e64a8dc109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
menu "API"

config API
	bool "Enable U-Boot API"
	help
	  This option enables the U-Boot API. See api/README for more information.

config SYS_MMC_MAX_DEVICE
	int  "Maximum number of MMC devices exposed via the API"
	depends on API
	default 1

endmenu

config STANDALONE_LOAD_ADDR
	hex "Address in memory to link standalone applications to"
	default 0xffffffff80200000 if MIPS && 64BIT
	default 0x8c000000 if SH
	default 0x82000000 if ARC
	default 0x80f00000 if MICROBLAZE
	default 0x80300000 if ARCH_OMAP2PLUS || FSL_LSCH2 || FSL_LSCH3
	default 0x80200000 if MIPS && 32BIT
	default 0x0c100000 if ARM
	default 0x02000000 if NIOS2
	default 0x00040000 if PPC || X86
	default 0x00020000 if M68K
	default 0x0 if RISCV
	default SYS_LOAD_ADDR
	help
	  This option defines a board specific value for the address where
	  standalone program gets loaded, thus overwriting the architecture
	  dependent default settings.