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 #undef TX4927_SUPPORT_COMMAND_IO
142 #undef TX4927_SUPPORT_PCI_66
143 int tx4927_cpu_clock = 100000000; /* 100MHz */
144 unsigned long mips_pci_io_base;
145 unsigned long mips_pci_io_size;
146 unsigned long mips_pci_mem_base;
147 unsigned long mips_pci_mem_size;
148 /* for legacy I/O, PCI I/O PCI Bus address must be 0 */
149 unsigned long mips_pci_io_pciaddr = 0;
150 unsigned long mips_memory_upper;
151 static int tx4927_ccfg_toeon = 1;
152 static int tx4927_pcic_trdyto = 0; /* default: disabled */
153 unsigned long tx4927_ce_base[8];
154 void tx4927_reset_pci_pcic(void);
155 int tx4927_pci66 = 0; /* 0:auto */
158 char *toshiba_name = "";
161 extern struct pci_controller tx4927_controller;
163 static struct pci_dev *fake_pci_dev(struct pci_controller *hose,
164 int top_bus, int busnr, int devfn)
166 static struct pci_dev dev;
167 static struct pci_bus bus;
169 dev.sysdata = (void *)hose;
172 bus.ops = hose->pci_ops;
179 #define EARLY_PCI_OP(rw, size, type) \
180 static int early_##rw##_config_##size(struct pci_controller *hose, \
181 int top_bus, int bus, int devfn, int offset, type value) \
183 return pci_##rw##_config_##size( \
184 fake_pci_dev(hose, top_bus, bus, devfn), \
188 EARLY_PCI_OP(read, byte, u8 *)
189 EARLY_PCI_OP(read, dword, u32 *)
190 EARLY_PCI_OP(write, byte, u8)
191 EARLY_PCI_OP(write, dword, u32)
193 static int __init tx4927_pcibios_init(void)
198 int devfn_stop = 0xff;
199 int busno = 0; /* One bus on the Toshiba */
200 struct pci_controller *hose = &tx4927_controller;
202 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCIBIOS,
205 for (pci_devfn = devfn_start; pci_devfn < devfn_stop; pci_devfn++) {
206 early_read_config_dword(hose, busno, busno, pci_devfn,
209 if (id == 0xffffffff) {
213 if (id == 0x94601055) {
217 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
218 char *s = " sb/isa --";
221 TOSHIBA_RBTX4927_SETUP_DPRINTK
222 (TOSHIBA_RBTX4927_SETUP_PCIBIOS, ":%s beg\n",
225 early_read_config_byte(hose, busno, busno,
226 pci_devfn, 0x64, &v08_64);
227 early_read_config_dword(hose, busno, busno,
228 pci_devfn, 0xb0, &v32_b0);
229 early_read_config_byte(hose, busno, busno,
230 pci_devfn, 0xe1, &v08_e1);
232 TOSHIBA_RBTX4927_SETUP_DPRINTK
233 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
234 ":%s beg 0x64 = 0x%02x\n", s, v08_64);
235 TOSHIBA_RBTX4927_SETUP_DPRINTK
236 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
237 ":%s beg 0xb0 = 0x%02x\n", s, v32_b0);
238 TOSHIBA_RBTX4927_SETUP_DPRINTK
239 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
240 ":%s beg 0xe1 = 0x%02x\n", s, v08_e1);
242 /* serial irq control */
246 v32_b0 |= 0x00010000;
248 /* ide irq on isa14 */
252 TOSHIBA_RBTX4927_SETUP_DPRINTK
253 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
254 ":%s mid 0x64 = 0x%02x\n", s, v08_64);
255 TOSHIBA_RBTX4927_SETUP_DPRINTK
256 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
257 ":%s mid 0xb0 = 0x%02x\n", s, v32_b0);
258 TOSHIBA_RBTX4927_SETUP_DPRINTK
259 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
260 ":%s mid 0xe1 = 0x%02x\n", s, v08_e1);
262 early_write_config_byte(hose, busno, busno,
263 pci_devfn, 0x64, v08_64);
264 early_write_config_dword(hose, busno, busno,
265 pci_devfn, 0xb0, v32_b0);
266 early_write_config_byte(hose, busno, busno,
267 pci_devfn, 0xe1, v08_e1);
269 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
271 early_read_config_byte(hose, busno, busno,
274 early_read_config_dword(hose, busno, busno,
277 early_read_config_byte(hose, busno, busno,
281 TOSHIBA_RBTX4927_SETUP_DPRINTK
282 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
283 ":%s end 0x64 = 0x%02x\n", s, v08_64);
284 TOSHIBA_RBTX4927_SETUP_DPRINTK
285 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
286 ":%s end 0xb0 = 0x%02x\n", s, v32_b0);
287 TOSHIBA_RBTX4927_SETUP_DPRINTK
288 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
289 ":%s end 0xe1 = 0x%02x\n", s, v08_e1);
293 TOSHIBA_RBTX4927_SETUP_DPRINTK
294 (TOSHIBA_RBTX4927_SETUP_PCIBIOS, ":%s end\n",
298 if (id == 0x91301055) {
304 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
305 char *s = " sb/ide --";
308 TOSHIBA_RBTX4927_SETUP_DPRINTK
309 (TOSHIBA_RBTX4927_SETUP_PCIBIOS, ":%s beg\n",
312 early_read_config_byte(hose, busno, busno,
313 pci_devfn, 0x04, &v08_04);
314 early_read_config_byte(hose, busno, busno,
315 pci_devfn, 0x09, &v08_09);
316 early_read_config_byte(hose, busno, busno,
317 pci_devfn, 0x41, &v08_41);
318 early_read_config_byte(hose, busno, busno,
319 pci_devfn, 0x43, &v08_43);
320 early_read_config_byte(hose, busno, busno,
321 pci_devfn, 0x5c, &v08_5c);
323 TOSHIBA_RBTX4927_SETUP_DPRINTK
324 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
325 ":%s beg 0x04 = 0x%02x\n", s, v08_04);
326 TOSHIBA_RBTX4927_SETUP_DPRINTK
327 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
328 ":%s beg 0x09 = 0x%02x\n", s, v08_09);
329 TOSHIBA_RBTX4927_SETUP_DPRINTK
330 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
331 ":%s beg 0x41 = 0x%02x\n", s, v08_41);
332 TOSHIBA_RBTX4927_SETUP_DPRINTK
333 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
334 ":%s beg 0x43 = 0x%02x\n", s, v08_43);
335 TOSHIBA_RBTX4927_SETUP_DPRINTK
336 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
337 ":%s beg 0x5c = 0x%02x\n", s, v08_5c);
339 /* enable ide master/io */
340 v08_04 |= (PCI_COMMAND_MASTER | PCI_COMMAND_IO);
342 /* enable ide native mode */
345 /* enable primary ide */
348 /* enable secondary ide */
352 * !!! DO NOT REMOVE THIS COMMENT IT IS REQUIRED BY SMSC !!!
354 * This line of code is intended to provide the user with a work
355 * around solution to the anomalies cited in SMSC's anomaly sheet
356 * entitled, "SLC90E66 Functional Rev.J_0.1 Anomalies"".
358 * !!! DO NOT REMOVE THIS COMMENT IT IS REQUIRED BY SMSC !!!
362 TOSHIBA_RBTX4927_SETUP_DPRINTK
363 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
364 ":%s mid 0x04 = 0x%02x\n", s, v08_04);
365 TOSHIBA_RBTX4927_SETUP_DPRINTK
366 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
367 ":%s mid 0x09 = 0x%02x\n", s, v08_09);
368 TOSHIBA_RBTX4927_SETUP_DPRINTK
369 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
370 ":%s mid 0x41 = 0x%02x\n", s, v08_41);
371 TOSHIBA_RBTX4927_SETUP_DPRINTK
372 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
373 ":%s mid 0x43 = 0x%02x\n", s, v08_43);
374 TOSHIBA_RBTX4927_SETUP_DPRINTK
375 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
376 ":%s mid 0x5c = 0x%02x\n", s, v08_5c);
378 early_write_config_byte(hose, busno, busno,
379 pci_devfn, 0x5c, v08_5c);
380 early_write_config_byte(hose, busno, busno,
381 pci_devfn, 0x04, v08_04);
382 early_write_config_byte(hose, busno, busno,
383 pci_devfn, 0x09, v08_09);
384 early_write_config_byte(hose, busno, busno,
385 pci_devfn, 0x41, v08_41);
386 early_write_config_byte(hose, busno, busno,
387 pci_devfn, 0x43, v08_43);
389 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
391 early_read_config_byte(hose, busno, busno,
394 early_read_config_byte(hose, busno, busno,
397 early_read_config_byte(hose, busno, busno,
400 early_read_config_byte(hose, busno, busno,
403 early_read_config_byte(hose, busno, busno,
407 TOSHIBA_RBTX4927_SETUP_DPRINTK
408 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
409 ":%s end 0x04 = 0x%02x\n", s, v08_04);
410 TOSHIBA_RBTX4927_SETUP_DPRINTK
411 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
412 ":%s end 0x09 = 0x%02x\n", s, v08_09);
413 TOSHIBA_RBTX4927_SETUP_DPRINTK
414 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
415 ":%s end 0x41 = 0x%02x\n", s, v08_41);
416 TOSHIBA_RBTX4927_SETUP_DPRINTK
417 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
418 ":%s end 0x43 = 0x%02x\n", s, v08_43);
419 TOSHIBA_RBTX4927_SETUP_DPRINTK
420 (TOSHIBA_RBTX4927_SETUP_PCIBIOS,
421 ":%s end 0x5c = 0x%02x\n", s, v08_5c);
425 TOSHIBA_RBTX4927_SETUP_DPRINTK
426 (TOSHIBA_RBTX4927_SETUP_PCIBIOS, ":%s end\n",
432 register_pci_controller(&tx4927_controller);
433 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCIBIOS,
439 arch_initcall(tx4927_pcibios_init);
441 extern struct resource pci_io_resource;
442 extern struct resource pci_mem_resource;
444 void __init tx4927_pci_setup(void)
446 static int called = 0;
447 extern unsigned int tx4927_get_mem_size(void);
449 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2, "-\n");
451 mips_memory_upper = tx4927_get_mem_size() << 20;
452 mips_memory_upper += KSEG0;
453 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
454 "0x%08lx=mips_memory_upper\n",
456 mips_pci_io_base = TX4927_PCIIO;
457 mips_pci_io_size = TX4927_PCIIO_SIZE;
458 mips_pci_mem_base = TX4927_PCIMEM;
459 mips_pci_mem_size = TX4927_PCIMEM_SIZE;
461 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
462 "0x%08lx=mips_pci_io_base\n",
464 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
465 "0x%08lx=mips_pci_io_size\n",
467 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
468 "0x%08lx=mips_pci_mem_base\n",
470 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
471 "0x%08lx=mips_pci_mem_size\n",
473 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
474 "0x%08lx=pci_io_resource.start\n",
475 pci_io_resource.start);
476 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
477 "0x%08lx=pci_io_resource.end\n",
478 pci_io_resource.end);
479 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
480 "0x%08lx=pci_mem_resource.start\n",
481 pci_mem_resource.start);
482 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
483 "0x%08lx=pci_mem_resource.end\n",
484 pci_mem_resource.end);
485 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
486 "0x%08lx=mips_io_port_base",
490 ("%s PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:%s\n",
492 (unsigned short) (tx4927_pcicptr->pciid >> 16),
493 (unsigned short) (tx4927_pcicptr->pciid & 0xffff),
494 (unsigned short) (tx4927_pcicptr->pciccrev & 0xff),
496 ccfg & TX4927_CCFG_PCIXARB)) ? "External" :
500 printk("%s PCIC --%s PCICLK:", toshiba_name,
501 (tx4927_ccfgptr->ccfg & TX4927_CCFG_PCI66) ? " PCI66" : "");
502 if (tx4927_ccfgptr->pcfg & TX4927_PCFG_PCICLKEN_ALL) {
504 if (mips_machtype == MACH_TOSHIBA_RBTX4937)
505 switch ((unsigned long) tx4927_ccfgptr->
506 ccfg & TX4937_CCFG_PCIDIVMODE_MASK) {
507 case TX4937_CCFG_PCIDIVMODE_4:
508 pciclk = tx4927_cpu_clock / 4;
510 case TX4937_CCFG_PCIDIVMODE_4_5:
511 pciclk = tx4927_cpu_clock * 2 / 9;
513 case TX4937_CCFG_PCIDIVMODE_5:
514 pciclk = tx4927_cpu_clock / 5;
516 case TX4937_CCFG_PCIDIVMODE_5_5:
517 pciclk = tx4927_cpu_clock * 2 / 11;
519 case TX4937_CCFG_PCIDIVMODE_8:
520 pciclk = tx4927_cpu_clock / 8;
522 case TX4937_CCFG_PCIDIVMODE_9:
523 pciclk = tx4927_cpu_clock / 9;
525 case TX4937_CCFG_PCIDIVMODE_10:
526 pciclk = tx4927_cpu_clock / 10;
528 case TX4937_CCFG_PCIDIVMODE_11:
529 pciclk = tx4927_cpu_clock / 11;
534 switch ((unsigned long) tx4927_ccfgptr->
535 ccfg & TX4927_CCFG_PCIDIVMODE_MASK) {
536 case TX4927_CCFG_PCIDIVMODE_2_5:
537 pciclk = tx4927_cpu_clock * 2 / 5;
539 case TX4927_CCFG_PCIDIVMODE_3:
540 pciclk = tx4927_cpu_clock / 3;
542 case TX4927_CCFG_PCIDIVMODE_5:
543 pciclk = tx4927_cpu_clock / 5;
545 case TX4927_CCFG_PCIDIVMODE_6:
546 pciclk = tx4927_cpu_clock / 6;
550 printk("Internal(%dMHz)", pciclk / 1000000);
553 int pciclk_setting = *tx4927_pci_clk_ptr;
554 switch (pciclk_setting & TX4927_PCI_CLK_MASK) {
555 case TX4927_PCI_CLK_33:
558 case TX4927_PCI_CLK_25:
561 case TX4927_PCI_CLK_66:
564 case TX4927_PCI_CLK_50:
568 printk("External(%dMHz)", pciclk / 1000000);
574 /* GB->PCI mappings */
575 tx4927_pcicptr->g2piomask = (mips_pci_io_size - 1) >> 4;
576 tx4927_pcicptr->g2piogbase = mips_pci_io_base |
578 TX4927_PCIC_G2PIOGBASE_ECHG
580 TX4927_PCIC_G2PIOGBASE_BSDIS
584 tx4927_pcicptr->g2piopbase = 0;
586 tx4927_pcicptr->g2pmmask[0] = (mips_pci_mem_size - 1) >> 4;
587 tx4927_pcicptr->g2pmgbase[0] = mips_pci_mem_base |
589 TX4927_PCIC_G2PMnGBASE_ECHG
591 TX4927_PCIC_G2PMnGBASE_BSDIS
594 tx4927_pcicptr->g2pmpbase[0] = mips_pci_mem_base;
596 tx4927_pcicptr->g2pmmask[1] = 0;
597 tx4927_pcicptr->g2pmgbase[1] = 0;
598 tx4927_pcicptr->g2pmpbase[1] = 0;
599 tx4927_pcicptr->g2pmmask[2] = 0;
600 tx4927_pcicptr->g2pmgbase[2] = 0;
601 tx4927_pcicptr->g2pmpbase[2] = 0;
604 /* PCI->GB mappings (I/O 256B) */
605 tx4927_pcicptr->p2giopbase = 0; /* 256B */
607 /* PCI->GB mappings (MEM 512MB) M0 gets all of memory */
608 tx4927_pcicptr->p2gm0plbase = 0;
609 tx4927_pcicptr->p2gm0pubase = 0;
610 tx4927_pcicptr->p2gmgbase[0] = 0 | TX4927_PCIC_P2GMnGBASE_TMEMEN |
612 TX4927_PCIC_P2GMnGBASE_TECHG
614 TX4927_PCIC_P2GMnGBASE_TBSDIS
618 /* PCI->GB mappings (MEM 16MB) -not used */
619 tx4927_pcicptr->p2gm1plbase = 0xffffffff;
620 tx4927_pcicptr->p2gm1pubase = 0xffffffff;
621 tx4927_pcicptr->p2gmgbase[1] = 0;
623 /* PCI->GB mappings (MEM 1MB) -not used */
624 tx4927_pcicptr->p2gm2pbase = 0xffffffff;
625 tx4927_pcicptr->p2gmgbase[2] = 0;
628 /* Enable Initiator Memory 0 Space, I/O Space, Config */
629 tx4927_pcicptr->pciccfg &= TX4927_PCIC_PCICCFG_LBWC_MASK;
630 tx4927_pcicptr->pciccfg |=
631 TX4927_PCIC_PCICCFG_IMSE0 | TX4927_PCIC_PCICCFG_IISE |
632 TX4927_PCIC_PCICCFG_ICAE | TX4927_PCIC_PCICCFG_ATR;
635 /* Do not use MEMMUL, MEMINF: YMFPCI card causes M_ABORT. */
636 tx4927_pcicptr->pcicfg1 = 0;
638 if (tx4927_pcic_trdyto >= 0) {
639 tx4927_pcicptr->g2ptocnt &= ~0xff;
640 tx4927_pcicptr->g2ptocnt |= (tx4927_pcic_trdyto & 0xff);
643 /* Clear All Local Bus Status */
644 tx4927_pcicptr->pcicstatus = TX4927_PCIC_PCICSTATUS_ALL;
645 /* Enable All Local Bus Interrupts */
646 tx4927_pcicptr->pcicmask = TX4927_PCIC_PCICSTATUS_ALL;
647 /* Clear All Initiator Status */
648 tx4927_pcicptr->g2pstatus = TX4927_PCIC_G2PSTATUS_ALL;
649 /* Enable All Initiator Interrupts */
650 tx4927_pcicptr->g2pmask = TX4927_PCIC_G2PSTATUS_ALL;
651 /* Clear All PCI Status Error */
652 tx4927_pcicptr->pcistatus =
653 (tx4927_pcicptr->pcistatus & 0x0000ffff) |
654 (TX4927_PCIC_PCISTATUS_ALL << 16);
655 /* Enable All PCI Status Error Interrupts */
656 tx4927_pcicptr->pcimask = TX4927_PCIC_PCISTATUS_ALL;
658 /* PCIC Int => IRC IRQ16 */
659 tx4927_pcicptr->pcicfg2 =
660 (tx4927_pcicptr->pcicfg2 & 0xffffff00) | TX4927_IR_PCIC;
662 if (!(tx4927_ccfgptr->ccfg & TX4927_CCFG_PCIXARB)) {
665 /* Reset Bus Arbiter */
666 tx4927_pcicptr->pbacfg = TX4927_PCIC_PBACFG_RPBA;
667 /* Enable Bus Arbiter */
668 tx4927_pcicptr->pbacfg = TX4927_PCIC_PBACFG_PBAEN;
671 tx4927_pcicptr->pcistatus = PCI_COMMAND_MASTER |
673 PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
675 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
676 ":pci setup complete:\n");
677 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2, "+\n");
680 #endif /* CONFIG_PCI */
682 static void __noreturn wait_forever(void)
689 void toshiba_rbtx4927_restart(char *command)
691 printk(KERN_NOTICE "System Rebooting...\n");
693 /* enable the s/w reset register */
694 writeb(RBTX4927_SW_RESET_ENABLE_SET, RBTX4927_SW_RESET_ENABLE);
696 /* wait for enable to be seen */
697 while ((readb(RBTX4927_SW_RESET_ENABLE) &
698 RBTX4927_SW_RESET_ENABLE_SET) == 0x00);
701 writeb(RBTX4927_SW_RESET_DO_SET, RBTX4927_SW_RESET_DO);
703 /* do something passive while waiting for reset */
710 void toshiba_rbtx4927_halt(void)
712 printk(KERN_NOTICE "System Halted\n");
718 void toshiba_rbtx4927_power_off(void)
720 toshiba_rbtx4927_halt();
724 void __init toshiba_rbtx4927_setup(void)
729 printk("CPU is %s\n", toshiba_name);
731 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
734 /* f/w leaves this on at startup */
735 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
736 ":Clearing STO_ERL.\n");
737 clear_c0_status(ST0_ERL);
739 /* enable caches -- HCP5 does this, pmon does not */
740 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
741 ":Enabling TX49_CONF_IC,TX49_CONF_DC.\n");
742 cp0_config = read_c0_config();
743 cp0_config = cp0_config & ~(TX49_CONF_IC | TX49_CONF_DC);
744 write_c0_config(cp0_config);
746 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
748 extern void dump_cp0(char *);
749 dump_cp0("toshiba_rbtx4927_early_fw_fixup");
753 set_io_port_base(KSEG1 + TBTX4927_ISA_IO_OFFSET);
754 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
755 ":mips_io_port_base=0x%08lx\n",
758 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
760 ioport_resource.end = 0xffffffff;
761 iomem_resource.end = 0xffffffff;
763 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
765 _machine_restart = toshiba_rbtx4927_restart;
766 _machine_halt = toshiba_rbtx4927_halt;
767 pm_power_off = toshiba_rbtx4927_power_off;
773 * ASSUMPTION: PCIDIVMODE is configured for PCI 33MHz or 66MHz.
776 * PCIDIVMODE[12:11]'s initial value is given by S9[4:3] (ON:0, OFF:1).
777 * CPU 166MHz: PCI 66MHz : PCIDIVMODE: 00 (1/2.5)
778 * CPU 200MHz: PCI 66MHz : PCIDIVMODE: 01 (1/3)
779 * CPU 166MHz: PCI 33MHz : PCIDIVMODE: 10 (1/5)
780 * CPU 200MHz: PCI 33MHz : PCIDIVMODE: 11 (1/6)
781 * i.e. S9[3]: ON (83MHz), OFF (100MHz)
784 * PCIDIVMODE[12:11]'s initial value is given by S1[5:4] (ON:0, OFF:1)
785 * PCIDIVMODE[10] is 0.
786 * CPU 266MHz: PCI 33MHz : PCIDIVMODE: 000 (1/8)
787 * CPU 266MHz: PCI 66MHz : PCIDIVMODE: 001 (1/4)
788 * CPU 300MHz: PCI 33MHz : PCIDIVMODE: 010 (1/9)
789 * CPU 300MHz: PCI 66MHz : PCIDIVMODE: 011 (1/4.5)
790 * CPU 333MHz: PCI 33MHz : PCIDIVMODE: 100 (1/10)
791 * CPU 333MHz: PCI 66MHz : PCIDIVMODE: 101 (1/5)
794 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI1,
795 "ccfg is %lx, PCIDIVMODE is %x\n",
796 (unsigned long) tx4927_ccfgptr->ccfg,
797 (unsigned long) tx4927_ccfgptr->ccfg &
798 (mips_machtype == MACH_TOSHIBA_RBTX4937 ?
799 TX4937_CCFG_PCIDIVMODE_MASK :
800 TX4927_CCFG_PCIDIVMODE_MASK));
802 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI1,
803 "PCI66 mode is %lx, PCI mode is %lx, pci arb is %lx\n",
804 (unsigned long) tx4927_ccfgptr->
805 ccfg & TX4927_CCFG_PCI66,
806 (unsigned long) tx4927_ccfgptr->
807 ccfg & TX4927_CCFG_PCIMIDE,
808 (unsigned long) tx4927_ccfgptr->
809 ccfg & TX4927_CCFG_PCIXARB);
811 if (mips_machtype == MACH_TOSHIBA_RBTX4937)
812 switch ((unsigned long)tx4927_ccfgptr->
813 ccfg & TX4937_CCFG_PCIDIVMODE_MASK) {
814 case TX4937_CCFG_PCIDIVMODE_8:
815 case TX4937_CCFG_PCIDIVMODE_4:
816 tx4927_cpu_clock = 266666666; /* 266MHz */
818 case TX4937_CCFG_PCIDIVMODE_9:
819 case TX4937_CCFG_PCIDIVMODE_4_5:
820 tx4927_cpu_clock = 300000000; /* 300MHz */
823 tx4927_cpu_clock = 333333333; /* 333MHz */
826 switch ((unsigned long)tx4927_ccfgptr->
827 ccfg & TX4927_CCFG_PCIDIVMODE_MASK) {
828 case TX4927_CCFG_PCIDIVMODE_2_5:
829 case TX4927_CCFG_PCIDIVMODE_5:
830 tx4927_cpu_clock = 166666666; /* 166MHz */
833 tx4927_cpu_clock = 200000000; /* 200MHz */
837 /* enable Timeout BusError */
838 if (tx4927_ccfg_toeon)
839 tx4927_ccfgptr->ccfg |= TX4927_CCFG_TOE;
842 if (tx4927_using_backplane == 1)
843 printk("backplane board IS installed\n");
845 printk("No Backplane \n");
847 /* this is on ISA bus behind PCI bus, so need PCI up first */
848 #ifdef CONFIG_TOSHIBA_FPCIB0
850 if (tx4927_using_backplane) {
851 TOSHIBA_RBTX4927_SETUP_DPRINTK
852 (TOSHIBA_RBTX4927_SETUP_SETUP,
855 TOSHIBA_RBTX4927_SETUP_DPRINTK
856 (TOSHIBA_RBTX4927_SETUP_SETUP,
857 ":smsc_fdc37m81x_init()\n");
858 smsc_fdc37m81x_init(0x3f0);
860 TOSHIBA_RBTX4927_SETUP_DPRINTK
861 (TOSHIBA_RBTX4927_SETUP_SETUP,
862 ":smsc_fdc37m81x_config_beg()\n");
863 smsc_fdc37m81x_config_beg();
865 TOSHIBA_RBTX4927_SETUP_DPRINTK
866 (TOSHIBA_RBTX4927_SETUP_SETUP,
867 ":smsc_fdc37m81x_config_set(KBD)\n");
868 smsc_fdc37m81x_config_set(SMSC_FDC37M81X_DNUM,
870 smsc_fdc37m81x_config_set(SMSC_FDC37M81X_INT, 1);
871 smsc_fdc37m81x_config_set(SMSC_FDC37M81X_INT2, 12);
872 smsc_fdc37m81x_config_set(SMSC_FDC37M81X_ACTIVE,
875 smsc_fdc37m81x_config_end();
876 TOSHIBA_RBTX4927_SETUP_DPRINTK
877 (TOSHIBA_RBTX4927_SETUP_SETUP,
878 ":smsc_fdc37m81x_config_end()\n");
880 TOSHIBA_RBTX4927_SETUP_DPRINTK
881 (TOSHIBA_RBTX4927_SETUP_SETUP,
882 ":fpcibo=not_found\n");
887 TOSHIBA_RBTX4927_SETUP_DPRINTK
888 (TOSHIBA_RBTX4927_SETUP_SETUP, ":fpcibo=no\n");
892 #endif /* CONFIG_PCI */
894 #ifdef CONFIG_SERIAL_TXX9
896 extern int early_serial_txx9_setup(struct uart_port *port);
898 struct uart_port req;
899 for(i = 0; i < 2; i++) {
900 memset(&req, 0, sizeof(req));
902 req.iotype = UPIO_MEM;
903 req.membase = (char *)(0xff1ff300 + i * 0x100);
904 req.mapbase = 0xff1ff300 + i * 0x100;
905 req.irq = TX4927_IRQ_PIC_BEG + 8 + i;
906 req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/;
907 req.uartclk = 50000000;
908 early_serial_txx9_setup(&req);
911 #ifdef CONFIG_SERIAL_TXX9_CONSOLE
912 argptr = prom_getcmdline();
913 if (strstr(argptr, "console=") == NULL) {
914 strcat(argptr, " console=ttyS0,38400");
919 #ifdef CONFIG_ROOT_NFS
920 argptr = prom_getcmdline();
921 if (strstr(argptr, "root=") == NULL) {
922 strcat(argptr, " root=/dev/nfs rw");
928 argptr = prom_getcmdline();
929 if (strstr(argptr, "ip=") == NULL) {
930 strcat(argptr, " ip=any");
935 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
940 toshiba_rbtx4927_time_init(void)
942 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIME_INIT, "-\n");
944 mips_hpt_frequency = tx4927_cpu_clock / 2;
946 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIME_INIT, "+\n");
950 void __init toshiba_rbtx4927_timer_setup(struct irqaction *irq)
952 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIMER_SETUP,
954 TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIMER_SETUP,
958 static int __init toshiba_rbtx4927_rtc_init(void)
960 static struct resource __initdata res = {
962 .end = 0x1c010000 + 0x800 - 1,
963 .flags = IORESOURCE_MEM,
965 struct platform_device *dev =
966 platform_device_register_simple("rtc-ds1742", -1, &res, 1);
967 return IS_ERR(dev) ? PTR_ERR(dev) : 0;
969 device_initcall(toshiba_rbtx4927_rtc_init);
971 static int __init rbtx4927_ne_init(void)
973 static struct resource __initdata res[] = {
975 .start = RBTX4927_RTL_8019_BASE,
976 .end = RBTX4927_RTL_8019_BASE + 0x20 - 1,
977 .flags = IORESOURCE_IO,
979 .start = RBTX4927_RTL_8019_IRQ,
980 .flags = IORESOURCE_IRQ,
983 struct platform_device *dev =
984 platform_device_register_simple("ne", -1,
985 res, ARRAY_SIZE(res));
986 return IS_ERR(dev) ? PTR_ERR(dev) : 0;
988 device_initcall(rbtx4927_ne_init);