2 * Toshiba rbtx4927 specific setup
4 * Author: MontaVista Software, Inc.
7 * Copyright 2001-2002 MontaVista Software Inc.
9 * Copyright (C) 1996, 97, 2001, 04 Ralf Baechle (ralf@linux-mips.org)
10 * Copyright (C) 2000 RidgeRun, Inc.
11 * Author: RidgeRun, Inc.
12 * glonnon@ridgerun.com, skranz@ridgerun.com, stevej@ridgerun.com
14 * Copyright 2001 MontaVista Software Inc.
15 * Author: jsun@mvista.com or jsun@junsun.net
17 * Copyright 2002 MontaVista Software Inc.
18 * Author: Michael Pruznick, michael_pruznick@mvista.com
20 * Copyright (C) 2000-2001 Toshiba Corporation
22 * Copyright (C) 2004 MontaVista Software Inc.
23 * Author: Manish Lachwani, mlachwani@mvista.com
25 * This program is free software; you can redistribute it and/or modify it
26 * under the terms of the GNU General Public License as published by the
27 * Free Software Foundation; either version 2 of the License, or (at your
28 * option) any later version.
30 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
31 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
32 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
36 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
37 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
38 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
39 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 * You should have received a copy of the GNU General Public License along
42 * with this program; if not, write to the Free Software Foundation, Inc.,
43 * 675 Mass Ave, Cambridge, MA 02139, USA.
45 #include <linux/init.h>
46 #include <linux/kernel.h>
47 #include <linux/types.h>
49 #include <linux/swap.h>
50 #include <linux/ioport.h>
51 #include <linux/sched.h>
52 #include <linux/interrupt.h>
53 #include <linux/pci.h>
54 #include <linux/timex.h>
56 #include <linux/platform_device.h>
58 #include <asm/bootinfo.h>
62 #include <asm/irq_regs.h>
63 #include <asm/processor.h>
64 #include <asm/reboot.h>
66 #include <linux/bootmem.h>
67 #include <linux/blkdev.h>
68 #ifdef CONFIG_TOSHIBA_FPCIB0
69 #include <asm/tx4927/smsc_fdc37m81x.h>
71 #include <asm/tx4927/toshiba_rbtx4927.h>
73 #include <asm/tx4927/tx4927_pci.h>
75 #ifdef CONFIG_BLK_DEV_IDEPCI
76 #include <linux/hdreg.h>
77 #include <linux/ide.h>
79 #ifdef CONFIG_SERIAL_TXX9
80 #include <linux/tty.h>
81 #include <linux/serial.h>
82 #include <linux/serial_core.h>
85 #undef TOSHIBA_RBTX4927_SETUP_DEBUG
87 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
88 #define TOSHIBA_RBTX4927_SETUP_NONE 0x00000000
90 #define TOSHIBA_RBTX4927_SETUP_INFO ( 1 << 0 )
91 #define TOSHIBA_RBTX4927_SETUP_WARN ( 1 << 1 )
92 #define TOSHIBA_RBTX4927_SETUP_EROR ( 1 << 2 )
94 #define TOSHIBA_RBTX4927_SETUP_EFWFU ( 1 << 3 )
95 #define TOSHIBA_RBTX4927_SETUP_SETUP ( 1 << 4 )
96 #define TOSHIBA_RBTX4927_SETUP_TIME_INIT ( 1 << 5 )
97 #define TOSHIBA_RBTX4927_SETUP_TIMER_SETUP ( 1 << 6 )
98 #define TOSHIBA_RBTX4927_SETUP_PCIBIOS ( 1 << 7 )
99 #define TOSHIBA_RBTX4927_SETUP_PCI1 ( 1 << 8 )
100 #define TOSHIBA_RBTX4927_SETUP_PCI2 ( 1 << 9 )
101 #define TOSHIBA_RBTX4927_SETUP_PCI66 ( 1 << 10 )
103 #define TOSHIBA_RBTX4927_SETUP_ALL 0xffffffff
106 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
107 static const u32 toshiba_rbtx4927_setup_debug_flag
=
108 (TOSHIBA_RBTX4927_SETUP_NONE
| TOSHIBA_RBTX4927_SETUP_INFO
|
109 TOSHIBA_RBTX4927_SETUP_WARN
| TOSHIBA_RBTX4927_SETUP_EROR
|
110 TOSHIBA_RBTX4927_SETUP_EFWFU
| TOSHIBA_RBTX4927_SETUP_SETUP
|
111 TOSHIBA_RBTX4927_SETUP_TIME_INIT
| TOSHIBA_RBTX4927_SETUP_TIMER_SETUP
112 | TOSHIBA_RBTX4927_SETUP_PCIBIOS
| TOSHIBA_RBTX4927_SETUP_PCI1
|
113 TOSHIBA_RBTX4927_SETUP_PCI2
| TOSHIBA_RBTX4927_SETUP_PCI66
);
116 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
117 #define TOSHIBA_RBTX4927_SETUP_DPRINTK(flag,str...) \
118 if ( (toshiba_rbtx4927_setup_debug_flag) & (flag) ) \
121 sprintf( tmp, str ); \
122 printk( "%s(%s:%u)::%s", __FUNCTION__, __FILE__, __LINE__, tmp ); \
125 #define TOSHIBA_RBTX4927_SETUP_DPRINTK(flag,str...)
128 /* These functions are used for rebooting or halting the machine*/
129 extern void toshiba_rbtx4927_restart(char *command
);
130 extern void toshiba_rbtx4927_halt(void);
131 extern void toshiba_rbtx4927_power_off(void);
133 int tx4927_using_backplane
= 0;
135 extern void gt64120_time_init(void);
136 extern void toshiba_rbtx4927_irq_setup(void);
138 char *prom_getcmdline(void);
141 #define CONFIG_TX4927BUG_WORKAROUND
142 #undef TX4927_SUPPORT_COMMAND_IO
143 #undef TX4927_SUPPORT_PCI_66
144 int tx4927_cpu_clock
= 100000000; /* 100MHz */
145 unsigned long mips_pci_io_base
;
146 unsigned long mips_pci_io_size
;
147 unsigned long mips_pci_mem_base
;
148 unsigned long mips_pci_mem_size
;
149 /* for legacy I/O, PCI I/O PCI Bus address must be 0 */
150 unsigned long mips_pci_io_pciaddr
= 0;
151 unsigned long mips_memory_upper
;
152 static int tx4927_ccfg_toeon
= 1;
153 static int tx4927_pcic_trdyto
= 0; /* default: disabled */
154 unsigned long tx4927_ce_base
[8];
155 void tx4927_pci_setup(void);
156 void tx4927_reset_pci_pcic(void);
157 int tx4927_pci66
= 0; /* 0:auto */
160 char *toshiba_name
= "";
163 static void tx4927_pcierr_interrupt(int irq
, void *dev_id
)
165 #ifdef CONFIG_BLK_DEV_IDEPCI
166 /* ignore MasterAbort for ide probing... */
167 if (irq
== TX4927_IRQ_IRC_PCIERR
&&
168 ((tx4927_pcicptr
->pcistatus
>> 16) & 0xf900) ==
169 PCI_STATUS_REC_MASTER_ABORT
) {
170 tx4927_pcicptr
->pcistatus
=
172 pcistatus
& 0x0000ffff) | (PCI_STATUS_REC_MASTER_ABORT
178 printk("PCI error interrupt (irq 0x%x).\n", irq
);
180 printk("pcistat:%04x, g2pstatus:%08lx, pcicstatus:%08lx\n",
181 (unsigned short) (tx4927_pcicptr
->pcistatus
>> 16),
182 tx4927_pcicptr
->g2pstatus
, tx4927_pcicptr
->pcicstatus
);
183 printk("ccfg:%08lx, tear:%02lx_%08lx\n",
184 (unsigned long) tx4927_ccfgptr
->ccfg
,
185 (unsigned long) (tx4927_ccfgptr
->tear
>> 32),
186 (unsigned long) tx4927_ccfgptr
->tear
);
187 show_regs(get_irq_regs());
190 void __init
toshiba_rbtx4927_pci_irq_init(void)
195 void tx4927_reset_pci_pcic(void)
198 *tx4927_pcireset_ptr
= 1;
200 tx4927_ccfgptr
->clkctr
|= TX4927_CLKCTR_PCIRST
;
202 /* clear PCIC reset */
203 tx4927_ccfgptr
->clkctr
&= ~TX4927_CLKCTR_PCIRST
;
204 *tx4927_pcireset_ptr
= 0;
206 #endif /* CONFIG_PCI */
209 void print_pci_status(void)
211 printk("PCI STATUS %lx\n", tx4927_pcicptr
->pcistatus
);
212 printk("PCIC STATUS %lx\n", tx4927_pcicptr
->pcicstatus
);
215 extern struct pci_controller tx4927_controller
;
217 static struct pci_dev
*fake_pci_dev(struct pci_controller
*hose
,
218 int top_bus
, int busnr
, int devfn
)
220 static struct pci_dev dev
;
221 static struct pci_bus bus
;
223 dev
.sysdata
= (void *)hose
;
226 bus
.ops
= hose
->pci_ops
;
233 #define EARLY_PCI_OP(rw, size, type) \
234 static int early_##rw##_config_##size(struct pci_controller *hose, \
235 int top_bus, int bus, int devfn, int offset, type value) \
237 return pci_##rw##_config_##size( \
238 fake_pci_dev(hose, top_bus, bus, devfn), \
242 EARLY_PCI_OP(read
, byte
, u8
*)
243 EARLY_PCI_OP(read
, word
, u16
*)
244 EARLY_PCI_OP(read
, dword
, u32
*)
245 EARLY_PCI_OP(write
, byte
, u8
)
246 EARLY_PCI_OP(write
, word
, u16
)
247 EARLY_PCI_OP(write
, dword
, u32
)
249 static int __init
tx4927_pcibios_init(void)
254 int devfn_stop
= 0xff;
255 int busno
= 0; /* One bus on the Toshiba */
256 struct pci_controller
*hose
= &tx4927_controller
;
258 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
261 for (pci_devfn
= devfn_start
; pci_devfn
< devfn_stop
; pci_devfn
++) {
262 early_read_config_dword(hose
, busno
, busno
, pci_devfn
,
265 if (id
== 0xffffffff) {
269 if (id
== 0x94601055) {
273 char *s
= " sb/isa --";
275 TOSHIBA_RBTX4927_SETUP_DPRINTK
276 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
, ":%s beg\n",
279 early_read_config_byte(hose
, busno
, busno
,
280 pci_devfn
, 0x64, &v08_64
);
281 early_read_config_dword(hose
, busno
, busno
,
282 pci_devfn
, 0xb0, &v32_b0
);
283 early_read_config_byte(hose
, busno
, busno
,
284 pci_devfn
, 0xe1, &v08_e1
);
286 TOSHIBA_RBTX4927_SETUP_DPRINTK
287 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
288 ":%s beg 0x64 = 0x%02x\n", s
, v08_64
);
289 TOSHIBA_RBTX4927_SETUP_DPRINTK
290 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
291 ":%s beg 0xb0 = 0x%02x\n", s
, v32_b0
);
292 TOSHIBA_RBTX4927_SETUP_DPRINTK
293 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
294 ":%s beg 0xe1 = 0x%02x\n", s
, v08_e1
);
296 /* serial irq control */
300 v32_b0
|= 0x00010000;
302 /* ide irq on isa14 */
306 TOSHIBA_RBTX4927_SETUP_DPRINTK
307 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
308 ":%s mid 0x64 = 0x%02x\n", s
, v08_64
);
309 TOSHIBA_RBTX4927_SETUP_DPRINTK
310 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
311 ":%s mid 0xb0 = 0x%02x\n", s
, v32_b0
);
312 TOSHIBA_RBTX4927_SETUP_DPRINTK
313 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
314 ":%s mid 0xe1 = 0x%02x\n", s
, v08_e1
);
316 early_write_config_byte(hose
, busno
, busno
,
317 pci_devfn
, 0x64, v08_64
);
318 early_write_config_dword(hose
, busno
, busno
,
319 pci_devfn
, 0xb0, v32_b0
);
320 early_write_config_byte(hose
, busno
, busno
,
321 pci_devfn
, 0xe1, v08_e1
);
323 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
325 early_read_config_byte(hose
, busno
, busno
,
328 early_read_config_dword(hose
, busno
, busno
,
331 early_read_config_byte(hose
, busno
, busno
,
335 TOSHIBA_RBTX4927_SETUP_DPRINTK
336 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
337 ":%s end 0x64 = 0x%02x\n", s
, v08_64
);
338 TOSHIBA_RBTX4927_SETUP_DPRINTK
339 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
340 ":%s end 0xb0 = 0x%02x\n", s
, v32_b0
);
341 TOSHIBA_RBTX4927_SETUP_DPRINTK
342 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
343 ":%s end 0xe1 = 0x%02x\n", s
, v08_e1
);
347 TOSHIBA_RBTX4927_SETUP_DPRINTK
348 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
, ":%s end\n",
352 if (id
== 0x91301055) {
358 char *s
= " sb/ide --";
360 TOSHIBA_RBTX4927_SETUP_DPRINTK
361 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
, ":%s beg\n",
364 early_read_config_byte(hose
, busno
, busno
,
365 pci_devfn
, 0x04, &v08_04
);
366 early_read_config_byte(hose
, busno
, busno
,
367 pci_devfn
, 0x09, &v08_09
);
368 early_read_config_byte(hose
, busno
, busno
,
369 pci_devfn
, 0x41, &v08_41
);
370 early_read_config_byte(hose
, busno
, busno
,
371 pci_devfn
, 0x43, &v08_43
);
372 early_read_config_byte(hose
, busno
, busno
,
373 pci_devfn
, 0x5c, &v08_5c
);
375 TOSHIBA_RBTX4927_SETUP_DPRINTK
376 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
377 ":%s beg 0x04 = 0x%02x\n", s
, v08_04
);
378 TOSHIBA_RBTX4927_SETUP_DPRINTK
379 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
380 ":%s beg 0x09 = 0x%02x\n", s
, v08_09
);
381 TOSHIBA_RBTX4927_SETUP_DPRINTK
382 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
383 ":%s beg 0x41 = 0x%02x\n", s
, v08_41
);
384 TOSHIBA_RBTX4927_SETUP_DPRINTK
385 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
386 ":%s beg 0x43 = 0x%02x\n", s
, v08_43
);
387 TOSHIBA_RBTX4927_SETUP_DPRINTK
388 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
389 ":%s beg 0x5c = 0x%02x\n", s
, v08_5c
);
391 /* enable ide master/io */
392 v08_04
|= (PCI_COMMAND_MASTER
| PCI_COMMAND_IO
);
394 /* enable ide native mode */
397 /* enable primary ide */
400 /* enable secondary ide */
404 * !!! DO NOT REMOVE THIS COMMENT IT IS REQUIRED BY SMSC !!!
406 * This line of code is intended to provide the user with a work
407 * around solution to the anomalies cited in SMSC's anomaly sheet
408 * entitled, "SLC90E66 Functional Rev.J_0.1 Anomalies"".
410 * !!! DO NOT REMOVE THIS COMMENT IT IS REQUIRED BY SMSC !!!
414 TOSHIBA_RBTX4927_SETUP_DPRINTK
415 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
416 ":%s mid 0x04 = 0x%02x\n", s
, v08_04
);
417 TOSHIBA_RBTX4927_SETUP_DPRINTK
418 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
419 ":%s mid 0x09 = 0x%02x\n", s
, v08_09
);
420 TOSHIBA_RBTX4927_SETUP_DPRINTK
421 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
422 ":%s mid 0x41 = 0x%02x\n", s
, v08_41
);
423 TOSHIBA_RBTX4927_SETUP_DPRINTK
424 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
425 ":%s mid 0x43 = 0x%02x\n", s
, v08_43
);
426 TOSHIBA_RBTX4927_SETUP_DPRINTK
427 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
428 ":%s mid 0x5c = 0x%02x\n", s
, v08_5c
);
430 early_write_config_byte(hose
, busno
, busno
,
431 pci_devfn
, 0x5c, v08_5c
);
432 early_write_config_byte(hose
, busno
, busno
,
433 pci_devfn
, 0x04, v08_04
);
434 early_write_config_byte(hose
, busno
, busno
,
435 pci_devfn
, 0x09, v08_09
);
436 early_write_config_byte(hose
, busno
, busno
,
437 pci_devfn
, 0x41, v08_41
);
438 early_write_config_byte(hose
, busno
, busno
,
439 pci_devfn
, 0x43, v08_43
);
441 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
443 early_read_config_byte(hose
, busno
, busno
,
446 early_read_config_byte(hose
, busno
, busno
,
449 early_read_config_byte(hose
, busno
, busno
,
452 early_read_config_byte(hose
, busno
, busno
,
455 early_read_config_byte(hose
, busno
, busno
,
459 TOSHIBA_RBTX4927_SETUP_DPRINTK
460 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
461 ":%s end 0x04 = 0x%02x\n", s
, v08_04
);
462 TOSHIBA_RBTX4927_SETUP_DPRINTK
463 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
464 ":%s end 0x09 = 0x%02x\n", s
, v08_09
);
465 TOSHIBA_RBTX4927_SETUP_DPRINTK
466 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
467 ":%s end 0x41 = 0x%02x\n", s
, v08_41
);
468 TOSHIBA_RBTX4927_SETUP_DPRINTK
469 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
470 ":%s end 0x43 = 0x%02x\n", s
, v08_43
);
471 TOSHIBA_RBTX4927_SETUP_DPRINTK
472 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
473 ":%s end 0x5c = 0x%02x\n", s
, v08_5c
);
477 TOSHIBA_RBTX4927_SETUP_DPRINTK
478 (TOSHIBA_RBTX4927_SETUP_PCIBIOS
, ":%s end\n",
484 register_pci_controller(&tx4927_controller
);
485 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCIBIOS
,
491 arch_initcall(tx4927_pcibios_init
);
493 extern struct resource pci_io_resource
;
494 extern struct resource pci_mem_resource
;
496 void tx4927_pci_setup(void)
498 static int called
= 0;
499 extern unsigned int tx4927_get_mem_size(void);
501 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
, "-\n");
503 mips_memory_upper
= tx4927_get_mem_size() << 20;
504 mips_memory_upper
+= KSEG0
;
505 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
506 "0x%08lx=mips_memory_upper\n",
508 mips_pci_io_base
= TX4927_PCIIO
;
509 mips_pci_io_size
= TX4927_PCIIO_SIZE
;
510 mips_pci_mem_base
= TX4927_PCIMEM
;
511 mips_pci_mem_size
= TX4927_PCIMEM_SIZE
;
513 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
514 "0x%08lx=mips_pci_io_base\n",
516 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
517 "0x%08lx=mips_pci_io_size\n",
519 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
520 "0x%08lx=mips_pci_mem_base\n",
522 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
523 "0x%08lx=mips_pci_mem_size\n",
525 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
526 "0x%08lx=pci_io_resource.start\n",
527 pci_io_resource
.start
);
528 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
529 "0x%08lx=pci_io_resource.end\n",
530 pci_io_resource
.end
);
531 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
532 "0x%08lx=pci_mem_resource.start\n",
533 pci_mem_resource
.start
);
534 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
535 "0x%08lx=pci_mem_resource.end\n",
536 pci_mem_resource
.end
);
537 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
538 "0x%08lx=mips_io_port_base",
542 ("%s PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:%s\n",
544 (unsigned short) (tx4927_pcicptr
->pciid
>> 16),
545 (unsigned short) (tx4927_pcicptr
->pciid
& 0xffff),
546 (unsigned short) (tx4927_pcicptr
->pciccrev
& 0xff),
548 ccfg
& TX4927_CCFG_PCIXARB
)) ? "External" :
552 printk("%s PCIC --%s PCICLK:",toshiba_name
,
553 (tx4927_ccfgptr
->ccfg
& TX4927_CCFG_PCI66
) ? " PCI66" : "");
554 if (tx4927_ccfgptr
->pcfg
& TX4927_PCFG_PCICLKEN_ALL
) {
556 if (mips_machtype
== MACH_TOSHIBA_RBTX4937
)
557 switch ((unsigned long) tx4927_ccfgptr
->
558 ccfg
& TX4937_CCFG_PCIDIVMODE_MASK
) {
559 case TX4937_CCFG_PCIDIVMODE_4
:
560 pciclk
= tx4927_cpu_clock
/ 4;
562 case TX4937_CCFG_PCIDIVMODE_4_5
:
563 pciclk
= tx4927_cpu_clock
* 2 / 9;
565 case TX4937_CCFG_PCIDIVMODE_5
:
566 pciclk
= tx4927_cpu_clock
/ 5;
568 case TX4937_CCFG_PCIDIVMODE_5_5
:
569 pciclk
= tx4927_cpu_clock
* 2 / 11;
571 case TX4937_CCFG_PCIDIVMODE_8
:
572 pciclk
= tx4927_cpu_clock
/ 8;
574 case TX4937_CCFG_PCIDIVMODE_9
:
575 pciclk
= tx4927_cpu_clock
/ 9;
577 case TX4937_CCFG_PCIDIVMODE_10
:
578 pciclk
= tx4927_cpu_clock
/ 10;
580 case TX4937_CCFG_PCIDIVMODE_11
:
581 pciclk
= tx4927_cpu_clock
/ 11;
586 switch ((unsigned long) tx4927_ccfgptr
->
587 ccfg
& TX4927_CCFG_PCIDIVMODE_MASK
) {
588 case TX4927_CCFG_PCIDIVMODE_2_5
:
589 pciclk
= tx4927_cpu_clock
* 2 / 5;
591 case TX4927_CCFG_PCIDIVMODE_3
:
592 pciclk
= tx4927_cpu_clock
/ 3;
594 case TX4927_CCFG_PCIDIVMODE_5
:
595 pciclk
= tx4927_cpu_clock
/ 5;
597 case TX4927_CCFG_PCIDIVMODE_6
:
598 pciclk
= tx4927_cpu_clock
/ 6;
602 printk("Internal(%dMHz)", pciclk
/ 1000000);
605 int pciclk_setting
= *tx4927_pci_clk_ptr
;
606 switch (pciclk_setting
& TX4927_PCI_CLK_MASK
) {
607 case TX4927_PCI_CLK_33
:
610 case TX4927_PCI_CLK_25
:
613 case TX4927_PCI_CLK_66
:
616 case TX4927_PCI_CLK_50
:
620 printk("External(%dMHz)", pciclk
/ 1000000);
626 /* GB->PCI mappings */
627 tx4927_pcicptr
->g2piomask
= (mips_pci_io_size
- 1) >> 4;
628 tx4927_pcicptr
->g2piogbase
= mips_pci_io_base
|
630 TX4927_PCIC_G2PIOGBASE_ECHG
632 TX4927_PCIC_G2PIOGBASE_BSDIS
636 tx4927_pcicptr
->g2piopbase
= 0;
638 tx4927_pcicptr
->g2pmmask
[0] = (mips_pci_mem_size
- 1) >> 4;
639 tx4927_pcicptr
->g2pmgbase
[0] = mips_pci_mem_base
|
641 TX4927_PCIC_G2PMnGBASE_ECHG
643 TX4927_PCIC_G2PMnGBASE_BSDIS
646 tx4927_pcicptr
->g2pmpbase
[0] = mips_pci_mem_base
;
648 tx4927_pcicptr
->g2pmmask
[1] = 0;
649 tx4927_pcicptr
->g2pmgbase
[1] = 0;
650 tx4927_pcicptr
->g2pmpbase
[1] = 0;
651 tx4927_pcicptr
->g2pmmask
[2] = 0;
652 tx4927_pcicptr
->g2pmgbase
[2] = 0;
653 tx4927_pcicptr
->g2pmpbase
[2] = 0;
656 /* PCI->GB mappings (I/O 256B) */
657 tx4927_pcicptr
->p2giopbase
= 0; /* 256B */
659 /* PCI->GB mappings (MEM 512MB) M0 gets all of memory */
660 tx4927_pcicptr
->p2gm0plbase
= 0;
661 tx4927_pcicptr
->p2gm0pubase
= 0;
662 tx4927_pcicptr
->p2gmgbase
[0] = 0 | TX4927_PCIC_P2GMnGBASE_TMEMEN
|
664 TX4927_PCIC_P2GMnGBASE_TECHG
666 TX4927_PCIC_P2GMnGBASE_TBSDIS
670 /* PCI->GB mappings (MEM 16MB) -not used */
671 tx4927_pcicptr
->p2gm1plbase
= 0xffffffff;
672 #ifdef CONFIG_TX4927BUG_WORKAROUND
674 * TX4927-PCIC-BUG: P2GM1PUBASE must be 0
675 * if P2GM0PUBASE was 0.
677 tx4927_pcicptr
->p2gm1pubase
= 0;
679 tx4927_pcicptr
->p2gm1pubase
= 0xffffffff;
681 tx4927_pcicptr
->p2gmgbase
[1] = 0;
683 /* PCI->GB mappings (MEM 1MB) -not used */
684 tx4927_pcicptr
->p2gm2pbase
= 0xffffffff;
685 tx4927_pcicptr
->p2gmgbase
[2] = 0;
688 /* Enable Initiator Memory 0 Space, I/O Space, Config */
689 tx4927_pcicptr
->pciccfg
&= TX4927_PCIC_PCICCFG_LBWC_MASK
;
690 tx4927_pcicptr
->pciccfg
|=
691 TX4927_PCIC_PCICCFG_IMSE0
| TX4927_PCIC_PCICCFG_IISE
|
692 TX4927_PCIC_PCICCFG_ICAE
| TX4927_PCIC_PCICCFG_ATR
;
695 /* Do not use MEMMUL, MEMINF: YMFPCI card causes M_ABORT. */
696 tx4927_pcicptr
->pcicfg1
= 0;
698 if (tx4927_pcic_trdyto
>= 0) {
699 tx4927_pcicptr
->g2ptocnt
&= ~0xff;
700 tx4927_pcicptr
->g2ptocnt
|= (tx4927_pcic_trdyto
& 0xff);
703 /* Clear All Local Bus Status */
704 tx4927_pcicptr
->pcicstatus
= TX4927_PCIC_PCICSTATUS_ALL
;
705 /* Enable All Local Bus Interrupts */
706 tx4927_pcicptr
->pcicmask
= TX4927_PCIC_PCICSTATUS_ALL
;
707 /* Clear All Initiator Status */
708 tx4927_pcicptr
->g2pstatus
= TX4927_PCIC_G2PSTATUS_ALL
;
709 /* Enable All Initiator Interrupts */
710 tx4927_pcicptr
->g2pmask
= TX4927_PCIC_G2PSTATUS_ALL
;
711 /* Clear All PCI Status Error */
712 tx4927_pcicptr
->pcistatus
=
713 (tx4927_pcicptr
->pcistatus
& 0x0000ffff) |
714 (TX4927_PCIC_PCISTATUS_ALL
<< 16);
715 /* Enable All PCI Status Error Interrupts */
716 tx4927_pcicptr
->pcimask
= TX4927_PCIC_PCISTATUS_ALL
;
718 /* PCIC Int => IRC IRQ16 */
719 tx4927_pcicptr
->pcicfg2
=
720 (tx4927_pcicptr
->pcicfg2
& 0xffffff00) | TX4927_IR_PCIC
;
722 if (!(tx4927_ccfgptr
->ccfg
& TX4927_CCFG_PCIXARB
)) {
725 /* Reset Bus Arbiter */
726 tx4927_pcicptr
->pbacfg
= TX4927_PCIC_PBACFG_RPBA
;
727 /* Enable Bus Arbiter */
728 tx4927_pcicptr
->pbacfg
= TX4927_PCIC_PBACFG_PBAEN
;
731 tx4927_pcicptr
->pcistatus
= PCI_COMMAND_MASTER
|
733 PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
;
735 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
,
736 ":pci setup complete:\n");
737 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2
, "+\n");
740 #endif /* CONFIG_PCI */
742 void toshiba_rbtx4927_restart(char *command
)
744 printk(KERN_NOTICE
"System Rebooting...\n");
746 /* enable the s/w reset register */
747 reg_wr08(RBTX4927_SW_RESET_ENABLE
, RBTX4927_SW_RESET_ENABLE_SET
);
749 /* wait for enable to be seen */
750 while ((reg_rd08(RBTX4927_SW_RESET_ENABLE
) &
751 RBTX4927_SW_RESET_ENABLE_SET
) == 0x00);
754 reg_wr08(RBTX4927_SW_RESET_DO
, RBTX4927_SW_RESET_DO_SET
);
756 /* do something passive while waiting for reset */
765 void toshiba_rbtx4927_halt(void)
767 printk(KERN_NOTICE
"System Halted\n");
775 void toshiba_rbtx4927_power_off(void)
777 toshiba_rbtx4927_halt();
781 void __init
toshiba_rbtx4927_setup(void)
786 printk("CPU is %s\n", toshiba_name
);
788 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
791 /* f/w leaves this on at startup */
792 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
793 ":Clearing STO_ERL.\n");
794 clear_c0_status(ST0_ERL
);
796 /* enable caches -- HCP5 does this, pmon does not */
797 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
798 ":Enabling TX49_CONF_IC,TX49_CONF_DC.\n");
799 cp0_config
= read_c0_config();
800 cp0_config
= cp0_config
& ~(TX49_CONF_IC
| TX49_CONF_DC
);
801 write_c0_config(cp0_config
);
803 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
805 extern void dump_cp0(char *);
806 dump_cp0("toshiba_rbtx4927_early_fw_fixup");
810 /* setup irq stuff */
811 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
812 ":Setting up tx4927 pic.\n");
813 TX4927_WR(0xff1ff604, 0x00000400); /* irq trigger */
814 TX4927_WR(0xff1ff608, 0x00000000); /* irq trigger */
816 /* setup serial stuff */
817 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
818 ":Setting up tx4927 sio.\n");
819 TX4927_WR(0xff1ff314, 0x00000000); /* h/w flow control off */
820 TX4927_WR(0xff1ff414, 0x00000000); /* h/w flow control off */
822 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
825 set_io_port_base(KSEG1
+ TBTX4927_ISA_IO_OFFSET
);
826 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
827 ":mips_io_port_base=0x%08lx\n",
830 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
832 ioport_resource
.end
= 0xffffffff;
833 iomem_resource
.end
= 0xffffffff;
835 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
837 _machine_restart
= toshiba_rbtx4927_restart
;
838 _machine_halt
= toshiba_rbtx4927_halt
;
839 pm_power_off
= toshiba_rbtx4927_power_off
;
845 * ASSUMPTION: PCIDIVMODE is configured for PCI 33MHz or 66MHz.
848 * PCIDIVMODE[12:11]'s initial value is given by S9[4:3] (ON:0, OFF:1).
849 * CPU 166MHz: PCI 66MHz : PCIDIVMODE: 00 (1/2.5)
850 * CPU 200MHz: PCI 66MHz : PCIDIVMODE: 01 (1/3)
851 * CPU 166MHz: PCI 33MHz : PCIDIVMODE: 10 (1/5)
852 * CPU 200MHz: PCI 33MHz : PCIDIVMODE: 11 (1/6)
853 * i.e. S9[3]: ON (83MHz), OFF (100MHz)
856 * PCIDIVMODE[12:11]'s initial value is given by S1[5:4] (ON:0, OFF:1)
857 * PCIDIVMODE[10] is 0.
858 * CPU 266MHz: PCI 33MHz : PCIDIVMODE: 000 (1/8)
859 * CPU 266MHz: PCI 66MHz : PCIDIVMODE: 001 (1/4)
860 * CPU 300MHz: PCI 33MHz : PCIDIVMODE: 010 (1/9)
861 * CPU 300MHz: PCI 66MHz : PCIDIVMODE: 011 (1/4.5)
862 * CPU 333MHz: PCI 33MHz : PCIDIVMODE: 100 (1/10)
863 * CPU 333MHz: PCI 66MHz : PCIDIVMODE: 101 (1/5)
866 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI1
,
867 "ccfg is %lx, PCIDIVMODE is %x\n",
868 (unsigned long) tx4927_ccfgptr
->ccfg
,
869 (unsigned long) tx4927_ccfgptr
->ccfg
&
870 (mips_machtype
== MACH_TOSHIBA_RBTX4937
?
871 TX4937_CCFG_PCIDIVMODE_MASK
:
872 TX4927_CCFG_PCIDIVMODE_MASK
));
874 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI1
,
875 "PCI66 mode is %lx, PCI mode is %lx, pci arb is %lx\n",
876 (unsigned long) tx4927_ccfgptr
->
877 ccfg
& TX4927_CCFG_PCI66
,
878 (unsigned long) tx4927_ccfgptr
->
879 ccfg
& TX4927_CCFG_PCIMIDE
,
880 (unsigned long) tx4927_ccfgptr
->
881 ccfg
& TX4927_CCFG_PCIXARB
);
883 if (mips_machtype
== MACH_TOSHIBA_RBTX4937
)
884 switch ((unsigned long)tx4927_ccfgptr
->
885 ccfg
& TX4937_CCFG_PCIDIVMODE_MASK
) {
886 case TX4937_CCFG_PCIDIVMODE_8
:
887 case TX4937_CCFG_PCIDIVMODE_4
:
888 tx4927_cpu_clock
= 266666666; /* 266MHz */
890 case TX4937_CCFG_PCIDIVMODE_9
:
891 case TX4937_CCFG_PCIDIVMODE_4_5
:
892 tx4927_cpu_clock
= 300000000; /* 300MHz */
895 tx4927_cpu_clock
= 333333333; /* 333MHz */
898 switch ((unsigned long)tx4927_ccfgptr
->
899 ccfg
& TX4927_CCFG_PCIDIVMODE_MASK
) {
900 case TX4927_CCFG_PCIDIVMODE_2_5
:
901 case TX4927_CCFG_PCIDIVMODE_5
:
902 tx4927_cpu_clock
= 166666666; /* 166MHz */
905 tx4927_cpu_clock
= 200000000; /* 200MHz */
909 /* enable Timeout BusError */
910 if (tx4927_ccfg_toeon
)
911 tx4927_ccfgptr
->ccfg
|= TX4927_CCFG_TOE
;
914 #ifdef CONFIG_TX4927BUG_WORKAROUND
916 * TX4927-BUG: INF 01-01-18/ BUG 01-01-22
917 * G-bus timeout error detection is incorrect
919 if (tx4927_ccfg_toeon
)
920 tx4927_sdramcptr
->tr
|= 0x02000000; /* RCD:3tck */
924 if (tx4927_using_backplane
== 1)
925 printk("backplane board IS installed\n");
927 printk("No Backplane \n");
929 /* this is on ISA bus behind PCI bus, so need PCI up first */
930 #ifdef CONFIG_TOSHIBA_FPCIB0
932 if (tx4927_using_backplane
) {
933 TOSHIBA_RBTX4927_SETUP_DPRINTK
934 (TOSHIBA_RBTX4927_SETUP_SETUP
,
937 TOSHIBA_RBTX4927_SETUP_DPRINTK
938 (TOSHIBA_RBTX4927_SETUP_SETUP
,
939 ":smsc_fdc37m81x_init()\n");
940 smsc_fdc37m81x_init(0x3f0);
942 TOSHIBA_RBTX4927_SETUP_DPRINTK
943 (TOSHIBA_RBTX4927_SETUP_SETUP
,
944 ":smsc_fdc37m81x_config_beg()\n");
945 smsc_fdc37m81x_config_beg();
947 TOSHIBA_RBTX4927_SETUP_DPRINTK
948 (TOSHIBA_RBTX4927_SETUP_SETUP
,
949 ":smsc_fdc37m81x_config_set(KBD)\n");
950 smsc_fdc37m81x_config_set(SMSC_FDC37M81X_DNUM
,
952 smsc_fdc37m81x_config_set(SMSC_FDC37M81X_INT
, 1);
953 smsc_fdc37m81x_config_set(SMSC_FDC37M81X_INT2
, 12);
954 smsc_fdc37m81x_config_set(SMSC_FDC37M81X_ACTIVE
,
957 smsc_fdc37m81x_config_end();
958 TOSHIBA_RBTX4927_SETUP_DPRINTK
959 (TOSHIBA_RBTX4927_SETUP_SETUP
,
960 ":smsc_fdc37m81x_config_end()\n");
962 TOSHIBA_RBTX4927_SETUP_DPRINTK
963 (TOSHIBA_RBTX4927_SETUP_SETUP
,
964 ":fpcibo=not_found\n");
969 TOSHIBA_RBTX4927_SETUP_DPRINTK
970 (TOSHIBA_RBTX4927_SETUP_SETUP
, ":fpcibo=no\n");
974 #endif /* CONFIG_PCI */
976 #ifdef CONFIG_SERIAL_TXX9
978 extern int early_serial_txx9_setup(struct uart_port
*port
);
980 struct uart_port req
;
981 for(i
= 0; i
< 2; i
++) {
982 memset(&req
, 0, sizeof(req
));
984 req
.iotype
= UPIO_MEM
;
985 req
.membase
= (char *)(0xff1ff300 + i
* 0x100);
986 req
.mapbase
= 0xff1ff300 + i
* 0x100;
988 req
.flags
|= UPF_BUGGY_UART
/*HAVE_CTS_LINE*/;
989 req
.uartclk
= 50000000;
990 early_serial_txx9_setup(&req
);
993 #ifdef CONFIG_SERIAL_TXX9_CONSOLE
994 argptr
= prom_getcmdline();
995 if (strstr(argptr
, "console=") == NULL
) {
996 strcat(argptr
, " console=ttyS0,38400");
1001 #ifdef CONFIG_ROOT_NFS
1002 argptr
= prom_getcmdline();
1003 if (strstr(argptr
, "root=") == NULL
) {
1004 strcat(argptr
, " root=/dev/nfs rw");
1009 #ifdef CONFIG_IP_PNP
1010 argptr
= prom_getcmdline();
1011 if (strstr(argptr
, "ip=") == NULL
) {
1012 strcat(argptr
, " ip=any");
1017 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP
,
1022 toshiba_rbtx4927_time_init(void)
1024 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIME_INIT
, "-\n");
1026 mips_hpt_frequency
= tx4927_cpu_clock
/ 2;
1028 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIME_INIT
, "+\n");
1032 void __init
toshiba_rbtx4927_timer_setup(struct irqaction
*irq
)
1034 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIMER_SETUP
,
1036 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIMER_SETUP
,
1040 static int __init
toshiba_rbtx4927_rtc_init(void)
1042 struct resource res
= {
1043 .start
= 0x1c010000,
1044 .end
= 0x1c010000 + 0x800 - 1,
1045 .flags
= IORESOURCE_MEM
,
1047 struct platform_device
*dev
=
1048 platform_device_register_simple("ds1742", -1, &res
, 1);
1049 return IS_ERR(dev
) ? PTR_ERR(dev
) : 0;
1051 device_initcall(toshiba_rbtx4927_rtc_init
);