]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/cpu/armv7/am33xx/Kconfig
54474c2d7f4d09ea527e37fb0a4ef047ce1dda88
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / am33xx / Kconfig
1 if AM43XX
2
3 config SPL_EXT_SUPPORT
4 default y
5
6 config SPL_GPIO_SUPPORT
7 default y
8
9 config TARGET_AM43XX_EVM
10 bool "Support am43xx_evm"
11 select TI_I2C_BOARD_DETECT
12 help
13 This option specifies support for the AM43xx
14 GP and HS EVM development platforms.The AM437x
15 GP EVM is a standalone test, development, and
16 evaluation module system that enables developers
17 to write software and develop hardware around
18 an AM43xx processor subsystem.
19
20 config ISW_ENTRY_ADDR
21 hex "Address in memory or XIP flash of bootloader entry point"
22 help
23 After any reset, the boot ROM on the AM43XX SOC
24 searches the boot media for a valid boot image.
25 For non-XIP devices, the ROM then copies the
26 image into internal memory.
27 For all boot modes, after the ROM processes the
28 boot image it eventually computes the entry
29 point address depending on the device type
30 (secure/non-secure), boot media (xip/non-xip) and
31 image headers.
32 default 0x402F4000
33
34 config PUB_ROM_DATA_SIZE
35 hex "Size in bytes of the L3 SRAM reserved by ROM to store data"
36 help
37 During the device boot, the public ROM uses the top of
38 the public L3 OCMC RAM to store r/w data like stack,
39 heap, globals etc. When the ROM is copying the boot
40 image from the boot media into memory, the image must
41 not spill over into this area. This value can be used
42 during compile time to determine the maximum size of a
43 boot image. Once the ROM transfers control to the boot
44 image, this area is no longer used, and can be reclaimed
45 for run time use by the boot image.
46 default 0x8400
47 endif