2018-10-18 12:28:08 +00:00
|
|
|
if ARCH_IMX8
|
|
|
|
|
2019-09-25 08:11:14 +00:00
|
|
|
config AHAB_BOOT
|
|
|
|
bool "Support i.MX8 AHAB features"
|
|
|
|
help
|
|
|
|
This option enables the support for AHAB secure boot.
|
|
|
|
|
2018-10-18 12:28:08 +00:00
|
|
|
config IMX8
|
|
|
|
bool
|
|
|
|
|
2018-12-21 06:21:15 +00:00
|
|
|
config MU_BASE_SPL
|
|
|
|
hex "MU base address used in SPL"
|
|
|
|
default 0x5d1b0000
|
|
|
|
help
|
|
|
|
SPL runs in EL3 mode, it use MU0_A to communicate with SCU.
|
|
|
|
So we could not reuse the one in dts which is for normal U-Boot.
|
|
|
|
|
2019-03-05 02:32:28 +00:00
|
|
|
config IMX8QM
|
|
|
|
select IMX8
|
|
|
|
select SUPPORT_SPL
|
|
|
|
bool
|
|
|
|
|
2018-10-18 12:28:08 +00:00
|
|
|
config IMX8QXP
|
|
|
|
select IMX8
|
2018-12-21 06:21:13 +00:00
|
|
|
select SUPPORT_SPL
|
2018-10-18 12:28:08 +00:00
|
|
|
bool
|
|
|
|
|
|
|
|
config SYS_SOC
|
|
|
|
default "imx8"
|
|
|
|
|
2019-08-22 07:42:33 +00:00
|
|
|
config SPL_LOAD_IMX_CONTAINER
|
|
|
|
bool "Enable SPL loading U-Boot as a i.MX Container image"
|
|
|
|
depends on SPL
|
|
|
|
help
|
|
|
|
This is to let SPL could load i.MX8 Container image
|
|
|
|
|
2019-08-22 07:42:41 +00:00
|
|
|
config IMX_CONTAINER_CFG
|
|
|
|
string "i.MX Container config file"
|
|
|
|
depends on SPL
|
|
|
|
help
|
|
|
|
This is to specific the cfg file for generating container
|
|
|
|
image which will be loaded by SPL.
|
|
|
|
|
2018-10-18 12:28:37 +00:00
|
|
|
choice
|
|
|
|
prompt "i.MX8 board select"
|
|
|
|
optional
|
|
|
|
|
2019-05-31 16:00:20 +00:00
|
|
|
config TARGET_APALIS_IMX8
|
|
|
|
bool "Support Apalis iMX8 module"
|
|
|
|
select BOARD_LATE_INIT
|
|
|
|
select IMX8QM
|
|
|
|
|
2019-05-31 15:56:39 +00:00
|
|
|
config TARGET_COLIBRI_IMX8X
|
|
|
|
bool "Support Colibri iMX8X module"
|
2018-10-18 12:28:37 +00:00
|
|
|
select BOARD_LATE_INIT
|
|
|
|
select IMX8QXP
|
|
|
|
|
2020-01-07 15:37:43 +00:00
|
|
|
config TARGET_DENEB
|
|
|
|
bool "Support i.MX8QXP Capricorn Deneb board"
|
|
|
|
select BOARD_LATE_INIT
|
|
|
|
select IMX8QXP
|
|
|
|
|
2020-01-07 15:37:42 +00:00
|
|
|
config TARGET_GIEDI
|
|
|
|
bool "Support i.MX8QXP Capricorn Giedi board"
|
|
|
|
select BOARD_LATE_INIT
|
|
|
|
select IMX8QXP
|
|
|
|
|
2019-03-05 02:32:49 +00:00
|
|
|
config TARGET_IMX8QM_MEK
|
|
|
|
bool "Support i.MX8QM MEK board"
|
|
|
|
select BOARD_LATE_INIT
|
|
|
|
select IMX8QM
|
|
|
|
|
2019-09-20 07:08:41 +00:00
|
|
|
config TARGET_IMX8QM_ROM7720_A1
|
|
|
|
bool "Support i.MX8QM ROM-7720-A1"
|
|
|
|
select BOARD_LATE_INIT
|
|
|
|
select SUPPORT_SPL
|
|
|
|
select IMX8QM
|
|
|
|
|
2019-05-31 15:56:39 +00:00
|
|
|
config TARGET_IMX8QXP_MEK
|
|
|
|
bool "Support i.MX8QXP MEK board"
|
|
|
|
select BOARD_LATE_INIT
|
|
|
|
select IMX8QXP
|
|
|
|
|
2018-10-18 12:28:37 +00:00
|
|
|
endchoice
|
|
|
|
|
2019-03-05 02:32:49 +00:00
|
|
|
source "board/freescale/imx8qm_mek/Kconfig"
|
2019-05-31 15:56:39 +00:00
|
|
|
source "board/freescale/imx8qxp_mek/Kconfig"
|
2019-09-20 07:08:41 +00:00
|
|
|
source "board/advantech/imx8qm_rom7720_a1/Kconfig"
|
2019-05-31 16:00:20 +00:00
|
|
|
source "board/toradex/apalis-imx8/Kconfig"
|
2019-05-31 15:56:39 +00:00
|
|
|
source "board/toradex/colibri-imx8x/Kconfig"
|
2020-01-07 15:37:42 +00:00
|
|
|
source "board/siemens/capricorn/Kconfig"
|
2018-10-18 12:28:37 +00:00
|
|
|
|
2018-10-18 12:28:08 +00:00
|
|
|
endif
|