1if ARCH_IMXRT
2
3config IMXRT
4	bool
5	select SYS_FSL_ERRATUM_ESDHC135
6
7config IMXRT1020
8	bool
9	select IMXRT
10
11config IMXRT1050
12	bool
13	select IMXRT
14
15config IMXRT1170
16	bool
17	select IMXRT
18
19config SYS_SOC
20	default "imxrt"
21
22choice
23	prompt "NXP i.MXRT board select"
24	optional
25
26config TARGET_IMXRT1020_EVK
27	bool "Support imxrt1020 EVK board"
28	select IMXRT1020
29
30config TARGET_IMXRT1050_EVK
31	bool "Support imxrt1050 EVK board"
32	select IMXRT1050
33
34config TARGET_IMXRT1170_EVK
35	bool "Support imxrt1170 EVK board"
36	select IMXRT1170
37
38endchoice
39
40source "board/freescale/imxrt1020-evk/Kconfig"
41source "board/freescale/imxrt1050-evk/Kconfig"
42source "board/freescale/imxrt1170-evk/Kconfig"
43
44endif
45