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>
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,
25 /* U-Boot - Startup Code for PowerPC based Embedded Boards
28 * The processor starts at 0x00000100 and the code is executed
29 * from flash. The code is organized to be at an other address
30 * in memory, but as long we don't jump around before relocating.
31 * board_init lies at a quite high address and when the cpu has
32 * jumped there, everything is ok.
33 * This works because the cpu gives the FLASH (CS0) the whole
34 * address space at startup, and board_init lies as a echo of
35 * the flash somewhere up there in the memorymap.
37 * board_init will change CS0 to be positioned at the correct
38 * address and (s)dram will be positioned at address 0
40 #include <asm-offsets.h>
43 #include <timestamp.h>
46 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
48 #include <ppc_asm.tmpl>
51 #include <asm/cache.h>
53 #include <asm/u-boot.h>
55 #ifndef CONFIG_IDENT_STRING
56 #define CONFIG_IDENT_STRING ""
59 /* We don't want the MMU yet.
62 /* FP, Machine Check and Recoverable Interr. */
63 #define MSR_KERNEL ( MSR_FP | MSR_ME | MSR_RI )
66 * Set up GOT: Global Offset Table
68 * Use r12 to access the GOT
71 GOT_ENTRY(_GOT2_TABLE_)
72 GOT_ENTRY(_FIXUP_TABLE_)
75 GOT_ENTRY(_start_of_vectors)
76 GOT_ENTRY(_end_of_vectors)
77 GOT_ENTRY(transfer_to_handler)
80 GOT_ENTRY(__bss_end__)
81 GOT_ENTRY(__bss_start)
82 #if defined(CONFIG_FADS)
83 GOT_ENTRY(environment)
88 * r3 - 1st arg to board_init(): IMMP pointer
89 * r4 - 2nd arg to board_init(): boot flag
92 .long 0x27051956 /* U-Boot Magic Number */
96 .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
97 .ascii CONFIG_IDENT_STRING, "\0"
102 /* Initialize machine status; enable machine check interrupt */
103 /*----------------------------------------------------------------------*/
104 li r3, MSR_KERNEL /* Set FP, ME, RI flags */
106 mtspr SRR1, r3 /* Make SRR1 match MSR */
108 addis r0,0,0x0000 /* lets make sure that r0 is really 0 */
109 mtspr HID0, r0 /* disable I and D caches */
111 mfspr r3, ICR /* clear Interrupt Cause Register */
113 mfmsr r3 /* turn off address translation */
119 sync /* the MMU should be off... */
123 #if defined(CONFIG_BMW)
124 bl early_init_f /* Must be ASM: no stack yet! */
127 * Setup BATs - cannot be done in C since we don't have a stack yet
134 ori r3, r3, (MSR_IR | MSR_DR)
136 #if !defined(CONFIG_BMW)
137 /* Enable and invalidate data cache.
141 ori r3, r3, HID0_DCE | HID0_DCI
148 /* Allocate Initial RAM in data cache.
150 lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
151 ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
159 /* Lock way0 in data cache.
168 #endif /* !CONFIG_BMW */
170 * Thisk the stack pointer *somewhere* sensible. Doesnt
171 * matter much where as we'll move it when we relocate
173 lis r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)@h
174 ori r1, r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)@l
176 li r0, 0 /* Make room for stack frame header and */
177 stwu r0, -4(r1) /* clear final stack frame so that */
178 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
180 /* let the C-code set up the rest */
182 /* Be careful to keep code relocatable ! */
183 /*----------------------------------------------------------------------*/
185 GET_GOT /* initialize GOT access */
188 bl cpu_init_f /* run low-level CPU init code (from Flash) */
190 bl board_init_f /* run 1st part of board init code (from Flash) */
192 /* NOTREACHED - board_init_f() does not return */
195 .globl _start_of_vectors
199 STD_EXCEPTION(EXC_OFF_MACH_CHCK, MachineCheck, MachineCheckException)
201 /* Data Storage exception. "Never" generated on the 860. */
202 STD_EXCEPTION(EXC_OFF_DATA_STOR, DataStorage, UnknownException)
204 /* Instruction Storage exception. "Never" generated on the 860. */
205 STD_EXCEPTION(EXC_OFF_INS_STOR, InstStorage, UnknownException)
207 /* External Interrupt exception. */
208 STD_EXCEPTION(EXC_OFF_EXTERNAL, ExtInterrupt, external_interrupt)
210 /* Alignment exception. */
213 EXCEPTION_PROLOG(SRR0, SRR1)
218 addi r3,r1,STACK_FRAME_OVERHEAD
219 EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
221 /* Program check exception */
224 EXCEPTION_PROLOG(SRR0, SRR1)
225 addi r3,r1,STACK_FRAME_OVERHEAD
226 EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
229 /* No FPU on MPC8xx. This exception is not supposed to happen.
231 STD_EXCEPTION(EXC_OFF_FPUNAVAIL, FPUnavailable, UnknownException)
233 /* I guess we could implement decrementer, and may have
234 * to someday for timekeeping.
236 STD_EXCEPTION(EXC_OFF_DECR, Decrementer, timer_interrupt)
237 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
238 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
239 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
241 STD_EXCEPTION(EXC_OFF_TRACE, SingleStep, UnknownException)
243 STD_EXCEPTION(EXC_OFF_FPUNASSIST, Trap_0e, UnknownException)
244 STD_EXCEPTION(EXC_OFF_PMI, Trap_0f, UnknownException)
246 STD_EXCEPTION(EXC_OFF_ITME, InstructionTransMiss, UnknownException)
247 STD_EXCEPTION(EXC_OFF_DLTME, DataLoadTransMiss, UnknownException)
248 STD_EXCEPTION(EXC_OFF_DSTME, DataStoreTransMiss, UnknownException)
249 STD_EXCEPTION(EXC_OFF_IABE, InstructionBreakpoint, DebugException)
250 STD_EXCEPTION(EXC_OFF_SMIE, SysManageInt, UnknownException)
251 STD_EXCEPTION(0x1500, Reserved5, UnknownException)
252 STD_EXCEPTION(0x1600, Reserved6, UnknownException)
253 STD_EXCEPTION(0x1700, Reserved7, UnknownException)
254 STD_EXCEPTION(0x1800, Reserved8, UnknownException)
255 STD_EXCEPTION(0x1900, Reserved9, UnknownException)
256 STD_EXCEPTION(0x1a00, ReservedA, UnknownException)
257 STD_EXCEPTION(0x1b00, ReservedB, UnknownException)
258 STD_EXCEPTION(0x1c00, ReservedC, UnknownException)
259 STD_EXCEPTION(0x1d00, ReservedD, UnknownException)
260 STD_EXCEPTION(0x1e00, ReservedE, UnknownException)
261 STD_EXCEPTION(0x1f00, ReservedF, UnknownException)
263 STD_EXCEPTION(EXC_OFF_RMTE, RunModeTrace, UnknownException)
265 .globl _end_of_vectors
272 * This code finishes saving the registers to the exception frame
273 * and jumps to the appropriate handler for the exception.
274 * Register r21 is pointer into trap frame, r1 has new stack pointer.
276 .globl transfer_to_handler
288 mfspr r23,SPRG3 /* if from user, fix up tss.regs */
290 addi r24,r1,STACK_FRAME_OVERHEAD
292 2: addi r2,r23,-TSS /* set r2 to current */
296 andi. r24,r23,0x3f00 /* get vector offset */
300 mtspr SPRG2,r22 /* r1 is now kernel sp */
302 addi r24,r2,TASK_STRUCT_SIZE /* check for kernel stack overflow */
306 bgt stack_ovf /* if r2 < r1 < r2+TASK_STRUCT_SIZE */
308 lwz r24,0(r23) /* virtual address of handler */
309 lwz r23,4(r23) /* where to go when done */
311 ori r20,r20,0x30 /* enable IR, DR */
315 rfi /* jump to handler, enable MMU */
318 mfmsr r28 /* Disable interrupts */
322 SYNC /* Some chip revs need this... */
337 lwz r2,_NIP(r1) /* Restore environment */
351 mfspr r5,HID0 /* turn on the I cache. */
352 ori r5,r5,0x8800 /* Instruction cache only! */
355 and r6,r5,r6 /* clear the invalidate bit */
363 .globl icache_disable
378 srwi r3, r3, 15 /* >>15 & 1=> select bit 16 */
384 mfspr r5,HID0 /* turn on the D cache. */
385 ori r5,r5,0x4400 /* Data cache only! */
386 mfspr r4, PVR /* read PVR */
387 srawi r3, r4, 16 /* shift off the least 16 bits */
388 cmpi 0, 0, r3, 0xC /* Check for Max pvr */
390 ori r5,r5,0x0040 /* setting the DCFA bit, for Max rev 1 errata */
394 and r6,r5,r6 /* clear the invalidate bit */
402 .globl dcache_disable
417 srwi r3, r3, 14 /* >>14 & 1=> select bit 17 */
423 /*TODO : who uses this, what should it do?
434 /*------------------------------------------------------------------------------*/
437 * void relocate_code (addr_sp, gd, addr_moni)
439 * This "function" does not return, instead it continues in RAM
440 * after relocating the monitor code.
444 * r5 = length in bytes
450 mr r1, r3 /* Set new stack pointer */
451 mr r9, r4 /* Save copy of Global Data pointer */
452 mr r10, r5 /* Save copy of Destination Address */
455 mr r3, r5 /* Destination Address */
456 #ifdef CONFIG_SYS_RAMBOOT
457 lis r4, CONFIG_SYS_SDRAM_BASE@h /* Source Address */
458 ori r4, r4, CONFIG_SYS_SDRAM_BASE@l
460 lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
461 ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
463 lwz r5, GOT(__init_end)
465 li r6, CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
470 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address
476 /* First our own GOT */
478 /* the the one used by the C code */
488 beq cr1,4f /* In place copy is not necessary */
489 beq 7f /* Protect against 0 count */
508 #if !defined(CONFIG_BMW)
509 /* Unlock the data cache and invalidate locked area */
512 lis r4, CONFIG_SYS_INIT_RAM_ADDR@h
513 ori r4, r4, CONFIG_SYS_INIT_RAM_ADDR@l
523 * Now flush the cache: note that we must start from a cache aligned
524 * address. Otherwise we might miss one cache line.
528 beq 7f /* Always flush prefetch queue in any case */
536 sync /* Wait for all dcbst to complete on bus */
542 7: sync /* Wait for all icbi to complete on bus */
546 * We are done. Do not return, instead branch to second part of board
547 * initialization, now running from RAM.
550 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
557 * Relocation Function, r12 point to got2+0x8000
559 * Adjust got2 pointers, no need to check for 0, this code
560 * already puts a few entries in the table.
562 li r0,__got2_entries@sectoff@l
563 la r3,GOT(_GOT2_TABLE_)
564 lwz r11,GOT(_GOT2_TABLE_)
576 * Now adjust the fixups and the pointers to the fixups
577 * in case we need to move ourselves again.
579 li r0,__fixup_entries@sectoff@l
580 lwz r3,GOT(_FIXUP_TABLE_)
596 * Now clear BSS segment
598 lwz r3,GOT(__bss_start)
599 lwz r4,GOT(__bss_end__)
612 mr r3, r9 /* Global Data pointer */
613 mr r4, r10 /* Destination Address */
617 * Copy exception vector code to low memory
620 * r7: source address, r8: end address, r9: target address
624 mflr r4 /* save link register */
627 lwz r8, GOT(_end_of_vectors)
629 li r9, 0x100 /* reset vector always at 0x100 */
632 bgelr /* return if r7>=r8 - just in case */
642 * relocate `hdlr' and `int_return' entries
644 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
645 li r8, Alignment - _start + EXC_OFF_SYS_RESET
648 addi r7, r7, 0x100 /* next exception vector */
652 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
655 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
658 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
659 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
662 addi r7, r7, 0x100 /* next exception vector */
666 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
667 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
670 addi r7, r7, 0x100 /* next exception vector */
674 mtlr r4 /* restore link register */
677 /* Setup the BAT registers.
680 lis r4, CONFIG_SYS_IBAT0L@h
681 ori r4, r4, CONFIG_SYS_IBAT0L@l
682 lis r3, CONFIG_SYS_IBAT0U@h
683 ori r3, r3, CONFIG_SYS_IBAT0U@l
688 lis r4, CONFIG_SYS_DBAT0L@h
689 ori r4, r4, CONFIG_SYS_DBAT0L@l
690 lis r3, CONFIG_SYS_DBAT0U@h
691 ori r3, r3, CONFIG_SYS_DBAT0U@l
696 lis r4, CONFIG_SYS_IBAT1L@h
697 ori r4, r4, CONFIG_SYS_IBAT1L@l
698 lis r3, CONFIG_SYS_IBAT1U@h
699 ori r3, r3, CONFIG_SYS_IBAT1U@l
704 lis r4, CONFIG_SYS_DBAT1L@h
705 ori r4, r4, CONFIG_SYS_DBAT1L@l
706 lis r3, CONFIG_SYS_DBAT1U@h
707 ori r3, r3, CONFIG_SYS_DBAT1U@l
712 lis r4, CONFIG_SYS_IBAT2L@h
713 ori r4, r4, CONFIG_SYS_IBAT2L@l
714 lis r3, CONFIG_SYS_IBAT2U@h
715 ori r3, r3, CONFIG_SYS_IBAT2U@l
720 lis r4, CONFIG_SYS_DBAT2L@h
721 ori r4, r4, CONFIG_SYS_DBAT2L@l
722 lis r3, CONFIG_SYS_DBAT2U@h
723 ori r3, r3, CONFIG_SYS_DBAT2U@l
728 lis r4, CONFIG_SYS_IBAT3L@h
729 ori r4, r4, CONFIG_SYS_IBAT3L@l
730 lis r3, CONFIG_SYS_IBAT3U@h
731 ori r3, r3, CONFIG_SYS_IBAT3U@l
736 lis r4, CONFIG_SYS_DBAT3L@h
737 ori r4, r4, CONFIG_SYS_DBAT3L@l
738 lis r3, CONFIG_SYS_DBAT3U@h
739 ori r3, r3, CONFIG_SYS_DBAT3U@l
745 * -> for (val = 0; val < 0x20000; val+=0x1000)