1 /*------------------------------------------------------------------------------+
2 * This source code is dual-licensed. You may use it under the terms of
3 * the GNU General Public License version 2, or under the license below.
5 * This source code has been made available to you by IBM on an AS-IS
6 * basis. Anyone receiving this source is licensed under IBM
7 * copyrights to use it in any way he or she deems fit, including
8 * copying it, modifying it, compiling it, and redistributing it either
9 * with or without modifications. No license under IBM patents or
10 * patent applications is to be implied by the copyright license.
12 * Any user of this software should understand that IBM cannot provide
13 * technical support for this software and will not be responsible for
14 * any consequences resulting from the use of this software.
16 * Any person who transfers this source code or any derivative work
17 * must include the IBM copyright notice, this paragraph, and the
18 * preceding two paragraphs in the transferred software.
20 * COPYRIGHT I B M CORPORATION 1995
21 * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
22 *-------------------------------------------------------------------------------*/
24 /*-----------------------------------------------------------------------------
25 * Function: ext_bus_cntlr_init
26 * Description: Initializes the External Bus Controller for the external
27 * peripherals. IMPORTANT: For pass1 this code must run from
28 * cache since you can not reliably change a peripheral banks
29 * timing register (pbxap) while running code from that bank.
30 * For ex., since we are running from ROM on bank 0, we can NOT
31 * execute the code that modifies bank 0 timings from ROM, so
32 * we run it from cache.
33 * Bank 0 - Flash or Multi Purpose Socket
34 * Bank 1 - Multi Purpose Socket or Flash (set in C-Code)
35 * Bank 2 - UART 1 (set in C-Code)
36 * Bank 3 - UART 2 (set in C-Code)
40 * Bank 7 - PLD Register
41 *-----------------------------------------------------------------------------*/
44 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
46 #include <configs/MIP405.h>
47 #include <ppc_asm.tmpl>
50 #include <asm/cache.h>
55 .globl ext_bus_cntlr_init
57 mflr r4 /* save link register */
58 mfdcr r3,strap /* get strapping reg */
59 andi. r0, r3, PSR_ROM_LOC /* mask out irrelevant bits */
60 bnelr /* jump back if PCI boot */
64 mflr r3 /* get address of ..getAddr */
65 mtlr r4 /* restore link register */
66 addi r4,0,14 /* set ctr to 14; used to prefetch */
67 mtctr r4 /* 14 cache lines to fit this function */
68 /* in cache (gives us 8x14=112 instrctns) */
70 icbt r0,r3 /* prefetch cache line for addr in r3 */
71 addi r3,r3,32 /* move to next cache line */
72 bdnz ..ebcloop /* continue for 14 cache lines */
74 /*-------------------------------------------------------------------
75 * Delay to ensure all accesses to ROM are complete before changing
77 *------------------------------------------------------------------- */
82 bdnz ..spinlp /* spin loop */
84 /*-----------------------------------------------------------------------
86 *----------------------------------------------------------------------- */
91 andi. r0, r4, 0x2000 /* mask out irrelevant bits */
92 beq 0f /* jump if 8 bit bus width */
94 /* setup 16 bit things
95 *-----------------------------------------------------------------------
96 * Memory Bank 0 (16 Bit Flash) initialization
97 *---------------------------------------------------------------------- */
101 addis r4,0,(FLASH_AP_B)@h
102 ori r4,r4,(FLASH_AP_B)@l
107 /* BS=0x010(4MB),BU=0x3(R/W), */
108 addis r4,0,(FLASH_CR_B)@h
109 ori r4,r4,(FLASH_CR_B)@l
115 /* 8Bit boot mode: */
116 /*-----------------------------------------------------------------------
117 * Memory Bank 0 Multi Purpose Socket initialization
118 *----------------------------------------------------------------------- */
119 /* 0x7F8FFE80 slowest boot */
122 addis r4,0,(MPS_AP_B)@h
123 ori r4,r4,(MPS_AP_B)@l
128 /* BS=0x010(4MB),BU=0x3(R/W), */
129 addis r4,0,(MPS_CR_B)@h
130 ori r4,r4,(MPS_CR_B)@l
136 /*-----------------------------------------------------------------------
137 * Memory Bank 2-3-4-5-6 (not used) initialization
138 *-----------------------------------------------------------------------*/
180 nop /* pass2 DCR errata #8 */
183 #if defined(CONFIG_BOOT_PCI)
184 .section .bootpg,"ax"
186 /*******************************************
190 /* first handle errata #68 / PCI_18 */
191 iccci r0, r0 /* invalidate I-cache */
193 mticcr r31 /* ICCR = 0 (all uncachable) */
196 mfccr0 r28 /* set CCR0[24] = 1 */
200 /* setup PMM0MA (0xEF400004) and PMM0PCIHA (0xEF40000C) */
202 addi r28, r28, 0x0004
203 stw r31, 0x0C(r28) /* clear PMM0PCIHA */
204 lis r29, 0xFFF8 /* open 512 kByte */
205 addi r29, r29, 0x0001/* and enable this region */
206 stwbrx r29, r0, r28 /* write PMM0MA */
208 lis r28, 0xEEC0 /* address of PCIC0_CFGADDR */
209 addi r29, r28, 4 /* add 4 to r29 -> PCIC0_CFGDATA */
211 lis r31, 0x8000 /* set en bit bus 0 */
212 ori r31, r31, 0x304C/* device 6 func 0 reg 4C (XBCS register) */
213 stwbrx r31, r0, r28 /* write it */
215 lwbrx r31, r0, r29 /* load XBCS register */
216 oris r31, r31, 0x02C4/* clear BIOSCS WPE, set lower, extended and 1M extended BIOS enable */
217 stwbrx r31, r0, r29 /* write back XBCS register */
221 b _start /* normal start */