• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1if ARCH_IMX8M
2
3config IMX8M
4	bool
5	select ROM_UNIFIED_SECTIONS
6
7config IMX8MQ
8	bool
9	select IMX8M
10
11config IMX8MM
12	bool
13	select IMX8M
14
15config IMX8MN
16	bool
17	select IMX8M
18
19config SYS_SOC
20	default "imx8m"
21
22choice
23	prompt  "NXP i.MX8M board select"
24	optional
25
26config TARGET_IMX8MQ_EVK
27	bool "imx8mq_evk"
28	select IMX8MQ
29	select IMX8M_LPDDR4
30
31config TARGET_IMX8MM_EVK
32	bool "imx8mm LPDDR4 EVK board"
33	select IMX8MM
34	select SUPPORT_SPL
35	select IMX8M_LPDDR4
36
37config TARGET_IMX8MN_EVK
38	bool "imx8mn DDR4 EVK board"
39	select IMX8MN
40	select SUPPORT_SPL
41	select IMX8M_DDR4
42
43endchoice
44
45source "board/freescale/imx8mq_evk/Kconfig"
46source "board/freescale/imx8mm_evk/Kconfig"
47source "board/freescale/imx8mn_evk/Kconfig"
48
49endif
50