]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/armv7/omap5/Kconfig
spl: Kconfig: Move SPL_DISPLAY_PRINT to Kconfig
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / omap5 / Kconfig
CommitLineData
6c5431ac
MY
1if OMAP54XX
2
75eba2c4
SG
3config SPL_EXT_SUPPORT
4 default y
5
ae56db5f
SG
6config SPL_FAT_SUPPORT
7 default y
8
53b5bf3c
SG
9config SPL_GPIO_SUPPORT
10 default y
11
9c21df15
SG
12config SPL_I2C_SUPPORT
13 default y
14
77d2f7f5
SG
15config SPL_LIBCOMMON_SUPPORT
16 default y
17
1646eba8
SG
18config SPL_LIBDISK_SUPPORT
19 default y
20
cc4288ef
SG
21config SPL_LIBGENERIC_SUPPORT
22 default y
23
1fdf7c64
SG
24config SPL_MMC_SUPPORT
25 default y
26
d6b9bd89
SG
27config SPL_NAND_SUPPORT
28 default y
29
2253797d
SG
30config SPL_POWER_SUPPORT
31 default y
32
e00f76ce
SG
33config SPL_SERIAL_SUPPORT
34 default y
35
a807ab33
SG
36config SPL_DISPLAY_PRINT
37 default y
38
6c5431ac
MY
39choice
40 prompt "OMAP5 board select"
a26cd049 41 optional
6c5431ac
MY
42
43config TARGET_CM_T54
44 bool "CompuLab CM-T54"
45
46config TARGET_OMAP5_UEVM
47 bool "TI OMAP5 uEVM board"
48
49config TARGET_DRA7XX_EVM
50 bool "TI DRA7XX"
25afe55d 51 select TI_I2C_BOARD_DETECT
bb6b142f 52 select PHYS_64BIT
6c5431ac 53
165bd7a1
LV
54config TARGET_AM57XX_EVM
55 bool "AM57XX"
212f96f6 56 select TI_I2C_BOARD_DETECT
1e4ad74b 57
6c5431ac
MY
58endchoice
59
6c5431ac 60config SYS_SOC
6c5431ac
MY
61 default "omap5"
62
4c854b61
DA
63config TI_SECURE_EMIF_REGION_START
64 hex "Reserved EMIF region start address"
65 depends on TI_SECURE_DEVICE
66 default 0x0
67 help
68 Reserved EMIF region start address. Set to "0" to auto-select
69 to be at the end of the external memory region.
70
71config TI_SECURE_EMIF_TOTAL_REGION_SIZE
72 hex "Reserved EMIF region size"
73 depends on TI_SECURE_DEVICE
74 default 0x0
75 help
76 Total reserved EMIF region size. Default is 0, which means no reserved EMIF
77 region on secure devices.
78
79config TI_SECURE_EMIF_PROTECTED_REGION_SIZE
80 hex "Size of protected region within reserved EMIF region"
81 depends on TI_SECURE_DEVICE
82 default 0x0
83 help
84 This config option is used to specify the size of the portion of the total
85 reserved EMIF region set aside for secure OS needs that will be protected
86 using hardware memory firewalls. This value must be smaller than the
87 TI_SECURE_EMIF_TOTAL_REGION_SIZE value.
88
6c5431ac
MY
89source "board/compulab/cm_t54/Kconfig"
90source "board/ti/omap5_uevm/Kconfig"
91source "board/ti/dra7xx/Kconfig"
74cc8b09 92source "board/ti/am57xx/Kconfig"
6c5431ac
MY
93
94endif