2 * Copyright 2004, 2007 Freescale Semiconductor.
3 * Srikanth Srinivasan <srikanth.srinivaan@freescale.com>
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 86xx PowerPC based Embedded Boards
27 * The processor starts at 0xfff00100 and the code is executed
28 * from flash. The code is organized to be at an other address
29 * in memory, but as long we don't jump around before relocating.
30 * board_init lies at a quite high address and when the cpu has
31 * jumped there, everything is ok.
37 #include <ppc_asm.tmpl>
40 #include <asm/cache.h>
43 #ifndef CONFIG_IDENT_STRING
44 #define CONFIG_IDENT_STRING ""
48 * Need MSR_DR | MSR_IR enabled to access I/O (printf) in exceptions
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 * r3 - 1st arg to board_init(): IMMP pointer
72 * r4 - 2nd arg to board_init(): boot flag
75 .long 0x27051956 /* U-Boot Magic Number */
79 .ascii " (", __DATE__, " - ", __TIME__, ")"
80 .ascii CONFIG_IDENT_STRING, "\0"
85 li r21, BOOTFLAG_COLD /* Normal Power-On: Boot from FLASH */
89 . = EXC_OFF_SYS_RESET + 0x10
93 li r21, BOOTFLAG_WARM /* Software reboot */
97 /* the boot code is located below the exception table */
99 .globl _start_of_vectors
103 STD_EXCEPTION(0x200, MachineCheck, MachineCheckException)
105 /* Data Storage exception. */
106 STD_EXCEPTION(0x300, DataStorage, UnknownException)
108 /* Instruction Storage exception. */
109 STD_EXCEPTION(0x400, InstStorage, UnknownException)
111 /* External Interrupt exception. */
112 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
114 /* Alignment exception. */
117 EXCEPTION_PROLOG(SRR0, SRR1)
122 addi r3,r1,STACK_FRAME_OVERHEAD
124 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
125 lwz r6,GOT(transfer_to_handler)
129 .long AlignmentException - _start + EXC_OFF_SYS_RESET
130 .long int_return - _start + EXC_OFF_SYS_RESET
132 /* Program check exception */
135 EXCEPTION_PROLOG(SRR0, SRR1)
136 addi r3,r1,STACK_FRAME_OVERHEAD
138 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
139 lwz r6,GOT(transfer_to_handler)
143 .long ProgramCheckException - _start + EXC_OFF_SYS_RESET
144 .long int_return - _start + EXC_OFF_SYS_RESET
146 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
148 /* I guess we could implement decrementer, and may have
149 * to someday for timekeeping.
151 STD_EXCEPTION(0x900, Decrementer, timer_interrupt)
152 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
153 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
154 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
155 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
156 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
157 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
158 STD_EXCEPTION(0x1000, SoftEmu, SoftEmuException)
159 STD_EXCEPTION(0x1100, InstructionTLBMiss, UnknownException)
160 STD_EXCEPTION(0x1200, DataTLBMiss, UnknownException)
161 STD_EXCEPTION(0x1300, InstructionTLBError, UnknownException)
162 STD_EXCEPTION(0x1400, DataTLBError, UnknownException)
163 STD_EXCEPTION(0x1500, Reserved5, UnknownException)
164 STD_EXCEPTION(0x1600, Reserved6, UnknownException)
165 STD_EXCEPTION(0x1700, Reserved7, UnknownException)
166 STD_EXCEPTION(0x1800, Reserved8, UnknownException)
167 STD_EXCEPTION(0x1900, Reserved9, UnknownException)
168 STD_EXCEPTION(0x1a00, ReservedA, UnknownException)
169 STD_EXCEPTION(0x1b00, ReservedB, UnknownException)
170 STD_EXCEPTION(0x1c00, DataBreakpoint, UnknownException)
171 STD_EXCEPTION(0x1d00, InstructionBreakpoint, UnknownException)
172 STD_EXCEPTION(0x1e00, PeripheralBreakpoint, UnknownException)
173 STD_EXCEPTION(0x1f00, DevPortBreakpoint, UnknownException)
175 .globl _end_of_vectors
183 /* if this is a multi-core system we need to check which cpu
184 * this is, if it is not cpu 0 send the cpu to the linux reset
186 #if (CONFIG_NUM_CPUS > 1)
189 rlwinm r0,r0,27,31,31
193 bl secondary_cpu_setup
198 /* disable everything */
209 /* init the L2 cache */
211 ori r3, r3, L2_INIT@l
213 /* invalidate the L2 cache */
214 bl l2cache_invalidate
219 * Calculate absolute address in FLASH and jump there
220 *------------------------------------------------------*/
221 lis r3, CFG_MONITOR_BASE@h
222 ori r3, r3, CFG_MONITOR_BASE@l
223 addi r3, r3, in_flash - _start + EXC_OFF_SYS_RESET
228 /* let the C-code set up the rest */
230 /* Be careful to keep code relocatable ! */
231 /*------------------------------------------------------*/
232 /* perform low-level init */
234 /* enable extended addressing */
241 * Cache must be enabled here for stack-in-cache trick.
242 * This means we need to enable the BATS.
243 * Cache should be turned on after BATs, since by default
244 * everything is write-through.
247 /* enable address translation */
251 /* enable and invalidate the data cache */
252 /* bl l1dcache_enable */
260 #ifdef CFG_INIT_RAM_LOCK
265 /* set up the stack pointer in our newly created
267 lis r1, (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET)@h
268 ori r1, r1, (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET)@l
270 li r0, 0 /* Make room for stack frame header and */
271 stwu r0, -4(r1) /* clear final stack frame so that */
272 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
274 GET_GOT /* initialize GOT access */
276 /* setup the rest of the bats */
281 #if (CFG_CCSRBAR_DEFAULT != CFG_CCSRBAR)
286 /* run low-level CPU init code (from Flash) */
292 /* Load PX_AUX register address in r4 */
295 /* Load contents of PX_AUX in r3 bits 24 to 31*/
298 /* Mask and obtain the bit in r3 */
299 rlwinm. r3, r3, 0, 24, 24
300 /* If not zero, jump and continue with u-boot */
303 /* Load back contents of PX_AUX in r3 bits 24 to 31 */
305 /* Set the MSB of the register value */
307 /* Write value in r3 back to PX_AUX */
310 /* Get the address to jump to in r3*/
311 lis r3, CFG_DIAG_ADDR@h
312 ori r3, r3, CFG_DIAG_ADDR@l
314 /* Load the LR with the branch address */
317 /* Branch to diagnostic */
323 /* bl l2cache_enable */
327 /* run 1st part of board init code (from Flash) */
333 .globl invalidate_bats
337 /* invalidate BATs */
364 * Set up bats needed early on - this is usually the BAT for the
365 * stack-in-cache and the Flash
371 ori r4, r4, CFG_IBAT5L@l
373 ori r3, r3, CFG_IBAT5U@l
380 ori r4, r4, CFG_DBAT5L@l
382 ori r3, r3, CFG_DBAT5U@l
389 ori r4, r4, CFG_IBAT6L@l
391 ori r3, r3, CFG_IBAT6U@l
398 ori r4, r4, CFG_DBAT6L@l
400 ori r3, r3, CFG_DBAT6U@l
419 .globl enable_addr_trans
421 /* enable address translation */
423 ori r5, r5, (MSR_IR | MSR_DR)
428 .globl disable_addr_trans
430 /* disable address translation */
433 andi. r0, r3, (MSR_IR | MSR_DR)
441 * This code finishes saving the registers to the exception frame
442 * and jumps to the appropriate handler for the exception.
443 * Register r21 is pointer into trap frame, r1 has new stack pointer.
445 .globl transfer_to_handler
456 andi. r24,r23,0x3f00 /* get vector offset */
460 mtspr SPRG2,r22 /* r1 is now kernel sp */
461 lwz r24,0(r23) /* virtual address of handler */
462 lwz r23,4(r23) /* where to go when done */
467 rfi /* jump to handler, enable MMU */
470 mfmsr r28 /* Disable interrupts */
474 SYNC /* Some chip revs need this... */
489 lwz r2,_NIP(r1) /* Restore environment */
516 * Description: Input 8 bits
525 * Description: Output 8 bits
534 * Description: Output 16 bits
543 * Description: Byte reverse and output 16 bits
552 * Description: Output 32 bits
561 * Description: Byte reverse and output 32 bits
570 * Description: Input 16 bits
579 * Description: Input 16 bits and byte reverse
588 * Description: Input 32 bits
597 * Description: Input 32 bits and byte reverse
605 * void relocate_code (addr_sp, gd, addr_moni)
607 * This "function" does not return, instead it continues in RAM
608 * after relocating the monitor code.
612 * r5 = length in bytes
618 mr r1, r3 /* Set new stack pointer */
619 mr r9, r4 /* Save copy of Global Data pointer */
620 mr r2, r9 /* Save for DECLARE_GLOBAL_DATA_PTR */
621 mr r10, r5 /* Save copy of Destination Address */
623 mr r3, r5 /* Destination Address */
624 lis r4, CFG_MONITOR_BASE@h /* Source Address */
625 ori r4, r4, CFG_MONITOR_BASE@l
626 lwz r5, GOT(__init_end)
628 li r6, CFG_CACHELINE_SIZE /* Cache Line Size */
633 * New GOT-PTR = (old GOT-PTR - CFG_MONITOR_BASE) + Destination Address
639 /* First our own GOT */
641 /* then the one used by the C code */
648 bl board_relocate_rom
650 mr r3, r10 /* Destination Address */
651 lis r4, CFG_MONITOR_BASE@h /* Source Address */
652 ori r4, r4, CFG_MONITOR_BASE@l
653 lwz r5, GOT(__init_end)
655 li r6, CFG_CACHELINE_SIZE /* Cache Line Size */
660 beq cr1,4f /* In place copy is not necessary */
661 beq 7f /* Protect against 0 count */
680 * Now flush the cache: note that we must start from a cache aligned
681 * address. Otherwise we might miss one cache line.
685 beq 7f /* Always flush prefetch queue in any case */
693 sync /* Wait for all dcbst to complete on bus */
699 7: sync /* Wait for all icbi to complete on bus */
703 * We are done. Do not return, instead branch to second part of board
704 * initialization, now running from RAM.
706 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
715 * Relocation Function, r14 point to got2+0x8000
717 * Adjust got2 pointers, no need to check for 0, this code
718 * already puts a few entries in the table.
720 li r0,__got2_entries@sectoff@l
721 la r3,GOT(_GOT2_TABLE_)
722 lwz r11,GOT(_GOT2_TABLE_)
732 * Now adjust the fixups and the pointers to the fixups
733 * in case we need to move ourselves again.
735 2: li r0,__fixup_entries@sectoff@l
736 lwz r3,GOT(_FIXUP_TABLE_)
750 * Now clear BSS segment
752 lwz r3,GOT(__bss_start)
765 mr r3, r9 /* Init Date pointer */
766 mr r4, r10 /* Destination Address */
769 /* not reached - end relocate_code */
770 /*-----------------------------------------------------------------------*/
773 * Copy exception vector code to low memory
776 * r7: source address, r8: end address, r9: target address
781 lwz r8, GOT(_end_of_vectors)
783 li r9, 0x100 /* reset vector always at 0x100 */
786 bgelr /* return if r7>=r8 - just in case */
788 mflr r4 /* save link register */
798 * relocate `hdlr' and `int_return' entries
800 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
801 li r8, Alignment - _start + EXC_OFF_SYS_RESET
804 addi r7, r7, 0x100 /* next exception vector */
808 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
811 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
814 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
815 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
818 addi r7, r7, 0x100 /* next exception vector */
822 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
823 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
826 addi r7, r7, 0x100 /* next exception vector */
830 /* enable execptions from RAM vectors */
834 ori r7,r7,MSR_ME /* Enable Machine Check */
837 mtlr r4 /* restore link register */
841 * Function: relocate entries for one exception vector
844 lwz r0, 0(r7) /* hdlr ... */
845 add r0, r0, r3 /* ... += dest_addr */
848 lwz r0, 4(r7) /* int_return ... */
849 add r0, r0, r3 /* ... += dest_addr */
857 .globl enable_ext_addr
860 lis r0, (HID0_HIGH_BAT_EN | HID0_XBSEN | HID0_XAEN)@h
861 ori r0, r0, (HID0_HIGH_BAT_EN | HID0_XBSEN | HID0_XAEN)@l
867 #if (CFG_CCSRBAR_DEFAULT != CFG_CCSRBAR)
870 /* Special sequence needed to update CCSRBAR itself */
871 lis r4, CFG_CCSRBAR_DEFAULT@h
872 ori r4, r4, CFG_CCSRBAR_DEFAULT@l
874 lis r5, CFG_CCSRBAR@h
875 ori r5, r5, CFG_CCSRBAR@l
885 lis r3, CFG_CCSRBAR@h
886 lwz r5, CFG_CCSRBAR@l(r3)
892 #ifdef CFG_INIT_RAM_LOCK
894 /* Allocate Initial RAM in data cache.
896 lis r3, (CFG_INIT_RAM_ADDR & ~31)@h
897 ori r3, r3, (CFG_INIT_RAM_ADDR & ~31)@l
898 li r2, ((CFG_INIT_RAM_END & ~31) + \
899 (CFG_INIT_RAM_ADDR & 31) + 31) / 32
906 /* Lock the data cache */
915 /* Lock the first way of the data cache */
918 #if defined(CONFIG_ALTIVEC)
928 .globl unlock_ram_in_cache
930 /* invalidate the INIT_RAM section */
931 lis r3, (CFG_INIT_RAM_ADDR & ~31)@h
932 ori r3, r3, (CFG_INIT_RAM_ADDR & ~31)@l
933 li r2, ((CFG_INIT_RAM_END & ~31) + \
934 (CFG_INIT_RAM_ADDR & 31) + 31) / 32
939 sync /* Wait for all icbi to complete on bus */
942 /* Unlock the data cache and invalidate it */
954 /* Unlock the first way of the data cache */
958 #ifdef CONFIG_ALTIVEC
974 /* If this is a multi-cpu system then we need to handle the
975 * 2nd cpu. The assumption is that the 2nd cpu is being
976 * held in boot holdoff mode until the 1st cpu unlocks it
977 * from Linux. We'll do some basic cpu init and then pass
978 * it to the Linux Reset Vector.
979 * Sri: Much of this initialization is not required. Linux
980 * rewrites the bats, and the sprs and also enables the L1 cache.
982 #if (CONFIG_NUM_CPUS > 1)
983 .globl secondary_cpu_setup
985 /* Do only core setup on all cores except cpu0 */
991 /* init the L2 cache */
992 addis r3, r0, L2_INIT@h
993 ori r3, r3, L2_INIT@l
996 #ifdef CONFIG_ALTIVEC
999 /* invalidate the L2 cache */
1000 bl l2cache_invalidate
1004 /* enable and invalidate the data cache */
1008 /* enable and invalidate the instruction cache*/
1019 /* MCP|SYNCBE|ABE in HID1 */
1027 lis r3, CONFIG_LINUX_RESET_VEC@h
1028 ori r3, r3, CONFIG_LINUX_RESET_VEC@l
1032 /* Never Returns, Running in Linux Now */