blob: beebc9951c5fe2ea48927214c142e38e915fa175 [file] [log] [blame]
Eran Libertyf046ccd2005-07-28 10:08:46 -05001/*
2 * Copyright (C) 1998 Dan Malek <dmalek@jlc.net>
3 * Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se>
4 * Copyright (C) 2000, 2001,2002 Wolfgang Denk <wd@denx.de>
Scott Woode4c09502008-06-30 14:13:28 -05005 * Copyright Freescale Semiconductor, Inc. 2004, 2006, 2008.
Eran Libertyf046ccd2005-07-28 10:08:46 -05006 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26/*
27 * U-Boot - Startup Code for MPC83xx PowerPC based Embedded Boards
28 */
29
30#include <config.h>
Jon Loeligerde1d0a62005-08-01 13:20:47 -050031#include <mpc83xx.h>
Peter Tyser561858e2008-11-03 09:30:59 -060032#include <timestamp.h>
Eran Libertyf046ccd2005-07-28 10:08:46 -050033#include <version.h>
34
35#define CONFIG_83XX 1 /* needed for Linux kernel header files*/
36#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
37
38#include <ppc_asm.tmpl>
39#include <ppc_defs.h>
40
41#include <asm/cache.h>
42#include <asm/mmu.h>
43
44#ifndef CONFIG_IDENT_STRING
45#define CONFIG_IDENT_STRING "MPC83XX"
46#endif
47
48/* We don't want the MMU yet.
49 */
50#undef MSR_KERNEL
51
52/*
53 * Floating Point enable, Machine Check and Recoverable Interr.
54 */
55#ifdef DEBUG
56#define MSR_KERNEL (MSR_FP|MSR_RI)
57#else
58#define MSR_KERNEL (MSR_FP|MSR_ME|MSR_RI)
59#endif
60
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020061#if !defined(CONFIG_NAND_SPL) && !defined(CONFIG_SYS_RAMBOOT)
62#define CONFIG_SYS_FLASHBOOT
Scott Woode4c09502008-06-30 14:13:28 -050063#endif
64
Eran Libertyf046ccd2005-07-28 10:08:46 -050065/*
66 * Set up GOT: Global Offset Table
67 *
68 * Use r14 to access the GOT
69 */
70 START_GOT
71 GOT_ENTRY(_GOT2_TABLE_)
Scott Woode4c09502008-06-30 14:13:28 -050072 GOT_ENTRY(__bss_start)
73 GOT_ENTRY(_end)
Eran Libertyf046ccd2005-07-28 10:08:46 -050074
Scott Woode4c09502008-06-30 14:13:28 -050075#ifndef CONFIG_NAND_SPL
76 GOT_ENTRY(_FIXUP_TABLE_)
Eran Libertyf046ccd2005-07-28 10:08:46 -050077 GOT_ENTRY(_start)
78 GOT_ENTRY(_start_of_vectors)
79 GOT_ENTRY(_end_of_vectors)
80 GOT_ENTRY(transfer_to_handler)
Scott Woode4c09502008-06-30 14:13:28 -050081#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -050082 END_GOT
83
84/*
Jerry Van Barenf35f3582006-12-06 21:23:55 -050085 * The Hard Reset Configuration Word (HRCW) table is in the first 64
86 * (0x40) bytes of flash. It has 8 bytes, but each byte is repeated 8
87 * times so the processor can fetch it out of flash whether the flash
88 * is 8, 16, 32, or 64 bits wide (hardware trickery).
Eran Libertyf046ccd2005-07-28 10:08:46 -050089 */
Eran Libertyf046ccd2005-07-28 10:08:46 -050090 .text
91#define _HRCW_TABLE_ENTRY(w) \
92 .fill 8,1,(((w)>>24)&0xff); \
93 .fill 8,1,(((w)>>16)&0xff); \
94 .fill 8,1,(((w)>> 8)&0xff); \
95 .fill 8,1,(((w) )&0xff)
96
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020097 _HRCW_TABLE_ENTRY(CONFIG_SYS_HRCW_LOW)
98 _HRCW_TABLE_ENTRY(CONFIG_SYS_HRCW_HIGH)
Eran Libertyf046ccd2005-07-28 10:08:46 -050099
Jerry Van Barenf35f3582006-12-06 21:23:55 -0500100/*
101 * Magic number and version string - put it after the HRCW since it
102 * cannot be first in flash like it is in many other processors.
103 */
104 .long 0x27051956 /* U-Boot Magic Number */
105
106 .globl version_string
107version_string:
108 .ascii U_BOOT_VERSION
Peter Tyser561858e2008-11-03 09:30:59 -0600109 .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
Jerry Van Barenf35f3582006-12-06 21:23:55 -0500110 .ascii " ", CONFIG_IDENT_STRING, "\0"
111
Ron Madrid455a4692008-12-12 13:12:45 -0800112 .align 2
113
114 .globl enable_addr_trans
115enable_addr_trans:
116 /* enable address translation */
117 mfmsr r5
118 ori r5, r5, (MSR_IR | MSR_DR)
119 mtmsr r5
120 isync
121 blr
122
123 .globl disable_addr_trans
124disable_addr_trans:
125 /* disable address translation */
126 mflr r4
127 mfmsr r3
128 andi. r0, r3, (MSR_IR | MSR_DR)
129 beqlr
130 andc r3, r3, r0
131 mtspr SRR0, r4
132 mtspr SRR1, r3
133 rfi
134
135 .globl get_pvr
136get_pvr:
137 mfspr r3, PVR
138 blr
139
140 .globl ppcDWstore
141ppcDWstore:
142 lfd 1, 0(r4)
143 stfd 1, 0(r3)
144 blr
145
146 .globl ppcDWload
147ppcDWload:
148 lfd 1, 0(r3)
149 stfd 1, 0(r4)
150 blr
Eran Libertyf046ccd2005-07-28 10:08:46 -0500151
Eran Libertyf046ccd2005-07-28 10:08:46 -0500152#ifndef CONFIG_DEFAULT_IMMR
153#error CONFIG_DEFAULT_IMMR must be defined
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154#endif /* CONFIG_SYS_DEFAULT_IMMR */
155#ifndef CONFIG_SYS_IMMR
156#define CONFIG_SYS_IMMR CONFIG_DEFAULT_IMMR
157#endif /* CONFIG_SYS_IMMR */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500158
159/*
160 * After configuration, a system reset exception is executed using the
161 * vector at offset 0x100 relative to the base set by MSR[IP]. If
162 * MSR[IP] is 0, the base address is 0x00000000. If MSR[IP] is 1, the
163 * base address is 0xfff00000. In the case of a Power On Reset or Hard
164 * Reset, the value of MSR[IP] is determined by the CIP field in the
165 * HRCW.
166 *
167 * Other bits in the HRCW set up the Base Address and Port Size in BR0.
168 * This determines the location of the boot ROM (flash or EPROM) in the
169 * processor's address space at boot time. As long as the HRCW is set up
170 * so that we eventually end up executing the code below when the
171 * processor executes the reset exception, the actual values used should
172 * not matter.
173 *
174 * Once we have got here, the address mask in OR0 is cleared so that the
175 * bottom 32K of the boot ROM is effectively repeated all throughout the
176 * processor's address space, after which we can jump to the absolute
177 * address at which the boot ROM was linked at compile time, and proceed
178 * to initialise the memory controller without worrying if the rug will
179 * be pulled out from under us, so to speak (it will be fine as long as
180 * we configure BR0 with the same boot ROM link address).
181 */
182 . = EXC_OFF_SYS_RESET
183
184 .globl _start
185_start: /* time t 0 */
186 li r21, BOOTFLAG_COLD /* Normal Power-On: Boot from FLASH*/
187 nop
188 b boot_cold
189
190 . = EXC_OFF_SYS_RESET + 0x10
191
192 .globl _start_warm
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500193_start_warm:
Eran Libertyf046ccd2005-07-28 10:08:46 -0500194 li r21, BOOTFLAG_WARM /* Software reboot */
195 b boot_warm
196
197
198boot_cold: /* time t 3 */
199 lis r4, CONFIG_DEFAULT_IMMR@h
200 nop
201boot_warm: /* time t 5 */
202 mfmsr r5 /* save msr contents */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200203 lis r3, CONFIG_SYS_IMMR@h
204 ori r3, r3, CONFIG_SYS_IMMR@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500205 stw r3, IMMRBAR(r4)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500206
Eran Libertyf046ccd2005-07-28 10:08:46 -0500207 /* Initialise the E300 processor core */
208 /*------------------------------------------*/
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500209
Lepcha Suchitfa7b1c02008-10-16 13:38:00 -0500210#ifdef CONFIG_NAND_SPL
211 /* The FCM begins execution after only the first page
212 * is loaded. Wait for the rest before branching
213 * to another flash page.
214 */
215 addi r7, r3, 0x50b0
2161: dcbi 0, r7
217 lwz r6, 0(r7)
218 andi. r6, r6, 1
219 beq 1b
220#endif
221
Eran Libertyf046ccd2005-07-28 10:08:46 -0500222 bl init_e300_core
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500223
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200224#ifdef CONFIG_SYS_FLASHBOOT
Eran Libertyf046ccd2005-07-28 10:08:46 -0500225
226 /* Inflate flash location so it appears everywhere, calculate */
227 /* the absolute address in final location of the FLASH, jump */
228 /* there and deflate the flash size back to minimal size */
229 /*------------------------------------------------------------*/
230 bl map_flash_by_law1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231 lis r4, (CONFIG_SYS_MONITOR_BASE)@h
232 ori r4, r4, (CONFIG_SYS_MONITOR_BASE)@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500233 addi r5, r4, in_flash - _start + EXC_OFF_SYS_RESET
234 mtlr r5
235 blr
236in_flash:
237#if 1 /* Remapping flash with LAW0. */
238 bl remap_flash_by_law0
239#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200240#endif /* CONFIG_SYS_FLASHBOOT */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500241
Kumar Gala2688e2f2006-02-10 15:40:06 -0600242 /* setup the bats */
243 bl setup_bats
244 sync
245
246 /*
247 * Cache must be enabled here for stack-in-cache trick.
248 * This means we need to enable the BATS.
249 * This means:
250 * 1) for the EVB, original gt regs need to be mapped
251 * 2) need to have an IBAT for the 0xf region,
252 * we are running there!
253 * Cache should be turned on after BATs, since by default
254 * everything is write-through.
255 * The init-mem BAT can be reused after reloc. The old
256 * gt-regs BAT can be reused after board_init_f calls
257 * board_early_init_f (EVB only).
258 */
259 /* enable address translation */
260 bl enable_addr_trans
261 sync
262
Nick Spence6eb2a442008-08-28 14:09:25 -0700263 /* enable the data cache */
Kumar Gala2688e2f2006-02-10 15:40:06 -0600264 bl dcache_enable
265 sync
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200266#ifdef CONFIG_SYS_INIT_RAM_LOCK
Kumar Gala2688e2f2006-02-10 15:40:06 -0600267 bl lock_ram_in_cache
268 sync
269#endif
270
271 /* set up the stack pointer in our newly created
272 * cache-ram (r1) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200273 lis r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)@h
274 ori r1, r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)@l
Kumar Gala2688e2f2006-02-10 15:40:06 -0600275
276 li r0, 0 /* Make room for stack frame header and */
277 stwu r0, -4(r1) /* clear final stack frame so that */
278 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
279
Eran Libertyf046ccd2005-07-28 10:08:46 -0500280
281 /* let the C-code set up the rest */
Kumar Gala2688e2f2006-02-10 15:40:06 -0600282 /* */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500283 /* Be careful to keep code relocatable & stack humble */
284 /*------------------------------------------------------*/
285
286 GET_GOT /* initialize GOT access */
287
288 /* r3: IMMR */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200289 lis r3, CONFIG_SYS_IMMR@h
Eran Libertyf046ccd2005-07-28 10:08:46 -0500290 /* run low-level CPU init code (in Flash)*/
291 bl cpu_init_f
292
293 /* r3: BOOTFLAG */
294 mr r3, r21
295 /* run 1st part of board init code (in Flash)*/
296 bl board_init_f
297
Scott Woode4c09502008-06-30 14:13:28 -0500298#ifndef CONFIG_NAND_SPL
Eran Libertyf046ccd2005-07-28 10:08:46 -0500299/*
300 * Vector Table
301 */
302
303 .globl _start_of_vectors
304_start_of_vectors:
305
306/* Machine check */
307 STD_EXCEPTION(0x200, MachineCheck, MachineCheckException)
308
309/* Data Storage exception. */
310 STD_EXCEPTION(0x300, DataStorage, UnknownException)
311
312/* Instruction Storage exception. */
313 STD_EXCEPTION(0x400, InstStorage, UnknownException)
314
315/* External Interrupt exception. */
316#ifndef FIXME
317 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500318#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500319
320/* Alignment exception. */
321 . = 0x600
322Alignment:
Rafal Jaworowski02032e82007-06-22 14:58:04 +0200323 EXCEPTION_PROLOG(SRR0, SRR1)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500324 mfspr r4,DAR
325 stw r4,_DAR(r21)
326 mfspr r5,DSISR
327 stw r5,_DSISR(r21)
328 addi r3,r1,STACK_FRAME_OVERHEAD
329 li r20,MSR_KERNEL
330 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
331 rlwimi r20,r23,0,25,25 /* copy IP bit from saved MSR */
332 lwz r6,GOT(transfer_to_handler)
333 mtlr r6
334 blrl
335.L_Alignment:
336 .long AlignmentException - _start + EXC_OFF_SYS_RESET
337 .long int_return - _start + EXC_OFF_SYS_RESET
338
339/* Program check exception */
340 . = 0x700
341ProgramCheck:
Rafal Jaworowski02032e82007-06-22 14:58:04 +0200342 EXCEPTION_PROLOG(SRR0, SRR1)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500343 addi r3,r1,STACK_FRAME_OVERHEAD
344 li r20,MSR_KERNEL
345 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
346 rlwimi r20,r23,0,25,25 /* copy IP bit from saved MSR */
347 lwz r6,GOT(transfer_to_handler)
348 mtlr r6
349 blrl
350.L_ProgramCheck:
351 .long ProgramCheckException - _start + EXC_OFF_SYS_RESET
352 .long int_return - _start + EXC_OFF_SYS_RESET
353
354 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
355
356 /* I guess we could implement decrementer, and may have
357 * to someday for timekeeping.
358 */
359 STD_EXCEPTION(0x900, Decrementer, timer_interrupt)
360
361 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
362 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
363 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
364 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
365
366 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
367 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
368
369 STD_EXCEPTION(0x1000, InstructionTLBMiss, UnknownException)
370 STD_EXCEPTION(0x1100, DataLoadTLBMiss, UnknownException)
371 STD_EXCEPTION(0x1200, DataStoreTLBMiss, UnknownException)
372#ifdef DEBUG
373 . = 0x1300
374 /*
375 * This exception occurs when the program counter matches the
376 * Instruction Address Breakpoint Register (IABR).
377 *
378 * I want the cpu to halt if this occurs so I can hunt around
379 * with the debugger and look at things.
380 *
381 * When DEBUG is defined, both machine check enable (in the MSR)
382 * and checkstop reset enable (in the reset mode register) are
383 * turned off and so a checkstop condition will result in the cpu
384 * halting.
385 *
386 * I force the cpu into a checkstop condition by putting an illegal
387 * instruction here (at least this is the theory).
388 *
389 * well - that didnt work, so just do an infinite loop!
390 */
3911: b 1b
392#else
393 STD_EXCEPTION(0x1300, InstructionBreakpoint, DebugException)
394#endif
395 STD_EXCEPTION(0x1400, SMI, UnknownException)
396
397 STD_EXCEPTION(0x1500, Trap_15, UnknownException)
398 STD_EXCEPTION(0x1600, Trap_16, UnknownException)
399 STD_EXCEPTION(0x1700, Trap_17, UnknownException)
400 STD_EXCEPTION(0x1800, Trap_18, UnknownException)
401 STD_EXCEPTION(0x1900, Trap_19, UnknownException)
402 STD_EXCEPTION(0x1a00, Trap_1a, UnknownException)
403 STD_EXCEPTION(0x1b00, Trap_1b, UnknownException)
404 STD_EXCEPTION(0x1c00, Trap_1c, UnknownException)
405 STD_EXCEPTION(0x1d00, Trap_1d, UnknownException)
406 STD_EXCEPTION(0x1e00, Trap_1e, UnknownException)
407 STD_EXCEPTION(0x1f00, Trap_1f, UnknownException)
408 STD_EXCEPTION(0x2000, Trap_20, UnknownException)
409 STD_EXCEPTION(0x2100, Trap_21, UnknownException)
410 STD_EXCEPTION(0x2200, Trap_22, UnknownException)
411 STD_EXCEPTION(0x2300, Trap_23, UnknownException)
412 STD_EXCEPTION(0x2400, Trap_24, UnknownException)
413 STD_EXCEPTION(0x2500, Trap_25, UnknownException)
414 STD_EXCEPTION(0x2600, Trap_26, UnknownException)
415 STD_EXCEPTION(0x2700, Trap_27, UnknownException)
416 STD_EXCEPTION(0x2800, Trap_28, UnknownException)
417 STD_EXCEPTION(0x2900, Trap_29, UnknownException)
418 STD_EXCEPTION(0x2a00, Trap_2a, UnknownException)
419 STD_EXCEPTION(0x2b00, Trap_2b, UnknownException)
420 STD_EXCEPTION(0x2c00, Trap_2c, UnknownException)
421 STD_EXCEPTION(0x2d00, Trap_2d, UnknownException)
422 STD_EXCEPTION(0x2e00, Trap_2e, UnknownException)
423 STD_EXCEPTION(0x2f00, Trap_2f, UnknownException)
424
425
426 .globl _end_of_vectors
427_end_of_vectors:
428
429 . = 0x3000
430
431/*
432 * This code finishes saving the registers to the exception frame
433 * and jumps to the appropriate handler for the exception.
434 * Register r21 is pointer into trap frame, r1 has new stack pointer.
435 */
436 .globl transfer_to_handler
437transfer_to_handler:
438 stw r22,_NIP(r21)
439 lis r22,MSR_POW@h
440 andc r23,r23,r22
441 stw r23,_MSR(r21)
442 SAVE_GPR(7, r21)
443 SAVE_4GPRS(8, r21)
444 SAVE_8GPRS(12, r21)
445 SAVE_8GPRS(24, r21)
446 mflr r23
447 andi. r24,r23,0x3f00 /* get vector offset */
448 stw r24,TRAP(r21)
449 li r22,0
450 stw r22,RESULT(r21)
451 lwz r24,0(r23) /* virtual address of handler */
452 lwz r23,4(r23) /* where to go when done */
453 mtspr SRR0,r24
454 mtspr SRR1,r20
455 mtlr r23
456 SYNC
457 rfi /* jump to handler, enable MMU */
458
459int_return:
460 mfmsr r28 /* Disable interrupts */
461 li r4,0
462 ori r4,r4,MSR_EE
463 andc r28,r28,r4
464 SYNC /* Some chip revs need this... */
465 mtmsr r28
466 SYNC
467 lwz r2,_CTR(r1)
468 lwz r0,_LINK(r1)
469 mtctr r2
470 mtlr r0
471 lwz r2,_XER(r1)
472 lwz r0,_CCR(r1)
473 mtspr XER,r2
474 mtcrf 0xFF,r0
475 REST_10GPRS(3, r1)
476 REST_10GPRS(13, r1)
477 REST_8GPRS(23, r1)
478 REST_GPR(31, r1)
479 lwz r2,_NIP(r1) /* Restore environment */
480 lwz r0,_MSR(r1)
481 mtspr SRR0,r2
482 mtspr SRR1,r0
483 lwz r0,GPR0(r1)
484 lwz r2,GPR2(r1)
485 lwz r1,GPR1(r1)
486 SYNC
487 rfi
Scott Woode4c09502008-06-30 14:13:28 -0500488#endif /* !CONFIG_NAND_SPL */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500489
490/*
491 * This code initialises the E300 processor core
492 * (conforms to PowerPC 603e spec)
493 * Note: expects original MSR contents to be in r5.
494 */
495 .globl init_e300_core
496init_e300_core: /* time t 10 */
497 /* Initialize machine status; enable machine check interrupt */
498 /*-----------------------------------------------------------*/
499
500 li r3, MSR_KERNEL /* Set ME and RI flags */
501 rlwimi r3, r5, 0, 25, 25 /* preserve IP bit set by HRCW */
502#ifdef DEBUG
503 rlwimi r3, r5, 0, 21, 22 /* debugger might set SE & BE bits */
504#endif
505 SYNC /* Some chip revs need this... */
506 mtmsr r3
507 SYNC
508 mtspr SRR1, r3 /* Make SRR1 match MSR */
509
510
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200511 lis r3, CONFIG_SYS_IMMR@h
Eran Libertyf046ccd2005-07-28 10:08:46 -0500512#if defined(CONFIG_WATCHDOG)
513 /* Initialise the Wathcdog values and reset it (if req) */
514 /*------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200515 lis r4, CONFIG_SYS_WATCHDOG_VALUE
Eran Libertyf046ccd2005-07-28 10:08:46 -0500516 ori r4, r4, (SWCRR_SWEN | SWCRR_SWRI | SWCRR_SWPR)
517 stw r4, SWCRR(r3)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500518
Eran Libertyf046ccd2005-07-28 10:08:46 -0500519 /* and reset it */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500520
Eran Libertyf046ccd2005-07-28 10:08:46 -0500521 li r4, 0x556C
522 sth r4, SWSRR@l(r3)
Heiko Schocherf6db9452008-01-11 15:15:17 +0100523 li r4, -0x55C7
Eran Libertyf046ccd2005-07-28 10:08:46 -0500524 sth r4, SWSRR@l(r3)
525#else
526 /* Disable Wathcdog */
527 /*-------------------*/
Kumar Galaec00c332006-01-11 11:23:01 -0600528 lwz r4, SWCRR(r3)
529 /* Check to see if its enabled for disabling
530 once disabled by SW you can't re-enable */
531 andi. r4, r4, 0x4
532 beq 1f
Eran Libertyf046ccd2005-07-28 10:08:46 -0500533 xor r4, r4, r4
534 stw r4, SWCRR(r3)
Kumar Galaec00c332006-01-11 11:23:01 -06005351:
Eran Libertyf046ccd2005-07-28 10:08:46 -0500536#endif /* CONFIG_WATCHDOG */
537
Nick Spence46497052008-08-28 14:09:19 -0700538#if defined(CONFIG_MASK_AER_AO)
539 /* Write the Arbiter Event Enable to mask Address Only traps. */
540 /* This prevents the dcbz instruction from being trapped when */
541 /* HID0_ABE Address Broadcast Enable is set and the MEMORY */
542 /* COHERENCY bit is set in the WIMG bits, which is often */
543 /* needed for PCI operation. */
544 lwz r4, 0x0808(r3)
545 rlwinm r0, r4, 0, ~AER_AO
546 stw r0, 0x0808(r3)
547#endif /* CONFIG_MASK_AER_AO */
548
Eran Libertyf046ccd2005-07-28 10:08:46 -0500549 /* Initialize the Hardware Implementation-dependent Registers */
550 /* HID0 also contains cache control */
Nick Spence6eb2a442008-08-28 14:09:25 -0700551 /* - force invalidation of data and instruction caches */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500552 /*------------------------------------------------------*/
553
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200554 lis r3, CONFIG_SYS_HID0_INIT@h
555 ori r3, r3, (CONFIG_SYS_HID0_INIT | HID0_ICFI | HID0_DCFI)@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500556 SYNC
557 mtspr HID0, r3
558
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200559 lis r3, CONFIG_SYS_HID0_FINAL@h
560 ori r3, r3, (CONFIG_SYS_HID0_FINAL & ~(HID0_ICFI | HID0_DCFI))@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500561 SYNC
562 mtspr HID0, r3
563
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200564 lis r3, CONFIG_SYS_HID2@h
565 ori r3, r3, CONFIG_SYS_HID2@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500566 SYNC
567 mtspr HID2, r3
568
Scott Woode4c09502008-06-30 14:13:28 -0500569 /* Done! */
570 /*------------------------------*/
571 blr
Eran Libertyf046ccd2005-07-28 10:08:46 -0500572
Scott Woode4c09502008-06-30 14:13:28 -0500573 /* setup_bats - set them up to some initial state */
574 .globl setup_bats
575setup_bats:
576 addis r0, r0, 0x0000
577
578 /* IBAT 0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200579 addis r4, r0, CONFIG_SYS_IBAT0L@h
580 ori r4, r4, CONFIG_SYS_IBAT0L@l
581 addis r3, r0, CONFIG_SYS_IBAT0U@h
582 ori r3, r3, CONFIG_SYS_IBAT0U@l
Scott Woode4c09502008-06-30 14:13:28 -0500583 mtspr IBAT0L, r4
584 mtspr IBAT0U, r3
585
586 /* DBAT 0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200587 addis r4, r0, CONFIG_SYS_DBAT0L@h
588 ori r4, r4, CONFIG_SYS_DBAT0L@l
589 addis r3, r0, CONFIG_SYS_DBAT0U@h
590 ori r3, r3, CONFIG_SYS_DBAT0U@l
Scott Woode4c09502008-06-30 14:13:28 -0500591 mtspr DBAT0L, r4
592 mtspr DBAT0U, r3
593
594 /* IBAT 1 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200595 addis r4, r0, CONFIG_SYS_IBAT1L@h
596 ori r4, r4, CONFIG_SYS_IBAT1L@l
597 addis r3, r0, CONFIG_SYS_IBAT1U@h
598 ori r3, r3, CONFIG_SYS_IBAT1U@l
Scott Woode4c09502008-06-30 14:13:28 -0500599 mtspr IBAT1L, r4
600 mtspr IBAT1U, r3
601
602 /* DBAT 1 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200603 addis r4, r0, CONFIG_SYS_DBAT1L@h
604 ori r4, r4, CONFIG_SYS_DBAT1L@l
605 addis r3, r0, CONFIG_SYS_DBAT1U@h
606 ori r3, r3, CONFIG_SYS_DBAT1U@l
Scott Woode4c09502008-06-30 14:13:28 -0500607 mtspr DBAT1L, r4
608 mtspr DBAT1U, r3
609
610 /* IBAT 2 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200611 addis r4, r0, CONFIG_SYS_IBAT2L@h
612 ori r4, r4, CONFIG_SYS_IBAT2L@l
613 addis r3, r0, CONFIG_SYS_IBAT2U@h
614 ori r3, r3, CONFIG_SYS_IBAT2U@l
Scott Woode4c09502008-06-30 14:13:28 -0500615 mtspr IBAT2L, r4
616 mtspr IBAT2U, r3
617
618 /* DBAT 2 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200619 addis r4, r0, CONFIG_SYS_DBAT2L@h
620 ori r4, r4, CONFIG_SYS_DBAT2L@l
621 addis r3, r0, CONFIG_SYS_DBAT2U@h
622 ori r3, r3, CONFIG_SYS_DBAT2U@l
Scott Woode4c09502008-06-30 14:13:28 -0500623 mtspr DBAT2L, r4
624 mtspr DBAT2U, r3
625
626 /* IBAT 3 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200627 addis r4, r0, CONFIG_SYS_IBAT3L@h
628 ori r4, r4, CONFIG_SYS_IBAT3L@l
629 addis r3, r0, CONFIG_SYS_IBAT3U@h
630 ori r3, r3, CONFIG_SYS_IBAT3U@l
Scott Woode4c09502008-06-30 14:13:28 -0500631 mtspr IBAT3L, r4
632 mtspr IBAT3U, r3
633
634 /* DBAT 3 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200635 addis r4, r0, CONFIG_SYS_DBAT3L@h
636 ori r4, r4, CONFIG_SYS_DBAT3L@l
637 addis r3, r0, CONFIG_SYS_DBAT3U@h
638 ori r3, r3, CONFIG_SYS_DBAT3U@l
Scott Woode4c09502008-06-30 14:13:28 -0500639 mtspr DBAT3L, r4
640 mtspr DBAT3U, r3
641
642#ifdef CONFIG_HIGH_BATS
643 /* IBAT 4 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200644 addis r4, r0, CONFIG_SYS_IBAT4L@h
645 ori r4, r4, CONFIG_SYS_IBAT4L@l
646 addis r3, r0, CONFIG_SYS_IBAT4U@h
647 ori r3, r3, CONFIG_SYS_IBAT4U@l
Scott Woode4c09502008-06-30 14:13:28 -0500648 mtspr IBAT4L, r4
649 mtspr IBAT4U, r3
650
651 /* DBAT 4 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200652 addis r4, r0, CONFIG_SYS_DBAT4L@h
653 ori r4, r4, CONFIG_SYS_DBAT4L@l
654 addis r3, r0, CONFIG_SYS_DBAT4U@h
655 ori r3, r3, CONFIG_SYS_DBAT4U@l
Scott Woode4c09502008-06-30 14:13:28 -0500656 mtspr DBAT4L, r4
657 mtspr DBAT4U, r3
658
659 /* IBAT 5 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200660 addis r4, r0, CONFIG_SYS_IBAT5L@h
661 ori r4, r4, CONFIG_SYS_IBAT5L@l
662 addis r3, r0, CONFIG_SYS_IBAT5U@h
663 ori r3, r3, CONFIG_SYS_IBAT5U@l
Scott Woode4c09502008-06-30 14:13:28 -0500664 mtspr IBAT5L, r4
665 mtspr IBAT5U, r3
666
667 /* DBAT 5 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200668 addis r4, r0, CONFIG_SYS_DBAT5L@h
669 ori r4, r4, CONFIG_SYS_DBAT5L@l
670 addis r3, r0, CONFIG_SYS_DBAT5U@h
671 ori r3, r3, CONFIG_SYS_DBAT5U@l
Scott Woode4c09502008-06-30 14:13:28 -0500672 mtspr DBAT5L, r4
673 mtspr DBAT5U, r3
674
675 /* IBAT 6 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200676 addis r4, r0, CONFIG_SYS_IBAT6L@h
677 ori r4, r4, CONFIG_SYS_IBAT6L@l
678 addis r3, r0, CONFIG_SYS_IBAT6U@h
679 ori r3, r3, CONFIG_SYS_IBAT6U@l
Scott Woode4c09502008-06-30 14:13:28 -0500680 mtspr IBAT6L, r4
681 mtspr IBAT6U, r3
682
683 /* DBAT 6 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200684 addis r4, r0, CONFIG_SYS_DBAT6L@h
685 ori r4, r4, CONFIG_SYS_DBAT6L@l
686 addis r3, r0, CONFIG_SYS_DBAT6U@h
687 ori r3, r3, CONFIG_SYS_DBAT6U@l
Scott Woode4c09502008-06-30 14:13:28 -0500688 mtspr DBAT6L, r4
689 mtspr DBAT6U, r3
690
691 /* IBAT 7 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200692 addis r4, r0, CONFIG_SYS_IBAT7L@h
693 ori r4, r4, CONFIG_SYS_IBAT7L@l
694 addis r3, r0, CONFIG_SYS_IBAT7U@h
695 ori r3, r3, CONFIG_SYS_IBAT7U@l
Scott Woode4c09502008-06-30 14:13:28 -0500696 mtspr IBAT7L, r4
697 mtspr IBAT7U, r3
698
699 /* DBAT 7 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200700 addis r4, r0, CONFIG_SYS_DBAT7L@h
701 ori r4, r4, CONFIG_SYS_DBAT7L@l
702 addis r3, r0, CONFIG_SYS_DBAT7U@h
703 ori r3, r3, CONFIG_SYS_DBAT7U@l
Scott Woode4c09502008-06-30 14:13:28 -0500704 mtspr DBAT7L, r4
705 mtspr DBAT7U, r3
706#endif
707
708 isync
Eran Libertyf046ccd2005-07-28 10:08:46 -0500709
710 /* invalidate all tlb's
711 *
712 * From the 603e User Manual: "The 603e provides the ability to
713 * invalidate a TLB entry. The TLB Invalidate Entry (tlbie)
714 * instruction invalidates the TLB entry indexed by the EA, and
715 * operates on both the instruction and data TLBs simultaneously
716 * invalidating four TLB entries (both sets in each TLB). The
717 * index corresponds to bits 15-19 of the EA. To invalidate all
718 * entries within both TLBs, 32 tlbie instructions should be
719 * issued, incrementing this field by one each time."
720 *
721 * "Note that the tlbia instruction is not implemented on the
722 * 603e."
723 *
724 * bits 15-19 correspond to addresses 0x00000000 to 0x0001F000
725 * incrementing by 0x1000 each time. The code below is sort of
726 * based on code in "flush_tlbs" from arch/ppc/kernel/head.S
727 *
728 */
Kumar Gala2688e2f2006-02-10 15:40:06 -0600729 lis r3, 0
730 lis r5, 2
731
7321:
733 tlbie r3
734 addi r3, r3, 0x1000
735 cmp 0, 0, r3, r5
736 blt 1b
737
738 blr
739
Eran Libertyf046ccd2005-07-28 10:08:46 -0500740/* Cache functions.
741 *
742 * Note: requires that all cache bits in
743 * HID0 are in the low half word.
744 */
745 .globl icache_enable
746icache_enable:
747 mfspr r3, HID0
748 ori r3, r3, HID0_ICE
Nick Spence6eb2a442008-08-28 14:09:25 -0700749 li r4, HID0_ICFI|HID0_ILOCK
Eran Libertyf046ccd2005-07-28 10:08:46 -0500750 andc r3, r3, r4
751 ori r4, r3, HID0_ICFI
752 isync
753 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
754 isync
755 mtspr HID0, r3 /* clears invalidate */
756 blr
757
758 .globl icache_disable
759icache_disable:
760 mfspr r3, HID0
761 lis r4, 0
Nick Spence6eb2a442008-08-28 14:09:25 -0700762 ori r4, r4, HID0_ICE|HID0_ICFI|HID0_ILOCK
Eran Libertyf046ccd2005-07-28 10:08:46 -0500763 andc r3, r3, r4
Eran Libertyf046ccd2005-07-28 10:08:46 -0500764 isync
Nick Spence6eb2a442008-08-28 14:09:25 -0700765 mtspr HID0, r3 /* clears invalidate, enable and lock */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500766 blr
767
768 .globl icache_status
769icache_status:
770 mfspr r3, HID0
Marian Balakowicza7c66ad2006-03-14 16:01:25 +0100771 rlwinm r3, r3, (31 - HID0_ICE_SHIFT + 1), 31, 31
Eran Libertyf046ccd2005-07-28 10:08:46 -0500772 blr
773
774 .globl dcache_enable
775dcache_enable:
776 mfspr r3, HID0
Kumar Gala2688e2f2006-02-10 15:40:06 -0600777 li r5, HID0_DCFI|HID0_DLOCK
778 andc r3, r3, r5
Kumar Gala2688e2f2006-02-10 15:40:06 -0600779 ori r3, r3, HID0_DCE
Eran Libertyf046ccd2005-07-28 10:08:46 -0500780 sync
Nick Spence6eb2a442008-08-28 14:09:25 -0700781 mtspr HID0, r3 /* enable, no invalidate */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500782 blr
783
784 .globl dcache_disable
785dcache_disable:
Nick Spence6eb2a442008-08-28 14:09:25 -0700786 mflr r4
787 bl flush_dcache /* uses r3 and r5 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500788 mfspr r3, HID0
Nick Spence6eb2a442008-08-28 14:09:25 -0700789 li r5, HID0_DCE|HID0_DLOCK
790 andc r3, r3, r5
791 ori r5, r3, HID0_DCFI
Eran Libertyf046ccd2005-07-28 10:08:46 -0500792 sync
Nick Spence6eb2a442008-08-28 14:09:25 -0700793 mtspr HID0, r5 /* sets invalidate, clears enable and lock */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500794 sync
795 mtspr HID0, r3 /* clears invalidate */
Nick Spence6eb2a442008-08-28 14:09:25 -0700796 mtlr r4
Eran Libertyf046ccd2005-07-28 10:08:46 -0500797 blr
798
799 .globl dcache_status
800dcache_status:
801 mfspr r3, HID0
Marian Balakowicza7c66ad2006-03-14 16:01:25 +0100802 rlwinm r3, r3, (31 - HID0_DCE_SHIFT + 1), 31, 31
Eran Libertyf046ccd2005-07-28 10:08:46 -0500803 blr
804
Nick Spence6eb2a442008-08-28 14:09:25 -0700805 .globl flush_dcache
806flush_dcache:
807 lis r3, 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200808 lis r5, CONFIG_SYS_CACHELINE_SIZE
Nick Spence6eb2a442008-08-28 14:09:25 -07008091: cmp 0, 1, r3, r5
810 bge 2f
811 lwz r5, 0(r3)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200812 lis r5, CONFIG_SYS_CACHELINE_SIZE
Nick Spence6eb2a442008-08-28 14:09:25 -0700813 addi r3, r3, 0x4
814 b 1b
8152: blr
816
Eran Libertyf046ccd2005-07-28 10:08:46 -0500817/*-------------------------------------------------------------------*/
818
819/*
820 * void relocate_code (addr_sp, gd, addr_moni)
821 *
822 * This "function" does not return, instead it continues in RAM
823 * after relocating the monitor code.
824 *
825 * r3 = dest
826 * r4 = src
827 * r5 = length in bytes
828 * r6 = cachelinesize
829 */
830 .globl relocate_code
831relocate_code:
832 mr r1, r3 /* Set new stack pointer */
833 mr r9, r4 /* Save copy of Global Data pointer */
834 mr r10, r5 /* Save copy of Destination Address */
835
836 mr r3, r5 /* Destination Address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200837 lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
838 ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
Scott Woode4c09502008-06-30 14:13:28 -0500839 lwz r5, GOT(__bss_start)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500840 sub r5, r5, r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200841 li r6, CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500842
843 /*
844 * Fix GOT pointer:
845 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200846 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500847 * + Destination Address
848 *
849 * Offset:
850 */
851 sub r15, r10, r4
852
853 /* First our own GOT */
854 add r14, r14, r15
855 /* then the one used by the C code */
856 add r30, r30, r15
857
858 /*
859 * Now relocate code
860 */
861
862 cmplw cr1,r3,r4
863 addi r0,r5,3
864 srwi. r0,r0,2
865 beq cr1,4f /* In place copy is not necessary */
866 beq 7f /* Protect against 0 count */
867 mtctr r0
868 bge cr1,2f
869 la r8,-4(r4)
870 la r7,-4(r3)
871
872 /* copy */
8731: lwzu r0,4(r8)
874 stwu r0,4(r7)
875 bdnz 1b
876
877 addi r0,r5,3
878 srwi. r0,r0,2
879 mtctr r0
880 la r8,-4(r4)
881 la r7,-4(r3)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500882
883 /* and compare */
Eran Libertyf046ccd2005-07-28 10:08:46 -050088420: lwzu r20,4(r8)
885 lwzu r21,4(r7)
886 xor. r22, r20, r21
887 bne 30f
888 bdnz 20b
889 b 4f
890
891 /* compare failed */
89230: li r3, 0
893 blr
894
8952: slwi r0,r0,2 /* re copy in reverse order ... y do we needed it? */
896 add r8,r4,r0
897 add r7,r3,r0
8983: lwzu r0,-4(r8)
899 stwu r0,-4(r7)
900 bdnz 3b
Eran Libertyf046ccd2005-07-28 10:08:46 -0500901
902/*
903 * Now flush the cache: note that we must start from a cache aligned
904 * address. Otherwise we might miss one cache line.
905 */
Kumar Gala2688e2f2006-02-10 15:40:06 -06009064: cmpwi r6,0
Eran Libertyf046ccd2005-07-28 10:08:46 -0500907 add r5,r3,r5
Kumar Gala2688e2f2006-02-10 15:40:06 -0600908 beq 7f /* Always flush prefetch queue in any case */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500909 subi r0,r6,1
910 andc r3,r3,r0
Eran Libertyf046ccd2005-07-28 10:08:46 -0500911 mr r4,r3
9125: dcbst 0,r4
913 add r4,r4,r6
914 cmplw r4,r5
915 blt 5b
Kumar Gala2688e2f2006-02-10 15:40:06 -0600916 sync /* Wait for all dcbst to complete on bus */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500917 mr r4,r3
9186: icbi 0,r4
919 add r4,r4,r6
920 cmplw r4,r5
921 blt 6b
Kumar Gala2688e2f2006-02-10 15:40:06 -06009227: sync /* Wait for all icbi to complete on bus */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500923 isync
924
925/*
926 * We are done. Do not return, instead branch to second part of board
927 * initialization, now running from RAM.
928 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500929 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
930 mtlr r0
931 blr
932
933in_ram:
934
935 /*
936 * Relocation Function, r14 point to got2+0x8000
937 *
938 * Adjust got2 pointers, no need to check for 0, this code
939 * already puts a few entries in the table.
940 */
941 li r0,__got2_entries@sectoff@l
942 la r3,GOT(_GOT2_TABLE_)
943 lwz r11,GOT(_GOT2_TABLE_)
944 mtctr r0
945 sub r11,r3,r11
946 addi r3,r3,-4
9471: lwzu r0,4(r3)
948 add r0,r0,r11
949 stw r0,0(r3)
950 bdnz 1b
951
Scott Woode4c09502008-06-30 14:13:28 -0500952#ifndef CONFIG_NAND_SPL
Eran Libertyf046ccd2005-07-28 10:08:46 -0500953 /*
954 * Now adjust the fixups and the pointers to the fixups
955 * in case we need to move ourselves again.
956 */
9572: li r0,__fixup_entries@sectoff@l
958 lwz r3,GOT(_FIXUP_TABLE_)
959 cmpwi r0,0
960 mtctr r0
961 addi r3,r3,-4
962 beq 4f
9633: lwzu r4,4(r3)
964 lwzux r0,r4,r11
965 add r0,r0,r11
966 stw r10,0(r3)
967 stw r0,0(r4)
968 bdnz 3b
9694:
Scott Woode4c09502008-06-30 14:13:28 -0500970#endif
971
Eran Libertyf046ccd2005-07-28 10:08:46 -0500972clear_bss:
973 /*
974 * Now clear BSS segment
975 */
976 lwz r3,GOT(__bss_start)
977#if defined(CONFIG_HYMOD)
978 /*
979 * For HYMOD - the environment is the very last item in flash.
980 * The real .bss stops just before environment starts, so only
981 * clear up to that point.
982 *
983 * taken from mods for FADS board
984 */
985 lwz r4,GOT(environment)
986#else
987 lwz r4,GOT(_end)
988#endif
989
990 cmplw 0, r3, r4
991 beq 6f
992
993 li r0, 0
9945:
995 stw r0, 0(r3)
996 addi r3, r3, 4
997 cmplw 0, r3, r4
998 bne 5b
9996:
1000
1001 mr r3, r9 /* Global Data pointer */
1002 mr r4, r10 /* Destination Address */
1003 bl board_init_r
1004
Scott Woode4c09502008-06-30 14:13:28 -05001005#ifndef CONFIG_NAND_SPL
Eran Libertyf046ccd2005-07-28 10:08:46 -05001006 /*
1007 * Copy exception vector code to low memory
1008 *
1009 * r3: dest_addr
1010 * r7: source address, r8: end address, r9: target address
1011 */
1012 .globl trap_init
1013trap_init:
1014 lwz r7, GOT(_start)
1015 lwz r8, GOT(_end_of_vectors)
1016
1017 li r9, 0x100 /* reset vector always at 0x100 */
1018
1019 cmplw 0, r7, r8
1020 bgelr /* return if r7>=r8 - just in case */
1021
1022 mflr r4 /* save link register */
10231:
1024 lwz r0, 0(r7)
1025 stw r0, 0(r9)
1026 addi r7, r7, 4
1027 addi r9, r9, 4
1028 cmplw 0, r7, r8
1029 bne 1b
1030
1031 /*
1032 * relocate `hdlr' and `int_return' entries
1033 */
1034 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
1035 li r8, Alignment - _start + EXC_OFF_SYS_RESET
10362:
1037 bl trap_reloc
1038 addi r7, r7, 0x100 /* next exception vector */
1039 cmplw 0, r7, r8
1040 blt 2b
1041
1042 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
1043 bl trap_reloc
1044
1045 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
1046 bl trap_reloc
1047
1048 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
1049 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
10503:
1051 bl trap_reloc
1052 addi r7, r7, 0x100 /* next exception vector */
1053 cmplw 0, r7, r8
1054 blt 3b
1055
1056 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
1057 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
10584:
1059 bl trap_reloc
1060 addi r7, r7, 0x100 /* next exception vector */
1061 cmplw 0, r7, r8
1062 blt 4b
1063
1064 mfmsr r3 /* now that the vectors have */
1065 lis r7, MSR_IP@h /* relocated into low memory */
1066 ori r7, r7, MSR_IP@l /* MSR[IP] can be turned off */
1067 andc r3, r3, r7 /* (if it was on) */
1068 SYNC /* Some chip revs need this... */
1069 mtmsr r3
1070 SYNC
1071
1072 mtlr r4 /* restore link register */
1073 blr
1074
1075 /*
1076 * Function: relocate entries for one exception vector
1077 */
1078trap_reloc:
1079 lwz r0, 0(r7) /* hdlr ... */
1080 add r0, r0, r3 /* ... += dest_addr */
1081 stw r0, 0(r7)
1082
1083 lwz r0, 4(r7) /* int_return ... */
1084 add r0, r0, r3 /* ... += dest_addr */
1085 stw r0, 4(r7)
1086
1087 blr
Scott Woode4c09502008-06-30 14:13:28 -05001088#endif /* !CONFIG_NAND_SPL */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001089
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001090#ifdef CONFIG_SYS_INIT_RAM_LOCK
Kumar Gala2688e2f2006-02-10 15:40:06 -06001091lock_ram_in_cache:
1092 /* Allocate Initial RAM in data cache.
1093 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001094 lis r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@h
1095 ori r3, r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@l
1096 li r4, ((CONFIG_SYS_INIT_RAM_END & ~31) + \
1097 (CONFIG_SYS_INIT_RAM_ADDR & 31) + 31) / 32
Nick Spenceade50c72008-08-28 14:09:11 -07001098 mtctr r4
Kumar Gala2688e2f2006-02-10 15:40:06 -060010991:
1100 dcbz r0, r3
1101 addi r3, r3, 32
1102 bdnz 1b
1103
1104 /* Lock the data cache */
1105 mfspr r0, HID0
Nick Spence6eb2a442008-08-28 14:09:25 -07001106 ori r0, r0, HID0_DLOCK
Kumar Gala2688e2f2006-02-10 15:40:06 -06001107 sync
1108 mtspr HID0, r0
1109 sync
1110 blr
1111
Scott Woode4c09502008-06-30 14:13:28 -05001112#ifndef CONFIG_NAND_SPL
Eran Libertyf046ccd2005-07-28 10:08:46 -05001113.globl unlock_ram_in_cache
1114unlock_ram_in_cache:
1115 /* invalidate the INIT_RAM section */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001116 lis r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@h
1117 ori r3, r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@l
1118 li r4, ((CONFIG_SYS_INIT_RAM_END & ~31) + \
1119 (CONFIG_SYS_INIT_RAM_ADDR & 31) + 31) / 32
Nick Spenceade50c72008-08-28 14:09:11 -07001120 mtctr r4
Eran Libertyf046ccd2005-07-28 10:08:46 -050011211: icbi r0, r3
1122 dcbi r0, r3
1123 addi r3, r3, 32
1124 bdnz 1b
1125 sync /* Wait for all icbi to complete on bus */
1126 isync
Kumar Gala2688e2f2006-02-10 15:40:06 -06001127
1128 /* Unlock the data cache and invalidate it */
1129 mfspr r3, HID0
1130 li r5, HID0_DLOCK|HID0_DCFI
1131 andc r3, r3, r5 /* no invalidate, unlock */
1132 ori r5, r3, HID0_DCFI /* invalidate, unlock */
Kumar Gala2688e2f2006-02-10 15:40:06 -06001133 sync
Nick Spence6eb2a442008-08-28 14:09:25 -07001134 mtspr HID0, r5 /* invalidate, unlock */
1135 sync
1136 mtspr HID0, r3 /* no invalidate, unlock */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001137 blr
Scott Woode4c09502008-06-30 14:13:28 -05001138#endif /* !CONFIG_NAND_SPL */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001139#endif /* CONFIG_SYS_INIT_RAM_LOCK */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001140
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001141#ifdef CONFIG_SYS_FLASHBOOT
Eran Libertyf046ccd2005-07-28 10:08:46 -05001142map_flash_by_law1:
1143 /* When booting from ROM (Flash or EPROM), clear the */
1144 /* Address Mask in OR0 so ROM appears everywhere */
1145 /*----------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001146 lis r3, (CONFIG_SYS_IMMR)@h /* r3 <= CONFIG_SYS_IMMR */
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001147 lwz r4, OR0@l(r3)
Eran Libertyf046ccd2005-07-28 10:08:46 -05001148 li r5, 0x7fff /* r5 <= 0x00007FFFF */
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001149 and r4, r4, r5
Eran Libertyf046ccd2005-07-28 10:08:46 -05001150 stw r4, OR0@l(r3) /* OR0 <= OR0 & 0x00007FFFF */
1151
1152 /* As MPC8349E User's Manual presented, when RCW[BMS] is set to 0,
1153 * system will boot from 0x0000_0100, and the LBLAWBAR0[BASE_ADDR]
1154 * reset value is 0x00000; when RCW[BMS] is set to 1, system will boot
1155 * from 0xFFF0_0100, and the LBLAWBAR0[BASE_ADDR] reset value is
1156 * 0xFF800. From the hard resetting to here, the processor fetched and
1157 * executed the instructions one by one. There is not absolutely
1158 * jumping happened. Laterly, the u-boot code has to do an absolutely
1159 * jumping to tell the CPU instruction fetching component what the
1160 * u-boot TEXT base address is. Because the TEXT base resides in the
1161 * boot ROM memory space, to garantee the code can run smoothly after
1162 * that jumping, we must map in the entire boot ROM by Local Access
1163 * Window. Sometimes, we desire an non-0x00000 or non-0xFF800 starting
1164 * address for boot ROM, such as 0xFE000000. In this case, the default
1165 * LBIU Local Access Widow 0 will not cover this memory space. So, we
1166 * need another window to map in it.
1167 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001168 lis r4, (CONFIG_SYS_FLASH_BASE)@h
1169 ori r4, r4, (CONFIG_SYS_FLASH_BASE)@l
1170 stw r4, LBLAWBAR1(r3) /* LBLAWBAR1 <= CONFIG_SYS_FLASH_BASE */
Timur Tabi31068b72006-08-22 17:07:00 -05001171
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001172 /* Store 0x80000012 + log2(CONFIG_SYS_FLASH_SIZE) into LBLAWAR1 */
Timur Tabi31068b72006-08-22 17:07:00 -05001173 lis r4, (0x80000012)@h
1174 ori r4, r4, (0x80000012)@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001175 li r5, CONFIG_SYS_FLASH_SIZE
Timur Tabi31068b72006-08-22 17:07:00 -050011761: srawi. r5, r5, 1 /* r5 = r5 >> 1 */
1177 addi r4, r4, 1
1178 bne 1b
1179
Eran Libertyf046ccd2005-07-28 10:08:46 -05001180 stw r4, LBLAWAR1(r3) /* LBLAWAR1 <= 8MB Flash Size */
1181 blr
1182
1183 /* Though all the LBIU Local Access Windows and LBC Banks will be
1184 * initialized in the C code, we'd better configure boot ROM's
1185 * window 0 and bank 0 correctly at here.
1186 */
1187remap_flash_by_law0:
1188 /* Initialize the BR0 with the boot ROM starting address. */
1189 lwz r4, BR0(r3)
1190 li r5, 0x7FFF
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001191 and r4, r4, r5
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001192 lis r5, (CONFIG_SYS_FLASH_BASE & 0xFFFF8000)@h
1193 ori r5, r5, (CONFIG_SYS_FLASH_BASE & 0xFFFF8000)@l
Eran Libertyf046ccd2005-07-28 10:08:46 -05001194 or r5, r5, r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001195 stw r5, BR0(r3) /* r5 <= (CONFIG_SYS_FLASH_BASE & 0xFFFF8000) | (BR0 & 0x00007FFF) */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001196
1197 lwz r4, OR0(r3)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001198 lis r5, ~((CONFIG_SYS_FLASH_SIZE << 4) - 1)
Eran Libertyf046ccd2005-07-28 10:08:46 -05001199 or r4, r4, r5
Timur Tabi31068b72006-08-22 17:07:00 -05001200 stw r4, OR0(r3)
Eran Libertyf046ccd2005-07-28 10:08:46 -05001201
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001202 lis r4, (CONFIG_SYS_FLASH_BASE)@h
1203 ori r4, r4, (CONFIG_SYS_FLASH_BASE)@l
1204 stw r4, LBLAWBAR0(r3) /* LBLAWBAR0 <= CONFIG_SYS_FLASH_BASE */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001205
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001206 /* Store 0x80000012 + log2(CONFIG_SYS_FLASH_SIZE) into LBLAWAR0 */
Timur Tabi31068b72006-08-22 17:07:00 -05001207 lis r4, (0x80000012)@h
1208 ori r4, r4, (0x80000012)@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001209 li r5, CONFIG_SYS_FLASH_SIZE
Timur Tabi31068b72006-08-22 17:07:00 -050012101: srawi. r5, r5, 1 /* r5 = r5 >> 1 */
1211 addi r4, r4, 1
1212 bne 1b
1213 stw r4, LBLAWAR0(r3) /* LBLAWAR0 <= Flash Size */
1214
Eran Libertyf046ccd2005-07-28 10:08:46 -05001215
1216 xor r4, r4, r4
1217 stw r4, LBLAWBAR1(r3)
1218 stw r4, LBLAWAR1(r3) /* Off LBIU LAW1 */
1219 blr
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001220#endif /* CONFIG_SYS_FLASHBOOT */