mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
b19e288f47
Add support of 2-stage NAND/SPI/SD boot loader using SPL framework. PBL initializes the internal CPC-SRAM and copy SPL(160K) to it, SPL further initializes DDR using SPD and environment and copy u-boot(768 KB) from SPI/SD/NAND to DDR, finally SPL transfers control to u-boot. Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com> [York Sun: fix boards.cfg for T2081QDS_SDCARD and _SPIFLASH] Reviewed-by: York Sun <yorksun@freescale.com>
19 lines
384 B
Makefile
19 lines
384 B
Makefile
#
|
|
# Copyright 2013 Freescale Semiconductor, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
else
|
|
obj-$(CONFIG_T2080QDS) += t208xqds.o
|
|
obj-$(CONFIG_T2080QDS) += eth_t208xqds.o
|
|
obj-$(CONFIG_T2081QDS) += t208xqds.o
|
|
obj-$(CONFIG_T2081QDS) += eth_t208xqds.o
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
endif
|
|
|
|
obj-y += ddr.o
|
|
obj-y += law.o
|
|
obj-y += tlb.o
|