blob: 9222f3b876c8e6b175e205eb43740afacd3b1d20 [file] [log] [blame]
Aaron Durbinad935522012-12-24 14:28:37 -06001/*
2 * This linker script is used to link rmodules (relocatable modules). It
3 * links at zero so that relocation fixups are easy when placing the binaries
4 * anywhere in the address space.
5 *
6 * NOTE: The program's loadable sections (text, module_params, and data) are
Aaron Durbin3eb8eb72014-03-10 16:13:58 -05007 * packed into the flat blob. The rmodule loader assumes the entire program
8 * resides in one contiguous address space. Therefore, alignment for a given
9 * section (if required) needs to be done at the end of the preceeding section.
10 * e.g. if the data section should be aligned to an 8 byte address the text
11 * section should have ALIGN(8) at the end of its section. Otherwise there
12 * won't be a consistent mapping between the flat blob and the loaded program.
Aaron Durbinad935522012-12-24 14:28:37 -060013 */
14
15BASE_ADDRESS = 0x00000;
16
17SECTIONS
18{
19 . = BASE_ADDRESS;
20
Aaron Durbin3eb8eb72014-03-10 16:13:58 -050021 .payload : {
Aaron Durbinad935522012-12-24 14:28:37 -060022 /* C code of the module. */
Aaron Durbin3eb8eb72014-03-10 16:13:58 -050023 _ram_seg = .;
Aaron Durbind23e292e2013-03-22 19:55:35 -050024 *(.textfirst);
Aaron Durbinad935522012-12-24 14:28:37 -060025 *(.text);
26 *(.text.*);
27 /* C read-only data. */
28 . = ALIGN(16);
Aaron Durbinf7c6d482013-02-06 15:47:31 -060029
Aaron Durbind23e292e2013-03-22 19:55:35 -050030 __CTOR_LIST__ = .;
31 *(.ctors);
32 LONG(0);
33 __CTOR_END__ = .;
34
Aaron Durbinf7c6d482013-02-06 15:47:31 -060035 /* The driver sections are to allow linking coreboot's
36 * ramstage with the rmodule linker. Any changes made in
37 * coreboot_ram.ld should be made here as well. */
38 console_drivers = .;
39 *(.rodata.console_drivers)
40 econsole_drivers = . ;
41 . = ALIGN(4);
42 pci_drivers = . ;
43 *(.rodata.pci_driver)
44 epci_drivers = . ;
45 cpu_drivers = . ;
46 *(.rodata.cpu_driver)
47 ecpu_drivers = . ;
Aaron Durbina4feddf2013-04-24 16:12:52 -050048 _bs_init_begin = .;
49 *(.bs_init)
50 _bs_init_end = .;
51
Aaron Durbinf7c6d482013-02-06 15:47:31 -060052 . = ALIGN(4);
53
Aaron Durbinad935522012-12-24 14:28:37 -060054 *(.rodata);
55 *(.rodata.*);
56 . = ALIGN(4);
Aaron Durbinad935522012-12-24 14:28:37 -060057
Aaron Durbinad935522012-12-24 14:28:37 -060058 /* The parameters section can be used to pass parameters
59 * to a module, however there has to be an prior agreement
60 * on how to interpret the parameters. */
61 _module_params_begin = .;
62 *(.module_parameters);
63 _module_params_end = .;
Aaron Durbine1be5ae2013-04-29 13:53:41 -050064 . = ALIGN(8);
Aaron Durbinad935522012-12-24 14:28:37 -060065
Aaron Durbine1be5ae2013-04-29 13:53:41 -050066 /* Data section. */
Aaron Durbinad935522012-12-24 14:28:37 -060067 _sdata = .;
68 *(.data);
69 . = ALIGN(4);
70 _edata = .;
Aaron Durbine1be5ae2013-04-29 13:53:41 -050071
72 . = ALIGN(8);
Aaron Durbinad935522012-12-24 14:28:37 -060073 }
74
Aaron Durbinad935522012-12-24 14:28:37 -060075 .bss (NOLOAD) : {
Aaron Durbinf7c6d482013-02-06 15:47:31 -060076 /* C uninitialized data of the module. */
77 _bss = .;
Aaron Durbinad935522012-12-24 14:28:37 -060078 *(.bss);
79 *(.sbss);
80 *(COMMON);
81 . = ALIGN(8);
Aaron Durbinf7c6d482013-02-06 15:47:31 -060082 _ebss = .;
Aaron Durbinad935522012-12-24 14:28:37 -060083
Aaron Durbinad935522012-12-24 14:28:37 -060084 /*
85 * Place the heap after BSS. The heap size is passed in by
86 * by way of ld --defsym=__heap_size=<>
87 */
88 _heap = .;
89 . = . + __heap_size;
90 _eheap = .;
Aaron Durbin3eb8eb72014-03-10 16:13:58 -050091 _eram_seg = .;
Aaron Durbinad935522012-12-24 14:28:37 -060092 }
93
Aaron Durbinad935522012-12-24 14:28:37 -060094 /DISCARD/ : {
Aaron Durbin3eb8eb72014-03-10 16:13:58 -050095 /* Drop unnecessary sections. */
Aaron Durbinad935522012-12-24 14:28:37 -060096 *(.eh_frame);
97 }
98}