Sam Ravnborg | 17ce265 | 2009-04-29 09:47:18 +0200 | [diff] [blame] | 1 | /* |
| 2 | * ld script for the x86 kernel |
| 3 | * |
| 4 | * Historic 32-bit version written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> |
| 5 | * |
| 6 | * Modernisation and unification done by Sam Ravnborg <sam@ravnborg.org> |
| 7 | * |
| 8 | * |
| 9 | * Don't define absolute symbols until and unless you know that symbol |
| 10 | * value is should remain constant even if kernel image is relocated |
| 11 | * at run time. Absolute symbols are not relocated. If symbol value should |
| 12 | * change if kernel is relocated, make the symbol section relative and |
| 13 | * put it inside the section definition. |
| 14 | */ |
| 15 | |
| 16 | #ifdef CONFIG_X86_32 |
| 17 | #define LOAD_OFFSET __PAGE_OFFSET |
| 18 | #else |
| 19 | #define LOAD_OFFSET __START_KERNEL_map |
| 20 | #endif |
| 21 | |
| 22 | #include <asm-generic/vmlinux.lds.h> |
| 23 | #include <asm/asm-offsets.h> |
| 24 | #include <asm/thread_info.h> |
| 25 | #include <asm/page_types.h> |
| 26 | #include <asm/cache.h> |
| 27 | #include <asm/boot.h> |
| 28 | |
| 29 | #undef i386 /* in case the preprocessor is a 32bit one */ |
| 30 | |
| 31 | OUTPUT_FORMAT(CONFIG_OUTPUT_FORMAT, CONFIG_OUTPUT_FORMAT, CONFIG_OUTPUT_FORMAT) |
| 32 | |
| 33 | #ifdef CONFIG_X86_32 |
| 34 | OUTPUT_ARCH(i386) |
| 35 | ENTRY(phys_startup_32) |
| 36 | jiffies = jiffies_64; |
| 37 | #else |
| 38 | OUTPUT_ARCH(i386:x86-64) |
| 39 | ENTRY(phys_startup_64) |
| 40 | jiffies_64 = jiffies; |
| 41 | #endif |
| 42 | |
Sam Ravnborg | afb8095 | 2009-04-29 09:47:19 +0200 | [diff] [blame^] | 43 | PHDRS { |
| 44 | text PT_LOAD FLAGS(5); /* R_E */ |
| 45 | data PT_LOAD FLAGS(7); /* RWE */ |
| 46 | #ifdef CONFIG_X86_64 |
| 47 | user PT_LOAD FLAGS(7); /* RWE */ |
| 48 | data.init PT_LOAD FLAGS(7); /* RWE */ |
| 49 | #ifdef CONFIG_SMP |
| 50 | percpu PT_LOAD FLAGS(7); /* RWE */ |
| 51 | #endif |
| 52 | data.init2 PT_LOAD FLAGS(7); /* RWE */ |
| 53 | #endif |
| 54 | note PT_NOTE FLAGS(0); /* ___ */ |
| 55 | } |
Sam Ravnborg | 17ce265 | 2009-04-29 09:47:18 +0200 | [diff] [blame] | 56 | |
Thomas Gleixner | a60b778 | 2007-10-11 11:12:11 +0200 | [diff] [blame] | 57 | #ifdef CONFIG_X86_32 |
| 58 | # include "vmlinux_32.lds.S" |
| 59 | #else |
| 60 | # include "vmlinux_64.lds.S" |
Jean-Paul Saman | 67d3822 | 2007-02-10 01:44:44 -0800 | [diff] [blame] | 61 | #endif |
Sam Ravnborg | 17ce265 | 2009-04-29 09:47:18 +0200 | [diff] [blame] | 62 | |
| 63 | |
| 64 | #ifdef CONFIG_X86_32 |
| 65 | ASSERT((_end - LOAD_OFFSET <= KERNEL_IMAGE_SIZE), |
| 66 | "kernel image bigger than KERNEL_IMAGE_SIZE") |
| 67 | #else |
| 68 | /* |
| 69 | * Per-cpu symbols which need to be offset from __per_cpu_load |
| 70 | * for the boot processor. |
| 71 | */ |
| 72 | #define INIT_PER_CPU(x) init_per_cpu__##x = per_cpu__##x + __per_cpu_load |
| 73 | INIT_PER_CPU(gdt_page); |
| 74 | INIT_PER_CPU(irq_stack_union); |
| 75 | |
| 76 | /* |
| 77 | * Build-time check on the image size: |
| 78 | */ |
| 79 | ASSERT((_end - _text <= KERNEL_IMAGE_SIZE), |
| 80 | "kernel image bigger than KERNEL_IMAGE_SIZE") |
| 81 | |
| 82 | #ifdef CONFIG_SMP |
| 83 | ASSERT((per_cpu__irq_stack_union == 0), |
| 84 | "irq_stack_union is not at start of per-cpu area"); |
| 85 | #endif |
| 86 | |
| 87 | #endif /* CONFIG_X86_32 */ |
| 88 | |
| 89 | #ifdef CONFIG_KEXEC |
| 90 | #include <asm/kexec.h> |
| 91 | |
| 92 | ASSERT(kexec_control_code_size <= KEXEC_CONTROL_CODE_MAX_SIZE, |
| 93 | "kexec control code size is too big") |
| 94 | #endif |
| 95 | |