mx5: Select ARM_CORTEX_A8_CVE_2017_5715
[oweals/u-boot.git] / arch / arm / mach-imx / mx5 / Kconfig
1 if ARCH_MX5
2
3 config MX5
4         select GPT_TIMER
5         bool
6         default y
7
8 config MX51
9         bool
10         select SYS_FSL_ERRATUM_ESDHC_A001
11         select ARM_CORTEX_A8_CVE_2017_5715
12
13 config MX53
14         bool
15         select ARM_CORTEX_A8_CVE_2017_5715
16
17 choice
18         prompt "MX5 board select"
19         optional
20
21 config TARGET_KP_IMX53
22         bool "Support K+P imx53 board"
23         select BOARD_LATE_INIT
24         select MX53
25         select DM
26         select DM_SERIAL
27         select DM_ETH
28         select DM_I2C
29         select DM_GPIO
30         select DM_PMIC
31
32 config TARGET_M53EVK
33         bool "Support m53evk"
34         select MX53
35         select SUPPORT_SPL
36
37 config TARGET_MX51EVK
38         bool "Support mx51evk"
39         select BOARD_LATE_INIT
40         select MX51
41
42 config TARGET_MX53ARD
43         bool "Support mx53ard"
44         select MX53
45
46 config TARGET_MX53CX9020
47         bool "Support CX9020"
48         select BOARD_LATE_INIT
49         select MX53
50         select DM
51         select DM_SERIAL
52
53 config TARGET_MX53EVK
54         bool "Support mx53evk"
55         select BOARD_LATE_INIT
56         select MX53
57
58 config TARGET_MX53LOCO
59         bool "Support mx53loco"
60         select BOARD_LATE_INIT
61         select MX53
62
63 config TARGET_MX53PPD
64         bool "Support mx53ppd"
65         select MX53
66         help
67           Enable support for the GE Healthcare PPD.
68
69 config TARGET_MX53SMD
70         bool "Support mx53smd"
71         select MX53
72
73 config TARGET_TS4800
74         bool "Support TS4800"
75         select MX51
76
77 config TARGET_USBARMORY
78         bool "Support USB armory"
79         select MX53
80
81 endchoice
82
83 config SYS_SOC
84         default "mx5"
85
86 source "board/aries/m53evk/Kconfig"
87 source "board/beckhoff/mx53cx9020/Kconfig"
88 source "board/freescale/mx51evk/Kconfig"
89 source "board/freescale/mx53ard/Kconfig"
90 source "board/freescale/mx53evk/Kconfig"
91 source "board/freescale/mx53loco/Kconfig"
92 source "board/freescale/mx53smd/Kconfig"
93 source "board/ge/mx53ppd/Kconfig"
94 source "board/inversepath/usbarmory/Kconfig"
95 source "board/k+p/kp_imx53/Kconfig"
96 source "board/technologic/ts4800/Kconfig"
97
98 endif