u-boot/arch/arm/mach-imx/imx9/Kconfig
Mathieu Othacehe 7c1f8ce395 board: phytec: phycore-imx93: Add phyBOARD-Segin-i.MX93 support
Add initial support for the PHYTEC phyBOARD-Segin-i.MX93 board based on
the PHYTEC phyCORE-i.MX93 SoM.

Supported features:
- 1GB LPDDR4 RAM
- eMMC
- external SD
- FEC Ethernet
- debug UART
- watchdog

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Tested-by: Primoz Fiser <primoz.fiser@norik.com>
Reviewed-by: Yannic Moog <y.moog@phytec.de>
2024-02-08 09:05:11 -03:00

53 lines
909 B
Plaintext

if ARCH_IMX9
config AHAB_BOOT
bool "Support i.MX9 AHAB features"
help
This option enables the support for AHAB secure boot.
config IMX9_LOW_DRIVE_MODE
bool "Configure to i.MX9 low drive mode"
help
This option enables the settings for iMX9 low drive mode.
config IMX9
bool
select BINMAN
select HAS_CAAM
select ROM_UNIFIED_SECTIONS
config IMX93
bool
select IMX9
select ARMV8_SPL_EXCEPTION_VECTORS
config SYS_SOC
default "imx9"
choice
prompt "NXP i.MX9 board select"
optional
config TARGET_IMX93_11X11_EVK
bool "imx93_11x11_evk"
select IMX93
config TARGET_IMX93_VAR_SOM
bool "imx93_var_som"
select IMX93
select IMX9_LPDDR4X
config TARGET_PHYCORE_IMX93
bool "phycore_imx93"
select IMX93
select IMX9_LPDDR4X
endchoice
source "board/freescale/imx93_evk/Kconfig"
source "board/phytec/phycore_imx93/Kconfig"
source "board/variscite/imx93_var_som/Kconfig"
endif