2005-06-24 09:01:16 +04:00
|
|
|
/*
|
|
|
|
* arch/xtensa/kernel/vmlinux.lds.S
|
|
|
|
*
|
|
|
|
* Xtensa linker script
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*
|
2013-01-05 04:57:17 +04:00
|
|
|
* Copyright (C) 2001 - 2008 Tensilica Inc.
|
2005-06-24 09:01:16 +04:00
|
|
|
*
|
|
|
|
* Chris Zankel <chris@zankel.net>
|
|
|
|
* Marc Gauthier <marc@tensilica.com, marc@alumni.uwaterloo.ca>
|
|
|
|
* Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
|
|
|
|
*/
|
|
|
|
|
2019-10-30 00:13:47 +03:00
|
|
|
#define RO_EXCEPTION_TABLE_ALIGN 16
|
|
|
|
|
2005-06-24 09:01:16 +04:00
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
2009-09-24 18:36:19 +04:00
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/thread_info.h>
|
2005-06-24 09:01:16 +04:00
|
|
|
|
2019-01-02 06:41:55 +03:00
|
|
|
#include <asm/core.h>
|
2012-12-03 15:01:43 +04:00
|
|
|
#include <asm/vectors.h>
|
2018-08-14 04:14:14 +03:00
|
|
|
|
2005-06-24 09:01:16 +04:00
|
|
|
OUTPUT_ARCH(xtensa)
|
|
|
|
ENTRY(_start)
|
|
|
|
|
2006-12-10 13:18:48 +03:00
|
|
|
#ifdef __XTENSA_EB__
|
2005-06-24 09:01:16 +04:00
|
|
|
jiffies = jiffies_64 + 4;
|
|
|
|
#else
|
|
|
|
jiffies = jiffies_64;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Note: In the following macros, it would be nice to specify only the
|
|
|
|
vector name and section kind and construct "sym" and "section" using
|
|
|
|
CPP concatenation, but that does not work reliably. Concatenating a
|
|
|
|
string with "." produces an invalid token. CPP will not print a
|
|
|
|
warning because it thinks this is an assembly file, but it leaves
|
|
|
|
them as multiple tokens and there may or may not be whitespace
|
|
|
|
between them. */
|
|
|
|
|
|
|
|
/* Macro for a relocation entry */
|
|
|
|
|
|
|
|
#define RELOCATE_ENTRY(sym, section) \
|
|
|
|
LONG(sym ## _start); \
|
|
|
|
LONG(sym ## _end); \
|
|
|
|
LONG(LOADADDR(section))
|
|
|
|
|
2020-02-01 07:11:24 +03:00
|
|
|
#if !defined(CONFIG_VECTORS_ADDR) && XCHAL_HAVE_VECBASE
|
|
|
|
#define MERGED_VECTORS 1
|
|
|
|
#else
|
|
|
|
#define MERGED_VECTORS 0
|
|
|
|
#endif
|
|
|
|
|
2017-12-04 07:55:35 +03:00
|
|
|
/*
|
2020-02-01 07:11:24 +03:00
|
|
|
* Macro to define a section for a vector. When MERGED_VECTORS is 0
|
|
|
|
* code for every vector is located with other init data. At startup
|
2017-12-04 07:55:35 +03:00
|
|
|
* time head.S copies code for every vector to its final position according
|
|
|
|
* to description recorded in the corresponding RELOCATE_ENTRY.
|
2005-06-24 09:01:16 +04:00
|
|
|
*/
|
|
|
|
|
2020-02-01 08:25:03 +03:00
|
|
|
#define SECTION_VECTOR4(sym, section, addr, prevsec) \
|
2017-12-04 07:55:35 +03:00
|
|
|
section addr : AT(((LOADADDR(prevsec) + SIZEOF(prevsec)) + 3) & ~ 3) \
|
2005-06-24 09:01:16 +04:00
|
|
|
{ \
|
|
|
|
. = ALIGN(4); \
|
|
|
|
sym ## _start = ABSOLUTE(.); \
|
|
|
|
*(section) \
|
|
|
|
sym ## _end = ABSOLUTE(.); \
|
|
|
|
}
|
2020-02-01 08:25:03 +03:00
|
|
|
|
|
|
|
#define SECTION_VECTOR2(section, addr) \
|
2017-01-04 21:40:49 +03:00
|
|
|
. = addr; \
|
|
|
|
*(section)
|
2005-06-24 09:01:16 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mapping of input sections to output sections when linking.
|
|
|
|
*/
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2006-12-10 13:18:48 +03:00
|
|
|
. = KERNELOFFSET;
|
2005-06-24 09:01:16 +04:00
|
|
|
/* .text section */
|
|
|
|
|
|
|
|
_text = .;
|
|
|
|
_stext = .;
|
|
|
|
|
|
|
|
.text :
|
|
|
|
{
|
2009-04-26 06:10:57 +04:00
|
|
|
/* The HEAD_TEXT section must be the first section! */
|
|
|
|
HEAD_TEXT
|
2017-01-04 21:40:49 +03:00
|
|
|
|
2020-02-01 07:11:24 +03:00
|
|
|
#if MERGED_VECTORS
|
2020-02-01 08:25:03 +03:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
|
|
|
_vecbase = .;
|
2017-01-04 21:40:49 +03:00
|
|
|
|
2021-07-26 17:32:55 +03:00
|
|
|
#ifdef SUPPORT_WINDOWED
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR2 (.WindowVectors.text, WINDOW_VECTORS_VADDR)
|
2021-07-26 17:32:55 +03:00
|
|
|
#endif
|
2017-01-04 21:40:49 +03:00
|
|
|
#if XCHAL_EXCM_LEVEL >= 2
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR2 (.Level2InterruptVector.text, INTLEVEL2_VECTOR_VADDR)
|
2017-01-04 21:40:49 +03:00
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 3
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR2 (.Level3InterruptVector.text, INTLEVEL3_VECTOR_VADDR)
|
2017-01-04 21:40:49 +03:00
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 4
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR2 (.Level4InterruptVector.text, INTLEVEL4_VECTOR_VADDR)
|
2017-01-04 21:40:49 +03:00
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 5
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR2 (.Level5InterruptVector.text, INTLEVEL5_VECTOR_VADDR)
|
2017-01-04 21:40:49 +03:00
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 6
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR2 (.Level6InterruptVector.text, INTLEVEL6_VECTOR_VADDR)
|
2017-01-04 21:40:49 +03:00
|
|
|
#endif
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR2 (.DebugInterruptVector.text, DEBUG_VECTOR_VADDR)
|
|
|
|
SECTION_VECTOR2 (.KernelExceptionVector.text, KERNEL_VECTOR_VADDR)
|
|
|
|
SECTION_VECTOR2 (.UserExceptionVector.text, USER_VECTOR_VADDR)
|
|
|
|
SECTION_VECTOR2 (.DoubleExceptionVector.text, DOUBLEEXC_VECTOR_VADDR)
|
2020-02-01 05:48:43 +03:00
|
|
|
|
2020-02-01 08:25:03 +03:00
|
|
|
*(.exception.text)
|
2017-01-04 21:40:49 +03:00
|
|
|
#endif
|
|
|
|
|
2017-12-04 07:55:35 +03:00
|
|
|
IRQENTRY_TEXT
|
|
|
|
SOFTIRQENTRY_TEXT
|
|
|
|
ENTRY_TEXT
|
2009-04-21 11:34:15 +04:00
|
|
|
TEXT_TEXT
|
2017-12-04 07:55:35 +03:00
|
|
|
SCHED_TEXT
|
|
|
|
CPUIDLE_TEXT
|
|
|
|
LOCK_TEXT
|
2019-10-14 21:33:44 +03:00
|
|
|
*(.fixup)
|
2005-06-24 09:01:16 +04:00
|
|
|
}
|
|
|
|
_etext = .;
|
2007-06-01 04:47:01 +04:00
|
|
|
PROVIDE (etext = .);
|
2005-06-24 09:01:16 +04:00
|
|
|
|
|
|
|
. = ALIGN(16);
|
|
|
|
|
2019-10-30 00:13:33 +03:00
|
|
|
RO_DATA(4096)
|
2005-06-24 09:01:16 +04:00
|
|
|
|
|
|
|
/* Data section */
|
|
|
|
|
2017-01-04 04:57:51 +03:00
|
|
|
#ifdef CONFIG_XIP_KERNEL
|
|
|
|
INIT_TEXT_SECTION(PAGE_SIZE)
|
|
|
|
#else
|
2012-06-20 23:52:58 +04:00
|
|
|
_sdata = .;
|
2019-10-30 00:13:35 +03:00
|
|
|
RW_DATA(XCHAL_ICACHE_LINESIZE, PAGE_SIZE, THREAD_SIZE)
|
2005-06-24 09:01:16 +04:00
|
|
|
_edata = .;
|
|
|
|
|
|
|
|
/* Initialization code and data: */
|
|
|
|
|
2009-09-24 18:36:19 +04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-06-24 09:01:16 +04:00
|
|
|
__init_begin = .;
|
2009-09-24 18:36:19 +04:00
|
|
|
INIT_TEXT_SECTION(PAGE_SIZE)
|
2005-06-24 09:01:16 +04:00
|
|
|
|
|
|
|
.init.data :
|
|
|
|
{
|
2008-01-20 16:15:03 +03:00
|
|
|
INIT_DATA
|
2017-01-04 04:57:51 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
.init.rodata :
|
|
|
|
{
|
2005-06-24 09:01:16 +04:00
|
|
|
. = ALIGN(0x4);
|
|
|
|
__tagtable_begin = .;
|
|
|
|
*(.taglist)
|
|
|
|
__tagtable_end = .;
|
2007-06-01 04:47:01 +04:00
|
|
|
|
|
|
|
. = ALIGN(16);
|
|
|
|
__boot_reloc_table_start = ABSOLUTE(.);
|
|
|
|
|
2020-02-01 07:11:24 +03:00
|
|
|
#if !MERGED_VECTORS
|
2021-07-26 17:32:55 +03:00
|
|
|
#ifdef SUPPORT_WINDOWED
|
2007-06-01 04:47:01 +04:00
|
|
|
RELOCATE_ENTRY(_WindowVectors_text,
|
|
|
|
.WindowVectors.text);
|
2021-07-26 17:32:55 +03:00
|
|
|
#endif
|
2013-01-05 04:57:17 +04:00
|
|
|
#if XCHAL_EXCM_LEVEL >= 2
|
|
|
|
RELOCATE_ENTRY(_Level2InterruptVector_text,
|
|
|
|
.Level2InterruptVector.text);
|
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 3
|
|
|
|
RELOCATE_ENTRY(_Level3InterruptVector_text,
|
|
|
|
.Level3InterruptVector.text);
|
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 4
|
|
|
|
RELOCATE_ENTRY(_Level4InterruptVector_text,
|
|
|
|
.Level4InterruptVector.text);
|
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 5
|
|
|
|
RELOCATE_ENTRY(_Level5InterruptVector_text,
|
|
|
|
.Level5InterruptVector.text);
|
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 6
|
|
|
|
RELOCATE_ENTRY(_Level6InterruptVector_text,
|
|
|
|
.Level6InterruptVector.text);
|
|
|
|
#endif
|
2007-06-01 04:47:01 +04:00
|
|
|
RELOCATE_ENTRY(_KernelExceptionVector_text,
|
|
|
|
.KernelExceptionVector.text);
|
|
|
|
RELOCATE_ENTRY(_UserExceptionVector_text,
|
|
|
|
.UserExceptionVector.text);
|
|
|
|
RELOCATE_ENTRY(_DoubleExceptionVector_text,
|
|
|
|
.DoubleExceptionVector.text);
|
2007-12-31 09:00:54 +03:00
|
|
|
RELOCATE_ENTRY(_DebugInterruptVector_text,
|
|
|
|
.DebugInterruptVector.text);
|
2020-02-01 05:48:43 +03:00
|
|
|
RELOCATE_ENTRY(_exception_text,
|
|
|
|
.exception.text);
|
2017-01-04 21:40:49 +03:00
|
|
|
#endif
|
2017-01-04 04:57:51 +03:00
|
|
|
#ifdef CONFIG_XIP_KERNEL
|
|
|
|
RELOCATE_ENTRY(_xip_data, .data);
|
|
|
|
RELOCATE_ENTRY(_xip_init_data, .init.data);
|
2020-02-01 08:25:03 +03:00
|
|
|
#endif
|
2013-10-17 02:42:26 +04:00
|
|
|
#if defined(CONFIG_SMP)
|
|
|
|
RELOCATE_ENTRY(_SecondaryResetVector_text,
|
|
|
|
.SecondaryResetVector.text);
|
|
|
|
#endif
|
|
|
|
|
2007-06-01 04:47:01 +04:00
|
|
|
__boot_reloc_table_end = ABSOLUTE(.) ;
|
2005-06-24 09:01:16 +04:00
|
|
|
|
2009-09-24 18:36:19 +04:00
|
|
|
INIT_SETUP(XCHAL_ICACHE_LINESIZE)
|
|
|
|
INIT_CALLS
|
|
|
|
CON_INITCALL
|
|
|
|
INIT_RAM_FS
|
2005-06-24 09:01:16 +04:00
|
|
|
}
|
2007-06-01 04:47:01 +04:00
|
|
|
|
2011-03-24 20:50:09 +03:00
|
|
|
PERCPU_SECTION(XCHAL_ICACHE_LINESIZE)
|
2007-06-01 04:47:01 +04:00
|
|
|
|
2005-06-24 09:01:16 +04:00
|
|
|
/* We need this dummy segment here */
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
.dummy : { LONG(0) }
|
|
|
|
|
2020-02-01 08:25:03 +03:00
|
|
|
#undef LAST
|
|
|
|
#define LAST .dummy
|
|
|
|
|
2020-02-01 07:11:24 +03:00
|
|
|
#if !MERGED_VECTORS
|
2005-06-24 09:01:16 +04:00
|
|
|
/* The vectors are relocated to the real position at startup time */
|
|
|
|
|
2021-07-26 17:32:55 +03:00
|
|
|
#ifdef SUPPORT_WINDOWED
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_WindowVectors_text,
|
2005-06-24 09:01:16 +04:00
|
|
|
.WindowVectors.text,
|
2017-12-04 07:55:35 +03:00
|
|
|
WINDOW_VECTORS_VADDR,
|
2021-07-26 17:32:55 +03:00
|
|
|
LAST)
|
|
|
|
#undef LAST
|
|
|
|
#define LAST .WindowVectors.text
|
|
|
|
#endif
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_DebugInterruptVector_text,
|
2005-06-24 09:01:16 +04:00
|
|
|
.DebugInterruptVector.text,
|
2012-12-03 15:01:43 +04:00
|
|
|
DEBUG_VECTOR_VADDR,
|
2021-07-26 17:32:55 +03:00
|
|
|
LAST)
|
2013-01-05 04:57:17 +04:00
|
|
|
#undef LAST
|
|
|
|
#define LAST .DebugInterruptVector.text
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 2
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_Level2InterruptVector_text,
|
2013-01-05 04:57:17 +04:00
|
|
|
.Level2InterruptVector.text,
|
2012-12-03 15:01:43 +04:00
|
|
|
INTLEVEL2_VECTOR_VADDR,
|
2017-12-04 07:55:35 +03:00
|
|
|
LAST)
|
2013-01-05 04:57:17 +04:00
|
|
|
# undef LAST
|
|
|
|
# define LAST .Level2InterruptVector.text
|
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 3
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_Level3InterruptVector_text,
|
2013-01-05 04:57:17 +04:00
|
|
|
.Level3InterruptVector.text,
|
2012-12-03 15:01:43 +04:00
|
|
|
INTLEVEL3_VECTOR_VADDR,
|
2017-12-04 07:55:35 +03:00
|
|
|
LAST)
|
2013-01-05 04:57:17 +04:00
|
|
|
# undef LAST
|
|
|
|
# define LAST .Level3InterruptVector.text
|
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 4
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_Level4InterruptVector_text,
|
2013-01-05 04:57:17 +04:00
|
|
|
.Level4InterruptVector.text,
|
2012-12-03 15:01:43 +04:00
|
|
|
INTLEVEL4_VECTOR_VADDR,
|
2017-12-04 07:55:35 +03:00
|
|
|
LAST)
|
2013-01-05 04:57:17 +04:00
|
|
|
# undef LAST
|
|
|
|
# define LAST .Level4InterruptVector.text
|
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 5
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_Level5InterruptVector_text,
|
2013-01-05 04:57:17 +04:00
|
|
|
.Level5InterruptVector.text,
|
2012-12-03 15:01:43 +04:00
|
|
|
INTLEVEL5_VECTOR_VADDR,
|
2017-12-04 07:55:35 +03:00
|
|
|
LAST)
|
2013-01-05 04:57:17 +04:00
|
|
|
# undef LAST
|
|
|
|
# define LAST .Level5InterruptVector.text
|
|
|
|
#endif
|
|
|
|
#if XCHAL_EXCM_LEVEL >= 6
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_Level6InterruptVector_text,
|
2013-01-05 04:57:17 +04:00
|
|
|
.Level6InterruptVector.text,
|
2012-12-03 15:01:43 +04:00
|
|
|
INTLEVEL6_VECTOR_VADDR,
|
2017-12-04 07:55:35 +03:00
|
|
|
LAST)
|
2013-01-05 04:57:17 +04:00
|
|
|
# undef LAST
|
|
|
|
# define LAST .Level6InterruptVector.text
|
|
|
|
#endif
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_KernelExceptionVector_text,
|
2005-06-24 09:01:16 +04:00
|
|
|
.KernelExceptionVector.text,
|
2012-12-03 15:01:43 +04:00
|
|
|
KERNEL_VECTOR_VADDR,
|
2017-12-04 07:55:35 +03:00
|
|
|
LAST)
|
|
|
|
#undef LAST
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_UserExceptionVector_text,
|
2005-06-24 09:01:16 +04:00
|
|
|
.UserExceptionVector.text,
|
2012-12-03 15:01:43 +04:00
|
|
|
USER_VECTOR_VADDR,
|
2017-12-04 07:55:35 +03:00
|
|
|
.KernelExceptionVector.text)
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_DoubleExceptionVector_text,
|
2005-06-24 09:01:16 +04:00
|
|
|
.DoubleExceptionVector.text,
|
2012-12-03 15:01:43 +04:00
|
|
|
DOUBLEEXC_VECTOR_VADDR,
|
2017-12-04 07:55:35 +03:00
|
|
|
.UserExceptionVector.text)
|
2020-02-01 05:48:43 +03:00
|
|
|
#define LAST .DoubleExceptionVector.text
|
2013-10-17 02:42:26 +04:00
|
|
|
|
2017-01-04 21:40:49 +03:00
|
|
|
#endif
|
2020-02-01 08:25:03 +03:00
|
|
|
#if defined(CONFIG_SMP)
|
2013-10-17 02:42:26 +04:00
|
|
|
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_SecondaryResetVector_text,
|
2013-10-17 02:42:26 +04:00
|
|
|
.SecondaryResetVector.text,
|
|
|
|
RESET_VECTOR1_VADDR,
|
2020-02-01 08:25:03 +03:00
|
|
|
LAST)
|
2020-02-01 05:48:43 +03:00
|
|
|
#undef LAST
|
|
|
|
#define LAST .SecondaryResetVector.text
|
2013-10-17 02:42:26 +04:00
|
|
|
|
2020-02-01 05:48:43 +03:00
|
|
|
#endif
|
2020-02-01 07:11:24 +03:00
|
|
|
#if !MERGED_VECTORS
|
2020-02-01 08:25:03 +03:00
|
|
|
SECTION_VECTOR4 (_exception_text,
|
2020-02-01 05:48:43 +03:00
|
|
|
.exception.text,
|
|
|
|
,
|
|
|
|
LAST)
|
|
|
|
#undef LAST
|
|
|
|
#define LAST .exception.text
|
2013-10-17 02:42:26 +04:00
|
|
|
|
|
|
|
#endif
|
2020-02-01 05:48:43 +03:00
|
|
|
. = (LOADADDR(LAST) + SIZEOF(LAST) + 3) & ~ 3;
|
2013-10-17 02:42:26 +04:00
|
|
|
|
2020-02-01 07:11:24 +03:00
|
|
|
.dummy1 : AT(ADDR(.dummy1)) { LONG(0) }
|
2009-09-24 18:36:19 +04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-06-24 09:01:16 +04:00
|
|
|
|
2017-01-04 04:57:51 +03:00
|
|
|
#ifndef CONFIG_XIP_KERNEL
|
2005-06-24 09:01:16 +04:00
|
|
|
__init_end = .;
|
|
|
|
|
2009-09-24 18:36:19 +04:00
|
|
|
BSS_SECTION(0, 8192, 0)
|
2017-01-04 04:57:51 +03:00
|
|
|
#endif
|
2007-06-01 04:47:01 +04:00
|
|
|
|
2005-06-24 09:01:16 +04:00
|
|
|
_end = .;
|
|
|
|
|
2017-01-04 04:57:51 +03:00
|
|
|
#ifdef CONFIG_XIP_KERNEL
|
|
|
|
. = CONFIG_XIP_DATA_ADDR;
|
|
|
|
|
|
|
|
_xip_start = .;
|
|
|
|
|
|
|
|
#undef LOAD_OFFSET
|
|
|
|
#define LOAD_OFFSET \
|
2020-02-01 07:11:24 +03:00
|
|
|
(CONFIG_XIP_DATA_ADDR - (LOADADDR(.dummy1) + SIZEOF(.dummy1) + 3) & ~ 3)
|
2017-01-04 04:57:51 +03:00
|
|
|
|
|
|
|
_xip_data_start = .;
|
|
|
|
_sdata = .;
|
2019-12-03 23:46:44 +03:00
|
|
|
RW_DATA(XCHAL_ICACHE_LINESIZE, PAGE_SIZE, THREAD_SIZE)
|
2017-01-04 04:57:51 +03:00
|
|
|
_edata = .;
|
|
|
|
_xip_data_end = .;
|
|
|
|
|
|
|
|
/* Initialization data: */
|
|
|
|
|
|
|
|
STRUCT_ALIGN();
|
|
|
|
|
|
|
|
_xip_init_data_start = .;
|
|
|
|
__init_begin = .;
|
|
|
|
.init.data :
|
|
|
|
{
|
|
|
|
INIT_DATA
|
|
|
|
}
|
|
|
|
_xip_init_data_end = .;
|
|
|
|
__init_end = .;
|
|
|
|
BSS_SECTION(0, 8192, 0)
|
|
|
|
|
|
|
|
_xip_end = .;
|
|
|
|
|
|
|
|
#undef LOAD_OFFSET
|
|
|
|
#endif
|
|
|
|
|
2018-10-30 04:30:46 +03:00
|
|
|
DWARF_DEBUG
|
2005-06-24 09:01:16 +04:00
|
|
|
|
2018-10-30 11:28:56 +03:00
|
|
|
.xt.prop 0 : { KEEP(*(.xt.prop .xt.prop.* .gnu.linkonce.prop.*)) }
|
|
|
|
.xt.insn 0 : { KEEP(*(.xt.insn .xt.insn.* .gnu.linkonce.x*)) }
|
|
|
|
.xt.lit 0 : { KEEP(*(.xt.lit .xt.lit.* .gnu.linkonce.p*)) }
|
linker script: unify usage of discard definition
Discarded sections in different archs share some commonality but have
considerable differences. This led to linker script for each arch
implementing its own /DISCARD/ definition, which makes maintaining
tedious and adding new entries error-prone.
This patch makes all linker scripts to move discard definitions to the
end of the linker script and use the common DISCARDS macro. As ld
uses the first matching section definition, archs can include default
discarded sections by including them earlier in the linker script.
ia64 is notable because it first throws away some ia64 specific
subsections and then include the rest of the sections into the final
image, so those sections must be discarded before the inclusion.
defconfig compile tested for x86, x86-64, powerpc, powerpc64, ia64,
alpha, sparc, sparc64 and s390. Michal Simek tested microblaze.
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Paul Mundt <lethal@linux-sh.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Tested-by: Michal Simek <monstr@monstr.eu>
Cc: linux-arch@vger.kernel.org
Cc: Michal Simek <monstr@monstr.eu>
Cc: microblaze-uclinux@itee.uq.edu.au
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Tony Luck <tony.luck@intel.com>
2009-07-09 06:27:40 +04:00
|
|
|
|
|
|
|
/* Sections to be discarded */
|
|
|
|
DISCARDS
|
2005-06-24 09:01:16 +04:00
|
|
|
}
|