aboutsummaryrefslogtreecommitdiff
path: root/doc/README.arm-relocation
blob: e3ed60ecdcfea4e072612b3efe569e6040c20f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
To make relocation on arm working, the following changes are done:

Add new compilerflag:

-fPIC

	-> compiler generates position independent code

changes in board code:

- dram_init:
  - bd pointer is now at this point not accessible, so only
    detect the real dramsize, and store it in gd->ram_size.
    best detected with get_ram_size();
    ToDo: move there also the dram initialization on boards where
          it is possible.
  - setup the bd_t dram bank info in the new function
    dram_init_banksize().

- board.c code is adapted from ppc code

- undef CONFIG_RELOC_FIXUP_WORKS

  -> cmdtabl, and subcommand table must be handled from "hand"
     collected in section "__datarellocal_start".

  - How To fixup the sections:

    __datarel_start, __datarelrolocal_start, __datarellocal_start and
    __datarelro_start

    automatically? Then it should be possible to define again
    CONFIG_RELOC_FIXUP_WORKS

- irq stack setup is now not longer on a fix position, instead it is
  calculated in board_init_f, and stored in gd->irq_sp

-------------------------------------------------------------------------------------

To compile a board without relocation, define CONFIG_SYS_ARM_WITHOUT_RELOC
This possibility will removed!! So please fix your board to compile without
CONFIG_SYS_ARM_WITHOUT_RELOC defined!!!

-------------------------------------------------------------------------------------

For boards which boot from nand_spl, it is possible to save a copy
if TEXT_BASE == relocation address! This prevents that uboot code
is copied again in relocate_code().

example for the tx25 board:

a) cpu starts
b) it copies the first page in nand to internal ram
   (nand_spl_code)
c) end executes this code
d) this initialize CPU, RAM, ... and copy itself to RAM
   (this bin must fit in one page, so board_init_f()
    don;t fit in it ... )
e) there it copy u-boot to CONFIG_SYS_NAND_U_BOOT_DST and
   starts this image @ CONFIG_SYS_NAND_U_BOOT_START
f) u-boot code steps through board_init_f() and calculates
   the relocation address and copy itself to it

If TEXT_BASE == relocation address, the copying of u-boot
in f) could be saved.

-------------------------------------------------------------------------------------

ToDo:

- fill in bd_t infos (check)
- adapt all boards

- maybe adapt TEXT_BASE (this must be checked from board maintainers)
  This *must* be done for boards, which boot from NOR flash

  on other boards if TEXT_BASE = relocation baseaddr, this saves
  one copying from u-boot code.

- new function dram_init_banksize() is actual board specific. Maybe
  we make a weak default function in arch/arm/lib/board.c ?

-------------------------------------------------------------------------------------

Relocation with NAND_SPL (example for the tx25):

- cpu copies the first page from NAND to 0xbb000000 (IMX_NFC_BASE)
  and start with code execution on this address.

- The First page contains u-boot code from u-boot:nand_spl/nand_boot_fsl_nfc.c
  which inits the dram, cpu registers, reloacte itself to TEXT_BASE  and loads
  the "real" u-boot to CONFIG_SYS_NAND_U_BOOT_DST and starts execution
  @CONFIG_SYS_NAND_U_BOOT_START

- This u-boot does no ram int, nor cpu register setup. Just looks
  where it have to relocate and relocate itself to this address.
  If relocate address = TEXT_BASE(not the same, as the TEXT_BASE
  from the nand_spl code), no need to copy, just go on with bss clear
  and jump to board_init_r.

-------------------------------------------------------------------------------------

Relocation:
How to translate flash addresses in GOT to ram addresses.
This is automagically done from code, but this example
shows, how this magic code works ;-)
(example on the qong board)

Find a variable:

a) search it in System.map
(for example flash_info)

a005b4c0 B BootpID
a005b4c4 B BootpTry
a005b4c8 b slave
a005b4cc B flash_info
^^^^^^^^
a005c908 b saved_sector.4002
a005c910 b cfi_mtd_info
a005c9c0 b cfi_mtd_names
a005c9d0 B mtd_table

---------------------------------------

b) create hexdump from u-boot code:

hexdump -C u-boot > gnlmpfhex

---------------------------------------

c) search the variables address in the hexdump


*
0005fc80  00 00 00 00 00 00 00 00  2c 06 01 a0 18 cd 05 a0  |........,.......|
0005fc90  9c d4 05 a0 bc b4 05 a0  1c 7f 05 a0 f0 05 01 a0  |................|
0005fca0  08 5a 04 a0 1c ab 05 a0  ec a4 05 a0 98 c3 01 a0  |.Z..............|
0005fcb0  a0 d6 05 a0 04 71 05 a0  c0 f9 00 a0 3c cd 05 a0  |.....q......<...|
0005fcc0  cc b4 05 a0 f0 fa 00 a0  f0 d6 05 a0 10 86 05 a0  |................|
          ^^^^^^^^^^^
0005fcd0  a4 16 06 a0 dc 64 05 a0  18 86 05 a0 52 48 05 a0  |.....d......RH..|
0005fce0  c0 86 05 a0 24 6e 02 a0  b4 6c 05 a0 b0 94 01 a0  |....$n...l......|
0005fcf0  1c 86 05 a0 50 85 05 a0  d4 0c 06 a0 bc 0b 06 a0  |....P...........|


-> 0005fcc0

----------------------------------------

d) know we calculate this address in RAM


  8ff08000	(new address of code in RAM *1)

+ 0005fcc0

- 00008000	(offset of text *2)

----------

  8ff5fcc0	-> Addr GOT in RAM

