diff options
author | davidcunado-arm <david.cunado@arm.com> | 2017-12-24 19:52:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-24 19:52:17 +0000 |
commit | 9a2a38a201f207d7b19e854b5959c56ab8cd57e5 (patch) | |
tree | d69ecdc7f6c3e0dc6b5e8ed598f04283dfa5c181 /plat | |
parent | ac4626dc4845a82aa0a86c92134bbd996eaf0357 (diff) | |
parent | 9d32b55ccba029d43d5ca7ebc727a210b4eb53c7 (diff) | |
download | platform_external_arm-trusted-firmware-9a2a38a201f207d7b19e854b5959c56ab8cd57e5.tar.gz platform_external_arm-trusted-firmware-9a2a38a201f207d7b19e854b5959c56ab8cd57e5.tar.bz2 platform_external_arm-trusted-firmware-9a2a38a201f207d7b19e854b5959c56ab8cd57e5.zip |
Merge pull request #1203 from masahir0y/uniphier
uniphier: a bundle of fixes
Diffstat (limited to 'plat')
-rw-r--r-- | plat/socionext/uniphier/include/platform_def.h | 2 | ||||
-rw-r--r-- | plat/socionext/uniphier/platform.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plat/socionext/uniphier/include/platform_def.h b/plat/socionext/uniphier/include/platform_def.h index b5dc16aa9..cc046eb40 100644 --- a/plat/socionext/uniphier/include/platform_def.h +++ b/plat/socionext/uniphier/include/platform_def.h @@ -47,7 +47,7 @@ #define BL32_LIMIT (UNIPHIER_SEC_DRAM_LIMIT) #define UNIPHIER_BLOCK_BUF_SIZE 0x00400000 -#define UNIPHIER_BLOCK_BUF_BASE ((BL2_LIMIT) - \ +#define UNIPHIER_BLOCK_BUF_BASE ((BL2_BASE) - \ (UNIPHIER_BLOCK_BUF_SIZE)) #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32) diff --git a/plat/socionext/uniphier/platform.mk b/plat/socionext/uniphier/platform.mk index 3c78054b1..41d044487 100644 --- a/plat/socionext/uniphier/platform.mk +++ b/plat/socionext/uniphier/platform.mk @@ -116,5 +116,5 @@ endif .PHONY: bl1_gzip bl1_gzip: $(BUILD_PLAT)/bl1.bin.gzip %.gzip: % - @echo " GZIP $@" + @echo " GZIP $@" $(Q)(cat $< | gzip -n -f -9 > $@) || (rm -f $@ || false) |