mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 14:36:03 +01:00
As there are few redundant functions in board/ti/*/evm.c files, pull them to a common location of access to reuse and include the common file to access the functions. Call k3-ddrss driver through fixup_ddr_driver_for_ecc() to fixup the device tree and resize the available amount of DDR, if ECC is enabled. Otherwise, fixup the device tree using the regular fdt_fixup_memory_banks(). Also call dram_init_banksize() after every call to fixup_ddr_driver_for_ecc() is made so that gd->bd is populated correctly. Ensure that fixup_ddr_driver_for_ecc() is agnostic to the number of DDR controllers present. Signed-off-by: Santhosh Kumar K <s-k6@ti.com> Signed-off-by: Neha Malcom Francis <n-francis@ti.com> Reviewed-by: Wadim Egorov <w.egorov@phytec.de>
19 lines
632 B
Makefile
19 lines
632 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2017-2018 Texas Instruments Incorporated - https://www.ti.com/
|
|
# Lokesh Vutla <lokeshvutla@ti.com>
|
|
|
|
obj-$(CONFIG_ARM64) += arm64/
|
|
obj-$(CONFIG_CPU_V7R) += r5/
|
|
obj-$(CONFIG_OF_LIBFDT) += common_fdt.o
|
|
obj-y += common.o security.o k3-ddr.o
|
|
obj-$(CONFIG_SOC_K3_AM62A7) += am62ax/
|
|
obj-$(CONFIG_SOC_K3_AM62P5) += am62px/
|
|
obj-$(CONFIG_SOC_K3_AM625) += am62x/
|
|
obj-$(CONFIG_SOC_K3_AM642) += am64x/
|
|
obj-$(CONFIG_SOC_K3_AM654) += am65x/
|
|
obj-$(CONFIG_SOC_K3_J721E) += j721e/
|
|
obj-$(CONFIG_SOC_K3_J721S2) += j721s2/
|
|
obj-$(CONFIG_SOC_K3_J722S) += j722s/
|
|
obj-$(CONFIG_SOC_K3_J784S4) += j784s4/
|