diff options
author | Dimitris Papastamos <dimitris.papastamos@arm.com> | 2018-05-15 18:40:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-15 18:40:03 +0100 |
commit | ede13422f7b6e1664b4791c4c773e96b94b98c78 (patch) | |
tree | 2f10f8708d7584ceb3ed29e33d685a26b7a23f45 /include | |
parent | e1040aac7470c2054cb9f1ec04297a4d8a82fb83 (diff) | |
parent | d0223211e8c06d5833f31044e3b8587683690ced (diff) |
Merge pull request #1379 from CJKay/nsram-fix
Fix incorrect NSRAM memory map region for SGI-575
Diffstat (limited to 'include')
-rw-r--r-- | include/plat/arm/css/common/css_def.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/plat/arm/css/common/css_def.h b/include/plat/arm/css/common/css_def.h index deea1bb4..6d68b440 100644 --- a/include/plat/arm/css/common/css_def.h +++ b/include/plat/arm/css/common/css_def.h @@ -22,9 +22,6 @@ #define CSS_DEVICE_BASE 0x20000000 #define CSS_DEVICE_SIZE 0x0e000000 -#define NSRAM_BASE 0x2e000000 -#define NSRAM_SIZE 0x00008000 - /* System Security Control Registers */ #define SSC_REG_BASE 0x2a420000 #define SSC_GPRETN (SSC_REG_BASE + 0x030) @@ -102,7 +99,7 @@ #define CSS_MAP_NSRAM MAP_REGION_FLAT( \ NSRAM_BASE, \ NSRAM_SIZE, \ - MT_DEVICE | MT_RW | MT_SECURE) + MT_DEVICE | MT_RW | MT_NS) /* Platform ID address */ #define SSC_VERSION_OFFSET 0x040 |