mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
fdf8529afc
This patch introduces SPL to enable a loader stub that being loaded by the code from the internal on-chip ROM. It loads the final uboot image into DDR, then jump to it to begin execution. The SPL's size is sizeable, the maximum size must not exceed the size of L2 SRAM. It initializes the DDR through SPD code, and copys final uboot image to DDR. So there are two stage uboot images: * spl_boot, 96KB size. The env variables are copied to L2 SRAM, so that ddr spd code can get the interleaving mode setting in env. It loads final uboot image from offset 96KB. * final uboot image, size is variable depends on the functions enabled. Signed-off-by: Ying Zhang <b40530@freescale.com> Acked-by: York Sun <yorksun@freescale.com>
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
#
|
|
# (C) Copyright 2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
LIB := $(obj)libspi_flash.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
COBJS-$(CONFIG_SPL_SPI_LOAD) += spi_spl_load.o
|
|
COBJS-$(CONFIG_SPL_SPI_BOOT) += fsl_espi_spl.o
|
|
endif
|
|
|
|
COBJS-$(CONFIG_SPI_FLASH) += spi_flash.o
|
|
COBJS-$(CONFIG_SPI_FLASH_ATMEL) += atmel.o
|
|
COBJS-$(CONFIG_SPI_FLASH_EON) += eon.o
|
|
COBJS-$(CONFIG_SPI_FLASH_GIGADEVICE) += gigadevice.o
|
|
COBJS-$(CONFIG_SPI_FLASH_MACRONIX) += macronix.o
|
|
COBJS-$(CONFIG_SPI_FLASH_SPANSION) += spansion.o
|
|
COBJS-$(CONFIG_SPI_FLASH_SST) += sst.o
|
|
COBJS-$(CONFIG_SPI_FLASH_STMICRO) += stmicro.o
|
|
COBJS-$(CONFIG_SPI_FLASH_WINBOND) += winbond.o
|
|
COBJS-$(CONFIG_SPI_FRAM_RAMTRON) += ramtron.o
|
|
COBJS-$(CONFIG_SPI_M95XXX) += eeprom_m95xxx.o
|
|
|
|
COBJS := $(COBJS-y)
|
|
SRCS := $(COBJS:.o=.c)
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(obj).depend $(OBJS)
|
|
$(call cmd_link_o_target, $(OBJS))
|
|
|
|
#########################################################################
|
|
|
|
# defines $(obj).depend target
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
sinclude $(obj).depend
|
|
|
|
#########################################################################
|