arm: am57xx: cl-som-am57x: add initial board support
[platform/kernel/u-boot.git] / arch / arm / mach-omap2 / omap5 / Kconfig
1 if OMAP54XX
2
3 config SPL_EXT_SUPPORT
4         default y
5
6 config SPL_FAT_SUPPORT
7         default y
8
9 config SPL_GPIO_SUPPORT
10         default y
11
12 config SPL_I2C_SUPPORT
13         default y
14
15 config SPL_LIBCOMMON_SUPPORT
16         default y
17
18 config SPL_LIBDISK_SUPPORT
19         default y
20
21 config SPL_LIBGENERIC_SUPPORT
22         default y
23
24 config SPL_MMC_SUPPORT
25         default y
26
27 config SPL_NAND_SUPPORT
28         default y
29
30 config SPL_POWER_SUPPORT
31         default y
32
33 config SPL_SERIAL_SUPPORT
34         default y
35
36 config SPL_DISPLAY_PRINT
37         default y
38
39 choice
40         prompt "OMAP5 board select"
41         optional
42
43 config TARGET_CL_SOM_AM57X
44         bool "CompuLab CL-SOM-AM57x"
45
46 config TARGET_CM_T54
47         bool "CompuLab CM-T54"
48
49 config TARGET_OMAP5_UEVM
50         bool "TI OMAP5 uEVM board"
51
52 config TARGET_DRA7XX_EVM
53         bool "TI DRA7XX"
54         select TI_I2C_BOARD_DETECT
55         select PHYS_64BIT
56
57 config TARGET_AM57XX_EVM
58         bool "AM57XX"
59         select TI_I2C_BOARD_DETECT
60
61 endchoice
62
63 config SYS_SOC
64         default "omap5"
65
66 config TI_SECURE_EMIF_REGION_START
67         hex "Reserved EMIF region start address"
68         depends on TI_SECURE_DEVICE
69         default 0x0
70         help
71           Reserved EMIF region start address. Set to "0" to auto-select
72           to be at the end of the external memory region.
73
74 config TI_SECURE_EMIF_TOTAL_REGION_SIZE
75         hex "Reserved EMIF region size"
76         depends on TI_SECURE_DEVICE
77         default 0x0
78         help
79           Total reserved EMIF region size. Default is 0, which means no reserved EMIF
80           region on secure devices.
81
82 config TI_SECURE_EMIF_PROTECTED_REGION_SIZE
83         hex "Size of protected region within reserved EMIF region"
84         depends on TI_SECURE_DEVICE
85         default 0x0
86         help
87           This config option is used to specify the size of the portion of the total
88           reserved EMIF region set aside for secure OS needs that will  be protected
89           using hardware memory firewalls. This value must be smaller than the
90           TI_SECURE_EMIF_TOTAL_REGION_SIZE value.
91
92 if TARGET_DRA7XX_EVM || TARGET_AM57XX_EVM
93 menu "Voltage Domain OPP selections"
94
95 choice
96         prompt "MPU Voltage Domain"
97         default DRA7_MPU_OPP_NOM
98         help
99           Select the Operating Performance Point(OPP) for the MPU voltage
100           domain on DRA7xx & AM57xx SoCs.
101
102 config DRA7_MPU_OPP_NOM
103         bool "OPP NOM"
104         help
105           This config option enables Normal OPP for MPU. This is the safest
106           option for booting.
107
108 endchoice
109
110 choice
111         prompt "DSPEVE Voltage Domain"
112         help
113           Select the Operating Performance Point(OPP) for the DSPEVE voltage
114           domain on DRA7xx & AM57xx SoCs.
115
116 config DRA7_DSPEVE_OPP_NOM
117         bool "OPP NOM"
118         help
119           This config option enables Normal OPP for DSPEVE. This is the safest
120           option for booting and choose this when unsure about other OPPs .
121
122 config DRA7_DSPEVE_OPP_OD
123         bool "OPP OD"
124         help
125           This config option enables Over drive OPP for DSPEVE.
126
127 config DRA7_DSPEVE_OPP_HIGH
128         bool "OPP HIGH"
129         help
130           This config option enables High OPP for DSPEVE.
131
132 endchoice
133
134 choice
135         prompt "IVA Voltage Domain"
136         help
137           Select the Operating Performance Point(OPP) for the IVA voltage
138           domain on DRA7xx & AM57xx SoCs.
139
140 config DRA7_IVA_OPP_NOM
141         bool "OPP NOM"
142         help
143           This config option enables Normal OPP for IVA. This is the safest
144           option for booting and choose this when unsure about other OPPs .
145
146 config DRA7_IVA_OPP_OD
147         bool "OPP OD"
148         help
149           This config option enables Over drive OPP for IVA.
150
151 config DRA7_IVA_OPP_HIGH
152         bool "OPP HIGH"
153         help
154           This config option enables High OPP for IVA.
155
156 endchoice
157
158 choice
159         prompt "GPU Voltage Domain"
160         help
161           Select the Operating Performance Point(OPP) for the GPU voltage
162           domain on DRA7xx & AM57xx SoCs.
163
164 config DRA7_GPU_OPP_NOM
165         bool "OPP NOM"
166         help
167           This config option enables Normal OPP for GPU. This is the safest
168           option for booting and choose this when unsure about other OPPs .
169
170 config DRA7_GPU_OPP_OD
171         bool "OPP OD"
172         help
173           This config option enables Over drive OPP for GPU.
174
175 config DRA7_GPU_OPP_HIGH
176         bool "OPP HIGH"
177         help
178           This config option enables High OPP for GPU.
179
180 endchoice
181
182 endmenu
183 endif
184
185 source "board/compulab/cl-som-am57x/Kconfig"
186 source "board/compulab/cm_t54/Kconfig"
187 source "board/ti/omap5_uevm/Kconfig"
188 source "board/ti/dra7xx/Kconfig"
189 source "board/ti/am57xx/Kconfig"
190
191 endif