2016-05-04 13:27:52 -07:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @brief Linker command/script file
|
|
|
|
|
*
|
|
|
|
|
* Linker script for the Nios II platform
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define _LINKER
|
|
|
|
|
#define _ASMLANGUAGE
|
|
|
|
|
|
|
|
|
|
#include <autoconf.h>
|
|
|
|
|
#include <sections.h>
|
|
|
|
|
|
|
|
|
|
#include <linker-defs.h>
|
|
|
|
|
#include <linker-tool.h>
|
|
|
|
|
|
2016-06-07 13:11:45 -07:00
|
|
|
|
/* These sections are specific to this CPU */
|
|
|
|
|
#define _EXCEPTION_SECTION_NAME exceptions
|
|
|
|
|
#define _RESET_SECTION_NAME reset
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-06-07 13:11:45 -07:00
|
|
|
|
/* This linker script requires the following macros to be defined in the
|
|
|
|
|
* SOC-specfic linker script. All of these values can be found defined
|
|
|
|
|
* in system.h for CPU configurations that can generate a HAL.
|
|
|
|
|
*
|
|
|
|
|
* _RESET_VECTOR CPU entry point at boot
|
|
|
|
|
* _EXC_VECTOR General exception vector
|
|
|
|
|
* _ROM_ADDR Beginning of flash memory
|
|
|
|
|
* _ROM_SIZE Size in bytes of flash memory
|
|
|
|
|
* _RAM_ADDR Beginning of RAM
|
|
|
|
|
* _RAM_SIZE Size of RAM in bytes
|
|
|
|
|
*
|
|
|
|
|
* For now we support two scenarios:
|
|
|
|
|
*
|
|
|
|
|
* 1. Non-XIP systems where the reset vector is at the beginning of RAM
|
|
|
|
|
* with the exception vector 0x20 bytes after it.
|
|
|
|
|
* 2. XIP systems where the reset vector is at the beginning of ROM and
|
|
|
|
|
* the exception vector is in RAM
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_XIP
|
|
|
|
|
#define ROMABLE_REGION FLASH
|
|
|
|
|
#define RAMABLE_REGION SRAM
|
|
|
|
|
#else
|
|
|
|
|
#define ROMABLE_REGION SRAM
|
|
|
|
|
#define RAMABLE_REGION SRAM
|
|
|
|
|
#endif
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-06-07 13:11:45 -07:00
|
|
|
|
#ifdef CONFIG_XIP
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-06-07 13:11:45 -07:00
|
|
|
|
ASSERT(_RESET_VECTOR == _ROM_ADDR, "Reset vector not at beginning of ROM!")
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
|
|
|
|
MEMORY
|
|
|
|
|
{
|
2016-06-07 13:11:45 -07:00
|
|
|
|
RESET (rx) : ORIGIN = _RESET_VECTOR, LENGTH = 0x20
|
|
|
|
|
FLASH (rx) : ORIGIN = _RESET_VECTOR + 0x20 , LENGTH = (_ROM_SIZE - 0x20)
|
|
|
|
|
SRAM (wx) : ORIGIN = _EXC_VECTOR, LENGTH = _RAM_SIZE - (_EXC_VECTOR - _RAM_ADDR)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-07 13:11:45 -07:00
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
MEMORY
|
|
|
|
|
{
|
|
|
|
|
RESET (wx) : ORIGIN = _RESET_VECTOR, LENGTH = 0x20
|
|
|
|
|
SRAM (wx) : ORIGIN = _EXC_VECTOR, LENGTH = _RAM_SIZE - (_EXC_VECTOR - _RAM_ADDR)
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-05-04 13:27:52 -07:00
|
|
|
|
SECTIONS
|
|
|
|
|
{
|
|
|
|
|
GROUP_START(ROMABLE_REGION)
|
2016-06-07 13:11:45 -07:00
|
|
|
|
_image_rom_start = _ROM_ADDR;
|
|
|
|
|
|
|
|
|
|
SECTION_PROLOGUE(_RESET_SECTION_NAME,,)
|
|
|
|
|
{
|
2016-06-17 11:44:51 -07:00
|
|
|
|
KEEP(*(.reset.*))
|
2016-06-07 13:11:45 -07:00
|
|
|
|
} GROUP_LINK_IN(RESET)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-06-17 13:10:44 -07:00
|
|
|
|
#ifndef CONFIG_XIP
|
|
|
|
|
SECTION_PROLOGUE(_EXCEPTION_SECTION_NAME,,)
|
|
|
|
|
{
|
|
|
|
|
KEEP(*(".exception.entry.*"))
|
|
|
|
|
*(".exception.other.*")
|
|
|
|
|
|
|
|
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-05-04 13:27:52 -07:00
|
|
|
|
SECTION_PROLOGUE(_TEXT_SECTION_NAME,,)
|
|
|
|
|
{
|
2016-06-07 13:11:45 -07:00
|
|
|
|
/* XXX If ALT_CPU_RESET_ADDR is not the same as _ROM_ADDR
|
|
|
|
|
* we are going to waste flash space? */
|
|
|
|
|
. = ALT_CPU_RESET_ADDR;
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
|
|
|
|
_image_text_start = .;
|
|
|
|
|
*(.text)
|
|
|
|
|
*(".text.*")
|
|
|
|
|
*(.gnu.linkonce.t.*)
|
|
|
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
|
|
|
|
|
|
_image_text_end = .;
|
|
|
|
|
|
2016-06-30 16:45:08 -07:00
|
|
|
|
#if defined(CONFIG_GP_ALL_DATA)
|
|
|
|
|
_gp = ABSOLUTE(. + 0x8000);
|
|
|
|
|
PROVIDE(gp = _gp);
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-05-04 13:27:52 -07:00
|
|
|
|
#ifdef CONFIG_CPLUSPLUS
|
|
|
|
|
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 elment 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(init_array, (OPTIONAL),)
|
|
|
|
|
{
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
__init_array_start = .;
|
|
|
|
|
KEEP(*(SORT_BY_NAME(".init_array*")))
|
|
|
|
|
__init_array_end = .;
|
|
|
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
SECTION_PROLOGUE(devconfig, (OPTIONAL),)
|
|
|
|
|
{
|
|
|
|
|
__devconfig_start = .;
|
|
|
|
|
*(".devconfig.*")
|
|
|
|
|
KEEP(*(SORT_BY_NAME(".devconfig*")))
|
|
|
|
|
__devconfig_end = .;
|
|
|
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
|
|
|
|
|
|
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
|
|
|
|
|
{
|
|
|
|
|
*(.rodata)
|
|
|
|
|
*(".rodata.*")
|
|
|
|
|
*(.gnu.linkonce.r.*)
|
|
|
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
|
|
|
|
|
|
_image_rom_end = .;
|
|
|
|
|
__data_rom_start = ALIGN(4); /* XIP imaged DATA ROM start addr */
|
|
|
|
|
|
|
|
|
|
GROUP_END(ROMABLE_REGION)
|
|
|
|
|
|
|
|
|
|
GROUP_START(RAMABLE_REGION)
|
|
|
|
|
|
2016-06-07 13:11:45 -07:00
|
|
|
|
#ifdef CONFIG_XIP
|
|
|
|
|
/* Altera strongly recommends keeping exception entry code in RAM
|
|
|
|
|
* even on XIP systems
|
|
|
|
|
*
|
|
|
|
|
* This is code not data, but we need this copied just like XIP data
|
|
|
|
|
*/
|
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
SECTION_DATA_PROLOGUE(_EXCEPTION_SECTION_NAME,,)
|
2016-06-07 13:11:45 -07:00
|
|
|
|
{
|
|
|
|
|
_image_ram_start = .;
|
|
|
|
|
__data_ram_start = .;
|
|
|
|
|
|
|
|
|
|
KEEP(*(".exception.entry.*"))
|
2016-06-17 13:10:44 -07:00
|
|
|
|
*(".exception.other.*")
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
2016-06-07 13:11:45 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
SECTION_DATA_PROLOGUE(initlevel, (OPTIONAL),)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
{
|
2016-06-07 13:11:45 -07:00
|
|
|
|
#ifndef CONFIG_XIP
|
2016-05-04 13:27:52 -07:00
|
|
|
|
_image_ram_start = .;
|
2016-06-07 13:11:45 -07:00
|
|
|
|
#endif
|
2016-05-04 13:27:52 -07:00
|
|
|
|
DEVICE_INIT_SECTIONS()
|
2016-09-22 14:20:56 -07:00
|
|
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
SECTION_DATA_PROLOGUE(_k_task_list, (OPTIONAL),)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
{
|
|
|
|
|
_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 = .;
|
2016-09-22 14:20:56 -07:00
|
|
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
SECTION_DATA_PROLOGUE(_k_task_ptr, (OPTIONAL),)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
{
|
|
|
|
|
_k_task_ptr_start = .;
|
|
|
|
|
*(._k_task_ptr.public.*)
|
|
|
|
|
*(._k_task_ptr.private.*)
|
|
|
|
|
*(._k_task_ptr.idle.*)
|
|
|
|
|
KEEP(*(SORT_BY_NAME("._k_task_ptr*")))
|
|
|
|
|
_k_task_ptr_end = .;
|
2016-09-22 14:20:56 -07:00
|
|
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
SECTION_DATA_PROLOGUE(_k_pipe_ptr, (OPTIONAL),)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
{
|
|
|
|
|
_k_pipe_ptr_start = .;
|
|
|
|
|
*(._k_pipe_ptr.public.*)
|
|
|
|
|
*(._k_pipe_ptr.private.*)
|
|
|
|
|
KEEP(*(SORT_BY_NAME("._k_pipe_ptr*")))
|
|
|
|
|
_k_pipe_ptr_end = .;
|
2016-09-22 14:20:56 -07:00
|
|
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
SECTION_DATA_PROLOGUE(_k_mem_map_ptr, (OPTIONAL),)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
{
|
|
|
|
|
_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 = .;
|
2016-09-22 14:20:56 -07:00
|
|
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
SECTION_DATA_PROLOGUE(_k_event_list, (OPTIONAL),)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
{
|
|
|
|
|
_k_event_list_start = .;
|
|
|
|
|
*(._k_event_list.event.*)
|
|
|
|
|
KEEP(*(SORT_BY_NAME("._k_event_list*")))
|
|
|
|
|
_k_event_list_end = .;
|
2016-09-22 14:20:56 -07:00
|
|
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
SECTION_DATA_PROLOGUE(_DATA_SECTION_NAME,,)
|
2016-06-30 11:57:51 -07:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
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])))
|
|
|
|
|
|
|
|
|
|
*(.data)
|
|
|
|
|
*(".data.*")
|
|
|
|
|
|
|
|
|
|
/* the Nios2 architecture only has 16-bit signed immediate offsets in
|
|
|
|
|
* the instructions, so accessing a general address requires typically
|
|
|
|
|
* three instructions – basically, two for the two halves of the 32-bit
|
|
|
|
|
* address, and one to merge them – but if we can put the most commonly
|
|
|
|
|
* accessed globals in a special 64K span of memory addressed by the GP
|
|
|
|
|
* register, then we can access those values in a single instruction,
|
|
|
|
|
* saving both codespace and runtime.
|
|
|
|
|
*
|
|
|
|
|
* Since these immediate offsets are signed, place gp 0x8000 past the
|
|
|
|
|
* beginning of .sdata so that we can use both positive and negative
|
|
|
|
|
* offsets.
|
|
|
|
|
*/
|
2016-06-30 16:45:08 -07:00
|
|
|
|
#if defined(CONFIG_GP_LOCAL) || defined(CONFIG_GP_GLOBAL)
|
2016-06-30 11:57:51 -07:00
|
|
|
|
_gp = ABSOLUTE(. + 0x8000);
|
|
|
|
|
PROVIDE(gp = _gp);
|
2016-06-30 16:45:08 -07:00
|
|
|
|
#endif
|
2016-06-30 11:57:51 -07:00
|
|
|
|
|
|
|
|
|
*(.sdata .sdata.* .gnu.linkonce.s.*)
|
|
|
|
|
*(.sdata2 .sdata2.* .gnu.linkonce.s2.*)
|
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
2016-06-30 11:57:51 -07:00
|
|
|
|
|
2016-05-04 13:27:52 -07:00
|
|
|
|
__data_ram_end = .;
|
|
|
|
|
|
2016-09-22 14:20:56 -07:00
|
|
|
|
SECTION_DATA_PROLOGUE(_BSS_SECTION_NAME,(NOLOAD),)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* For performance, BSS section is assumed to be 4 byte aligned and
|
|
|
|
|
* a multiple of 4 bytes
|
|
|
|
|
*/
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
__bss_start = .;
|
2016-06-21 13:59:07 -07:00
|
|
|
|
*(.sbss)
|
2016-06-30 11:57:51 -07:00
|
|
|
|
*(".sbss.*")
|
|
|
|
|
*(.bss)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
*(".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);
|
2016-09-22 14:20:56 -07:00
|
|
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, RAMABLE_REGION)
|
2016-05-04 13:27:52 -07:00
|
|
|
|
|
|
|
|
|
SECTION_PROLOGUE(_NOINIT_SECTION_NAME,(NOLOAD),)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* This section is used for non-initialized objects that
|
|
|
|
|
* will not be cleared during the boot process.
|
|
|
|
|
*/
|
|
|
|
|
*(.noinit)
|
|
|
|
|
*(".noinit.*")
|
|
|
|
|
} GROUP_LINK_IN(RAMABLE_REGION)
|
|
|
|
|
|
|
|
|
|
/* Define linker symbols */
|
|
|
|
|
_image_ram_end = .;
|
|
|
|
|
_end = .; /* end of image */
|
|
|
|
|
|
|
|
|
|
GROUP_END(RAMABLE_REGION)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|