Unverified Commit ede13422 authored by Dimitris Papastamos's avatar Dimitris Papastamos Committed by GitHub
Browse files

Merge pull request #1379 from CJKay/nsram-fix

Fix incorrect NSRAM memory map region for SGI-575
parents e1040aac d0223211
Showing with 7 additions and 4 deletions
+7 -4
...@@ -22,9 +22,6 @@ ...@@ -22,9 +22,6 @@
#define CSS_DEVICE_BASE 0x20000000 #define CSS_DEVICE_BASE 0x20000000
#define CSS_DEVICE_SIZE 0x0e000000 #define CSS_DEVICE_SIZE 0x0e000000
#define NSRAM_BASE 0x2e000000
#define NSRAM_SIZE 0x00008000
/* System Security Control Registers */ /* System Security Control Registers */
#define SSC_REG_BASE 0x2a420000 #define SSC_REG_BASE 0x2a420000
#define SSC_GPRETN (SSC_REG_BASE + 0x030) #define SSC_GPRETN (SSC_REG_BASE + 0x030)
...@@ -102,7 +99,7 @@ ...@@ -102,7 +99,7 @@
#define CSS_MAP_NSRAM MAP_REGION_FLAT( \ #define CSS_MAP_NSRAM MAP_REGION_FLAT( \
NSRAM_BASE, \ NSRAM_BASE, \
NSRAM_SIZE, \ NSRAM_SIZE, \
MT_DEVICE | MT_RW | MT_SECURE) MT_DEVICE | MT_RW | MT_NS)
/* Platform ID address */ /* Platform ID address */
#define SSC_VERSION_OFFSET 0x040 #define SSC_VERSION_OFFSET 0x040
......
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* Use the bypass address */ /* Use the bypass address */
#define PLAT_ARM_TRUSTED_ROM_BASE V2M_FLASH0_BASE + BL1_ROM_BYPASS_OFFSET #define PLAT_ARM_TRUSTED_ROM_BASE V2M_FLASH0_BASE + BL1_ROM_BYPASS_OFFSET
#define NSRAM_BASE 0x2e000000
#define NSRAM_SIZE 0x00008000 /* 32KB */
/* virtual address used by dynamic mem_protect for chunk_base */ /* virtual address used by dynamic mem_protect for chunk_base */
#define PLAT_ARM_MEM_PROTEC_VA_FRAME 0xc0000000 #define PLAT_ARM_MEM_PROTEC_VA_FRAME 0xc0000000
......
...@@ -52,6 +52,9 @@ ...@@ -52,6 +52,9 @@
#define PLAT_ARM_TRUSTED_ROM_BASE 0x0 #define PLAT_ARM_TRUSTED_ROM_BASE 0x0
#define PLAT_ARM_TRUSTED_ROM_SIZE 0x00080000 /* 512KB */ #define PLAT_ARM_TRUSTED_ROM_SIZE 0x00080000 /* 512KB */
#define PLAT_ARM_NSRAM_BASE 0x06000000
#define PLAT_ARM_NSRAM_SIZE 0x00080000 /* 512KB */
#define PLAT_MAX_PWR_LVL 1 #define PLAT_MAX_PWR_LVL 1
#define PLAT_ARM_G1S_IRQS ARM_G1S_IRQS, \ #define PLAT_ARM_G1S_IRQS ARM_G1S_IRQS, \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment