2006-02-02 14:31:16 +00:00
|
|
|
#include <asm/asm-offsets.h>
|
2009-07-31 16:58:18 -04:00
|
|
|
#include <asm/page.h>
|
2012-07-19 09:11:14 +02:00
|
|
|
#include <asm/thread_info.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
|
|
|
|
|
2006-04-05 09:45:45 +01:00
|
|
|
#undef mips
|
2005-04-16 15:20:36 -07:00
|
|
|
#define mips mips
|
|
|
|
|
OUTPUT_ARCH(mips)
|
|
|
|
|
ENTRY(kernel_entry)
|
2007-10-14 22:49:01 +01:00
|
|
|
PHDRS {
|
|
|
|
|
text PT_LOAD FLAGS(7); /* RWX */
|
|
|
|
|
note PT_NOTE FLAGS(4); /* R__ */
|
|
|
|
|
}
|
2009-09-20 12:28:22 +02:00
|
|
|
|
2009-09-24 21:44:24 +02:00
|
|
|
#ifdef CONFIG_32BIT
|
|
|
|
|
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
2009-09-20 12:28:22 +02:00
|
|
|
jiffies = jiffies_64;
|
2009-09-24 21:44:24 +02:00
|
|
|
#else
|
2009-09-20 12:28:22 +02:00
|
|
|
jiffies = jiffies_64 + 4;
|
2009-09-24 21:44:24 +02:00
|
|
|
#endif
|
|
|
|
|
#else
|
2009-09-20 12:28:22 +02:00
|
|
|
jiffies = jiffies_64;
|
2009-09-24 21:44:24 +02:00
|
|
|
#endif
|
2007-09-15 23:35:53 +02:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
SECTIONS
|
|
|
|
|
{
|
|
|
|
|
#ifdef CONFIG_BOOT_ELF64
|
2007-09-15 23:35:53 +02:00
|
|
|
/* Read-only sections, merged into text segment: */
|
|
|
|
|
/* . = 0xc000000000000000; */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
/* This is the value for an Origin kernel, taken from an IRIX kernel. */
|
|
|
|
|
/* . = 0xc00000000001c000; */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-09-15 23:35:53 +02: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 15:20:36 -07:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
/* . = 0xa800000000300000; */
|
|
|
|
|
. = 0xffffffff80300000;
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|
2009-09-20 12:28:22 +02:00
|
|
|
. = VMLINUX_LOAD_ADDRESS;
|
2007-09-15 23:35:53 +02:00
|
|
|
/* read-only */
|
|
|
|
|
_text = .; /* Text and read-only data */
|
|
|
|
|
.text : {
|
|
|
|
|
TEXT_TEXT
|
|
|
|
|
SCHED_TEXT
|
|
|
|
|
LOCK_TEXT
|
2007-10-14 22:50:05 +01:00
|
|
|
KPROBES_TEXT
|
2009-11-20 20:34:33 +08:00
|
|
|
IRQENTRY_TEXT
|
2008-08-05 23:45:14 +09:00
|
|
|
*(.text.*)
|
2007-09-15 23:35:53 +02:00
|
|
|
*(.fixup)
|
|
|
|
|
*(.gnu.warning)
|
2007-10-14 22:49:01 +01:00
|
|
|
} :text = 0
|
2007-09-15 23:35:53 +02:00
|
|
|
_etext = .; /* End of text section */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-07-31 16:58:19 -04:00
|
|
|
EXCEPTION_TABLE(16)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
/* Exception table for data bus errors */
|
|
|
|
|
__dbe_table : {
|
|
|
|
|
__start___dbe_table = .;
|
|
|
|
|
*(__dbe_table)
|
|
|
|
|
__stop___dbe_table = .;
|
|
|
|
|
}
|
2007-10-14 22:49:01 +01:00
|
|
|
|
|
|
|
|
NOTES :text :note
|
|
|
|
|
.dummy : { *(.dummy) } :text
|
|
|
|
|
|
2011-05-19 21:34:58 -04:00
|
|
|
_sdata = .; /* Start of data section */
|
2007-09-15 23:35:53 +02:00
|
|
|
RODATA
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
/* writeable */
|
|
|
|
|
.data : { /* Data */
|
2007-10-18 23:12:32 +02:00
|
|
|
. = . + DATAOFFSET; /* for CONFIG_MAPPED_KERNEL */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2012-07-19 09:11:14 +02:00
|
|
|
INIT_TASK_DATA(THREAD_SIZE)
|
2009-07-31 16:58:19 -04:00
|
|
|
NOSAVE_DATA
|
|
|
|
|
CACHELINE_ALIGNED_DATA(1 << CONFIG_MIPS_L1_CACHE_SHIFT)
|
2011-03-29 11:40:06 +01:00
|
|
|
READ_MOSTLY_DATA(1 << CONFIG_MIPS_L1_CACHE_SHIFT)
|
2007-10-18 23:12:32 +02:00
|
|
|
DATA_DATA
|
|
|
|
|
CONSTRUCTORS
|
2007-09-15 23:35:53 +02: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 */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
/* will be freed after init */
|
2009-07-31 16:58:18 -04:00
|
|
|
. = ALIGN(PAGE_SIZE); /* Init code and data */
|
2007-09-15 23:35:53 +02:00
|
|
|
__init_begin = .;
|
2009-07-31 16:58:19 -04:00
|
|
|
INIT_TEXT_SECTION(PAGE_SIZE)
|
|
|
|
|
INIT_DATA_SECTION(16)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2010-11-23 16:06:25 +01:00
|
|
|
. = ALIGN(4);
|
|
|
|
|
.mips.machines.init : AT(ADDR(.mips.machines.init) - LOAD_OFFSET) {
|
|
|
|
|
__mips_machines_start = .;
|
|
|
|
|
*(.mips.machines.init)
|
|
|
|
|
__mips_machines_end = .;
|
|
|
|
|
}
|
|
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
/* .exit.text is discarded at runtime, not link time, to deal with
|
|
|
|
|
* references from .rodata
|
|
|
|
|
*/
|
|
|
|
|
.exit.text : {
|
2008-01-20 14:15:03 +01:00
|
|
|
EXIT_TEXT
|
2007-09-15 23:35:53 +02:00
|
|
|
}
|
|
|
|
|
.exit.data : {
|
2008-01-20 14:15:03 +01:00
|
|
|
EXIT_DATA
|
2007-09-15 23:35:53 +02:00
|
|
|
}
|
2009-07-31 16:58:19 -04:00
|
|
|
|
2011-03-24 18:50:09 +01:00
|
|
|
PERCPU_SECTION(1 << CONFIG_MIPS_L1_CACHE_SHIFT)
|
2009-07-31 16:58:18 -04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2007-09-15 23:35:53 +02:00
|
|
|
__init_end = .;
|
|
|
|
|
/* freed after init ends here */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-07-31 16:58:19 -04:00
|
|
|
BSS_SECTION(0, 0, 0)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
_end = . ;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
/* These mark the ABI of the kernel for debuggers. */
|
|
|
|
|
.mdebug.abi32 : {
|
|
|
|
|
KEEP(*(.mdebug.abi32))
|
|
|
|
|
}
|
|
|
|
|
.mdebug.abi64 : {
|
|
|
|
|
KEEP(*(.mdebug.abi64))
|
|
|
|
|
}
|
2007-08-03 11:43:01 -04:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
/* This is the MIPS specific mdebug section. */
|
|
|
|
|
.mdebug : {
|
|
|
|
|
*(.mdebug)
|
|
|
|
|
}
|
2006-05-11 00:41:26 +09:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
STABS_DEBUG
|
|
|
|
|
DWARF_DEBUG
|
2006-05-10 15:36:04 +09:00
|
|
|
|
2007-09-15 23:35:53 +02:00
|
|
|
/* These must appear regardless of . */
|
|
|
|
|
.gptab.sdata : {
|
|
|
|
|
*(.gptab.data)
|
|
|
|
|
*(.gptab.sdata)
|
|
|
|
|
}
|
|
|
|
|
.gptab.sbss : {
|
|
|
|
|
*(.gptab.bss)
|
|
|
|
|
*(.gptab.sbss)
|
|
|
|
|
}
|
2009-07-09 11:27:40 +09:00
|
|
|
|
|
|
|
|
/* Sections to be discarded */
|
|
|
|
|
DISCARDS
|
|
|
|
|
/DISCARD/ : {
|
|
|
|
|
/* ABI crap starts here */
|
|
|
|
|
*(.MIPS.options)
|
|
|
|
|
*(.options)
|
|
|
|
|
*(.pdr)
|
|
|
|
|
*(.reginfo)
|
|
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|