2013-10-12 23:42:20 +00:00
|
|
|
/*
|
|
|
|
GNU linker script for STM32F405
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Specify the memory areas */
|
|
|
|
MEMORY
|
|
|
|
{
|
2013-10-18 22:44:05 +00:00
|
|
|
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 0x100000 /* entire flash, 1 MiB */
|
|
|
|
FLASH_ISR (rx) : ORIGIN = 0x08000000, LENGTH = 0x004000 /* sector 0, 16 KiB */
|
2014-01-05 14:34:17 +00:00
|
|
|
FLASH_TEXT (rx) : ORIGIN = 0x08020000, LENGTH = 0x080000 /* sectors 5,6,7,8, 4*128KiB = 512 KiB (could increase it more) */
|
2013-10-17 21:50:21 +00:00
|
|
|
CCMRAM (xrw) : ORIGIN = 0x10000000, LENGTH = 0x010000 /* 64 KiB */
|
2013-10-12 23:42:20 +00:00
|
|
|
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 0x020000 /* 128 KiB */
|
|
|
|
}
|
|
|
|
|
2013-10-17 21:50:21 +00:00
|
|
|
/* produce a link error if there is not this amount of RAM for these sections */
|
|
|
|
_minimum_stack_size = 2K;
|
|
|
|
_minimum_heap_size = 16K;
|
2013-10-12 23:42:20 +00:00
|
|
|
|
2013-10-17 21:50:21 +00:00
|
|
|
/* top end of the stack */
|
2014-02-10 22:50:44 +00:00
|
|
|
_stack_end = ORIGIN(RAM) + LENGTH(RAM);
|
2013-10-17 21:50:21 +00:00
|
|
|
|
2014-01-29 19:21:17 +00:00
|
|
|
/* RAM extents for the garbage collector */
|
|
|
|
_ram_end = ORIGIN(RAM) + LENGTH(RAM);
|
|
|
|
_heap_end = 0x2001c000; /* tunable */
|
2014-01-29 10:51:38 +00:00
|
|
|
|
2013-10-17 21:50:21 +00:00
|
|
|
/* define output sections */
|
2013-10-12 23:42:20 +00:00
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
/* The startup code goes first into FLASH */
|
|
|
|
.isr_vector :
|
|
|
|
{
|
|
|
|
. = ALIGN(4);
|
|
|
|
KEEP(*(.isr_vector)) /* Startup code */
|
2013-10-17 21:50:21 +00:00
|
|
|
|
2013-10-12 23:42:20 +00:00
|
|
|
. = ALIGN(4);
|
2013-10-18 22:44:05 +00:00
|
|
|
} >FLASH_ISR
|
2013-10-12 23:42:20 +00:00
|
|
|
|
|
|
|
/* The program code and other data goes into FLASH */
|
|
|
|
.text :
|
|
|
|
{
|
|
|
|
. = ALIGN(4);
|
|
|
|
*(.text) /* .text sections (code) */
|
|
|
|
*(.text*) /* .text* sections (code) */
|
|
|
|
*(.rodata) /* .rodata sections (constants, strings, etc.) */
|
|
|
|
*(.rodata*) /* .rodata* sections (constants, strings, etc.) */
|
|
|
|
/* *(.glue_7) */ /* glue arm to thumb code */
|
|
|
|
/* *(.glue_7t) */ /* glue thumb to arm code */
|
2013-10-17 21:50:21 +00:00
|
|
|
|
2013-10-12 23:42:20 +00:00
|
|
|
. = ALIGN(4);
|
2014-02-10 22:50:44 +00:00
|
|
|
_text_end = .; /* define a global symbol at end of code */
|
|
|
|
_data_start_init = _text_end; /* This is used by the startup in order to initialize the .data secion */
|
2013-10-18 22:44:05 +00:00
|
|
|
} >FLASH_TEXT
|
2013-10-12 23:42:20 +00:00
|
|
|
|
2013-10-17 21:50:21 +00:00
|
|
|
/*
|
2013-10-12 23:42:20 +00:00
|
|
|
.ARM.extab :
|
|
|
|
{
|
|
|
|
*(.ARM.extab* .gnu.linkonce.armextab.*)
|
|
|
|
} >FLASH
|
|
|
|
|
|
|
|
.ARM :
|
|
|
|
{
|
|
|
|
__exidx_start = .;
|
|
|
|
*(.ARM.exidx*)
|
|
|
|
__exidx_end = .;
|
|
|
|
} >FLASH
|
2013-10-17 21:50:21 +00:00
|
|
|
*/
|
2013-10-12 23:42:20 +00:00
|
|
|
|
2013-10-17 21:50:21 +00:00
|
|
|
/* This is the initialized data section
|
|
|
|
The program executes knowing that the data is in the RAM
|
|
|
|
but the loader puts the initial values in the FLASH (inidata).
|
|
|
|
It is one task of the startup to copy the initial values from FLASH to RAM. */
|
2014-02-10 22:50:44 +00:00
|
|
|
.data : AT ( _data_start_init )
|
2013-10-12 23:42:20 +00:00
|
|
|
{
|
|
|
|
. = ALIGN(4);
|
2014-02-10 22:50:44 +00:00
|
|
|
_data_start = .; /* create a global symbol at data start; used by startup code in order to initialise the .data section in RAM */
|
2014-01-25 00:44:31 +00:00
|
|
|
_ram_start = .; /* create a global symbol at ram start for garbage collector */
|
2013-10-12 23:42:20 +00:00
|
|
|
*(.data) /* .data sections */
|
|
|
|
*(.data*) /* .data* sections */
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
2014-02-10 22:50:44 +00:00
|
|
|
_data_end = .; /* define a global symbol at data end; used by startup code in order to initialise the .data section in RAM */
|
2013-10-12 23:42:20 +00:00
|
|
|
} >RAM
|
|
|
|
|
|
|
|
/* Uninitialized data section */
|
|
|
|
.bss :
|
|
|
|
{
|
2013-10-17 21:50:21 +00:00
|
|
|
. = ALIGN(4);
|
2014-02-10 22:50:44 +00:00
|
|
|
_bss_start = .; /* define a global symbol at bss start; used by startup code */
|
2013-10-12 23:42:20 +00:00
|
|
|
*(.bss)
|
|
|
|
*(.bss*)
|
|
|
|
*(COMMON)
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
2014-02-10 22:50:44 +00:00
|
|
|
_bss_end = .; /* define a global symbol at bss end; used by startup code and GC */
|
2013-10-12 23:42:20 +00:00
|
|
|
} >RAM
|
|
|
|
|
2013-10-17 21:50:21 +00:00
|
|
|
/* this is to define the start of the heap, and make sure we have a minimum size */
|
2013-10-12 23:42:20 +00:00
|
|
|
.heap :
|
|
|
|
{
|
2013-10-17 21:50:21 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
_heap_start = .; /* define a global symbol at heap start */
|
|
|
|
. = . + _minimum_heap_size;
|
|
|
|
} >RAM
|
2013-10-12 23:42:20 +00:00
|
|
|
|
2013-10-17 21:50:21 +00:00
|
|
|
/* this just checks there is enough RAM for the stack */
|
2013-10-12 23:42:20 +00:00
|
|
|
.stack :
|
|
|
|
{
|
2013-10-17 21:50:21 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
. = . + _minimum_stack_size;
|
|
|
|
. = ALIGN(4);
|
|
|
|
} >RAM
|
2013-10-12 23:42:20 +00:00
|
|
|
|
|
|
|
/* Remove information from the standard libraries */
|
|
|
|
/*
|
|
|
|
/DISCARD/ :
|
|
|
|
{
|
|
|
|
libc.a ( * )
|
|
|
|
libm.a ( * )
|
|
|
|
libgcc.a ( * )
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
.ARM.attributes 0 : { *(.ARM.attributes) }
|
|
|
|
}
|