2 * Copyright 2004, 2007 Freescale Semiconductor.
3 * Copyright (C) 2003 Motorola,Inc.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 /* U-Boot Startup Code for Motorola 85xx PowerPC based Embedded Boards
26 * The processor starts at 0xfffffffc and the code is first executed in the
27 * last 4K page(0xfffff000-0xffffffff) in flash/rom.
35 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
37 #include <ppc_asm.tmpl>
40 #include <asm/cache.h>
43 #ifndef CONFIG_IDENT_STRING
44 #define CONFIG_IDENT_STRING ""
48 #define MSR_KERNEL ( MSR_ME ) /* Machine Check */
51 * Set up GOT: Global Offset Table
53 * Use r14 to access the GOT
56 GOT_ENTRY(_GOT2_TABLE_)
57 GOT_ENTRY(_FIXUP_TABLE_)
60 GOT_ENTRY(_start_of_vectors)
61 GOT_ENTRY(_end_of_vectors)
62 GOT_ENTRY(transfer_to_handler)
66 GOT_ENTRY(__bss_start)
70 * e500 Startup -- after reset only the last 4KB of the effective
71 * address space is mapped in the MMU L2 TLB1 Entry0. The .bootpg
72 * section is located at THIS LAST page and basically does three
73 * things: clear some registers, set up exception tables and
74 * add more TLB entries for 'larger spaces'(e.g. the boot rom) to
75 * continue the boot procedure.
77 * Once the boot rom is mapped by TLB entries we can proceed
78 * with normal startup.
87 /* clear registers/arrays not reset by hardware */
91 mtspr L1CSR0,r0 /* invalidate d-cache */
92 mtspr L1CSR1,r0 /* invalidate i-cache */
95 mtspr DBSR,r1 /* Clear all valid bits */
98 * Enable L1 Caches early
102 lis r2,L1CSR0_CPE@H /* enable parity */
104 mtspr L1CSR0,r2 /* enable L1 Dcache */
106 mtspr L1CSR1,r2 /* enable L1 Icache */
110 /* Setup interrupt vectors */
115 mtspr IVOR0,r1 /* 0: Critical input */
117 mtspr IVOR1,r1 /* 1: Machine check */
119 mtspr IVOR2,r1 /* 2: Data storage */
121 mtspr IVOR3,r1 /* 3: Instruction storage */
123 mtspr IVOR4,r1 /* 4: External interrupt */
125 mtspr IVOR5,r1 /* 5: Alignment */
127 mtspr IVOR6,r1 /* 6: Program check */
129 mtspr IVOR7,r1 /* 7: floating point unavailable */
131 mtspr IVOR8,r1 /* 8: System call */
132 /* 9: Auxiliary processor unavailable(unsupported) */
134 mtspr IVOR10,r1 /* 10: Decrementer */
136 mtspr IVOR11,r1 /* 11: Interval timer */
138 mtspr IVOR12,r1 /* 12: Watchdog timer */
140 mtspr IVOR13,r1 /* 13: Data TLB error */
142 mtspr IVOR14,r1 /* 14: Instruction TLB error */
144 mtspr IVOR15,r1 /* 15: Debug */
148 * After reset, CCSRBAR is located at CFG_CCSRBAR_DEFAULT, i.e.
149 * 0xff700000-0xff800000. We need add a TLB1 entry for this 1MB
150 * region before we can access any CCSR registers such as L2
151 * registers, Local Access Registers,etc. We will also re-allocate
152 * CFG_CCSRBAR_DEFAULT to CFG_CCSRBAR immediately after TLB1 setup.
154 * Please refer to board-specif directory for TLB1 entry configuration.
155 * (e.g. board/<yourboard>/init.S)
160 lwzu r4,0(r5) /* how many TLB1 entries we actually use */
178 #if (CFG_CCSRBAR_DEFAULT != CFG_CCSRBAR)
179 /* Special sequence needed to update CCSRBAR itself */
180 lis r4,CFG_CCSRBAR_DEFAULT@h
181 ori r4,r4,CFG_CCSRBAR_DEFAULT@l
184 ori r5,r5,CFG_CCSRBAR@l
195 lwz r5,CFG_CCSRBAR@l(r3)
200 /* set up local access windows, defined at board/<boardname>/init.S */
202 ori r7,r7,CFG_CCSRBAR@l
206 lwzu r5,0(r6) /* how many windows we actually use */
209 li r2,0x0c28 /* the first pair is reserved for */
210 li r1,0x0c30 /* boot-over-rio-or-pci */
220 /* Clear and set up some registers. */
223 mtspr DEC,r0 /* prevent dec exceptions */
224 mttbl r0 /* prevent fit & wdt exceptions */
226 mtspr TSR,r1 /* clear all timer exception status */
227 mtspr TCR,r0 /* disable all */
228 mtspr ESR,r0 /* clear exception syndrome register */
229 mtspr MCSR,r0 /* machine check syndrome register */
230 mtxer r0 /* clear integer exception register */
231 lis r1,0x0002 /* set CE bit (Critical Exceptions) */
232 ori r1,r1,0x1200 /* set ME/DE bit */
233 mtmsr r1 /* change MSR */
236 /* Enable Time Base and Select Time Base Clock */
237 lis r0,HID0_EMCP@h /* Enable machine check */
238 #if defined(CONFIG_ENABLE_36BIT_PHYS)
239 ori r0,r0,(HID0_TBEN|HID0_ENMAS7)@l /* Enable Timebase & MAS7 */
241 ori r0,r0,HID0_TBEN@l /* enable Timebase */
245 li r0,(HID1_ASTME|HID1_ABE)@l /* Addr streaming & broadcast */
248 /* Enable Branch Prediction */
249 #if defined(CONFIG_BTB)
250 li r0,0x201 /* BBFI = 1, BPEN = 1 */
254 #if defined(CFG_INIT_DBCR)
257 mtspr DBSR,r1 /* Clear all status bits */
258 lis r0,CFG_INIT_DBCR@h /* DBCR0[IDM] must be set */
259 ori r0,r0,CFG_INIT_DBCR@l
263 /* L1 DCache is used for initial RAM */
265 /* Allocate Initial RAM in data cache.
267 lis r3,CFG_INIT_RAM_ADDR@h
268 ori r3,r3,CFG_INIT_RAM_ADDR@l
269 li r2,512 /* 512*32=16K */
278 /* Jump out the last 4K page and continue to 'normal' start */
283 /* Calculate absolute address in FLASH and jump there */
284 /*--------------------------------------------------------------*/
285 lis r3,CFG_MONITOR_BASE@h
286 ori r3,r3,CFG_MONITOR_BASE@l
287 addi r3,r3,_start_cont - _start + _START_OFFSET
292 mtspr SRR1,r0 /* Keep things disabled for now */
301 .long 0x27051956 /* U-BOOT Magic Number */
302 .globl version_string
304 .ascii U_BOOT_VERSION
305 .ascii " (", __DATE__, " - ", __TIME__, ")"
306 .ascii CONFIG_IDENT_STRING, "\0"
311 /* Setup the stack in initial RAM,could be L2-as-SRAM or L1 dcache*/
312 lis r1,CFG_INIT_RAM_ADDR@h
313 ori r1,r1,CFG_INIT_SP_OFFSET@l
317 stwu r0,-4(r1) /* Terminate call chain */
319 stwu r1,-8(r1) /* Save back chain and move SP */
320 lis r0,RESET_VECTOR@h /* Address of reset vector */
321 ori r0,r0,RESET_VECTOR@l
322 stwu r1,-8(r1) /* Save back chain and move SP */
323 stw r0,+12(r1) /* Save return addr (underflow vect) */
330 . = EXC_OFF_SYS_RESET
331 .globl _start_of_vectors
334 /* Critical input. */
335 CRIT_EXCEPTION(0x0100, CriticalInput, CritcalInputException)
338 MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)
340 /* Data Storage exception. */
341 STD_EXCEPTION(0x0300, DataStorage, UnknownException)
343 /* Instruction Storage exception. */
344 STD_EXCEPTION(0x0400, InstStorage, UnknownException)
346 /* External Interrupt exception. */
347 STD_EXCEPTION(0x0500, ExtInterrupt, ExtIntException)
349 /* Alignment exception. */
352 EXCEPTION_PROLOG(SRR0, SRR1)
357 addi r3,r1,STACK_FRAME_OVERHEAD
359 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
360 lwz r6,GOT(transfer_to_handler)
364 .long AlignmentException - _start + _START_OFFSET
365 .long int_return - _start + _START_OFFSET
367 /* Program check exception */
370 EXCEPTION_PROLOG(SRR0, SRR1)
371 addi r3,r1,STACK_FRAME_OVERHEAD
373 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
374 lwz r6,GOT(transfer_to_handler)
378 .long ProgramCheckException - _start + _START_OFFSET
379 .long int_return - _start + _START_OFFSET
381 /* No FPU on MPC85xx. This exception is not supposed to happen.
383 STD_EXCEPTION(0x0800, FPUnavailable, UnknownException)
387 * r0 - SYSCALL number
391 addis r11,r0,0 /* get functions table addr */
392 ori r11,r11,0 /* Note: this code is patched in trap_init */
393 addis r12,r0,0 /* get number of functions */
399 rlwinm r0,r0,2,0,31 /* fn_addr = fn_tbl[r0] */
403 li r20,0xd00-4 /* Get stack pointer */
405 subi r12,r12,12 /* Adjust stack pointer */
406 li r0,0xc00+_end_back-SystemCall
407 cmplw 0,r0,r12 /* Check stack overflow */
418 li r12,0xc00+_back-SystemCall
426 mfmsr r11 /* Disable interrupts */
430 SYNC /* Some chip revs need this... */
434 li r12,0xd00-4 /* restore regs */
444 addi r12,r12,12 /* Adjust stack pointer */
452 STD_EXCEPTION(0x0a00, Decrementer, timer_interrupt)
453 STD_EXCEPTION(0x0b00, IntervalTimer, UnknownException)
454 STD_EXCEPTION(0x0c00, WatchdogTimer, UnknownException)
456 STD_EXCEPTION(0x0d00, DataTLBError, UnknownException)
457 STD_EXCEPTION(0x0e00, InstructionTLBError, UnknownException)
459 CRIT_EXCEPTION(0x0f00, DebugBreakpoint, DebugException )
461 .globl _end_of_vectors
465 . = . + (0x100 - ( . & 0xff )) /* align for debug */
468 * This code finishes saving the registers to the exception frame
469 * and jumps to the appropriate handler for the exception.
470 * Register r21 is pointer into trap frame, r1 has new stack pointer.
472 .globl transfer_to_handler
484 andi. r24,r23,0x3f00 /* get vector offset */
488 mtspr SPRG2,r22 /* r1 is now kernel sp */
490 lwz r24,0(r23) /* virtual address of handler */
491 lwz r23,4(r23) /* where to go when done */
496 rfi /* jump to handler, enable MMU */
499 mfmsr r28 /* Disable interrupts */
503 SYNC /* Some chip revs need this... */
518 lwz r2,_NIP(r1) /* Restore environment */
529 mfmsr r28 /* Disable interrupts */
533 SYNC /* Some chip revs need this... */
548 lwz r2,_NIP(r1) /* Restore environment */
559 mfmsr r28 /* Disable interrupts */
563 SYNC /* Some chip revs need this... */
578 lwz r2,_NIP(r1) /* Restore environment */
592 ori r0,r0,L1CSR1_ICFI
597 blr /* entire I cache */
601 ori r0,r0,L1CSR0_DCFI
621 .globl icache_disable
634 andi. r3,r3,L1CSR1_ICE
652 .globl dcache_disable
665 andi. r3,r3,L1CSR0_DCE
688 /*------------------------------------------------------------------------------- */
690 /* Description: Input 8 bits */
691 /*------------------------------------------------------------------------------- */
697 /*------------------------------------------------------------------------------- */
699 /* Description: Output 8 bits */
700 /*------------------------------------------------------------------------------- */
706 /*------------------------------------------------------------------------------- */
707 /* Function: out16 */
708 /* Description: Output 16 bits */
709 /*------------------------------------------------------------------------------- */
715 /*------------------------------------------------------------------------------- */
716 /* Function: out16r */
717 /* Description: Byte reverse and output 16 bits */
718 /*------------------------------------------------------------------------------- */
724 /*------------------------------------------------------------------------------- */
725 /* Function: out32 */
726 /* Description: Output 32 bits */
727 /*------------------------------------------------------------------------------- */
733 /*------------------------------------------------------------------------------- */
734 /* Function: out32r */
735 /* Description: Byte reverse and output 32 bits */
736 /*------------------------------------------------------------------------------- */
742 /*------------------------------------------------------------------------------- */
744 /* Description: Input 16 bits */
745 /*------------------------------------------------------------------------------- */
751 /*------------------------------------------------------------------------------- */
752 /* Function: in16r */
753 /* Description: Input 16 bits and byte reverse */
754 /*------------------------------------------------------------------------------- */
760 /*------------------------------------------------------------------------------- */
762 /* Description: Input 32 bits */
763 /*------------------------------------------------------------------------------- */
769 /*------------------------------------------------------------------------------- */
770 /* Function: in32r */
771 /* Description: Input 32 bits and byte reverse */
772 /*------------------------------------------------------------------------------- */
778 /*------------------------------------------------------------------------------- */
779 /* Function: ppcDcbf */
780 /* Description: Data Cache block flush */
781 /* Input: r3 = effective address */
783 /*------------------------------------------------------------------------------- */
789 /*------------------------------------------------------------------------------- */
790 /* Function: ppcDcbi */
791 /* Description: Data Cache block Invalidate */
792 /* Input: r3 = effective address */
794 /*------------------------------------------------------------------------------- */
800 /*--------------------------------------------------------------------------
802 * Description: Data Cache block zero.
803 * Input: r3 = effective address
805 *-------------------------------------------------------------------------- */
812 /*------------------------------------------------------------------------------- */
813 /* Function: ppcSync */
814 /* Description: Processor Synchronize */
817 /*------------------------------------------------------------------------------- */
823 /*------------------------------------------------------------------------------*/
826 * void relocate_code (addr_sp, gd, addr_moni)
828 * This "function" does not return, instead it continues in RAM
829 * after relocating the monitor code.
833 * r5 = length in bytes
838 mr r1,r3 /* Set new stack pointer */
839 mr r9,r4 /* Save copy of Init Data pointer */
840 mr r10,r5 /* Save copy of Destination Address */
842 mr r3,r5 /* Destination Address */
843 lis r4,CFG_MONITOR_BASE@h /* Source Address */
844 ori r4,r4,CFG_MONITOR_BASE@l
845 lwz r5,GOT(__init_end)
847 li r6,CFG_CACHELINE_SIZE /* Cache Line Size */
852 * New GOT-PTR = (old GOT-PTR - CFG_MONITOR_BASE) + Destination Address
858 /* First our own GOT */
860 /* the the one used by the C code */
870 beq cr1,4f /* In place copy is not necessary */
871 beq 7f /* Protect against 0 count */
890 * Now flush the cache: note that we must start from a cache aligned
891 * address. Otherwise we might miss one cache line.
895 beq 7f /* Always flush prefetch queue in any case */
903 sync /* Wait for all dcbst to complete on bus */
909 7: sync /* Wait for all icbi to complete on bus */
913 * Re-point the IVPR at RAM
918 * We are done. Do not return, instead branch to second part of board
919 * initialization, now running from RAM.
922 addi r0,r10,in_ram - _start + _START_OFFSET
924 blr /* NEVER RETURNS! */
929 * Relocation Function, r14 point to got2+0x8000
931 * Adjust got2 pointers, no need to check for 0, this code
932 * already puts a few entries in the table.
934 li r0,__got2_entries@sectoff@l
935 la r3,GOT(_GOT2_TABLE_)
936 lwz r11,GOT(_GOT2_TABLE_)
946 * Now adjust the fixups and the pointers to the fixups
947 * in case we need to move ourselves again.
949 2: li r0,__fixup_entries@sectoff@l
950 lwz r3,GOT(_FIXUP_TABLE_)
964 * Now clear BSS segment
966 lwz r3,GOT(__bss_start)
980 mr r3,r9 /* Init Data pointer */
981 mr r4,r10 /* Destination Address */
985 * Copy exception vector code to low memory
988 * r7: source address, r8: end address, r9: target address
992 lwz r7,GOT(_start_of_vectors)
993 lwz r8,GOT(_end_of_vectors)
995 li r9,0x100 /* reset vector always at 0x100 */
998 bgelr /* return if r7>=r8 - just in case */
1000 mflr r4 /* save link register */
1010 * relocate `hdlr' and `int_return' entries
1012 li r7,.L_CriticalInput - _start + _START_OFFSET
1014 li r7,.L_MachineCheck - _start + _START_OFFSET
1016 li r7,.L_DataStorage - _start + _START_OFFSET
1018 li r7,.L_InstStorage - _start + _START_OFFSET
1020 li r7,.L_ExtInterrupt - _start + _START_OFFSET
1022 li r7,.L_Alignment - _start + _START_OFFSET
1024 li r7,.L_ProgramCheck - _start + _START_OFFSET
1026 li r7,.L_FPUnavailable - _start + _START_OFFSET
1028 li r7,.L_Decrementer - _start + _START_OFFSET
1030 li r7,.L_IntervalTimer - _start + _START_OFFSET
1031 li r8,_end_of_vectors - _start + _START_OFFSET
1034 addi r7,r7,0x100 /* next exception vector */
1041 mtlr r4 /* restore link register */
1045 * Function: relocate entries for one exception vector
1048 lwz r0,0(r7) /* hdlr ... */
1049 add r0,r0,r3 /* ... += dest_addr */
1052 lwz r0,4(r7) /* int_return ... */
1053 add r0,r0,r3 /* ... += dest_addr */
1058 #ifdef CFG_INIT_RAM_LOCK
1059 .globl unlock_ram_in_cache
1060 unlock_ram_in_cache:
1061 /* invalidate the INIT_RAM section */
1062 lis r3,(CFG_INIT_RAM_ADDR & ~31)@h
1063 ori r3,r3,(CFG_INIT_RAM_ADDR & ~31)@l
1070 sync /* Wait for all icbi to complete on bus */