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 DM_MMC 31 select BLK 32 select DM_REGULATOR 33 select MX53 34 imply CMD_DM 35 36config TARGET_M53MENLO 37 bool "Support m53menlo" 38 select MX53 39 select SUPPORT_SPL 40 41config TARGET_MX51EVK 42 bool "Support mx51evk" 43 select BOARD_LATE_INIT 44 select MX51 45 46config TARGET_MX53CX9020 47 bool "Support CX9020" 48 select BOARD_LATE_INIT 49 select DM 50 select DM_SERIAL 51 select MX53 52 imply CMD_DM 53 54config TARGET_MX53LOCO 55 bool "Support mx53loco" 56 select BOARD_LATE_INIT 57 select MX53 58 59config TARGET_MX53PPD 60 bool "Support mx53ppd" 61 select MX53 62 help 63 Enable support for the GE Healthcare PPD. 64 65config TARGET_USBARMORY 66 bool "Support USB armory" 67 select MX53 68 69endchoice 70 71config SYS_SOC 72 default "mx5" 73 74source "board/beckhoff/mx53cx9020/Kconfig" 75source "board/freescale/mx51evk/Kconfig" 76source "board/freescale/mx53loco/Kconfig" 77source "board/ge/mx53ppd/Kconfig" 78source "board/inversepath/usbarmory/Kconfig" 79source "board/k+p/kp_imx53/Kconfig" 80source "board/menlo/m53menlo/Kconfig" 81 82endif 83