2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2014, Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-04 23:09:39 +08:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief GCC toolchain linker defs
|
|
|
|
*
|
2015-10-21 00:42:33 +08:00
|
|
|
* This header file defines the necessary macros used by the linker script for
|
|
|
|
* use with the GCC linker.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#ifndef __LINKER_TOOL_GCC_H
|
|
|
|
#define __LINKER_TOOL_GCC_H
|
|
|
|
|
2016-04-27 01:22:39 +08:00
|
|
|
#if defined(CONFIG_ARM)
|
|
|
|
OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
|
2015-04-11 07:44:37 +08:00
|
|
|
#elif defined(CONFIG_ARC)
|
2016-04-27 01:22:39 +08:00
|
|
|
OUTPUT_FORMAT("elf32-littlearc", "elf32-bigarc", "elf32-littlearc")
|
|
|
|
#elif defined(CONFIG_X86)
|
|
|
|
#if defined(__IAMCU)
|
|
|
|
OUTPUT_FORMAT("elf32-iamcu")
|
|
|
|
OUTPUT_ARCH(iamcu:intel)
|
|
|
|
#else
|
|
|
|
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
|
|
|
|
OUTPUT_ARCH(i386)
|
|
|
|
#endif
|
2016-04-22 05:47:09 +08:00
|
|
|
#elif defined(CONFIG_NIOS2)
|
|
|
|
OUTPUT_FORMAT("elf32-littlenios2", "elf32-bignios2", "elf32-littlenios2")
|
arch: added support for the riscv32 architecture
RISC-V is an open-source instruction set architecture.
Added support for the 32bit version of RISC-V to Zephyr.
1) exceptions/interrupts/faults are handled at the architecture
level via the __irq_wrapper handler. Context saving/restoring
of registers can be handled at both architecture and SOC levels.
If SOC-specific registers need to be saved, SOC level needs to
provide __soc_save_context and __soc_restore_context functions
that shall be accounted by the architecture level, when
corresponding config variable RISCV_SOC_CONTEXT_SAVE is set.
2) As RISC-V architecture does not provide a clear ISA specification
about interrupt handling, each RISC-V SOC handles it in its own
way. Hence, at the architecture level, the __irq_wrapper handler
expects the following functions to be provided by the SOC level:
__soc_is_irq: to check if the exception is the result of an
interrupt or not.
__soc_handle_irq: handle pending IRQ at SOC level (ex: clear
pending IRQ in SOC-specific IRQ register)
3) Thread/task scheduling, as well as IRQ offloading are handled via
the RISC-V system call ("ecall"), which is also handled via the
__irq_wrapper handler. The _Swap asm function just calls "ecall"
to generate an exception.
4) As there is no conventional way of handling CPU power save in
RISC-V, the default nano_cpu_idle and nano_cpu_atomic_idle
functions just unlock interrupts and return to the caller, without
issuing any CPU power saving instruction. Nonetheless, to allow
SOC-level to implement proper CPU power save, nano_cpu_idle and
nano_cpu_atomic_idle functions are defined as __weak
at the architecture level.
Change-Id: I980a161d0009f3f404ad22b226a6229fbb492389
Signed-off-by: Jean-Paul Etienne <fractalclone@gmail.com>
2017-01-11 07:24:30 +08:00
|
|
|
#elif defined(CONFIG_RISCV32)
|
|
|
|
OUTPUT_ARCH(riscv)
|
|
|
|
OUTPUT_FORMAT("elf32-littleriscv")
|
2017-01-23 00:25:40 +08:00
|
|
|
#elif defined(CONFIG_XTENSA)
|
|
|
|
/* Not needed */
|
2015-04-11 07:44:37 +08:00
|
|
|
#else
|
2016-04-27 01:22:39 +08:00
|
|
|
#error Arch not supported.
|
2015-06-20 11:37:23 +08:00
|
|
|
#endif
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The GROUP_START() and GROUP_END() macros are used to define a group
|
|
|
|
* of sections located in one memory area, such as RAM, ROM, etc.
|
|
|
|
* The <where> parameter is the name of the memory area.
|
|
|
|
*/
|
|
|
|
#define GROUP_START(where)
|
|
|
|
#define GROUP_END(where)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The GROUP_LINK_IN() macro is located at the end of the section
|
|
|
|
* description and tells the linker that this section is located in
|
|
|
|
* the memory area specified by <where> argument.
|
|
|
|
*/
|
|
|
|
#define GROUP_LINK_IN(where) > where
|
|
|
|
|
2016-09-23 05:20:56 +08:00
|
|
|
/*
|
|
|
|
* As GROUP_LINK_IN(), but takes a second argument indicating the
|
|
|
|
* memory region (e.g. "ROM") for the load address. Used for
|
|
|
|
* initialized data sections that on XIP platforms must be copied at
|
|
|
|
* startup.
|
|
|
|
*
|
|
|
|
* And, because output directives in GNU ld are "sticky", this must
|
|
|
|
* also be used on the first section *after* such an initialized data
|
|
|
|
* section, specifying the same memory region (e.g. "RAM") for both
|
|
|
|
* vregion and lregion.
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_XIP
|
|
|
|
#define GROUP_DATA_LINK_IN(vregion, lregion) > vregion AT> lregion
|
|
|
|
#else
|
|
|
|
#define GROUP_DATA_LINK_IN(vregion, lregion) > vregion
|
|
|
|
#endif
|
|
|
|
|
2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* The GROUP_FOLLOWS_AT() macro is located at the end of the section
|
|
|
|
* and indicates that the section does not specify an address at which
|
|
|
|
* it is to be loaded, but that it follows a section which did specify
|
|
|
|
* such an address
|
|
|
|
*/
|
|
|
|
#define GROUP_FOLLOWS_AT(where) AT > where
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The SECTION_PROLOGUE() macro is used to define the beginning of a section.
|
|
|
|
* The <name> parameter is the name of the section, and the <option> parameter
|
|
|
|
* is to include any special options such as (NOLOAD). Page alignment has its
|
|
|
|
* own parameter since it needs abstraction across the different toolchains.
|
|
|
|
* If not required, the <options> and <align> parameters should be left blank.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SECTION_PROLOGUE(name, options, align) name options : align
|
|
|
|
|
|
|
|
/*
|
2016-09-23 05:20:56 +08:00
|
|
|
* As for SECTION_PROLOGUE(), except that this one must (!) be used
|
2017-04-19 06:56:26 +08:00
|
|
|
* for data sections which on XIP platforms will have differing
|
2016-09-23 05:20:56 +08:00
|
|
|
* virtual and load addresses (i.e. they'll be copied into RAM at
|
|
|
|
* program startup). Such a section must (!) also use
|
|
|
|
* GROUP_LINK_IN_LMA to specify the correct output load address.
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
2016-09-23 05:20:56 +08:00
|
|
|
#ifdef CONFIG_XIP
|
|
|
|
#define SECTION_DATA_PROLOGUE(name, options, align) \
|
|
|
|
name options : ALIGN_WITH_INPUT align
|
|
|
|
#else
|
|
|
|
#define SECTION_DATA_PROLOGUE(name, options, align) name options : align
|
|
|
|
#endif
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#define SORT_BY_NAME(x) SORT(x)
|
|
|
|
#define OPTIONAL
|
|
|
|
|
|
|
|
#define COMMON_SYMBOLS *(COMMON)
|
|
|
|
|
|
|
|
#endif /* !__LINKER_TOOL_GCC_H */
|