/****************************************************************************/ /* SBL.lds (originally AM335x.lds) */ /* - could possibly be simplified further, as in am335x_boot_ccs.lds, */ /* found in C:\ti\pdk_am335x_1_0_3\packages\ti\starterware\examples\gcc */ /* */ /* Copyright (c) 2014 Texas Instruments Incorporated */ /* Author: Rafael de Souza */ /* */ /* Description: This file is a sample linker command file that can be */ /* used for linking programs built with the GCC compiler */ /* and running the resulting .out file on an AM335x device. */ /* Use it as a guideline. You will want to */ /* change the memory layout to match your specific */ /* target system. You may want to change the allocation */ /* scheme according to the size of your program. */ /* */ /****************************************************************************/ /* Original: */ /* L3OCMC0 : o = 0x40300000, l = 0x00010000 /* 64kB L3 OCMC SRAM */ /* Alternates: */ /* IMAGERAM : o = 0x402F0400, l = 0x0001B400 /+ combined 64kB internal SRAM & p/o 64kB L3 OCMC SRAM, but n.g. for debug */ /* IMAGERAM : o = 0x40300000, l = 0x0000B800 /+ same as L3OCMC0 */ MEMORY { SRAM : o = 0x402F0400, l = 0x0000FC00 /* 64kB internal SRAM */ L3OCMC0 : o = 0x40300000, l = 0x0000B800 /* 64kB L3 OCMC SRAM <<< available after ROM bootloader <<< */ IMAGERAM : o = 0x40300000, l = 0x0000B800 /* same as L3OCMC0 */ M3SHUMEM : o = 0x44D00000, l = 0x00004000 /* 16kB M3 Shared Unified Code Space */ M3SHDMEM : o = 0x44D80000, l = 0x00002000 /* 8kB M3 Shared Data Memory */ DDR0 : o = 0x80000000, l = 0x40000000 /* 1GB external DDR Bank 0 */ } ENTRY(Entry) SECTIONS { .rsthand : { . = ALIGN(0x400); KEEP(*(.isr_vector)) *startup_SBL.o (.text) } > IMAGERAM . = ALIGN(4); .text : { *(.text*) KEEP(*(.init)) KEEP(*(.fini)) /* .ctors */ *crtbegin.o(.ctors) *crtbegin?.o(.ctors) *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors) *(SORT(.ctors.*)) *(.ctors) /* .dtors */ *crtbegin.o(.dtors) *crtbegin?.o(.dtors) *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors) *(SORT(.dtors.*)) *(.dtors) *(.rodata*) KEEP(*(.eh_frame*)) } > IMAGERAM .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } > IMAGERAM __exidx_start = .; .ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) } > IMAGERAM __exidx_end = .; .data : { . = ALIGN(4); __data_start__ = .; *(vtable) *(.data*) . = ALIGN(4); /* preinit data */ PROVIDE_HIDDEN (__preinit_array_start = .); KEEP(*(.preinit_array)) PROVIDE_HIDDEN (__preinit_array_end = .); . = ALIGN(4); /* init data */ PROVIDE_HIDDEN (__init_array_start = .); KEEP(*(SORT(.init_array.*))) KEEP(*(.init_array)) PROVIDE_HIDDEN (__init_array_end = .); . = ALIGN(4); /* finit data */ PROVIDE_HIDDEN (__fini_array_start = .); KEEP(*(SORT(.fini_array.*))) KEEP(*(.fini_array)) PROVIDE_HIDDEN (__fini_array_end = .); . = ALIGN(4); /* All data end */ __data_end__ = .; } > IMAGERAM .bss : { . = ALIGN(4); __bss_start__ = .; *(.bss*) *(COMMON) __bss_end__ = .; } > IMAGERAM .heap (NOLOAD): { /* The line below can be used to FILL the memory with a known value and * debug any stack overruns. For this to work, the specifier (NOLOAD) above * must be removed at the expense of an increase in the output binary size */ FILL(0xDEADBEEF) . = ALIGN(4); __end__ = .; end = __end__; /* The line below created to be compatible with Linaro's semihosting support */ __HeapBase = __end__; *(.heap*) . = . + HEAPSIZE; __HeapLimit = .; } > IMAGERAM /* .stack section doesn't contain any symbols. It is only * used for linker to calculate size of stack sections, and assign * values to stack symbols later */ .stack (NOLOAD): { /* The line below can be used to FILL the memory with a known value and * debug any stack overruns. For this to work, the specifier (NOLOAD) above * must be removed at the expense of an increase in the output binary size */ FILL(0xBAD0BAD0) . = ALIGN(4); __StackLimit = . ; *(.stack*) . = . + STACKSIZE; __StackTop = . ; /* The line below created to be compatible with Linaro's semihosting support */ __StackBase = . ; } > IMAGERAM PROVIDE(__stack = __StackTop); } /**************************************************************************/