summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2017-05-26 20:43:14 -0700
committerStefan Agner <stefan.agner@toradex.com>2017-06-05 16:31:17 -0700
commitadfb9db36d686287bcdfd6cfcf51254f8b40f0f8 (patch)
treeb77f1a9347d51d1623b930ad17a1ee92f299c625 /arch
parentcc46ec5a790f05374ebc41edb0ab3328782da77b (diff)
imx: imx-common: add missing memory mapping for OCRAM_S
The OCRAM_S alias for Cortex-M4's system bus is missing. Add the alias so that firmwares which have code linked in that area can be loaded successfully. Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Acked-by: Brandon Shibley <brandon.shibley@toradex.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/armv7/mx7/soc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx7/soc.c b/arch/arm/cpu/armv7/mx7/soc.c
index 90a753910b..5ea03a3d2b 100644
--- a/arch/arm/cpu/armv7/mx7/soc.c
+++ b/arch/arm/cpu/armv7/mx7/soc.c
@@ -311,6 +311,7 @@ void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
const struct memorymap hostmap[] = {
{ .auxcore = 0x00000000, .host = 0x00180000, .size = 0x8000 },
{ .auxcore = 0x00180000, .host = 0x00180000, .size = 0x8000 },
+ { .auxcore = 0x20180000, .host = 0x00180000, .size = 0x8000 },
{ .auxcore = 0x1fff8000, .host = 0x007f8000, .size = 0x8000 },
{ .auxcore = 0x20000000, .host = 0x00800000, .size = 0x8000 },
{ .auxcore = 0x00900000, .host = 0x00900000, .size = 0x20000 },