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_MX53SMD 50 bool "Support mx53smd" 51 select MX53 52 53config TARGET_TS4800 54 bool "Support TS4800" 55 select MX51 56 57config TARGET_USBARMORY 58 bool "Support USB armory" 59 select MX53 60 61endchoice 62 63config SYS_SOC 64 default "mx5" 65 66source "board/aries/m53evk/Kconfig" 67source "board/beckhoff/mx53cx9020/Kconfig" 68source "board/freescale/mx51evk/Kconfig" 69source "board/freescale/mx53ard/Kconfig" 70source "board/freescale/mx53evk/Kconfig" 71source "board/freescale/mx53loco/Kconfig" 72source "board/freescale/mx53smd/Kconfig" 73source "board/inversepath/usbarmory/Kconfig" 74source "board/technologic/ts4800/Kconfig" 75 76endif 77