blob: 4ccbabf50612b01742c080c57e33fede80a11051 [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"
Clement Faure9cb2f972021-03-25 17:30:34 +08005 imply CMD_DEKBLOB
Peng Fanf1e0f9f2019-09-25 08:11:14 +00006 help
7 This option enables the support for AHAB secure boot.
8
Peng Fan6bae1c72018-10-18 14:28:08 +02009config IMX8
10 bool
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +053011 select HAS_CAAM
Peng Fan6bae1c72018-10-18 14:28:08 +020012
Peng Fane6b2c2b2018-12-21 06:21:15 +000013config 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 Fancb9ce012019-03-05 02:32:28 +000020config IMX8QM
21 select IMX8
22 select SUPPORT_SPL
Tom Rini0a83cc22022-06-10 23:03:09 -040023 select SPL_RECOVER_DATA_SECTION if SPL
Peng Fancb9ce012019-03-05 02:32:28 +000024 bool
25
Peng Fan6bae1c72018-10-18 14:28:08 +020026config IMX8QXP
27 select IMX8
Peng Fan1df287c2018-12-21 06:21:13 +000028 select SUPPORT_SPL
Tom Rini0a83cc22022-06-10 23:03:09 -040029 select SPL_RECOVER_DATA_SECTION if SPL
Peng Fan6bae1c72018-10-18 14:28:08 +020030 bool
31
32config SYS_SOC
33 default "imx8"
34
Peng Fanae617972020-05-05 20:28:37 +080035config BOOTAUX_RESERVED_MEM_BASE
36 hex "i.MX auxiliary core dram memory base"
37 default 0
38
39config BOOTAUX_RESERVED_MEM_SIZE
40 hex "i.MX auxiliary core dram memory size"
41 default 0
42
Peng Fan702c6dc2018-10-18 14:28:37 +020043choice
44 prompt "i.MX8 board select"
45 optional
46
Marcel Ziswiler475ceff2019-05-31 19:00:20 +030047config TARGET_APALIS_IMX8
48 bool "Support Apalis iMX8 module"
49 select BOARD_LATE_INIT
50 select IMX8QM
51
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030052config TARGET_COLIBRI_IMX8X
53 bool "Support Colibri iMX8X module"
Peng Fan702c6dc2018-10-18 14:28:37 +020054 select BOARD_LATE_INIT
55 select IMX8QXP
56
Anatolij Gustschin79ca9472020-01-07 16:37:43 +010057config TARGET_DENEB
58 bool "Support i.MX8QXP Capricorn Deneb board"
59 select BOARD_LATE_INIT
Tom Rini29e05952022-06-10 22:59:35 -040060 select FACTORYSET
Anatolij Gustschin79ca9472020-01-07 16:37:43 +010061 select IMX8QXP
62
Anatolij Gustschin49234a32020-01-07 16:37:42 +010063config TARGET_GIEDI
64 bool "Support i.MX8QXP Capricorn Giedi board"
65 select BOARD_LATE_INIT
Tom Rini29e05952022-06-10 22:59:35 -040066 select FACTORYSET
Anatolij Gustschin49234a32020-01-07 16:37:42 +010067 select IMX8QXP
68
Peng Fan203a2272019-03-05 02:32:49 +000069config TARGET_IMX8QM_MEK
70 bool "Support i.MX8QM MEK board"
Oliver Graute6ccf8502022-11-04 16:03:40 +010071 select BINMAN
Peng Fan203a2272019-03-05 02:32:49 +000072 select BOARD_LATE_INIT
73 select IMX8QM
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +053074 select FSL_CAAM
75 select ARCH_MISC_INIT
76 select SPL_CRYPTO if SPL
Peng Fan203a2272019-03-05 02:32:49 +000077
Oliver Grauteaf5e29b2021-05-31 15:50:40 +020078config TARGET_CONGA_QMX8
79 bool "Support congatec conga-QMX8 board"
Oliver Graute51039ce2022-11-04 16:03:38 +010080 select BINMAN
Oliver Grauteaf5e29b2021-05-31 15:50:40 +020081 select BOARD_LATE_INIT
82 select SUPPORT_SPL
83 select IMX8QM
84
Oliver Grautedafcd992019-09-20 07:08:41 +000085config TARGET_IMX8QM_ROM7720_A1
86 bool "Support i.MX8QM ROM-7720-A1"
Oliver Graute3e0bf762022-11-04 16:03:37 +010087 select BINMAN
Oliver Grautedafcd992019-09-20 07:08:41 +000088 select BOARD_LATE_INIT
89 select SUPPORT_SPL
90 select IMX8QM
91
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030092config TARGET_IMX8QXP_MEK
93 bool "Support i.MX8QXP MEK board"
Oliver Grauted5efa3c2022-11-04 16:03:39 +010094 select BINMAN
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030095 select BOARD_LATE_INIT
96 select IMX8QXP
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +053097 select FSL_CAAM
98 select ARCH_MISC_INIT
99 select SPL_CRYPTO if SPL
Marcel Ziswiler99d768b2019-05-31 18:56:39 +0300100
Peng Fan702c6dc2018-10-18 14:28:37 +0200101endchoice
102
Peng Fan203a2272019-03-05 02:32:49 +0000103source "board/freescale/imx8qm_mek/Kconfig"
Marcel Ziswiler99d768b2019-05-31 18:56:39 +0300104source "board/freescale/imx8qxp_mek/Kconfig"
Oliver Grauteaf5e29b2021-05-31 15:50:40 +0200105source "board/congatec/cgtqmx8/Kconfig"
Oliver Grautedafcd992019-09-20 07:08:41 +0000106source "board/advantech/imx8qm_rom7720_a1/Kconfig"
Marcel Ziswiler475ceff2019-05-31 19:00:20 +0300107source "board/toradex/apalis-imx8/Kconfig"
Marcel Ziswiler99d768b2019-05-31 18:56:39 +0300108source "board/toradex/colibri-imx8x/Kconfig"
Anatolij Gustschin49234a32020-01-07 16:37:42 +0100109source "board/siemens/capricorn/Kconfig"
Peng Fan702c6dc2018-10-18 14:28:37 +0200110
Franck LENORMANDd3b70ea2019-10-09 10:27:43 +0200111config IMX_SNVS_SEC_SC
112 bool "Support SNVS configuration"
113 help
114 Allow to configure the SNVS via SCU API to configure tampers and secure
115 violation.
116
117config IMX_SNVS_SEC_SC_AUTO
118 bool "Support SNVS configuration command"
119 depends on IMX_SNVS_SEC_SC
120 help
121 This configuration will apply the selected configurations automatically
122 at boot.
123
Peng Fan6bae1c72018-10-18 14:28:08 +0200124endif