summaryrefslogtreecommitdiff
path: root/arch/arm/mach-imx/mx5/Kconfig
blob: 4ee7f6b2d422274360e10420f3d29bb093b5f801 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
if ARCH_MX5

config MX5
	bool
	default y
	select GPT_TIMER

config MX51
	bool
	select ARM_CORTEX_A8_CVE_2017_5715
	select SYS_FSL_ERRATUM_ESDHC_A001

config MX53
	bool
	select ARM_CORTEX_A8_CVE_2017_5715

choice
	prompt "MX5 board select"
	optional

config TARGET_KP_IMX53
	bool "Support K+P imx53 board"
	select BOARD_LATE_INIT
	select DM
	select DM_ETH
	select DM_GPIO
	select DM_I2C
	select DM_PMIC
	select DM_SERIAL
	select DM_MMC
	select BLK
	select DM_USB
	select DM_REGULATOR
	select MX53
	imply CMD_DM

config TARGET_M53MENLO
	bool "Support m53menlo"
	select MX53
	select SUPPORT_SPL

config TARGET_MX51EVK
	bool "Support mx51evk"
	select BOARD_LATE_INIT
	select MX51

config TARGET_MX53CX9020
	bool "Support CX9020"
	select BOARD_LATE_INIT
	select DM
	select DM_SERIAL
	select MX53
	imply CMD_DM

config TARGET_MX53EVK
	bool "Support mx53evk"
	select BOARD_LATE_INIT
	select MX53

config TARGET_MX53LOCO
	bool "Support mx53loco"
	select BOARD_LATE_INIT
	select MX53

config TARGET_MX53PPD
	bool "Support mx53ppd"
	select MX53
	help
	  Enable support for the GE Healthcare PPD.

config TARGET_TS4800
	bool "Support TS4800"
	select MX51

config TARGET_USBARMORY
	bool "Support USB armory"
	select MX53

endchoice

config SYS_SOC
	default "mx5"

source "board/beckhoff/mx53cx9020/Kconfig"
source "board/freescale/mx51evk/Kconfig"
source "board/freescale/mx53evk/Kconfig"
source "board/freescale/mx53loco/Kconfig"
source "board/ge/mx53ppd/Kconfig"
source "board/inversepath/usbarmory/Kconfig"
source "board/k+p/kp_imx53/Kconfig"
source "board/menlo/m53menlo/Kconfig"
source "board/technologic/ts4800/Kconfig"

endif