*1:
activate debug and look for the line:
Now running in RAM - U-Boot at: 8ff08000
                                ^^^^^^^^
                                new address of u-boot code in RAM

*2:
Section Headers:
  [Nr] Name              Type            Addr     Off    Size   ES Flg Lk Inf Al
  [ 0]                   NULL            00000000 000000 000000 00      0   0  0
  [ 1] .text             PROGBITS        a0000000 008000 04599c 00  AX  0   0 32
                                                  ^^^^^^
                                                  Offset of text

----------------------------------------

e) now we look in 8ff5fcc0 (RAM)


QongEVB>md 0x8ff5fcc0
8ff5fcc0 : a005b4cc a000faf0 a005d6f0 a0058610  ................
           ^^^^^^^^
           Bingo, here we have the old flash address (when relocation
           is working, here is the fixed ram address. see @ f, how
           it gets calculated)


----------------------------------------

f) now translate it in the new RAM address

  a005b4cc

- a0000000     TextBase

+ 8ff08000     new address of u-boot in ram
----------
  8ff634cc

QongEVB>mm 0x8ff5fcc0 0x8ff634cc 1
QongEVB>md 0x8ff5fcc0
8ff5fcc0 : 8ff634cc a000faf0 a005d6f0 a0058610  .4..............
8ff5fcd0 : a00616a4 a00564dc a0058618 a0054852  .....d......RH..

As this must be done for all address in the GOT, the u-boot
code did this automagically ... :-)

----------------------------------------------

g) check if the new address is really in the bss section:

bss start:
8ff6054c	(8ff08000 + 0005854C monitorlen)

bss end:
8ff698ac	(8ff08000 + 618AC)

8ff634cc is in bss :-)

----------------------------------------------

h) u-boot prints:

important  addresses:

U-Boot code: A0000000 -> A005854C  BSS: -> A00618AC	TextBase 0xa0000000
Now running in RAM - U-Boot at: 8ff08000		relocBase 0x8ff08000


---------

U-Boot 2010.06-rc2-00002-gf8fbb25-dirty (Jun 18 2010 - 17:07:19)

U-Boot code: A0000000 -> A005854C  BSS: -> A00618AC
CPU:   Freescale i.MX31 at 398 MHz
Board: DAVE/DENX Qong
mon: FFFFFFFF gd->monLen: 000618AC
Top of RAM usable for U-Boot at: 90000000
LCD panel info: 640 x 480, 16 bit/pix
Reserving 600k for LCD Framebuffer at: 8ff6a000
Reserving 390k for U-Boot at: 8ff08000
Reserving 1280k for malloc() at: 8fdc8000
Reserving 28 Bytes for Board Info at: 8fdc7fe4
Reserving 48 Bytes for Global Data at: 8fdc7fb4
New Stack Pointer is: 8fdc7fb0
RAM Configuration:
Bank #0: 80000000 256 MiB
mon: 0005854C gd->monLen: 000618AC
Now running in RAM - U-Boot at: 8ff08000

-------------------------------------------------------------------------------------

Debugging u-boot in RAM:
(example on the qong board)

a) add in config.mk:

PLATFORM_CPPFLAGS += -DDEBUG

-----------------

b) start debugger

arm-linux-gdb u-boot

[hs@pollux u-boot]$ arm-linux-gdb u-boot
GNU gdb Red Hat Linux (6.7-2rh)
Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-linux".
The target architecture is set automatically (currently arm)
..
(gdb)

-----------------

c) connect to target

target remote bdi10:2001

(gdb) target remote bdi10:2001
Remote debugging using bdi10:2001
0x8ff17f10 in ?? ()
(gdb)

-----------------

d) discard symbol-file

(gdb) symbol-file
Discard symbol table from `/home/hs/celf/u-boot/u-boot'? (y or n) y
No symbol file now.
(gdb)

-----------------

e) load new symbol table:

(gdb) add-symbol-file u-boot 0x8ff08000
add symbol table from file "u-boot" at
        .text_addr = 0x8ff08000
(y or n) y
Reading symbols from /home/hs/celf/u-boot/u-boot...done.
(gdb) c
Continuing.
^C
Program received signal SIGSTOP, Stopped (signal).
0x8ff17f18 in serial_getc () at serial_mxc.c:192
192             while (__REG(UART_PHYS + UTS) & UTS_RXEMPTY);
(gdb)

add-symbol-file u-boot 0x8ff08000
                       ^^^^^^^^^^
                       get this address from u-boot debug printfs

U-Boot 2010.06-rc2-00009-gf77b8b8-dirty (Jun 22 2010 - 09:43:46)

U-Boot code: A0000000 -> A0058BAC  BSS: -> A0061F10
CPU:   Freescale i.MX31 at 398 MHz
Board: DAVE/DENX Qong
mon: FFFFFFFF gd->monLen: 00061F10
Top of RAM usable for U-Boot at: 90000000
LCD panel info: 640 x 480, 16 bit/pix
Reserving 600k for LCD Framebuffer at: 8ff6a000
Reserving 391k for U-Boot at: 8ff08000
                              ^^^^^^^^
Reserving 1280k for malloc() at: 8fdc8000
Reserving 24 Bytes for Board Info at: 8fdc7fe8
Reserving 52 Bytes for Global Data at: 8fdc7fb4
New Stack Pointer is: 8fdc7fb0
RAM Configuration:
Bank #0: 80000000 256 MiB
relocation Offset is: eff08000
mon: 00058BAC gd->monLen: 00061F10
Now running in RAM - U-Boot at: 8ff08000
                                ^^^^^^^^

Now you can use gdb as usual :-)