1if ARCH_MX5 2 3config MX5 4 bool 5 default y 6 7config MX51 8 bool 9 select SYS_FSL_ERRATUM_ESDHC_A001 10 11config MX53 12 bool 13 14choice 15 prompt "MX5 board select" 16 optional 17 18config TARGET_M53EVK 19 bool "Support m53evk" 20 select MX53 21 select SUPPORT_SPL 22 23config TARGET_MX51EVK 24 bool "Support mx51evk" 25 select BOARD_LATE_INIT 26 select MX51 27 28config TARGET_MX53ARD 29 bool "Support mx53ard" 30 select MX53 31 32config TARGET_MX53CX9020 33 bool "Support CX9020" 34 select BOARD_LATE_INIT 35 select MX53 36 select DM 37 select DM_SERIAL 38 39config TARGET_MX53EVK 40 bool "Support mx53evk" 41 select BOARD_LATE_INIT 42 select MX53 43 44config TARGET_MX53LOCO 45 bool "Support mx53loco" 46 select BOARD_LATE_INIT 47 select MX53 48 49config TARGET_MX53PPD 50 bool "Support mx53ppd" 51 select MX53 52 help 53 Enable support for the GE Healthcare PPD. 54 55config TARGET_MX53SMD 56 bool "Support mx53smd" 57 select MX53 58 59config TARGET_TS4800 60 bool "Support TS4800" 61 select MX51 62 63config TARGET_USBARMORY 64 bool "Support USB armory" 65 select MX53 66 67endchoice 68 69config SYS_SOC 70 default "mx5" 71 72source "board/aries/m53evk/Kconfig" 73source "board/beckhoff/mx53cx9020/Kconfig" 74source "board/freescale/mx51evk/Kconfig" 75source "board/freescale/mx53ard/Kconfig" 76source "board/freescale/mx53evk/Kconfig" 77source "board/freescale/mx53loco/Kconfig" 78source "board/freescale/mx53smd/Kconfig" 79source "board/ge/mx53ppd/Kconfig" 80source "board/inversepath/usbarmory/Kconfig" 81source "board/technologic/ts4800/Kconfig" 82 83endif 84