mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 16:10:58 +00:00
15afe725f3
This Octeon 3 DDR driver is ported from the 2013 Cavium / Marvell U-Boot repository. It currently supports DDR4 on Octeon 3. It can be later extended to support also DDR3 and Octeon 2 platforms. Part 3 includes the DIMM SPD handling code and the Kconfig / Makefile integration. Signed-off-by: Aaron Williams <awilliams@marvell.com> Signed-off-by: Stefan Roese <sr@denx.de>
23 lines
666 B
Makefile
23 lines
666 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2015 Google, Inc
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
obj-$(CONFIG_RAM) += ram-uclass.o
|
|
obj-$(CONFIG_MPC83XX_SDRAM) += mpc83xx_sdram.o
|
|
obj-$(CONFIG_SANDBOX) += sandbox_ram.o
|
|
obj-$(CONFIG_STM32MP1_DDR) += stm32mp1/
|
|
obj-$(CONFIG_STM32_SDRAM) += stm32_sdram.o
|
|
obj-$(CONFIG_ARCH_BMIPS) += bmips_ram.o
|
|
|
|
obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
|
|
|
|
obj-$(CONFIG_K3_AM654_DDRSS) += k3-am654-ddrss.o
|
|
obj-$(CONFIG_ARCH_MEDIATEK) += mediatek/
|
|
obj-$(CONFIG_K3_J721E_DDRSS) += k3-j721e/
|
|
|
|
obj-$(CONFIG_IMXRT_SDRAM) += imxrt_sdram.o
|
|
|
|
obj-$(CONFIG_RAM_SIFIVE) += sifive/
|
|
|
|
obj-$(CONFIG_ARCH_OCTEON) += octeon/
|