2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2012-08-13 19:03:19 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2012
|
|
|
|
# Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
# Aneesh V <aneesh@ti.com>
|
|
|
|
# Based on common/Makefile.
|
|
|
|
#
|
|
|
|
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
2019-07-16 08:12:02 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)FRAMEWORK) += spl.o
|
2017-07-04 09:16:47 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)BOOTROM_SUPPORT) += spl_bootrom.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += spl_fit.o
|
2022-05-04 20:52:25 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)LEGACY_IMAGE_FORMAT) += spl_legacy.o
|
2017-08-17 08:06:59 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)NOR_SUPPORT) += spl_nor.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)XIP_SUPPORT) += spl_xip.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)YMODEM_SUPPORT) += spl_ymodem.o
|
2016-07-12 18:28:13 +00:00
|
|
|
ifndef CONFIG_SPL_UBI
|
2017-07-04 09:16:47 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)NAND_SUPPORT) += spl_nand.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)ONENAND_SUPPORT) += spl_onenand.o
|
2016-07-12 18:28:13 +00:00
|
|
|
endif
|
2017-07-04 09:16:47 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)UBI) += spl_ubi.o
|
2021-08-08 18:20:30 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)NET) += spl_net.o
|
2021-08-08 18:20:09 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)MMC) += spl_mmc.o
|
2017-09-13 19:29:36 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)ATF) += spl_atf.o
|
2021-09-02 09:56:16 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)OPTEE_IMAGE) += spl_optee.o
|
2019-08-21 19:14:44 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)OPENSBI) += spl_opensbi.o
|
2019-02-01 16:40:07 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)USB_STORAGE) += spl_usb.o
|
2019-01-23 06:20:03 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)FS_FAT) += spl_fat.o
|
2019-01-23 06:20:05 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)FS_EXT4) += spl_ext.o
|
2021-08-08 18:20:17 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)SATA) += spl_sata.o
|
spl: Add semihosting boot method
This adds a boot method for loading the next stage from the host. It is
mostly modeled off of spl_load_image_ext. I am not really sure why/how
spl_load_image_fat uses three different methods to load the image, but
the simple case seems to work OK for now.
To control the presence of this boot method, we add a config symbol.
While we're at it, we update the original semihosting config symbol.
I think semihosting has some advantages of other forms of JTAG boot.
Common other ways to boot from JTAG include:
- Implementing DDR initialization through JTAG (typically with dozens of
lines of TCL) and then loading U-Boot. The DDR initialization
typically uses hard-coded register writes, and is not easily adapted
to different boards. BOOT_DEVICE_SMH allows booting with SPL,
leveraging U-Boot's existing DDR initialization code. This is the
method used by NXP's CodeWarrior IDE on Layerscape processors (see
AN12270).
- Loading a bootloader into SDRAM, waiting for it to initialize DDR, and
then loading U-Boot. This is tricky, because the debugger must stop the
boot after the bootloader has completed its work. Trying to load
U-Boot too early can cause failure to boot. This is the method used by
Xilinx with its Zynq(MP) processors.
- Loading SPL with BOOT_DEVICE_RAM and breaking before SPL loads the
image to load U-Boot at the appropriate place. This can be a bit
tricky, because the load address is dependent on the header size. An
elf with symbols must also be used in order to stop at the appropriate
point. BOOT_DEVICE_SMH can be viewed as an extension of this process,
where SPL automatically stops and tells the host where to place the
image.
Signed-off-by: Sean Anderson <sean.anderson@seco.com>
2022-03-22 20:59:19 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)SEMIHOSTING) += spl_semihosting.o
|
2019-01-17 19:43:02 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)DFU) += spl_dfu.o
|
2017-07-04 09:16:47 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)SPI_LOAD) += spl_spi.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)RAM_SUPPORT) += spl_ram.o
|
2017-08-16 18:00:54 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)USB_SDP_SUPPORT) += spl_sdp.o
|
2012-08-13 19:03:19 +00:00
|
|
|
endif
|