2 * Copyright 2004, 2007 Freescale Semiconductor.
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 #ifndef CONFIG_FSL_LAW
291 /* run low-level CPU init code (from Flash) */
297 /* Load PX_AUX register address in r4 */
300 /* Load contents of PX_AUX in r3 bits 24 to 31*/
303 /* Mask and obtain the bit in r3 */
304 rlwinm. r3, r3, 0, 24, 24
305 /* If not zero, jump and continue with u-boot */
308 /* Load back contents of PX_AUX in r3 bits 24 to 31 */
310 /* Set the MSB of the register value */
312 /* Write value in r3 back to PX_AUX */
315 /* Get the address to jump to in r3*/
316 lis r3, CFG_DIAG_ADDR@h
317 ori r3, r3, CFG_DIAG_ADDR@l
319 /* Load the LR with the branch address */
322 /* Branch to diagnostic */
328 /* bl l2cache_enable */
332 /* run 1st part of board init code (from Flash) */
338 .globl invalidate_bats
342 /* invalidate BATs */
367 /* setup_bats - set them up to some initial state */
368 /* Skip any BATS setup in early_bats */
375 addis r4, r0, CFG_IBAT0L@h
376 ori r4, r4, CFG_IBAT0L@l
377 addis r3, r0, CFG_IBAT0U@h
378 ori r3, r3, CFG_IBAT0U@l
384 addis r4, r0, CFG_DBAT0L@h
385 ori r4, r4, CFG_DBAT0L@l
386 addis r3, r0, CFG_DBAT0U@h
387 ori r3, r3, CFG_DBAT0U@l
393 addis r4, r0, CFG_IBAT1L@h
394 ori r4, r4, CFG_IBAT1L@l
395 addis r3, r0, CFG_IBAT1U@h
396 ori r3, r3, CFG_IBAT1U@l
402 addis r4, r0, CFG_DBAT1L@h
403 ori r4, r4, CFG_DBAT1L@l
404 addis r3, r0, CFG_DBAT1U@h
405 ori r3, r3, CFG_DBAT1U@l
411 addis r4, r0, CFG_IBAT2L@h
412 ori r4, r4, CFG_IBAT2L@l
413 addis r3, r0, CFG_IBAT2U@h
414 ori r3, r3, CFG_IBAT2U@l
420 addis r4, r0, CFG_DBAT2L@h
421 ori r4, r4, CFG_DBAT2L@l
422 addis r3, r0, CFG_DBAT2U@h
423 ori r3, r3, CFG_DBAT2U@l
429 addis r4, r0, CFG_IBAT3L@h
430 ori r4, r4, CFG_IBAT3L@l
431 addis r3, r0, CFG_IBAT3U@h
432 ori r3, r3, CFG_IBAT3U@l
438 addis r4, r0, CFG_DBAT3L@h
439 ori r4, r4, CFG_DBAT3L@l
440 addis r3, r0, CFG_DBAT3U@h
441 ori r3, r3, CFG_DBAT3U@l
447 addis r4, r0, CFG_IBAT4L@h
448 ori r4, r4, CFG_IBAT4L@l
449 addis r3, r0, CFG_IBAT4U@h
450 ori r3, r3, CFG_IBAT4U@l
456 addis r4, r0, CFG_DBAT4L@h
457 ori r4, r4, CFG_DBAT4L@l
458 addis r3, r0, CFG_DBAT4U@h
459 ori r3, r3, CFG_DBAT4U@l
465 addis r4, r0, CFG_IBAT7L@h
466 ori r4, r4, CFG_IBAT7L@l
467 addis r3, r0, CFG_IBAT7U@h
468 ori r3, r3, CFG_IBAT7U@l
474 addis r4, r0, CFG_DBAT7L@h
475 ori r4, r4, CFG_DBAT7L@l
476 addis r3, r0, CFG_DBAT7U@h
477 ori r3, r3, CFG_DBAT7U@l
488 * Set up bats needed early on - this is usually the BAT for the
489 * stack-in-cache and the Flash
495 ori r4, r4, CFG_IBAT5L@l
497 ori r3, r3, CFG_IBAT5U@l
504 ori r4, r4, CFG_DBAT5L@l
506 ori r3, r3, CFG_DBAT5U@l
513 ori r4, r4, CFG_IBAT6L@l
515 ori r3, r3, CFG_IBAT6U@l
522 ori r4, r4, CFG_DBAT6L@l
524 ori r3, r3, CFG_DBAT6U@l
543 .globl enable_addr_trans
545 /* enable address translation */
547 ori r5, r5, (MSR_IR | MSR_DR)
552 .globl disable_addr_trans
554 /* disable address translation */
557 andi. r0, r3, (MSR_IR | MSR_DR)
565 * This code finishes saving the registers to the exception frame
566 * and jumps to the appropriate handler for the exception.
567 * Register r21 is pointer into trap frame, r1 has new stack pointer.
569 .globl transfer_to_handler
580 andi. r24,r23,0x3f00 /* get vector offset */
584 mtspr SPRG2,r22 /* r1 is now kernel sp */
585 lwz r24,0(r23) /* virtual address of handler */
586 lwz r23,4(r23) /* where to go when done */
591 rfi /* jump to handler, enable MMU */
594 mfmsr r28 /* Disable interrupts */
598 SYNC /* Some chip revs need this... */
613 lwz r2,_NIP(r1) /* Restore environment */
640 * Description: Input 8 bits
649 * Description: Output 8 bits
658 * Description: Output 16 bits
667 * Description: Byte reverse and output 16 bits
676 * Description: Output 32 bits
685 * Description: Byte reverse and output 32 bits
694 * Description: Input 16 bits
703 * Description: Input 16 bits and byte reverse
712 * Description: Input 32 bits
721 * Description: Input 32 bits and byte reverse
730 * Description: Data Cache block flush
731 * Input: r3 = effective address
741 * Description: Data Cache block Invalidate
742 * Input: r3 = effective address
752 * Description: Data Cache block zero.
753 * Input: r3 = effective address
763 * Description: Processor Synchronize
773 * void relocate_code (addr_sp, gd, addr_moni)
775 * This "function" does not return, instead it continues in RAM
776 * after relocating the monitor code.
780 * r5 = length in bytes
786 mr r1, r3 /* Set new stack pointer */
787 mr r9, r4 /* Save copy of Global Data pointer */
788 mr r29, r9 /* Save for DECLARE_GLOBAL_DATA_PTR */
789 mr r10, r5 /* Save copy of Destination Address */
791 mr r3, r5 /* Destination Address */
792 lis r4, CFG_MONITOR_BASE@h /* Source Address */
793 ori r4, r4, CFG_MONITOR_BASE@l
794 lwz r5, GOT(__init_end)
796 li r6, CFG_CACHELINE_SIZE /* Cache Line Size */
801 * New GOT-PTR = (old GOT-PTR - CFG_MONITOR_BASE) + Destination Address
807 /* First our own GOT */
809 /* then the one used by the C code */
816 bl board_relocate_rom
818 mr r3, r10 /* Destination Address */
819 lis r4, CFG_MONITOR_BASE@h /* Source Address */
820 ori r4, r4, CFG_MONITOR_BASE@l
821 lwz r5, GOT(__init_end)
823 li r6, CFG_CACHELINE_SIZE /* Cache Line Size */
828 beq cr1,4f /* In place copy is not necessary */
829 beq 7f /* Protect against 0 count */
848 * Now flush the cache: note that we must start from a cache aligned
849 * address. Otherwise we might miss one cache line.
853 beq 7f /* Always flush prefetch queue in any case */
861 sync /* Wait for all dcbst to complete on bus */
867 7: sync /* Wait for all icbi to complete on bus */
871 * We are done. Do not return, instead branch to second part of board
872 * initialization, now running from RAM.
874 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
883 * Relocation Function, r14 point to got2+0x8000
885 * Adjust got2 pointers, no need to check for 0, this code
886 * already puts a few entries in the table.
888 li r0,__got2_entries@sectoff@l
889 la r3,GOT(_GOT2_TABLE_)
890 lwz r11,GOT(_GOT2_TABLE_)
900 * Now adjust the fixups and the pointers to the fixups
901 * in case we need to move ourselves again.
903 2: li r0,__fixup_entries@sectoff@l
904 lwz r3,GOT(_FIXUP_TABLE_)
918 * Now clear BSS segment
920 lwz r3,GOT(__bss_start)
933 mr r3, r9 /* Init Date pointer */
934 mr r4, r10 /* Destination Address */
937 /* not reached - end relocate_code */
938 /*-----------------------------------------------------------------------*/
941 * Copy exception vector code to low memory
944 * r7: source address, r8: end address, r9: target address
949 lwz r8, GOT(_end_of_vectors)
951 li r9, 0x100 /* reset vector always at 0x100 */
954 bgelr /* return if r7>=r8 - just in case */
956 mflr r4 /* save link register */
966 * relocate `hdlr' and `int_return' entries
968 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
969 li r8, Alignment - _start + EXC_OFF_SYS_RESET
972 addi r7, r7, 0x100 /* next exception vector */
976 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
979 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
982 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
983 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
986 addi r7, r7, 0x100 /* next exception vector */
990 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
991 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
994 addi r7, r7, 0x100 /* next exception vector */
998 /* enable execptions from RAM vectors */
1002 ori r7,r7,MSR_ME /* Enable Machine Check */
1005 mtlr r4 /* restore link register */
1009 * Function: relocate entries for one exception vector
1012 lwz r0, 0(r7) /* hdlr ... */
1013 add r0, r0, r3 /* ... += dest_addr */
1016 lwz r0, 4(r7) /* int_return ... */
1017 add r0, r0, r3 /* ... += dest_addr */
1025 .globl enable_ext_addr
1028 lis r0, (HID0_HIGH_BAT_EN | HID0_XBSEN | HID0_XAEN)@h
1029 ori r0, r0, (HID0_HIGH_BAT_EN | HID0_XBSEN | HID0_XAEN)@l
1035 #if (CFG_CCSRBAR_DEFAULT != CFG_CCSRBAR)
1036 .globl setup_ccsrbar
1038 /* Special sequence needed to update CCSRBAR itself */
1039 lis r4, CFG_CCSRBAR_DEFAULT@h
1040 ori r4, r4, CFG_CCSRBAR_DEFAULT@l
1042 lis r5, CFG_CCSRBAR@h
1043 ori r5, r5, CFG_CCSRBAR@l
1053 lis r3, CFG_CCSRBAR@h
1054 lwz r5, CFG_CCSRBAR@l(r3)
1060 #ifdef CFG_INIT_RAM_LOCK
1062 /* Allocate Initial RAM in data cache.
1064 lis r3, (CFG_INIT_RAM_ADDR & ~31)@h
1065 ori r3, r3, (CFG_INIT_RAM_ADDR & ~31)@l
1066 li r2, ((CFG_INIT_RAM_END & ~31) + \
1067 (CFG_INIT_RAM_ADDR & 31) + 31) / 32
1074 /* Lock the data cache */
1083 /* Lock the first way of the data cache */
1086 #if defined(CONFIG_ALTIVEC)
1096 .globl unlock_ram_in_cache
1097 unlock_ram_in_cache:
1098 /* invalidate the INIT_RAM section */
1099 lis r3, (CFG_INIT_RAM_ADDR & ~31)@h
1100 ori r3, r3, (CFG_INIT_RAM_ADDR & ~31)@l
1101 li r2, ((CFG_INIT_RAM_END & ~31) + \
1102 (CFG_INIT_RAM_ADDR & 31) + 31) / 32
1107 sync /* Wait for all icbi to complete on bus */
1110 /* Unlock the data cache and invalidate it */
1122 /* Unlock the first way of the data cache */
1126 #ifdef CONFIG_ALTIVEC
1142 /* If this is a multi-cpu system then we need to handle the
1143 * 2nd cpu. The assumption is that the 2nd cpu is being
1144 * held in boot holdoff mode until the 1st cpu unlocks it
1145 * from Linux. We'll do some basic cpu init and then pass
1146 * it to the Linux Reset Vector.
1147 * Sri: Much of this initialization is not required. Linux
1148 * rewrites the bats, and the sprs and also enables the L1 cache.
1150 #if (CONFIG_NUM_CPUS > 1)
1151 .globl secondary_cpu_setup
1152 secondary_cpu_setup:
1153 /* Do only core setup on all cores except cpu0 */
1159 /* init the L2 cache */
1160 addis r3, r0, L2_INIT@h
1161 ori r3, r3, L2_INIT@l
1164 #ifdef CONFIG_ALTIVEC
1167 /* invalidate the L2 cache */
1168 bl l2cache_invalidate
1172 /* enable and invalidate the data cache */
1176 /* enable and invalidate the instruction cache*/
1187 /* MCP|SYNCBE|ABE in HID1 */
1195 lis r3, CONFIG_LINUX_RESET_VEC@h
1196 ori r3, r3, CONFIG_LINUX_RESET_VEC@l
1200 /* Never Returns, Running in Linux Now */