mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 05:54:08 +00:00

Now that DDR drivers are mostly cleaned up , move them out of staging. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Change-Id: I9de63f847a0ef9ac27a79fb0f848c351fd7f4da6
13 lines
385 B
Makefile
13 lines
385 B
Makefile
#
|
|
# Copyright (c) 2015-2018, Renesas Electronics Corporation. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
ifeq (${RCAR_LSI},${RCAR_E3})
|
|
BL2_SOURCES += drivers/renesas/rcar/ddr/ddr_a/ddr_init_e3.c
|
|
else ifeq (${RCAR_LSI},${RCAR_D3})
|
|
BL2_SOURCES += drivers/renesas/rcar/ddr/ddr_a/ddr_init_d3.c
|
|
else
|
|
BL2_SOURCES += drivers/renesas/rcar/ddr/ddr_a/ddr_init_v3m.c
|
|
endif
|