mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
98bcdf1635
Add dedicated defconfigs for iMX8MN low drive mode which set the VDD_SOC and VDD_DRAM to 0.8v, DDR at 1600MTS (800Mhz clock) and GPU at 200Mhz. Signed-off-by: Ye Li <ye.li@nxp.com> Acked-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
18 lines
364 B
Makefile
18 lines
364 B
Makefile
#
|
|
# Copyright 2018 NXP
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += imx8mn_evk.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
ifdef CONFIG_IMX8MN_LOW_DRIVE_MODE
|
|
obj-$(CONFIG_IMX8M_LPDDR4) += lpddr4_timing_ld.o
|
|
obj-$(CONFIG_IMX8M_DDR4) += ddr4_timing_ld.o
|
|
else
|
|
obj-$(CONFIG_IMX8M_LPDDR4) += lpddr4_timing.o
|
|
obj-$(CONFIG_IMX8M_DDR4) += ddr4_timing.o
|
|
endif
|
|
endif
|