mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
509d4b9545
Xilinx ATF extending options for passing images from BL2(FSBL) to BL31. U-Boot SPL is FSBL replacement that's why it should generate handoff structure the same. Support only one entry which is U-Boot in EL2 itself. When FIT image is adopted structure generate should be data driven. Currently ATF is placing this structure at the beggining of OCM which is rewriting early parts of ATF which should be unused at that time. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
12 lines
239 B
Makefile
12 lines
239 B
Makefile
#
|
|
# (C) Copyright 2014 - 2015 Xilinx, Inc.
|
|
# Michal Simek <michal.simek@xilinx.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += clk.o
|
|
obj-y += cpu.o
|
|
obj-$(CONFIG_MP) += mp.o
|
|
obj-y += slcr.o
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o handoff.o
|