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