Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 1 | if ARCH_IMX8 |
| 2 | |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 3 | config AHAB_BOOT |
| 4 | bool "Support i.MX8 AHAB features" |
Clement Faure | 9cb2f97 | 2021-03-25 17:30:34 +0800 | [diff] [blame] | 5 | imply CMD_DEKBLOB |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 6 | help |
| 7 | This option enables the support for AHAB secure boot. |
| 8 | |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 9 | config IMX8 |
| 10 | bool |
Gaurav Jain | db4dd6a | 2022-03-24 11:50:33 +0530 | [diff] [blame] | 11 | select HAS_CAAM |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 12 | |
Peng Fan | e6b2c2b | 2018-12-21 06:21:15 +0000 | [diff] [blame] | 13 | config MU_BASE_SPL |
| 14 | hex "MU base address used in SPL" |
| 15 | default 0x5d1b0000 |
| 16 | help |
| 17 | SPL runs in EL3 mode, it use MU0_A to communicate with SCU. |
| 18 | So we could not reuse the one in dts which is for normal U-Boot. |
| 19 | |
Peng Fan | cb9ce01 | 2019-03-05 02:32:28 +0000 | [diff] [blame] | 20 | config IMX8QM |
| 21 | select IMX8 |
| 22 | select SUPPORT_SPL |
Peng Fan | 617fc29 | 2020-05-05 20:28:41 +0800 | [diff] [blame] | 23 | select SPL_RECOVER_DATA_SECTION |
Peng Fan | cb9ce01 | 2019-03-05 02:32:28 +0000 | [diff] [blame] | 24 | bool |
| 25 | |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 26 | config IMX8QXP |
| 27 | select IMX8 |
Peng Fan | 1df287c | 2018-12-21 06:21:13 +0000 | [diff] [blame] | 28 | select SUPPORT_SPL |
Peng Fan | 617fc29 | 2020-05-05 20:28:41 +0800 | [diff] [blame] | 29 | select SPL_RECOVER_DATA_SECTION |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 30 | bool |
| 31 | |
| 32 | config SYS_SOC |
| 33 | default "imx8" |
| 34 | |
Peng Fan | ae61797 | 2020-05-05 20:28:37 +0800 | [diff] [blame] | 35 | config BOOTAUX_RESERVED_MEM_BASE |
| 36 | hex "i.MX auxiliary core dram memory base" |
| 37 | default 0 |
| 38 | |
| 39 | config BOOTAUX_RESERVED_MEM_SIZE |
| 40 | hex "i.MX auxiliary core dram memory size" |
| 41 | default 0 |
| 42 | |
Peng Fan | 702c6dc | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 43 | choice |
| 44 | prompt "i.MX8 board select" |
| 45 | optional |
| 46 | |
Marcel Ziswiler | 475ceff | 2019-05-31 19:00:20 +0300 | [diff] [blame] | 47 | config TARGET_APALIS_IMX8 |
| 48 | bool "Support Apalis iMX8 module" |
| 49 | select BOARD_LATE_INIT |
| 50 | select IMX8QM |
| 51 | |
Marcel Ziswiler | 99d768b | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 52 | config TARGET_COLIBRI_IMX8X |
| 53 | bool "Support Colibri iMX8X module" |
Peng Fan | 702c6dc | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 54 | select BOARD_LATE_INIT |
| 55 | select IMX8QXP |
| 56 | |
Anatolij Gustschin | 79ca947 | 2020-01-07 16:37:43 +0100 | [diff] [blame] | 57 | config TARGET_DENEB |
| 58 | bool "Support i.MX8QXP Capricorn Deneb board" |
| 59 | select BOARD_LATE_INIT |
Tom Rini | 29e0595 | 2022-06-10 22:59:35 -0400 | [diff] [blame] | 60 | select FACTORYSET |
Anatolij Gustschin | 79ca947 | 2020-01-07 16:37:43 +0100 | [diff] [blame] | 61 | select IMX8QXP |
| 62 | |
Anatolij Gustschin | 49234a3 | 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 |
Tom Rini | 29e0595 | 2022-06-10 22:59:35 -0400 | [diff] [blame] | 66 | select FACTORYSET |
Anatolij Gustschin | 49234a3 | 2020-01-07 16:37:42 +0100 | [diff] [blame] | 67 | select IMX8QXP |
| 68 | |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 69 | config TARGET_IMX8QM_MEK |
| 70 | bool "Support i.MX8QM MEK board" |
| 71 | select BOARD_LATE_INIT |
| 72 | select IMX8QM |
Gaurav Jain | db4dd6a | 2022-03-24 11:50:33 +0530 | [diff] [blame] | 73 | select FSL_CAAM |
| 74 | select ARCH_MISC_INIT |
| 75 | select SPL_CRYPTO if SPL |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 76 | |
Oliver Graute | af5e29b | 2021-05-31 15:50:40 +0200 | [diff] [blame] | 77 | config TARGET_CONGA_QMX8 |
| 78 | bool "Support congatec conga-QMX8 board" |
| 79 | select BOARD_LATE_INIT |
| 80 | select SUPPORT_SPL |
| 81 | select IMX8QM |
| 82 | |
Oliver Graute | dafcd99 | 2019-09-20 07:08:41 +0000 | [diff] [blame] | 83 | config TARGET_IMX8QM_ROM7720_A1 |
| 84 | bool "Support i.MX8QM ROM-7720-A1" |
| 85 | select BOARD_LATE_INIT |
| 86 | select SUPPORT_SPL |
| 87 | select IMX8QM |
| 88 | |
Marcel Ziswiler | 99d768b | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 89 | config TARGET_IMX8QXP_MEK |
| 90 | bool "Support i.MX8QXP MEK board" |
| 91 | select BOARD_LATE_INIT |
| 92 | select IMX8QXP |
Gaurav Jain | db4dd6a | 2022-03-24 11:50:33 +0530 | [diff] [blame] | 93 | select FSL_CAAM |
| 94 | select ARCH_MISC_INIT |
| 95 | select SPL_CRYPTO if SPL |
Marcel Ziswiler | 99d768b | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 96 | |
Peng Fan | 702c6dc | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 97 | endchoice |
| 98 | |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 99 | source "board/freescale/imx8qm_mek/Kconfig" |
Marcel Ziswiler | 99d768b | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 100 | source "board/freescale/imx8qxp_mek/Kconfig" |
Oliver Graute | af5e29b | 2021-05-31 15:50:40 +0200 | [diff] [blame] | 101 | source "board/congatec/cgtqmx8/Kconfig" |
Oliver Graute | dafcd99 | 2019-09-20 07:08:41 +0000 | [diff] [blame] | 102 | source "board/advantech/imx8qm_rom7720_a1/Kconfig" |
Marcel Ziswiler | 475ceff | 2019-05-31 19:00:20 +0300 | [diff] [blame] | 103 | source "board/toradex/apalis-imx8/Kconfig" |
Marcel Ziswiler | 99d768b | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 104 | source "board/toradex/colibri-imx8x/Kconfig" |
Anatolij Gustschin | 49234a3 | 2020-01-07 16:37:42 +0100 | [diff] [blame] | 105 | source "board/siemens/capricorn/Kconfig" |
Peng Fan | 702c6dc | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 106 | |
Franck LENORMAND | d3b70ea | 2019-10-09 10:27:43 +0200 | [diff] [blame] | 107 | config IMX_SNVS_SEC_SC |
| 108 | bool "Support SNVS configuration" |
| 109 | help |
| 110 | Allow to configure the SNVS via SCU API to configure tampers and secure |
| 111 | violation. |
| 112 | |
| 113 | config IMX_SNVS_SEC_SC_AUTO |
| 114 | bool "Support SNVS configuration command" |
| 115 | depends on IMX_SNVS_SEC_SC |
| 116 | help |
| 117 | This configuration will apply the selected configurations automatically |
| 118 | at boot. |
| 119 | |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 120 | endif |