blob: 7771fc88afebcf9b901f95773bb2da24e8ac28da [file] [log] [blame]
Peng Fan39945c12018-11-20 10:19:25 +00001if ARCH_IMX8M
2
3config IMX8M
4 bool
5 select ROM_UNIFIED_SECTIONS
6
Peng Fanfc9beb32019-08-27 06:24:54 +00007config IMX8MQ
8 bool
9 select IMX8M
10
Peng Fanaff45982019-08-27 06:24:57 +000011config IMX8MM
12 bool
13 select IMX8M
14
Peng Fan64a40d82019-09-16 03:09:12 +000015config IMX8MN
16 bool
17 select IMX8M
18
Peng Fan97869252019-12-27 10:24:54 +080019config IMX8MP
20 bool
21 select IMX8M
22
Peng Fan39945c12018-11-20 10:19:25 +000023config SYS_SOC
24 default "imx8m"
25
Peng Fanaeb9c062018-11-20 10:20:00 +000026choice
27 prompt "NXP i.MX8M board select"
28 optional
29
30config TARGET_IMX8MQ_EVK
31 bool "imx8mq_evk"
Peng Fanfc9beb32019-08-27 06:24:54 +000032 select IMX8MQ
Peng Fanaeb9c062018-11-20 10:20:00 +000033 select IMX8M_LPDDR4
34
Alifer Moraesa0a29482020-03-06 07:46:33 -030035config TARGET_IMX8MQ_PHANBELL
36 bool "imx8mq_phanbell"
37 select IMX8MQ
38 select IMX8M_LPDDR4
39
Peng Fanf9220172019-08-27 06:26:08 +000040config TARGET_IMX8MM_EVK
41 bool "imx8mm LPDDR4 EVK board"
42 select IMX8MM
43 select SUPPORT_SPL
44 select IMX8M_LPDDR4
45
Peng Fana181afe2019-09-16 03:09:55 +000046config TARGET_IMX8MN_EVK
47 bool "imx8mn DDR4 EVK board"
48 select IMX8MN
49 select SUPPORT_SPL
50 select IMX8M_DDR4
51
Peng Fanc47e09d2019-12-30 17:46:21 +080052config TARGET_IMX8MP_EVK
53 bool "imx8mp LPDDR4 EVK board"
54 select IMX8MP
55 select SUPPORT_SPL
56 select IMX8M_LPDDR4
57
Marek Vasut0f97ed02020-04-29 20:09:08 +020058config TARGET_PICO_IMX8MQ
59 bool "Support Technexion Pico iMX8MQ"
60 select IMX8MQ
61 select IMX8M_LPDDR4
62
Igor Opaniuk309e65b2020-01-28 14:42:25 +010063config TARGET_VERDIN_IMX8MM
64 bool "Support Toradex Verdin iMX8M Mini module"
65 select IMX8MM
66 select SUPPORT_SPL
67 select IMX8M_LPDDR4
68
Adam Ford14879032020-05-03 08:11:33 -050069config TARGET_IMX8MM_BEACON
70 bool "imx8mm Beacon Embedded devkit"
71 select IMX8MM
72 select SUPPORT_SPL
73 select IMX8M_LPDDR4
74
Peng Fanaeb9c062018-11-20 10:20:00 +000075endchoice
76
77source "board/freescale/imx8mq_evk/Kconfig"
Peng Fanf9220172019-08-27 06:26:08 +000078source "board/freescale/imx8mm_evk/Kconfig"
Peng Fana181afe2019-09-16 03:09:55 +000079source "board/freescale/imx8mn_evk/Kconfig"
Peng Fanc47e09d2019-12-30 17:46:21 +080080source "board/freescale/imx8mp_evk/Kconfig"
Alifer Moraesa0a29482020-03-06 07:46:33 -030081source "board/google/imx8mq_phanbell/Kconfig"
Marek Vasut0f97ed02020-04-29 20:09:08 +020082source "board/technexion/pico-imx8mq/Kconfig"
Igor Opaniuk309e65b2020-01-28 14:42:25 +010083source "board/toradex/verdin-imx8mm/Kconfig"
Adam Ford14879032020-05-03 08:11:33 -050084source "board/beacon/imx8mm/Kconfig"
Peng Fanaeb9c062018-11-20 10:20:00 +000085
Peng Fan39945c12018-11-20 10:19:25 +000086endif