]> rtime.felk.cvut.cz Git - sysless.git/blob - board/h8300/h8eurobot/libs/h8canusb.ld-boot
h8300: Port the newest bloader to h8eurobot board
[sysless.git] / board / h8300 / h8eurobot / libs / h8canusb.ld-boot
1 /* linker script for inteligent boot block (for user-program-mode boot-loader in flash) */
2
3 INCLUDE "h8canusb.ld-cfg"
4
5 PROVIDE( ___stack_top = ( __iram0_end & ~ 3 ) - 4 );
6 /*PROVIDE( ___setup_board = _start);*/
7
8 STARTUP(crt0.o)
9 INPUT(bsp0common.o)
10 INPUT(bsp0hwinit.o setup_board.o)
11
12 SECTIONS
13 {
14         .fvector :
15         {
16           ___flashbb_vector = . ;
17           LONG( ABSOLUTE( ___setup_board ) )
18           *(.fvector)
19         } > flashvec
20         
21         .shadreg (NOLOAD) :
22         {
23           *(.shadreg)
24           . = ALIGN( 0x4 ) ;
25         } > iram0
26
27         .text.boot_fn ALIGN(4) :
28         {
29           . = ALIGN( 0x4 ) ;
30           KEEP (boot_fn.o(.text))
31           KEEP (boot_fn.o(.rodata))
32           KEEP (boot_fn.o(.strings))
33           . = ALIGN( 4 ) ;
34         } > iram0 AT>flashbb
35         ___boot_fn_start = ADDR(.text.boot_fn);
36         ___boot_fn_end   = ADDR(.text.boot_fn) + SIZEOF(.text.boot_fn);
37         ___boot_fn_load  = LOADADDR(.text.boot_fn);
38
39         .text :
40         {
41           text_start = . ;
42           KEEP (crt0.o(.text))
43           *(.text)
44           *(.rodata)                            
45           *(.text .stub .text.* .gnu.linkonce.t.*)
46           *(.rodata .rodata.* .gnu.linkonce.r.*)
47           *(.strings)
48           . = ALIGN( 0x4 ) ;
49           _etext = ALIGN( 0x4 ) ;
50         } > flashbb
51         .tors : 
52         {
53           ___ctors = . ;
54           *(.ctors)
55           ___ctors_end = . ;
56           ___dtors = . ;
57           *(.dtors)
58           ___dtors_end = . ;
59           . = ALIGN( 0x4 ) ;
60           ___data_lma = ALIGN( 0x4 ) ;
61         }  > flashbb /*at> flashusr*/
62
63         .data :
64           AT ( ADDR( .tors ) + SIZEOF( .tors ) )
65         {
66           _data_start = . ;
67           *(.data)
68           . = ALIGN( 0x4 ) ;
69           _edata = ALIGN( 0x4 ) ;
70         } > iram1
71
72         /* ___data_lma = LOADADDR(.data) ; */
73         
74         .bss :
75         {
76           _bss_start = ALIGN( 0x10 ) ;
77           *(.bss)
78           *(COMMON)
79           . = ALIGN( 0x4 ) ;
80           _end = . ;
81         } > iram0
82         
83         .flashusr :
84         {
85           _usrprog_start = . ;
86         } > flashusr
87
88         /* Stabs debugging sections.  */
89         .stab          0 (NOLOAD): { *(.stab) }
90         .stabstr       0 (NOLOAD): { *(.stabstr) }
91         .stab.excl     0 (NOLOAD): { *(.stab.excl) }
92         .stab.exclstr  0 (NOLOAD): { *(.stab.exclstr) }
93         .stab.index    0 (NOLOAD): { *(.stab.index) }
94         .stab.indexstr 0 (NOLOAD): { *(.stab.indexstr) }
95         .comment       0 (NOLOAD): { *(.comment) }
96         /* DWARF debug sections.
97            Symbols in the DWARF debugging sections are relative to the beginning
98            of the section so we begin them at 0.  */
99         /* DWARF 1 */
100         .debug          0 (NOLOAD): { *(.debug) }
101         .line           0 (NOLOAD): { *(.line) }
102         /* GNU DWARF 1 extensions */
103         .debug_srcinfo  0 (NOLOAD): { *(.debug_srcinfo) }
104         .debug_sfnames  0 (NOLOAD): { *(.debug_sfnames) }
105         /* DWARF 1.1 and DWARF 2 */
106         .debug_aranges  0 (NOLOAD): { *(.debug_aranges) }
107         .debug_pubnames 0 (NOLOAD): { *(.debug_pubnames) }
108         /* DWARF 2 */
109         .debug_info     0 (NOLOAD): { *(.debug_info .gnu.linkonce.wi.*) }
110         .debug_abbrev   0 (NOLOAD): { *(.debug_abbrev) }
111         .debug_line     0 (NOLOAD): { *(.debug_line) }
112         .debug_frame    0 (NOLOAD): { *(.debug_frame) }
113         .debug_str      0 (NOLOAD): { *(.debug_str) }
114         .debug_loc      0 (NOLOAD): { *(.debug_loc) }
115         .debug_macinfo  0 (NOLOAD): { *(.debug_macinfo) }
116         /* SGI/MIPS DWARF 2 extensions */
117         .debug_weaknames 0 (NOLOAD): { *(.debug_weaknames) }
118         .debug_funcnames 0 (NOLOAD): { *(.debug_funcnames) }
119         .debug_typenames 0 (NOLOAD): { *(.debug_typenames) }
120         .debug_varnames  0 (NOLOAD): { *(.debug_varnames) }
121         /* DWARF 3 */
122         .debug_pubtypes 0 (NOLOAD): { *(.debug_pubtypes) }
123         .debug_ranges   0 (NOLOAD): { *(.debug_ranges) }
124         .gnu.attributes 0 (NOLOAD): { KEEP (*(.gnu.attributes)) }
125 }