mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
e3963c0943
Introduce DDR driver for i.MX8M. The driver will be used by SPL to initialze DDR PHY and DDR Controller. Signed-off-by: Peng Fan <peng.fan@nxp.com>
11 lines
257 B
Makefile
11 lines
257 B
Makefile
#
|
|
# Copyright 2018 NXP
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_IMX8M_DRAM) += helper.o ddrphy_utils.o ddrphy_train.o ddrphy_csr.o
|
|
obj-$(CONFIG_IMX8M_LPDDR4) += lpddr4_init.o
|
|
obj-$(CONFIG_IMX8M_DDR4) += ddr4_init.o
|
|
endif
|