summaryrefslogtreecommitdiff
path: root/firmware/target/arm/sandisk/app.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/sandisk/app.lds')
-rw-r--r--firmware/target/arm/sandisk/app.lds56
1 files changed, 46 insertions, 10 deletions
diff --git a/firmware/target/arm/sandisk/app.lds b/firmware/target/arm/sandisk/app.lds
index 765a5f0389..54af494d72 100644
--- a/firmware/target/arm/sandisk/app.lds
+++ b/firmware/target/arm/sandisk/app.lds
@@ -21,6 +21,14 @@ INPUT(target/arm/crt0-pp.o)
21#define IRAMORIG 0x40000000 21#define IRAMORIG 0x40000000
22#define IRAMSIZE 0xc000 22#define IRAMSIZE 0xc000
23 23
24#ifdef CPU_PP502x
25#define NOCACHE_BASE 0x10000000
26#else
27#define NOCACHE_BASE 0x28000000
28#endif
29
30#define CACHEALIGN_SIZE 16
31
24/* End of the audio buffer, where the codec buffer starts */ 32/* End of the audio buffer, where the codec buffer starts */
25#define ENDAUDIOADDR (DRAMORIG + DRAMSIZE) 33#define ENDAUDIOADDR (DRAMORIG + DRAMSIZE)
26 34
@@ -70,6 +78,18 @@ SECTIONS
70 _dataend = .; 78 _dataend = .;
71 } > DRAM 79 } > DRAM
72 80
81#if NOCACHE_BASE != 0
82 /* .ncdata section is placed at uncached physical alias address and is
83 * loaded at the proper cached virtual address - no copying is
84 * performed in the init code */
85 .ncdata . + NOCACHE_BASE :
86 {
87 . = ALIGN(CACHEALIGN_SIZE);
88 *(.ncdata*)
89 . = ALIGN(CACHEALIGN_SIZE);
90 } AT> DRAM
91#endif
92
73 /DISCARD/ : 93 /DISCARD/ :
74 { 94 {
75 *(.eh_frame) 95 *(.eh_frame)
@@ -103,7 +123,7 @@ SECTIONS
103 _iend = .; 123 _iend = .;
104 } > IRAM 124 } > IRAM
105 125
106 .idle_stacks : 126 .idle_stacks (NOLOAD) :
107 { 127 {
108 *(.idle_stacks) 128 *(.idle_stacks)
109#if NUM_CORES > 1 129#if NUM_CORES > 1
@@ -116,7 +136,7 @@ SECTIONS
116 cop_idlestackend = .; 136 cop_idlestackend = .;
117 } > IRAM 137 } > IRAM
118 138
119 .stack : 139 .stack (NOLOAD) :
120 { 140 {
121 *(.stack) 141 *(.stack)
122 stackbegin = .; 142 stackbegin = .;
@@ -124,37 +144,53 @@ SECTIONS
124 stackend = .; 144 stackend = .;
125 } > IRAM 145 } > IRAM
126 146
127 .bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.iram) + SIZEOF(.vectors): 147 /* .bss and .ncbss are treated as a single section to use one init loop to
148 * zero it - note "_edata" and "_end" */
149 .bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.ncdata) +\
150 SIZEOF(.iram) + SIZEOF(.vectors) (NOLOAD) :
128 { 151 {
129 _edata = .; 152 _edata = .;
130 *(.bss*) 153 *(.bss*)
131 *(COMMON) 154 *(COMMON)
132 . = ALIGN(0x4); 155 . = ALIGN(0x4);
133 _end = .;
134 } > DRAM 156 } > DRAM
135 157
136 .audiobuf ALIGN(4) : 158#if NOCACHE_BASE != 0
159 .ncbss . + NOCACHE_BASE (NOLOAD):
160 {
161 . = ALIGN(CACHEALIGN_SIZE);
162 *(.ncbss*)
163 . = ALIGN(CACHEALIGN_SIZE);
164 } AT> DRAM
165#endif
166
167 /* This will be aligned by preceding alignments */
168 .endaddr . - NOCACHE_BASE (NOLOAD) :
169 {
170 _end = .;
171 } > DRAM
172
173 .audiobuf (NOLOAD) :
137 { 174 {
138 _audiobuffer = .; 175 _audiobuffer = .;
139 audiobuffer = .; 176 audiobuffer = .;
140 } > DRAM 177 } > DRAM
141 178
142 .audiobufend ENDAUDIOADDR: 179 .audiobufend ENDAUDIOADDR (NOLOAD) :
143 { 180 {
144 audiobufend = .; 181 audiobufend = .;
145 _audiobufend = .; 182 _audiobufend = .;
146 } > DRAM 183 } > DRAM
147 184
148 .codec ENDAUDIOADDR: 185 .codec ENDAUDIOADDR (NOLOAD) :
149 { 186 {
150 codecbuf = .; 187 codecbuf = .;
151 _codecbuf = .; 188 _codecbuf = .;
152 } 189 }
153 190
154 .plugin ENDADDR: 191 .plugin ENDADDR (NOLOAD) :
155 { 192 {
156 _pluginbuf = .; 193 _pluginbuf = .;
157 pluginbuf = .; 194 pluginbuf = .;
158 } 195 }
159} 196}
160