summaryrefslogtreecommitdiff
path: root/boot/Makefile
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2024-08-07 16:47:27 -0600
committerTom Rini <[email protected]>2024-08-09 16:03:19 -0600
commit90469da3da0dc6f113dfc582d4db2ac9e9f171ec (patch)
treedc22bbe1b55a00d252a9952b87b0fd33c95981ee /boot/Makefile
parent16b9c64caf900a9ce4623090e8263a7da2746998 (diff)
upl: Add support for reading a upl handoff
Universal Payload provides a standard way of handing off control between two firmware phases. Add support for reading the handoff information into a structure. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'boot/Makefile')
-rw-r--r--boot/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/boot/Makefile b/boot/Makefile
index dff6f99081a..9e4e5a602dc 100644
--- a/boot/Makefile
+++ b/boot/Makefile
@@ -43,6 +43,9 @@ endif
obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o
obj-$(CONFIG_$(SPL_TPL_)FDT_SIMPLEFB) += fdt_simplefb.o
+obj-$(CONFIG_$(SPL_TPL_)UPL) += upl_common.o
+obj-$(CONFIG_$(SPL_TPL_)UPL_READ) += upl_read.o
+
obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += image-fdt.o
obj-$(CONFIG_$(SPL_TPL_)FIT_SIGNATURE) += fdt_region.o
obj-$(CONFIG_$(SPL_TPL_)FIT) += image-fit.o