]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-omap2/omap5/Kconfig
arm64: dts: sun50i: h5: Order nodes in alphabetic for orangepi-prime
[u-boot] / arch / arm / mach-omap2 / omap5 / Kconfig
1 if OMAP54XX
2
3 config DRA7XX
4         bool
5         help
6           DRA7xx is an OMAP based SOC with Dual Core A-15s.
7
8 choice
9         prompt "OMAP5 board select"
10         optional
11
12 config TARGET_CL_SOM_AM57X
13         bool "CompuLab CL-SOM-AM57x"
14         select DRA7XX
15
16 config TARGET_CM_T54
17         bool "CompuLab CM-T54"
18
19 config TARGET_OMAP5_UEVM
20         bool "TI OMAP5 uEVM board"
21
22 config TARGET_DRA7XX_EVM
23         bool "TI DRA7XX"
24         select BOARD_LATE_INIT
25         select DRA7XX
26         select TI_I2C_BOARD_DETECT
27         select PHYS_64BIT
28         imply SCSI
29         imply DM_PMIC
30         imply PMIC_LP87565
31         imply DM_REGULATOR
32         imply DM_REGULATOR_LP87565
33
34 config TARGET_AM57XX_EVM
35         bool "AM57XX"
36         select BOARD_LATE_INIT
37         select DRA7XX
38         select TI_I2C_BOARD_DETECT
39         imply SCSI
40
41 endchoice
42
43 config SYS_SOC
44         default "omap5"
45
46 config OMAP_PLATFORM_RESET_TIME_MAX_USEC
47         int "Something"
48         range 0  31219
49         default 31219
50         help
51           Most OMAPs' provide a way to specify the time for which the reset
52           should be held low while the voltages and Oscillator outputs
53           stabilize.
54           This time is mostly board and PMIC dependent. Hence the boards are
55           expected to specify a pre-computed time using the above option.
56           This value can be computed using a summation of the below 3
57           parameters
58           1: Time taken by the Osciallator to stop and restart
59           2: PMIC OTP time
60           3: Voltage ramp time, which can be derived using the PMIC slew rate
61              and value of voltage ramp needed.
62
63 if TARGET_DRA7XX_EVM || TARGET_AM57XX_EVM
64 menu "Voltage Domain OPP selections"
65
66 choice
67         prompt "MPU Voltage Domain"
68         default DRA7_MPU_OPP_NOM
69         help
70           Select the Operating Performance Point(OPP) for the MPU voltage
71           domain on DRA7xx & AM57xx SoCs.
72
73 config DRA7_MPU_OPP_NOM
74         bool "OPP NOM"
75         help
76           This config option enables Normal OPP for MPU. This is the safest
77           option for booting.
78
79 endchoice
80
81 choice
82         prompt "DSPEVE Voltage Domain"
83         help
84           Select the Operating Performance Point(OPP) for the DSPEVE voltage
85           domain on DRA7xx & AM57xx SoCs.
86
87 config DRA7_DSPEVE_OPP_NOM
88         bool "OPP NOM"
89         help
90           This config option enables Normal OPP for DSPEVE. This is the safest
91           option for booting and choose this when unsure about other OPPs .
92
93 config DRA7_DSPEVE_OPP_OD
94         bool "OPP OD"
95         help
96           This config option enables Over drive OPP for DSPEVE.
97
98 config DRA7_DSPEVE_OPP_HIGH
99         bool "OPP HIGH"
100         help
101           This config option enables High OPP for DSPEVE.
102
103 endchoice
104
105 choice
106         prompt "IVA Voltage Domain"
107         help
108           Select the Operating Performance Point(OPP) for the IVA voltage
109           domain on DRA7xx & AM57xx SoCs.
110
111 config DRA7_IVA_OPP_NOM
112         bool "OPP NOM"
113         help
114           This config option enables Normal OPP for IVA. This is the safest
115           option for booting and choose this when unsure about other OPPs .
116
117 config DRA7_IVA_OPP_OD
118         bool "OPP OD"
119         help
120           This config option enables Over drive OPP for IVA.
121
122 config DRA7_IVA_OPP_HIGH
123         bool "OPP HIGH"
124         help
125           This config option enables High OPP for IVA.
126
127 endchoice
128
129 choice
130         prompt "GPU Voltage Domain"
131         help
132           Select the Operating Performance Point(OPP) for the GPU voltage
133           domain on DRA7xx & AM57xx SoCs.
134
135 config DRA7_GPU_OPP_NOM
136         bool "OPP NOM"
137         help
138           This config option enables Normal OPP for GPU. This is the safest
139           option for booting and choose this when unsure about other OPPs .
140
141 config DRA7_GPU_OPP_OD
142         bool "OPP OD"
143         help
144           This config option enables Over drive OPP for GPU.
145
146 config DRA7_GPU_OPP_HIGH
147         bool "OPP HIGH"
148         help
149           This config option enables High OPP for GPU.
150
151 endchoice
152
153 endmenu
154 endif
155
156 source "board/compulab/cl-som-am57x/Kconfig"
157 source "board/compulab/cm_t54/Kconfig"
158 source "board/ti/omap5_uevm/Kconfig"
159 source "board/ti/dra7xx/Kconfig"
160 source "board/ti/am57xx/Kconfig"
161
162 endif