aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Grohmann <davide.grohmann@arm.com>2022-05-05 17:15:19 +0200
committerDavide Grohmann <davide.grohmann@arm.com>2022-05-06 11:24:19 +0200
commit8b53aad76ea95dc1f4c8ce64b6f8dc14f727b46f (patch)
tree72ac62a81e4c3606ef9ec52e353f17df396e4b51
parent9038df90bf14e17da774132cc6240d1b456a82fe (diff)
downloadethos-u-core-platform-8b53aad76ea95dc1f4c8ce64b6f8dc14f727b46f.tar.gz
Fix: length for scatter loading should be in words not in bytes
Divide by 4 the length in bytes to get length in words as expected by the CMSIS scatter loading implementation. Change-Id: I5d239e13739a578bd61dc0b594e3453e8dcdab4d
-rw-r--r--targets/corstone-300/platform.ld6
-rw-r--r--targets/corstone-310/platform.ld6
-rw-r--r--targets/corstone-polaris/platform.ld8
3 files changed, 10 insertions, 10 deletions
diff --git a/targets/corstone-300/platform.ld b/targets/corstone-300/platform.ld
index 76cb29c..12cc6ee 100644
--- a/targets/corstone-300/platform.ld
+++ b/targets/corstone-300/platform.ld
@@ -189,11 +189,11 @@ SECTIONS
__copy_table_start__ = .;
LONG (__etext)
LONG (__data_start__)
- LONG (__data_end__ - __data_start__)
+ LONG ((__data_end__ - __data_start__) / 4)
LONG (__eddr_data)
LONG (__sram_data_start__)
- LONG (__sram_data_end__ - __sram_data_start__ )
+ LONG ((__sram_data_end__ - __sram_data_start__) / 4)
__copy_table_end__ = .;
} > ITCM :rom_exec
@@ -203,7 +203,7 @@ SECTIONS
. = ALIGN(4);
__zero_table_start__ = .;
LONG (__bss_start__)
- LONG (__bss_end__ - __bss_start__)
+ LONG ((__bss_end__ - __bss_start__) / 4)
__zero_table_end__ = .;
/**
diff --git a/targets/corstone-310/platform.ld b/targets/corstone-310/platform.ld
index 21c46b9..9d41f8f 100644
--- a/targets/corstone-310/platform.ld
+++ b/targets/corstone-310/platform.ld
@@ -216,7 +216,7 @@ SECTIONS
LONG (LOADADDR(.sram))
LONG (ADDR(.sram))
- LONG (SIZEOF(.sram))
+ LONG (SIZEOF(.sram) / 4)
__copy_table_end__ = .;
} > BRAM :rom_exec
@@ -227,10 +227,10 @@ SECTIONS
__zero_table_start__ = .;
LONG (ADDR(.bss))
- LONG (SIZEOF(.bss))
+ LONG (SIZEOF(.bss) / 4)
LONG (ADDR(.sram.bss))
- LONG (SIZEOF(.sram.bss))
+ LONG (SIZEOF(.sram.bss) / 4)
__zero_table_end__ = .;
} > BRAM :rom_exec
diff --git a/targets/corstone-polaris/platform.ld b/targets/corstone-polaris/platform.ld
index f886283..3880da0 100644
--- a/targets/corstone-polaris/platform.ld
+++ b/targets/corstone-polaris/platform.ld
@@ -200,11 +200,11 @@ SECTIONS
LONG (LOADADDR(.sram))
LONG (ADDR(.sram))
- LONG (SIZEOF(.sram))
+ LONG (SIZEOF(.sram) / 4)
LONG (LOADADDR(.bram))
LONG (ADDR(.bram))
- LONG (SIZEOF(.bram))
+ LONG (SIZEOF(.bram) / 4)
__copy_table_end__ = .;
} > ITCM :rom_exec
@@ -215,10 +215,10 @@ SECTIONS
__zero_table_start__ = .;
LONG (ADDR(.bss))
- LONG (SIZEOF(.bss))
+ LONG (SIZEOF(.bss) / 4)
LONG (ADDR(.sram.bss))
- LONG (SIZEOF(.sram.bss))
+ LONG (SIZEOF(.sram.bss) / 4)
__zero_table_end__ = .;
} > ITCM :rom_exec