mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
d9a76e77c8
This commit replaces hard-coded EMIF and PHY DDR3 configurations for predefined SODIMMs to a calculated configuration. The SODIMM parameters are read from SODIMM's SPD and used to calculated the configuration. The current commit supports calculation for DDR3 with 1600MHz and 1333MHz only. Signed-off-by: Vitaly Andrianov <vitalya@ti.com> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Signed-off-by: Nishanth Menon <nm@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
17 lines
497 B
Makefile
17 lines
497 B
Makefile
#
|
|
# KS2-EVM: board Makefile
|
|
# (C) Copyright 2012-2015
|
|
# Texas Instruments Incorporated, <www.ti.com>
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += board.o
|
|
obj-$(CONFIG_K2HK_EVM) += board_k2hk.o
|
|
obj-$(CONFIG_K2HK_EVM) += ddr3_k2hk.o
|
|
obj-$(CONFIG_K2E_EVM) += board_k2e.o
|
|
obj-$(CONFIG_K2E_EVM) += ddr3_k2e.o
|
|
obj-$(CONFIG_K2L_EVM) += board_k2l.o
|
|
obj-$(CONFIG_K2L_EVM) += ddr3_k2l.o
|
|
obj-$(CONFIG_K2L_EVM) += ddr3_cfg.o
|
|
obj-$(CONFIG_K2G_EVM) += board_k2g.o
|
|
obj-$(CONFIG_K2G_EVM) += ddr3_k2g.o
|