mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
187c41d783
Add command tuning for DDR interactive mode, used during board bring-up or with CubeMX DDR tools to execute software tuning for the DDR configuration: - software read DQS Gating (replace the built-in one) - Bit de-skew - Eye Training or DQS training Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
15 lines
452 B
Makefile
15 lines
452 B
Makefile
# SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
|
|
#
|
|
# Copyright (C) 2018, STMicroelectronics - All Rights Reserved
|
|
#
|
|
|
|
obj-y += stm32mp1_ram.o
|
|
obj-y += stm32mp1_ddr.o
|
|
|
|
obj-$(CONFIG_STM32MP1_DDR_INTERACTIVE) += stm32mp1_interactive.o
|
|
obj-$(CONFIG_STM32MP1_DDR_TESTS) += stm32mp1_tests.o
|
|
obj-$(CONFIG_STM32MP1_DDR_TUNING) += stm32mp1_tuning.o
|
|
|
|
ifneq ($(DDR_INTERACTIVE),)
|
|
CFLAGS_stm32mp1_interactive.o += -DCONFIG_STM32MP1_DDR_INTERACTIVE_FORCE=y
|
|
endif
|