2 * arch/v850/vmlinux.lds.S -- kernel linker script for v850 platforms
4 * Copyright (C) 2002,03,04 NEC Electronics Corporation
5 * Copyright (C) 2002,03,04 Miles Bader <miles@gnu.org>
7 * This file is subject to the terms and conditions of the GNU General
8 * Public License. See the file COPYING in the main directory of this
9 * archive for more details.
11 * Written by Miles Bader <miles@gnu.org>
14 #include <linux/config.h>
15 #define VMLINUX_SYMBOL(_sym_) _##_sym_
16 #include <asm-generic/vmlinux.lds.h>
18 /* For most platforms, this will define useful things like RAM addr/size. */
19 #include <asm/machdep.h>
22 /* The following macros contain the usual definitions for various data areas.
23 The prefix `RAMK_' is used to indicate macros suitable for kernels loaded
24 into RAM, and similarly `ROMK_' for ROM-resident kernels. Note that all
25 symbols are prefixed with an extra `_' for compatibility with the v850
29 /* Interrupt vectors. */
30 #define INTV_CONTENTS \
33 *(.intv.reset) /* Reset vector */ \
34 . = __intv_start + 0x10 ; \
35 *(.intv.common) /* Vectors common to all v850e proc */\
36 . = __intv_start + 0x80 ; \
37 *(.intv.mach) /* Machine-specific int. vectors. */ \
40 #define RODATA_CONTENTS \
42 *(.rodata) *(.rodata.*) \
43 *(__vermagic) /* Kernel version magic */ \
45 /* Kernel symbol table: Normal symbols */ \
46 ___start___ksymtab = .; \
48 ___stop___ksymtab = .; \
49 /* Kernel symbol table: GPL-only symbols */ \
50 ___start___ksymtab_gpl = .; \
52 ___stop___ksymtab_gpl = .; \
53 /* Kernel symbol table: strings */ \
54 *(__ksymtab_strings) \
55 /* Kernel symbol table: Normal symbols */ \
56 ___start___kcrctab = .; \
58 ___stop___kcrctab = .; \
59 /* Kernel symbol table: GPL-only symbols */ \
60 ___start___kcrctab_gpl = .; \
62 ___stop___kcrctab_gpl = .; \
63 /* Built-in module parameters */ \
64 ___start___param = .; \
69 /* Kernel text segment, and some constant data areas. */
70 #define TEXT_CONTENTS \
74 *(.exit.text) /* 2.5 convention */ \
75 *(.text.exit) /* 2.4 convention */ \
78 __real_etext = . ; /* There may be data after here. */ \
83 . = ALIGN (16) ; /* Exception table. */ \
84 ___start___ex_table = . ; \
86 ___stop___ex_table = . ; \
90 /* Kernel data segment. */
91 #define DATA_CONTENTS \
94 *(.exit.data) /* 2.5 convention */ \
95 *(.data.exit) /* 2.4 convention */ \
97 *(.data.cacheline_aligned) \
98 . = ALIGN (0x2000) ; \
100 . = ALIGN (0x2000) ; \
103 /* Kernel BSS segment. */
104 #define BSS_CONTENTS \
109 __init_stack_end = . ; \
112 /* `initcall' tables. */
113 #define INITCALL_CONTENTS \
115 ___setup_start = . ; \
116 *(.init.setup) /* 2.5 convention */ \
117 *(.setup.init) /* 2.4 convention */ \
119 ___initcall_start = . ; \
129 ___initcall_end = . ; \
130 ___con_initcall_start = .; \
131 *(.con_initcall.init) \
132 ___con_initcall_end = .;
134 /* Contents of `init' section for a kernel that's loaded into RAM. */
135 #define RAMK_INIT_CONTENTS \
136 RAMK_INIT_CONTENTS_NO_END \
138 /* Same as RAMK_INIT_CONTENTS, but doesn't define the `__init_end' symbol. */
139 #define RAMK_INIT_CONTENTS_NO_END \
143 *(.init.text) /* 2.5 convention */ \
146 *(.text.init) /* 2.4 convention */ \
151 /* The contents of `init' section for a ROM-resident kernel which
152 should go into RAM. */
153 #define ROMK_INIT_RAM_CONTENTS \
156 *(.init.data) /* 2.5 convention */ \
157 *(.data.init) /* 2.4 convention */ \
161 /* The contents of `init' section for a ROM-resident kernel which
162 should go into ROM. */
163 #define ROMK_INIT_ROM_CONTENTS \
165 *(.init.text) /* 2.5 convention */ \
167 *(.text.init) /* 2.4 convention */ \
171 /* A root filesystem image, for kernels with an embedded root filesystem. */
172 #define ROOT_FS_CONTENTS \
173 __root_fs_image_start = . ; \
175 __root_fs_image_end = . ;
176 /* The initramfs archive. */
177 #define INITRAMFS_CONTENTS \
179 ___initramfs_start = . ; \
181 ___initramfs_end = . ;
182 /* Where the initial bootmap (bitmap for the boot-time memory allocator)
184 #define BOOTMAP_CONTENTS \
187 . = . + 4096 ; /* enough for 128MB. */
189 /* The contents of a `typical' kram area for a kernel in RAM. */
190 #define RAMK_KRAM_CONTENTS \
200 /* Define output sections normally used for a ROM-resident kernel.
201 ROM and RAM should be appropriate memory areas to use for kernel
202 ROM and RAM data. This assumes that ROM starts at 0 (and thus can
203 hold the interrupt vectors). */
204 #define ROMK_SECTIONS(ROM, RAM) \
208 ROMK_INIT_ROM_CONTENTS \
212 __rom_copy_src_start = . ; \
216 __rom_copy_dst_start = . ; \
218 ROMK_INIT_RAM_CONTENTS \
219 __rom_copy_dst_end = . ; \
229 /* The 32-bit variable `jiffies' is just the lower 32-bits of `jiffies_64'. */
230 _jiffies = _jiffies_64 ;
233 /* Include an appropriate platform-dependent linker-script (which
234 usually should use the above macros to do most of the work). */
236 #ifdef CONFIG_V850E_SIM
240 #ifdef CONFIG_V850E2_SIM85E2
241 # include "sim85e2.ld"
244 #ifdef CONFIG_V850E2_FPGA85E2C
245 # include "fpga85e2c.ld"
248 #ifdef CONFIG_V850E2_ANNA
249 # ifdef CONFIG_ROM_KERNEL
250 # include "anna-rom.ld"
256 #ifdef CONFIG_V850E_AS85EP1
257 # ifdef CONFIG_ROM_KERNEL
258 # include "as85ep1-rom.ld"
260 # include "as85ep1.ld"
264 #ifdef CONFIG_RTE_CB_MA1
265 # ifdef CONFIG_ROM_KERNEL
266 # include "rte_ma1_cb-rom.ld"
268 # include "rte_ma1_cb.ld"
272 #ifdef CONFIG_RTE_CB_NB85E
273 # ifdef CONFIG_ROM_KERNEL
274 # include "rte_nb85e_cb-rom.ld"
275 # elif defined(CONFIG_RTE_CB_MULTI)
276 # include "rte_nb85e_cb-multi.ld"
278 # include "rte_nb85e_cb.ld"
282 #ifdef CONFIG_RTE_CB_ME2
283 # include "rte_me2_cb.ld"