annotate gcc/ld-script.src @ 8:727914266f28

gcc: adapted from Selenite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 15 May 2020 03:13:51 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 dnl This ld script source is fed through m4 in order to fill in
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 dnl those settings which depend on the configuration.
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 dnl Two include files are fed to m4 before this main body:
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 dnl the appropriate targets/*.m4 file defining the memory config
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 dnl of the hardware, and one of flash.m4 or xram.m4 to select
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 dnl the build type.
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 /*
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 * FreeCalypso Selenite ld script for the Buildmem build
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 ENTRY(_Firmware_boot_entry)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 MEMORY {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 ifelse(Buildmem-FLASH_BOOT_VIA_BOOTROM,FLASH-1,
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 ` FLASH_OVERLAY : ORIGIN = 0, LENGTH = 0x2000')
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 ifelse(Buildmem,FLASH,
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 ` FLASH : ORIGIN = FLASHIMAGE_BASE_ADDR,
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 LENGTH = CONFIG_FWFLASH_SIZE - FLASHIMAGE_BASE_ADDR')
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 IRAM : ORIGIN = 0x00800000, LENGTH = CONFIG_IRAM_SIZE
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 XRAM : ORIGIN = 0x01000000, LENGTH = CONFIG_XRAM_SIZE
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22 }
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
24 SECTIONS {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25 dnl The following sections exist only in the flashImage build,
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26 dnl and only on targets that use the Calypso boot ROM.
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
27 ifelse(Buildmem-FLASH_BOOT_VIA_BOOTROM,FLASH-1,
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
28 ` /* Part of flash overlaid by the boot ROM */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
29 bootrom.overlay 0 : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
30 *(bootrom.overlay)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
31 } > FLASH_OVERLAY
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
32
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
33 /* code that enables the boot ROM and jumps to it */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
34 bootrom.switch : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
35 *(bootrom.switch)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
36 } > IRAM AT> FLASH_OVERLAY
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37 __romswitch_ram_addr = ADDR(bootrom.switch);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 __romswitch_flash_addr = LOADADDR(bootrom.switch);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
39 __romswitch_size = SIZEOF(bootrom.switch);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
40 ')dnl
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
41
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
42 /* boot entry code, going into flash or XRAM emulating flash */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43 .inttext INTTEXT_BASE_ADDR : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
44 *(.inttext)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
45 } > Buildmem
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
46
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
47 /* copy-to-IRAM code */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
48 iram.text 0x80001C : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
49 /* the 7 exception and interrupt vectors @ 0x80001C */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
50 *(.ramvecs)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
51 *_ir.a:(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
52 *_int.a:(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
53 *_intram.a:(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
54 *osx_na7_db.a:(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
55 *tpudrv.a:(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
56 *drivers_flash.a:niq32.o(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
57 *sim_drv.a:sim32.o(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
58 *libc.a:(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
59 *libgcc.a:(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
60 } > IRAM Put_in_flash
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
61 ifelse(Buildmem,FLASH,
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
62 ` __iramtext_ram_addr = ADDR(iram.text);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
63 __iramtext_flash_addr = LOADADDR(iram.text);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
64 __iramtext_size = SIZEOF(iram.text);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
65 ')dnl
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
66
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
67 /* XIP code, going into flash or XRAM emulating flash */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
68 xip.text : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
69 *(.text*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
70 /* let's put the ARM->Thumb veneers in the XIP section */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
71 *(.glue_7)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
72 } > Buildmem
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
73
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
74 /* all .rodata will stay in flash */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
75 .rodata : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
76 *(.rodata*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
77 } > Buildmem
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
78
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
79 .bss_dar (NOLOAD) : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
80 *dar_gbl_var.a:(.bss* COMMON)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
81 } > XRAM
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
82
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
83 /*
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
84 * All .data will go into XRAM.
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
85 * For the flash build we'll have a step that copies
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
86 * the .data section from flash to XRAM; for the RAM-only
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
87 * build it goes directly into XRAM and stays there.
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
88 */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
89 .data : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
90 *(.data*)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
91 } > XRAM Put_in_flash
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
92 ifelse(Buildmem,FLASH,
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
93 ` __initdata_ram_addr = ADDR(.data);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
94 __initdata_flash_addr = LOADADDR(.data);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
95 __initdata_size = SIZEOF(.data);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
96 ')dnl
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
97
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
98 /* we have two kinds of BSS: internal and external */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
99 int.bss (NOLOAD) : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
100 *(.l1s_global)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
101 *_ir.a:(.bss* COMMON)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
102 *_int.a:(.bss* COMMON)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
103 *_intram.a:(.bss* COMMON)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
104 *osx_na7_db.a:(.bss* COMMON)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
105 *tpudrv.a:(.bss* COMMON)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
106 *libc.a:(.bss* COMMON)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
107 *libgcc.a:(.bss* COMMON)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
108 *(.API_HISR_stack)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
109 . = ALIGN(4);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
110 } > IRAM
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
111 __intbss_start = ADDR(int.bss);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
112 __intbss_size = SIZEOF(int.bss);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
113
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
114 ext.bss (NOLOAD) : {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
115 *(.bss* COMMON)
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
116 . = ALIGN(4);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
117 } > XRAM
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
118 __extbss_start = ADDR(ext.bss);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
119 __extbss_size = SIZEOF(ext.bss);
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
120
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
121 int.stack (NOLOAD) : ALIGN(8) {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
122 /* Beginning of stacks and heap area - 2.75 kbytes (int.s) */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
123 _Stack_segment_start = .;
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
124 . += 0xB00;
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
125 _Stack_segment_end = .;
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
126
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
127 _iram_end = .;
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
128 } > IRAM
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
129
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
130 ext.stack (NOLOAD) : ALIGN(8) {
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
131 /* Stack for abort and/or undefined modes. */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
132 . += 512;
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
133 _Except_Stack_SP = .;
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
134
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
135 /* Leave 38 32bit words for state saving on exceptions. */
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
136 xdump_buffer = .;
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
137 . += 38 * 4;
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
138
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
139 _xram_end = .;
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
140 } > XRAM
727914266f28 gcc: adapted from Selenite
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
141 }