mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
54e1aa236f
Add support for the Variscite VAR-SOM-IMX93 evaluation kit. The SoM consists of an NXP iMX93 dual A55 CPU. The SoM is mounted on a Variscite Symphony SBC. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
17 lines
343 B
Makefile
17 lines
343 B
Makefile
#
|
|
# Copyright 2022 NXP
|
|
# Copyright 2023 Variscite Ltd.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += imx93_var_som.o
|
|
obj-$(CONFIG_TARGET_IMX93_VAR_SOM) += ../common/imx9_eeprom.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
obj-$(CONFIG_TARGET_IMX93_VAR_SOM) += lpddr4x_timing.o
|
|
else
|
|
obj-y += ../common/eth.o
|
|
obj-y += ../common/mmc.o
|
|
endif
|