This enable defining memory maps in source code in addition to defining in MDEF files. This introduces the macro DEFINE_MEM_MAP(mem_map_name, ...). The memory maps created this way are the same, in functionality, as those defined in MDEF files. They can be manipulated by the standard microkernel memory map APIs. Define the memory map using: DEFINE_MEM_MAP(mem_map1, blocks, block_size); and "mem_map1" can be used, for example: task_mem_map_alloc(mem_map1, ...); or, task_mem_map_free(mem_map1, ...); etc. To use the memory map defined in another source file, simply add: extern const kmemory_map_t mem_map1; to the desired C or header file. Change-Id: I9c551b90f9d0a95f961fd8ec1c5278c2ea44312d Signed-off-by: Daniel Leung <daniel.leung@intel.com>
299 lines
8.1 KiB
Batchfile
299 lines
8.1 KiB
Batchfile
/* linker.cmd - Linker command/script file */
|
|
|
|
/*
|
|
* Copyright (c) 2013-2014 Wind River Systems, Inc.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1) Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
*
|
|
* 2) Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
*
|
|
* 3) Neither the name of Wind River Systems nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software without
|
|
* specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/*
|
|
DESCRIPTION
|
|
Linker script for the Cortex-M3 platform.
|
|
*/
|
|
|
|
#define _LINKER
|
|
#define _ASMLANGUAGE
|
|
|
|
#include <autoconf.h>
|
|
#include <sections.h>
|
|
|
|
#include <linker-tool.h>
|
|
|
|
#define INIT_LEVEL(level) \
|
|
__initconfig##level##_start = .; \
|
|
*(.initconfig##level##.init) \
|
|
|
|
/* physical address of RAM */
|
|
#ifdef CONFIG_XIP
|
|
#define ROMABLE_REGION FLASH
|
|
#define RAMABLE_REGION SRAM
|
|
#elif CONFIG_BOOTLOADER
|
|
#define ROMABLE_REGION SRAM
|
|
#define RAMABLE_REGION SRAM
|
|
#else
|
|
/* default Qemu model */
|
|
#define ROMABLE_REGION FLASH
|
|
#define RAMABLE_REGION SRAM
|
|
#endif
|
|
|
|
#if defined(CONFIG_XIP)
|
|
#define _DATA_IN_ROM __data_rom_start
|
|
#else
|
|
#define _DATA_IN_ROM
|
|
#endif
|
|
|
|
#if !defined(SKIP_TO_SECURITY_FRDM_K64F)
|
|
#define SKIP_TO_SECURITY_FRDM_K64F
|
|
#endif
|
|
|
|
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = CONFIG_FLASH_BASE_ADDRESS, LENGTH = CONFIG_FLASH_SIZE*1K
|
|
SRAM (wx) : ORIGIN = CONFIG_SRAM_BASE_ADDRESS, LENGTH = CONFIG_SRAM_SIZE*1K
|
|
SYSTEM_CONTROL_SPACE (wx) : ORIGIN = 0xE000E000, LENGTH = 4K
|
|
SYSTEM_CONTROL_PERIPH (wx) : ORIGIN = 0x400FE000, LENGTH = 4K
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
GROUP_START(ROMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE(_TEXT_SECTION_NAME,,)
|
|
{
|
|
KEEP(*(.exc_vector_table))
|
|
KEEP(*(".exc_vector_table.*"))
|
|
|
|
#if defined(CONFIG_GDB_INFO) && !defined(CONFIG_SW_ISR_TABLE)
|
|
KEEP(*(.gdb_stub_irq_vector_table))
|
|
KEEP(*(".gdb_stub_irq_vector_table.*"))
|
|
#endif
|
|
|
|
KEEP(*(.irq_vector_table))
|
|
KEEP(*(".irq_vector_table.*"))
|
|
|
|
/* FRDM_K64F has to write 16 bytes at 0x400 */
|
|
SKIP_TO_SECURITY_FRDM_K64F
|
|
KEEP(*(.security_frdm_k64f))
|
|
KEEP(*(".security_frdm_k64f.*"))
|
|
|
|
*(.text)
|
|
*(".text.*")
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE (devconfig, (OPTIONAL),)
|
|
{
|
|
__devconfig_start = .;
|
|
*(".devconfig.*")
|
|
KEEP(*(SORT_BY_NAME(".devconfig*")))
|
|
__devconfig_end = .;
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE(.ARM.exidx,,)
|
|
{
|
|
/*
|
|
* This section, related to stack and exception unwinding, is placed
|
|
* explicitly to prevent it from being shared between multiple regions.
|
|
* It must be defined for gcc to support 64-bit math and avoid
|
|
* section overlap.
|
|
*/
|
|
__exidx_start = .;
|
|
#if defined (__GCC_LINKER_CMD__)
|
|
*(.ARM.exidx* gnu.linkonce.armexidx.*)
|
|
#endif
|
|
__exidx_end = .;
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE(_CTOR_SECTION_NAME,,)
|
|
{
|
|
/*
|
|
* The compiler fills the constructor pointers table below, hence symbol
|
|
* __CTOR_LIST__ must be aligned on 4 byte boundary.
|
|
* To align with the C++ standard, the first element of the array
|
|
* contains the number of actual constructors. The last element is
|
|
* NULL.
|
|
*/
|
|
. = ALIGN(4);
|
|
__CTOR_LIST__ = .;
|
|
LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
|
|
KEEP(*(SORT_BY_NAME(".ctors*")))
|
|
LONG(0)
|
|
__CTOR_END__ = .;
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
|
|
{
|
|
*(.rodata)
|
|
*(".rodata.*")
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
__data_rom_start = ALIGN(4); /* XIP imaged DATA ROM start addr */
|
|
|
|
GROUP_END(ROMABLE_REGION)
|
|
|
|
GROUP_START(RAMABLE_REGION)
|
|
|
|
#if defined(CONFIG_XIP)
|
|
SECTION_AT_PROLOGUE(_DATA_SECTION_NAME,,,_DATA_IN_ROM)
|
|
#else
|
|
SECTION_PROLOGUE(_DATA_SECTION_NAME,,)
|
|
#endif
|
|
{
|
|
__data_ram_start = .;
|
|
*(.data)
|
|
*(".data.*")
|
|
KEEP(*(.isr_irq*))
|
|
|
|
/* sections for IRQ0-9 */
|
|
KEEP(*(SORT(.gnu.linkonce.isr_irq[0-9])))
|
|
|
|
/* sections for IRQ10-99 */
|
|
KEEP(*(SORT(.gnu.linkonce.isr_irq[0-9][0-9])))
|
|
|
|
/* sections for IRQ100-999 */
|
|
KEEP(*(SORT(.gnu.linkonce.isr_irq[0-9][0-9][0-9])))
|
|
} GROUP_LINK_IN(RAMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE (initlevel, (OPTIONAL),)
|
|
{
|
|
__initconfig_start = .;
|
|
INIT_LEVEL(0)
|
|
INIT_LEVEL(1)
|
|
INIT_LEVEL(2)
|
|
INIT_LEVEL(3)
|
|
INIT_LEVEL(4)
|
|
INIT_LEVEL(5)
|
|
INIT_LEVEL(6)
|
|
INIT_LEVEL(7)
|
|
KEEP(*(SORT_BY_NAME(".initconfig*")))
|
|
__initconfig_end = .;
|
|
} GROUP_LINK_IN(RAMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE (_k_task_list, (OPTIONAL),)
|
|
{
|
|
_k_task_list_start = .;
|
|
*(._k_task_list.public.*)
|
|
*(._k_task_list.private.*)
|
|
_k_task_list_idle_start = .;
|
|
*(._k_task_list.idle.*)
|
|
KEEP(*(SORT_BY_NAME("._k_task_list*")))
|
|
_k_task_list_end = .;
|
|
} GROUP_LINK_IN(RAMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE (_k_pipe_ptr, (OPTIONAL),)
|
|
{
|
|
_k_pipe_ptr_start = .;
|
|
*(._k_pipe_ptr.public.*)
|
|
*(._k_pipe_ptr.private.*)
|
|
KEEP(*(SORT_BY_NAME("._k_pipe_ptr*")))
|
|
_k_pipe_ptr_end = .;
|
|
} GROUP_LINK_IN(RAMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE (_k_mem_map_ptr, (OPTIONAL),)
|
|
{
|
|
_k_mem_map_ptr_start = .;
|
|
*(._k_mem_map_ptr.public.*)
|
|
*(._k_mem_map_ptr.private.*)
|
|
KEEP(*(SORT_BY_NAME("._k_mem_map_ptr*")))
|
|
_k_mem_map_ptr_end = .;
|
|
} GROUP_LINK_IN(RAMABLE_REGION)
|
|
|
|
__data_ram_end = .;
|
|
|
|
SECTION_PROLOGUE(_BSS_SECTION_NAME,(NOLOAD),)
|
|
{
|
|
/*
|
|
* For performance, BSS section is assumed to be 4 byte aligned and
|
|
* a multiple of 4 bytes
|
|
*/
|
|
. = ALIGN(4);
|
|
__bss_start = .;
|
|
*(.bss)
|
|
*(".bss.*")
|
|
COMMON_SYMBOLS
|
|
/*
|
|
* As memory is cleared in words only, it is simpler to ensure the BSS
|
|
* section ends on a 4 byte boundary. This wastes a maximum of 3 bytes.
|
|
*/
|
|
__bss_end = ALIGN(4);
|
|
} GROUP_LINK_IN(RAMABLE_REGION)
|
|
|
|
SECTION_PROLOGUE(_NOINIT_SECTION_NAME,(NOLOAD),)
|
|
{
|
|
/*
|
|
* This section is used for non-intialized objects that
|
|
* will not be cleared during the boot process.
|
|
*/
|
|
*(.noinit)
|
|
*(".noinit.*")
|
|
} GROUP_LINK_IN(RAMABLE_REGION)
|
|
|
|
/* Define linker symbols */
|
|
|
|
_end = .; /* end of image */
|
|
__bss_num_words = (__bss_end - __bss_start) >> 2;
|
|
|
|
GROUP_END(RAMABLE_REGION)
|
|
|
|
GROUP_START(SYSTEM_CONTROL_PERIPH)
|
|
SECTION_PROLOGUE(.scp,(NOLOAD),)
|
|
{
|
|
/*
|
|
* The leading '.' in the ".scp" section name indicates that section is
|
|
* mapped to neither a normal ROM nor a normal RAM area.
|
|
*/
|
|
|
|
*(.scp)
|
|
*(".scp.*")
|
|
} GROUP_LINK_IN(SYSTEM_CONTROL_PERIPH)
|
|
GROUP_END(SYSTEM_CONTROL_PERIPH)
|
|
|
|
GROUP_START(SYSTEM_CONTROL_SPACE)
|
|
SECTION_PROLOGUE(.scs,(NOLOAD),)
|
|
{
|
|
/*
|
|
* The leading '.' in the ".scs" section name indicates that section is
|
|
* mapped to neither normal ROM nor normal RAM space.
|
|
*/
|
|
|
|
*(.scs)
|
|
*(".scs.*")
|
|
} GROUP_LINK_IN(SYSTEM_CONTROL_SPACE)
|
|
GROUP_END(SYSTEM_CONTROL_SPACE)
|
|
}
|
|
|
|
#ifdef CONFIG_XIP
|
|
/*
|
|
* Round up number of words for DATA section to ensure that XIP copies the
|
|
* entire data section. XIP copy is done in words only, so there may be up
|
|
* to 3 extra bytes copied in next section (BSS). At run time, the XIP copy
|
|
* is done first followed by clearing the BSS section.
|
|
*/
|
|
__data_size = (__data_ram_end - __data_ram_start);
|
|
__data_num_words = (__data_size + 3) >> 2;
|
|
|
|
#endif
|