1 /*------------------------------------------------------------------------------+
3 * This souce code has been made available to you by EuroDesign
4 * (www.eurodsn.de). It's based on the original IBM source code, so
7 * This source code is dual-licensed. You may use it under the terms of the
8 * GNU General Public License version 2, or under the license below.
10 * This source code has been made available to you by IBM on an AS-IS
11 * basis. Anyone receiving this source is licensed under IBM
12 * copyrights to use it in any way he or she deems fit, including
13 * copying it, modifying it, compiling it, and redistributing it either
14 * with or without modifications. No license under IBM patents or
15 * patent applications is to be implied by the copyright license.
17 * Any user of this software should understand that IBM cannot provide
18 * technical support for this software and will not be responsible for
19 * any consequences resulting from the use of this software.
21 * Any person who transfers this source code or any derivative work
22 * must include the IBM copyright notice, this paragraph, and the
23 * preceding two paragraphs in the transferred software.
25 * COPYRIGHT I B M CORPORATION 1995
26 * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
27 *------------------------------------------------------------------------------- */
30 #include <asm/ppc4xx.h>
32 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
34 #include <ppc_asm.tmpl>
37 #include <asm/cache.h>
41 * ext_bus_cntlr_init - Initializes the External Bus Controller for the external peripherals
43 * IMPORTANT: For pass1 this code must run from cache since you can not
44 * reliably change a peripheral banks timing register (pbxap) while running
45 * code from that bank. For ex., since we are running from ROM on bank 0, we
46 * can NOT execute the code that modifies bank 0 timings from ROM, so
47 * we run it from cache.
52 * Bank 3 - Second Flash
53 * Bank 4 - USB controller
55 .globl ext_bus_cntlr_init
58 * We need the current boot up configuration to set correct
59 * timings into internal flash and external flash
61 mfdcr r24,CPC0_PSR /* xxxx xxxx xxxx xxx? ?xxx xxxx xxxx xxxx
62 0 0 -> 8 bit external ROM
63 0 1 -> 16 bit internal ROM */
65 srw r24,r24,r4 /* shift right r24 two positions */
68 * All calculations are based on 33MHz EBC clock.
70 * First, create a "very slow" timing (~250ns) with burst mode enabled
71 * This is need for the external flash access
74 ori r25,r25,0x0280 /* 0000 1000 0xxx 0000 0000 0010 100x xxxx = 0x03800280
76 * Second, create a fast timing:
77 * 90ns first cycle - 3 clock access
78 * and 90ns burst cycle, plus 1 clock after the last access
79 * This is used for the internal access
82 ori r26,r26,0x0280 /* 1000 1001 0xxx 0000 0000 0010 100x xxxx
84 * We can't change settings on CS# if we currently use them.
85 * -> load a few instructions into cache and run this code from cache
87 mflr r4 /* save link register */
90 mflr r3 /* get address of ..getAddr */
91 mtlr r4 /* restore link register */
92 addi r4,0,14 /* set ctr to 10; used to prefetch */
93 mtctr r4 /* 10 cache lines to fit this function
94 in cache (gives us 8x10=80 instructions) */
96 icbt r0,r3 /* prefetch cache line for addr in r3 */
97 addi r3,r3,32 /* move to next cache line */
98 bdnz ..ebcloop /* continue for 10 cache lines */
100 * Delay to ensure all accesses to ROM are complete before changing
101 * bank 0 timings. 200usec should be enough.
102 * 200,000,000 (cycles/sec) X .000200 (sec) = 0x9C40 cycles
105 ori r3,r3,0xA000 /* ensure 200usec have passed since reset */
108 bdnz ..spinlp /* spin loop */
110 /*-----------------------------------------------------------------------
111 * Memory Bank 0 (BOOT-ROM) initialization
112 * 0xFFEF00000....0xFFFFFFF
113 * We only have to change the timing. Mapping is ok by boot-strapping
114 *----------------------------------------------------------------------- */
116 li r4,PB1AP /* PB0AP=Peripheral Bank 0 Access Parameters */
117 mtdcr EBC0_CFGADDR,r4
119 mr r4,r26 /* assume internal fast flash is boot flash */
120 cmpwi r24,0x2000 /* assumption true? ... */
122 mr r4,r25 /* ...no, use the slow variant */
123 mr r25,r26 /* use this for the other flash */
125 mtdcr EBC0_CFGDATA,r4 /* change timing now */
127 li r4,PB0CR /* PB0CR=Peripheral Bank 0 Control Register */
128 mtdcr EBC0_CFGADDR,r4
129 mfdcr r4,EBC0_CFGDATA
131 ori r3,r3,0x8000 /* allow reads and writes */
133 mtdcr EBC0_CFGDATA,r4
135 /*-----------------------------------------------------------------------
136 * Memory Bank 3 (Second-Flash) initialization
137 * 0xF0000000...0xF01FFFFF -> 2MB
138 *----------------------------------------------------------------------- */
140 li r4,PB3AP /* Peripheral Bank 1 Access Parameter */
141 mtdcr EBC0_CFGADDR,r4
142 mtdcr EBC0_CFGDATA,r2 /* change timing */
144 li r4,PB3CR /* Peripheral Bank 1 Configuration Registers */
145 mtdcr EBC0_CFGADDR,r4
150 * Consider boot configuration
152 xori r24,r24,0x2000 /* invert current bus width */
154 mtdcr EBC0_CFGDATA,r4
156 /*-----------------------------------------------------------------------
157 * Memory Bank 1 (NAND-Flash) initialization
158 * 0x77D00000...0x77DFFFFF -> 1MB
159 * - the write/read pulse to the NAND can be as short as 25ns, bus the cycle time is always 50ns
160 * - the setup time is 0ns
161 * - the hold time is 15ns
169 * ----> 2 clocks per cycle = 60ns cycle (30ns active, 30ns hold)
170 *----------------------------------------------------------------------- */
172 li r4,PB1AP /* Peripheral Bank 1 Access Parameter */
173 mtdcr EBC0_CFGADDR,r4
177 mtdcr EBC0_CFGDATA,r4
179 li r4,PB1CR /* Peripheral Bank 1 Configuration Registers */
180 mtdcr EBC0_CFGADDR,r4
184 mtdcr EBC0_CFGDATA,r4
187 /* USB init (without acceleration) */
188 #ifndef CONFIG_ISP1161_PRESENT
189 li r4,PB4AP /* PB4AP=Peripheral Bank 4 Access Parameters */
190 mtdcr EBC0_CFGADDR,r4
193 mtdcr EBC0_CFGDATA,r4
196 /*-----------------------------------------------------------------------
197 * Memory Bank 2 (ISA Access) initialization (plus memory bank 6 and 7)
198 * 0x78000000...0x7BFFFFFF -> 64 MB
199 * Wir arbeiten bei 33 MHz -> 30ns
200 *-----------------------------------------------------------------------
202 A7 (ppc notation) or A24 (standard notation) decides about
204 A7/A24=0 -> memory cycle
205 A7/ /A24=1 -> I/O cycle
207 li r4,PB2AP /* PB2AP=Peripheral Bank 2 Access Parameters */
208 mtdcr EBC0_CFGADDR,r4
210 We emulate an ISA access
213 2. wait 0 EBC clocks -> CSN=0
215 4. wait 0 EBC clock -> OEN/WBN=0
217 6. wait 4 clocks (ca. 90ns) and for Ready signal
218 7. hold for 4 clocks -> TH=4
222 /* faster access to isa-bus */
229 mtdcr EBC0_CFGDATA,r4
231 #ifdef IDE_USES_ISA_EMULATION
232 li r25,PB5AP /* PB5AP=Peripheral Bank 5 Access Parameters */
233 mtdcr EBC0_CFGADDR,r25
234 mtdcr EBC0_CFGDATA,r4
237 li r25,PB6AP /* PB6AP=Peripheral Bank 6 Access Parameters */
238 mtdcr EBC0_CFGADDR,r25
239 mtdcr EBC0_CFGDATA,r4
240 li r25,PB7AP /* PB7AP=Peripheral Bank 7 Access Parameters */
241 mtdcr EBC0_CFGADDR,r25
242 mtdcr EBC0_CFGDATA,r4
244 li r25,PB2CR /* PB2CR=Peripheral Bank 2 Configuration Register */
245 mtdcr EBC0_CFGADDR,r25
249 mtdcr EBC0_CFGDATA,r4
251 * the other areas are only 1MiB in size
256 li r25,PB6CR /* PB6CR=Peripheral Bank 6 Configuration Register */
257 mtdcr EBC0_CFGADDR,r25
260 mtdcr EBC0_CFGDATA,r4
262 li r25,PB7CR /* PB7CR=Peripheral Bank 7 Configuration Register */
263 mtdcr EBC0_CFGADDR,r25
266 mtdcr EBC0_CFGDATA,r4
268 #ifndef CONFIG_ISP1161_PRESENT
269 li r25,PB4CR /* PB4CR=Peripheral Bank 4 Configuration Register */
270 mtdcr EBC0_CFGADDR,r25
273 mtdcr EBC0_CFGDATA,r4
275 #ifdef IDE_USES_ISA_EMULATION
276 li r25,PB5CR /* PB5CR=Peripheral Bank 5 Configuration Register */
277 mtdcr EBC0_CFGADDR,r25
280 mtdcr EBC0_CFGDATA,r4
283 /*-----------------------------------------------------------------------
284 * Memory bank 4: USB controller Philips ISP6111
285 * 0x77C00000 ... 0x77CFFFFF
287 * The chip is connected to:
293 * - command to first data: 300ns. Software must ensure this timing!
294 * - Write pulse: 26ns
296 * - read cycle time: 150ns
297 * - write cycle time: 140ns
299 * Note: All calculations are based on 33MHz EBC clock. One '#' or '_' is 30ns
302 * |---- 420ns ---|---- 420ns ---| cycle
303 * CS ############:###____#######:###____#######
304 * OE ############:####___#######:####___#######
305 * WE ############:####__########:####__########
307 * ----> 2 clocks RD/WR pulses: 60ns
308 * ----> CSN: 3 clock, 90ns
309 * ----> OEN: 1 clocks (read cycle)
310 * ----> WBN: 1 clocks (write cycle)
311 * ----> WBE: 2 clocks
312 * ----> TH: 7 clock, 210ns
313 * ----> TWT: 7 clocks
314 *----------------------------------------------------------------------- */
316 #ifdef CONFIG_ISP1161_PRESENT
318 li r4,PB4AP /* PB4AP=Peripheral Bank 4 Access Parameters */
319 mtdcr EBC0_CFGADDR,r4
323 mtdcr EBC0_CFGDATA,r4
325 li r4,PB4CR /* PB2CR=Peripheral Bank 4 Configuration Register */
326 mtdcr EBC0_CFGADDR,r4
330 mtdcr EBC0_CFGDATA,r4
334 #ifndef IDE_USES_ISA_EMULATION
336 /*-----------------------------------------------------------------------
337 * Memory Bank 5 used for IDE access
339 * Timings for IDE Interface
341 * SETUP / LENGTH / HOLD - cycles valid for 33.3 MHz clk -> 30ns cycle time
342 * 70 165 30 PIO-Mode 0, [ns]
343 * 3 6 1 [Cycles] ----> AP=0x040C0200
344 * 50 125 20 PIO-Mode 1, [ns]
345 * 2 5 1 [Cycles] ----> AP=0x03080200
346 * 30 100 15 PIO-Mode 2, [ns]
347 * 1 4 1 [Cycles] ----> AP=0x02040200
348 * 30 80 10 PIO-Mode 3, [ns]
349 * 1 3 1 [Cycles] ----> AP=0x01840200
350 * 25 70 10 PIO-Mode 4, [ns]
351 * 1 3 1 [Cycles] ----> AP=0x01840200
353 *----------------------------------------------------------------------- */
356 mtdcr EBC0_CFGADDR,r4
359 mtdcr EBC0_CFGDATA,r4
361 li r4,PB5CR /* PB2CR=Peripheral Bank 2 Configuration Register */
362 mtdcr EBC0_CFGADDR,r4
366 mtdcr EBC0_CFGDATA,r4
369 * External Peripheral Control Register
372 mtdcr EBC0_CFGADDR,r4
376 mtdcr EBC0_CFGDATA,r4
383 stb r3,0(r4) /* 01 -> external bus controller is initialized */
384 nop /* pass2 DCR errata #8 */