blob: f5e45ae84679a304157ec12892cbaf11dcfff82b [file] [log] [blame]
Stefan Agnerc5343d42018-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 Agnerc5343d42018-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 Agnerc5343d42018-02-06 09:44:34 +010029
30endif
Stefan Agner25c5b4e2018-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 Agner25c5b4e2018-02-06 09:44:35 +010042config TARGET_MX28EVK
43 bool "Support mx28evk"
44 select BOARD_EARLY_INIT_F
45
Lukasz Majewski010e58d2019-12-08 22:06:56 +010046config TARGET_XEA
47 bool "Support XEA"
48
Stefan Agner25c5b4e2018-02-06 09:44:35 +010049endchoice
50
51config SYS_SOC
52 default "mxs"
53
Lukasz Majewski1c3c6012023-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
Lukasz Majewski249a3cc2023-05-09 16:32:40 +020062config SPL_MXS_PMU_DISABLE_BATT_CHARGE
63 bool "Disable Battery Charging in MX28 PMU"
64 default n
65
Stefan Agner25c5b4e2018-02-06 09:44:35 +010066source "board/freescale/mx28evk/Kconfig"
Lukasz Majewski010e58d2019-12-08 22:06:56 +010067source "board/liebherr/xea/Kconfig"
Stefan Agner25c5b4e2018-02-06 09:44:35 +010068
69endif