1 | /** AMD64 linker script
|
---|
2 | *
|
---|
3 | * umapped section:
|
---|
4 | * kernel text
|
---|
5 | * kernel data
|
---|
6 | * mapped section:
|
---|
7 | * kernel text
|
---|
8 | * kernel data
|
---|
9 | */
|
---|
10 |
|
---|
11 | #include <arch/boot/boot.h>
|
---|
12 | #include <arch/mm/page.h>
|
---|
13 |
|
---|
14 | SECTIONS {
|
---|
15 | kernel_load_address = PA2KA(BOOT_OFFSET);
|
---|
16 |
|
---|
17 | .unmapped (BOOT_OFFSET + SIZEOF_HEADERS): AT (BOOT_OFFSET + SIZEOF_HEADERS) {
|
---|
18 | unmapped_start = .;
|
---|
19 | KEEP(*(K_TEXT_START));
|
---|
20 | KEEP(*(K_DATA_START));
|
---|
21 | KEEP(*(K_INI_PTLS));
|
---|
22 | unmapped_end = .;
|
---|
23 | }
|
---|
24 |
|
---|
25 | .text (PA2KA(BOOT_OFFSET) + SIZEOF_HEADERS + SIZEOF(.unmapped)) : AT (BOOT_OFFSET + SIZEOF_HEADERS + SIZEOF(.unmapped)) {
|
---|
26 | ktext_start = .;
|
---|
27 | *(.text .text.*);
|
---|
28 | ktext_end = .;
|
---|
29 | }
|
---|
30 |
|
---|
31 | /* stack unwinding data */
|
---|
32 | .eh_frame_hdr : {
|
---|
33 | eh_frame_hdr_start = .;
|
---|
34 | *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
|
---|
35 | eh_frame_hdr_end = .;
|
---|
36 | }
|
---|
37 | .eh_frame : {
|
---|
38 | eh_frame_start = .;
|
---|
39 | KEEP(*(.eh_frame .eh_frame.*));
|
---|
40 | eh_frame_end = .;
|
---|
41 | }
|
---|
42 |
|
---|
43 | .data : {
|
---|
44 | kdata_start = .;
|
---|
45 | *(.rodata .rodata.*); /* read-only global variables */
|
---|
46 | *(.data .data.*); /* non-zero initialized global variables */
|
---|
47 |
|
---|
48 | /*
|
---|
49 | * When .bss is not physically present in the ELF file (MemSz > FileSz)
|
---|
50 | * the kernel crashes during early boot. Not sure which part of the
|
---|
51 | * boot process is to blame, for now just keep .bss packaged with .data
|
---|
52 | * so that FileSz == MemSz.
|
---|
53 | */
|
---|
54 |
|
---|
55 | *(.bss .bss.*); /* uninitialized global variables */
|
---|
56 | *(COMMON); /* non-`static` global variables without an extern declaration */
|
---|
57 | kdata_end = .;
|
---|
58 | }
|
---|
59 |
|
---|
60 | .comment 0 : { *(.comment); }
|
---|
61 | .debug_abbrev 0 : { *(.debug_abbrev); }
|
---|
62 | .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); }
|
---|
63 | .debug_addr 0 : { *(.debug_addr); }
|
---|
64 | .debug_aranges 0 : { *(.debug_aranges); }
|
---|
65 | .debug_cu_index 0 : { *(.debug_cu_index); }
|
---|
66 | .debug_frame 0 : { *(.debug_frame); }
|
---|
67 | .debug_frame_hdr 0 : { *(.debug_frame_hdr); }
|
---|
68 | .debug_info 0 : { *(.debug_info); }
|
---|
69 | .debug_info.dwo 0 : { *(.debug_info.dwo); }
|
---|
70 | .debug_line 0 : { *(.debug_line); }
|
---|
71 | .debug_line.dwo 0 : { *(.debug_line.dwo); }
|
---|
72 | .debug_line_str 0 : { *(.debug_line_str); }
|
---|
73 | .debug_loc 0 : { *(.debug_loc); }
|
---|
74 | .debug_loclists 0 : { *(.debug_loclists); }
|
---|
75 | .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }
|
---|
76 | .debug_macinfo 0 : { *(.debug_macinfo); }
|
---|
77 | .debug_macro 0 : { *(.debug_macro); }
|
---|
78 | .debug_macro.dwo 0 : { *(.debug_macro.dwo); }
|
---|
79 | .debug_names 0 : { *(.debug_names); }
|
---|
80 | .debug_pubnames 0 : { *(.debug_pubnames); }
|
---|
81 | .debug_pubtypes 0 : { *(.debug_pubtypes); }
|
---|
82 | .debug_ranges 0 : { *(.debug_ranges); }
|
---|
83 | .debug_rnglists 0 : { *(.debug_rnglists); }
|
---|
84 | .debug_str 0 : { *(.debug_str); }
|
---|
85 | .debug_str.dwo 0 : { *(.debug_str.dwo); }
|
---|
86 | .debug_str_offsets 0 : { *(.debug_str_offsets); }
|
---|
87 | .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); }
|
---|
88 | .debug_tu_index 0 : { *(.debug_tu_index); }
|
---|
89 | .debug_types 0 : { *(.debug_types); }
|
---|
90 |
|
---|
91 | /DISCARD/ : {
|
---|
92 | *(*);
|
---|
93 | }
|
---|
94 |
|
---|
95 | #ifdef CONFIG_SMP
|
---|
96 | ap_boot = unmapped_ap_boot - BOOT_OFFSET + AP_BOOT_OFFSET;
|
---|
97 | ap_gdtr = unmapped_ap_gdtr - BOOT_OFFSET + AP_BOOT_OFFSET;
|
---|
98 | protected_ap_gdtr = PA2KA(ap_gdtr);
|
---|
99 | #endif /* CONFIG_SMP */
|
---|
100 |
|
---|
101 | }
|
---|