mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
6df8706dc2
Introduce a framework that allows loading the System Firmware (SYSFW) binary as well as the associated configuration data from an image tree blob named "sysfw.itb" from an FS-based MMC boot media or from an MMC RAW mode partition or sector. To simplify the handling of and loading from the different boot media we tap into the existing U-Boot SPL framework usually used for loading U-Boot by building on an earlier commit that exposes some of that functionality. Note that this initial implementation only supports FS and RAW-based eMMC/SD card boot. Signed-off-by: Andreas Dannenberg <dannenberg@ti.com> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
13 lines
421 B
Makefile
13 lines
421 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
|
|
# Lokesh Vutla <lokeshvutla@ti.com>
|
|
|
|
obj-$(CONFIG_SOC_K3_AM6) += am6_init.o
|
|
obj-$(CONFIG_ARM64) += arm64-mmu.o
|
|
obj-$(CONFIG_CPU_V7R) += r5_mpu.o lowlevel_init.o
|
|
obj-$(CONFIG_TI_SECURE_DEVICE) += security.o
|
|
ifeq ($(CONFIG_SPL_BUILD),y)
|
|
obj-$(CONFIG_K3_LOAD_SYSFW) += sysfw-loader.o
|
|
endif
|
|
obj-y += common.o
|