mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 02:15:02 +00:00

Add i.MX93 9x9 Quick Start Board support. - Two ddr scripts included w/o inline ecc feature. - SDHC/NETWORK/I2C/UART supported - PCA9450 supported, default over drive mode - Documentation added. Signed-off-by: Peng Fan <peng.fan@nxp.com>
16 lines
292 B
Makefile
16 lines
292 B
Makefile
#
|
|
# Copyright 2024 NXP
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += imx93_qsb.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
ifdef CONFIG_IMX9_DRAM_INLINE_ECC
|
|
obj-$(CONFIG_TARGET_IMX93_9X9_QSB) += lpddr4_timing_ecc.o
|
|
else
|
|
obj-$(CONFIG_TARGET_IMX93_9X9_QSB) += lpddr4_timing.o
|
|
endif
|
|
endif
|