blob: d374db4143bf999704634869a3603bc80cf6907a [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>
Stefan Roeseb36df562010-09-09 19:18:00 +020030#include <asm/ppc4xx.h>
Heiko Schocherca43ba12007-01-11 15:44:44 +010031
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 */
Stefan Roesed1c3b272009-09-09 16:25:29 +020061 mfdcr r24,CPC0_PSR /* 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
Stefan Roesed1c3b272009-09-09 16:25:29 +0200116 li r4,PB1AP /* PB0AP=Peripheral Bank 0 Access Parameters */
117 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100118
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:
Stefan Roesed1c3b272009-09-09 16:25:29 +0200125 mtdcr EBC0_CFGDATA,r4 /* change timing now */
Heiko Schocherca43ba12007-01-11 15:44:44 +0100126
Stefan Roesed1c3b272009-09-09 16:25:29 +0200127 li r4,PB0CR /* PB0CR=Peripheral Bank 0 Control Register */
128 mtdcr EBC0_CFGADDR,r4
129 mfdcr r4,EBC0_CFGDATA
Heiko Schocherca43ba12007-01-11 15:44:44 +0100130 lis r3,0x0001
131 ori r3,r3,0x8000 /* allow reads and writes */
132 or r4,r4,r3
Stefan Roesed1c3b272009-09-09 16:25:29 +0200133 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100134
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
Stefan Roesed1c3b272009-09-09 16:25:29 +0200140 li r4,PB3AP /* Peripheral Bank 1 Access Parameter */
141 mtdcr EBC0_CFGADDR,r4
142 mtdcr EBC0_CFGDATA,r2 /* change timing */
Heiko Schocherca43ba12007-01-11 15:44:44 +0100143
Stefan Roesed1c3b272009-09-09 16:25:29 +0200144 li r4,PB3CR /* Peripheral Bank 1 Configuration Registers */
145 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100146
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
Stefan Roesed1c3b272009-09-09 16:25:29 +0200154 mtdcr EBC0_CFGDATA,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
Stefan Roesed1c3b272009-09-09 16:25:29 +0200172 li r4,PB1AP /* Peripheral Bank 1 Access Parameter */
173 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100174
175 lis r4,0x0000
176 ori r4,r4,0x0200
Stefan Roesed1c3b272009-09-09 16:25:29 +0200177 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100178
Stefan Roesed1c3b272009-09-09 16:25:29 +0200179 li r4,PB1CR /* Peripheral Bank 1 Configuration Registers */
180 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100181
182 lis r4,0x77D1
183 ori r4,r4,0x8000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200184 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100185
186
187/* USB init (without acceleration) */
188#ifndef CONFIG_ISP1161_PRESENT
Stefan Roesed1c3b272009-09-09 16:25:29 +0200189 li r4,PB4AP /* PB4AP=Peripheral Bank 4 Access Parameters */
190 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100191 lis r4,0x0180
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100192 ori r4,r4,0x5940
Stefan Roesed1c3b272009-09-09 16:25:29 +0200193 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100194#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*/
Stefan Roesed1c3b272009-09-09 16:25:29 +0200207 li r4,PB2AP /* PB2AP=Peripheral Bank 2 Access Parameters */
208 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100209/*
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
Stefan Roesed1c3b272009-09-09 16:25:29 +0200229 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100230
231#ifdef IDE_USES_ISA_EMULATION
Stefan Roesed1c3b272009-09-09 16:25:29 +0200232 li r25,PB5AP /* PB5AP=Peripheral Bank 5 Access Parameters */
233 mtdcr EBC0_CFGADDR,r25
234 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100235#endif
236
Stefan Roesed1c3b272009-09-09 16:25:29 +0200237 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
Heiko Schocherca43ba12007-01-11 15:44:44 +0100243
Stefan Roesed1c3b272009-09-09 16:25:29 +0200244 li r25,PB2CR /* PB2CR=Peripheral Bank 2 Configuration Register */
245 mtdcr EBC0_CFGADDR,r25
Heiko Schocherca43ba12007-01-11 15:44:44 +0100246
247 lis r4,0x780B
248 ori r4,r4,0xA000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200249 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100250/*
251 * the other areas are only 1MiB in size
252 */
253 lis r4,0x7401
254 ori r4,r4,0xA000
255
Stefan Roesed1c3b272009-09-09 16:25:29 +0200256 li r25,PB6CR /* PB6CR=Peripheral Bank 6 Configuration Register */
257 mtdcr EBC0_CFGADDR,r25
Heiko Schocherca43ba12007-01-11 15:44:44 +0100258 lis r4,0x7401
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100259 ori r4,r4,0xA000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200260 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100261
Stefan Roesed1c3b272009-09-09 16:25:29 +0200262 li r25,PB7CR /* PB7CR=Peripheral Bank 7 Configuration Register */
263 mtdcr EBC0_CFGADDR,r25
Heiko Schocherca43ba12007-01-11 15:44:44 +0100264 lis r4,0x7411
265 ori r4,r4,0xA000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200266 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100267
268#ifndef CONFIG_ISP1161_PRESENT
Stefan Roesed1c3b272009-09-09 16:25:29 +0200269 li r25,PB4CR /* PB4CR=Peripheral Bank 4 Configuration Register */
270 mtdcr EBC0_CFGADDR,r25
Heiko Schocherca43ba12007-01-11 15:44:44 +0100271 lis r4,0x7421
272 ori r4,r4,0xA000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200273 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100274#endif
275#ifdef IDE_USES_ISA_EMULATION
Stefan Roesed1c3b272009-09-09 16:25:29 +0200276 li r25,PB5CR /* PB5CR=Peripheral Bank 5 Configuration Register */
277 mtdcr EBC0_CFGADDR,r25
Heiko Schocherca43ba12007-01-11 15:44:44 +0100278 lis r4,0x0000
279 ori r4,r4,0x0000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200280 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100281#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
Stefan Roesed1c3b272009-09-09 16:25:29 +0200318 li r4,PB4AP /* PB4AP=Peripheral Bank 4 Access Parameters */
319 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100320
321 lis r4,0x030D
322 ori r4,r4,0x5E80
Stefan Roesed1c3b272009-09-09 16:25:29 +0200323 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100324
Stefan Roesed1c3b272009-09-09 16:25:29 +0200325 li r4,PB4CR /* PB2CR=Peripheral Bank 4 Configuration Register */
326 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100327
328 lis r4,0x77C1
329 ori r4,r4,0xA000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200330 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100331
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
Stefan Roesed1c3b272009-09-09 16:25:29 +0200355 li r4,PB5AP
356 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100357 lis r4,0x040C
358 ori r4,r4,0x0200
Stefan Roesed1c3b272009-09-09 16:25:29 +0200359 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100360
Stefan Roesed1c3b272009-09-09 16:25:29 +0200361 li r4,PB5CR /* PB2CR=Peripheral Bank 2 Configuration Register */
362 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100363
364 lis r4,0x7A01
365 ori r4,r4,0xA000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200366 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100367#endif
368/*
369 * External Peripheral Control Register
370 */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200371 li r4,EBC0_CFG
372 mtdcr EBC0_CFGADDR,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100373
374 lis r4,0xB84E
375 ori r4,r4,0xF000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200376 mtdcr EBC0_CFGDATA,r4
Heiko Schocherca43ba12007-01-11 15:44:44 +0100377/*
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