Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Tom Rini | 28591df | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2012 |
| 4 | # Texas Instruments Incorporated - http://www.ti.com/ |
| 5 | # Aneesh V <aneesh@ti.com> |
Tom Rini | 28591df | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 6 | # Based on common/Makefile. |
| 7 | # |
| 8 | |
Tom Rini | 28591df | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 9 | ifdef CONFIG_SPL_BUILD |
Heiko Stuebner | 4a0da7c | 2019-07-16 10:12:02 +0200 | [diff] [blame] | 10 | obj-$(CONFIG_$(SPL_TPL_)FRAMEWORK) += spl.o |
Philipp Tomsich | ae7dcd8 | 2017-07-04 11:16:47 +0200 | [diff] [blame] | 11 | obj-$(CONFIG_$(SPL_TPL_)BOOTROM_SUPPORT) += spl_bootrom.o |
| 12 | obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += spl_fit.o |
Andrew Davis | 360ec6a | 2022-05-04 15:52:25 -0500 | [diff] [blame] | 13 | obj-$(CONFIG_$(SPL_TPL_)LEGACY_IMAGE_FORMAT) += spl_legacy.o |
Philipp Tomsich | e062f91 | 2017-08-17 10:06:59 +0200 | [diff] [blame] | 14 | obj-$(CONFIG_$(SPL_TPL_)NOR_SUPPORT) += spl_nor.o |
| 15 | obj-$(CONFIG_$(SPL_TPL_)XIP_SUPPORT) += spl_xip.o |
| 16 | obj-$(CONFIG_$(SPL_TPL_)YMODEM_SUPPORT) += spl_ymodem.o |
Ladislav Michl | 2a8ea48 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 17 | ifndef CONFIG_SPL_UBI |
Philipp Tomsich | ae7dcd8 | 2017-07-04 11:16:47 +0200 | [diff] [blame] | 18 | obj-$(CONFIG_$(SPL_TPL_)NAND_SUPPORT) += spl_nand.o |
| 19 | obj-$(CONFIG_$(SPL_TPL_)ONENAND_SUPPORT) += spl_onenand.o |
Ladislav Michl | 2a8ea48 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 20 | endif |
Philipp Tomsich | ae7dcd8 | 2017-07-04 11:16:47 +0200 | [diff] [blame] | 21 | obj-$(CONFIG_$(SPL_TPL_)UBI) += spl_ubi.o |
Simon Glass | 041a0ac | 2021-08-08 12:20:30 -0600 | [diff] [blame] | 22 | obj-$(CONFIG_$(SPL_TPL_)NET) += spl_net.o |
Simon Glass | b58bfe0 | 2021-08-08 12:20:09 -0600 | [diff] [blame] | 23 | obj-$(CONFIG_$(SPL_TPL_)MMC) += spl_mmc.o |
Philipp Tomsich | f661881 | 2017-09-13 21:29:36 +0200 | [diff] [blame] | 24 | obj-$(CONFIG_$(SPL_TPL_)ATF) += spl_atf.o |
Patrick Delaunay | a7ca480 | 2021-09-02 11:56:16 +0200 | [diff] [blame] | 25 | obj-$(CONFIG_$(SPL_TPL_)OPTEE_IMAGE) += spl_optee.o |
Lukas Auer | 515b934 | 2019-08-21 21:14:44 +0200 | [diff] [blame] | 26 | obj-$(CONFIG_$(SPL_TPL_)OPENSBI) += spl_opensbi.o |
Abel Vesa | 5ea11ba5 | 2019-02-01 16:40:07 +0000 | [diff] [blame] | 27 | obj-$(CONFIG_$(SPL_TPL_)USB_STORAGE) += spl_usb.o |
Tien Fong Chee | 6fd0a71 | 2019-01-23 14:20:03 +0800 | [diff] [blame] | 28 | obj-$(CONFIG_$(SPL_TPL_)FS_FAT) += spl_fat.o |
Tien Fong Chee | 6091dd1 | 2019-01-23 14:20:05 +0800 | [diff] [blame] | 29 | obj-$(CONFIG_$(SPL_TPL_)FS_EXT4) += spl_ext.o |
Simon Glass | 081a45a | 2021-08-08 12:20:17 -0600 | [diff] [blame] | 30 | obj-$(CONFIG_$(SPL_TPL_)SATA) += spl_sata.o |
Sean Anderson | 89346ad | 2022-03-22 16:59:19 -0400 | [diff] [blame] | 31 | obj-$(CONFIG_$(SPL_TPL_)SEMIHOSTING) += spl_semihosting.o |
Andrew F. Davis | 6d932e6 | 2019-01-17 13:43:02 -0600 | [diff] [blame] | 32 | obj-$(CONFIG_$(SPL_TPL_)DFU) += spl_dfu.o |
Philipp Tomsich | ae7dcd8 | 2017-07-04 11:16:47 +0200 | [diff] [blame] | 33 | obj-$(CONFIG_$(SPL_TPL_)SPI_LOAD) += spl_spi.o |
| 34 | obj-$(CONFIG_$(SPL_TPL_)RAM_SUPPORT) += spl_ram.o |
Stefan Agner | d0d9d21 | 2017-08-16 11:00:54 -0700 | [diff] [blame] | 35 | obj-$(CONFIG_$(SPL_TPL_)USB_SDP_SUPPORT) += spl_sdp.o |
Tom Rini | 28591df | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 36 | endif |