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>
6 * See file CREDITS for list of people who contributed to this
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.
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.
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,
26 * U-Boot - Startup Code for MPC5xxx CPUs
28 #include <asm-offsets.h>
31 #include <timestamp.h>
34 #define CONFIG_MPC5xxx 1 /* needed for Linux kernel header files */
35 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
37 #include <ppc_asm.tmpl>
40 #include <asm/cache.h>
42 #include <asm/u-boot.h>
44 #ifndef CONFIG_IDENT_STRING
45 #define CONFIG_IDENT_STRING ""
48 /* We don't want the MMU yet.
51 /* Floating Point enable, Machine Check and Recoverable Interr. */
53 #define MSR_KERNEL (MSR_FP|MSR_RI)
55 #define MSR_KERNEL (MSR_FP|MSR_ME|MSR_RI)
59 * Set up GOT: Global Offset Table
61 * Use r12 to access the GOT
64 GOT_ENTRY(_GOT2_TABLE_)
65 GOT_ENTRY(_FIXUP_TABLE_)
68 GOT_ENTRY(_start_of_vectors)
69 GOT_ENTRY(_end_of_vectors)
70 GOT_ENTRY(transfer_to_handler)
74 GOT_ENTRY(__bss_start)
84 .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
85 .ascii CONFIG_IDENT_STRING, "\0"
94 mfmsr r5 /* save msr contents */
96 /* Move CSBoot and adjust instruction pointer */
97 /*--------------------------------------------------------------*/
99 #if defined(CONFIG_SYS_LOWBOOT)
100 # if defined(CONFIG_SYS_RAMBOOT)
101 # error CONFIG_SYS_LOWBOOT is incompatible with CONFIG_SYS_RAMBOOT
102 # endif /* CONFIG_SYS_RAMBOOT */
103 lis r4, CONFIG_SYS_DEFAULT_MBAR@h
104 lis r3, START_REG(CONFIG_SYS_BOOTCS_START)@h
105 ori r3, r3, START_REG(CONFIG_SYS_BOOTCS_START)@l
106 stw r3, 0x4(r4) /* CS0 start */
107 lis r3, STOP_REG(CONFIG_SYS_BOOTCS_START, CONFIG_SYS_BOOTCS_SIZE)@h
108 ori r3, r3, STOP_REG(CONFIG_SYS_BOOTCS_START, CONFIG_SYS_BOOTCS_SIZE)@l
109 stw r3, 0x8(r4) /* CS0 stop */
111 ori r3, r3, 0x02010000@l
112 stw r3, 0x54(r4) /* CS0 and Boot enable */
114 lis r3, lowboot_reentry@h /* jump from bootlow address space (0x0000xxxx) */
115 ori r3, r3, lowboot_reentry@l /* to the address space the linker used */
120 lis r3, START_REG(CONFIG_SYS_BOOTCS_START)@h
121 ori r3, r3, START_REG(CONFIG_SYS_BOOTCS_START)@l
122 stw r3, 0x4c(r4) /* Boot start */
123 lis r3, STOP_REG(CONFIG_SYS_BOOTCS_START, CONFIG_SYS_BOOTCS_SIZE)@h
124 ori r3, r3, STOP_REG(CONFIG_SYS_BOOTCS_START, CONFIG_SYS_BOOTCS_SIZE)@l
125 stw r3, 0x50(r4) /* Boot stop */
127 ori r3, r3, 0x02000001@l
128 stw r3, 0x54(r4) /* Boot enable, CS0 disable */
129 #endif /* CONFIG_SYS_LOWBOOT */
131 #if defined(CONFIG_SYS_DEFAULT_MBAR) && !defined(CONFIG_SYS_RAMBOOT)
132 lis r3, CONFIG_SYS_MBAR@h
133 ori r3, r3, CONFIG_SYS_MBAR@l
134 /* MBAR is mirrored into the MBAR SPR */
136 rlwinm r3, r3, 16, 16, 31
137 lis r4, CONFIG_SYS_DEFAULT_MBAR@h
139 #endif /* CONFIG_SYS_DEFAULT_MBAR */
141 /* Initialise the MPC5xxx processor core */
142 /*--------------------------------------------------------------*/
146 /* initialize some things that are hard to access from C */
147 /*--------------------------------------------------------------*/
149 /* set up stack in on-chip SRAM */
150 lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
151 ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
152 ori r1, r3, CONFIG_SYS_INIT_SP_OFFSET
153 li r0, 0 /* Make room for stack frame header and */
154 stwu r0, -4(r1) /* clear final stack frame so that */
155 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
157 /* let the C-code set up the rest */
159 /* Be careful to keep code relocatable ! */
160 /*--------------------------------------------------------------*/
162 GET_GOT /* initialize GOT access */
165 bl cpu_init_f /* run low-level CPU init code (in Flash)*/
167 bl board_init_f /* run 1st part of board init code (in Flash)*/
169 /* NOTREACHED - board_init_f() does not return */
175 .globl _start_of_vectors
179 STD_EXCEPTION(0x200, MachineCheck, MachineCheckException)
181 /* Data Storage exception. */
182 STD_EXCEPTION(0x300, DataStorage, UnknownException)
184 /* Instruction Storage exception. */
185 STD_EXCEPTION(0x400, InstStorage, UnknownException)
187 /* External Interrupt exception. */
188 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
190 /* Alignment exception. */
193 EXCEPTION_PROLOG(SRR0, SRR1)
198 addi r3,r1,STACK_FRAME_OVERHEAD
199 EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
201 /* Program check exception */
204 EXCEPTION_PROLOG(SRR0, SRR1)
205 addi r3,r1,STACK_FRAME_OVERHEAD
206 EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
209 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
211 /* I guess we could implement decrementer, and may have
212 * to someday for timekeeping.
214 STD_EXCEPTION(0x900, Decrementer, timer_interrupt)
216 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
217 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
218 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
219 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
221 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
222 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
224 STD_EXCEPTION(0x1000, InstructionTLBMiss, UnknownException)
225 STD_EXCEPTION(0x1100, DataLoadTLBMiss, UnknownException)
226 STD_EXCEPTION(0x1200, DataStoreTLBMiss, UnknownException)
230 * This exception occurs when the program counter matches the
231 * Instruction Address Breakpoint Register (IABR).
233 * I want the cpu to halt if this occurs so I can hunt around
234 * with the debugger and look at things.
236 * When DEBUG is defined, both machine check enable (in the MSR)
237 * and checkstop reset enable (in the reset mode register) are
238 * turned off and so a checkstop condition will result in the cpu
241 * I force the cpu into a checkstop condition by putting an illegal
242 * instruction here (at least this is the theory).
244 * well - that didnt work, so just do an infinite loop!
248 STD_EXCEPTION(0x1300, InstructionBreakpoint, DebugException)
250 STD_EXCEPTION(0x1400, SMI, UnknownException)
252 STD_EXCEPTION(0x1500, Trap_15, UnknownException)
253 STD_EXCEPTION(0x1600, Trap_16, UnknownException)
254 STD_EXCEPTION(0x1700, Trap_17, UnknownException)
255 STD_EXCEPTION(0x1800, Trap_18, UnknownException)
256 STD_EXCEPTION(0x1900, Trap_19, UnknownException)
257 STD_EXCEPTION(0x1a00, Trap_1a, UnknownException)
258 STD_EXCEPTION(0x1b00, Trap_1b, UnknownException)
259 STD_EXCEPTION(0x1c00, Trap_1c, UnknownException)
260 STD_EXCEPTION(0x1d00, Trap_1d, UnknownException)
261 STD_EXCEPTION(0x1e00, Trap_1e, UnknownException)
262 STD_EXCEPTION(0x1f00, Trap_1f, UnknownException)
263 STD_EXCEPTION(0x2000, Trap_20, UnknownException)
264 STD_EXCEPTION(0x2100, Trap_21, UnknownException)
265 STD_EXCEPTION(0x2200, Trap_22, UnknownException)
266 STD_EXCEPTION(0x2300, Trap_23, UnknownException)
267 STD_EXCEPTION(0x2400, Trap_24, UnknownException)
268 STD_EXCEPTION(0x2500, Trap_25, UnknownException)
269 STD_EXCEPTION(0x2600, Trap_26, UnknownException)
270 STD_EXCEPTION(0x2700, Trap_27, UnknownException)
271 STD_EXCEPTION(0x2800, Trap_28, UnknownException)
272 STD_EXCEPTION(0x2900, Trap_29, UnknownException)
273 STD_EXCEPTION(0x2a00, Trap_2a, UnknownException)
274 STD_EXCEPTION(0x2b00, Trap_2b, UnknownException)
275 STD_EXCEPTION(0x2c00, Trap_2c, UnknownException)
276 STD_EXCEPTION(0x2d00, Trap_2d, UnknownException)
277 STD_EXCEPTION(0x2e00, Trap_2e, UnknownException)
278 STD_EXCEPTION(0x2f00, Trap_2f, UnknownException)
281 .globl _end_of_vectors
287 * This code finishes saving the registers to the exception frame
288 * and jumps to the appropriate handler for the exception.
289 * Register r21 is pointer into trap frame, r1 has new stack pointer.
291 .globl transfer_to_handler
302 andi. r24,r23,0x3f00 /* get vector offset */
306 lwz r24,0(r23) /* virtual address of handler */
307 lwz r23,4(r23) /* where to go when done */
312 rfi /* jump to handler, enable MMU */
315 mfmsr r28 /* Disable interrupts */
319 SYNC /* Some chip revs need this... */
334 lwz r2,_NIP(r1) /* Restore environment */
345 * This code initialises the MPC5xxx processor core
346 * (conforms to PowerPC 603e spec)
347 * Note: expects original MSR contents to be in r5.
353 /* Initialize machine status; enable machine check interrupt */
354 /*--------------------------------------------------------------*/
356 li r3, MSR_KERNEL /* Set ME and RI flags */
357 rlwimi r3, r5, 0, 25, 25 /* preserve IP bit set by HRCW */
359 rlwimi r3, r5, 0, 21, 22 /* debugger might set SE & BE bits */
361 SYNC /* Some chip revs need this... */
364 mtspr SRR1, r3 /* Make SRR1 match MSR */
366 /* Initialize the Hardware Implementation-dependent Registers */
367 /* HID0 also contains cache control */
368 /*--------------------------------------------------------------*/
370 lis r3, CONFIG_SYS_HID0_INIT@h
371 ori r3, r3, CONFIG_SYS_HID0_INIT@l
375 lis r3, CONFIG_SYS_HID0_FINAL@h
376 ori r3, r3, CONFIG_SYS_HID0_FINAL@l
380 /* clear all BAT's */
381 /*--------------------------------------------------------------*/
418 /* invalidate all tlb's */
420 /* From the 603e User Manual: "The 603e provides the ability to */
421 /* invalidate a TLB entry. The TLB Invalidate Entry (tlbie) */
422 /* instruction invalidates the TLB entry indexed by the EA, and */
423 /* operates on both the instruction and data TLBs simultaneously*/
424 /* invalidating four TLB entries (both sets in each TLB). The */
425 /* index corresponds to bits 15-19 of the EA. To invalidate all */
426 /* entries within both TLBs, 32 tlbie instructions should be */
427 /* issued, incrementing this field by one each time." */
429 /* "Note that the tlbia instruction is not implemented on the */
432 /* bits 15-19 correspond to addresses 0x00000000 to 0x0001F000 */
433 /* incrementing by 0x1000 each time. The code below is sort of */
434 /* based on code in "flush_tlbs" from arch/powerpc/kernel/head.S */
436 /*--------------------------------------------------------------*/
447 /*--------------------------------------------------------------*/
453 * Note: requires that all cache bits in
454 * HID0 are in the low half word.
461 ori r4, r4, HID0_ILOCK
463 ori r4, r3, HID0_ICFI
465 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
467 mtspr HID0, r3 /* clears invalidate */
470 .globl icache_disable
474 ori r4, r4, HID0_ICE|HID0_ILOCK
476 ori r4, r3, HID0_ICFI
478 mtspr HID0, r4 /* sets invalidate, clears enable and lock */
480 mtspr HID0, r3 /* clears invalidate */
486 rlwinm r3, r3, HID0_ICE_BITPOS + 1, 31, 31
494 ori r4, r4, HID0_DLOCK
498 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
500 mtspr HID0, r3 /* clears invalidate */
503 .globl dcache_disable
507 ori r4, r4, HID0_DCE|HID0_DLOCK
511 mtspr HID0, r4 /* sets invalidate, clears enable and lock */
513 mtspr HID0, r3 /* clears invalidate */
519 rlwinm r3, r3, HID0_DCE_BITPOS + 1, 31, 31
532 /*------------------------------------------------------------------------------*/
535 * void relocate_code (addr_sp, gd, addr_moni)
537 * This "function" does not return, instead it continues in RAM
538 * after relocating the monitor code.
542 * r5 = length in bytes
547 mr r1, r3 /* Set new stack pointer */
548 mr r9, r4 /* Save copy of Global Data pointer */
549 mr r10, r5 /* Save copy of Destination Address */
552 mr r3, r5 /* Destination Address */
553 lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
554 ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
555 lwz r5, GOT(__init_end)
557 li r6, CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
562 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address
568 /* First our own GOT */
570 /* then the one used by the C code */
580 beq cr1,4f /* In place copy is not necessary */
581 beq 7f /* Protect against 0 count */
600 * Now flush the cache: note that we must start from a cache aligned
601 * address. Otherwise we might miss one cache line.
605 beq 7f /* Always flush prefetch queue in any case */
608 mfspr r7,HID0 /* don't do dcbst if dcache is disabled */
609 rlwinm r7,r7,HID0_DCE_BITPOS+1,31,31
617 sync /* Wait for all dcbst to complete on bus */
618 9: mfspr r7,HID0 /* don't do icbi if icache is disabled */
619 rlwinm r7,r7,HID0_ICE_BITPOS+1,31,31
627 7: sync /* Wait for all icbi to complete on bus */
631 * We are done. Do not return, instead branch to second part of board
632 * initialization, now running from RAM.
635 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
642 * Relocation Function, r12 point to got2+0x8000
644 * Adjust got2 pointers, no need to check for 0, this code
645 * already puts a few entries in the table.
647 li r0,__got2_entries@sectoff@l
648 la r3,GOT(_GOT2_TABLE_)
649 lwz r11,GOT(_GOT2_TABLE_)
661 * Now adjust the fixups and the pointers to the fixups
662 * in case we need to move ourselves again.
664 li r0,__fixup_entries@sectoff@l
665 lwz r3,GOT(_FIXUP_TABLE_)
681 * Now clear BSS segment
683 lwz r3,GOT(__bss_start)
697 mr r3, r9 /* Global Data pointer */
698 mr r4, r10 /* Destination Address */
702 * Copy exception vector code to low memory
705 * r7: source address, r8: end address, r9: target address
709 mflr r4 /* save link register */
712 lwz r8, GOT(_end_of_vectors)
714 li r9, 0x100 /* reset vector always at 0x100 */
717 bgelr /* return if r7>=r8 - just in case */
727 * relocate `hdlr' and `int_return' entries
729 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
730 li r8, Alignment - _start + EXC_OFF_SYS_RESET
733 addi r7, r7, 0x100 /* next exception vector */
737 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
740 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
743 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
744 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
747 addi r7, r7, 0x100 /* next exception vector */
751 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
752 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
755 addi r7, r7, 0x100 /* next exception vector */
759 mfmsr r3 /* now that the vectors have */
760 lis r7, MSR_IP@h /* relocated into low memory */
761 ori r7, r7, MSR_IP@l /* MSR[IP] can be turned off */
762 andc r3, r3, r7 /* (if it was on) */
763 SYNC /* Some chip revs need this... */
767 mtlr r4 /* restore link register */