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>
5 * Copyright (C) 2007 Stefan Roese <sr@denx.de>, DENX Software Engineering
6 * Copyright (c) 2008 Nuovation System Designs, LLC
7 * Grant Erickson <gerickson@nuovations.com>
9 * See file CREDITS for list of people who contributed to this
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 /*------------------------------------------------------------------------------+
29 * This source code has been made available to you by IBM on an AS-IS
30 * basis. Anyone receiving this source is licensed under IBM
31 * copyrights to use it in any way he or she deems fit, including
32 * copying it, modifying it, compiling it, and redistributing it either
33 * with or without modifications. No license under IBM patents or
34 * patent applications is to be implied by the copyright license.
36 * Any user of this software should understand that IBM cannot provide
37 * technical support for this software and will not be responsible for
38 * any consequences resulting from the use of this software.
40 * Any person who transfers this source code or any derivative work
41 * must include the IBM copyright notice, this paragraph, and the
42 * preceding two paragraphs in the transferred software.
44 * COPYRIGHT I B M CORPORATION 1995
45 * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
46 *-------------------------------------------------------------------------------
49 /* U-Boot - Startup Code for AMCC 4xx PowerPC based Embedded Boards
52 * The processor starts at 0xfffffffc and the code is executed
54 * in memory, but as long we don't jump around before relocating.
55 * board_init lies at a quite high address and when the cpu has
56 * jumped there, everything is ok.
57 * This works because the cpu gives the FLASH (CS0) the whole
58 * address space at startup, and board_init lies as a echo of
59 * the flash somewhere up there in the memorymap.
61 * board_init will change CS0 to be positioned at the correct
62 * address and (s)dram will be positioned at address 0
68 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
70 #include <ppc_asm.tmpl>
73 #include <asm/cache.h>
76 #ifndef CONFIG_IDENT_STRING
77 #define CONFIG_IDENT_STRING ""
80 #ifdef CFG_INIT_DCACHE_CS
81 # if (CFG_INIT_DCACHE_CS == 0)
84 # if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
85 # define PBxAP_VAL CFG_EBC_PB0AP
86 # define PBxCR_VAL CFG_EBC_PB0CR
89 # if (CFG_INIT_DCACHE_CS == 1)
92 # if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR))
93 # define PBxAP_VAL CFG_EBC_PB1AP
94 # define PBxCR_VAL CFG_EBC_PB1CR
97 # if (CFG_INIT_DCACHE_CS == 2)
100 # if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR))
101 # define PBxAP_VAL CFG_EBC_PB2AP
102 # define PBxCR_VAL CFG_EBC_PB2CR
105 # if (CFG_INIT_DCACHE_CS == 3)
108 # if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR))
109 # define PBxAP_VAL CFG_EBC_PB3AP
110 # define PBxCR_VAL CFG_EBC_PB3CR
113 # if (CFG_INIT_DCACHE_CS == 4)
116 # if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR))
117 # define PBxAP_VAL CFG_EBC_PB4AP
118 # define PBxCR_VAL CFG_EBC_PB4CR
121 # if (CFG_INIT_DCACHE_CS == 5)
124 # if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR))
125 # define PBxAP_VAL CFG_EBC_PB5AP
126 # define PBxCR_VAL CFG_EBC_PB5CR
129 # if (CFG_INIT_DCACHE_CS == 6)
132 # if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR))
133 # define PBxAP_VAL CFG_EBC_PB6AP
134 # define PBxCR_VAL CFG_EBC_PB6CR
137 # if (CFG_INIT_DCACHE_CS == 7)
140 # if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR))
141 # define PBxAP_VAL CFG_EBC_PB7AP
142 # define PBxCR_VAL CFG_EBC_PB7CR
152 * Memory Bank x (nothingness) initialization CFG_INIT_RAM_ADDR + 64 MiB
153 * used as temporary stack pointer for the primordial stack
155 # ifndef CFG_INIT_DCACHE_PBxAR
156 # define CFG_INIT_DCACHE_PBxAR (EBC_BXAP_BME_DISABLED | \
157 EBC_BXAP_TWT_ENCODE(7) | \
158 EBC_BXAP_BCE_DISABLE | \
159 EBC_BXAP_BCT_2TRANS | \
160 EBC_BXAP_CSN_ENCODE(0) | \
161 EBC_BXAP_OEN_ENCODE(0) | \
162 EBC_BXAP_WBN_ENCODE(0) | \
163 EBC_BXAP_WBF_ENCODE(0) | \
164 EBC_BXAP_TH_ENCODE(2) | \
165 EBC_BXAP_RE_DISABLED | \
166 EBC_BXAP_SOR_NONDELAYED | \
167 EBC_BXAP_BEM_WRITEONLY | \
168 EBC_BXAP_PEN_DISABLED)
169 # endif /* CFG_INIT_DCACHE_PBxAR */
170 # ifndef CFG_INIT_DCACHE_PBxCR
171 # define CFG_INIT_DCACHE_PBxCR (EBC_BXCR_BAS_ENCODE(CFG_INIT_RAM_ADDR) | \
175 # endif /* CFG_INIT_DCACHE_PBxCR */
176 # ifndef CFG_INIT_RAM_PATTERN
177 # define CFG_INIT_RAM_PATTERN 0xDEADDEAD
179 #endif /* CFG_INIT_DCACHE_CS */
181 #if (defined(CFG_INIT_RAM_DCACHE) && (CFG_INIT_RAM_END > (4 << 10)))
182 #error Only 4k of init-ram is supported - please adjust CFG_INIT_RAM_END!
186 * Unless otherwise overriden, enable two 128MB cachable instruction regions
187 * at CFG_SDRAM_BASE and another 128MB cacheable instruction region covering
188 * NOR flash at CFG_FLASH_BASE. Disable all cacheable data regions.
190 #if !defined(CFG_FLASH_BASE)
191 /* If not already defined, set it to the "last" 128MByte region */
192 # define CFG_FLASH_BASE 0xf8000000
194 #if !defined(CFG_ICACHE_SACR_VALUE)
195 # define CFG_ICACHE_SACR_VALUE \
196 (PPC_128MB_SACR_VALUE(CFG_SDRAM_BASE + ( 0 << 20)) | \
197 PPC_128MB_SACR_VALUE(CFG_SDRAM_BASE + (128 << 20)) | \
198 PPC_128MB_SACR_VALUE(CFG_FLASH_BASE))
199 #endif /* !defined(CFG_ICACHE_SACR_VALUE) */
201 #if !defined(CFG_DCACHE_SACR_VALUE)
202 # define CFG_DCACHE_SACR_VALUE \
204 #endif /* !defined(CFG_DCACHE_SACR_VALUE) */
206 #define function_prolog(func_name) .text; \
210 #define function_epilog(func_name) .type func_name,@function; \
211 .size func_name,.-func_name
213 /* We don't want the MMU yet.
216 #define MSR_KERNEL ( MSR_ME ) /* Machine Check */
219 .extern ext_bus_cntlr_init
220 #ifdef CONFIG_NAND_U_BOOT
221 .extern reconfig_tlb0
225 * Set up GOT: Global Offset Table
227 * Use r14 to access the GOT
229 #if !defined(CONFIG_NAND_SPL)
231 GOT_ENTRY(_GOT2_TABLE_)
232 GOT_ENTRY(_FIXUP_TABLE_)
235 GOT_ENTRY(_start_of_vectors)
236 GOT_ENTRY(_end_of_vectors)
237 GOT_ENTRY(transfer_to_handler)
239 GOT_ENTRY(__init_end)
241 GOT_ENTRY(__bss_start)
243 #endif /* CONFIG_NAND_SPL */
245 #if defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL)
247 * NAND U-Boot image is started from offset 0
250 #if defined(CONFIG_440)
254 bl cpu_init_f /* run low-level CPU init code (from Flash) */
259 * 440 Startup -- on reset only the top 4k of the effective
260 * address space is mapped in by an entry in the instruction
261 * and data shadow TLB. The .bootpg section is located in the
262 * top 4k & does only what's necessary to map in the the rest
263 * of the boot rom. Once the boot rom is mapped in we can
264 * proceed with normal startup.
266 * NOTE: CS0 only covers the top 2MB of the effective address
270 #if defined(CONFIG_440)
271 #if !defined(CONFIG_NAND_SPL)
272 .section .bootpg,"ax"
276 /**************************************************************************/
278 /*--------------------------------------------------------------------+
279 | 440EPX BUP Change - Hardware team request
280 +--------------------------------------------------------------------*/
281 #if defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
286 /*----------------------------------------------------------------+
287 | Core bug fix. Clear the esr
288 +-----------------------------------------------------------------*/
291 /*----------------------------------------------------------------*/
292 /* Clear and set up some registers. */
293 /*----------------------------------------------------------------*/
294 iccci r0,r0 /* NOTE: operands not used for 440 */
295 dccci r0,r0 /* NOTE: operands not used for 440 */
302 /* NOTE: 440GX adds machine check status regs */
303 #if defined(CONFIG_440) && !defined(CONFIG_440GP)
310 /*----------------------------------------------------------------*/
312 /*----------------------------------------------------------------*/
313 /* Disable store gathering & broadcast, guarantee inst/data
314 * cache block touch, force load/store alignment
315 * (see errata 1.12: 440_33)
317 lis r1,0x0030 /* store gathering & broadcast disable */
318 ori r1,r1,0x6000 /* cache touch */
321 /*----------------------------------------------------------------*/
322 /* Initialize debug */
323 /*----------------------------------------------------------------*/
325 andis. r1, r1, 0x8000 /* test DBCR0[EDM] bit */
326 bne skip_debug_init /* if set, don't clear debug register */
339 mtspr dbsr,r1 /* Clear all valid bits */
342 #if defined (CONFIG_440SPE)
343 /*----------------------------------------------------------------+
344 | Initialize Core Configuration Reg1.
345 | a. ICDPEI: Record even parity. Normal operation.
346 | b. ICTPEI: Record even parity. Normal operation.
347 | c. DCTPEI: Record even parity. Normal operation.
348 | d. DCDPEI: Record even parity. Normal operation.
349 | e. DCUPEI: Record even parity. Normal operation.
350 | f. DCMPEI: Record even parity. Normal operation.
351 | g. FCOM: Normal operation
352 | h. MMUPEI: Record even parity. Normal operation.
353 | i. FFF: Flush only as much data as necessary.
354 | j. TCS: Timebase increments from CPU clock.
355 +-----------------------------------------------------------------*/
359 /*----------------------------------------------------------------+
360 | Reset the timebase.
361 | The previous write to CCR1 sets the timebase source.
362 +-----------------------------------------------------------------*/
367 /*----------------------------------------------------------------*/
368 /* Setup interrupt vectors */
369 /*----------------------------------------------------------------*/
370 mtspr ivpr,r0 /* Vectors start at 0x0000_0000 */
372 mtspr ivor0,r1 /* Critical input */
374 mtspr ivor1,r1 /* Machine check */
376 mtspr ivor2,r1 /* Data storage */
378 mtspr ivor3,r1 /* Instruction storage */
380 mtspr ivor4,r1 /* External interrupt */
382 mtspr ivor5,r1 /* Alignment */
384 mtspr ivor6,r1 /* Program check */
386 mtspr ivor7,r1 /* Floating point unavailable */
388 mtspr ivor8,r1 /* System call */
390 mtspr ivor9,r1 /* Auxiliary Processor unavailable */
392 mtspr ivor10,r1 /* Decrementer */
394 mtspr ivor13,r1 /* Data TLB error */
396 mtspr ivor14,r1 /* Instr TLB error */
398 mtspr ivor15,r1 /* Debug */
400 /*----------------------------------------------------------------*/
401 /* Configure cache regions */
402 /*----------------------------------------------------------------*/
420 /*----------------------------------------------------------------*/
421 /* Cache victim limits */
422 /*----------------------------------------------------------------*/
423 /* floors 0, ceiling max to use the entire cache -- nothing locked
430 /*----------------------------------------------------------------+
431 |Initialize MMUCR[STID] = 0.
432 +-----------------------------------------------------------------*/
439 /*----------------------------------------------------------------*/
440 /* Clear all TLB entries -- TID = 0, TS = 0 */
441 /*----------------------------------------------------------------*/
443 li r1,0x003f /* 64 TLB entries */
445 rsttlb: tlbwe r0,r1,0x0000 /* Invalidate all entries (V=0)*/
451 /*----------------------------------------------------------------*/
452 /* TLB entry setup -- step thru tlbtab */
453 /*----------------------------------------------------------------*/
454 #if defined(CONFIG_440SPE)
455 /*----------------------------------------------------------------*/
456 /* We have different TLB tables for revA and rev B of 440SPe */
457 /*----------------------------------------------------------------*/
469 bl tlbtab /* Get tlbtab pointer */
472 li r1,0x003f /* 64 TLB entries max */
479 beq 2f /* 0 marks end */
482 tlbwe r0,r4,0 /* TLB Word 0 */
483 tlbwe r1,r4,1 /* TLB Word 1 */
484 tlbwe r2,r4,2 /* TLB Word 2 */
485 addi r4,r4,1 /* Next TLB */
488 /*----------------------------------------------------------------*/
489 /* Continue from 'normal' start */
490 /*----------------------------------------------------------------*/
496 mtspr srr1,r0 /* Keep things disabled for now */
500 #endif /* CONFIG_440 */
503 * r3 - 1st arg to board_init(): IMMP pointer
504 * r4 - 2nd arg to board_init(): boot flag
506 #ifndef CONFIG_NAND_SPL
508 .long 0x27051956 /* U-Boot Magic Number */
509 .globl version_string
511 .ascii U_BOOT_VERSION
512 .ascii " (", __DATE__, " - ", __TIME__, ")"
513 .ascii CONFIG_IDENT_STRING, "\0"
515 . = EXC_OFF_SYS_RESET
516 .globl _start_of_vectors
519 /* Critical input. */
520 CRIT_EXCEPTION(0x100, CritcalInput, UnknownException)
524 MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)
526 CRIT_EXCEPTION(0x200, MachineCheck, MachineCheckException)
527 #endif /* CONFIG_440 */
529 /* Data Storage exception. */
530 STD_EXCEPTION(0x300, DataStorage, UnknownException)
532 /* Instruction Storage exception. */
533 STD_EXCEPTION(0x400, InstStorage, UnknownException)
535 /* External Interrupt exception. */
536 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
538 /* Alignment exception. */
541 EXCEPTION_PROLOG(SRR0, SRR1)
546 addi r3,r1,STACK_FRAME_OVERHEAD
548 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
549 lwz r6,GOT(transfer_to_handler)
553 .long AlignmentException - _start + _START_OFFSET
554 .long int_return - _start + _START_OFFSET
556 /* Program check exception */
559 EXCEPTION_PROLOG(SRR0, SRR1)
560 addi r3,r1,STACK_FRAME_OVERHEAD
562 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
563 lwz r6,GOT(transfer_to_handler)
567 .long ProgramCheckException - _start + _START_OFFSET
568 .long int_return - _start + _START_OFFSET
571 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
572 STD_EXCEPTION(0x900, Decrementer, DecrementerPITException)
573 STD_EXCEPTION(0xa00, APU, UnknownException)
575 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
578 STD_EXCEPTION(0x1300, DataTLBError, UnknownException)
579 STD_EXCEPTION(0x1400, InstructionTLBError, UnknownException)
581 STD_EXCEPTION(0x1000, PIT, DecrementerPITException)
582 STD_EXCEPTION(0x1100, InstructionTLBMiss, UnknownException)
583 STD_EXCEPTION(0x1200, DataTLBMiss, UnknownException)
585 CRIT_EXCEPTION(0x2000, DebugBreakpoint, DebugException )
587 .globl _end_of_vectors
594 /*****************************************************************************/
595 #if defined(CONFIG_440)
597 /*----------------------------------------------------------------*/
598 /* Clear and set up some registers. */
599 /*----------------------------------------------------------------*/
602 mtspr dec,r0 /* prevent dec exceptions */
603 mtspr tbl,r0 /* prevent fit & wdt exceptions */
605 mtspr tsr,r1 /* clear all timer exception status */
606 mtspr tcr,r0 /* disable all */
607 mtspr esr,r0 /* clear exception syndrome register */
608 mtxer r0 /* clear integer exception register */
610 /*----------------------------------------------------------------*/
611 /* Debug setup -- some (not very good) ice's need an event*/
612 /* to establish control :-( Define CFG_INIT_DBCR to the dbsr */
613 /* value you need in this case 0x8cff 0000 should do the trick */
614 /*----------------------------------------------------------------*/
615 #if defined(CFG_INIT_DBCR)
618 mtspr dbsr,r1 /* Clear all status bits */
619 lis r0,CFG_INIT_DBCR@h
620 ori r0,r0,CFG_INIT_DBCR@l
625 /*----------------------------------------------------------------*/
626 /* Setup the internal SRAM */
627 /*----------------------------------------------------------------*/
630 #ifdef CFG_INIT_RAM_DCACHE
631 /* Clear Dcache to use as RAM */
632 addis r3,r0,CFG_INIT_RAM_ADDR@h
633 ori r3,r3,CFG_INIT_RAM_ADDR@l
634 addis r4,r0,CFG_INIT_RAM_END@h
635 ori r4,r4,CFG_INIT_RAM_END@l
636 rlwinm. r5,r4,0,27,31
648 * Lock the init-ram/stack in d-cache, so that other regions
649 * may use d-cache as well
650 * Note, that this current implementation locks exactly 4k
651 * of d-cache, so please make sure that you don't define a
652 * bigger init-ram area. Take a look at the lwmon5 440EPx
653 * implementation as a reference.
657 /* 8. set TFLOOR/NFLOOR to 8 (-> 8*16*32 bytes locked -> 4k) */
673 #endif /* CFG_INIT_RAM_DCACHE */
675 /* 440EP & 440GR are only 440er PPC's without internal SRAM */
676 #if !defined(CONFIG_440EP) && !defined(CONFIG_440GR)
677 /* not all PPC's have internal SRAM usable as L2-cache */
678 #if defined(CONFIG_440GX) || \
679 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
680 defined(CONFIG_460EX) || defined(CONFIG_460GT)
681 mtdcr l2_cache_cfg,r0 /* Ensure L2 Cache is off */
687 and r1,r1,r2 /* Disable parity check */
690 and r1,r1,r2 /* Disable pwr mgmt */
693 lis r1,0x8000 /* BAS = 8000_0000 */
694 #if defined(CONFIG_440GX) || defined(CONFIG_440SP)
695 ori r1,r1,0x0980 /* first 64k */
696 mtdcr isram0_sb0cr,r1
698 ori r1,r1,0x0980 /* second 64k */
699 mtdcr isram0_sb1cr,r1
701 ori r1,r1, 0x0980 /* third 64k */
702 mtdcr isram0_sb2cr,r1
704 ori r1,r1, 0x0980 /* fourth 64k */
705 mtdcr isram0_sb3cr,r1
706 #elif defined(CONFIG_440SPE)
707 lis r1,0x0000 /* BAS = 0000_0000 */
708 ori r1,r1,0x0984 /* first 64k */
709 mtdcr isram0_sb0cr,r1
711 ori r1,r1,0x0984 /* second 64k */
712 mtdcr isram0_sb1cr,r1
714 ori r1,r1, 0x0984 /* third 64k */
715 mtdcr isram0_sb2cr,r1
717 ori r1,r1, 0x0984 /* fourth 64k */
718 mtdcr isram0_sb3cr,r1
719 #elif defined(CONFIG_460EX) || defined(CONFIG_460GT)
720 lis r1,0x4000 /* BAS = 8000_0000 */
721 ori r1,r1,0x4580 /* 16k */
722 mtdcr isram0_sb0cr,r1
723 #elif defined(CONFIG_440GP)
724 ori r1,r1,0x0380 /* 8k rw */
725 mtdcr isram0_sb0cr,r1
726 mtdcr isram0_sb1cr,r0 /* Disable bank 1 */
728 #endif /* #if !defined(CONFIG_440EP) && !defined(CONFIG_440GR) */
730 /*----------------------------------------------------------------*/
731 /* Setup the stack in internal SRAM */
732 /*----------------------------------------------------------------*/
733 lis r1,CFG_INIT_RAM_ADDR@h
734 ori r1,r1,CFG_INIT_SP_OFFSET@l
737 stwu r0,-4(r1) /* Terminate call chain */
739 stwu r1,-8(r1) /* Save back chain and move SP */
740 lis r0,RESET_VECTOR@h /* Address of reset vector */
741 ori r0,r0, RESET_VECTOR@l
742 stwu r1,-8(r1) /* Save back chain and move SP */
743 stw r0,+12(r1) /* Save return addr (underflow vect) */
745 #ifdef CONFIG_NAND_SPL
746 bl nand_boot_common /* will not return */
750 bl cpu_init_f /* run low-level CPU init code (from Flash) */
754 #endif /* CONFIG_440 */
756 /*****************************************************************************/
758 /*----------------------------------------------------------------------- */
759 /* Set up some machine state registers. */
760 /*----------------------------------------------------------------------- */
761 addi r0,r0,0x0000 /* initialize r0 to zero */
762 mtspr esr,r0 /* clear Exception Syndrome Reg */
763 mttcr r0 /* timer control register */
764 mtexier r0 /* disable all interrupts */
765 addis r4,r0,0xFFFF /* set r4 to 0xFFFFFFFF (status in the */
766 ori r4,r4,0xFFFF /* dbsr is cleared by setting bits to 1) */
767 mtdbsr r4 /* clear/reset the dbsr */
768 mtexisr r4 /* clear all pending interrupts */
770 mtexier r4 /* enable critical exceptions */
771 addis r4,r0,0x0000 /* assume 403GCX - enable core clk */
772 ori r4,r4,0x4020 /* dbling (no harm done on GA and GC */
773 mtiocr r4 /* since bit not used) & DRC to latch */
774 /* data bus on rising edge of CAS */
775 /*----------------------------------------------------------------------- */
777 /*----------------------------------------------------------------------- */
779 /*----------------------------------------------------------------------- */
780 /* Invalidate i-cache and d-cache TAG arrays. */
781 /*----------------------------------------------------------------------- */
782 addi r3,0,1024 /* 1/4 of I-cache size, half of D-cache */
783 addi r4,0,1024 /* 1/4 of I-cache */
788 addic. r3,r3,-16 /* move back one cache line */
789 bne ..cloop /* loop back to do rest until r3 = 0 */
792 /* initialize IOP480 so it can read 1 MB code area for SRAM spaces */
793 /* this requires enabling MA[17..0], by default only MA[12..0] are enabled. */
796 /* first copy IOP480 register base address into r3 */
797 addis r3,0,0x5000 /* IOP480 register base address hi */
798 /* ori r3,r3,0x0000 / IOP480 register base address lo */
801 /* use r4 as the working variable */
802 /* turn on CS3 (LOCCTL.7) */
803 lwz r4,0x84(r3) /* LOCTL is at offset 0x84 */
804 andi. r4,r4,0xff7f /* make bit 7 = 0 -- CS3 mode */
805 stw r4,0x84(r3) /* LOCTL is at offset 0x84 */
808 #ifdef CONFIG_DASA_SIM
809 /* use r4 as the working variable */
810 /* turn on MA17 (LOCCTL.7) */
811 lwz r4,0x84(r3) /* LOCTL is at offset 0x84 */
812 ori r4,r4,0x80 /* make bit 7 = 1 -- MA17 mode */
813 stw r4,0x84(r3) /* LOCTL is at offset 0x84 */
816 /* turn on MA16..13 (LCS0BRD.12 = 0) */
817 lwz r4,0x100(r3) /* LCS0BRD is at offset 0x100 */
818 andi. r4,r4,0xefff /* make bit 12 = 0 */
819 stw r4,0x100(r3) /* LCS0BRD is at offset 0x100 */
821 /* make sure above stores all comlete before going on */
824 /* last thing, set local init status done bit (DEVINIT.31) */
825 lwz r4,0x80(r3) /* DEVINIT is at offset 0x80 */
826 oris r4,r4,0x8000 /* make bit 31 = 1 */
827 stw r4,0x80(r3) /* DEVINIT is at offset 0x80 */
829 /* clear all pending interrupts and disable all interrupts */
830 li r4,-1 /* set p1 to 0xffffffff */
831 stw r4,0x1b0(r3) /* clear all pending interrupts */
832 stw r4,0x1b8(r3) /* clear all pending interrupts */
833 li r4,0 /* set r4 to 0 */
834 stw r4,0x1b4(r3) /* disable all interrupts */
835 stw r4,0x1bc(r3) /* disable all interrupts */
837 /* make sure above stores all comlete before going on */
840 /* Set-up icache cacheability. */
841 lis r1, CFG_ICACHE_SACR_VALUE@h
842 ori r1, r1, CFG_ICACHE_SACR_VALUE@l
846 /* Set-up dcache cacheability. */
847 lis r1, CFG_DCACHE_SACR_VALUE@h
848 ori r1, r1, CFG_DCACHE_SACR_VALUE@l
851 addis r1,r0,CFG_INIT_RAM_ADDR@h
852 ori r1,r1,CFG_INIT_SP_OFFSET /* set up the stack to SDRAM */
853 li r0, 0 /* Make room for stack frame header and */
854 stwu r0, -4(r1) /* clear final stack frame so that */
855 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
857 GET_GOT /* initialize GOT access */
859 bl board_init_f /* run first part of init code (from Flash) */
861 #endif /* CONFIG_IOP480 */
863 /*****************************************************************************/
864 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
865 defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \
866 defined(CONFIG_405EX) || defined(CONFIG_405)
867 /*----------------------------------------------------------------------- */
868 /* Clear and set up some registers. */
869 /*----------------------------------------------------------------------- */
871 #if !defined(CONFIG_405EX)
875 * On 405EX, completely clearing the SGR leads to PPC hangup
876 * upon PCIe configuration access. The PCIe memory regions
877 * need to be guarded!
884 mtesr r4 /* clear Exception Syndrome Reg */
885 mttcr r4 /* clear Timer Control Reg */
886 mtxer r4 /* clear Fixed-Point Exception Reg */
887 mtevpr r4 /* clear Exception Vector Prefix Reg */
888 addi r4,r0,(0xFFFF-0x10000) /* set r4 to 0xFFFFFFFF (status in the */
889 /* dbsr is cleared by setting bits to 1) */
890 mtdbsr r4 /* clear/reset the dbsr */
892 /* Invalidate the i- and d-caches. */
896 /* Set-up icache cacheability. */
897 lis r4, CFG_ICACHE_SACR_VALUE@h
898 ori r4, r4, CFG_ICACHE_SACR_VALUE@l
902 /* Set-up dcache cacheability. */
903 lis r4, CFG_DCACHE_SACR_VALUE@h
904 ori r4, r4, CFG_DCACHE_SACR_VALUE@l
907 #if !(defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
908 /*----------------------------------------------------------------------- */
909 /* Tune the speed and size for flash CS0 */
910 /*----------------------------------------------------------------------- */
911 bl ext_bus_cntlr_init
914 #if !(defined(CFG_INIT_DCACHE_CS) || defined(CFG_TEMP_STACK_OCM))
916 * For boards that don't have OCM and can't use the data cache
917 * for their primordial stack, setup stack here directly after the
918 * SDRAM is initialized in ext_bus_cntlr_init.
920 lis r1, CFG_INIT_RAM_ADDR@h
921 ori r1,r1,CFG_INIT_SP_OFFSET /* set up the stack in SDRAM */
923 li r0, 0 /* Make room for stack frame header and */
924 stwu r0, -4(r1) /* clear final stack frame so that */
925 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
927 * Set up a dummy frame to store reset vector as return address.
928 * this causes stack underflow to reset board.
930 stwu r1, -8(r1) /* Save back chain and move SP */
931 lis r0, RESET_VECTOR@h /* Address of reset vector */
932 ori r0, r0, RESET_VECTOR@l
933 stwu r1, -8(r1) /* Save back chain and move SP */
934 stw r0, +12(r1) /* Save return addr (underflow vect) */
935 #endif /* !(CFG_INIT_DCACHE_CS || !CFG_TEM_STACK_OCM) */
937 #if defined(CONFIG_405EP)
938 /*----------------------------------------------------------------------- */
939 /* DMA Status, clear to come up clean */
940 /*----------------------------------------------------------------------- */
941 addis r3,r0, 0xFFFF /* Clear all existing DMA status */
945 bl ppc405ep_init /* do ppc405ep specific init */
946 #endif /* CONFIG_405EP */
948 #if defined(CFG_OCM_DATA_ADDR) && defined(CFG_OCM_DATA_SIZE)
949 #if defined(CONFIG_405EZ)
950 /********************************************************************
951 * Setup OCM - On Chip Memory - PPC405EZ uses OCM Controller V2
952 *******************************************************************/
954 * We can map the OCM on the PLB3, so map it at
955 * CFG_OCM_DATA_ADDR + 0x8000
957 lis r3,CFG_OCM_DATA_ADDR@h /* OCM location */
958 ori r3,r3,CFG_OCM_DATA_ADDR@l
959 ori r3,r3,0x0270 /* 16K for Bank 1, R/W/Enable */
960 mtdcr ocmplb3cr1,r3 /* Set PLB Access */
961 ori r3,r3,0x4000 /* Add 0x4000 for bank 2 */
962 mtdcr ocmplb3cr2,r3 /* Set PLB Access */
965 lis r3,CFG_OCM_DATA_ADDR@h /* OCM location */
966 ori r3,r3,CFG_OCM_DATA_ADDR@l
967 ori r3,r3,0x0270 /* 16K for Bank 1, R/W/Enable */
968 mtdcr ocmdscr1, r3 /* Set Data Side */
969 mtdcr ocmiscr1, r3 /* Set Instruction Side */
970 ori r3,r3,0x4000 /* Add 0x4000 for bank 2 */
971 mtdcr ocmdscr2, r3 /* Set Data Side */
972 mtdcr ocmiscr2, r3 /* Set Instruction Side */
973 addis r3,0,0x0800 /* OCM Data Parity Disable - 1 Wait State */
977 #else /* CONFIG_405EZ */
978 /********************************************************************
979 * Setup OCM - On Chip Memory
980 *******************************************************************/
984 mfdcr r3, ocmiscntl /* get instr-side IRAM config */
985 mfdcr r4, ocmdscntl /* get data-side IRAM config */
986 and r3, r3, r0 /* disable data-side IRAM */
987 and r4, r4, r0 /* disable data-side IRAM */
988 mtdcr ocmiscntl, r3 /* set instr-side IRAM config */
989 mtdcr ocmdscntl, r4 /* set data-side IRAM config */
992 lis r3,CFG_OCM_DATA_ADDR@h /* OCM location */
993 ori r3,r3,CFG_OCM_DATA_ADDR@l
995 addis r4, 0, 0xC000 /* OCM data area enabled */
998 #endif /* CONFIG_405EZ */
1001 /*----------------------------------------------------------------------- */
1002 /* Setup temporary stack in DCACHE or OCM if needed for SDRAM SPD. */
1003 /*----------------------------------------------------------------------- */
1004 #ifdef CFG_INIT_DCACHE_CS
1007 lis r4, CFG_INIT_DCACHE_PBxAR@h
1008 ori r4, r4, CFG_INIT_DCACHE_PBxAR@l
1013 lis r4, CFG_INIT_DCACHE_PBxCR@h
1014 ori r4, r4, CFG_INIT_DCACHE_PBxCR@l
1018 * Enable the data cache for the 128MB storage access control region
1019 * at CFG_INIT_RAM_ADDR.
1022 oris r4, r4, PPC_128MB_SACR_VALUE(CFG_INIT_RAM_ADDR)@h
1023 ori r4, r4, PPC_128MB_SACR_VALUE(CFG_INIT_RAM_ADDR)@l
1027 * Preallocate data cache lines to be used to avoid a subsequent
1028 * cache miss and an ensuing machine check exception when exceptions
1033 lis r3, CFG_INIT_RAM_ADDR@h
1034 ori r3, r3, CFG_INIT_RAM_ADDR@l
1036 lis r4, CFG_INIT_RAM_END@h
1037 ori r4, r4, CFG_INIT_RAM_END@l
1040 * Convert the size, in bytes, to the number of cache lines/blocks
1043 clrlwi. r5, r4, (32 - L1_CACHE_SHIFT)
1044 srwi r5, r4, L1_CACHE_SHIFT
1050 /* Preallocate the computed number of cache blocks. */
1051 ..alloc_dcache_block:
1053 addi r3, r3, L1_CACHE_BYTES
1054 bdnz ..alloc_dcache_block
1058 * Load the initial stack pointer and data area and convert the size,
1059 * in bytes, to the number of words to initialize to a known value.
1061 lis r1, CFG_INIT_RAM_ADDR@h
1062 ori r1, r1, CFG_INIT_SP_OFFSET@l
1064 lis r4, (CFG_INIT_RAM_END >> 2)@h
1065 ori r4, r4, (CFG_INIT_RAM_END >> 2)@l
1068 lis r2, CFG_INIT_RAM_ADDR@h
1069 ori r2, r2, CFG_INIT_RAM_END@l
1071 lis r4, CFG_INIT_RAM_PATTERN@h
1072 ori r4, r4, CFG_INIT_RAM_PATTERN@l
1079 * Make room for stack frame header and clear final stack frame so
1080 * that stack backtraces terminate cleanly.
1086 * Set up a dummy frame to store reset vector as return address.
1087 * this causes stack underflow to reset board.
1089 stwu r1, -8(r1) /* Save back chain and move SP */
1090 addis r0, 0, RESET_VECTOR@h /* Address of reset vector */
1091 ori r0, r0, RESET_VECTOR@l
1092 stwu r1, -8(r1) /* Save back chain and move SP */
1093 stw r0, +12(r1) /* Save return addr (underflow vect) */
1095 #elif defined(CFG_TEMP_STACK_OCM) && \
1096 (defined(CFG_OCM_DATA_ADDR) && defined(CFG_OCM_DATA_SIZE))
1101 /* Set up Stack at top of OCM */
1102 lis r1, (CFG_INIT_RAM_ADDR + CFG_INIT_SP_OFFSET)@h
1103 ori r1, r1, (CFG_INIT_RAM_ADDR + CFG_INIT_SP_OFFSET)@l
1105 /* Set up a zeroized stack frame so that backtrace works right */
1111 * Set up a dummy frame to store reset vector as return address.
1112 * this causes stack underflow to reset board.
1114 stwu r1, -8(r1) /* Save back chain and move SP */
1115 lis r0, RESET_VECTOR@h /* Address of reset vector */
1116 ori r0, r0, RESET_VECTOR@l
1117 stwu r1, -8(r1) /* Save back chain and move SP */
1118 stw r0, +12(r1) /* Save return addr (underflow vect) */
1119 #endif /* CFG_INIT_DCACHE_CS */
1121 #ifdef CONFIG_NAND_SPL
1122 bl nand_boot_common /* will not return */
1124 GET_GOT /* initialize GOT access */
1126 bl cpu_init_f /* run low-level CPU init code (from Flash) */
1128 /* NEVER RETURNS! */
1129 bl board_init_f /* run first part of init code (from Flash) */
1130 #endif /* CONFIG_NAND_SPL */
1132 #endif /* CONFIG_405GP || CONFIG_405CR || CONFIG_405 || CONFIG_405EP */
1133 /*----------------------------------------------------------------------- */
1136 #ifndef CONFIG_NAND_SPL
1138 * This code finishes saving the registers to the exception frame
1139 * and jumps to the appropriate handler for the exception.
1140 * Register r21 is pointer into trap frame, r1 has new stack pointer.
1142 .globl transfer_to_handler
1143 transfer_to_handler:
1153 andi. r24,r23,0x3f00 /* get vector offset */
1157 mtspr SPRG2,r22 /* r1 is now kernel sp */
1158 lwz r24,0(r23) /* virtual address of handler */
1159 lwz r23,4(r23) /* where to go when done */
1164 rfi /* jump to handler, enable MMU */
1167 mfmsr r28 /* Disable interrupts */
1171 SYNC /* Some chip revs need this... */
1186 lwz r2,_NIP(r1) /* Restore environment */
1197 mfmsr r28 /* Disable interrupts */
1201 SYNC /* Some chip revs need this... */
1216 lwz r2,_NIP(r1) /* Restore environment */
1228 mfmsr r28 /* Disable interrupts */
1232 SYNC /* Some chip revs need this... */
1247 lwz r2,_NIP(r1) /* Restore environment */
1256 #endif /* CONFIG_440 */
1264 /*------------------------------------------------------------------------------- */
1265 /* Function: out16 */
1266 /* Description: Output 16 bits */
1267 /*------------------------------------------------------------------------------- */
1273 /*------------------------------------------------------------------------------- */
1274 /* Function: out16r */
1275 /* Description: Byte reverse and output 16 bits */
1276 /*------------------------------------------------------------------------------- */
1282 /*------------------------------------------------------------------------------- */
1283 /* Function: out32r */
1284 /* Description: Byte reverse and output 32 bits */
1285 /*------------------------------------------------------------------------------- */
1291 /*------------------------------------------------------------------------------- */
1292 /* Function: in16 */
1293 /* Description: Input 16 bits */
1294 /*------------------------------------------------------------------------------- */
1300 /*------------------------------------------------------------------------------- */
1301 /* Function: in16r */
1302 /* Description: Input 16 bits and byte reverse */
1303 /*------------------------------------------------------------------------------- */
1309 /*------------------------------------------------------------------------------- */
1310 /* Function: in32r */
1311 /* Description: Input 32 bits and byte reverse */
1312 /*------------------------------------------------------------------------------- */
1319 * void relocate_code (addr_sp, gd, addr_moni)
1321 * This "function" does not return, instead it continues in RAM
1322 * after relocating the monitor code.
1324 * r3 = Relocated stack pointer
1325 * r4 = Relocated global data pointer
1326 * r5 = Relocated text pointer
1328 .globl relocate_code
1330 #if defined(CONFIG_4xx_DCACHE) || defined(CFG_INIT_DCACHE_CS)
1332 * We need to flush the initial global data (gd_t) before the dcache
1333 * will be invalidated.
1336 /* Save registers */
1341 /* Flush initial global data range */
1343 addi r4, r4, CFG_GBL_DATA_SIZE@l
1344 bl flush_dcache_range
1346 #if defined(CFG_INIT_DCACHE_CS)
1348 * Undo the earlier data cache set-up for the primordial stack and
1349 * data area. First, invalidate the data cache and then disable data
1350 * cacheability for that area. Finally, restore the EBC values, if
1354 /* Invalidate the primordial stack and data area in cache */
1355 lis r3, CFG_INIT_RAM_ADDR@h
1356 ori r3, r3, CFG_INIT_RAM_ADDR@l
1358 lis r4, CFG_INIT_RAM_END@h
1359 ori r4, r4, CFG_INIT_RAM_END@l
1362 bl invalidate_dcache_range
1364 /* Disable cacheability for the region */
1366 lis r4, ~PPC_128MB_SACR_VALUE(CFG_INIT_RAM_ADDR)@h
1367 ori r4, r4, ~PPC_128MB_SACR_VALUE(CFG_INIT_RAM_ADDR)@l
1371 /* Restore the EBC parameters */
1375 ori r3, r3, PBxAP_VAL@l
1381 ori r3, r3, PBxCR_VAL@l
1383 #endif /* defined(CFG_INIT_DCACHE_CS) */
1385 /* Restore registers */
1389 #endif /* defined(CONFIG_4xx_DCACHE) || defined(CFG_INIT_DCACHE_CS) */
1391 #ifdef CFG_INIT_RAM_DCACHE
1393 * Unlock the previously locked d-cache
1397 /* set TFLOOR/NFLOOR to 0 again */
1413 #endif /* CFG_INIT_RAM_DCACHE */
1415 #if defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
1416 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
1417 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
1418 defined(CONFIG_460EX) || defined(CONFIG_460GT)
1420 * On some 440er platforms the cache is enabled in the first TLB (Boot-CS)
1421 * to speed up the boot process. Now this cache needs to be disabled.
1423 iccci 0,0 /* Invalidate inst cache */
1424 dccci 0,0 /* Invalidate data cache, now no longer our stack */
1427 #ifdef CFG_TLB_FOR_BOOT_FLASH
1428 addi r1,r0,CFG_TLB_FOR_BOOT_FLASH /* Use defined TLB */
1430 addi r1,r0,0x0000 /* Default TLB entry is #0 */
1431 #endif /* CFG_TLB_FOR_BOOT_FLASH */
1432 tlbre r0,r1,0x0002 /* Read contents */
1433 ori r0,r0,0x0c00 /* Or in the inhibit, write through bit */
1434 tlbwe r0,r1,0x0002 /* Save it out */
1437 #endif /* defined(CONFIG_440EP) || ... || defined(CONFIG_460GT) */
1438 mr r1, r3 /* Set new stack pointer */
1439 mr r9, r4 /* Save copy of Init Data pointer */
1440 mr r10, r5 /* Save copy of Destination Address */
1442 mr r3, r5 /* Destination Address */
1443 lis r4, CFG_MONITOR_BASE@h /* Source Address */
1444 ori r4, r4, CFG_MONITOR_BASE@l
1445 lwz r5, GOT(__init_end)
1447 li r6, L1_CACHE_BYTES /* Cache Line Size */
1452 * New GOT-PTR = (old GOT-PTR - CFG_MONITOR_BASE) + Destination Address
1458 /* First our own GOT */
1460 /* then the one used by the C code */
1470 beq cr1,4f /* In place copy is not necessary */
1471 beq 7f /* Protect against 0 count */
1490 * Now flush the cache: note that we must start from a cache aligned
1491 * address. Otherwise we might miss one cache line.
1495 beq 7f /* Always flush prefetch queue in any case */
1503 sync /* Wait for all dcbst to complete on bus */
1509 7: sync /* Wait for all icbi to complete on bus */
1513 * We are done. Do not return, instead branch to second part of board
1514 * initialization, now running from RAM.
1517 addi r0, r10, in_ram - _start + _START_OFFSET
1519 blr /* NEVER RETURNS! */
1524 * Relocation Function, r14 point to got2+0x8000
1526 * Adjust got2 pointers, no need to check for 0, this code
1527 * already puts a few entries in the table.
1529 li r0,__got2_entries@sectoff@l
1530 la r3,GOT(_GOT2_TABLE_)
1531 lwz r11,GOT(_GOT2_TABLE_)
1541 * Now adjust the fixups and the pointers to the fixups
1542 * in case we need to move ourselves again.
1544 2: li r0,__fixup_entries@sectoff@l
1545 lwz r3,GOT(_FIXUP_TABLE_)
1559 * Now clear BSS segment
1561 lwz r3,GOT(__bss_start)
1584 mr r3, r9 /* Init Data pointer */
1585 mr r4, r10 /* Destination Address */
1589 * Copy exception vector code to low memory
1592 * r7: source address, r8: end address, r9: target address
1596 lwz r7, GOT(_start_of_vectors)
1597 lwz r8, GOT(_end_of_vectors)
1599 li r9, 0x100 /* reset vector always at 0x100 */
1602 bgelr /* return if r7>=r8 - just in case */
1604 mflr r4 /* save link register */
1614 * relocate `hdlr' and `int_return' entries
1616 li r7, .L_MachineCheck - _start + _START_OFFSET
1617 li r8, Alignment - _start + _START_OFFSET
1620 addi r7, r7, 0x100 /* next exception vector */
1624 li r7, .L_Alignment - _start + _START_OFFSET
1627 li r7, .L_ProgramCheck - _start + _START_OFFSET
1631 li r7, .L_FPUnavailable - _start + _START_OFFSET
1634 li r7, .L_Decrementer - _start + _START_OFFSET
1637 li r7, .L_APU - _start + _START_OFFSET
1640 li r7, .L_InstructionTLBError - _start + _START_OFFSET
1643 li r7, .L_DataTLBError - _start + _START_OFFSET
1645 #else /* CONFIG_440 */
1646 li r7, .L_PIT - _start + _START_OFFSET
1649 li r7, .L_InstructionTLBMiss - _start + _START_OFFSET
1652 li r7, .L_DataTLBMiss - _start + _START_OFFSET
1654 #endif /* CONFIG_440 */
1656 li r7, .L_DebugBreakpoint - _start + _START_OFFSET
1659 #if !defined(CONFIG_440)
1660 addi r7,r0,0x1000 /* set ME bit (Machine Exceptions) */
1661 oris r7,r7,0x0002 /* set CE bit (Critical Exceptions) */
1662 mtmsr r7 /* change MSR */
1665 b __440_msr_continue
1668 addi r7,r0,0x1000 /* set ME bit (Machine Exceptions) */
1669 oris r7,r7,0x0002 /* set CE bit (Critical Exceptions) */
1677 mtlr r4 /* restore link register */
1681 * Function: relocate entries for one exception vector
1684 lwz r0, 0(r7) /* hdlr ... */
1685 add r0, r0, r3 /* ... += dest_addr */
1688 lwz r0, 4(r7) /* int_return ... */
1689 add r0, r0, r3 /* ... += dest_addr */
1694 #if defined(CONFIG_440)
1695 /*----------------------------------------------------------------------------+
1697 +----------------------------------------------------------------------------*/
1698 function_prolog(dcbz_area)
1699 rlwinm. r5,r4,0,27,31
1700 rlwinm r5,r4,27,5,31
1709 function_epilog(dcbz_area)
1710 #endif /* CONFIG_440 */
1711 #endif /* CONFIG_NAND_SPL */
1713 /*------------------------------------------------------------------------------- */
1715 /* Description: Input 8 bits */
1716 /*------------------------------------------------------------------------------- */
1722 /*------------------------------------------------------------------------------- */
1723 /* Function: out8 */
1724 /* Description: Output 8 bits */
1725 /*------------------------------------------------------------------------------- */
1731 /*------------------------------------------------------------------------------- */
1732 /* Function: out32 */
1733 /* Description: Output 32 bits */
1734 /*------------------------------------------------------------------------------- */
1740 /*------------------------------------------------------------------------------- */
1741 /* Function: in32 */
1742 /* Description: Input 32 bits */
1743 /*------------------------------------------------------------------------------- */
1749 /**************************************************************************/
1750 /* PPC405EP specific stuff */
1751 /**************************************************************************/
1755 #ifdef CONFIG_BUBINGA
1757 * Initialize EBC chip selects 1 & 4 and GPIO pins (for alternate
1758 * function) to support FPGA and NVRAM accesses below.
1761 lis r3,GPIO0_OSRH@h /* config GPIO output select */
1762 ori r3,r3,GPIO0_OSRH@l
1763 lis r4,CFG_GPIO0_OSRH@h
1764 ori r4,r4,CFG_GPIO0_OSRH@l
1767 ori r3,r3,GPIO0_OSRL@l
1768 lis r4,CFG_GPIO0_OSRL@h
1769 ori r4,r4,CFG_GPIO0_OSRL@l
1772 lis r3,GPIO0_ISR1H@h /* config GPIO input select */
1773 ori r3,r3,GPIO0_ISR1H@l
1774 lis r4,CFG_GPIO0_ISR1H@h
1775 ori r4,r4,CFG_GPIO0_ISR1H@l
1777 lis r3,GPIO0_ISR1L@h
1778 ori r3,r3,GPIO0_ISR1L@l
1779 lis r4,CFG_GPIO0_ISR1L@h
1780 ori r4,r4,CFG_GPIO0_ISR1L@l
1783 lis r3,GPIO0_TSRH@h /* config GPIO three-state select */
1784 ori r3,r3,GPIO0_TSRH@l
1785 lis r4,CFG_GPIO0_TSRH@h
1786 ori r4,r4,CFG_GPIO0_TSRH@l
1789 ori r3,r3,GPIO0_TSRL@l
1790 lis r4,CFG_GPIO0_TSRL@h
1791 ori r4,r4,CFG_GPIO0_TSRL@l
1794 lis r3,GPIO0_TCR@h /* config GPIO driver output enables */
1795 ori r3,r3,GPIO0_TCR@l
1796 lis r4,CFG_GPIO0_TCR@h
1797 ori r4,r4,CFG_GPIO0_TCR@l
1800 li r3,pb1ap /* program EBC bank 1 for RTC access */
1802 lis r3,CFG_EBC_PB1AP@h
1803 ori r3,r3,CFG_EBC_PB1AP@l
1807 lis r3,CFG_EBC_PB1CR@h
1808 ori r3,r3,CFG_EBC_PB1CR@l
1811 li r3,pb1ap /* program EBC bank 1 for RTC access */
1813 lis r3,CFG_EBC_PB1AP@h
1814 ori r3,r3,CFG_EBC_PB1AP@l
1818 lis r3,CFG_EBC_PB1CR@h
1819 ori r3,r3,CFG_EBC_PB1CR@l
1822 li r3,pb4ap /* program EBC bank 4 for FPGA access */
1824 lis r3,CFG_EBC_PB4AP@h
1825 ori r3,r3,CFG_EBC_PB4AP@l
1829 lis r3,CFG_EBC_PB4CR@h
1830 ori r3,r3,CFG_EBC_PB4CR@l
1835 !-----------------------------------------------------------------------
1836 ! Check to see if chip is in bypass mode.
1837 ! If so, write stored CPC0_PLLMR0 and CPC0_PLLMR1 values and perform a
1838 ! CPU reset Otherwise, skip this step and keep going.
1839 ! Note: Running BIOS in bypass mode is not supported since PLB speed
1840 ! will not be fast enough for the SDRAM (min 66MHz)
1841 !-----------------------------------------------------------------------
1843 mfdcr r5, CPC0_PLLMR1
1844 rlwinm r4,r5,1,0x1 /* get system clock source (SSCS) */
1847 beq pll_done /* if SSCS =b'1' then PLL has */
1848 /* already been set */
1849 /* and CPU has been reset */
1850 /* so skip to next section */
1852 #ifdef CONFIG_BUBINGA
1854 !-----------------------------------------------------------------------
1855 ! Read NVRAM to get value to write in PLLMR.
1856 ! If value has not been correctly saved, write default value
1857 ! Default config values (assuming on-board 33MHz SYS_CLK) are above.
1858 ! See CPU_DEFAULT_200 and CPU_DEFAULT_266 above.
1860 ! WARNING: This code assumes the first three words in the nvram_t
1861 ! structure in openbios.h. Changing the beginning of
1862 ! the structure will break this code.
1864 !-----------------------------------------------------------------------
1866 addis r3,0,NVRAM_BASE@h
1867 addi r3,r3,NVRAM_BASE@l
1870 addis r5,0,NVRVFY1@h
1871 addi r5,r5,NVRVFY1@l
1872 cmp cr0,0,r4,r5 /* Compare 1st NVRAM Magic number*/
1876 addis r5,0,NVRVFY2@h
1877 addi r5,r5,NVRVFY2@l
1878 cmp cr0,0,r4,r5 /* Compare 2 NVRAM Magic number */
1880 addi r3,r3,8 /* Skip over conf_size */
1881 lwz r4, 4(r3) /* Load PLLMR1 value from NVRAM */
1882 lwz r3, 0(r3) /* Load PLLMR0 value from NVRAM */
1883 rlwinm r5,r4,1,0x1 /* get system clock source (SSCS) */
1884 cmpi cr0,0,r5,1 /* See if PLL is locked */
1887 #endif /* CONFIG_BUBINGA */
1891 andi. r5, r4, CPC0_BOOT_SEP@l
1892 bne strap_1 /* serial eeprom present */
1893 addis r5,0,CPLD_REG0_ADDR@h
1894 ori r5,r5,CPLD_REG0_ADDR@l
1897 #endif /* CONFIG_TAIHU */
1899 #if defined(CONFIG_ZEUS)
1901 andi. r5, r4, CPC0_BOOT_SEP@l
1902 bne strap_1 /* serial eeprom present */
1909 mfdcr r3, CPC0_PLLMR0
1910 mfdcr r4, CPC0_PLLMR1
1914 addis r3,0,PLLMR0_DEFAULT@h /* PLLMR0 default value */
1915 ori r3,r3,PLLMR0_DEFAULT@l /* */
1916 addis r4,0,PLLMR1_DEFAULT@h /* PLLMR1 default value */
1917 ori r4,r4,PLLMR1_DEFAULT@l /* */
1922 addis r3,0,PLLMR0_DEFAULT_PCI66@h
1923 ori r3,r3,PLLMR0_DEFAULT_PCI66@l
1924 addis r4,0,PLLMR1_DEFAULT_PCI66@h
1925 ori r4,r4,PLLMR1_DEFAULT_PCI66@l
1928 mfdcr r3, CPC0_PLLMR0
1929 mfdcr r4, CPC0_PLLMR1
1930 #endif /* CONFIG_TAIHU */
1933 b pll_write /* Write the CPC0_PLLMR with new value */
1937 !-----------------------------------------------------------------------
1938 ! Clear Soft Reset Register
1939 ! This is needed to enable PCI if not booting from serial EPROM
1940 !-----------------------------------------------------------------------
1950 blr /* return to main code */
1953 !-----------------------------------------------------------------------------
1954 ! Function: pll_write
1955 ! Description: Updates the value of the CPC0_PLLMR according to CMOS27E documentation
1957 ! 1. Pll is first disabled (de-activated by putting in bypass mode)
1959 ! 3. Clock dividers are set while PLL is held in reset and bypassed
1960 ! 4. PLL Reset is cleared
1961 ! 5. Wait 100us for PLL to lock
1962 ! 6. A core reset is performed
1963 ! Input: r3 = Value to write to CPC0_PLLMR0
1964 ! Input: r4 = Value to write to CPC0_PLLMR1
1966 !-----------------------------------------------------------------------------
1971 ori r5,r5,0x0101 /* Stop the UART clocks */
1972 mtdcr CPC0_UCR,r5 /* Before changing PLL */
1974 mfdcr r5, CPC0_PLLMR1
1975 rlwinm r5,r5,0,0x7FFFFFFF /* Disable PLL */
1976 mtdcr CPC0_PLLMR1,r5
1977 oris r5,r5,0x4000 /* Set PLL Reset */
1978 mtdcr CPC0_PLLMR1,r5
1980 mtdcr CPC0_PLLMR0,r3 /* Set clock dividers */
1981 rlwinm r5,r4,0,0x3FFFFFFF /* Reset & Bypass new PLL dividers */
1982 oris r5,r5,0x4000 /* Set PLL Reset */
1983 mtdcr CPC0_PLLMR1,r5 /* Set clock dividers */
1984 rlwinm r5,r5,0,0xBFFFFFFF /* Clear PLL Reset */
1985 mtdcr CPC0_PLLMR1,r5
1988 ! Wait min of 100us for PLL to lock.
1989 ! See CMOS 27E databook for more info.
1990 ! At 200MHz, that means waiting 20,000 instructions
1992 addi r3,0,20000 /* 2000 = 0x4e20 */
1997 oris r5,r5,0x8000 /* Enable PLL */
1998 mtdcr CPC0_PLLMR1,r5 /* Engage */
2001 * Reset CPU to guarantee timings are OK
2002 * Not sure if this is needed...
2005 mtspr dbcr0,r3 /* This will cause a CPU core reset, and */
2006 /* execution will continue from the poweron */
2007 /* vector of 0xfffffffc */
2008 #endif /* CONFIG_405EP */
2010 #if defined(CONFIG_440)
2011 /*----------------------------------------------------------------------------+
2013 +----------------------------------------------------------------------------*/
2014 function_prolog(mttlb3)
2017 function_epilog(mttlb3)
2019 /*----------------------------------------------------------------------------+
2021 +----------------------------------------------------------------------------*/
2022 function_prolog(mftlb3)
2025 function_epilog(mftlb3)
2027 /*----------------------------------------------------------------------------+
2029 +----------------------------------------------------------------------------*/
2030 function_prolog(mttlb2)
2033 function_epilog(mttlb2)
2035 /*----------------------------------------------------------------------------+
2037 +----------------------------------------------------------------------------*/
2038 function_prolog(mftlb2)
2041 function_epilog(mftlb2)
2043 /*----------------------------------------------------------------------------+
2045 +----------------------------------------------------------------------------*/
2046 function_prolog(mttlb1)
2049 function_epilog(mttlb1)
2051 /*----------------------------------------------------------------------------+
2053 +----------------------------------------------------------------------------*/
2054 function_prolog(mftlb1)
2057 function_epilog(mftlb1)
2058 #endif /* CONFIG_440 */
2060 #if defined(CONFIG_NAND_SPL)
2062 * void nand_boot_relocate(dst, src, bytes)
2064 * r3 = Destination address to copy code to (in SDRAM)
2065 * r4 = Source address to copy code from
2066 * r5 = size to copy in bytes
2074 * Copy SPL from icache into SDRAM
2086 * Calculate "corrected" link register, so that we "continue"
2087 * in execution in destination range
2089 sub r3,r7,r6 /* r3 = src - dst */
2090 sub r8,r8,r3 /* r8 = link-reg - (src - dst) */
2096 * First initialize SDRAM. It has to be available *before* calling
2099 lis r3,CFG_SDRAM_BASE@h
2100 ori r3,r3,CFG_SDRAM_BASE@l
2104 * Now copy the 4k SPL code into SDRAM and continue execution
2107 lis r3,CFG_NAND_BOOT_SPL_DST@h
2108 ori r3,r3,CFG_NAND_BOOT_SPL_DST@l
2109 lis r4,CFG_NAND_BOOT_SPL_SRC@h
2110 ori r4,r4,CFG_NAND_BOOT_SPL_SRC@l
2111 lis r5,CFG_NAND_BOOT_SPL_SIZE@h
2112 ori r5,r5,CFG_NAND_BOOT_SPL_SIZE@l
2113 bl nand_boot_relocate
2116 * We're running from SDRAM now!!!
2118 * It is necessary for 4xx systems to relocate from running at
2119 * the original location (0xfffffxxx) to somewhere else (SDRAM
2120 * preferably). This is because CS0 needs to be reconfigured for
2121 * NAND access. And we can't reconfigure this CS when currently
2122 * "running" from it.
2126 * Finally call nand_boot() to load main NAND U-Boot image from
2127 * NAND and jump to it.
2129 bl nand_boot /* will not return */
2130 #endif /* CONFIG_NAND_SPL */