diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/arch/arm/mach-imx/mx5/Kconfig | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/arch/arm/mach-imx/mx5/Kconfig')
-rw-r--r-- | roms/u-boot/arch/arm/mach-imx/mx5/Kconfig | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/roms/u-boot/arch/arm/mach-imx/mx5/Kconfig b/roms/u-boot/arch/arm/mach-imx/mx5/Kconfig new file mode 100644 index 000000000..580b45818 --- /dev/null +++ b/roms/u-boot/arch/arm/mach-imx/mx5/Kconfig @@ -0,0 +1,83 @@ +if ARCH_MX5 + +config MX5 + bool + default y + select GPT_TIMER + +config MX51 + bool + select ARM_CORTEX_A8_CVE_2017_5715 + select SYS_FSL_ERRATUM_ESDHC_A001 + +config MX53 + bool + select ARM_CORTEX_A8_CVE_2017_5715 + +choice + prompt "MX5 board select" + optional + +config TARGET_KP_IMX53 + bool "Support K+P imx53 board" + select BOARD_LATE_INIT + select DM + select DM_ETH + select DM_GPIO + select DM_I2C + select DM_PMIC + select DM_SERIAL + select DM_MMC + select BLK + select DM_USB + select DM_REGULATOR + select MX53 + imply CMD_DM + +config TARGET_M53MENLO + bool "Support m53menlo" + select MX53 + select SUPPORT_SPL + +config TARGET_MX51EVK + bool "Support mx51evk" + select BOARD_LATE_INIT + select MX51 + +config TARGET_MX53CX9020 + bool "Support CX9020" + select BOARD_LATE_INIT + select DM + select DM_SERIAL + select MX53 + imply CMD_DM + +config TARGET_MX53LOCO + bool "Support mx53loco" + select BOARD_LATE_INIT + select MX53 + +config TARGET_MX53PPD + bool "Support mx53ppd" + select MX53 + help + Enable support for the GE Healthcare PPD. + +config TARGET_USBARMORY + bool "Support USB armory" + select MX53 + +endchoice + +config SYS_SOC + default "mx5" + +source "board/beckhoff/mx53cx9020/Kconfig" +source "board/freescale/mx51evk/Kconfig" +source "board/freescale/mx53loco/Kconfig" +source "board/ge/mx53ppd/Kconfig" +source "board/inversepath/usbarmory/Kconfig" +source "board/k+p/kp_imx53/Kconfig" +source "board/menlo/m53menlo/Kconfig" + +endif |