imx9: add i.MX95 Kconfig and Makefile

This patch adds i.MX95 Kconfig and Makefile. i.MX95 uses SCMI.

Signed-off-by: Ye Li <ye.li@nxp.com>
Signed-off-by: Alice Guo <alice.guo@nxp.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
Ye Li 2025-04-28 18:37:37 +08:00 committed by Fabio Estevam
parent 2f8b24d5cc
commit def09add19
2 changed files with 15 additions and 3 deletions

View File

@ -24,6 +24,13 @@ config IMX91
select IMX9
select ARMV8_SPL_EXCEPTION_VECTORS
config IMX95
bool
select ARMV8_SPL_EXCEPTION_VECTORS
select IMX9
select DM_MAILBOX
select SCMI_FIRMWARE
select SPL_IMX_CONTAINER_USE_TRAMPOLINE
config SYS_SOC
default "imx9"

View File

@ -3,8 +3,13 @@
# Copyright 2022 NXP
obj-y += lowlevel_init.o
obj-y += soc.o clock.o clock_root.o trdc.o
#ifndef CONFIG_XPL_BUILD
ifeq ($(CONFIG_SCMI_FIRMWARE),y)
obj-y += scmi/
else
obj-y += soc.o clock.o clock_root.o trdc.o
endif
ifneq ($(CONFIG_SPL_BUILD),y)
obj-y += imx_bootaux.o
#endif
endif