diff options
author | Ley Foon Tan <ley.foon.tan@intel.com> | 2019-11-27 15:55:15 +0800 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2020-01-07 14:38:33 +0100 |
commit | 8b7962a34923d8eaa2459376b12f8cead7f3894a (patch) | |
tree | 71b51390be7d15cdb1d2c7418c3a8f9c82c10d59 /arch/arm/mach-socfpga/Makefile | |
parent | 2145e611fc9906b8df41aff3c3f6f93aa400e2c0 (diff) | |
download | u-boot-8b7962a34923d8eaa2459376b12f8cead7f3894a.tar.gz u-boot-8b7962a34923d8eaa2459376b12f8cead7f3894a.tar.xz u-boot-8b7962a34923d8eaa2459376b12f8cead7f3894a.zip |
arm: socfpga: Move firewall code to firewall file
Move firewall related code to new firewall.c, to share
code in Stratix 10 and Agilex.
SDMMC will transfer data to OCRAM in SPL. So, enable privilege for SDMMC
to allow DMA transfer to OCRAM.
Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Diffstat (limited to 'arch/arm/mach-socfpga/Makefile')
-rw-r--r-- | arch/arm/mach-socfpga/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-socfpga/Makefile b/arch/arm/mach-socfpga/Makefile index fc1181cb27..dab34d0ef2 100644 --- a/arch/arm/mach-socfpga/Makefile +++ b/arch/arm/mach-socfpga/Makefile @@ -51,6 +51,7 @@ ifdef CONFIG_TARGET_SOCFPGA_ARRIA10 obj-y += spl_a10.o endif ifdef CONFIG_TARGET_SOCFPGA_STRATIX10 +obj-y += firewall.o obj-y += spl_s10.o endif endif |