Peng Fan | b2b8b9b | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 1 | if ARCH_IMX8 |
| 2 | |
Peng Fan | 7e2db74 | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 3 | config AHAB_BOOT |
| 4 | bool "Support i.MX8 AHAB features" |
| 5 | help |
| 6 | This option enables the support for AHAB secure boot. |
| 7 | |
Peng Fan | b2b8b9b | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 8 | config IMX8 |
| 9 | bool |
| 10 | |
Peng Fan | 04b2496 | 2018-12-21 06:21:15 +0000 | [diff] [blame] | 11 | config 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 Fan | 7f50af6 | 2019-03-05 02:32:28 +0000 | [diff] [blame] | 18 | config IMX8QM |
| 19 | select IMX8 |
| 20 | select SUPPORT_SPL |
| 21 | bool |
| 22 | |
Peng Fan | b2b8b9b | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 23 | config IMX8QXP |
| 24 | select IMX8 |
Peng Fan | 3bd888b | 2018-12-21 06:21:13 +0000 | [diff] [blame] | 25 | select SUPPORT_SPL |
Peng Fan | b2b8b9b | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 26 | bool |
| 27 | |
| 28 | config SYS_SOC |
| 29 | default "imx8" |
| 30 | |
Peng Fan | 7b86cd4 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 31 | config 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 Fan | 700315c | 2019-08-22 07:42:41 +0000 | [diff] [blame] | 37 | config 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 Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 44 | choice |
| 45 | prompt "i.MX8 board select" |
| 46 | optional |
| 47 | |
Marcel Ziswiler | 3d60366 | 2019-05-31 19:00:20 +0300 | [diff] [blame] | 48 | config TARGET_APALIS_IMX8 |
| 49 | bool "Support Apalis iMX8 module" |
| 50 | select BOARD_LATE_INIT |
| 51 | select IMX8QM |
| 52 | |
Marcel Ziswiler | 7ce134b7 | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 53 | config TARGET_COLIBRI_IMX8X |
| 54 | bool "Support Colibri iMX8X module" |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 55 | select BOARD_LATE_INIT |
| 56 | select IMX8QXP |
| 57 | |
Anatolij Gustschin | eb79caf | 2020-01-07 16:37:43 +0100 | [diff] [blame] | 58 | config TARGET_DENEB |
| 59 | bool "Support i.MX8QXP Capricorn Deneb board" |
| 60 | select BOARD_LATE_INIT |
| 61 | select IMX8QXP |
| 62 | |
Anatolij Gustschin | 7b5b934 | 2020-01-07 16:37:42 +0100 | [diff] [blame] | 63 | config TARGET_GIEDI |
| 64 | bool "Support i.MX8QXP Capricorn Giedi board" |
| 65 | select BOARD_LATE_INIT |
| 66 | select IMX8QXP |
| 67 | |
Peng Fan | 0d331c0 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 68 | config TARGET_IMX8QM_MEK |
| 69 | bool "Support i.MX8QM MEK board" |
| 70 | select BOARD_LATE_INIT |
| 71 | select IMX8QM |
| 72 | |
Oliver Graute | eef7244 | 2019-09-20 07:08:41 +0000 | [diff] [blame] | 73 | config TARGET_IMX8QM_ROM7720_A1 |
| 74 | bool "Support i.MX8QM ROM-7720-A1" |
| 75 | select BOARD_LATE_INIT |
| 76 | select SUPPORT_SPL |
| 77 | select IMX8QM |
| 78 | |
Marcel Ziswiler | 7ce134b7 | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 79 | config TARGET_IMX8QXP_MEK |
| 80 | bool "Support i.MX8QXP MEK board" |
| 81 | select BOARD_LATE_INIT |
| 82 | select IMX8QXP |
| 83 | |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 84 | endchoice |
| 85 | |
Peng Fan | 0d331c0 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 86 | source "board/freescale/imx8qm_mek/Kconfig" |
Marcel Ziswiler | 7ce134b7 | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 87 | source "board/freescale/imx8qxp_mek/Kconfig" |
Oliver Graute | eef7244 | 2019-09-20 07:08:41 +0000 | [diff] [blame] | 88 | source "board/advantech/imx8qm_rom7720_a1/Kconfig" |
Marcel Ziswiler | 3d60366 | 2019-05-31 19:00:20 +0300 | [diff] [blame] | 89 | source "board/toradex/apalis-imx8/Kconfig" |
Marcel Ziswiler | 7ce134b7 | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 90 | source "board/toradex/colibri-imx8x/Kconfig" |
Anatolij Gustschin | 7b5b934 | 2020-01-07 16:37:42 +0100 | [diff] [blame] | 91 | source "board/siemens/capricorn/Kconfig" |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 92 | |
Peng Fan | b2b8b9b | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 93 | endif |