1/* 2** ################################################################### 3** Processor: LPC5502JHI48CPXXXX 4** Compiler: GNU C Compiler 5** Reference manual: LPC55S1x/LPC551x User manual Rev.0.6 15 November 2019 6** Version: rev. 1.0, 2020-04-09 7** Build: b200831 8** 9** Abstract: 10** Linker file for the GNU C Compiler 11** 12** Copyright 2016 Freescale Semiconductor, Inc. 13** Copyright 2016-2020 NXP 14** All rights reserved. 15** 16** SPDX-License-Identifier: BSD-3-Clause 17** 18** http: www.nxp.com 19** mail: support@nxp.com 20** 21** ################################################################### 22*/ 23 24 25 26/* Entry Point */ 27ENTRY(Reset_Handler) 28 29HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x0400; 30STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x0800; 31 32/* Specify the memory areas */ 33MEMORY 34{ 35 m_interrupts (RX) : ORIGIN = 0x20000000, LENGTH = 0x00000200 36 m_text (RX) : ORIGIN = 0x20000200, LENGTH = 0x00007E00 37 m_data (RW) : ORIGIN = 0x04000000, LENGTH = 0x00004000 38} 39 40/* Define output sections */ 41SECTIONS 42{ 43 /* The startup code goes first into internal flash */ 44 .interrupts : 45 { 46 . = ALIGN(4); 47 KEEP(*(.isr_vector)) /* Startup code */ 48 . = ALIGN(4); 49 } > m_interrupts 50 51 /* The program code and other data goes into internal flash */ 52 .text : 53 { 54 . = ALIGN(4); 55 *(.text) /* .text sections (code) */ 56 *(.text*) /* .text* sections (code) */ 57 *(.rodata) /* .rodata sections (constants, strings, etc.) */ 58 *(.rodata*) /* .rodata* sections (constants, strings, etc.) */ 59 *(.glue_7) /* glue arm to thumb code */ 60 *(.glue_7t) /* glue thumb to arm code */ 61 *(.eh_frame) 62 KEEP (*(.init)) 63 KEEP (*(.fini)) 64 . = ALIGN(4); 65 } > m_text 66 67 .ARM.extab : 68 { 69 *(.ARM.extab* .gnu.linkonce.armextab.*) 70 } > m_text 71 72 .ARM : 73 { 74 __exidx_start = .; 75 *(.ARM.exidx*) 76 __exidx_end = .; 77 } > m_text 78 79 .ctors : 80 { 81 __CTOR_LIST__ = .; 82 /* gcc uses crtbegin.o to find the start of 83 the constructors, so we make sure it is 84 first. Because this is a wildcard, it 85 doesn't matter if the user does not 86 actually link against crtbegin.o; the 87 linker won't look for a file to match a 88 wildcard. The wildcard also means that it 89 doesn't matter which directory crtbegin.o 90 is in. */ 91 KEEP (*crtbegin.o(.ctors)) 92 KEEP (*crtbegin?.o(.ctors)) 93 /* We don't want to include the .ctor section from 94 from the crtend.o file until after the sorted ctors. 95 The .ctor section from the crtend file contains the 96 end of ctors marker and it must be last */ 97 KEEP (*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)) 98 KEEP (*(SORT(.ctors.*))) 99 KEEP (*(.ctors)) 100 __CTOR_END__ = .; 101 } > m_text 102 103 .dtors : 104 { 105 __DTOR_LIST__ = .; 106 KEEP (*crtbegin.o(.dtors)) 107 KEEP (*crtbegin?.o(.dtors)) 108 KEEP (*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)) 109 KEEP (*(SORT(.dtors.*))) 110 KEEP (*(.dtors)) 111 __DTOR_END__ = .; 112 } > m_text 113 114 .preinit_array : 115 { 116 PROVIDE_HIDDEN (__preinit_array_start = .); 117 KEEP (*(.preinit_array*)) 118 PROVIDE_HIDDEN (__preinit_array_end = .); 119 } > m_text 120 121 .init_array : 122 { 123 PROVIDE_HIDDEN (__init_array_start = .); 124 KEEP (*(SORT(.init_array.*))) 125 KEEP (*(.init_array*)) 126 PROVIDE_HIDDEN (__init_array_end = .); 127 } > m_text 128 129 .fini_array : 130 { 131 PROVIDE_HIDDEN (__fini_array_start = .); 132 KEEP (*(SORT(.fini_array.*))) 133 KEEP (*(.fini_array*)) 134 PROVIDE_HIDDEN (__fini_array_end = .); 135 } > m_text 136 137 __etext = .; /* define a global symbol at end of code */ 138 __DATA_ROM = .; /* Symbol is used by startup for data initialization */ 139 140 .data : AT(__DATA_ROM) 141 { 142 . = ALIGN(4); 143 __DATA_RAM = .; 144 __data_start__ = .; /* create a global symbol at data start */ 145 *(.ramfunc*) /* for functions in ram */ 146 *(.data) /* .data sections */ 147 *(.data*) /* .data* sections */ 148 KEEP(*(.jcr*)) 149 . = ALIGN(4); 150 __data_end__ = .; /* define a global symbol at data end */ 151 } > m_data 152 153 __DATA_END = __DATA_ROM + (__data_end__ - __data_start__); 154 text_end = ORIGIN(m_text) + LENGTH(m_text); 155 ASSERT(__DATA_END <= text_end, "region m_text overflowed with text and data") 156 157 /* Uninitialized data section */ 158 .bss : 159 { 160 /* This is used by the startup in order to initialize the .bss section */ 161 . = ALIGN(4); 162 __START_BSS = .; 163 __bss_start__ = .; 164 *(.bss) 165 *(.bss*) 166 *(COMMON) 167 . = ALIGN(4); 168 __bss_end__ = .; 169 __END_BSS = .; 170 } > m_data 171 172 .heap : 173 { 174 . = ALIGN(8); 175 __end__ = .; 176 PROVIDE(end = .); 177 __HeapBase = .; 178 . += HEAP_SIZE; 179 __HeapLimit = .; 180 __heap_limit = .; /* Add for _sbrk */ 181 } > m_data 182 183 .stack : 184 { 185 . = ALIGN(8); 186 . += STACK_SIZE; 187 } > m_data 188 189 190 /* Initializes stack on the end of block */ 191 __StackTop = ORIGIN(m_data) + LENGTH(m_data); 192 __StackLimit = __StackTop - STACK_SIZE; 193 PROVIDE(__stack = __StackTop); 194 195 .ARM.attributes 0 : { *(.ARM.attributes) } 196 197 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap") 198} 199 200