rt-thread-official/bsp/Infineon/xmc7200-kit_xmc7200_evk/board/linker_scripts/link.ld

441 lines
15 KiB
Plaintext

/***************************************************************************//**
* \file xmc7200_x8384_cm7.ld
* \version 1.0.0
*
* Linker file for the GNU C compiler.
*
* The main purpose of the linker script is to describe how the sections in the
* input files should be mapped into the output file, and to control the memory
* layout of the output file.
*
* \note The entry point location is fixed and starts at 0x10000000. The valid
* application image should be placed there.
*
* \note The linker files included with the PDL template projects must be generic
* and handle all common use cases. Your project may not use every section
* defined in the linker files. In that case you may see warnings during the
* build process. In your project, you can simply comment out or remove the
* relevant code in the linker file.
*
********************************************************************************
* \copyright
* Copyright 2021 Cypress Semiconductor Corporation
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
GROUP(-lgcc -lc -lnosys )
SEARCH_DIR(.)
GROUP(libgcc.a libc.a libm.a libnosys.a)
ENTRY(Reset_Handler)
/* The size of the stack section at the end of CM7 SRAM */
STACK_SIZE = 0x1000;
RAMVECTORS_ALIGNMENT = 128;
sram_start_reserve = 0;
sram_total_size = 0x00100000; /* SRAM0 + SRAM1 */
sram_private_for_srom = 0x00000800; /* Private SRAM for SROM (e.g. API processing) */
sram_used_by_boot = 0x0; /* Used during boot by Cypress firmware (content will be overwritten on reset, so it should not be used for loadable sections in case of RAM build configurations) */
cm0plus_sram_reserve = 0x00004000; /* 16K : cm0 sram size */
cm7_0_sram_reserve = 0x000FC000; /* 1008K : cm7_0 sram size */
code_flash_total_size = 0x00830000; /* 8384K: total flash size */
cm0plus_code_flash_reserve = 0x00080000; /* 512K : cm0 flash size */
cm7_0_code_flash_reserve = 0x007B0000; /* 7872K: cm7_0 flash size */
code_flash_base_address = 0x10000000;
sram_base_address = 0x28000000;
/* SRAM reservations */
_base_SRAM_CM7_0 = sram_base_address + cm0plus_sram_reserve;
_size_SRAM_CM7_0 = cm7_0_sram_reserve;
/* Code flash reservations */
_base_CODE_FLASH_CM0P = code_flash_base_address;
_size_CODE_FLASH_CM0P = cm0plus_code_flash_reserve;
_base_CODE_FLASH_CM7_0 = code_flash_base_address + cm0plus_code_flash_reserve;
_size_CODE_FLASH_CM7_0 = cm7_0_code_flash_reserve;
/* Fixed Addresses */
_base_WORK_FLASH = 0x14000000;
_size_WORK_FLASH = 0x00040000; /* 256K Work flash */
_base_CM7_0_ITCM = 0x00000000;
_size_CM7_0_ITCM = 0x00004000;
_base_CM7_0_DTCM = 0x20000000;
_size_CM7_0_DTCM = 0x00004000;
/* For the non-dual cm7 device, _CORE_CM7_0_ should be defined and _CORE_CM7_1_ should not be defined */
_base_SRAM = _base_SRAM_CM7_0;
_size_SRAM = _size_SRAM_CM7_0;
_base_CODE_FLASH = _base_CODE_FLASH_CM7_0;
_size_CODE_FLASH = _size_CODE_FLASH_CM7_0;
_base_SFLASH_USER_DATA = 0x17000800;
_size_SFLASH_USER_DATA = 0x00000800;
_base_SFLASH_NAR = 0x17001A00;
_size_SFLASH_NAR = 0x00000200;
_base_SFLASH_PUB_KEY = 0x17006400;
_size_SFLASH_PUB_KEY = 0x00000C00;
_base_SFLASH_APP_PROT = 0x17007600;
_size_SFLASH_APP_PROT = 0x00000200;
_base_SFLASH_TOC2 = 0x17007C00;
_size_SFLASH_TOC2 = 0x00000200;
_base_XIP = 0x60000000;
_size_XIP = 0x08000000;
_base_EFUSE = 0x90700000;
_size_EFUSE = 0x00100000;
_base_ITCM = _base_CM7_0_ITCM;
_size_ITCM = _size_CM7_0_ITCM;
_base_DTCM = _base_CM7_0_DTCM;
_size_DTCM = _size_CM7_0_DTCM;
/* Force symbol to be entered in the output file as an undefined symbol. Doing
* this may, for example, trigger linking of additional modules from standard
* libraries. You may list several symbols for each EXTERN, and you may use
* EXTERN multiple times. This command has the same effect as the -u command-line
* option.
*/
EXTERN(Reset_Handler)
/* The MEMORY section below describes the location and size of blocks of memory in the target.
* Use this section to specify the memory regions available for allocation.
*/
MEMORY
{
/* The ram and flash regions control RAM and flash memory allocation for the CM7_0/CM7_1 core. */
ram (rxw) : ORIGIN = _base_SRAM, LENGTH = _size_SRAM /* SRAM */
flash_cm0p (rx) : ORIGIN = _base_CODE_FLASH_CM0P, LENGTH = _size_CODE_FLASH_CM0P /* CODE flash CM0+ */
flash (rx) : ORIGIN = _base_CODE_FLASH, LENGTH = _size_CODE_FLASH /* CODE flash CM7_0/1 */
/* This is a 256K flash region used for EEPROM emulation. This region can also be used as the general purpose flash.
* You can assign sections to this memory region for only one of the cores.
*/
em_eeprom (rw) : ORIGIN = _base_WORK_FLASH, LENGTH = _size_WORK_FLASH /* WORK flash */
/* The following regions define device specific memory regions and must not be changed. */
sflash_user_data (rx) : ORIGIN = _base_SFLASH_USER_DATA, LENGTH = _size_SFLASH_USER_DATA /* Supervisory flash: User data */
sflash_nar (rx) : ORIGIN = _base_SFLASH_NAR, LENGTH = _size_SFLASH_NAR /* Supervisory flash: Normal Access Restrictions (NAR) */
sflash_public_key (rx) : ORIGIN = _base_SFLASH_PUB_KEY, LENGTH = _size_SFLASH_PUB_KEY /* Supervisory flash: Public Key */
sflash_app_prot (rx) : ORIGIN = _base_SFLASH_APP_PROT, LENGTH = _size_SFLASH_APP_PROT
sflash_toc_2 (rx) : ORIGIN = _base_SFLASH_TOC2, LENGTH = _size_SFLASH_TOC2 /* Supervisory flash: Table of Content # 2 */
xip (rx) : ORIGIN = _base_XIP, LENGTH = _size_XIP /* XIP: 128 MB */
efuse (rx) : ORIGIN = _base_EFUSE, LENGTH = _size_EFUSE /* 1MB */
itcm (rx) : ORIGIN = _base_ITCM, LENGTH = _size_ITCM /* ITCM */
dtcm (rx) : ORIGIN = _base_DTCM, LENGTH = _base_DTCM /* DTCM */
}
/* Library configurations */
GROUP(libgcc.a libc.a libm.a libnosys.a)
SECTIONS
{
/* Cortex-M0+ application flash image area. Comment this section if you don't want to include CM0+ image */
.cy_cm0p_image ORIGIN(flash_cm0p):
{
. = ALIGN(4);
__cy_m0p_code_start = . ;
KEEP(*(.cy_m0p_image))
__cy_m0p_code_end = . ;
} > flash_cm0p
/* Check if .cy_m0p_image size exceeds cm0plus_code_flash_reserve */
ASSERT(__cy_m0p_code_end < ORIGIN(flash), "CM0+ flash image overflows with CM7, increase CM7 base address ")
/* Cortex-M7 application flash area */
.text ORIGIN(flash) :
{
/* Cortex-M7 flash vector table */
. = ALIGN(4);
__Vectors = . ;
KEEP(*(.vectors))
. = ALIGN(4);
__Vectors_End = .;
__Vectors_Size = __Vectors_End - __Vectors;
__end__ = .;
. = ALIGN(4);
*(.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)
/* Read-only code (constants). */
*(.rodata .rodata.* .constdata .constdata.* .conststring .conststring.*)
KEEP(*(.eh_frame*))
} > flash
.ARM.extab :
{
*(.ARM.extab* .gnu.linkonce.armextab.*)
} > flash
__exidx_start = .;
.ARM.exidx :
{
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
} > flash
__exidx_end = .;
.copy.table :
{
. = ALIGN(4);
__copy_table_start__ = .;
/* Copy data section to RAM */
LONG (__etext) /* From */
LONG (__data_start__) /* To */
LONG ((__data_end__ - __data_start__)/4) /* Size */
/* Copy code to ITCM */
LONG (__zero_table_end__) /* From */
LONG (__itcm_start__) /* To */
LONG ((__itcm_end__ - __itcm_start__)/4) /* Size */
/* Copy data to DTCM */
LONG (__itcm_flash_end__) /* From */
LONG (__dtcm_start__) /* To */
LONG ((__dtcm_end__ - __dtcm_start__)/4) /* Size */
__copy_table_end__ = .;
} > flash
.zero.table :
{
. = ALIGN(4);
__zero_table_start__ = .;
LONG (__bss_start__)
LONG ((__bss_end__ - __bss_start__)/4)
__zero_table_end__ = .;
} > flash
/* itcm */
.cy_itcm ORIGIN(itcm):
{
__itcm_start__ = .;
KEEP(*(.cy_itcm))
__itcm_end__ = .;
} > itcm AT>flash
__itcm_flash_end__ = __zero_table_end__ + (__itcm_end__ - __itcm_start__);
/* dtcm */
.cy_dtcm ORIGIN(dtcm):
{
__dtcm_start__ = .;
KEEP(*(.cy_dtcm))
__dtcm_end__ = .;
} > dtcm AT>flash
__etext = __itcm_flash_end__ + (__dtcm_end__ - __dtcm_start__) ;
.ramVectors (NOLOAD) :
{
. = ALIGN(RAMVECTORS_ALIGNMENT);
__ram_vectors_start__ = .;
KEEP(*(.ram_vectors))
__ram_vectors_end__ = .;
} > ram
.data __ram_vectors_end__ :
{
. = 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 = .);
KEEP(*(.jcr*))
. = ALIGN(4);
KEEP(*(.cy_ramfunc*))
. = ALIGN(32);
KEEP(*(cy_sharedmem*))
. = ALIGN(4);
__data_end__ = .;
} > ram AT>flash
/* Place variables in the section that should not be initialized during the
* device startup.
*/
.noinit (NOLOAD) : ALIGN(8)
{
KEEP(*(.noinit))
} > ram
/* The uninitialized global or static variables are placed in this section.
*
* The NOLOAD attribute tells linker that .bss section does not consume
* any space in the image. The NOLOAD attribute changes the .bss type to
* NOBITS, and that makes linker to A) not allocate section in memory, and
* A) put information to clear the section with all zeros during application
* loading.
*
* Without the NOLOAD attribute, the .bss section might get PROGBITS type.
* This makes linker to A) allocate zeroed section in memory, and B) copy
* this section to RAM during application loading.
*/
.bss (NOLOAD):
{
. = ALIGN(4);
__bss_start__ = .;
*(.bss*)
*(COMMON)
. = ALIGN(4);
__bss_end__ = .;
} > ram
.heap (NOLOAD):
{
__HeapBase = .;
__end__ = .;
end = __end__;
KEEP(*(.heap*))
. = ORIGIN(ram) + LENGTH(ram) - STACK_SIZE;
__HeapLimit = .;
} > ram
/* .stack_dummy section doesn't contains any symbols. It is only
* used for linker to calculate size of stack sections, and assign
* values to stack symbols later */
.stack_dummy (NOLOAD):
{
KEEP(*(.stack*))
} > ram
/* Set stack top to end of RAM, and stack limit move down by
* size of stack_dummy section */
__StackTop = ORIGIN(ram) + LENGTH(ram);
__StackLimit = __StackTop - STACK_SIZE;
PROVIDE(__stack = __StackTop);
/* Check if data + heap + stack exceeds RAM limit */
ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
/* Emulated EEPROM Flash area */
.cy_em_eeprom :
{
KEEP(*(.cy_em_eeprom))
} > em_eeprom
/* Supervisory Flash: User data */
.cy_sflash_user_data :
{
KEEP(*(.cy_sflash_user_data))
} > sflash_user_data
/* Supervisory Flash: Normal Access Restrictions (NAR) */
.cy_sflash_nar :
{
KEEP(*(.cy_sflash_nar))
} > sflash_nar
/* Supervisory Flash: Public Key */
.cy_sflash_public_key :
{
KEEP(*(.cy_sflash_public_key))
} > sflash_public_key
/* Supervisory Flash: Table of Content # 2 */
.cy_toc_part2 :
{
KEEP(*(.cy_toc_part2))
} > sflash_toc_2
/* Places the code in the Execute in Place (XIP) section. See the smif driver
* documentation for details.
*/
cy_xip :
{
__cy_xip_start = .;
KEEP(*(.cy_xip))
__cy_xip_end = .;
} > xip
/* eFuse */
.cy_efuse :
{
KEEP(*(.cy_efuse))
} > efuse
}
/*============================================================
* Symbols for use by application
*============================================================
*/
__ecc_init_sram_start_address = ORIGIN(ram);
__ecc_init_sram_end_address = ORIGIN(ram) + LENGTH(ram);
/* EOF */