blob: ef37c351d04631f9007e64d06b99b2695ff06aa0 [file] [log] [blame]
Andrej Rosano424ee3d2015-04-08 18:56:29 +02001if ARCH_MX5
2
3config MX5
4 bool
5 default y
6
7config MX51
8 bool
9
10config MX53
11 bool
12
Andrej Rosano3bf801a2015-04-08 18:56:30 +020013choice
14 prompt "MX5 board select"
Joe Hershbergera26cd042015-05-12 14:46:23 -050015 optional
Andrej Rosano3bf801a2015-04-08 18:56:30 +020016
Tom Rini29ec6852017-04-29 19:20:27 -040017config TARGET_M53EVK
18 bool "Support m53evk"
19 select MX53
20 select SUPPORT_SPL
21
22config TARGET_MX51EVK
23 bool "Support mx51evk"
24 select BOARD_LATE_INIT
25 select MX51
26
27config TARGET_MX53ARD
28 bool "Support mx53ard"
29 select MX53
Andrej Rosano3bf801a2015-04-08 18:56:30 +020030
Patrick Bruenn98d62e62016-11-04 11:57:02 +010031config TARGET_MX53CX9020
32 bool "Support CX9020"
Tom Rinie5ec4812017-01-22 19:43:11 -050033 select BOARD_LATE_INIT
Patrick Bruenn98d62e62016-11-04 11:57:02 +010034 select MX53
35 select DM
36 select DM_SERIAL
37
Tom Rini29ec6852017-04-29 19:20:27 -040038config TARGET_MX53EVK
39 bool "Support mx53evk"
40 select BOARD_LATE_INIT
41 select MX53
42
43config TARGET_MX53LOCO
44 bool "Support mx53loco"
45 select BOARD_LATE_INIT
46 select MX53
47
48config TARGET_MX53SMD
49 bool "Support mx53smd"
50 select MX53
51
52config TARGET_TS4800
53 bool "Support TS4800"
54 select MX51
55 select SYS_FSL_ERRATUM_ESDHC_A001
56
57config TARGET_USBARMORY
58 bool "Support USB armory"
59 select MX53
60
Andrej Rosano3bf801a2015-04-08 18:56:30 +020061endchoice
62
Andrej Rosano424ee3d2015-04-08 18:56:29 +020063config SYS_SOC
64 default "mx5"
65
Tom Rini29ec6852017-04-29 19:20:27 -040066source "board/aries/m53evk/Kconfig"
Patrick Bruenn98d62e62016-11-04 11:57:02 +010067source "board/beckhoff/mx53cx9020/Kconfig"
Tom Rini29ec6852017-04-29 19:20:27 -040068source "board/freescale/mx51evk/Kconfig"
69source "board/freescale/mx53ard/Kconfig"
70source "board/freescale/mx53evk/Kconfig"
71source "board/freescale/mx53loco/Kconfig"
72source "board/freescale/mx53smd/Kconfig"
Andrej Rosano3bf801a2015-04-08 18:56:30 +020073source "board/inversepath/usbarmory/Kconfig"
Tom Rini29ec6852017-04-29 19:20:27 -040074source "board/technologic/ts4800/Kconfig"
Andrej Rosano3bf801a2015-04-08 18:56:30 +020075
Andrej Rosano424ee3d2015-04-08 18:56:29 +020076endif