blob: 78e4fb6f6c2cd0c82438ea2a19d4c54b5d6e6491 [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 Fan2cae2742020-12-25 16:23:12 +080046config TARGET_IMX8MN_DDR4_EVK
Peng Fana181afe2019-09-16 03:09:55 +000047 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
Teresa Remmet82750c22020-08-21 09:55:53 +020075config TARGET_PHYCORE_IMX8MM
76 bool "PHYTEC PHYCORE i.MX8MM"
77 select IMX8MM
78 select SUPPORT_SPL
79 select IMX8M_LPDDR4
Teresa Remmet30fb74d2021-01-13 16:28:09 +010080
81config TARGET_PHYCORE_IMX8MP
82 bool "PHYTEC PHYCORE i.MX8MP"
83 select IMX8MP
84 select SUPPORT_SPL
85 select IMX8M_LPDDR4
Peng Fanaeb9c062018-11-20 10:20:00 +000086endchoice
87
88source "board/freescale/imx8mq_evk/Kconfig"
Peng Fanf9220172019-08-27 06:26:08 +000089source "board/freescale/imx8mm_evk/Kconfig"
Peng Fana181afe2019-09-16 03:09:55 +000090source "board/freescale/imx8mn_evk/Kconfig"
Peng Fanc47e09d2019-12-30 17:46:21 +080091source "board/freescale/imx8mp_evk/Kconfig"
Alifer Moraesa0a29482020-03-06 07:46:33 -030092source "board/google/imx8mq_phanbell/Kconfig"
Marek Vasut0f97ed02020-04-29 20:09:08 +020093source "board/technexion/pico-imx8mq/Kconfig"
Igor Opaniuk309e65b2020-01-28 14:42:25 +010094source "board/toradex/verdin-imx8mm/Kconfig"
Adam Ford14879032020-05-03 08:11:33 -050095source "board/beacon/imx8mm/Kconfig"
Teresa Remmet82750c22020-08-21 09:55:53 +020096source "board/phytec/phycore_imx8mm/Kconfig"
Teresa Remmet30fb74d2021-01-13 16:28:09 +010097source "board/phytec/phycore_imx8mp/Kconfig"
Peng Fanaeb9c062018-11-20 10:20:00 +000098
Peng Fan39945c12018-11-20 10:19:25 +000099endif