]>
Commit | Line | Data |
---|---|---|
f1d2b313 HS |
1 | To make relocation on arm working, the following changes are done: |
2 | ||
92d5ecba | 3 | At arch level: add linker flag -pie |
f1d2b313 | 4 | |
92d5ecba AA |
5 | This causes the linker to generate fixup tables .rel.dyn and .dynsym, |
6 | which must be applied to the relocated image before transferring | |
7 | control to it. | |
f1d2b313 | 8 | |
92d5ecba AA |
9 | These fixups are described in the ARM ELF documentation as type 23 |
10 | (program-base-relative) and 2 (symbol-relative) | |
f1d2b313 | 11 | |
92d5ecba | 12 | At cpu level: modify linker file and add a relocation and fixup loop |
f1d2b313 | 13 | |
92d5ecba AA |
14 | the linker file must be modified to include the .rel.dyn and .dynsym |
15 | tables in the binary image, and to provide symbols for the relocation | |
16 | code to access these tables | |
f1d2b313 | 17 | |
92d5ecba AA |
18 | The relocation and fixup loop must be executed after executing |
19 | board_init_f at initial location and before executing board_init_r | |
20 | at final location. | |
f1d2b313 | 21 | |
92d5ecba | 22 | At board level: |
f1d2b313 | 23 | |
92d5ecba AA |
24 | dram_init(): bd pointer is now at this point not accessible, so only |
25 | detect the real dramsize, and store it in gd->ram_size. Bst detected | |
26 | with get_ram_size(). | |
f1d2b313 | 27 | |
92d5ecba | 28 | TODO: move also dram initialization there on boards where it is possible. |
f1d2b313 | 29 | |
bb5a2cf9 | 30 | Setup of the bd_info dram bank info is done in the new function |
92d5ecba | 31 | dram_init_banksize() called after bd is accessible. |
f1d2b313 | 32 | |
92d5ecba | 33 | At lib level: |
f1d2b313 | 34 | |
92d5ecba | 35 | Board.c code is adapted from ppc code |
f1d2b313 | 36 | |
92d5ecba AA |
37 | * WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING * |
38 | ||
39 | Boards which are not fixed to support relocation will be REMOVED! | |
40 | ||
92d5ecba AA |
41 | ----------------------------------------------------------------------------- |
42 | ||
da962b71 | 43 | For boards which boot from spl, it is possible to save one copy |
14d0a02a | 44 | if CONFIG_SYS_TEXT_BASE == relocation address! This prevents that uboot code |
ab86f72c HS |
45 | is copied again in relocate_code(). |
46 | ||
da962b71 | 47 | example for the tx25 board booting from NAND Flash: |
ab86f72c HS |
48 | |
49 | a) cpu starts | |
50 | b) it copies the first page in nand to internal ram | |
da962b71 | 51 | (spl code) |
ab86f72c HS |
52 | c) end executes this code |
53 | d) this initialize CPU, RAM, ... and copy itself to RAM | |
54 | (this bin must fit in one page, so board_init_f() | |
55 | don;t fit in it ... ) | |
56 | e) there it copy u-boot to CONFIG_SYS_NAND_U_BOOT_DST and | |
57 | starts this image @ CONFIG_SYS_NAND_U_BOOT_START | |
58 | f) u-boot code steps through board_init_f() and calculates | |
59 | the relocation address and copy itself to it | |
60 | ||
14d0a02a | 61 | If CONFIG_SYS_TEXT_BASE == relocation address, the copying of u-boot |
ab86f72c HS |
62 | in f) could be saved. |
63 | ||
92d5ecba | 64 | ----------------------------------------------------------------------------- |
ab86f72c | 65 | |
92d5ecba | 66 | TODO |
f1d2b313 | 67 | |
bb5a2cf9 | 68 | - fill in struct bd_info infos (check) |
f1d2b313 HS |
69 | - adapt all boards |
70 | ||
14d0a02a | 71 | - maybe adapt CONFIG_SYS_TEXT_BASE (this must be checked from board maintainers) |
f1d2b313 HS |
72 | This *must* be done for boards, which boot from NOR flash |
73 | ||
14d0a02a | 74 | on other boards if CONFIG_SYS_TEXT_BASE = relocation baseaddr, this saves |
f1d2b313 HS |
75 | one copying from u-boot code. |
76 | ||
77 | - new function dram_init_banksize() is actual board specific. Maybe | |
78 | we make a weak default function in arch/arm/lib/board.c ? | |
79 | ||
92d5ecba | 80 | ----------------------------------------------------------------------------- |
f1d2b313 | 81 | |
da962b71 | 82 | Relocation with SPL (example for the tx25 booting from NAND Flash): |
f1d2b313 HS |
83 | |
84 | - cpu copies the first page from NAND to 0xbb000000 (IMX_NFC_BASE) | |
85 | and start with code execution on this address. | |
86 | ||
a430fa06 | 87 | - The First page contains u-boot code from drivers/mtd/nand/raw/mxc_nand_spl.c |
da962b71 | 88 | which inits the dram, cpu registers, reloacte itself to CONFIG_SPL_TEXT_BASE and loads |
f1d2b313 HS |
89 | the "real" u-boot to CONFIG_SYS_NAND_U_BOOT_DST and starts execution |
90 | @CONFIG_SYS_NAND_U_BOOT_START | |
91 | ||
c8d76eaf WD |
92 | - This u-boot does no RAM init, nor CPU register setup. Just look |
93 | where it has to copy and relocate itself to this address. If | |
94 | relocate address = CONFIG_SYS_TEXT_BASE (not the same, as the | |
da962b71 | 95 | CONFIG_SPL_TEXT_BASE from the spl code), then there is no need |
c8d76eaf | 96 | to copy, just go on with bss clear and jump to board_init_r. |
f1d2b313 | 97 | |
92d5ecba | 98 | ----------------------------------------------------------------------------- |
f1d2b313 | 99 | |
92d5ecba | 100 | How ELF relocations 23 and 2 work. |
f1d2b313 | 101 | |
92d5ecba | 102 | TBC |
f1d2b313 HS |
103 | |
104 | ------------------------------------------------------------------------------------- | |
105 | ||
106 | Debugging u-boot in RAM: | |
107 | (example on the qong board) | |
108 | ||
f1d2b313 HS |
109 | ----------------- |
110 | ||
f4379cef | 111 | a) start debugger |
f1d2b313 HS |
112 | |
113 | arm-linux-gdb u-boot | |
114 | ||
115 | [hs@pollux u-boot]$ arm-linux-gdb u-boot | |
116 | GNU gdb Red Hat Linux (6.7-2rh) | |
117 | Copyright (C) 2007 Free Software Foundation, Inc. | |
118 | License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
119 | This is free software: you are free to change and redistribute it. | |
120 | There is NO WARRANTY, to the extent permitted by law. Type "show copying" | |
121 | and "show warranty" for details. | |
122 | This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-linux". | |
123 | The target architecture is set automatically (currently arm) | |
124 | .. | |
125 | (gdb) | |
126 | ||
127 | ----------------- | |
128 | ||
f4379cef | 129 | b) connect to target |
f1d2b313 HS |
130 | |
131 | target remote bdi10:2001 | |
132 | ||
133 | (gdb) target remote bdi10:2001 | |
134 | Remote debugging using bdi10:2001 | |
135 | 0x8ff17f10 in ?? () | |
136 | (gdb) | |
137 | ||
138 | ----------------- | |
139 | ||
f4379cef | 140 | c) discard symbol-file |
f1d2b313 HS |
141 | |
142 | (gdb) symbol-file | |
143 | Discard symbol table from `/home/hs/celf/u-boot/u-boot'? (y or n) y | |
144 | No symbol file now. | |
145 | (gdb) | |
146 | ||
147 | ----------------- | |
148 | ||
f4379cef | 149 | d) load new symbol table: |
f1d2b313 HS |
150 | |
151 | (gdb) add-symbol-file u-boot 0x8ff08000 | |
152 | add symbol table from file "u-boot" at | |
071bc923 | 153 | .text_addr = 0x8ff08000 |
f1d2b313 HS |
154 | (y or n) y |
155 | Reading symbols from /home/hs/celf/u-boot/u-boot...done. | |
156 | (gdb) c | |
157 | Continuing. | |
158 | ^C | |
159 | Program received signal SIGSTOP, Stopped (signal). | |
160 | 0x8ff17f18 in serial_getc () at serial_mxc.c:192 | |
071bc923 | 161 | 192 while (__REG(UART_PHYS + UTS) & UTS_RXEMPTY); |
f1d2b313 HS |
162 | (gdb) |
163 | ||
164 | add-symbol-file u-boot 0x8ff08000 | |
071bc923 | 165 | ^^^^^^^^^^ |
f4379cef | 166 | get this address from u-boot bdinfo command |
7124015a | 167 | or get it from gd->relocaddr in gdb |
f4379cef BG |
168 | |
169 | => bdinfo | |
170 | rch_number = XXXXXXXXXX | |
171 | boot_params = XXXXXXXXXX | |
172 | DRAM bank = XXXXXXXXXX | |
173 | -> start = XXXXXXXXXX | |
174 | -> size = XXXXXXXXXX | |
175 | ethaddr = XXXXXXXXXX | |
176 | ip_addr = XXXXXXXXXX | |
177 | baudrate = XXXXXXXXXX | |
178 | TLB addr = XXXXXXXXXX | |
179 | relocaddr = 0x8ff08000 | |
cd6881b5 | 180 | ^^^^^^^^^^ |
f4379cef | 181 | reloc off = XXXXXXXXXX |
cd6881b5 | 182 | irq_sp = XXXXXXXXXX |
f4379cef BG |
183 | sp start = XXXXXXXXXX |
184 | FB base = XXXXXXXXXX | |
f1d2b313 | 185 | |
7124015a BG |
186 | or interrupt execution by any means and re-load the symbols at the location |
187 | specified by gd->relocaddr -- this is only valid after board_init_f. | |
188 | ||
189 | (gdb) set $s = gd->relocaddr | |
190 | (gdb) symbol-file | |
191 | (gdb) add-symbol-file u-boot $s | |
192 | ||
f1d2b313 | 193 | Now you can use gdb as usual :-) |