blob: f97a5ea61049f79c238fcf039d597d03d5341b71 [file] [log] [blame]
Heiko Schocherca43ba12007-01-11 15:44:44 +01001/*------------------------------------------------------------------------------+
2 *
Wolfgang Denkf11033e2007-01-15 13:41:04 +01003 * 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
5 * this follows:
Heiko Schocherca43ba12007-01-11 15:44:44 +01006 *
Josh Boyer31773492009-08-07 13:53:20 -04007 * 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.
9 *
Wolfgang Denkf11033e2007-01-15 13:41:04 +010010 * 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.
Heiko Schocherca43ba12007-01-11 15:44:44 +010016 *
Wolfgang Denkf11033e2007-01-15 13:41:04 +010017 * 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.
Heiko Schocherca43ba12007-01-11 15:44:44 +010020 *
Wolfgang Denkf11033e2007-01-15 13:41:04 +010021 * 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.
Heiko Schocherca43ba12007-01-11 15:44:44 +010024 *
Wolfgang Denkf11033e2007-01-15 13:41:04 +010025 * COPYRIGHT I B M CORPORATION 1995
26 * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
Heiko Schocherca43ba12007-01-11 15:44:44 +010027 *------------------------------------------------------------------------------- */
28
29#include <config.h>
30#include <ppc4xx.h>
31
32#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
33
34#include <ppc_asm.tmpl>
35#include <ppc_defs.h>
36
37#include <asm/cache.h>
38#include <asm/mmu.h>
39
40/**
41 * ext_bus_cntlr_init - Initializes the External Bus Controller for the external peripherals
42 *
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.
48 *
49 * Bank 0 - Boot-Flash
50 * Bank 1 - NAND-Flash
51 * Bank 2 - ISA bus
52 * Bank 3 - Second Flash
53 * Bank 4 - USB controller
54 */
55 .globl ext_bus_cntlr_init
56ext_bus_cntlr_init:
57/*
58 * We need the current boot up configuration to set correct
59 * timings into internal flash and external flash
60 */
61 mfdcr r24,strap /* xxxx xxxx xxxx xxx? ?xxx xxxx xxxx xxxx
Wolfgang Denkf11033e2007-01-15 13:41:04 +010062 0 0 -> 8 bit external ROM
63 0 1 -> 16 bit internal ROM */
Heiko Schocherca43ba12007-01-11 15:44:44 +010064 addi r4,0,2
65 srw r24,r24,r4 /* shift right r24 two positions */
66 andi. r24,r24,0x06000
Wolfgang Denkf11033e2007-01-15 13:41:04 +010067/*
Heiko Schocherca43ba12007-01-11 15:44:44 +010068 * All calculations are based on 33MHz EBC clock.
69 *
70 * First, create a "very slow" timing (~250ns) with burst mode enabled
71 * This is need for the external flash access
72 */
73 lis r25,0x0800
74 ori r25,r25,0x0280 /* 0000 1000 0xxx 0000 0000 0010 100x xxxx = 0x03800280
75/*
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
80 */
81 lis r26,0x8900
82 ori r26,r26,0x0280 /* 1000 1001 0xxx 0000 0000 0010 100x xxxx
83/*
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
86 */
87 mflr r4 /* save link register */
88 bl ..getAddr
89..getAddr:
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) */
95..ebcloop:
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 */
99/*
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
103 */
104 lis r3,0x0
105 ori r3,r3,0xA000 /* ensure 200usec have passed since reset */
106 mtctr r3
107..spinlp:
108 bdnz ..spinlp /* spin loop */
109
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 *----------------------------------------------------------------------- */
115
116 li r4,pb0ap /* PB0AP=Peripheral Bank 0 Access Parameters */
117 mtdcr ebccfga,r4
118
119 mr r4,r26 /* assume internal fast flash is boot flash */
120 cmpwi r24,0x2000 /* assumption true? ... */
121 beq 1f /* ...yes! */
122 mr r4,r25 /* ...no, use the slow variant */
123 mr r25,r26 /* use this for the other flash */
1241:
125 mtdcr ebccfgd,r4 /* change timing now */
126
127 li r4,pb0cr /* PB0CR=Peripheral Bank 0 Control Register */
128 mtdcr ebccfga,r4
129 mfdcr r4,ebccfgd
130 lis r3,0x0001
131 ori r3,r3,0x8000 /* allow reads and writes */
132 or r4,r4,r3
133 mtdcr ebccfgd,r4
134
135/*-----------------------------------------------------------------------
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100136 * Memory Bank 3 (Second-Flash) initialization
Heiko Schocherca43ba12007-01-11 15:44:44 +0100137 * 0xF0000000...0xF01FFFFF -> 2MB
138 *----------------------------------------------------------------------- */
139
140 li r4,pb3ap /* Peripheral Bank 1 Access Parameter */
141 mtdcr ebccfga,r4
142 mtdcr ebccfgd,r2 /* change timing */
143
144 li r4,pb3cr /* Peripheral Bank 1 Configuration Registers */
145 mtdcr ebccfga,r4
146
147 lis r4,0xF003
148 ori r4,r4,0x8000
149/*
150 * Consider boot configuration
151 */
152 xori r24,r24,0x2000 /* invert current bus width */
153 or r4,r4,r24
154 mtdcr ebccfgd,r4
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100155
Heiko Schocherca43ba12007-01-11 15:44:44 +0100156/*-----------------------------------------------------------------------
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
162 * ->
163 * - TWT = 0
164 * - CSN = 0
165 * - OEN = 0
166 * - WBN = 0
167 * - WBF = 0
168 * - TH = 1
169 * ----> 2 clocks per cycle = 60ns cycle (30ns active, 30ns hold)
170 *----------------------------------------------------------------------- */
171
172 li r4,pb1ap /* Peripheral Bank 1 Access Parameter */
173 mtdcr ebccfga,r4
174
175 lis r4,0x0000
176 ori r4,r4,0x0200
177 mtdcr ebccfgd,r4
178
179 li r4,pb1cr /* Peripheral Bank 1 Configuration Registers */
180 mtdcr ebccfga,r4
181
182 lis r4,0x77D1
183 ori r4,r4,0x8000
184 mtdcr ebccfgd,r4
185
186
187/* USB init (without acceleration) */
188#ifndef CONFIG_ISP1161_PRESENT
189 li r4,pb4ap /* PB4AP=Peripheral Bank 4 Access Parameters */
190 mtdcr ebccfga,r4
191 lis r4,0x0180
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100192 ori r4,r4,0x5940
Heiko Schocherca43ba12007-01-11 15:44:44 +0100193 mtdcr ebccfgd,r4
194#endif
195
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 *-----------------------------------------------------------------------
201
202 A7 (ppc notation) or A24 (standard notation) decides about
203 the type of access:
204 A7/A24=0 -> memory cycle
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100205 A7/ /A24=1 -> I/O cycle
Heiko Schocherca43ba12007-01-11 15:44:44 +0100206*/
207 li r4,pb2ap /* PB2AP=Peripheral Bank 2 Access Parameters */
208 mtdcr ebccfga,r4
209/*
210 We emulate an ISA access
211
212 1. Address active
213 2. wait 0 EBC clocks -> CSN=0
214 3. set CS#
215 4. wait 0 EBC clock -> OEN/WBN=0
216 5. set OE#/WE#
217 6. wait 4 clocks (ca. 90ns) and for Ready signal
218 7. hold for 4 clocks -> TH=4
219*/
220
221#if 1
222/* faster access to isa-bus */
223 lis r4,0x0180
224 ori r4,r4,0x5940
225#else
226 lis r4,0x0100
227 ori r4,r4,0x0340
228#endif
229 mtdcr ebccfgd,r4
230
231#ifdef IDE_USES_ISA_EMULATION
232 li r25,pb5ap /* PB5AP=Peripheral Bank 5 Access Parameters */
233 mtdcr ebccfga,r25
234 mtdcr ebccfgd,r4
235#endif
236
237 li r25,pb6ap /* PB6AP=Peripheral Bank 6 Access Parameters */
238 mtdcr ebccfga,r25
239 mtdcr ebccfgd,r4
240 li r25,pb7ap /* PB7AP=Peripheral Bank 7 Access Parameters */
241 mtdcr ebccfga,r25
242 mtdcr ebccfgd,r4
243
244 li r25,pb2cr /* PB2CR=Peripheral Bank 2 Configuration Register */
245 mtdcr ebccfga,r25
246
247 lis r4,0x780B
248 ori r4,r4,0xA000
249 mtdcr ebccfgd,r4
250/*
251 * the other areas are only 1MiB in size
252 */
253 lis r4,0x7401
254 ori r4,r4,0xA000
255
256 li r25,pb6cr /* PB6CR=Peripheral Bank 6 Configuration Register */
257 mtdcr ebccfga,r25
258 lis r4,0x7401
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100259 ori r4,r4,0xA000
Heiko Schocherca43ba12007-01-11 15:44:44 +0100260 mtdcr ebccfgd,r4
261
262 li r25,pb7cr /* PB7CR=Peripheral Bank 7 Configuration Register */
263 mtdcr ebccfga,r25
264 lis r4,0x7411
265 ori r4,r4,0xA000
266 mtdcr ebccfgd,r4
267
268#ifndef CONFIG_ISP1161_PRESENT
269 li r25,pb4cr /* PB4CR=Peripheral Bank 4 Configuration Register */
270 mtdcr ebccfga,r25
271 lis r4,0x7421
272 ori r4,r4,0xA000
273 mtdcr ebccfgd,r4
274#endif
275#ifdef IDE_USES_ISA_EMULATION
276 li r25,pb5cr /* PB5CR=Peripheral Bank 5 Configuration Register */
277 mtdcr ebccfga,r25
278 lis r4,0x0000
279 ori r4,r4,0x0000
280 mtdcr ebccfgd,r4
281#endif
282
283/*-----------------------------------------------------------------------
284 * Memory bank 4: USB controller Philips ISP6111
285 * 0x77C00000 ... 0x77CFFFFF
286 *
287 * The chip is connected to:
288 * - CPU CS#4
289 * - CPU IRQ#2
290 * - CPU DMA 3
291 *
292 * Timing:
293 * - command to first data: 300ns. Software must ensure this timing!
294 * - Write pulse: 26ns
295 * - Read pulse: 33ns
296 * - read cycle time: 150ns
297 * - write cycle time: 140ns
298 *
299 * Note: All calculations are based on 33MHz EBC clock. One '#' or '_' is 30ns
300 *
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100301 * |- 300ns --|
302 * |---- 420ns ---|---- 420ns ---| cycle
Heiko Schocherca43ba12007-01-11 15:44:44 +0100303 * CS ############:###____#######:###____#######
304 * OE ############:####___#######:####___#######
305 * WE ############:####__########:####__########
306 *
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 *----------------------------------------------------------------------- */
315
316#ifdef CONFIG_ISP1161_PRESENT
317
318 li r4,pb4ap /* PB4AP=Peripheral Bank 4 Access Parameters */
319 mtdcr ebccfga,r4
320
321 lis r4,0x030D
322 ori r4,r4,0x5E80
323 mtdcr ebccfgd,r4
324
325 li r4,pb4cr /* PB2CR=Peripheral Bank 4 Configuration Register */
326 mtdcr ebccfga,r4
327
328 lis r4,0x77C1
329 ori r4,r4,0xA000
330 mtdcr ebccfgd,r4
331
332#endif
333
334#ifndef IDE_USES_ISA_EMULATION
335
336/*-----------------------------------------------------------------------
337 * Memory Bank 5 used for IDE access
338 *
339 * Timings for IDE Interface
340 *
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
352 *
353 *----------------------------------------------------------------------- */
354
355 li r4,pb5ap
356 mtdcr ebccfga,r4
357 lis r4,0x040C
358 ori r4,r4,0x0200
359 mtdcr ebccfgd,r4
360
361 li r4,pb5cr /* PB2CR=Peripheral Bank 2 Configuration Register */
362 mtdcr ebccfga,r4
363
364 lis r4,0x7A01
365 ori r4,r4,0xA000
366 mtdcr ebccfgd,r4
367#endif
368/*
369 * External Peripheral Control Register
370 */
371 li r4,epcr
372 mtdcr ebccfga,r4
373
374 lis r4,0xB84E
375 ori r4,r4,0xF000
376 mtdcr ebccfgd,r4
377/*
378 * drive POST code
379 */
380 lis r4,0x7900
381 ori r4,r4,0x0080
382 li r3,0x0001
383 stb r3,0(r4) /* 01 -> external bus controller is initialized */
384 nop /* pass2 DCR errata #8 */
385 blr