u-boot/arch/arm/mach-imx/imxrt/Kconfig
Jesse Taube 67e2df581c imx: imxrt1170-evk: Add support for the NXP i.MXRT1170-EVK
This commit adds board support for i.MXRT1170-EVK from NXP. This board
is an evaluation kit provided by NXP for i.MXRT117x processor family.

Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
2022-09-18 20:42:56 +02:00

44 lines
675 B
Text

if ARCH_IMXRT
config IMXRT
bool
select SYS_FSL_ERRATUM_ESDHC135
config IMXRT1020
bool
select IMXRT
config IMXRT1050
bool
select IMXRT
config IMXRT1170
bool
select IMXRT
config SYS_SOC
default "imxrt"
choice
prompt "NXP i.MXRT board select"
optional
config TARGET_IMXRT1020_EVK
bool "Support imxrt1020 EVK board"
select IMXRT1020
config TARGET_IMXRT1050_EVK
bool "Support imxrt1050 EVK board"
select IMXRT1050
config TARGET_IMXRT1170_EVK
bool "Support imxrt1170 EVK board"
select IMXRT1170
endchoice
source "board/freescale/imxrt1020-evk/Kconfig"
source "board/freescale/imxrt1050-evk/Kconfig"
source "board/freescale/imxrt1170-evk/Kconfig"
endif