blob: 3232b0fb677ccda4760f85abaa89e3546f492f4d [file] [log] [blame]
Stefan Agner081ea1f2018-02-06 09:44:34 +01001if ARCH_MX23
2
3config MX23
4 bool
5 default y
6
7choice
8 prompt "MX23 board select"
9 optional
10
11config TARGET_MX23_OLINUXINO
12 bool "Support mx23_olinuxino"
13 select BOARD_EARLY_INIT_F
14
15config TARGET_MX23EVK
16 bool "Support mx23evk"
17 select BOARD_EARLY_INIT_F
18
Stefan Agner081ea1f2018-02-06 09:44:34 +010019config TARGET_XFI3
20 bool "Support xfi3"
21
22endchoice
23
24config SYS_SOC
25 default "mxs"
26
27source "board/olimex/mx23_olinuxino/Kconfig"
28source "board/freescale/mx23evk/Kconfig"
Stefan Agner081ea1f2018-02-06 09:44:34 +010029
30endif
Stefan Agner663a3232018-02-06 09:44:35 +010031
32if ARCH_MX28
33
34config MX28
35 bool
36 default y
37
38choice
39 prompt "MX28 board select"
40 optional
41
Stefan Agner663a3232018-02-06 09:44:35 +010042config TARGET_MX28EVK
43 bool "Support mx28evk"
44 select BOARD_EARLY_INIT_F
45
Lukasz Majewskif3adb662019-12-08 22:06:56 +010046config TARGET_XEA
47 bool "Support XEA"
48
Stefan Agner663a3232018-02-06 09:44:35 +010049endchoice
50
51config SYS_SOC
52 default "mxs"
53
Lukasz Majewskia4e62672023-05-09 16:32:39 +020054config SPL_MXS_PMU_MINIMAL_VDD5V_CURRENT
55 bool "Force minimal current draw from VDD5V by MX28 PMU"
56 default n
57 help
58 After setting this option, the current drawn from VDD5V
59 by the PMU is reduced to zero - the DCDC_BATT is used as
60 the main power source for PMU.
61
Stefan Agner663a3232018-02-06 09:44:35 +010062source "board/freescale/mx28evk/Kconfig"
Lukasz Majewskif3adb662019-12-08 22:06:56 +010063source "board/liebherr/xea/Kconfig"
Stefan Agner663a3232018-02-06 09:44:35 +010064
65endif