mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 06:30:39 +00:00
b7aef28953
RK3128 support up to 2GB DDR3 sdram, one channel, 32bit data width. This patch is only used for U-Boot, but not for SPL which will comes later, maybe after we merge all the common code into a common file. Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
13 lines
441 B
Makefile
13 lines
441 B
Makefile
#
|
|
# Copyright (c) 2017 Theobroma Systems Design und Consulting GmbH
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_ROCKCHIP_RK3368) = dmc-rk3368.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3128) = sdram_rk3128.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3188) = sdram_rk3188.o
|
|
obj-$(CONFIG_ROCKCHIP_RK322X) = sdram_rk322x.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3288) = sdram_rk3288.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3328) = sdram_rk3328.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3399) = sdram_rk3399.o
|