1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/cc26xx_cc13xx/ldscripts/cc26xx_cc13xx.ld
Jean Pierre Dudey ed2e04904b cpu/cc26xx_cc13xx: use _rom_length symbol for CCFG origin
>Now `ROM_LEN` is the "real" length, 352K and 128K respectively
and the CCFG position is determined by subtracting it's size
from `_rom_length` symbol.

Signed-off-by: Jean Pierre Dudey <me@jeandudey.tech>
2020-09-30 11:52:04 -05:00

55 lines
1.3 KiB
Plaintext

/*
* Copyright (C) 2020 Locha Inc
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @addtogroup cpu_cc26x2_cc13x2
* @{
*
* @file
* @brief Linker script for the CC26x2/CC13x2 MCUs
*
* @author Jean Pierre Dudey <jeandudey@hotmail.com>
*/
INCLUDE cortexm_rom_offset.ld
/* Memory Space Definitions: */
MEMORY
{
rom (rx) : ORIGIN = _rom_start_addr + _rom_offset, LENGTH = _fw_rom_length
/* CCFG starts at the end of ROM */
ccfg (rx) : ORIGIN = _rom_length - 88, LENGTH = 88
/* GPRAM is only available when cache is disabled. When GPRAM is enabled it
* is used as a backup RAM at the expense of slower CPU execution time */
gpram : ORIGIN = 0x11000000, LENGTH = 8K
ram (w!rx) : ORIGIN = _ram_start_addr, LENGTH = _ram_length
}
/* MCU Sepcific Section Definitions */
SECTIONS
{
.ccfg :
{
KEEP(*(.ccfg))
} > ccfg
.gpram :
{
} > gpram
.heap_gpram (NOLOAD) : ALIGN(4)
{
_sheap1 = . ;
_eheap1 = ORIGIN(gpram) + LENGTH(gpram);
} > gpram
}
INCLUDE cortexm_base.ld
/* @} */