summaryrefslogtreecommitdiff
path: root/chip/ish/aontaskfw/ish_aontask.lds.S
diff options
context:
space:
mode:
Diffstat (limited to 'chip/ish/aontaskfw/ish_aontask.lds.S')
-rw-r--r--chip/ish/aontaskfw/ish_aontask.lds.S18
1 files changed, 0 insertions, 18 deletions
diff --git a/chip/ish/aontaskfw/ish_aontask.lds.S b/chip/ish/aontaskfw/ish_aontask.lds.S
index b5361432a2..ca5f54f705 100644
--- a/chip/ish/aontaskfw/ish_aontask.lds.S
+++ b/chip/ish/aontaskfw/ish_aontask.lds.S
@@ -32,23 +32,10 @@ ENTRY(ish_aon_main);
* loader.
*/
-/**
- * Snowball data
- */
-#if defined(CHIP_FAMILY_ISH3)
-/* on ISH3, reused ISH2PMC IPC message registers */
-#define SNOWBALL_BASE IPC_ISH2PMC_MSG_BASE
-#else
-/* from ISH4, used reserved rom part of AON memory */
-#define SNOWBALL_BASE (CONFIG_AON_PERSISTENT_BASE + 256)
-#endif
-#define SNOWBALL_LEN (4*32)
-
MEMORY
{
/* leave STACK_SIZE bytes in the end of memory for stack */
RAM : ORIGIN = SRAM_START, LENGTH = RAM_LEN
- SNOWBALL : ORIGIN = SNOWBALL_BASE, LENGTH = SNOWBALL_LEN
}
SECTIONS
@@ -59,11 +46,6 @@ SECTIONS
KEEP(*(.data.aon_share))
} > RAM
- .data.snowball : AT(SNOWBALL_BASE)
- {
- KEEP(*(.data.snowball))
- } > SNOWBALL
-
.data :
{
*(.data)