mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 00:32:04 +02:00
This debug mode is used by CubeMX DDR tuning tools or manualy for tests during board bring-up. It is simple console used to change DDR parameters and check initialization. Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
14 lines
344 B
Makefile
14 lines
344 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
|
|
|
|
ifneq ($(DDR_INTERACTIVE),)
|
|
CFLAGS_stm32mp1_interactive.o += -DCONFIG_STM32MP1_DDR_INTERACTIVE_FORCE=y
|
|
endif
|