2005-04-17 06:20:36 +08:00
|
|
|
/* Kernel link layout for various "sections"
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999-2003 Matthew Wilcox <willy at parisc-linux.org>
|
|
|
|
* Copyright (C) 2000-2003 Paul Bame <bame at parisc-linux.org>
|
|
|
|
* Copyright (C) 2000 John Marvin <jsm at parisc-linux.org>
|
|
|
|
* Copyright (C) 2000 Michael Ang <mang with subcarrier.org>
|
|
|
|
* Copyright (C) 2002 Randolph Chung <tausq with parisc-linux.org>
|
|
|
|
* Copyright (C) 2003 James Bottomley <jejb with parisc-linux.org>
|
2006-04-21 04:40:23 +08:00
|
|
|
* Copyright (C) 2006 Helge Deller <deller@gmx.de>
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
|
|
|
/* needed for the processor specific cache alignment size */
|
|
|
|
#include <asm/cache.h>
|
|
|
|
#include <asm/page.h>
|
2006-04-21 04:40:23 +08:00
|
|
|
#include <asm/asm-offsets.h>
|
2009-09-28 06:39:47 +08:00
|
|
|
#include <asm/thread_info.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* ld script to make hppa Linux kernel */
|
|
|
|
#ifndef CONFIG_64BIT
|
|
|
|
OUTPUT_FORMAT("elf32-hppa-linux")
|
|
|
|
OUTPUT_ARCH(hppa)
|
|
|
|
#else
|
|
|
|
OUTPUT_FORMAT("elf64-hppa-linux")
|
|
|
|
OUTPUT_ARCH(hppa:hppa2.0w)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ENTRY(_stext)
|
|
|
|
#ifndef CONFIG_64BIT
|
|
|
|
jiffies = jiffies_64 + 4;
|
|
|
|
#else
|
|
|
|
jiffies = jiffies_64;
|
|
|
|
#endif
|
|
|
|
SECTIONS
|
|
|
|
{
|
2007-10-18 15:04:25 +08:00
|
|
|
. = KERNEL_BINARY_TEXT_START;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
_text = .; /* Text and read-only data */
|
|
|
|
.text ALIGN(16) : {
|
2008-05-23 02:38:26 +08:00
|
|
|
HEAD_TEXT
|
2007-10-18 15:04:25 +08:00
|
|
|
TEXT_TEXT
|
|
|
|
SCHED_TEXT
|
|
|
|
LOCK_TEXT
|
2009-02-09 07:43:36 +08:00
|
|
|
KPROBES_TEXT
|
|
|
|
IRQENTRY_TEXT
|
2007-10-18 15:04:25 +08:00
|
|
|
*(.text.do_softirq)
|
|
|
|
*(.text.sys_exit)
|
|
|
|
*(.text.do_sigaltstack)
|
|
|
|
*(.text.do_fork)
|
|
|
|
*(.text.*)
|
|
|
|
*(.fixup)
|
|
|
|
*(.lock.text) /* out-of-line lock text */
|
|
|
|
*(.gnu.warning)
|
2005-04-17 06:20:36 +08:00
|
|
|
} = 0
|
2007-10-18 15:04:25 +08:00
|
|
|
/* End of text section */
|
|
|
|
_etext = .;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
RODATA
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
/* writeable */
|
|
|
|
/* Make sure this is page aligned so
|
|
|
|
* that we can properly leave these
|
|
|
|
* as writable
|
|
|
|
*/
|
2007-10-18 15:04:34 +08:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2007-10-18 15:04:25 +08:00
|
|
|
data_start = .;
|
2009-09-24 22:36:17 +08:00
|
|
|
EXCEPTION_TABLE(16)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
NOTES
|
2007-08-27 11:28:34 +08:00
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
/* unwind info */
|
|
|
|
.PARISC.unwind : {
|
|
|
|
__start___unwind = .;
|
|
|
|
*(.PARISC.unwind)
|
|
|
|
__stop___unwind = .;
|
|
|
|
}
|
2006-04-21 04:40:23 +08:00
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
/* Data */
|
2009-09-24 22:36:17 +08:00
|
|
|
RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
/* PA-RISC locks requires 16-byte alignment */
|
|
|
|
. = ALIGN(16);
|
|
|
|
.data.lock_aligned : {
|
|
|
|
*(.data.lock_aligned)
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
/* End of data section */
|
|
|
|
_edata = .;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
/* BSS */
|
|
|
|
__bss_start = .;
|
|
|
|
/* page table entries need to be PAGE_SIZE aligned */
|
2007-10-18 15:04:34 +08:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2007-10-18 15:04:25 +08:00
|
|
|
.data.vmpages : {
|
|
|
|
*(.data.vm0.pmd)
|
|
|
|
*(.data.vm0.pgd)
|
|
|
|
*(.data.vm0.pte)
|
|
|
|
}
|
|
|
|
.bss : {
|
|
|
|
*(.bss)
|
|
|
|
*(COMMON)
|
2006-04-21 04:40:23 +08:00
|
|
|
}
|
2007-10-18 15:04:25 +08:00
|
|
|
__bss_stop = .;
|
2006-04-21 04:40:23 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2007-10-18 15:04:25 +08:00
|
|
|
. = ALIGN(16);
|
|
|
|
/* Linkage tables */
|
|
|
|
.opd : {
|
|
|
|
*(.opd)
|
|
|
|
} PROVIDE (__gp = .);
|
|
|
|
.plt : {
|
|
|
|
*(.plt)
|
|
|
|
}
|
|
|
|
.dlt : {
|
|
|
|
*(.dlt)
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
/* reserve space for interrupt stack by aligning __init* to 16k */
|
|
|
|
. = ALIGN(16384);
|
|
|
|
__init_begin = .;
|
2009-09-24 22:36:17 +08:00
|
|
|
INIT_TEXT_SECTION(16384)
|
|
|
|
INIT_DATA_SECTION(16)
|
2009-09-28 06:39:47 +08:00
|
|
|
/* we have to discard exit text and such at runtime, not link time */
|
|
|
|
.exit.text :
|
|
|
|
{
|
|
|
|
EXIT_TEXT
|
|
|
|
}
|
|
|
|
.exit.data :
|
|
|
|
{
|
|
|
|
EXIT_DATA
|
|
|
|
}
|
2007-10-18 15:04:25 +08:00
|
|
|
|
2007-10-18 15:04:34 +08:00
|
|
|
PERCPU(PAGE_SIZE)
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
2007-10-18 15:04:25 +08:00
|
|
|
__init_end = .;
|
|
|
|
/* freed after init ends here */
|
|
|
|
_end = . ;
|
2007-07-19 16:48:12 +08:00
|
|
|
|
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 10:27:40 +08:00
|
|
|
STABS_DEBUG
|
|
|
|
.note 0 : { *(.note) }
|
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
/* Sections to be discarded */
|
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 10:27:40 +08:00
|
|
|
DISCARDS
|
2007-10-18 15:04:25 +08:00
|
|
|
/DISCARD/ : {
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2007-10-18 15:04:25 +08:00
|
|
|
/* temporary hack until binutils is fixed to not emit these
|
|
|
|
* for static binaries
|
|
|
|
*/
|
|
|
|
*(.interp)
|
|
|
|
*(.dynsym)
|
|
|
|
*(.dynstr)
|
|
|
|
*(.dynamic)
|
|
|
|
*(.hash)
|
|
|
|
*(.gnu.hash)
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|