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