2005-07-28 02:44:44 +08:00
|
|
|
/* ld script to make the Linux/CRIS kernel
|
|
|
|
* Authors: Bjorn Wesen (bjornw@axis.com)
|
|
|
|
*
|
|
|
|
* It is VERY DANGEROUS to fiddle around with the symbols in this
|
|
|
|
* script. It is for example quite vital that all generated sections
|
|
|
|
* that are used are actually named here, otherwise the linker will
|
|
|
|
* put them at the end, where the init stuff is which is FREED after
|
|
|
|
* the kernel has booted.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
2008-01-30 19:57:31 +08:00
|
|
|
#include <asm/page.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_ETRAX_VMEM_SIZE
|
|
|
|
#define __CONFIG_ETRAX_VMEM_SIZE CONFIG_ETRAX_VMEM_SIZE
|
|
|
|
#else
|
|
|
|
#define __CONFIG_ETRAX_VMEM_SIZE 0
|
|
|
|
#endif
|
2005-07-28 02:44:44 +08:00
|
|
|
|
2008-10-23 05:57:53 +08:00
|
|
|
|
2005-07-28 02:44:44 +08:00
|
|
|
jiffies = jiffies_64;
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
. = DRAM_VIRTUAL_BASE;
|
|
|
|
dram_start = .;
|
2008-10-23 05:57:53 +08:00
|
|
|
#ifdef CONFIG_ETRAX_ARCH_V10
|
|
|
|
ibr_start = .;
|
|
|
|
#else
|
2005-07-28 02:44:44 +08:00
|
|
|
ebp_start = .;
|
2008-01-30 19:57:31 +08:00
|
|
|
/* The boot section is only necessary until the VCS top */
|
|
|
|
/* level testbench includes both flash and DRAM. */
|
2005-07-28 02:44:44 +08:00
|
|
|
.boot : { *(.boot) }
|
2008-10-23 05:57:53 +08:00
|
|
|
#endif
|
2005-07-28 02:44:44 +08:00
|
|
|
|
2008-10-23 05:57:53 +08:00
|
|
|
/* see head.S and pages reserved at the start */
|
2008-01-30 19:57:31 +08:00
|
|
|
. = DRAM_VIRTUAL_BASE + 0x4000;
|
2005-07-28 02:44:44 +08:00
|
|
|
|
2008-10-23 05:57:53 +08:00
|
|
|
_text = .; /* Text and read-only data. */
|
|
|
|
text_start = .; /* Lots of aliases. */
|
2005-07-28 02:44:44 +08:00
|
|
|
_stext = .;
|
|
|
|
__stext = .;
|
|
|
|
.text : {
|
2008-01-30 19:57:31 +08:00
|
|
|
TEXT_TEXT
|
2005-07-28 02:44:44 +08:00
|
|
|
SCHED_TEXT
|
|
|
|
LOCK_TEXT
|
|
|
|
*(.fixup)
|
|
|
|
*(.text.__*)
|
|
|
|
}
|
|
|
|
|
2008-10-23 05:57:53 +08:00
|
|
|
_etext = . ; /* End of text section. */
|
2005-07-28 02:44:44 +08:00
|
|
|
__etext = .;
|
|
|
|
|
2009-09-23 19:21:57 +08:00
|
|
|
EXCEPTION_TABLE(4)
|
2005-07-28 02:44:44 +08:00
|
|
|
|
2011-10-24 17:19:25 +08:00
|
|
|
_sdata = .;
|
2005-07-28 02:44:44 +08:00
|
|
|
RODATA
|
|
|
|
|
|
|
|
. = ALIGN (4);
|
|
|
|
___data_start = . ;
|
|
|
|
__Sdata = . ;
|
2008-10-23 05:57:53 +08:00
|
|
|
.data : { /* Data */
|
2010-08-04 20:01:28 +08:00
|
|
|
CACHELINE_ALIGNED_DATA(32)
|
|
|
|
READ_MOSTLY_DATA(32)
|
2007-06-17 10:28:26 +08:00
|
|
|
DATA_DATA
|
2005-07-28 02:44:44 +08:00
|
|
|
}
|
2008-10-23 05:57:53 +08:00
|
|
|
__edata = . ; /* End of data section. */
|
2005-07-28 02:44:44 +08:00
|
|
|
_edata = . ;
|
|
|
|
|
2009-09-23 19:21:57 +08:00
|
|
|
INIT_TASK_DATA_SECTION(PAGE_SIZE)
|
2005-07-28 02:44:44 +08:00
|
|
|
|
2008-10-23 05:57:53 +08:00
|
|
|
. = ALIGN(PAGE_SIZE); /* Init code and data. */
|
2008-01-30 19:57:31 +08:00
|
|
|
__init_begin = .;
|
2009-09-23 19:21:57 +08:00
|
|
|
INIT_TEXT_SECTION(PAGE_SIZE)
|
2008-01-20 21:15:03 +08:00
|
|
|
.init.data : { INIT_DATA }
|
2009-09-23 19:21:57 +08:00
|
|
|
.init.setup : { INIT_SETUP(16) }
|
2008-01-30 19:57:31 +08:00
|
|
|
.initcall.init : {
|
2009-09-23 19:21:57 +08:00
|
|
|
INIT_CALLS
|
2005-07-28 02:44:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.con_initcall.init : {
|
2009-09-23 19:21:57 +08:00
|
|
|
CON_INITCALL
|
2005-07-28 02:44:44 +08:00
|
|
|
}
|
|
|
|
SECURITY_INIT
|
|
|
|
|
2010-08-04 20:10:04 +08:00
|
|
|
/* .exit.text is discarded at runtime, not link time,
|
|
|
|
* to deal with references from __bug_table
|
|
|
|
*/
|
|
|
|
.exit.text : {
|
|
|
|
EXIT_TEXT
|
|
|
|
}
|
|
|
|
.exit.data : {
|
|
|
|
EXIT_DATA
|
|
|
|
}
|
|
|
|
|
2008-10-23 05:57:53 +08:00
|
|
|
#ifdef CONFIG_ETRAX_ARCH_V10
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
|
|
|
.init.ramfs : {
|
|
|
|
__initramfs_start = .;
|
|
|
|
*(.init.ramfs)
|
|
|
|
__initramfs_end = .;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
__vmlinux_end = .; /* Last address of the physical file. */
|
|
|
|
#ifdef CONFIG_ETRAX_ARCH_V32
|
2011-03-25 01:50:09 +08:00
|
|
|
PERCPU_SECTION(32)
|
2005-07-28 02:44:44 +08:00
|
|
|
|
|
|
|
.init.ramfs : {
|
2009-09-23 19:21:57 +08:00
|
|
|
INIT_RAM_FS
|
2005-07-28 02:44:44 +08:00
|
|
|
}
|
2008-10-23 05:57:53 +08:00
|
|
|
#endif
|
2005-07-28 02:44:44 +08:00
|
|
|
|
2008-01-30 19:57:31 +08:00
|
|
|
/*
|
|
|
|
* We fill to the next page, so we can discard all init
|
|
|
|
* pages without needing to consider what payload might be
|
|
|
|
* appended to the kernel image.
|
|
|
|
*/
|
2008-10-23 05:57:53 +08:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2008-01-30 19:57:31 +08:00
|
|
|
|
|
|
|
__init_end = .;
|
2005-07-28 02:44:44 +08:00
|
|
|
|
2008-10-23 05:57:53 +08:00
|
|
|
__data_end = . ; /* Move to _edata ? */
|
2010-08-05 00:30:01 +08:00
|
|
|
BSS_SECTION(1, 1, 1)
|
2005-07-28 02:44:44 +08:00
|
|
|
|
|
|
|
. = ALIGN (0x20);
|
|
|
|
_end = .;
|
|
|
|
__end = .;
|
|
|
|
|
2008-01-30 19:57:31 +08:00
|
|
|
dram_end = dram_start + (CONFIG_ETRAX_DRAM_SIZE - __CONFIG_ETRAX_VMEM_SIZE)*1024*1024;
|
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
|
2005-07-28 02:44:44 +08:00
|
|
|
}
|