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
32 #define CONFIG_MPC5xxx 1 /* needed for Linux kernel header files */
33 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
35 #include <ppc_asm.tmpl>
38 #include <asm/cache.h>
41 #ifndef CONFIG_IDENT_STRING
42 #define CONFIG_IDENT_STRING ""
45 /* We don't want the MMU yet.
48 /* Floating Point enable, Machine Check and Recoverable Interr. */
50 #define MSR_KERNEL (MSR_FP|MSR_RI)
52 #define MSR_KERNEL (MSR_FP|MSR_ME|MSR_RI)
56 * Set up GOT: Global Offset Table
58 * Use r14 to access the GOT
61 GOT_ENTRY(_GOT2_TABLE_)
62 GOT_ENTRY(_FIXUP_TABLE_)
65 GOT_ENTRY(_start_of_vectors)
66 GOT_ENTRY(_end_of_vectors)
67 GOT_ENTRY(transfer_to_handler)
71 GOT_ENTRY(__bss_start)
81 .ascii " (", __DATE__, " - ", __TIME__, ")"
82 .ascii CONFIG_IDENT_STRING, "\0"
91 li r21, BOOTFLAG_COLD /* Normal Power-On */
95 . = EXC_OFF_SYS_RESET + 0x10
99 li r21, BOOTFLAG_WARM /* Software reboot */
104 mfmsr r5 /* save msr contents */
106 /* Move CSBoot and adjust instruction pointer */
107 /*--------------------------------------------------------------*/
109 #if defined(CFG_LOWBOOT)
110 # if defined(CFG_RAMBOOT)
111 # error CFG_LOWBOOT is incompatible with CFG_RAMBOOT
112 # endif /* CFG_RAMBOOT */
113 # if defined(CONFIG_MGT5100)
114 # error CFG_LOWBOOT is incompatible with MGT5100
115 # endif /* CONFIG_MGT5100 */
116 lis r4, CFG_DEFAULT_MBAR@h
117 lis r3, START_REG(CFG_BOOTCS_START)@h
118 ori r3, r3, START_REG(CFG_BOOTCS_START)@l
119 stw r3, 0x4(r4) /* CS0 start */
120 lis r3, STOP_REG(CFG_BOOTCS_START, CFG_BOOTCS_SIZE)@h
121 ori r3, r3, STOP_REG(CFG_BOOTCS_START, CFG_BOOTCS_SIZE)@l
122 stw r3, 0x8(r4) /* CS0 stop */
124 ori r3, r3, 0x02010000@l
125 stw r3, 0x54(r4) /* CS0 and Boot enable */
127 lis r3, lowboot_reentry@h /* jump from bootlow address space (0x0000xxxx) */
128 ori r3, r3, lowboot_reentry@l /* to the address space the linker used */
133 lis r3, START_REG(CFG_BOOTCS_START)@h
134 ori r3, r3, START_REG(CFG_BOOTCS_START)@l
135 stw r3, 0x4c(r4) /* Boot start */
136 lis r3, STOP_REG(CFG_BOOTCS_START, CFG_BOOTCS_SIZE)@h
137 ori r3, r3, STOP_REG(CFG_BOOTCS_START, CFG_BOOTCS_SIZE)@l
138 stw r3, 0x50(r4) /* Boot stop */
140 ori r3, r3, 0x02000001@l
141 stw r3, 0x54(r4) /* Boot enable, CS0 disable */
142 #endif /* CFG_LOWBOOT */
144 #if defined(CFG_DEFAULT_MBAR) && !defined(CFG_RAMBOOT)
146 ori r3, r3, CFG_MBAR@l
147 #if defined(CONFIG_MPC5200)
148 /* MBAR is mirrored into the MBAR SPR */
150 rlwinm r3, r3, 16, 16, 31
152 #if defined(CONFIG_MGT5100)
153 rlwinm r3, r3, 17, 15, 31
155 lis r4, CFG_DEFAULT_MBAR@h
157 #endif /* CFG_DEFAULT_MBAR */
159 /* Initialise the MPC5xxx processor core */
160 /*--------------------------------------------------------------*/
164 /* initialize some things that are hard to access from C */
165 /*--------------------------------------------------------------*/
167 /* set up stack in on-chip SRAM */
168 lis r3, CFG_INIT_RAM_ADDR@h
169 ori r3, r3, CFG_INIT_RAM_ADDR@l
170 ori r1, r3, CFG_INIT_SP_OFFSET
171 li r0, 0 /* Make room for stack frame header and */
172 stwu r0, -4(r1) /* clear final stack frame so that */
173 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
175 /* let the C-code set up the rest */
177 /* Be careful to keep code relocatable ! */
178 /*--------------------------------------------------------------*/
180 GET_GOT /* initialize GOT access */
183 bl cpu_init_f /* run low-level CPU init code (in Flash)*/
187 bl board_init_f /* run 1st part of board init code (in Flash)*/
193 .globl _start_of_vectors
197 STD_EXCEPTION(0x200, MachineCheck, MachineCheckException)
199 /* Data Storage exception. */
200 STD_EXCEPTION(0x300, DataStorage, UnknownException)
202 /* Instruction Storage exception. */
203 STD_EXCEPTION(0x400, InstStorage, UnknownException)
205 /* External Interrupt exception. */
206 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
208 /* Alignment exception. */
216 addi r3,r1,STACK_FRAME_OVERHEAD
218 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
219 rlwimi r20,r23,0,25,25 /* copy IP bit from saved MSR */
220 lwz r6,GOT(transfer_to_handler)
224 .long AlignmentException - _start + EXC_OFF_SYS_RESET
225 .long int_return - _start + EXC_OFF_SYS_RESET
227 /* Program check exception */
231 addi r3,r1,STACK_FRAME_OVERHEAD
233 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
234 rlwimi r20,r23,0,25,25 /* copy IP bit from saved MSR */
235 lwz r6,GOT(transfer_to_handler)
239 .long ProgramCheckException - _start + EXC_OFF_SYS_RESET
240 .long int_return - _start + EXC_OFF_SYS_RESET
242 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
244 /* I guess we could implement decrementer, and may have
245 * to someday for timekeeping.
247 STD_EXCEPTION(0x900, Decrementer, timer_interrupt)
249 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
250 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
251 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
252 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
254 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
255 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
257 STD_EXCEPTION(0x1000, InstructionTLBMiss, UnknownException)
258 STD_EXCEPTION(0x1100, DataLoadTLBMiss, UnknownException)
259 STD_EXCEPTION(0x1200, DataStoreTLBMiss, UnknownException)
263 * This exception occurs when the program counter matches the
264 * Instruction Address Breakpoint Register (IABR).
266 * I want the cpu to halt if this occurs so I can hunt around
267 * with the debugger and look at things.
269 * When DEBUG is defined, both machine check enable (in the MSR)
270 * and checkstop reset enable (in the reset mode register) are
271 * turned off and so a checkstop condition will result in the cpu
274 * I force the cpu into a checkstop condition by putting an illegal
275 * instruction here (at least this is the theory).
277 * well - that didnt work, so just do an infinite loop!
281 STD_EXCEPTION(0x1300, InstructionBreakpoint, DebugException)
283 STD_EXCEPTION(0x1400, SMI, UnknownException)
285 STD_EXCEPTION(0x1500, Trap_15, UnknownException)
286 STD_EXCEPTION(0x1600, Trap_16, UnknownException)
287 STD_EXCEPTION(0x1700, Trap_17, UnknownException)
288 STD_EXCEPTION(0x1800, Trap_18, UnknownException)
289 STD_EXCEPTION(0x1900, Trap_19, UnknownException)
290 STD_EXCEPTION(0x1a00, Trap_1a, UnknownException)
291 STD_EXCEPTION(0x1b00, Trap_1b, UnknownException)
292 STD_EXCEPTION(0x1c00, Trap_1c, UnknownException)
293 STD_EXCEPTION(0x1d00, Trap_1d, UnknownException)
294 STD_EXCEPTION(0x1e00, Trap_1e, UnknownException)
295 STD_EXCEPTION(0x1f00, Trap_1f, UnknownException)
296 STD_EXCEPTION(0x2000, Trap_20, UnknownException)
297 STD_EXCEPTION(0x2100, Trap_21, UnknownException)
298 STD_EXCEPTION(0x2200, Trap_22, UnknownException)
299 STD_EXCEPTION(0x2300, Trap_23, UnknownException)
300 STD_EXCEPTION(0x2400, Trap_24, UnknownException)
301 STD_EXCEPTION(0x2500, Trap_25, UnknownException)
302 STD_EXCEPTION(0x2600, Trap_26, UnknownException)
303 STD_EXCEPTION(0x2700, Trap_27, UnknownException)
304 STD_EXCEPTION(0x2800, Trap_28, UnknownException)
305 STD_EXCEPTION(0x2900, Trap_29, UnknownException)
306 STD_EXCEPTION(0x2a00, Trap_2a, UnknownException)
307 STD_EXCEPTION(0x2b00, Trap_2b, UnknownException)
308 STD_EXCEPTION(0x2c00, Trap_2c, UnknownException)
309 STD_EXCEPTION(0x2d00, Trap_2d, UnknownException)
310 STD_EXCEPTION(0x2e00, Trap_2e, UnknownException)
311 STD_EXCEPTION(0x2f00, Trap_2f, UnknownException)
314 .globl _end_of_vectors
320 * This code finishes saving the registers to the exception frame
321 * and jumps to the appropriate handler for the exception.
322 * Register r21 is pointer into trap frame, r1 has new stack pointer.
324 .globl transfer_to_handler
335 andi. r24,r23,0x3f00 /* get vector offset */
339 lwz r24,0(r23) /* virtual address of handler */
340 lwz r23,4(r23) /* where to go when done */
345 rfi /* jump to handler, enable MMU */
348 mfmsr r28 /* Disable interrupts */
352 SYNC /* Some chip revs need this... */
367 lwz r2,_NIP(r1) /* Restore environment */
378 * This code initialises the MPC5xxx processor core
379 * (conforms to PowerPC 603e spec)
380 * Note: expects original MSR contents to be in r5.
386 /* Initialize machine status; enable machine check interrupt */
387 /*--------------------------------------------------------------*/
389 li r3, MSR_KERNEL /* Set ME and RI flags */
390 rlwimi r3, r5, 0, 25, 25 /* preserve IP bit set by HRCW */
392 rlwimi r3, r5, 0, 21, 22 /* debugger might set SE & BE bits */
394 SYNC /* Some chip revs need this... */
397 mtspr SRR1, r3 /* Make SRR1 match MSR */
399 /* Initialize the Hardware Implementation-dependent Registers */
400 /* HID0 also contains cache control */
401 /*--------------------------------------------------------------*/
403 lis r3, CFG_HID0_INIT@h
404 ori r3, r3, CFG_HID0_INIT@l
408 lis r3, CFG_HID0_FINAL@h
409 ori r3, r3, CFG_HID0_FINAL@l
413 /* clear all BAT's */
414 /*--------------------------------------------------------------*/
451 /* invalidate all tlb's */
453 /* From the 603e User Manual: "The 603e provides the ability to */
454 /* invalidate a TLB entry. The TLB Invalidate Entry (tlbie) */
455 /* instruction invalidates the TLB entry indexed by the EA, and */
456 /* operates on both the instruction and data TLBs simultaneously*/
457 /* invalidating four TLB entries (both sets in each TLB). The */
458 /* index corresponds to bits 15-19 of the EA. To invalidate all */
459 /* entries within both TLBs, 32 tlbie instructions should be */
460 /* issued, incrementing this field by one each time." */
462 /* "Note that the tlbia instruction is not implemented on the */
465 /* bits 15-19 correspond to addresses 0x00000000 to 0x0001F000 */
466 /* incrementing by 0x1000 each time. The code below is sort of */
467 /* based on code in "flush_tlbs" from arch/ppc/kernel/head.S */
469 /*--------------------------------------------------------------*/
480 /*--------------------------------------------------------------*/
486 * Note: requires that all cache bits in
487 * HID0 are in the low half word.
494 ori r4, r4, HID0_ILOCK
496 ori r4, r3, HID0_ICFI
498 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
500 mtspr HID0, r3 /* clears invalidate */
503 .globl icache_disable
507 ori r4, r4, HID0_ICE|HID0_ILOCK
509 ori r4, r3, HID0_ICFI
511 mtspr HID0, r4 /* sets invalidate, clears enable and lock */
513 mtspr HID0, r3 /* clears invalidate */
519 rlwinm r3, r3, HID0_ICE_BITPOS + 1, 31, 31
527 ori r4, r4, HID0_DLOCK
531 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
533 mtspr HID0, r3 /* clears invalidate */
536 .globl dcache_disable
540 ori r4, r4, HID0_DCE|HID0_DLOCK
544 mtspr HID0, r4 /* sets invalidate, clears enable and lock */
546 mtspr HID0, r3 /* clears invalidate */
552 rlwinm r3, r3, HID0_DCE_BITPOS + 1, 31, 31
565 /*------------------------------------------------------------------------------*/
568 * void relocate_code (addr_sp, gd, addr_moni)
570 * This "function" does not return, instead it continues in RAM
571 * after relocating the monitor code.
575 * r5 = length in bytes
580 mr r1, r3 /* Set new stack pointer */
581 mr r9, r4 /* Save copy of Global Data pointer */
582 mr r10, r5 /* Save copy of Destination Address */
584 mr r3, r5 /* Destination Address */
585 lis r4, CFG_MONITOR_BASE@h /* Source Address */
586 ori r4, r4, CFG_MONITOR_BASE@l
587 lwz r5, GOT(__init_end)
589 li r6, CFG_CACHELINE_SIZE /* Cache Line Size */
594 * New GOT-PTR = (old GOT-PTR - CFG_MONITOR_BASE) + Destination Address
600 /* First our own GOT */
602 /* then the one used by the C code */
612 beq cr1,4f /* In place copy is not necessary */
613 beq 7f /* Protect against 0 count */
632 * Now flush the cache: note that we must start from a cache aligned
633 * address. Otherwise we might miss one cache line.
637 beq 7f /* Always flush prefetch queue in any case */
640 mfspr r7,HID0 /* don't do dcbst if dcache is disabled */
641 rlwinm r7,r7,HID0_DCE_BITPOS+1,31,31
649 sync /* Wait for all dcbst to complete on bus */
650 9: mfspr r7,HID0 /* don't do icbi if icache is disabled */
651 rlwinm r7,r7,HID0_ICE_BITPOS+1,31,31
659 7: sync /* Wait for all icbi to complete on bus */
663 * We are done. Do not return, instead branch to second part of board
664 * initialization, now running from RAM.
667 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
674 * Relocation Function, r14 point to got2+0x8000
676 * Adjust got2 pointers, no need to check for 0, this code
677 * already puts a few entries in the table.
679 li r0,__got2_entries@sectoff@l
680 la r3,GOT(_GOT2_TABLE_)
681 lwz r11,GOT(_GOT2_TABLE_)
691 * Now adjust the fixups and the pointers to the fixups
692 * in case we need to move ourselves again.
694 2: li r0,__fixup_entries@sectoff@l
695 lwz r3,GOT(_FIXUP_TABLE_)
709 * Now clear BSS segment
711 lwz r3,GOT(__bss_start)
725 mr r3, r9 /* Global Data pointer */
726 mr r4, r10 /* Destination Address */
730 * Copy exception vector code to low memory
733 * r7: source address, r8: end address, r9: target address
738 lwz r8, GOT(_end_of_vectors)
740 li r9, 0x100 /* reset vector always at 0x100 */
743 bgelr /* return if r7>=r8 - just in case */
745 mflr r4 /* save link register */
755 * relocate `hdlr' and `int_return' entries
757 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
758 li r8, Alignment - _start + EXC_OFF_SYS_RESET
761 addi r7, r7, 0x100 /* next exception vector */
765 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
768 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
771 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
772 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
775 addi r7, r7, 0x100 /* next exception vector */
779 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
780 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
783 addi r7, r7, 0x100 /* next exception vector */
787 mfmsr r3 /* now that the vectors have */
788 lis r7, MSR_IP@h /* relocated into low memory */
789 ori r7, r7, MSR_IP@l /* MSR[IP] can be turned off */
790 andc r3, r3, r7 /* (if it was on) */
791 SYNC /* Some chip revs need this... */
795 mtlr r4 /* restore link register */
799 * Function: relocate entries for one exception vector
802 lwz r0, 0(r7) /* hdlr ... */
803 add r0, r0, r3 /* ... += dest_addr */
806 lwz r0, 4(r7) /* int_return ... */
807 add r0, r0, r3 /* ... += dest_addr */