2 * Copyright 2004 Freescale Semiconductor.
3 * Copyright (C) 2003 Motorola,Inc.
4 * Xianghua Xiao<X.Xiao@motorola.com>
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 Motorola 85xx PowerPC based Embedded Boards
27 * The processor starts at 0xfffffffc and the code is first executed in the
28 * last 4K page(0xfffff000-0xffffffff) in flash/rom.
36 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
38 #include <ppc_asm.tmpl>
41 #include <asm/cache.h>
44 #ifndef CONFIG_IDENT_STRING
45 #define CONFIG_IDENT_STRING ""
49 #define MSR_KERNEL ( MSR_ME ) /* Machine Check */
52 * Set up GOT: Global Offset Table
54 * Use r14 to access the GOT
57 GOT_ENTRY(_GOT2_TABLE_)
58 GOT_ENTRY(_FIXUP_TABLE_)
61 GOT_ENTRY(_start_of_vectors)
62 GOT_ENTRY(_end_of_vectors)
63 GOT_ENTRY(transfer_to_handler)
67 GOT_ENTRY(__bss_start)
71 * e500 Startup -- after reset only the last 4KB of the effective
72 * address space is mapped in the MMU L2 TLB1 Entry0. The .bootpg
73 * section is located at THIS LAST page and basically does three
74 * things: clear some registers, set up exception tables and
75 * add more TLB entries for 'larger spaces'(e.g. the boot rom) to
76 * continue the boot procedure.
78 * Once the boot rom is mapped by TLB entries we can proceed
79 * with normal startup.
88 lis r1, PVR_85xx_REV1@h
89 ori r1, r1, PVR_85xx_REV1@l
93 /* Semi-bogus errata fixup for Rev 1 */
98 * Before invalidating MMU L1/L2, read TLB1 Entry 0 and then
99 * write it back immediately to fixup a Rev 1 bug (Errata CPU4)
100 * for this initial TLB1 entry 0, otherwise the TLB1 entry 0
101 * will be invalidated (incorrectly).
111 * Clear and set up some registers.
112 * Note: Some registers need strict synchronization by
113 * sync/mbar/msync/isync when being "mtspr".
114 * BookE: isync before PID,tlbivax,tlbwe
115 * BookE: isync after MSR,PID; msync_isync after tlbivax & tlbwe
116 * E500: msync,isync before L1CSR0
117 * E500: isync after BBEAR,BBTAR,BUCSR,DBCR0,DBCR1,HID0,HID1,
118 * L1CSR0, L1CSR1, MAS[0,1,2,3,4,6],MMUCSR0, PID[0,1,2],
122 /* invalidate d-cache */
130 /* disable d-cache */
134 /* invalidate i-cache */
140 /* disable i-cache */
145 /* clear registers */
167 mtspr DBSR,r1 /* Clear all valid bits */
174 mtspr BUCSR,r0 /* disable branch prediction */
179 /* Setup interrupt vectors */
184 mtspr IVOR0,r1 /* 0: Critical input */
186 mtspr IVOR1,r1 /* 1: Machine check */
188 mtspr IVOR2,r1 /* 2: Data storage */
190 mtspr IVOR3,r1 /* 3: Instruction storage */
192 mtspr IVOR4,r1 /* 4: External interrupt */
194 mtspr IVOR5,r1 /* 5: Alignment */
196 mtspr IVOR6,r1 /* 6: Program check */
198 mtspr IVOR7,r1 /* 7: floating point unavailable */
200 mtspr IVOR8,r1 /* 8: System call */
201 /* 9: Auxiliary processor unavailable(unsupported) */
203 mtspr IVOR10,r1 /* 10: Decrementer */
205 mtspr IVOR13,r1 /* 13: Data TLB error */
207 mtspr IVOR14,r1 /* 14: Instruction TLB error */
209 mtspr IVOR15,r1 /* 15: Debug */
212 * Invalidate MMU L1/L2
214 * Note: There is a fixup earlier for Errata CPU4 on
215 * Rev 1 parts that must precede this MMU invalidation.
221 /* After reset, CCSRBAR is located at CFG_CCSRBAR_DEFAULT, i.e.
222 * 0xff700000-0xff800000. We need add a TLB1 entry for this 1MB
223 * region before we can access any CCSR registers such as L2
224 * registers, Local Access Registers,etc. We will also re-allocate
225 * CFG_CCSRBAR_DEFAULT to CFG_CCSRBAR immediately after TLB1 setup.
227 * Please refer to board-specif directory for TLB1 entry configuration.
228 * (e.g. board/<yourboard>/init.S)
233 li r1,0x000f /* max 16 TLB1 entries */
235 lwzu r4,0(r5) /* how many TLB1 entries we actually use */
255 #if (CFG_CCSRBAR_DEFAULT != CFG_CCSRBAR)
256 /* Special sequence needed to update CCSRBAR itself */
257 lis r4, CFG_CCSRBAR_DEFAULT@h
258 ori r4, r4, CFG_CCSRBAR_DEFAULT@l
260 lis r5, CFG_CCSRBAR@h
261 ori r5, r5, CFG_CCSRBAR@l
271 lis r3, CFG_CCSRBAR@h
272 lwz r5, CFG_CCSRBAR@l(r3)
276 /* invalidate all TLB0 entries */
281 * To avoid REV1 Errata CPU6 issues, make sure
282 * the instruction following tlbivax is not a store.
286 /* set up local access windows, defined at board/<boardname>/init.S */
288 ori r7,r7,CFG_CCSRBAR@l
292 #if defined(CONFIG_RAM_AS_FLASH)
295 li r1,0x0007 /*we have 8 LAWs, but reseve one for boot-over-rio-or-pci */
298 lwzu r5,0(r6) /* how many windows we actually use */
300 #if defined(CONFIG_RAM_AS_FLASH)
304 li r2,0x0c28 /* the first pair is reserved for boot-over-rio-or-pci */
319 /* Jump out the last 4K page and continue to 'normal' start */
324 mtspr SRR1,r0 /* Keep things disabled for now */
330 * r3 - 1st arg to board_init(): IMMP pointer
331 * r4 - 2nd arg to board_init(): boot flag
334 .long 0x27051956 /* U-BOOT Magic Number */
335 .globl version_string
337 .ascii U_BOOT_VERSION
338 .ascii " (", __DATE__, " - ", __TIME__, ")"
339 .ascii CONFIG_IDENT_STRING, "\0"
341 . = EXC_OFF_SYS_RESET
344 /* Clear and set up some registers. */
347 mtspr DEC,r0 /* prevent dec exceptions */
348 mttbl r0 /* prevent fit & wdt exceptions */
350 mtspr TSR,r1 /* clear all timer exception status */
351 mtspr TCR,r0 /* disable all */
352 mtspr ESR,r0 /* clear exception syndrome register */
353 mtspr MCSR,r0 /* machine check syndrome register */
354 mtxer r0 /* clear integer exception register */
355 lis r1,0x0002 /* set CE bit (Critical Exceptions) */
356 ori r1,r1,0x1200 /* set ME/DE bit */
357 mtmsr r1 /* change MSR */
360 /* Enable Time Base and Select Time Base Clock */
361 lis r0,HID0_EMCP@h /* Enable machine check */
362 ori r0,r0,0x4000 /* time base is processor clock */
365 #if defined(CONFIG_ADDR_STREAMING)
372 /* Enable Branch Prediction */
373 #if defined(CONFIG_BTB)
374 li r0,0x201 /* BBFI = 1, BPEN = 1 */
378 #if defined(CFG_INIT_DBCR)
381 mtspr DBSR,r1 /* Clear all status bits */
382 lis r0,CFG_INIT_DBCR@h /* DBCR0[IDM] must be set */
383 ori r0,r0,CFG_INIT_DBCR@l
387 /* L1 DCache is used for initial RAM */
391 mtspr L1CSR0, r2 /* enable/invalidate L1 Dcache */
394 /* Allocate Initial RAM in data cache.
396 lis r3, CFG_INIT_RAM_ADDR@h
397 ori r3, r3, CFG_INIT_RAM_ADDR@l
398 li r2, 512 /* 512*32=16K */
408 /* Calculate absolute address in FLASH and jump there */
409 /*--------------------------------------------------------------*/
410 lis r3, CFG_MONITOR_BASE@h
411 ori r3, r3, CFG_MONITOR_BASE@l
412 addi r3, r3, in_flash - _start + EXC_OFF_SYS_RESET
417 #endif /* CFG_RAMBOOT */
419 /* Setup the stack in initial RAM,could be L2-as-SRAM or L1 dcache*/
420 lis r1,CFG_INIT_RAM_ADDR@h
421 ori r1,r1,CFG_INIT_SP_OFFSET@l
425 stwu r0,-4(r1) /* Terminate call chain */
427 stwu r1,-8(r1) /* Save back chain and move SP */
428 lis r0,RESET_VECTOR@h /* Address of reset vector */
429 ori r0,r0, RESET_VECTOR@l
430 stwu r1,-8(r1) /* Save back chain and move SP */
431 stw r0,+12(r1) /* Save return addr (underflow vect) */
439 /* --FIXME-- machine check with MCSRRn and rfmci */
441 .globl _start_of_vectors
444 /* Critical input. */
445 CRIT_EXCEPTION(0x0100, CritcalInput, CritcalInputException)
447 /* Machine check --FIXME-- Should be MACH_EXCEPTION */
448 CRIT_EXCEPTION(0x0200, MachineCheck, MachineCheckException)
450 /* Data Storage exception. */
451 STD_EXCEPTION(0x0300, DataStorage, UnknownException)
453 /* Instruction Storage exception. */
454 STD_EXCEPTION(0x0400, InstStorage, UnknownException)
456 /* External Interrupt exception. */
457 STD_EXCEPTION(0x0500, ExtInterrupt, UnknownException)
459 /* Alignment exception. */
467 addi r3,r1,STACK_FRAME_OVERHEAD
469 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
470 lwz r6,GOT(transfer_to_handler)
474 .long AlignmentException - _start + EXC_OFF_SYS_RESET
475 .long int_return - _start + EXC_OFF_SYS_RESET
477 /* Program check exception */
481 addi r3,r1,STACK_FRAME_OVERHEAD
483 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
484 lwz r6,GOT(transfer_to_handler)
488 .long ProgramCheckException - _start + EXC_OFF_SYS_RESET
489 .long int_return - _start + EXC_OFF_SYS_RESET
491 /* No FPU on MPC85xx. This exception is not supposed to happen.
493 STD_EXCEPTION(0x0800, FPUnavailable, UnknownException)
494 STD_EXCEPTION(0x0900, Decrementer, timer_interrupt)
495 STD_EXCEPTION(0x0a00, Trap_0a, UnknownException)
496 STD_EXCEPTION(0x0b00, Trap_0b, UnknownException)
500 * r0 - SYSCALL number
504 addis r11,r0,0 /* get functions table addr */
505 ori r11,r11,0 /* Note: this code is patched in trap_init */
506 addis r12,r0,0 /* get number of functions */
512 rlwinm r0,r0,2,0,31 /* fn_addr = fn_tbl[r0] */
516 li r20,0xd00-4 /* Get stack pointer */
518 subi r12,r12,12 /* Adjust stack pointer */
519 li r0,0xc00+_end_back-SystemCall
520 cmplw 0, r0, r12 /* Check stack overflow */
531 li r12,0xc00+_back-SystemCall
539 mfmsr r11 /* Disable interrupts */
543 SYNC /* Some chip revs need this... */
547 li r12,0xd00-4 /* restore regs */
557 addi r12,r12,12 /* Adjust stack pointer */
565 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
567 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
568 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
570 STD_EXCEPTION(0x1000, PIT, PITException)
572 STD_EXCEPTION(0x1100, InstructionTLBMiss, UnknownException)
573 STD_EXCEPTION(0x1200, DataTLBMiss, UnknownException)
574 STD_EXCEPTION(0x1300, InstructionTLBError, UnknownException)
575 STD_EXCEPTION(0x1400, DataTLBError, UnknownException)
577 STD_EXCEPTION(0x1500, Reserved5, UnknownException)
578 STD_EXCEPTION(0x1600, Reserved6, UnknownException)
579 STD_EXCEPTION(0x1700, Reserved7, UnknownException)
580 STD_EXCEPTION(0x1800, Reserved8, UnknownException)
581 STD_EXCEPTION(0x1900, Reserved9, UnknownException)
582 STD_EXCEPTION(0x1a00, ReservedA, UnknownException)
583 STD_EXCEPTION(0x1b00, ReservedB, UnknownException)
585 STD_EXCEPTION(0x1c00, DataBreakpoint, UnknownException)
586 STD_EXCEPTION(0x1d00, InstructionBreakpoint, UnknownException)
587 STD_EXCEPTION(0x1e00, PeripheralBreakpoint, UnknownException)
588 STD_EXCEPTION(0x1f00, DevPortBreakpoint, UnknownException)
590 CRIT_EXCEPTION(0x2000, DebugBreakpoint, DebugException )
592 .globl _end_of_vectors
599 * This code finishes saving the registers to the exception frame
600 * and jumps to the appropriate handler for the exception.
601 * Register r21 is pointer into trap frame, r1 has new stack pointer.
603 .globl transfer_to_handler
615 andi. r24,r23,0x3f00 /* get vector offset */
619 mtspr SPRG2,r22 /* r1 is now kernel sp */
621 lwz r24,0(r23) /* virtual address of handler */
622 lwz r23,4(r23) /* where to go when done */
627 rfi /* jump to handler, enable MMU */
630 mfmsr r28 /* Disable interrupts */
634 SYNC /* Some chip revs need this... */
649 lwz r2,_NIP(r1) /* Restore environment */
660 mfmsr r28 /* Disable interrupts */
664 SYNC /* Some chip revs need this... */
679 lwz r2,_NIP(r1) /* Restore environment */
681 mtspr 990,r2 /* SRR2 */
682 mtspr 991,r0 /* SRR3 */
696 blr /* entire I cache */
720 .globl icache_disable
724 ori r1,r1,0xfffffffe@l
733 srwi r3, r3, 31 /* >>31 => select bit 0 */
751 .globl dcache_disable
755 ori r1,r1,0xfffffffe@l
766 srwi r3, r3, 31 /* >>31 => select bit 0 */
789 /*------------------------------------------------------------------------------- */
791 /* Description: Input 8 bits */
792 /*------------------------------------------------------------------------------- */
798 /*------------------------------------------------------------------------------- */
800 /* Description: Output 8 bits */
801 /*------------------------------------------------------------------------------- */
807 /*------------------------------------------------------------------------------- */
808 /* Function: out16 */
809 /* Description: Output 16 bits */
810 /*------------------------------------------------------------------------------- */
816 /*------------------------------------------------------------------------------- */
817 /* Function: out16r */
818 /* Description: Byte reverse and output 16 bits */
819 /*------------------------------------------------------------------------------- */
825 /*------------------------------------------------------------------------------- */
826 /* Function: out32 */
827 /* Description: Output 32 bits */
828 /*------------------------------------------------------------------------------- */
834 /*------------------------------------------------------------------------------- */
835 /* Function: out32r */
836 /* Description: Byte reverse and output 32 bits */
837 /*------------------------------------------------------------------------------- */
843 /*------------------------------------------------------------------------------- */
845 /* Description: Input 16 bits */
846 /*------------------------------------------------------------------------------- */
852 /*------------------------------------------------------------------------------- */
853 /* Function: in16r */
854 /* Description: Input 16 bits and byte reverse */
855 /*------------------------------------------------------------------------------- */
861 /*------------------------------------------------------------------------------- */
863 /* Description: Input 32 bits */
864 /*------------------------------------------------------------------------------- */
870 /*------------------------------------------------------------------------------- */
871 /* Function: in32r */
872 /* Description: Input 32 bits and byte reverse */
873 /*------------------------------------------------------------------------------- */
879 /*------------------------------------------------------------------------------- */
880 /* Function: ppcDcbf */
881 /* Description: Data Cache block flush */
882 /* Input: r3 = effective address */
884 /*------------------------------------------------------------------------------- */
890 /*------------------------------------------------------------------------------- */
891 /* Function: ppcDcbi */
892 /* Description: Data Cache block Invalidate */
893 /* Input: r3 = effective address */
895 /*------------------------------------------------------------------------------- */
901 /*--------------------------------------------------------------------------
903 * Description: Data Cache block zero.
904 * Input: r3 = effective address
906 *-------------------------------------------------------------------------- */
913 /*------------------------------------------------------------------------------- */
914 /* Function: ppcSync */
915 /* Description: Processor Synchronize */
918 /*------------------------------------------------------------------------------- */
924 /*------------------------------------------------------------------------------*/
927 * void relocate_code (addr_sp, gd, addr_moni)
929 * This "function" does not return, instead it continues in RAM
930 * after relocating the monitor code.
934 * r5 = length in bytes
939 mr r1, r3 /* Set new stack pointer */
940 mr r9, r4 /* Save copy of Init Data pointer */
941 mr r10, r5 /* Save copy of Destination Address */
943 mr r3, r5 /* Destination Address */
944 lis r4, CFG_MONITOR_BASE@h /* Source Address */
945 ori r4, r4, CFG_MONITOR_BASE@l
946 lwz r5,GOT(__init_end)
948 li r6, CFG_CACHELINE_SIZE /* Cache Line Size */
953 * New GOT-PTR = (old GOT-PTR - CFG_MONITOR_BASE) + Destination Address
959 /* First our own GOT */
961 /* the the one used by the C code */
971 beq cr1,4f /* In place copy is not necessary */
972 beq 7f /* Protect against 0 count */
991 * Now flush the cache: note that we must start from a cache aligned
992 * address. Otherwise we might miss one cache line.
996 beq 7f /* Always flush prefetch queue in any case */
1004 sync /* Wait for all dcbst to complete on bus */
1010 7: sync /* Wait for all icbi to complete on bus */
1014 * We are done. Do not return, instead branch to second part of board
1015 * initialization, now running from RAM.
1018 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
1020 blr /* NEVER RETURNS! */
1025 * Relocation Function, r14 point to got2+0x8000
1027 * Adjust got2 pointers, no need to check for 0, this code
1028 * already puts a few entries in the table.
1030 li r0,__got2_entries@sectoff@l
1031 la r3,GOT(_GOT2_TABLE_)
1032 lwz r11,GOT(_GOT2_TABLE_)
1042 * Now adjust the fixups and the pointers to the fixups
1043 * in case we need to move ourselves again.
1045 2: li r0,__fixup_entries@sectoff@l
1046 lwz r3,GOT(_FIXUP_TABLE_)
1060 * Now clear BSS segment
1062 lwz r3,GOT(__bss_start)
1076 mr r3, r9 /* Init Data pointer */
1077 mr r4, r10 /* Destination Address */
1081 * Copy exception vector code to low memory
1084 * r7: source address, r8: end address, r9: target address
1089 lwz r8, GOT(_end_of_vectors)
1091 li r9, 0x100 /* reset vector always at 0x100 */
1094 bgelr /* return if r7>=r8 - just in case */
1096 mflr r4 /* save link register */
1106 * relocate `hdlr' and `int_return' entries
1108 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
1109 li r8, Alignment - _start + EXC_OFF_SYS_RESET
1112 addi r7, r7, 0x100 /* next exception vector */
1116 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
1119 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
1122 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
1123 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
1126 addi r7, r7, 0x100 /* next exception vector */
1130 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
1131 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
1134 addi r7, r7, 0x100 /* next exception vector */
1138 mtlr r4 /* restore link register */
1142 * Function: relocate entries for one exception vector
1145 lwz r0, 0(r7) /* hdlr ... */
1146 add r0, r0, r3 /* ... += dest_addr */
1149 lwz r0, 4(r7) /* int_return ... */
1150 add r0, r0, r3 /* ... += dest_addr */
1155 #ifdef CFG_INIT_RAM_LOCK
1156 .globl unlock_ram_in_cache
1157 unlock_ram_in_cache:
1158 /* invalidate the INIT_RAM section */
1159 lis r3, (CFG_INIT_RAM_ADDR & ~31)@h
1160 ori r3, r3, (CFG_INIT_RAM_ADDR & ~31)@l
1167 sync /* Wait for all icbi to complete on bus */