Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/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 IMX8MP
20         bool
21         select IMX8M
22
23 config SYS_SOC
24         default "imx8m"
25
26 choice
27         prompt  "NXP i.MX8M board select"
28         optional
29
30 config TARGET_IMX8MQ_EVK
31         bool "imx8mq_evk"
32         select IMX8MQ
33         select IMX8M_LPDDR4
34
35 config TARGET_IMX8MQ_PHANBELL
36         bool "imx8mq_phanbell"
37         select IMX8MQ
38         select IMX8M_LPDDR4
39
40 config TARGET_IMX8MM_EVK
41         bool "imx8mm LPDDR4 EVK board"
42         select IMX8MM
43         select SUPPORT_SPL
44         select IMX8M_LPDDR4
45
46 config TARGET_IMX8MN_EVK
47         bool "imx8mn DDR4 EVK board"
48         select IMX8MN
49         select SUPPORT_SPL
50         select IMX8M_DDR4
51
52 config TARGET_IMX8MP_EVK
53         bool "imx8mp LPDDR4 EVK board"
54         select IMX8MP
55         select SUPPORT_SPL
56         select IMX8M_LPDDR4
57
58 config TARGET_PICO_IMX8MQ
59         bool "Support Technexion Pico iMX8MQ"
60         select IMX8MQ
61         select IMX8M_LPDDR4
62
63 config TARGET_VERDIN_IMX8MM
64        bool "Support Toradex Verdin iMX8M Mini module"
65        select IMX8MM
66        select SUPPORT_SPL
67        select IMX8M_LPDDR4
68
69 config TARGET_IMX8MM_BEACON
70         bool "imx8mm Beacon Embedded devkit"
71         select IMX8MM
72         select SUPPORT_SPL
73         select IMX8M_LPDDR4
74
75 endchoice
76
77 source "board/freescale/imx8mq_evk/Kconfig"
78 source "board/freescale/imx8mm_evk/Kconfig"
79 source "board/freescale/imx8mn_evk/Kconfig"
80 source "board/freescale/imx8mp_evk/Kconfig"
81 source "board/google/imx8mq_phanbell/Kconfig"
82 source "board/technexion/pico-imx8mq/Kconfig"
83 source "board/toradex/verdin-imx8mm/Kconfig"
84 source "board/beacon/imx8mm/Kconfig"
85
86 endif