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>
|
2013-12-01 05:07:51 +08:00
|
|
|
* Copyright (C) 2006-2013 Helge Deller <deller@gmx.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Put page table entries (swapper_pg_dir) as the first thing in .bss. This
|
|
|
|
* will ensure that it has .bss alignment (PAGE_SIZE).
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2013-12-01 05:07:51 +08:00
|
|
|
#define BSS_FIRST_SECTIONS *(.data..vm0.pmd) \
|
|
|
|
*(.data..vm0.pgd) \
|
|
|
|
*(.data..vm0.pte)
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
2013-12-01 05:07:51 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* 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
|
|
|
|
|
2013-12-01 05:07:51 +08:00
|
|
|
ENTRY(parisc_kernel_start)
|
2005-04-17 06:20:36 +08:00
|
|
|
#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
|
|
|
|
2013-12-01 05:07:51 +08:00
|
|
|
__init_begin = .;
|
|
|
|
HEAD_TEXT_SECTION
|
|
|
|
INIT_TEXT_SECTION(8)
|
|
|
|
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
|
|
|
INIT_DATA_SECTION(PAGE_SIZE)
|
|
|
|
/* we have to discard exit text and such at runtime, not link time */
|
|
|
|
.exit.text :
|
|
|
|
{
|
|
|
|
EXIT_TEXT
|
|
|
|
}
|
|
|
|
.exit.data :
|
|
|
|
{
|
|
|
|
EXIT_DATA
|
|
|
|
}
|
|
|
|
PERCPU_SECTION(8)
|
2015-11-22 07:07:44 +08:00
|
|
|
. = ALIGN(HUGEPAGE_SIZE);
|
2013-12-01 05:07:51 +08:00
|
|
|
__init_end = .;
|
|
|
|
/* freed after init ends here */
|
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
_text = .; /* Text and read-only data */
|
2013-12-01 05:07:51 +08:00
|
|
|
_stext = .;
|
|
|
|
.text ALIGN(PAGE_SIZE) : {
|
2007-10-18 15:04:25 +08:00
|
|
|
TEXT_TEXT
|
|
|
|
SCHED_TEXT
|
2016-10-08 08:02:55 +08:00
|
|
|
CPUIDLE_TEXT
|
2007-10-18 15:04:25 +08:00
|
|
|
LOCK_TEXT
|
2009-02-09 07:43:36 +08:00
|
|
|
KPROBES_TEXT
|
|
|
|
IRQENTRY_TEXT
|
2016-03-26 05:22:05 +08:00
|
|
|
SOFTIRQENTRY_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)
|
2012-05-17 22:34:34 +08:00
|
|
|
}
|
2013-12-01 05:07:51 +08:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2007-10-18 15:04:25 +08:00
|
|
|
_etext = .;
|
2013-12-01 05:07:51 +08:00
|
|
|
/* End of text section */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-05-20 09:34:58 +08:00
|
|
|
/* Start of data section */
|
|
|
|
_sdata = .;
|
|
|
|
|
2016-10-09 17:12:34 +08:00
|
|
|
/* Architecturally we need to keep __gp below 0x1000000 and thus
|
|
|
|
* in front of RO_DATA_SECTION() which stores lots of tracepoint
|
|
|
|
* and ftrace symbols. */
|
2013-12-01 05:07:51 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
. = ALIGN(16);
|
|
|
|
/* Linkage tables */
|
|
|
|
.opd : {
|
|
|
|
*(.opd)
|
|
|
|
} PROVIDE (__gp = .);
|
|
|
|
.plt : {
|
|
|
|
*(.plt)
|
|
|
|
}
|
|
|
|
.dlt : {
|
|
|
|
*(.dlt)
|
|
|
|
}
|
|
|
|
#endif
|
2007-08-27 11:28:34 +08:00
|
|
|
|
2016-10-09 17:12:34 +08:00
|
|
|
RO_DATA_SECTION(8)
|
|
|
|
|
2016-10-09 17:20:44 +08:00
|
|
|
/* RO because of BUILDTIME_EXTABLE_SORT */
|
|
|
|
EXCEPTION_TABLE(8)
|
|
|
|
NOTES
|
|
|
|
|
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
|
|
|
|
2013-12-01 05:07:51 +08:00
|
|
|
/* writeable */
|
|
|
|
/* Make sure this is page aligned so
|
|
|
|
* that we can properly leave these
|
|
|
|
* as writable
|
|
|
|
*/
|
2015-11-22 07:07:44 +08:00
|
|
|
. = ALIGN(HUGEPAGE_SIZE);
|
2013-12-01 05:07:51 +08:00
|
|
|
data_start = .;
|
|
|
|
|
2007-10-18 15:04:25 +08:00
|
|
|
/* Data */
|
2013-05-08 03:28:52 +08:00
|
|
|
RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, PAGE_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);
|
2010-02-20 08:03:55 +08:00
|
|
|
.data..lock_aligned : {
|
|
|
|
*(.data..lock_aligned)
|
2007-10-18 15:04:25 +08:00
|
|
|
}
|
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 */
|
2015-11-22 07:07:44 +08:00
|
|
|
BSS_SECTION(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE)
|
|
|
|
|
|
|
|
. = ALIGN(HUGEPAGE_SIZE);
|
2007-10-18 15:04:25 +08:00
|
|
|
_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
|
|
|
|
}
|
|
|
|
}
|