blob: cdb78afacfc227b03550b0fa6f3ae468467657ed [file] [log] [blame]
Peng Fan6bae1c72018-10-18 14:28:08 +02001if ARCH_IMX8
2
Peng Fanf1e0f9f2019-09-25 08:11:14 +00003config AHAB_BOOT
4 bool "Support i.MX8 AHAB features"
5 help
6 This option enables the support for AHAB secure boot.
7
Peng Fan6bae1c72018-10-18 14:28:08 +02008config IMX8
9 bool
10
Peng Fane6b2c2b2018-12-21 06:21:15 +000011config MU_BASE_SPL
12 hex "MU base address used in SPL"
13 default 0x5d1b0000
14 help
15 SPL runs in EL3 mode, it use MU0_A to communicate with SCU.
16 So we could not reuse the one in dts which is for normal U-Boot.
17
Peng Fancb9ce012019-03-05 02:32:28 +000018config IMX8QM
19 select IMX8
20 select SUPPORT_SPL
21 bool
22
Peng Fan6bae1c72018-10-18 14:28:08 +020023config IMX8QXP
24 select IMX8
Peng Fan1df287c2018-12-21 06:21:13 +000025 select SUPPORT_SPL
Peng Fan6bae1c72018-10-18 14:28:08 +020026 bool
27
28config SYS_SOC
29 default "imx8"
30
Peng Fan1a7e6252019-08-22 07:42:33 +000031config SPL_LOAD_IMX_CONTAINER
32 bool "Enable SPL loading U-Boot as a i.MX Container image"
33 depends on SPL
34 help
35 This is to let SPL could load i.MX8 Container image
36
Peng Fanbe3e5832019-08-22 07:42:41 +000037config IMX_CONTAINER_CFG
38 string "i.MX Container config file"
39 depends on SPL
40 help
41 This is to specific the cfg file for generating container
42 image which will be loaded by SPL.
43
Peng Fan702c6dc2018-10-18 14:28:37 +020044choice
45 prompt "i.MX8 board select"
46 optional
47
Marcel Ziswiler475ceff2019-05-31 19:00:20 +030048config TARGET_APALIS_IMX8
49 bool "Support Apalis iMX8 module"
50 select BOARD_LATE_INIT
51 select IMX8QM
52
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030053config TARGET_COLIBRI_IMX8X
54 bool "Support Colibri iMX8X module"
Peng Fan702c6dc2018-10-18 14:28:37 +020055 select BOARD_LATE_INIT
56 select IMX8QXP
57
Peng Fan203a2272019-03-05 02:32:49 +000058config TARGET_IMX8QM_MEK
59 bool "Support i.MX8QM MEK board"
60 select BOARD_LATE_INIT
61 select IMX8QM
62
Oliver Grautedafcd992019-09-20 07:08:41 +000063config TARGET_IMX8QM_ROM7720_A1
64 bool "Support i.MX8QM ROM-7720-A1"
65 select BOARD_LATE_INIT
66 select SUPPORT_SPL
67 select IMX8QM
68
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030069config TARGET_IMX8QXP_MEK
70 bool "Support i.MX8QXP MEK board"
71 select BOARD_LATE_INIT
72 select IMX8QXP
73
Peng Fan702c6dc2018-10-18 14:28:37 +020074endchoice
75
Peng Fan203a2272019-03-05 02:32:49 +000076source "board/freescale/imx8qm_mek/Kconfig"
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030077source "board/freescale/imx8qxp_mek/Kconfig"
Oliver Grautedafcd992019-09-20 07:08:41 +000078source "board/advantech/imx8qm_rom7720_a1/Kconfig"
Marcel Ziswiler475ceff2019-05-31 19:00:20 +030079source "board/toradex/apalis-imx8/Kconfig"
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030080source "board/toradex/colibri-imx8x/Kconfig"
Peng Fan702c6dc2018-10-18 14:28:37 +020081
Peng Fan6bae1c72018-10-18 14:28:08 +020082endif