2015-04-10 16:44:37 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2014, Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-18 17:01:01 -08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-10 16:44:37 -07:00
|
|
|
*/
|
|
|
|
|
2015-12-04 10:09:39 -05:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Definitions of various linker Sections.
|
|
|
|
*
|
2015-10-20 09:42:33 -07:00
|
|
|
* Linker Section declarations used by linker script, C files and Assembly
|
|
|
|
* files.
|
2015-07-01 17:22:39 -04:00
|
|
|
*/
|
2015-04-10 16:44:37 -07:00
|
|
|
|
|
|
|
#ifndef _SECTIONS_H
|
|
|
|
#define _SECTIONS_H
|
|
|
|
|
|
|
|
#define _TEXT_SECTION_NAME text
|
|
|
|
#define _RODATA_SECTION_NAME rodata
|
|
|
|
#define _CTOR_SECTION_NAME ctors
|
|
|
|
/* Linker issue with XIP where the name "data" cannot be used */
|
|
|
|
#define _DATA_SECTION_NAME datas
|
|
|
|
#define _BSS_SECTION_NAME bss
|
|
|
|
#define _NOINIT_SECTION_NAME noinit
|
|
|
|
|
|
|
|
#define _UNDEFINED_SECTION_NAME undefined
|
|
|
|
|
|
|
|
/* Various text section names */
|
|
|
|
#define TEXT text
|
2015-10-09 06:20:52 -04:00
|
|
|
#if defined(CONFIG_X86)
|
2015-04-10 16:44:37 -07:00
|
|
|
#define TEXT_START text_start /* beginning of TEXT section */
|
|
|
|
#else
|
|
|
|
#define TEXT_START text /* beginning of TEXT section */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Various data type section names */
|
|
|
|
#define BSS bss
|
|
|
|
#define RODATA rodata
|
|
|
|
#define DATA data
|
|
|
|
#define NOINIT noinit
|
|
|
|
|
2015-06-05 22:27:08 -04:00
|
|
|
#if defined(CONFIG_ARM)
|
2015-04-10 16:44:37 -07:00
|
|
|
#define SCS_SECTION scs
|
|
|
|
#define SCP_SECTION scp
|
|
|
|
|
|
|
|
#define SECURITY_FRDM_K64F security_frdm_k64f
|
|
|
|
#define IRQ_VECTOR_TABLE irq_vector_table
|
|
|
|
|
2015-06-05 22:27:49 -04:00
|
|
|
#elif defined(CONFIG_ARC)
|
2015-04-10 16:44:37 -07:00
|
|
|
|
|
|
|
#define IRQ_VECTOR_TABLE irq_vector_table
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <section_tags.h>
|
|
|
|
|
|
|
|
#endif /* _SECTIONS_H */
|