blob: f76a139684222434a31e1b2d642b006aae1c4af3 [file] [log] [blame]
Peng Fanb2b8b9b2018-10-18 14:28:08 +02001if ARCH_IMX8
2
3config IMX8
4 bool
5
Peng Fan04b24962018-12-21 06:21:15 +00006config 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
Peng Fanb2b8b9b2018-10-18 14:28:08 +020013config IMX8QXP
14 select IMX8
Peng Fan3bd888b2018-12-21 06:21:13 +000015 select SUPPORT_SPL
Peng Fanb2b8b9b2018-10-18 14:28:08 +020016 bool
17
18config SYS_SOC
19 default "imx8"
20
Peng Fand0dd7392018-10-18 14:28:37 +020021choice
22 prompt "i.MX8 board select"
23 optional
24
25config TARGET_IMX8QXP_MEK
26 bool "Support i.MX8QXP MEK board"
27 select BOARD_LATE_INIT
28 select IMX8QXP
29
30endchoice
31
32source "board/freescale/imx8qxp_mek/Kconfig"
33
Peng Fanb2b8b9b2018-10-18 14:28:08 +020034endif