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 MPC8220 CPUs
30 #include <timestamp.h>
33 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
35 #include <ppc_asm.tmpl>
38 #include <asm/cache.h>
40 #include <asm/u-boot.h>
42 #ifndef CONFIG_IDENT_STRING
43 #define CONFIG_IDENT_STRING ""
46 /* We don't want the MMU yet.
49 /* Floating Point enable, Machine Check and Recoverable Interr. */
51 #define MSR_KERNEL (MSR_FP|MSR_RI)
53 #define MSR_KERNEL (MSR_FP|MSR_ME|MSR_RI)
57 * Set up GOT: Global Offset Table
59 * Use r12 to access the GOT
62 GOT_ENTRY(_GOT2_TABLE_)
63 GOT_ENTRY(_FIXUP_TABLE_)
66 GOT_ENTRY(_start_of_vectors)
67 GOT_ENTRY(_end_of_vectors)
68 GOT_ENTRY(transfer_to_handler)
72 GOT_ENTRY(__bss_start)
82 .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
83 .ascii CONFIG_IDENT_STRING, "\0"
92 mfmsr r5 /* save msr contents */
94 /* replace default MBAR base address from 0x80000000
97 #if defined(CONFIG_SYS_DEFAULT_MBAR) && !defined(CONFIG_SYS_RAMBOOT)
98 lis r3, CONFIG_SYS_MBAR@h
99 ori r3, r3, CONFIG_SYS_MBAR@l
101 /* MBAR is mirrored into the MBAR SPR */
104 lis r4, CONFIG_SYS_DEFAULT_MBAR@h
106 #endif /* CONFIG_SYS_DEFAULT_MBAR */
108 /* Initialise the MPC8220 processor core */
109 /*--------------------------------------------------------------*/
113 /* initialize some things that are hard to access from C */
114 /*--------------------------------------------------------------*/
116 /* set up stack in on-chip SRAM */
117 lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
118 ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
119 ori r1, r3, CONFIG_SYS_INIT_SP_OFFSET
121 li r0, 0 /* Make room for stack frame header and */
122 stwu r0, -4(r1) /* clear final stack frame so that */
123 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
125 /* let the C-code set up the rest */
127 /* Be careful to keep code relocatable ! */
128 /*--------------------------------------------------------------*/
130 GET_GOT /* initialize GOT access */
133 bl cpu_init_f /* run low-level CPU init code (in Flash)*/
135 bl board_init_f /* run 1st part of board init code (in Flash)*/
137 /* NOTREACHED - board_init_f() does not return */
143 .globl _start_of_vectors
147 STD_EXCEPTION(0x200, MachineCheck, MachineCheckException)
149 /* Data Storage exception. */
150 STD_EXCEPTION(0x300, DataStorage, UnknownException)
152 /* Instruction Storage exception. */
153 STD_EXCEPTION(0x400, InstStorage, UnknownException)
155 /* External Interrupt exception. */
156 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
158 /* Alignment exception. */
161 EXCEPTION_PROLOG(SRR0, SRR1)
166 addi r3,r1,STACK_FRAME_OVERHEAD
167 EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
169 /* Program check exception */
172 EXCEPTION_PROLOG(SRR0, SRR1)
173 addi r3,r1,STACK_FRAME_OVERHEAD
174 EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
177 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
179 /* I guess we could implement decrementer, and may have
180 * to someday for timekeeping.
182 STD_EXCEPTION(0x900, Decrementer, timer_interrupt)
184 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
185 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
186 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
187 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
189 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
190 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
192 STD_EXCEPTION(0x1000, InstructionTLBMiss, UnknownException)
193 STD_EXCEPTION(0x1100, DataLoadTLBMiss, UnknownException)
194 STD_EXCEPTION(0x1200, DataStoreTLBMiss, UnknownException)
198 * This exception occurs when the program counter matches the
199 * Instruction Address Breakpoint Register (IABR).
201 * I want the cpu to halt if this occurs so I can hunt around
202 * with the debugger and look at things.
204 * When DEBUG is defined, both machine check enable (in the MSR)
205 * and checkstop reset enable (in the reset mode register) are
206 * turned off and so a checkstop condition will result in the cpu
209 * I force the cpu into a checkstop condition by putting an illegal
210 * instruction here (at least this is the theory).
212 * well - that didnt work, so just do an infinite loop!
216 STD_EXCEPTION(0x1300, InstructionBreakpoint, DebugException)
218 STD_EXCEPTION(0x1400, SMI, UnknownException)
220 STD_EXCEPTION(0x1500, Trap_15, UnknownException)
221 STD_EXCEPTION(0x1600, Trap_16, UnknownException)
222 STD_EXCEPTION(0x1700, Trap_17, UnknownException)
223 STD_EXCEPTION(0x1800, Trap_18, UnknownException)
224 STD_EXCEPTION(0x1900, Trap_19, UnknownException)
225 STD_EXCEPTION(0x1a00, Trap_1a, UnknownException)
226 STD_EXCEPTION(0x1b00, Trap_1b, UnknownException)
227 STD_EXCEPTION(0x1c00, Trap_1c, UnknownException)
228 STD_EXCEPTION(0x1d00, Trap_1d, UnknownException)
229 STD_EXCEPTION(0x1e00, Trap_1e, UnknownException)
230 STD_EXCEPTION(0x1f00, Trap_1f, UnknownException)
231 STD_EXCEPTION(0x2000, Trap_20, UnknownException)
232 STD_EXCEPTION(0x2100, Trap_21, UnknownException)
233 STD_EXCEPTION(0x2200, Trap_22, UnknownException)
234 STD_EXCEPTION(0x2300, Trap_23, UnknownException)
235 STD_EXCEPTION(0x2400, Trap_24, UnknownException)
236 STD_EXCEPTION(0x2500, Trap_25, UnknownException)
237 STD_EXCEPTION(0x2600, Trap_26, UnknownException)
238 STD_EXCEPTION(0x2700, Trap_27, UnknownException)
239 STD_EXCEPTION(0x2800, Trap_28, UnknownException)
240 STD_EXCEPTION(0x2900, Trap_29, UnknownException)
241 STD_EXCEPTION(0x2a00, Trap_2a, UnknownException)
242 STD_EXCEPTION(0x2b00, Trap_2b, UnknownException)
243 STD_EXCEPTION(0x2c00, Trap_2c, UnknownException)
244 STD_EXCEPTION(0x2d00, Trap_2d, UnknownException)
245 STD_EXCEPTION(0x2e00, Trap_2e, UnknownException)
246 STD_EXCEPTION(0x2f00, Trap_2f, UnknownException)
249 .globl _end_of_vectors
255 * This code finishes saving the registers to the exception frame
256 * and jumps to the appropriate handler for the exception.
257 * Register r21 is pointer into trap frame, r1 has new stack pointer.
259 .globl transfer_to_handler
270 andi. r24,r23,0x3f00 /* get vector offset */
274 lwz r24,0(r23) /* virtual address of handler */
275 lwz r23,4(r23) /* where to go when done */
280 rfi /* jump to handler, enable MMU */
283 mfmsr r28 /* Disable interrupts */
287 SYNC /* Some chip revs need this... */
302 lwz r2,_NIP(r1) /* Restore environment */
313 * This code initialises the MPC8220 processor core
314 * (conforms to PowerPC 603e spec)
315 * Note: expects original MSR contents to be in r5.
318 .globl init_8220_core
321 /* Initialize machine status; enable machine check interrupt */
322 /*--------------------------------------------------------------*/
324 li r3, MSR_KERNEL /* Set ME and RI flags */
325 rlwimi r3, r5, 0, 25, 25 /* preserve IP bit set by HRCW */
327 rlwimi r3, r5, 0, 21, 22 /* debugger might set SE & BE bits */
329 SYNC /* Some chip revs need this... */
332 mtspr SRR1, r3 /* Make SRR1 match MSR */
334 /* Initialize the Hardware Implementation-dependent Registers */
335 /* HID0 also contains cache control */
336 /*--------------------------------------------------------------*/
338 lis r3, CONFIG_SYS_HID0_INIT@h
339 ori r3, r3, CONFIG_SYS_HID0_INIT@l
343 lis r3, CONFIG_SYS_HID0_FINAL@h
344 ori r3, r3, CONFIG_SYS_HID0_FINAL@l
348 /* Enable Extra BATs */
349 mfspr r3, 1011 /* HID2 */
356 /* clear all BAT's */
357 /*--------------------------------------------------------------*/
394 /* invalidate all tlb's */
396 /* From the 603e User Manual: "The 603e provides the ability to */
397 /* invalidate a TLB entry. The TLB Invalidate Entry (tlbie) */
398 /* instruction invalidates the TLB entry indexed by the EA, and */
399 /* operates on both the instruction and data TLBs simultaneously*/
400 /* invalidating four TLB entries (both sets in each TLB). The */
401 /* index corresponds to bits 15-19 of the EA. To invalidate all */
402 /* entries within both TLBs, 32 tlbie instructions should be */
403 /* issued, incrementing this field by one each time." */
405 /* "Note that the tlbia instruction is not implemented on the */
408 /* bits 15-19 correspond to addresses 0x00000000 to 0x0001F000 */
409 /* incrementing by 0x1000 each time. The code below is sort of */
410 /* based on code in "flush_tlbs" from arch/powerpc/kernel/head.S */
412 /*--------------------------------------------------------------*/
423 /*--------------------------------------------------------------*/
429 * Note: requires that all cache bits in
430 * HID0 are in the low half word.
435 ori r4, r4, CONFIG_SYS_HID0_INIT /* set ICE & ICFI bit */
436 rlwinm r3, r4, 0, 21, 19 /* clear the ICFI bit */
439 * The setting of the instruction cache enable (ICE) bit must be
440 * preceded by an isync instruction to prevent the cache from being
441 * enabled or disabled while an instruction access is in progress.
444 mtspr HID0, r4 /* Enable Instr Cache & Inval cache */
445 mtspr HID0, r3 /* using 2 consec instructions */
449 .globl icache_disable
452 rlwinm r3, r3, 0, 17, 15 /* clear the ICE bit */
460 rlwinm r3, r3, HID0_ICE_BITPOS + 1, 31, 31
466 ori r4, r4, HID0_DCE|HID0_DCFI /* set DCE & DCFI bit */
467 rlwinm r3, r4, 0, 22, 20 /* clear the DCFI bit */
469 /* Enable address translation in MSR bit */
475 * The setting of the instruction cache enable (ICE) bit must be
476 * preceded by an isync instruction to prevent the cache from being
477 * enabled or disabled while an instruction access is in progress.
480 mtspr HID0, r4 /* Enable Data Cache & Inval cache*/
481 mtspr HID0, r3 /* using 2 consec instructions */
485 .globl dcache_disable
488 rlwinm r3, r3, 0, 18, 16 /* clear the DCE bit */
496 rlwinm r3, r3, HID0_DCE_BITPOS + 1, 31, 31
504 /*------------------------------------------------------------------------------*/
507 * void relocate_code (addr_sp, gd, addr_moni)
509 * This "function" does not return, instead it continues in RAM
510 * after relocating the monitor code.
514 * r5 = length in bytes
519 mr r1, r3 /* Set new stack pointer */
520 mr r9, r4 /* Save copy of Global Data pointer */
521 mr r10, r5 /* Save copy of Destination Address */
524 mr r3, r5 /* Destination Address */
525 lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
526 ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
527 lwz r5, GOT(__init_end)
529 li r6, CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
534 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address
540 /* First our own GOT */
542 /* then the one used by the C code */
552 beq cr1,4f /* In place copy is not necessary */
553 beq 7f /* Protect against 0 count */
572 * Now flush the cache: note that we must start from a cache aligned
573 * address. Otherwise we might miss one cache line.
577 beq 7f /* Always flush prefetch queue in any case */
580 mfspr r7,HID0 /* don't do dcbst if dcache is disabled */
581 rlwinm r7,r7,HID0_DCE_BITPOS+1,31,31
589 sync /* Wait for all dcbst to complete on bus */
590 9: mfspr r7,HID0 /* don't do icbi if icache is disabled */
591 rlwinm r7,r7,HID0_ICE_BITPOS+1,31,31
599 7: sync /* Wait for all icbi to complete on bus */
603 * We are done. Do not return, instead branch to second part of board
604 * initialization, now running from RAM.
607 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
614 * Relocation Function, r12 point to got2+0x8000
616 * Adjust got2 pointers, no need to check for 0, this code
617 * already puts a few entries in the table.
619 li r0,__got2_entries@sectoff@l
620 la r3,GOT(_GOT2_TABLE_)
621 lwz r11,GOT(_GOT2_TABLE_)
633 * Now adjust the fixups and the pointers to the fixups
634 * in case we need to move ourselves again.
636 li r0,__fixup_entries@sectoff@l
637 lwz r3,GOT(_FIXUP_TABLE_)
653 * Now clear BSS segment
655 lwz r3,GOT(__bss_start)
669 mr r3, r9 /* Global Data pointer */
670 mr r4, r10 /* Destination Address */
674 * Copy exception vector code to low memory
677 * r7: source address, r8: end address, r9: target address
681 mflr r4 /* save link register */
684 lwz r8, GOT(_end_of_vectors)
686 li r9, 0x100 /* reset vector always at 0x100 */
689 bgelr /* return if r7>=r8 - just in case */
699 * relocate `hdlr' and `int_return' entries
701 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
702 li r8, Alignment - _start + EXC_OFF_SYS_RESET
705 addi r7, r7, 0x100 /* next exception vector */
709 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
712 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
715 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
716 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
719 addi r7, r7, 0x100 /* next exception vector */
723 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
724 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
727 addi r7, r7, 0x100 /* next exception vector */
731 mfmsr r3 /* now that the vectors have */
732 lis r7, MSR_IP@h /* relocated into low memory */
733 ori r7, r7, MSR_IP@l /* MSR[IP] can be turned off */
734 andc r3, r3, r7 /* (if it was on) */
735 SYNC /* Some chip revs need this... */
739 mtlr r4 /* restore link register */