blob: e9496cb6112651b7a2b24ca64941dab1568f493d [file] [log] [blame]
Peng Fan6bae1c72018-10-18 14:28:08 +02001if ARCH_IMX8
2
3config IMX8
4 bool
5
Peng Fane6b2c2b2018-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 Fancb9ce012019-03-05 02:32:28 +000013config IMX8QM
14 select IMX8
15 select SUPPORT_SPL
16 bool
17
Peng Fan6bae1c72018-10-18 14:28:08 +020018config IMX8QXP
19 select IMX8
Peng Fan1df287c2018-12-21 06:21:13 +000020 select SUPPORT_SPL
Peng Fan6bae1c72018-10-18 14:28:08 +020021 bool
22
23config SYS_SOC
24 default "imx8"
25
Peng Fan1a7e6252019-08-22 07:42:33 +000026config SPL_LOAD_IMX_CONTAINER
27 bool "Enable SPL loading U-Boot as a i.MX Container image"
28 depends on SPL
29 help
30 This is to let SPL could load i.MX8 Container image
31
Peng Fan702c6dc2018-10-18 14:28:37 +020032choice
33 prompt "i.MX8 board select"
34 optional
35
Marcel Ziswiler475ceff2019-05-31 19:00:20 +030036config TARGET_APALIS_IMX8
37 bool "Support Apalis iMX8 module"
38 select BOARD_LATE_INIT
39 select IMX8QM
40
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030041config TARGET_COLIBRI_IMX8X
42 bool "Support Colibri iMX8X module"
Peng Fan702c6dc2018-10-18 14:28:37 +020043 select BOARD_LATE_INIT
44 select IMX8QXP
45
Peng Fan203a2272019-03-05 02:32:49 +000046config TARGET_IMX8QM_MEK
47 bool "Support i.MX8QM MEK board"
48 select BOARD_LATE_INIT
49 select IMX8QM
50
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030051config TARGET_IMX8QXP_MEK
52 bool "Support i.MX8QXP MEK board"
53 select BOARD_LATE_INIT
54 select IMX8QXP
55
Peng Fan702c6dc2018-10-18 14:28:37 +020056endchoice
57
Peng Fan203a2272019-03-05 02:32:49 +000058source "board/freescale/imx8qm_mek/Kconfig"
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030059source "board/freescale/imx8qxp_mek/Kconfig"
Marcel Ziswiler475ceff2019-05-31 19:00:20 +030060source "board/toradex/apalis-imx8/Kconfig"
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030061source "board/toradex/colibri-imx8x/Kconfig"
Peng Fan702c6dc2018-10-18 14:28:37 +020062
Peng Fan6bae1c72018-10-18 14:28:08 +020063endif