mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-18 13:16:59 +02:00
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:
parent
2f8b24d5cc
commit
def09add19
@ -24,6 +24,13 @@ config IMX91
|
|||||||
select IMX9
|
select IMX9
|
||||||
select ARMV8_SPL_EXCEPTION_VECTORS
|
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
|
config SYS_SOC
|
||||||
default "imx9"
|
default "imx9"
|
||||||
|
@ -3,8 +3,13 @@
|
|||||||
# Copyright 2022 NXP
|
# Copyright 2022 NXP
|
||||||
|
|
||||||
obj-y += lowlevel_init.o
|
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
|
obj-y += imx_bootaux.o
|
||||||
#endif
|
endif
|
Loading…
Reference in New Issue
Block a user