mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
0bb304e363
imx8mm-cl-iot-gate supports multiple DDR sizes and models. The DDR type can be retrieved from the EEPROM, so add SPL code that can be used to get the DDR information. Based on the original code from Compulab's U-Boot. Signed-off-by: Fabio Estevam <festevam@denx.de>
13 lines
195 B
Makefile
13 lines
195 B
Makefile
#
|
|
# Copyright 2018 NXP
|
|
# Copyright 2020 Linaro
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += imx8mm-cl-iot-gate.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o eeprom_spl.o
|
|
obj-y += ddr/
|
|
endif
|