2005-06-24 07:01:16 +02: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.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 - 2005 Tensilica Inc.
|
|
|
|
*
|
|
|
|
* Chris Zankel <chris@zankel.net>
|
|
|
|
* Marc Gauthier <marc@tensilica.com, marc@alumni.uwaterloo.ca>
|
|
|
|
* Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
#include <asm/variant/core.h>
|
2005-06-24 07:01:16 +02:00
|
|
|
OUTPUT_ARCH(xtensa)
|
|
|
|
ENTRY(_start)
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
#ifdef __XTENSA_EB__
|
2005-06-24 07:01:16 +02:00
|
|
|
jiffies = jiffies_64 + 4;
|
|
|
|
#else
|
|
|
|
jiffies = jiffies_64;
|
|
|
|
#endif
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
#define KERNELOFFSET 0xd0001000
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* 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))
|
|
|
|
|
|
|
|
/* Macro to define a section for a vector.
|
|
|
|
*
|
|
|
|
* Use of the MIN function catches the types of errors illustrated in
|
|
|
|
* the following example:
|
|
|
|
*
|
|
|
|
* Assume the section .DoubleExceptionVector.literal is completely
|
|
|
|
* full. Then a programmer adds code to .DoubleExceptionVector.text
|
|
|
|
* that produces another literal. The final literal position will
|
|
|
|
* overlay onto the first word of the adjacent code section
|
|
|
|
* .DoubleExceptionVector.text. (In practice, the literals will
|
|
|
|
* overwrite the code, and the first few instructions will be
|
|
|
|
* garbage.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SECTION_VECTOR(sym, section, addr, max_prevsec_size, prevsec) \
|
|
|
|
section addr : AT((MIN(LOADADDR(prevsec) + max_prevsec_size, \
|
|
|
|
LOADADDR(prevsec) + SIZEOF(prevsec)) + 3) & ~ 3) \
|
|
|
|
{ \
|
|
|
|
. = ALIGN(4); \
|
|
|
|
sym ## _start = ABSOLUTE(.); \
|
|
|
|
*(section) \
|
|
|
|
sym ## _end = ABSOLUTE(.); \
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mapping of input sections to output sections when linking.
|
|
|
|
*/
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2006-12-10 11:18:48 +01:00
|
|
|
. = KERNELOFFSET;
|
2005-06-24 07:01:16 +02:00
|
|
|
/* .text section */
|
|
|
|
|
|
|
|
_text = .;
|
|
|
|
_stext = .;
|
|
|
|
_ftext = .;
|
|
|
|
|
|
|
|
.text :
|
|
|
|
{
|
|
|
|
/* The .head.text section must be the first section! */
|
|
|
|
*(.head.text)
|
2007-06-01 02:47:01 +02:00
|
|
|
*(.literal .text)
|
2005-06-24 07:01:16 +02:00
|
|
|
VMLINUX_SYMBOL(__sched_text_start) = .;
|
2005-07-12 22:58:25 +02:00
|
|
|
*(.sched.literal .sched.text)
|
2005-06-24 07:01:16 +02:00
|
|
|
VMLINUX_SYMBOL(__sched_text_end) = .;
|
|
|
|
VMLINUX_SYMBOL(__lock_text_start) = .;
|
2005-07-12 22:58:25 +02:00
|
|
|
*(.spinlock.literal .spinlock.text)
|
2005-06-24 07:01:16 +02:00
|
|
|
VMLINUX_SYMBOL(__lock_text_end) = .;
|
|
|
|
|
|
|
|
}
|
|
|
|
_etext = .;
|
2007-06-01 02:47:01 +02:00
|
|
|
PROVIDE (etext = .);
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
. = ALIGN(16);
|
|
|
|
|
|
|
|
RODATA
|
|
|
|
|
|
|
|
/* Relocation table */
|
|
|
|
|
|
|
|
.fixup : { *(.fixup) }
|
|
|
|
|
|
|
|
. = ALIGN(16);
|
|
|
|
|
|
|
|
__ex_table : {
|
|
|
|
__start___ex_table = .;
|
|
|
|
*(__ex_table)
|
|
|
|
__stop___ex_table = .;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Data section */
|
|
|
|
|
|
|
|
. = ALIGN(XCHAL_ICACHE_LINESIZE);
|
|
|
|
_fdata = .;
|
|
|
|
.data :
|
|
|
|
{
|
2007-06-17 04:29:39 +02:00
|
|
|
DATA_DATA
|
|
|
|
CONSTRUCTORS
|
2005-06-24 07:01:16 +02:00
|
|
|
. = ALIGN(XCHAL_ICACHE_LINESIZE);
|
|
|
|
*(.data.cacheline_aligned)
|
|
|
|
}
|
|
|
|
|
|
|
|
_edata = .;
|
|
|
|
|
|
|
|
/* The initial task */
|
|
|
|
. = ALIGN(8192);
|
|
|
|
.data.init_task : { *(.data.init_task) }
|
|
|
|
|
|
|
|
/* Initialization code and data: */
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
. = ALIGN(1 << 12);
|
2005-06-24 07:01:16 +02:00
|
|
|
__init_begin = .;
|
|
|
|
.init.text : {
|
|
|
|
_sinittext = .;
|
2005-07-12 22:58:25 +02:00
|
|
|
*(.init.literal) *(.init.text)
|
2005-06-24 07:01:16 +02:00
|
|
|
_einittext = .;
|
|
|
|
}
|
|
|
|
|
|
|
|
.init.data :
|
|
|
|
{
|
|
|
|
*(.init.data)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
__tagtable_begin = .;
|
|
|
|
*(.taglist)
|
|
|
|
__tagtable_end = .;
|
2007-06-01 02:47:01 +02:00
|
|
|
|
|
|
|
. = ALIGN(16);
|
|
|
|
__boot_reloc_table_start = ABSOLUTE(.);
|
|
|
|
|
|
|
|
RELOCATE_ENTRY(_WindowVectors_text,
|
|
|
|
.WindowVectors.text);
|
|
|
|
RELOCATE_ENTRY(_KernelExceptionVector_text,
|
|
|
|
.KernelExceptionVector.text);
|
|
|
|
RELOCATE_ENTRY(_UserExceptionVector_text,
|
|
|
|
.UserExceptionVector.text);
|
|
|
|
RELOCATE_ENTRY(_DoubleExceptionVector_literal,
|
|
|
|
.DoubleExceptionVector.literal);
|
|
|
|
RELOCATE_ENTRY(_DoubleExceptionVector_text,
|
|
|
|
.DoubleExceptionVector.text);
|
|
|
|
|
|
|
|
__boot_reloc_table_end = ABSOLUTE(.) ;
|
2005-06-24 07:01:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
. = ALIGN(XCHAL_ICACHE_LINESIZE);
|
|
|
|
|
|
|
|
__setup_start = .;
|
|
|
|
.init.setup : { *(.init.setup) }
|
|
|
|
__setup_end = .;
|
|
|
|
|
|
|
|
__initcall_start = .;
|
|
|
|
.initcall.init : {
|
2006-10-27 20:41:44 +02:00
|
|
|
INITCALLS
|
2005-06-24 07:01:16 +02:00
|
|
|
}
|
|
|
|
__initcall_end = .;
|
|
|
|
|
|
|
|
__con_initcall_start = .;
|
|
|
|
.con_initcall.init : { *(.con_initcall.init) }
|
|
|
|
__con_initcall_end = .;
|
|
|
|
|
|
|
|
SECURITY_INIT
|
|
|
|
|
|
|
|
|
2007-02-10 10:44:44 +01:00
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
2005-06-24 07:01:16 +02:00
|
|
|
. = ALIGN(4096);
|
|
|
|
__initramfs_start =.;
|
|
|
|
.init.ramfs : { *(.init.ramfs) }
|
|
|
|
__initramfs_end = .;
|
2007-02-10 10:44:44 +01:00
|
|
|
#endif
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2007-07-19 10:48:12 +02:00
|
|
|
PERCPU(4096)
|
2007-06-01 02:47:01 +02:00
|
|
|
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/* We need this dummy segment here */
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
.dummy : { LONG(0) }
|
|
|
|
|
|
|
|
/* The vectors are relocated to the real position at startup time */
|
|
|
|
|
|
|
|
SECTION_VECTOR (_WindowVectors_text,
|
|
|
|
.WindowVectors.text,
|
|
|
|
XCHAL_WINDOW_VECTORS_VADDR, 4,
|
|
|
|
.dummy)
|
|
|
|
SECTION_VECTOR (_DebugInterruptVector_literal,
|
|
|
|
.DebugInterruptVector.literal,
|
2006-12-10 11:18:48 +01:00
|
|
|
XCHAL_DEBUG_VECTOR_VADDR - 4,
|
2005-06-24 07:01:16 +02:00
|
|
|
SIZEOF(.WindowVectors.text),
|
|
|
|
.WindowVectors.text)
|
|
|
|
SECTION_VECTOR (_DebugInterruptVector_text,
|
|
|
|
.DebugInterruptVector.text,
|
2006-12-10 11:18:48 +01:00
|
|
|
XCHAL_DEBUG_VECTOR_VADDR,
|
2005-06-24 07:01:16 +02:00
|
|
|
4,
|
|
|
|
.DebugInterruptVector.literal)
|
|
|
|
SECTION_VECTOR (_KernelExceptionVector_literal,
|
|
|
|
.KernelExceptionVector.literal,
|
2006-12-10 11:18:48 +01:00
|
|
|
XCHAL_KERNEL_VECTOR_VADDR - 4,
|
2005-06-24 07:01:16 +02:00
|
|
|
SIZEOF(.DebugInterruptVector.text),
|
|
|
|
.DebugInterruptVector.text)
|
|
|
|
SECTION_VECTOR (_KernelExceptionVector_text,
|
|
|
|
.KernelExceptionVector.text,
|
2006-12-10 11:18:48 +01:00
|
|
|
XCHAL_KERNEL_VECTOR_VADDR,
|
2005-06-24 07:01:16 +02:00
|
|
|
4,
|
|
|
|
.KernelExceptionVector.literal)
|
|
|
|
SECTION_VECTOR (_UserExceptionVector_literal,
|
|
|
|
.UserExceptionVector.literal,
|
2006-12-10 11:18:48 +01:00
|
|
|
XCHAL_USER_VECTOR_VADDR - 4,
|
2005-06-24 07:01:16 +02:00
|
|
|
SIZEOF(.KernelExceptionVector.text),
|
|
|
|
.KernelExceptionVector.text)
|
|
|
|
SECTION_VECTOR (_UserExceptionVector_text,
|
|
|
|
.UserExceptionVector.text,
|
2006-12-10 11:18:48 +01:00
|
|
|
XCHAL_USER_VECTOR_VADDR,
|
2005-06-24 07:01:16 +02:00
|
|
|
4,
|
|
|
|
.UserExceptionVector.literal)
|
|
|
|
SECTION_VECTOR (_DoubleExceptionVector_literal,
|
|
|
|
.DoubleExceptionVector.literal,
|
|
|
|
XCHAL_DOUBLEEXC_VECTOR_VADDR - 16,
|
|
|
|
SIZEOF(.UserExceptionVector.text),
|
|
|
|
.UserExceptionVector.text)
|
|
|
|
SECTION_VECTOR (_DoubleExceptionVector_text,
|
|
|
|
.DoubleExceptionVector.text,
|
|
|
|
XCHAL_DOUBLEEXC_VECTOR_VADDR,
|
|
|
|
32,
|
|
|
|
.DoubleExceptionVector.literal)
|
|
|
|
|
|
|
|
. = (LOADADDR( .DoubleExceptionVector.text ) + SIZEOF( .DoubleExceptionVector.text ) + 3) & ~ 3;
|
2006-12-10 11:18:48 +01:00
|
|
|
. = ALIGN(1 << 12);
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
__init_end = .;
|
|
|
|
|
|
|
|
. = ALIGN(8192);
|
|
|
|
|
|
|
|
/* BSS section */
|
|
|
|
_bss_start = .;
|
2007-06-01 02:47:01 +02:00
|
|
|
.bss : { *(.bss.page_aligned) *(.bss) }
|
2005-06-24 07:01:16 +02:00
|
|
|
_bss_end = .;
|
2007-06-01 02:47:01 +02:00
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
_end = .;
|
|
|
|
|
|
|
|
/* only used by the boot loader */
|
|
|
|
|
|
|
|
. = ALIGN(0x10);
|
|
|
|
.bootstrap : { *(.bootstrap.literal .bootstrap.text .bootstrap.data) }
|
|
|
|
|
|
|
|
. = ALIGN(0x1000);
|
|
|
|
__initrd_start = .;
|
|
|
|
.initrd : { *(.initrd) }
|
|
|
|
__initrd_end = .;
|
|
|
|
|
|
|
|
.ResetVector.text XCHAL_RESET_VECTOR_VADDR :
|
|
|
|
{
|
|
|
|
*(.ResetVector.text)
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sections to be discarded */
|
|
|
|
/DISCARD/ :
|
|
|
|
{
|
2007-06-01 02:47:01 +02:00
|
|
|
*(.exit.literal .exit.text)
|
|
|
|
*(.exit.data)
|
2005-06-24 07:01:16 +02:00
|
|
|
*(.exitcall.exit)
|
|
|
|
}
|
|
|
|
|
2007-06-01 02:47:01 +02:00
|
|
|
.xt.lit : { *(.xt.lit) }
|
|
|
|
.xt.prop : { *(.xt.prop) }
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
.debug 0 : { *(.debug) }
|
|
|
|
.line 0 : { *(.line) }
|
|
|
|
.debug_srcinfo 0 : { *(.debug_srcinfo) }
|
|
|
|
.debug_sfnames 0 : { *(.debug_sfnames) }
|
|
|
|
.debug_aranges 0 : { *(.debug_aranges) }
|
|
|
|
.debug_pubnames 0 : { *(.debug_pubnames) }
|
|
|
|
.debug_info 0 : { *(.debug_info) }
|
|
|
|
.debug_abbrev 0 : { *(.debug_abbrev) }
|
|
|
|
.debug_line 0 : { *(.debug_line) }
|
|
|
|
.debug_frame 0 : { *(.debug_frame) }
|
|
|
|
.debug_str 0 : { *(.debug_str) }
|
|
|
|
.debug_loc 0 : { *(.debug_loc) }
|
|
|
|
.debug_macinfo 0 : { *(.debug_macinfo) }
|
|
|
|
.debug_weaknames 0 : { *(.debug_weaknames) }
|
|
|
|
.debug_funcnames 0 : { *(.debug_funcnames) }
|
|
|
|
.debug_typenames 0 : { *(.debug_typenames) }
|
|
|
|
.debug_varnames 0 : { *(.debug_varnames) }
|
|
|
|
|
|
|
|
.xt.insn 0 :
|
|
|
|
{
|
|
|
|
*(.xt.insn)
|
|
|
|
*(.gnu.linkonce.x*)
|
|
|
|
}
|
|
|
|
|
|
|
|
.xt.lit 0 :
|
|
|
|
{
|
|
|
|
*(.xt.lit)
|
|
|
|
*(.gnu.linkonce.p*)
|
|
|
|
}
|
|
|
|
}
|