blob: 075a7dd836180216ec118b6f1fc235dcef0cf797 [file] [log] [blame]
wdenk945af8d2003-07-16 21:53:01 +00001/*
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 - 2003 Wolfgang Denk <wd@denx.de>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25/*
26 * U-Boot - Startup Code for MPC5xxx CPUs
27 */
28#include <config.h>
29#include <mpc5xxx.h>
Peter Tyser561858e2008-11-03 09:30:59 -060030#include <timestamp.h>
wdenk945af8d2003-07-16 21:53:01 +000031#include <version.h>
32
wdenkcbd8a352004-02-24 02:00:03 +000033#define CONFIG_MPC5xxx 1 /* needed for Linux kernel header files */
wdenk945af8d2003-07-16 21:53:01 +000034#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
35
36#include <ppc_asm.tmpl>
37#include <ppc_defs.h>
38
39#include <asm/cache.h>
40#include <asm/mmu.h>
41
42#ifndef CONFIG_IDENT_STRING
43#define CONFIG_IDENT_STRING ""
44#endif
45
46/* We don't want the MMU yet.
47*/
48#undef MSR_KERNEL
49/* Floating Point enable, Machine Check and Recoverable Interr. */
50#ifdef DEBUG
51#define MSR_KERNEL (MSR_FP|MSR_RI)
52#else
53#define MSR_KERNEL (MSR_FP|MSR_ME|MSR_RI)
54#endif
55
56/*
57 * Set up GOT: Global Offset Table
58 *
59 * Use r14 to access the GOT
60 */
61 START_GOT
62 GOT_ENTRY(_GOT2_TABLE_)
63 GOT_ENTRY(_FIXUP_TABLE_)
64
65 GOT_ENTRY(_start)
66 GOT_ENTRY(_start_of_vectors)
67 GOT_ENTRY(_end_of_vectors)
68 GOT_ENTRY(transfer_to_handler)
69
70 GOT_ENTRY(__init_end)
71 GOT_ENTRY(_end)
72 GOT_ENTRY(__bss_start)
73 END_GOT
74
75/*
76 * Version string
77 */
78 .data
79 .globl version_string
80version_string:
81 .ascii U_BOOT_VERSION
Peter Tyser561858e2008-11-03 09:30:59 -060082 .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
wdenk945af8d2003-07-16 21:53:01 +000083 .ascii CONFIG_IDENT_STRING, "\0"
84
85/*
86 * Exception vectors
87 */
88 .text
89 . = EXC_OFF_SYS_RESET
90 .globl _start
91_start:
92 li r21, BOOTFLAG_COLD /* Normal Power-On */
93 nop
94 b boot_cold
95
96 . = EXC_OFF_SYS_RESET + 0x10
97
98 .globl _start_warm
99_start_warm:
100 li r21, BOOTFLAG_WARM /* Software reboot */
101 b boot_warm
102
103boot_cold:
104boot_warm:
105 mfmsr r5 /* save msr contents */
106
wdenke35745b2004-04-18 23:32:11 +0000107 /* Move CSBoot and adjust instruction pointer */
108 /*--------------------------------------------------------------*/
109
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200110#if defined(CONFIG_SYS_LOWBOOT)
111# if defined(CONFIG_SYS_RAMBOOT)
112# error CONFIG_SYS_LOWBOOT is incompatible with CONFIG_SYS_RAMBOOT
113# endif /* CONFIG_SYS_RAMBOOT */
wdenk07cba352004-07-12 14:37:59 +0000114# if defined(CONFIG_MGT5100)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200115# error CONFIG_SYS_LOWBOOT is incompatible with MGT5100
wdenk07cba352004-07-12 14:37:59 +0000116# endif /* CONFIG_MGT5100 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200117 lis r4, CONFIG_SYS_DEFAULT_MBAR@h
118 lis r3, START_REG(CONFIG_SYS_BOOTCS_START)@h
119 ori r3, r3, START_REG(CONFIG_SYS_BOOTCS_START)@l
wdenk79d696f2004-03-11 22:46:36 +0000120 stw r3, 0x4(r4) /* CS0 start */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200121 lis r3, STOP_REG(CONFIG_SYS_BOOTCS_START, CONFIG_SYS_BOOTCS_SIZE)@h
122 ori r3, r3, STOP_REG(CONFIG_SYS_BOOTCS_START, CONFIG_SYS_BOOTCS_SIZE)@l
wdenk79d696f2004-03-11 22:46:36 +0000123 stw r3, 0x8(r4) /* CS0 stop */
wdenk5cf9da42003-11-07 13:42:26 +0000124 lis r3, 0x02010000@h
125 ori r3, r3, 0x02010000@l
wdenke35745b2004-04-18 23:32:11 +0000126 stw r3, 0x54(r4) /* CS0 and Boot enable */
wdenk5cf9da42003-11-07 13:42:26 +0000127
wdenke35745b2004-04-18 23:32:11 +0000128 lis r3, lowboot_reentry@h /* jump from bootlow address space (0x0000xxxx) */
129 ori r3, r3, lowboot_reentry@l /* to the address space the linker used */
wdenk5cf9da42003-11-07 13:42:26 +0000130 mtlr r3
wdenke35745b2004-04-18 23:32:11 +0000131 blr
wdenkd4ca31c2004-01-02 14:00:00 +0000132
133lowboot_reentry:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200134 lis r3, START_REG(CONFIG_SYS_BOOTCS_START)@h
135 ori r3, r3, START_REG(CONFIG_SYS_BOOTCS_START)@l
wdenk79d696f2004-03-11 22:46:36 +0000136 stw r3, 0x4c(r4) /* Boot start */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200137 lis r3, STOP_REG(CONFIG_SYS_BOOTCS_START, CONFIG_SYS_BOOTCS_SIZE)@h
138 ori r3, r3, STOP_REG(CONFIG_SYS_BOOTCS_START, CONFIG_SYS_BOOTCS_SIZE)@l
wdenk79d696f2004-03-11 22:46:36 +0000139 stw r3, 0x50(r4) /* Boot stop */
wdenk5cf9da42003-11-07 13:42:26 +0000140 lis r3, 0x02000001@h
141 ori r3, r3, 0x02000001@l
wdenke35745b2004-04-18 23:32:11 +0000142 stw r3, 0x54(r4) /* Boot enable, CS0 disable */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200143#endif /* CONFIG_SYS_LOWBOOT */
wdenkd4ca31c2004-01-02 14:00:00 +0000144
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145#if defined(CONFIG_SYS_DEFAULT_MBAR) && !defined(CONFIG_SYS_RAMBOOT)
146 lis r3, CONFIG_SYS_MBAR@h
147 ori r3, r3, CONFIG_SYS_MBAR@l
wdenk945af8d2003-07-16 21:53:01 +0000148#if defined(CONFIG_MPC5200)
wdenk3c74e322004-02-22 23:46:08 +0000149 /* MBAR is mirrored into the MBAR SPR */
150 mtspr MBAR,r3
wdenk945af8d2003-07-16 21:53:01 +0000151 rlwinm r3, r3, 16, 16, 31
152#endif
153#if defined(CONFIG_MGT5100)
154 rlwinm r3, r3, 17, 15, 31
155#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200156 lis r4, CONFIG_SYS_DEFAULT_MBAR@h
wdenk945af8d2003-07-16 21:53:01 +0000157 stw r3, 0(r4)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200158#endif /* CONFIG_SYS_DEFAULT_MBAR */
wdenk945af8d2003-07-16 21:53:01 +0000159
160 /* Initialise the MPC5xxx processor core */
161 /*--------------------------------------------------------------*/
162
163 bl init_5xxx_core
164
165 /* initialize some things that are hard to access from C */
166 /*--------------------------------------------------------------*/
167
168 /* set up stack in on-chip SRAM */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200169 lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
170 ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
171 ori r1, r3, CONFIG_SYS_INIT_SP_OFFSET
wdenk945af8d2003-07-16 21:53:01 +0000172 li r0, 0 /* Make room for stack frame header and */
173 stwu r0, -4(r1) /* clear final stack frame so that */
174 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
175
176 /* let the C-code set up the rest */
177 /* */
178 /* Be careful to keep code relocatable ! */
179 /*--------------------------------------------------------------*/
180
181 GET_GOT /* initialize GOT access */
182
183 /* r3: IMMR */
184 bl cpu_init_f /* run low-level CPU init code (in Flash)*/
185
186 mr r3, r21
187 /* r3: BOOTFLAG */
188 bl board_init_f /* run 1st part of board init code (in Flash)*/
189
190/*
191 * Vector Table
192 */
193
194 .globl _start_of_vectors
195_start_of_vectors:
196
197/* Machine check */
198 STD_EXCEPTION(0x200, MachineCheck, MachineCheckException)
199
200/* Data Storage exception. */
201 STD_EXCEPTION(0x300, DataStorage, UnknownException)
202
203/* Instruction Storage exception. */
204 STD_EXCEPTION(0x400, InstStorage, UnknownException)
205
206/* External Interrupt exception. */
207 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
208
209/* Alignment exception. */
210 . = 0x600
211Alignment:
Rafal Jaworowski02032e82007-06-22 14:58:04 +0200212 EXCEPTION_PROLOG(SRR0, SRR1)
wdenk945af8d2003-07-16 21:53:01 +0000213 mfspr r4,DAR
214 stw r4,_DAR(r21)
215 mfspr r5,DSISR
216 stw r5,_DSISR(r21)
217 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlundfc4e1882010-01-19 14:41:55 +0100218 EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
wdenk945af8d2003-07-16 21:53:01 +0000219
220/* Program check exception */
221 . = 0x700
222ProgramCheck:
Rafal Jaworowski02032e82007-06-22 14:58:04 +0200223 EXCEPTION_PROLOG(SRR0, SRR1)
wdenk945af8d2003-07-16 21:53:01 +0000224 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlundfc4e1882010-01-19 14:41:55 +0100225 EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
226 MSR_KERNEL, COPY_EE)
wdenk945af8d2003-07-16 21:53:01 +0000227
228 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
229
230 /* I guess we could implement decrementer, and may have
231 * to someday for timekeeping.
232 */
233 STD_EXCEPTION(0x900, Decrementer, timer_interrupt)
234
235 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
236 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
wdenk27b207f2003-07-24 23:38:38 +0000237 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
wdenk945af8d2003-07-16 21:53:01 +0000238 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
239
240 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
241 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
242
243 STD_EXCEPTION(0x1000, InstructionTLBMiss, UnknownException)
244 STD_EXCEPTION(0x1100, DataLoadTLBMiss, UnknownException)
245 STD_EXCEPTION(0x1200, DataStoreTLBMiss, UnknownException)
246#ifdef DEBUG
247 . = 0x1300
248 /*
249 * This exception occurs when the program counter matches the
250 * Instruction Address Breakpoint Register (IABR).
251 *
252 * I want the cpu to halt if this occurs so I can hunt around
253 * with the debugger and look at things.
254 *
255 * When DEBUG is defined, both machine check enable (in the MSR)
256 * and checkstop reset enable (in the reset mode register) are
257 * turned off and so a checkstop condition will result in the cpu
258 * halting.
259 *
260 * I force the cpu into a checkstop condition by putting an illegal
261 * instruction here (at least this is the theory).
262 *
263 * well - that didnt work, so just do an infinite loop!
264 */
2651: b 1b
266#else
267 STD_EXCEPTION(0x1300, InstructionBreakpoint, DebugException)
268#endif
269 STD_EXCEPTION(0x1400, SMI, UnknownException)
270
271 STD_EXCEPTION(0x1500, Trap_15, UnknownException)
272 STD_EXCEPTION(0x1600, Trap_16, UnknownException)
273 STD_EXCEPTION(0x1700, Trap_17, UnknownException)
274 STD_EXCEPTION(0x1800, Trap_18, UnknownException)
275 STD_EXCEPTION(0x1900, Trap_19, UnknownException)
276 STD_EXCEPTION(0x1a00, Trap_1a, UnknownException)
277 STD_EXCEPTION(0x1b00, Trap_1b, UnknownException)
278 STD_EXCEPTION(0x1c00, Trap_1c, UnknownException)
279 STD_EXCEPTION(0x1d00, Trap_1d, UnknownException)
280 STD_EXCEPTION(0x1e00, Trap_1e, UnknownException)
281 STD_EXCEPTION(0x1f00, Trap_1f, UnknownException)
282 STD_EXCEPTION(0x2000, Trap_20, UnknownException)
283 STD_EXCEPTION(0x2100, Trap_21, UnknownException)
284 STD_EXCEPTION(0x2200, Trap_22, UnknownException)
285 STD_EXCEPTION(0x2300, Trap_23, UnknownException)
286 STD_EXCEPTION(0x2400, Trap_24, UnknownException)
287 STD_EXCEPTION(0x2500, Trap_25, UnknownException)
288 STD_EXCEPTION(0x2600, Trap_26, UnknownException)
289 STD_EXCEPTION(0x2700, Trap_27, UnknownException)
290 STD_EXCEPTION(0x2800, Trap_28, UnknownException)
291 STD_EXCEPTION(0x2900, Trap_29, UnknownException)
292 STD_EXCEPTION(0x2a00, Trap_2a, UnknownException)
293 STD_EXCEPTION(0x2b00, Trap_2b, UnknownException)
294 STD_EXCEPTION(0x2c00, Trap_2c, UnknownException)
295 STD_EXCEPTION(0x2d00, Trap_2d, UnknownException)
296 STD_EXCEPTION(0x2e00, Trap_2e, UnknownException)
297 STD_EXCEPTION(0x2f00, Trap_2f, UnknownException)
298
299
300 .globl _end_of_vectors
301_end_of_vectors:
302
303 . = 0x3000
304
305/*
306 * This code finishes saving the registers to the exception frame
307 * and jumps to the appropriate handler for the exception.
308 * Register r21 is pointer into trap frame, r1 has new stack pointer.
309 */
310 .globl transfer_to_handler
311transfer_to_handler:
312 stw r22,_NIP(r21)
313 lis r22,MSR_POW@h
314 andc r23,r23,r22
315 stw r23,_MSR(r21)
316 SAVE_GPR(7, r21)
317 SAVE_4GPRS(8, r21)
318 SAVE_8GPRS(12, r21)
319 SAVE_8GPRS(24, r21)
320 mflr r23
321 andi. r24,r23,0x3f00 /* get vector offset */
322 stw r24,TRAP(r21)
323 li r22,0
324 stw r22,RESULT(r21)
325 lwz r24,0(r23) /* virtual address of handler */
326 lwz r23,4(r23) /* where to go when done */
327 mtspr SRR0,r24
328 mtspr SRR1,r20
329 mtlr r23
330 SYNC
331 rfi /* jump to handler, enable MMU */
332
333int_return:
334 mfmsr r28 /* Disable interrupts */
335 li r4,0
336 ori r4,r4,MSR_EE
337 andc r28,r28,r4
338 SYNC /* Some chip revs need this... */
339 mtmsr r28
340 SYNC
341 lwz r2,_CTR(r1)
342 lwz r0,_LINK(r1)
343 mtctr r2
344 mtlr r0
345 lwz r2,_XER(r1)
346 lwz r0,_CCR(r1)
347 mtspr XER,r2
348 mtcrf 0xFF,r0
349 REST_10GPRS(3, r1)
350 REST_10GPRS(13, r1)
351 REST_8GPRS(23, r1)
352 REST_GPR(31, r1)
353 lwz r2,_NIP(r1) /* Restore environment */
354 lwz r0,_MSR(r1)
355 mtspr SRR0,r2
356 mtspr SRR1,r0
357 lwz r0,GPR0(r1)
358 lwz r2,GPR2(r1)
359 lwz r1,GPR1(r1)
360 SYNC
361 rfi
362
363/*
364 * This code initialises the MPC5xxx processor core
365 * (conforms to PowerPC 603e spec)
366 * Note: expects original MSR contents to be in r5.
367 */
368
369 .globl init_5xx_core
370init_5xxx_core:
371
372 /* Initialize machine status; enable machine check interrupt */
373 /*--------------------------------------------------------------*/
374
375 li r3, MSR_KERNEL /* Set ME and RI flags */
376 rlwimi r3, r5, 0, 25, 25 /* preserve IP bit set by HRCW */
377#ifdef DEBUG
378 rlwimi r3, r5, 0, 21, 22 /* debugger might set SE & BE bits */
379#endif
380 SYNC /* Some chip revs need this... */
381 mtmsr r3
382 SYNC
383 mtspr SRR1, r3 /* Make SRR1 match MSR */
384
385 /* Initialize the Hardware Implementation-dependent Registers */
386 /* HID0 also contains cache control */
387 /*--------------------------------------------------------------*/
388
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200389 lis r3, CONFIG_SYS_HID0_INIT@h
390 ori r3, r3, CONFIG_SYS_HID0_INIT@l
wdenk945af8d2003-07-16 21:53:01 +0000391 SYNC
392 mtspr HID0, r3
393
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200394 lis r3, CONFIG_SYS_HID0_FINAL@h
395 ori r3, r3, CONFIG_SYS_HID0_FINAL@l
wdenk945af8d2003-07-16 21:53:01 +0000396 SYNC
397 mtspr HID0, r3
398
399 /* clear all BAT's */
400 /*--------------------------------------------------------------*/
401
402 li r0, 0
403 mtspr DBAT0U, r0
404 mtspr DBAT0L, r0
405 mtspr DBAT1U, r0
406 mtspr DBAT1L, r0
407 mtspr DBAT2U, r0
408 mtspr DBAT2L, r0
409 mtspr DBAT3U, r0
410 mtspr DBAT3L, r0
wdenk35656de2003-09-14 19:08:39 +0000411 mtspr DBAT4U, r0
412 mtspr DBAT4L, r0
413 mtspr DBAT5U, r0
414 mtspr DBAT5L, r0
415 mtspr DBAT6U, r0
416 mtspr DBAT6L, r0
417 mtspr DBAT7U, r0
418 mtspr DBAT7L, r0
wdenk945af8d2003-07-16 21:53:01 +0000419 mtspr IBAT0U, r0
420 mtspr IBAT0L, r0
421 mtspr IBAT1U, r0
422 mtspr IBAT1L, r0
423 mtspr IBAT2U, r0
424 mtspr IBAT2L, r0
425 mtspr IBAT3U, r0
426 mtspr IBAT3L, r0
wdenk35656de2003-09-14 19:08:39 +0000427 mtspr IBAT4U, r0
428 mtspr IBAT4L, r0
429 mtspr IBAT5U, r0
430 mtspr IBAT5L, r0
431 mtspr IBAT6U, r0
432 mtspr IBAT6L, r0
433 mtspr IBAT7U, r0
434 mtspr IBAT7L, r0
wdenk945af8d2003-07-16 21:53:01 +0000435 SYNC
436
437 /* invalidate all tlb's */
438 /* */
439 /* From the 603e User Manual: "The 603e provides the ability to */
440 /* invalidate a TLB entry. The TLB Invalidate Entry (tlbie) */
441 /* instruction invalidates the TLB entry indexed by the EA, and */
442 /* operates on both the instruction and data TLBs simultaneously*/
443 /* invalidating four TLB entries (both sets in each TLB). The */
444 /* index corresponds to bits 15-19 of the EA. To invalidate all */
445 /* entries within both TLBs, 32 tlbie instructions should be */
446 /* issued, incrementing this field by one each time." */
447 /* */
448 /* "Note that the tlbia instruction is not implemented on the */
449 /* 603e." */
450 /* */
451 /* bits 15-19 correspond to addresses 0x00000000 to 0x0001F000 */
452 /* incrementing by 0x1000 each time. The code below is sort of */
453 /* based on code in "flush_tlbs" from arch/ppc/kernel/head.S */
454 /* */
455 /*--------------------------------------------------------------*/
456
457 li r3, 32
458 mtctr r3
459 li r3, 0
4601: tlbie r3
461 addi r3, r3, 0x1000
462 bdnz 1b
463 SYNC
464
465 /* Done! */
466 /*--------------------------------------------------------------*/
467
468 blr
469
470/* Cache functions.
471 *
472 * Note: requires that all cache bits in
473 * HID0 are in the low half word.
474 */
475 .globl icache_enable
476icache_enable:
477 mfspr r3, HID0
478 ori r3, r3, HID0_ICE
479 lis r4, 0
480 ori r4, r4, HID0_ILOCK
481 andc r3, r3, r4
482 ori r4, r3, HID0_ICFI
483 isync
484 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
485 isync
486 mtspr HID0, r3 /* clears invalidate */
487 blr
488
489 .globl icache_disable
490icache_disable:
491 mfspr r3, HID0
492 lis r4, 0
493 ori r4, r4, HID0_ICE|HID0_ILOCK
494 andc r3, r3, r4
495 ori r4, r3, HID0_ICFI
496 isync
497 mtspr HID0, r4 /* sets invalidate, clears enable and lock */
498 isync
499 mtspr HID0, r3 /* clears invalidate */
500 blr
501
502 .globl icache_status
503icache_status:
504 mfspr r3, HID0
505 rlwinm r3, r3, HID0_ICE_BITPOS + 1, 31, 31
506 blr
507
508 .globl dcache_enable
509dcache_enable:
510 mfspr r3, HID0
511 ori r3, r3, HID0_DCE
512 lis r4, 0
513 ori r4, r4, HID0_DLOCK
514 andc r3, r3, r4
515 ori r4, r3, HID0_DCI
516 sync
517 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
518 sync
519 mtspr HID0, r3 /* clears invalidate */
520 blr
521
522 .globl dcache_disable
523dcache_disable:
524 mfspr r3, HID0
525 lis r4, 0
526 ori r4, r4, HID0_DCE|HID0_DLOCK
527 andc r3, r3, r4
528 ori r4, r3, HID0_DCI
529 sync
530 mtspr HID0, r4 /* sets invalidate, clears enable and lock */
531 sync
532 mtspr HID0, r3 /* clears invalidate */
533 blr
534
535 .globl dcache_status
536dcache_status:
537 mfspr r3, HID0
538 rlwinm r3, r3, HID0_DCE_BITPOS + 1, 31, 31
539 blr
540
wdenk36c72872004-06-09 17:45:32 +0000541 .globl get_svr
542get_svr:
543 mfspr r3, SVR
544 blr
545
wdenk945af8d2003-07-16 21:53:01 +0000546 .globl get_pvr
547get_pvr:
548 mfspr r3, PVR
549 blr
550
551/*------------------------------------------------------------------------------*/
552
553/*
554 * void relocate_code (addr_sp, gd, addr_moni)
555 *
556 * This "function" does not return, instead it continues in RAM
557 * after relocating the monitor code.
558 *
559 * r3 = dest
560 * r4 = src
561 * r5 = length in bytes
562 * r6 = cachelinesize
563 */
564 .globl relocate_code
565relocate_code:
566 mr r1, r3 /* Set new stack pointer */
567 mr r9, r4 /* Save copy of Global Data pointer */
568 mr r10, r5 /* Save copy of Destination Address */
569
570 mr r3, r5 /* Destination Address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200571 lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
572 ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
wdenk945af8d2003-07-16 21:53:01 +0000573 lwz r5, GOT(__init_end)
574 sub r5, r5, r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200575 li r6, CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
wdenk945af8d2003-07-16 21:53:01 +0000576
577 /*
578 * Fix GOT pointer:
579 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200580 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address
wdenk945af8d2003-07-16 21:53:01 +0000581 *
582 * Offset:
583 */
584 sub r15, r10, r4
585
586 /* First our own GOT */
587 add r14, r14, r15
588 /* then the one used by the C code */
589 add r30, r30, r15
590
591 /*
592 * Now relocate code
593 */
594
595 cmplw cr1,r3,r4
596 addi r0,r5,3
597 srwi. r0,r0,2
598 beq cr1,4f /* In place copy is not necessary */
599 beq 7f /* Protect against 0 count */
600 mtctr r0
601 bge cr1,2f
602
603 la r8,-4(r4)
604 la r7,-4(r3)
6051: lwzu r0,4(r8)
606 stwu r0,4(r7)
607 bdnz 1b
608 b 4f
609
6102: slwi r0,r0,2
611 add r8,r4,r0
612 add r7,r3,r0
6133: lwzu r0,-4(r8)
614 stwu r0,-4(r7)
615 bdnz 3b
616
617/*
618 * Now flush the cache: note that we must start from a cache aligned
619 * address. Otherwise we might miss one cache line.
620 */
6214: cmpwi r6,0
622 add r5,r3,r5
623 beq 7f /* Always flush prefetch queue in any case */
624 subi r0,r6,1
625 andc r3,r3,r0
626 mfspr r7,HID0 /* don't do dcbst if dcache is disabled */
627 rlwinm r7,r7,HID0_DCE_BITPOS+1,31,31
628 cmpwi r7,0
629 beq 9f
630 mr r4,r3
6315: dcbst 0,r4
632 add r4,r4,r6
633 cmplw r4,r5
634 blt 5b
635 sync /* Wait for all dcbst to complete on bus */
6369: mfspr r7,HID0 /* don't do icbi if icache is disabled */
637 rlwinm r7,r7,HID0_ICE_BITPOS+1,31,31
638 cmpwi r7,0
639 beq 7f
640 mr r4,r3
6416: icbi 0,r4
642 add r4,r4,r6
643 cmplw r4,r5
644 blt 6b
6457: sync /* Wait for all icbi to complete on bus */
646 isync
647
648/*
649 * We are done. Do not return, instead branch to second part of board
650 * initialization, now running from RAM.
651 */
652
653 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
654 mtlr r0
655 blr
656
657in_ram:
658
659 /*
660 * Relocation Function, r14 point to got2+0x8000
661 *
662 * Adjust got2 pointers, no need to check for 0, this code
663 * already puts a few entries in the table.
664 */
665 li r0,__got2_entries@sectoff@l
666 la r3,GOT(_GOT2_TABLE_)
667 lwz r11,GOT(_GOT2_TABLE_)
668 mtctr r0
669 sub r11,r3,r11
670 addi r3,r3,-4
6711: lwzu r0,4(r3)
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +0200672 cmpwi r0,0
673 beq- 2f
wdenk945af8d2003-07-16 21:53:01 +0000674 add r0,r0,r11
675 stw r0,0(r3)
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +02006762: bdnz 1b
wdenk945af8d2003-07-16 21:53:01 +0000677
678 /*
679 * Now adjust the fixups and the pointers to the fixups
680 * in case we need to move ourselves again.
681 */
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +0200682 li r0,__fixup_entries@sectoff@l
wdenk945af8d2003-07-16 21:53:01 +0000683 lwz r3,GOT(_FIXUP_TABLE_)
684 cmpwi r0,0
685 mtctr r0
686 addi r3,r3,-4
687 beq 4f
6883: lwzu r4,4(r3)
689 lwzux r0,r4,r11
690 add r0,r0,r11
691 stw r10,0(r3)
692 stw r0,0(r4)
693 bdnz 3b
6944:
695clear_bss:
696 /*
697 * Now clear BSS segment
698 */
699 lwz r3,GOT(__bss_start)
700 lwz r4,GOT(_end)
701
702 cmplw 0, r3, r4
703 beq 6f
704
705 li r0, 0
7065:
707 stw r0, 0(r3)
708 addi r3, r3, 4
709 cmplw 0, r3, r4
710 bne 5b
7116:
712
713 mr r3, r9 /* Global Data pointer */
714 mr r4, r10 /* Destination Address */
715 bl board_init_r
716
717 /*
718 * Copy exception vector code to low memory
719 *
720 * r3: dest_addr
721 * r7: source address, r8: end address, r9: target address
722 */
723 .globl trap_init
724trap_init:
725 lwz r7, GOT(_start)
726 lwz r8, GOT(_end_of_vectors)
727
728 li r9, 0x100 /* reset vector always at 0x100 */
729
730 cmplw 0, r7, r8
731 bgelr /* return if r7>=r8 - just in case */
732
733 mflr r4 /* save link register */
7341:
735 lwz r0, 0(r7)
736 stw r0, 0(r9)
737 addi r7, r7, 4
738 addi r9, r9, 4
739 cmplw 0, r7, r8
740 bne 1b
741
742 /*
743 * relocate `hdlr' and `int_return' entries
744 */
745 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
746 li r8, Alignment - _start + EXC_OFF_SYS_RESET
7472:
748 bl trap_reloc
749 addi r7, r7, 0x100 /* next exception vector */
750 cmplw 0, r7, r8
751 blt 2b
752
753 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
754 bl trap_reloc
755
756 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
757 bl trap_reloc
758
759 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
760 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
7613:
762 bl trap_reloc
763 addi r7, r7, 0x100 /* next exception vector */
764 cmplw 0, r7, r8
765 blt 3b
766
767 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
768 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
7694:
770 bl trap_reloc
771 addi r7, r7, 0x100 /* next exception vector */
772 cmplw 0, r7, r8
773 blt 4b
774
775 mfmsr r3 /* now that the vectors have */
776 lis r7, MSR_IP@h /* relocated into low memory */
777 ori r7, r7, MSR_IP@l /* MSR[IP] can be turned off */
778 andc r3, r3, r7 /* (if it was on) */
779 SYNC /* Some chip revs need this... */
780 mtmsr r3
781 SYNC
782
783 mtlr r4 /* restore link register */
784 blr