summaryrefslogtreecommitdiff
path: root/board/sifive/fu540/Makefile
diff options
context:
space:
mode:
authorPragnesh Patel <pragnesh.patel@sifive.com>2020-05-29 11:33:35 +0530
committerAndes <uboot@andestech.com>2020-06-04 09:44:09 +0800
commit01cdef22ee455a4e67775b91e7f4c2a38c896159 (patch)
treeb9fd0d28c43f59bcb44d7ac6a06961b595b8b4b4 /board/sifive/fu540/Makefile
parent7c45fc9870ad7cb3f4516e39454c3e75ab0c4cfb (diff)
riscv: sifive: fu540: add SPL configuration
Add a support for SPL which will boot from L2 LIM (0x0800_0000) and then SPL will boot U-Boot FIT image (OpenSBI FW_DYNAMIC + u-boot.bin) from MMC boot devices. SPL related code is leveraged from FSBL (https://github.com/sifive/freedom-u540-c000-bootloader.git) Signed-off-by: Pragnesh Patel <pragnesh.patel@sifive.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com> Tested-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'board/sifive/fu540/Makefile')
-rw-r--r--board/sifive/fu540/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/board/sifive/fu540/Makefile b/board/sifive/fu540/Makefile
index 6e1862c475..b05e2f5807 100644
--- a/board/sifive/fu540/Makefile
+++ b/board/sifive/fu540/Makefile
@@ -3,3 +3,7 @@
# Copyright (c) 2019 Western Digital Corporation or its affiliates.
obj-y += fu540.o
+
+ifdef CONFIG_SPL_BUILD
+obj-y += spl.o
+endif