Merge git://git.denx.de/u-boot-socfpga
[oweals/u-boot.git] / arch / arm / mach-imx / imx8 / Kconfig
1 if ARCH_IMX8
2
3 config IMX8
4         bool
5
6 config MU_BASE_SPL
7         hex "MU base address used in SPL"
8         default 0x5d1b0000
9         help
10           SPL runs in EL3 mode, it use MU0_A to communicate with SCU.
11           So we could not reuse the one in dts which is for normal U-Boot.
12
13 config IMX8QM
14         select IMX8
15         select SUPPORT_SPL
16         bool
17
18 config IMX8QXP
19         select IMX8
20         select SUPPORT_SPL
21         bool
22
23 config SYS_SOC
24         default "imx8"
25
26 choice
27         prompt "i.MX8 board select"
28         optional
29
30 config TARGET_IMX8QXP_MEK
31         bool "Support i.MX8QXP MEK board"
32         select BOARD_LATE_INIT
33         select IMX8QXP
34
35 config TARGET_IMX8QM_MEK
36         bool "Support i.MX8QM MEK board"
37         select BOARD_LATE_INIT
38         select IMX8QM
39
40 endchoice
41
42 source "board/freescale/imx8qxp_mek/Kconfig"
43 source "board/freescale/imx8qm_mek/Kconfig"
44
45 endif