Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 1 | if ARCH_IMX8 |
| 2 | |
| 3 | config IMX8 |
| 4 | bool |
| 5 | |
Peng Fan | e6b2c2b | 2018-12-21 06:21:15 +0000 | [diff] [blame] | 6 | config 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 Fan | cb9ce01 | 2019-03-05 02:32:28 +0000 | [diff] [blame] | 13 | config IMX8QM |
| 14 | select IMX8 |
| 15 | select SUPPORT_SPL |
| 16 | bool |
| 17 | |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 18 | config IMX8QXP |
| 19 | select IMX8 |
Peng Fan | 1df287c | 2018-12-21 06:21:13 +0000 | [diff] [blame] | 20 | select SUPPORT_SPL |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 21 | bool |
| 22 | |
| 23 | config SYS_SOC |
| 24 | default "imx8" |
| 25 | |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 26 | config 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 Fan | be3e583 | 2019-08-22 07:42:41 +0000 | [diff] [blame] | 32 | config IMX_CONTAINER_CFG |
| 33 | string "i.MX Container config file" |
| 34 | depends on SPL |
| 35 | help |
| 36 | This is to specific the cfg file for generating container |
| 37 | image which will be loaded by SPL. |
| 38 | |
Peng Fan | 702c6dc | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 39 | choice |
| 40 | prompt "i.MX8 board select" |
| 41 | optional |
| 42 | |
Marcel Ziswiler | 475ceff | 2019-05-31 19:00:20 +0300 | [diff] [blame] | 43 | config TARGET_APALIS_IMX8 |
| 44 | bool "Support Apalis iMX8 module" |
| 45 | select BOARD_LATE_INIT |
| 46 | select IMX8QM |
| 47 | |
Marcel Ziswiler | 99d768b | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 48 | config TARGET_COLIBRI_IMX8X |
| 49 | bool "Support Colibri iMX8X module" |
Peng Fan | 702c6dc | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 50 | select BOARD_LATE_INIT |
| 51 | select IMX8QXP |
| 52 | |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 53 | config TARGET_IMX8QM_MEK |
| 54 | bool "Support i.MX8QM MEK board" |
| 55 | select BOARD_LATE_INIT |
| 56 | select IMX8QM |
| 57 | |
Marcel Ziswiler | 99d768b | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 58 | config TARGET_IMX8QXP_MEK |
| 59 | bool "Support i.MX8QXP MEK board" |
| 60 | select BOARD_LATE_INIT |
| 61 | select IMX8QXP |
| 62 | |
Peng Fan | 702c6dc | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 63 | endchoice |
| 64 | |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 65 | source "board/freescale/imx8qm_mek/Kconfig" |
Marcel Ziswiler | 99d768b | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 66 | source "board/freescale/imx8qxp_mek/Kconfig" |
Marcel Ziswiler | 475ceff | 2019-05-31 19:00:20 +0300 | [diff] [blame] | 67 | source "board/toradex/apalis-imx8/Kconfig" |
Marcel Ziswiler | 99d768b | 2019-05-31 18:56:39 +0300 | [diff] [blame] | 68 | source "board/toradex/colibri-imx8x/Kconfig" |
Peng Fan | 702c6dc | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 69 | |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 70 | endif |