38
+ − 1 /*****************************************************************************
+ − 2 * -*- coding: UTF-8 -*-
+ − 3 *
+ − 4 * \file Common/CPU1-F429.ld
+ − 5 * \brief Linker Script for CPU1 alias Discovery
+ − 6 * \author Ac6 workbench, Heinrichs Weikamp, and JD Gascuel
+ − 7 * \date 2018
+ − 8 *
+ − 9 * \details
+ − 10 * Linker script for STM32F429IIT6 Device from STM32F4 series
+ − 11 * - 192Kbytes RAM
+ − 12 * - 2048Kbytes ROM
+ − 13 *
+ − 14 * Set heap size, stack size and stack location according
+ − 15 * to application requirements.
+ − 16 *
+ − 17 * Set memory bank area and size if external memory is used.
+ − 18 *
+ − 19 * $Id$
+ − 20 *****************************************************************************
+ − 21 * \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh
+ − 22 *
+ − 23 * This program is free software: you can redistribute it and/or modify
+ − 24 * it under the terms of the GNU General Public License as published by
+ − 25 * the Free Software Foundation, either version 3 of the License, or
+ − 26 * (at your option) any later version.
+ − 27 *
+ − 28 * This program is distributed in the hope that it will be useful,
+ − 29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ − 30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ − 31 * GNU General Public License for more details.
+ − 32 *
+ − 33 * You should have received a copy of the GNU General Public License
+ − 34 * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ − 35 *****************************************************************************
+ − 36 * HISTORY
+ − 37 * 2017-12-18 jDG: Mix between std AC6 file and chw stm32f429zi_flash.ld settings.
+ − 38 */
+ − 39
+ − 40 /* Entry Point */
+ − 41 ENTRY(Reset_Handler)
+ − 42
+ − 43 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
+ − 44 OUTPUT_ARCH(arm)
+ − 45 SEARCH_DIR(.)
+ − 46
+ − 47 /****************************************************************************/
+ − 48 /***************************** Memory Definition ****************************/
+ − 49 MEMORY
+ − 50 {
699
+ − 51 ROM_BOOT (rx) : ORIGIN = 0x08000000, LENGTH = 0x00040000 /* 256K */
+ − 52 ROM (rx) : ORIGIN = 0x08040000, LENGTH = 0x00090000 /* 576K */
73
+ − 53 UPPER(rx) : ORIGIN = 0x08132000, LENGTH = 0xAE270 /* 713K */
38
+ − 54 RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 192K
+ − 55 CCRAM (rwx) : ORIGIN = 0x10000000, LENGTH = 64K
+ − 56 }
+ − 57
43
+ − 58 /* Linker file shall be shared between Bootloader, Font and Firmware projects. Not used memory areas to be cut during bin generation */
+ − 59
38
+ − 60 /* Make sure ROM and UPPER are contiguous, and map 2MB */
43
+ − 61 /* TODO: At the moment the size of the defined memory will be directly reflected into the file size of resultion bin => Keep small until not used memory may be excluded from build */
+ − 62 /*ASSERT( ORIGIN(UPPER) - ORIGIN(ROM) == LENGTH(ROM), "ROM lower and upper region shall be continuous" )
+ − 63 /*ASSERT( LENGTH(ROM) + LENGTH(UPPER) == 2048K, "ROM lower + upper regions = 2MB" ) */
38
+ − 64
+ − 65 /* Highest address of the user mode stack */
43
+ − 66 /*_estack = ORIGIN(RAM) + LENGTH(RAM);*/
38
+ − 67
+ − 68
+ − 69 _Min_Heap_Size = 0; /* no required heap (malloc'ed space) */
43
+ − 70 _Min_Stack_Size = 0x08000; /* required 32K of stack */
38
+ − 71
+ − 72 /* Linker script to place sections and symbol values. Should be used together
+ − 73 * with other linker script that defines memory regions FLASH and RAM.
+ − 74 * It references following symbols, which must be defined in code:
+ − 75 * Reset_Handler : Entry of reset handler
+ − 76 *
+ − 77 * It defines following symbols, which code can use without definition:
+ − 78 * __exidx_start
+ − 79 * __exidx_end
+ − 80 * __preinit_array_start
+ − 81 * __preinit_array_end
+ − 82 * __init_array_start
+ − 83 * __init_array_end
+ − 84 * __fini_array_start
+ − 85 * __fini_array_end
+ − 86 * _sbss
+ − 87 * __bss_start__
+ − 88 * _ebss
+ − 89 * __bss_end__
+ − 90 * _edata
+ − 91 * end
+ − 92 * _end
+ − 93 * _estack
+ − 94 */
+ − 95
+ − 96 /****************************************************************************/
+ − 97 /*************************** Code and Data Sections *************************/
+ − 98 SECTIONS
+ − 99 {
+ − 100 /******************* NVIC reset and interupt vectors **********************/
391
+ − 101
43
+ − 102 .isr_vector 0x08040000 :
38
+ − 103 {
43
+ − 104 . = ALIGN(4);
38
+ − 105 KEEP( *(.isr_vector) )
43
+ − 106 KEEP(*(.init))
38
+ − 107 } >ROM
+ − 108
43
+ − 109
391
+ − 110 .StdLibs 0x08040200:
38
+ − 111 {
391
+ − 112 . = ALIGN(4);
+ − 113 *libm.a:*(*)
38
+ − 114 } >ROM
+ − 115
43
+ − 116 .rodata :
+ − 117 {
+ − 118 . = ALIGN(4);
+ − 119 *(.rodata) /* .rodata sections (constants, strings, etc.) */
+ − 120 *(.rodata*) /* .rodata* sections (constants, strings, etc.) */
+ − 121 . = ALIGN(4);
+ − 122 } >ROM
+ − 123
391
+ − 124 /********************** Constant data into ROM memory *********************/
+ − 125
+ − 126
43
+ − 127 .ARM.extab : {
+ − 128 . = ALIGN(4);
+ − 129 *(.ARM.extab* .gnu.linkonce.armextab.*)
+ − 130 . = ALIGN(4);
+ − 131 } >ROM
+ − 132
+ − 133 .ARM : {
+ − 134 . = ALIGN(4);
+ − 135 __exidx_start = .;
+ − 136 *(.ARM.exidx*)
+ − 137 __exidx_end = .;
+ − 138 . = ALIGN(4);
+ − 139 } >ROM
+ − 140
+ − 141 .preinit_array :
38
+ − 142 {
+ − 143 . = ALIGN(4);
+ − 144 PROVIDE_HIDDEN( __preinit_array_start = . );
+ − 145 KEEP( *(.preinit_array*) )
+ − 146 PROVIDE_HIDDEN( __preinit_array_end = . );
+ − 147 . = ALIGN(4);
+ − 148 } >ROM
+ − 149
+ − 150 .init_array :
+ − 151 {
+ − 152 . = ALIGN(4);
+ − 153 PROVIDE_HIDDEN( __init_array_start = . );
+ − 154 KEEP( *(SORT(.init_array.*)) )
+ − 155 KEEP( *(.init_array*) )
+ − 156 PROVIDE_HIDDEN( __init_array_end = . );
+ − 157 . = ALIGN(4);
+ − 158 } >ROM
+ − 159
+ − 160 .fini_array :
+ − 161 {
+ − 162 . = ALIGN(4);
+ − 163 PROVIDE_HIDDEN( __fini_array_start = . );
+ − 164 KEEP( *(SORT(.fini_array.*)) )
+ − 165 KEEP( *(.fini_array*) )
+ − 166 PROVIDE_HIDDEN( __fini_array_end = . );
+ − 167 . = ALIGN(4);
+ − 168 } >ROM
43
+ − 169
+ − 170 /************* The program code and other data into ROM memory ************/
38
+ − 171
43
+ − 172
391
+ − 173 .firmware_FirmwareData 0x08050000 : {
+ − 174 KEEP( *(.firmware_firmware_data) )
+ − 175 } >ROM
+ − 176
+ − 177 .font_firmware_data 0x08132000 : {
+ − 178 KEEP( *(.font_firmware_data) )
+ − 179
+ − 180 } >UPPER
+ − 181
+ − 182
+ − 183 .text 0x08054000 :
+ − 184 {
+ − 185 . = ALIGN(4);
+ − 186 *(.text) /* .text sections (code) */
+ − 187 *(.text*) /* .text* sections (code) */
+ − 188 *(.glue_7) /* glue arm to thumb code */
+ − 189 *(.glue_7t) /* glue thumb to arm code */
+ − 190 *(.eh_frame)
+ − 191 . = ALIGN(4);
+ − 192 _etext = .; /* define a global symbols at end of code */
+ − 193 } >ROM
+ − 194
+ − 195
+ − 196
+ − 197
38
+ − 198
+ − 199
+ − 200 /************* Data and Structures at absolute address in ROM *************/
+ − 201
+ − 202 /* FIXME: this sets the SFirmwareData structure, not the code ... */
+ − 203 .bootloader_firmware_data 0x0800A000 : {
+ − 204 PROVIDE( bootloader_FirmwareData = . );
+ − 205 KEEP( *(.bootloader_firmware_data) )
+ − 206 } > ROM
+ − 207
73
+ − 208 /* Define Known Address for Each Font */
123
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 209 /* Flash Sector 23 is protected (bootloader font + image) => use end of sector 22 */
73
+ − 210
569
+ − 211 .lower_fonts 0x080A0000 : {
+ − 212 *(.lower_fonts.image_data_*)
+ − 213
+ − 214 *(.lower_fonts.*)
+ − 215 } > ROM
+ − 216
+ − 217 .lower_directory : {
+ − 218 *(.lower_font_directory*)
+ − 219 } > ROM
43
+ − 220
+ − 221 /* TODO: the linker does not seem to work as the one of used for initial bootloader ==> Reconstruct layout to keep it compatible with the first version */
+ − 222 /* TODO: cleanup during next iteration */
38
+ − 223
+ − 224 /* Put fonts and images in UPPER region */
43
+ − 225 .upper_fonts 0x08132040 : {
38
+ − 226 __upper_font_data = .;
43
+ − 227 . = 0x13E;
+ − 228 *(.upper_fonts.image_data_FontT144_0x0030)
+ − 229 . = 0x02515;
+ − 230 *(.upper_fonts.image_data_FontT144_0x0031)
+ − 231 . = 0x03469;
+ − 232 *(.upper_fonts.image_data_FontT144_0x0032)
+ − 233 . = 0x4FDC;
+ − 234 *(.upper_fonts.image_data_FontT144_0x0033)
+ − 235 . = 0x6862;
+ − 236 *(.upper_fonts.image_data_FontT144_0x0034)
+ − 237 . = 0x86C2;
+ − 238 *(.upper_fonts.image_data_FontT144_0x0035)
+ − 239 . = 0x9FB3;
+ − 240 *(.upper_fonts.image_data_FontT144_0x0036)
+ − 241 . = 0xBB26;
+ − 242 *(.upper_fonts.image_data_FontT144_0x0037)
+ − 243 . = 0xD845;
+ − 244 *(.upper_fonts.image_data_FontT144_0x0038)
+ − 245 . = 0xF34D;
+ − 246 *(.upper_fonts.image_data_FontT144_0x0039)
+ − 247 . = 0x10EC0;
+ − 248 *(.upper_fonts.image_data_FontT24_0x0020)
+ − 249 *(.upper_fonts.image_data_FontT24_0x0021)
+ − 250 *(.upper_fonts.image_data_FontT24_0x0022)
+ − 251 *(.upper_fonts.image_data_FontT24_0x0023)
+ − 252 *(.upper_fonts.image_data_FontT24_0x0024)
+ − 253 *(.upper_fonts.image_data_FontT24_0x0025)
+ − 254 *(.upper_fonts.image_data_FontT24_0x0026)
+ − 255 *(.upper_fonts.image_data_FontT24_0x0027)
+ − 256 *(.upper_fonts.image_data_FontT24_0x0028)
+ − 257 *(.upper_fonts.image_data_FontT24_0x0029)
+ − 258 *(.upper_fonts.image_data_FontT24_0x002a)
+ − 259 *(.upper_fonts.image_data_FontT24_0x003f)
+ − 260 *(.upper_fonts.image_data_FontT24_0x002c)
+ − 261 *(.upper_fonts.image_data_FontT24_0x002d)
+ − 262 *(.upper_fonts.image_data_FontT24_0x002e)
+ − 263 *(.upper_fonts.image_data_FontT24_0x002f)
+ − 264 *(.upper_fonts.image_data_FontT24_0x0030)
+ − 265 *(.upper_fonts.image_data_FontT24_0x0031)
+ − 266 *(.upper_fonts.image_data_FontT24_0x0032)
+ − 267 *(.upper_fonts.image_data_FontT24_0x0033)
+ − 268 *(.upper_fonts.image_data_FontT24_0x0034)
+ − 269 *(.upper_fonts.image_data_FontT24_0x0035)
+ − 270 *(.upper_fonts.image_data_FontT24_0x0036)
+ − 271 *(.upper_fonts.image_data_FontT24_0x0037)
+ − 272 *(.upper_fonts.image_data_FontT24_0x0038)
+ − 273 *(.upper_fonts.image_data_FontT24_0x0039)
+ − 274 *(.upper_fonts.image_data_FontT24_0x003a)
+ − 275 *(.upper_fonts.image_data_FontT24_0x003b)
+ − 276 *(.upper_fonts.image_data_FontT24_0x003c)
+ − 277 *(.upper_fonts.image_data_FontT24_0x003d)
+ − 278 *(.upper_fonts.image_data_FontT24_0x003e)
+ − 279 . = . + 0x8c;
+ − 280 *(.upper_fonts.image_data_FontT24_0x0040)
+ − 281 *(.upper_fonts.image_data_FontT24_0x0041)
+ − 282 *(.upper_fonts.image_data_FontT24_0x0042)
+ − 283 *(.upper_fonts.image_data_FontT24_0x0043)
+ − 284 *(.upper_fonts.image_data_FontT24_0x0044)
+ − 285 *(.upper_fonts.image_data_FontT24_0x0045)
+ − 286 *(.upper_fonts.image_data_FontT24_0x0046)
+ − 287 *(.upper_fonts.image_data_FontT24_0x0047)
+ − 288 *(.upper_fonts.image_data_FontT24_0x0048)
+ − 289 *(.upper_fonts.image_data_FontT24_0x0049)
+ − 290 *(.upper_fonts.image_data_FontT24_0x004a)
+ − 291 *(.upper_fonts.image_data_FontT24_0x004b)
+ − 292 *(.upper_fonts.image_data_FontT24_0x004c)
+ − 293 *(.upper_fonts.image_data_FontT24_0x004d)
+ − 294 *(.upper_fonts.image_data_FontT24_0x004e)
+ − 295 *(.upper_fonts.image_data_FontT24_0x004f)
+ − 296 *(.upper_fonts.image_data_FontT24_0x0050)
+ − 297 *(.upper_fonts.image_data_FontT24_0x0051)
+ − 298 *(.upper_fonts.image_data_FontT24_0x0052)
+ − 299 *(.upper_fonts.image_data_FontT24_0x0053)
+ − 300 *(.upper_fonts.image_data_FontT24_0x0054)
+ − 301 *(.upper_fonts.image_data_FontT24_0x0055)
+ − 302 *(.upper_fonts.image_data_FontT24_0x0056)
+ − 303 *(.upper_fonts.image_data_FontT24_0x0057)
+ − 304 *(.upper_fonts.image_data_FontT24_0x0058)
+ − 305 *(.upper_fonts.image_data_FontT24_0x0059)
+ − 306 *(.upper_fonts.image_data_FontT24_0x005a)
+ − 307 *(.upper_fonts.image_data_FontT24_0x005b)
+ − 308 *(.upper_fonts.image_data_FontT24_0x005c)
+ − 309 *(.upper_fonts.image_data_FontT24_0x005d)
+ − 310 *(.upper_fonts.image_data_FontT24_0x005e)
+ − 311 *(.upper_fonts.image_data_FontT24_0x005f)
+ − 312 *(.upper_fonts.image_data_FontT24_0x0060)
+ − 313 *(.upper_fonts.image_data_FontT24_0x0061)
+ − 314 *(.upper_fonts.image_data_FontT24_0x0062)
+ − 315 *(.upper_fonts.image_data_FontT24_0x0063)
+ − 316 . = . + 0x1c;
+ − 317 *(.upper_fonts.image_data_FontT24_0x0064)
+ − 318 *(.upper_fonts.image_data_FontT24_0x0065)
+ − 319 *(.upper_fonts.image_data_FontT24_0x0066)
+ − 320 *(.upper_fonts.image_data_FontT24_0x0067)
+ − 321 *(.upper_fonts.image_data_FontT24_0x0068)
+ − 322 *(.upper_fonts.image_data_FontT24_0x0069)
+ − 323 *(.upper_fonts.image_data_FontT24_0x006a)
+ − 324 *(.upper_fonts.image_data_FontT24_0x006b)
+ − 325 *(.upper_fonts.image_data_FontT24_0x006c)
+ − 326 *(.upper_fonts.image_data_FontT24_0x006d)
+ − 327 *(.upper_fonts.image_data_FontT24_0x006e)
+ − 328 *(.upper_fonts.image_data_FontT24_0x006f)
+ − 329 *(.upper_fonts.image_data_FontT24_0x0070)
+ − 330 *(.upper_fonts.image_data_FontT24_0x0071)
+ − 331 *(.upper_fonts.image_data_FontT24_0x0072)
+ − 332 *(.upper_fonts.image_data_FontT24_0x0073)
+ − 333 *(.upper_fonts.image_data_FontT24_0x0074)
+ − 334 *(.upper_fonts.image_data_FontT24_0x0075)
+ − 335 *(.upper_fonts.image_data_FontT24_0x0076)
+ − 336 *(.upper_fonts.image_data_FontT24_0x0077)
+ − 337 *(.upper_fonts.image_data_FontT24_0x0078)
+ − 338 *(.upper_fonts.image_data_FontT24_0x0079)
+ − 339 *(.upper_fonts.image_data_FontT24_0x007a)
+ − 340 *(.upper_fonts.image_data_FontT24_0x007b)
+ − 341 *(.upper_fonts.image_data_FontT24_0x007c)
+ − 342 . = . + 0x1c;
+ − 343 *(.upper_fonts.image_data_FontT24_0x007d)
+ − 344 *(.upper_fonts.image_data_FontT24_0x007e)
+ − 345 *(.upper_fonts.image_data_FontT24_0x00a1)
+ − 346 *(.upper_fonts.image_data_FontT24_0x00bf)
+ − 347 *(.upper_fonts.image_data_FontT24_0x00c1)
+ − 348 *(.upper_fonts.image_data_FontT24_0x00c4)
+ − 349 *(.upper_fonts.image_data_FontT24_0x00c6)
+ − 350 *(.upper_fonts.image_data_FontT24_0x00c7)
+ − 351 *(.upper_fonts.image_data_FontT24_0x00c9)
+ − 352 *(.upper_fonts.image_data_FontT24_0x00cd)
+ − 353 *(.upper_fonts.image_data_FontT24_0x00d1)
+ − 354 *(.upper_fonts.image_data_FontT24_0x00d3)
+ − 355 *(.upper_fonts.image_data_FontT24_0x00d6)
+ − 356 *(.upper_fonts.image_data_FontT24_0x00da)
+ − 357 *(.upper_fonts.image_data_FontT24_0x00dc)
+ − 358 *(.upper_fonts.image_data_FontT24_0x00df)
+ − 359 *(.upper_fonts.image_data_FontT24_0x00e0)
+ − 360 *(.upper_fonts.image_data_FontT24_0x00e1)
+ − 361 *(.upper_fonts.image_data_FontT24_0x00e2)
+ − 362 *(.upper_fonts.image_data_FontT24_0x00e4)
+ − 363 *(.upper_fonts.image_data_FontT24_0x00e6)
+ − 364 *(.upper_fonts.image_data_FontT24_0x00e7)
+ − 365 *(.upper_fonts.image_data_FontT24_0x00e8)
+ − 366 *(.upper_fonts.image_data_FontT24_0x00e9)
+ − 367 *(.upper_fonts.image_data_FontT24_0x00ec)
+ − 368 *(.upper_fonts.image_data_FontT24_0x00ed)
+ − 369 *(.upper_fonts.image_data_FontT24_0x00f0)
+ − 370 *(.upper_fonts.image_data_FontT24_0x00f1)
+ − 371 *(.upper_fonts.image_data_FontT24_0x00f2)
+ − 372 *(.upper_fonts.image_data_FontT24_0x00f3)
+ − 373 *(.upper_fonts.image_data_FontT24_0x00f6)
+ − 374 *(.upper_fonts.image_data_FontT24_0x00f9)
+ − 375 *(.upper_fonts.image_data_FontT24_0x00fa)
+ − 376 *(.upper_fonts.image_data_FontT24_0x00fc)
+ − 377 *(.upper_fonts.image_data_FontT24_0x00ff)
+ − 378 *(.upper_fonts.image_data_FontT24_0x0152)
+ − 379 *(.upper_fonts.image_data_FontT24_0x0153)
+ − 380 *(.upper_fonts.image_data_FontT24_0x0178)
+ − 381 *(.upper_fonts.image_data_FontT24_0x002b)
+ − 382 . = . + 0x1d642;
+ − 383 *(.upper_images.image_data_ostc_fuer_Tauchcomputer_240px)
+ − 384 *(.upper_fonts.image_data_FontT84_0x002e)
+ − 385 . = . + 0x9f;
+ − 386 *(.upper_fonts.image_data_FontT84_0x0030)
+ − 387 . = . + 0x0d;
+ − 388 *(.upper_fonts.image_data_FontT84_0x0031)
+ − 389 . = . + 0xaa;
+ − 390 *(.upper_fonts.image_data_FontT84_0x0032)
+ − 391 . = . + 0x7b;
+ − 392 *(.upper_fonts.image_data_FontT84_0x0033)
+ − 393 . = . + 0x38;
+ − 394 *(.upper_fonts.image_data_FontT84_0x0034)
+ − 395 . = . + 0x7f;
+ − 396 *(.upper_fonts.image_data_FontT84_0x0035)
+ − 397 . = . + 0x77;
+ − 398 *(.upper_fonts.image_data_FontT84_0x0036)
+ − 399 . = . + 0x7b;
+ − 400 *(.upper_fonts.image_data_FontT84_0x0037)
+ − 401 . = . + 0x0d;
+ − 402 *(.upper_fonts.image_data_FontT84_0x0038)
+ − 403 . = . + 0x2b;
+ − 404 *(.upper_fonts.image_data_FontT84_0x0039)
+ − 405 . = . + 0xe8;
+ − 406 *(.upper_fonts.image_data_FontT54_0x0022)
+ − 407 *(.upper_fonts.image_data_FontT54_0x0025)
+ − 408 . = . + 0x112;
+ − 409 *(.upper_fonts.image_data_FontT54_0x0027)
+ − 410 . = . + 0xd8;
+ − 411 *(.upper_fonts.image_data_FontT54_0x002a)
+ − 412 . = . + 0x133;
+ − 413 *(.upper_fonts.image_data_FontT54_0x002d)
+ − 414 . = . + 0x1d7;
+ − 415 *(.upper_fonts.image_data_FontT54_0x002e)
+ − 416 . = . + 0x17b;
+ − 417 *(.upper_fonts.image_data_FontT54_0x002f)
+ − 418 . = . + 0x02;
+ − 419 *(.upper_fonts.image_data_FontT54_0x0030)
+ − 420 . = . + 0x0ba;
+ − 421 *(.upper_fonts.image_data_FontT54_0x0031)
+ − 422 . = . + 0x27d;
+ − 423 *(.upper_fonts.image_data_FontT54_0x0032)
+ − 424 . = . + 0xe3;
+ − 425 *(.upper_fonts.image_data_FontT54_0x0033)
+ − 426 . = . + 0x35;
+ − 427 *(.upper_fonts.image_data_FontT54_0x0034)
+ − 428 . = . + 0x68;
+ − 429 *(.upper_fonts.image_data_FontT54_0x0035)
+ − 430 . = . + 0x35;
+ − 431 *(.upper_fonts.image_data_FontT54_0x0036)
+ − 432 . = . + 0xba;
+ − 433 *(.upper_fonts.image_data_FontT54_0x0037)
+ − 434 . = . + 0x191;
+ − 435 *(.upper_fonts.image_data_FontT54_0x0038)
+ − 436 . = . + 0xe3;
+ − 437 *(.upper_fonts.image_data_FontT54_0x0039)
+ − 438 . = . + 0xe3;
+ − 439 *(.upper_fonts.image_data_FontT54_0x003a)
+ − 440 . = . + 0x7b;
+ − 441 *(.upper_fonts.image_data_FontT54_0x0043)
+ − 442 . = . + 0x3b;
+ − 443 *(.upper_fonts.image_data_FontT54_0x006c)
+ − 444 . = . + 0x2d;
+ − 445 *(.upper_fonts.image_data_FontT54_0x006d)
+ − 446 . = . + 0x94;
+ − 447 *(.upper_fonts.image_data_FontT54_0x00ba)
+ − 448 . = . + 0x0a;
+ − 449
+ − 450 *(.upper_fonts.image_data_FontT105_0x002*)
+ − 451 *(.upper_fonts.image_data_FontT105_0x003*)
+ − 452 *(.upper_fonts.image_data_FontT105_0x0043)
+ − 453 . = . + 0x17c8;
+ − 454 *(.upper_fonts.image_data_FontT105_0x007c)
+ − 455 *(.upper_fonts.image_data_FontT105_0x00ba)
+ − 456 *(.upper_fonts.image_data_FontT105_54_0x006d)
+ − 457
+ − 458 *(.upper_fonts.image_data_FontT54_0x0068)
+ − 459 . = . + 0x1195;
+ − 460
+ − 461 *(.upper_fonts.image_data_FontT42_0x00b0)
+ − 462 *(.upper_fonts.image_data_FontT42_0x0020)
+ − 463 . = . + 0x23;
+ − 464 *(.upper_fonts.image_data_FontT42_0x002*)
+ − 465 *(.upper_fonts.image_data_FontT42_0x003*)
+ − 466 *(.upper_fonts.image_data_FontT42_0x004*)
+ − 467 *(.upper_fonts.image_data_FontT42_0x005*)
+ − 468 . = . + 0x420;
+ − 469 *(.upper_fonts.image_data_FontT42_0x006*)
+ − 470 *(.upper_fonts.image_data_FontT42_0x0070)
+ − 471 *(.upper_fonts.image_data_FontT42_0x0071)
+ − 472 *(.upper_fonts.image_data_FontT42_0x0072)
+ − 473 *(.upper_fonts.image_data_FontT42_0x0073)
+ − 474 *(.upper_fonts.image_data_FontT42_0x0074)
+ − 475 *(.upper_fonts.image_data_FontT42_0x0075)
+ − 476 *(.upper_fonts.image_data_FontT42_0x0076)
+ − 477 *(.upper_fonts.image_data_FontT42_0x0077)
+ − 478 *(.upper_fonts.image_data_FontT42_0x0078)
+ − 479 *(.upper_fonts.image_data_FontT42_0x0079)
+ − 480 . = . + 0x12c0;
+ − 481 *(.upper_fonts.image_data_FontT42_*)
+ − 482 *(.upper_fonts.image_data_T54addon_0x002b_PLUS*)
+ − 483 *(.upper_fonts.image_data_T54addon_0x0040_AT*)
+ − 484 *(.upper_fonts.image_data_FontT48addon*)
+ − 485 *(.upper_fonts.image_data_FontT24plus_0x00fb*)
73
+ − 486 *(.upper_fonts.image_data_FontT24plus_0x00fd*)
+ − 487 *(.upper_fonts.image_data_FontT48_*)
43
+ − 488 *(.upper_fonts.image_data_awe48_*)
73
+ − 489
+ − 490 /* moving of fonts from lower to upper */
43
+ − 491
123
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 492 *(.upper_fonts.*)
73
+ − 493
38
+ − 494 __upper_font_data_end = .;
+ − 495 } >UPPER
+ − 496
43
+ − 497
38
+ − 498
123
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 499 .upper_directory 0x081DEF00 : {
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 500 __font_directory = .;
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 501 *(.upper_font_directory.Awe48)
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 502 *(.upper_font_directory.FontT24)
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 503 *(.upper_font_directory.FontT42)
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 504 *(.upper_font_directory.FontT48)
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 505 *(.upper_font_directory.FontT54)
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 506 *(.upper_font_directory.FontT84)
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 507 *(.upper_font_directory.FontT105)
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 508 *(.upper_font_directory.FontT144)
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 509 *(.upper_font_directory.Batt24*)
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 510
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 511 __font_directory_end = .;
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 512 LONG( -1 ); /* Magic End Marker */
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 513
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 514 } >UPPER
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 515
43
+ − 516
+ − 517
38
+ − 518
43
+ − 519 /* Used by the startup to initialize data */
+ − 520 _sidata = LOADADDR(.data);
+ − 521
38
+ − 522 /************ Initialized Data Sections into RAM & ROM Memory **************/
+ − 523 .data :
+ − 524 {
+ − 525 . = ALIGN(4);
+ − 526
+ − 527 _sdata = .; /* create a global symbol at data start */
+ − 528 *(.data) /* .data sections */
+ − 529 *(.data*) /* .data* sections */
+ − 530 *(vtable)
+ − 531
+ − 532 . = ALIGN(4);
+ − 533 _edata = .; /* define a global symbol at data end */
+ − 534 } >RAM AT>ROM
+ − 535
43
+ − 536
+ − 537
38
+ − 538 /*************** Uninitialized Data Section into RAM Memory ****************/
+ − 539 .bss :
+ − 540 {
+ − 541 . = ALIGN(4);
+ − 542
+ − 543 /* This is used by the startup in order to initialize the .bss secion */
+ − 544 _sbss = .; /* define a global symbol at bss start */
+ − 545 __bss_start__ = _sbss;
+ − 546 *(.bss)
+ − 547 *(.bss*)
+ − 548 *(COMMON)
+ − 549
+ − 550 . = ALIGN(4);
+ − 551 _ebss = .; /* define a global symbol at bss end */
+ − 552 __bss_end__ = _ebss;
+ − 553 } >RAM
+ − 554
43
+ − 555 /********************** User_heap_stack section ****************************/
38
+ − 556 /* just to check that there is enough RAM left */
+ − 557 ._user_heap_stack :
+ − 558 {
+ − 559 . = ALIGN(8);
+ − 560 PROVIDE ( end = . );
+ − 561 PROVIDE ( _end = . );
123
a984d87a1ec0
Added option to build FontPack as static libary which is linked to the Firmware project (to allow separate build settings)
Ideenmodellierer
diff
changeset
+ − 562 PROVIDE ( __end__ = . );
38
+ − 563 . = . + _Min_Heap_Size;
+ − 564 . = . + _Min_Stack_Size;
+ − 565 . = ALIGN(8);
43
+ − 566 _estack = .;
38
+ − 567 } >RAM
+ − 568
+ − 569 /* Remove information from the compiler libraries */
+ − 570 /DISCARD/ :
+ − 571 {
+ − 572 libc.a ( * )
+ − 573 libm.a ( * )
+ − 574 libgcc.a ( * )
+ − 575 }
+ − 576
+ − 577 .ARM.attributes 0 : { *(.ARM.attributes) }
+ − 578 }