2 * OpenRISC vmlinux.lds.S
4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
8 * Modifications for the OpenRISC architecture:
9 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
10 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
17 * ld script for OpenRISC architecture
21 * - clean up __offset & stuff
22 * - change all 8192 aligment to PAGE !!!
23 * - recheck if all aligments are really needed
26 # define LOAD_OFFSET PAGE_OFFSET
27 # define LOAD_BASE PAGE_OFFSET
30 #include <asm/cache.h>
31 #include <asm-generic/vmlinux.lds.h>
33 OUTPUT_FORMAT("elf32-or32", "elf32-or32", "elf32-or32")
34 jiffies = jiffies_64 + 4;
38 /* Read-only sections, merged into text segment: */
43 /* _s_kernel_ro must be page aligned */
47 .text : AT(ADDR(.text) - LOAD_OFFSET)
61 /* TODO: Check if fixup and text.__* are really necessary
62 * fixup is definitely necessary
67 /* Page alignment required for RO_DATA_SECTION */
68 RO_DATA_SECTION(PAGE_SIZE)
71 /* Whatever comes after _e_kernel_ro had better be page-aligend, too */
73 /* 32 here is cacheline size... recheck this */
74 RW_DATA_SECTION(32, PAGE_SIZE, PAGE_SIZE)
81 /* Init code and data */
88 INIT_TEXT_SECTION(PAGE_SIZE)
90 /* Align __setup_start on 16 byte boundary */
93 PERCPU_SECTION(L1_CACHE_BYTES)
98 .initrd : AT(ADDR(.initrd) - LOAD_OFFSET)
104 . = ALIGN (PAGE_SIZE);
107 __vmlinux_end = .; /* last address of the physical file */
109 BSS_SECTION(0, 0, 0x20)
113 /* Throw in the debugging sections */
117 /* Sections to be discarded -- must be last */