2006-02-02 14:31:16 +00:00
|
|
|
#include <asm/asm-offsets.h>
|
2009-07-31 20:58:18 +00:00
|
|
|
#include <asm/page.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
|
|
|
|
2006-04-05 08:45:45 +00:00
|
|
|
#undef mips
|
2005-04-16 22:20:36 +00:00
|
|
|
#define mips mips
|
|
|
|
OUTPUT_ARCH(mips)
|
|
|
|
ENTRY(kernel_entry)
|
2007-10-14 21:49:01 +00:00
|
|
|
PHDRS {
|
|
|
|
text PT_LOAD FLAGS(7); /* RWX */
|
|
|
|
note PT_NOTE FLAGS(4); /* R__ */
|
|
|
|
}
|
2009-09-20 10:28:22 +00:00
|
|
|
|
2009-09-24 19:44:24 +00:00
|
|
|
#ifdef CONFIG_32BIT
|
|
|
|
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
2009-09-20 10:28:22 +00:00
|
|
|
jiffies = jiffies_64;
|
2009-09-24 19:44:24 +00:00
|
|
|
#else
|
2009-09-20 10:28:22 +00:00
|
|
|
jiffies = jiffies_64 + 4;
|
2009-09-24 19:44:24 +00:00
|
|
|
#endif
|
|
|
|
#else
|
2009-09-20 10:28:22 +00:00
|
|
|
jiffies = jiffies_64;
|
2009-09-24 19:44:24 +00:00
|
|
|
#endif
|
2007-09-15 21:35:53 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_BOOT_ELF64
|
2007-09-15 21:35:53 +00:00
|
|
|
/* Read-only sections, merged into text segment: */
|
|
|
|
/* . = 0xc000000000000000; */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-09-15 21:35:53 +00:00
|
|
|
/* This is the value for an Origin kernel, taken from an IRIX kernel. */
|
|
|
|
/* . = 0xc00000000001c000; */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-09-15 21:35:53 +00:00
|
|
|
/* Set the vaddr for the text segment to a value
|
|
|
|
* >= 0xa800 0000 0001 9000 if no symmon is going to configured
|
|
|
|
* >= 0xa800 0000 0030 0000 otherwise
|
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-09-15 21:35:53 +00:00
|
|
|
/* . = 0xa800000000300000; */
|
|
|
|
. = 0xffffffff80300000;
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
2009-09-20 10:28:22 +00:00
|
|
|
. = VMLINUX_LOAD_ADDRESS;
|
2007-09-15 21:35:53 +00:00
|
|
|
/* read-only */
|
|
|
|
_text = .; /* Text and read-only data */
|
|
|
|
.text : {
|
|
|
|
TEXT_TEXT
|
|
|
|
SCHED_TEXT
|
|
|
|
LOCK_TEXT
|
2007-10-14 21:50:05 +00:00
|
|
|
KPROBES_TEXT
|
2009-11-20 12:34:33 +00:00
|
|
|
IRQENTRY_TEXT
|
2008-08-05 14:45:14 +00:00
|
|
|
*(.text.*)
|
2007-09-15 21:35:53 +00:00
|
|
|
*(.fixup)
|
|
|
|
*(.gnu.warning)
|
2007-10-14 21:49:01 +00:00
|
|
|
} :text = 0
|
2007-09-15 21:35:53 +00:00
|
|
|
_etext = .; /* End of text section */
|
|
|
|
|
2009-07-31 20:58:19 +00:00
|
|
|
EXCEPTION_TABLE(16)
|
2007-09-15 21:35:53 +00:00
|
|
|
|
|
|
|
/* Exception table for data bus errors */
|
|
|
|
__dbe_table : {
|
|
|
|
__start___dbe_table = .;
|
|
|
|
*(__dbe_table)
|
|
|
|
__stop___dbe_table = .;
|
|
|
|
}
|
2007-10-14 21:49:01 +00:00
|
|
|
|
|
|
|
NOTES :text :note
|
|
|
|
.dummy : { *(.dummy) } :text
|
|
|
|
|
2007-09-15 21:35:53 +00:00
|
|
|
RODATA
|
|
|
|
|
|
|
|
/* writeable */
|
|
|
|
.data : { /* Data */
|
2007-10-18 21:12:32 +00:00
|
|
|
. = . + DATAOFFSET; /* for CONFIG_MAPPED_KERNEL */
|
2007-09-15 21:35:53 +00:00
|
|
|
|
2009-07-31 20:58:19 +00:00
|
|
|
INIT_TASK_DATA(PAGE_SIZE)
|
|
|
|
NOSAVE_DATA
|
|
|
|
CACHELINE_ALIGNED_DATA(1 << CONFIG_MIPS_L1_CACHE_SHIFT)
|
2007-10-18 21:12:32 +00:00
|
|
|
DATA_DATA
|
|
|
|
CONSTRUCTORS
|
2007-09-15 21:35:53 +00:00
|
|
|
}
|
|
|
|
_gp = . + 0x8000;
|
|
|
|
.lit8 : {
|
|
|
|
*(.lit8)
|
|
|
|
}
|
|
|
|
.lit4 : {
|
|
|
|
*(.lit4)
|
|
|
|
}
|
|
|
|
/* We want the small data sections together, so single-instruction offsets
|
|
|
|
can access them all, and initialized data all before uninitialized, so
|
|
|
|
we can shorten the on-disk segment size. */
|
|
|
|
.sdata : {
|
|
|
|
*(.sdata)
|
|
|
|
}
|
|
|
|
_edata = .; /* End of data section */
|
|
|
|
|
|
|
|
/* will be freed after init */
|
2009-07-31 20:58:18 +00:00
|
|
|
. = ALIGN(PAGE_SIZE); /* Init code and data */
|
2007-09-15 21:35:53 +00:00
|
|
|
__init_begin = .;
|
2009-07-31 20:58:19 +00:00
|
|
|
INIT_TEXT_SECTION(PAGE_SIZE)
|
|
|
|
INIT_DATA_SECTION(16)
|
2007-09-15 21:35:53 +00:00
|
|
|
|
|
|
|
/* .exit.text is discarded at runtime, not link time, to deal with
|
|
|
|
* references from .rodata
|
|
|
|
*/
|
|
|
|
.exit.text : {
|
2008-01-20 13:15:03 +00:00
|
|
|
EXIT_TEXT
|
2007-09-15 21:35:53 +00:00
|
|
|
}
|
|
|
|
.exit.data : {
|
2008-01-20 13:15:03 +00:00
|
|
|
EXIT_DATA
|
2007-09-15 21:35:53 +00:00
|
|
|
}
|
2009-07-31 20:58:19 +00:00
|
|
|
|
2009-07-31 20:58:18 +00:00
|
|
|
PERCPU(PAGE_SIZE)
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
2007-09-15 21:35:53 +00:00
|
|
|
__init_end = .;
|
|
|
|
/* freed after init ends here */
|
|
|
|
|
2009-07-31 20:58:19 +00:00
|
|
|
BSS_SECTION(0, 0, 0)
|
2007-09-15 21:35:53 +00:00
|
|
|
|
|
|
|
_end = . ;
|
|
|
|
|
|
|
|
/* These mark the ABI of the kernel for debuggers. */
|
|
|
|
.mdebug.abi32 : {
|
|
|
|
KEEP(*(.mdebug.abi32))
|
|
|
|
}
|
|
|
|
.mdebug.abi64 : {
|
|
|
|
KEEP(*(.mdebug.abi64))
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is the MIPS specific mdebug section. */
|
|
|
|
.mdebug : {
|
|
|
|
*(.mdebug)
|
|
|
|
}
|
|
|
|
|
|
|
|
STABS_DEBUG
|
|
|
|
DWARF_DEBUG
|
|
|
|
|
|
|
|
/* These must appear regardless of . */
|
|
|
|
.gptab.sdata : {
|
|
|
|
*(.gptab.data)
|
|
|
|
*(.gptab.sdata)
|
|
|
|
}
|
|
|
|
.gptab.sbss : {
|
|
|
|
*(.gptab.bss)
|
|
|
|
*(.gptab.sbss)
|
|
|
|
}
|
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 02:27:40 +00:00
|
|
|
|
|
|
|
/* Sections to be discarded */
|
|
|
|
DISCARDS
|
|
|
|
/DISCARD/ : {
|
|
|
|
/* ABI crap starts here */
|
|
|
|
*(.MIPS.options)
|
|
|
|
*(.options)
|
|
|
|
*(.pdr)
|
|
|
|
*(.reginfo)
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|