]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/arm/mach-imx/imx8m/Kconfig
imx: add i.MX8MN DDR4 board support
[thirdparty/u-boot.git] / arch / arm / mach-imx / imx8m / Kconfig
1 if ARCH_IMX8M
2
3 config IMX8M
4 bool
5 select ROM_UNIFIED_SECTIONS
6
7 config IMX8MQ
8 bool
9 select IMX8M
10
11 config IMX8MM
12 bool
13 select IMX8M
14
15 config IMX8MN
16 bool
17 select IMX8M
18
19 config SYS_SOC
20 default "imx8m"
21
22 choice
23 prompt "NXP i.MX8M board select"
24 optional
25
26 config TARGET_IMX8MQ_EVK
27 bool "imx8mq_evk"
28 select IMX8MQ
29 select IMX8M_LPDDR4
30
31 config TARGET_IMX8MM_EVK
32 bool "imx8mm LPDDR4 EVK board"
33 select IMX8MM
34 select SUPPORT_SPL
35 select IMX8M_LPDDR4
36
37 config TARGET_IMX8MN_EVK
38 bool "imx8mn DDR4 EVK board"
39 select IMX8MN
40 select SUPPORT_SPL
41 select IMX8M_DDR4
42
43 endchoice
44
45 source "board/freescale/imx8mq_evk/Kconfig"
46 source "board/freescale/imx8mm_evk/Kconfig"
47 source "board/freescale/imx8mn_evk/Kconfig"
48
49 endif