aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-imx/mxs/Kconfig
blob: d2e4205c5ce56128d3173ea9f64f5996014029c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
if ARCH_MX23

config MX23
	bool
	default y

choice
	prompt "MX23 board select"
	optional

config TARGET_MX23_OLINUXINO
	bool "Support mx23_olinuxino"
	select PL01X_SERIAL
	select BOARD_EARLY_INIT_F

config TARGET_MX23EVK
	bool "Support mx23evk"
	select PL01X_SERIAL
	select BOARD_EARLY_INIT_F

endchoice

config SYS_SOC
	default "mxs"

source "board/olimex/mx23_olinuxino/Kconfig"
source "board/freescale/mx23evk/Kconfig"

endif

if ARCH_MX28

config MX28
	bool
	default y

choice
	prompt "MX28 board select"
	optional

config TARGET_MX28EVK
	bool "Support mx28evk"
	select PL01X_SERIAL
	select BOARD_EARLY_INIT_F

config TARGET_XEA
	bool "Support XEA"
	select PL01X_SERIAL

endchoice

config SYS_SOC
	default "mxs"

config SPL_MXS_PMU_MINIMAL_VDD5V_CURRENT
	bool "Force minimal current draw from VDD5V by MX28 PMU"
	help
	  After setting this option, the current drawn from VDD5V
	  by the PMU is reduced to zero - the DCDC_BATT is used as
	  the main power source for PMU.

config SPL_MXS_PMU_DISABLE_BATT_CHARGE
	bool "Disable Battery Charging in MX28 PMU"

config SPL_MXS_PMU_ENABLE_4P2_LINEAR_REGULATOR
	bool "Enable the 4P2 linear regulator in MX28 PMU"
	default y
	help
	  This option enables the 4P2 linear regulator (derived
	  from VDD5V) - so the VDD4P2 power source is operational.

source "board/freescale/mx28evk/Kconfig"
source "board/liebherr/xea/Kconfig"

endif