Merge branch 'fixes-2.6.24' of master.kernel.org:/pub/scm/linux/kernel/git/galak...
[sfrench/cifs-2.6.git] / arch / mips / tx4927 / toshiba_rbtx4927 / toshiba_rbtx4927_setup.c
1 /*
2  * Toshiba rbtx4927 specific setup
3  *
4  * Author: MontaVista Software, Inc.
5  *         source@mvista.com
6  *
7  * Copyright 2001-2002 MontaVista Software Inc.
8  *
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
13  *
14  * Copyright 2001 MontaVista Software Inc.
15  * Author: jsun@mvista.com or jsun@junsun.net
16  *
17  * Copyright 2002 MontaVista Software Inc.
18  * Author: Michael Pruznick, michael_pruznick@mvista.com
19  *
20  * Copyright (C) 2000-2001 Toshiba Corporation
21  *
22  * Copyright (C) 2004 MontaVista Software Inc.
23  * Author: Manish Lachwani, mlachwani@mvista.com
24  *
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.
29  *
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.
40  *
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.
44  */
45 #include <linux/init.h>
46 #include <linux/kernel.h>
47 #include <linux/types.h>
48 #include <linux/mm.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>
55 #include <linux/pm.h>
56 #include <linux/platform_device.h>
57
58 #include <asm/bootinfo.h>
59 #include <asm/page.h>
60 #include <asm/io.h>
61 #include <asm/irq.h>
62 #include <asm/irq_regs.h>
63 #include <asm/processor.h>
64 #include <asm/reboot.h>
65 #include <asm/time.h>
66 #include <linux/bootmem.h>
67 #include <linux/blkdev.h>
68 #ifdef CONFIG_TOSHIBA_FPCIB0
69 #include <asm/tx4927/smsc_fdc37m81x.h>
70 #endif
71 #include <asm/tx4927/toshiba_rbtx4927.h>
72 #ifdef CONFIG_PCI
73 #include <asm/tx4927/tx4927_pci.h>
74 #endif
75 #ifdef CONFIG_BLK_DEV_IDEPCI
76 #include <linux/hdreg.h>
77 #include <linux/ide.h>
78 #endif
79 #ifdef CONFIG_SERIAL_TXX9
80 #include <linux/tty.h>
81 #include <linux/serial.h>
82 #include <linux/serial_core.h>
83 #endif
84
85 #undef TOSHIBA_RBTX4927_SETUP_DEBUG
86
87 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
88 #define TOSHIBA_RBTX4927_SETUP_NONE        0x00000000
89
90 #define TOSHIBA_RBTX4927_SETUP_INFO        ( 1 <<  0 )
91 #define TOSHIBA_RBTX4927_SETUP_WARN        ( 1 <<  1 )
92 #define TOSHIBA_RBTX4927_SETUP_EROR        ( 1 <<  2 )
93
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 )
102
103 #define TOSHIBA_RBTX4927_SETUP_ALL         0xffffffff
104 #endif
105
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);
114 #endif
115
116 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
117 #define TOSHIBA_RBTX4927_SETUP_DPRINTK(flag,str...) \
118         if ( (toshiba_rbtx4927_setup_debug_flag) & (flag) ) \
119         { \
120            char tmp[100]; \
121            sprintf( tmp, str ); \
122            printk( "%s(%s:%u)::%s", __FUNCTION__, __FILE__, __LINE__, tmp ); \
123         }
124 #else
125 #define TOSHIBA_RBTX4927_SETUP_DPRINTK(flag, str...)
126 #endif
127
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);
132
133 int tx4927_using_backplane = 0;
134
135 extern void gt64120_time_init(void);
136 extern void toshiba_rbtx4927_irq_setup(void);
137
138 char *prom_getcmdline(void);
139
140 #ifdef CONFIG_PCI
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 */
156 #endif
157
158 char *toshiba_name = "";
159
160 #ifdef CONFIG_PCI
161 extern struct pci_controller tx4927_controller;
162
163 static struct pci_dev *fake_pci_dev(struct pci_controller *hose,
164                                     int top_bus, int busnr, int devfn)
165 {
166         static struct pci_dev dev;
167         static struct pci_bus bus;
168
169         dev.sysdata = (void *)hose;
170         dev.devfn = devfn;
171         bus.number = busnr;
172         bus.ops = hose->pci_ops;
173         bus.parent = NULL;
174         dev.bus = &bus;
175
176         return &dev;
177 }
178
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)        \
182 {                                                                       \
183         return pci_##rw##_config_##size(                                \
184                 fake_pci_dev(hose, top_bus, bus, devfn),                \
185                 offset, value);                                         \
186 }
187
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)
192
193 static int __init tx4927_pcibios_init(void)
194 {
195         unsigned int id;
196         u32 pci_devfn;
197         int devfn_start = 0;
198         int devfn_stop = 0xff;
199         int busno = 0; /* One bus on the Toshiba */
200         struct pci_controller *hose = &tx4927_controller;
201
202         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCIBIOS,
203                                        "-\n");
204
205         for (pci_devfn = devfn_start; pci_devfn < devfn_stop; pci_devfn++) {
206                 early_read_config_dword(hose, busno, busno, pci_devfn,
207                                         PCI_VENDOR_ID, &id);
208
209                 if (id == 0xffffffff) {
210                         continue;
211                 }
212
213                 if (id == 0x94601055) {
214                         u8 v08_64;
215                         u32 v32_b0;
216                         u8 v08_e1;
217 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
218                         char *s = " sb/isa --";
219 #endif
220
221                         TOSHIBA_RBTX4927_SETUP_DPRINTK
222                             (TOSHIBA_RBTX4927_SETUP_PCIBIOS, ":%s beg\n",
223                              s);
224
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);
231
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);
241
242                         /* serial irq control */
243                         v08_64 = 0xd0;
244
245                         /* serial irq pin */
246                         v32_b0 |= 0x00010000;
247
248                         /* ide irq on isa14 */
249                         v08_e1 &= 0xf0;
250                         v08_e1 |= 0x0d;
251
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);
261
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);
268
269 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
270                         {
271                                 early_read_config_byte(hose, busno, busno,
272                                                        pci_devfn, 0x64,
273                                                        &v08_64);
274                                 early_read_config_dword(hose, busno, busno,
275                                                         pci_devfn, 0xb0,
276                                                         &v32_b0);
277                                 early_read_config_byte(hose, busno, busno,
278                                                        pci_devfn, 0xe1,
279                                                        &v08_e1);
280
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);
290                         }
291 #endif
292
293                         TOSHIBA_RBTX4927_SETUP_DPRINTK
294                             (TOSHIBA_RBTX4927_SETUP_PCIBIOS, ":%s end\n",
295                              s);
296                 }
297
298                 if (id == 0x91301055) {
299                         u8 v08_04;
300                         u8 v08_09;
301                         u8 v08_41;
302                         u8 v08_43;
303                         u8 v08_5c;
304 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
305                         char *s = " sb/ide --";
306 #endif
307
308                         TOSHIBA_RBTX4927_SETUP_DPRINTK
309                             (TOSHIBA_RBTX4927_SETUP_PCIBIOS, ":%s beg\n",
310                              s);
311
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);
322
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);
338
339                         /* enable ide master/io */
340                         v08_04 |= (PCI_COMMAND_MASTER | PCI_COMMAND_IO);
341
342                         /* enable ide native mode */
343                         v08_09 |= 0x05;
344
345                         /* enable primary ide */
346                         v08_41 |= 0x80;
347
348                         /* enable secondary ide */
349                         v08_43 |= 0x80;
350
351                         /*
352                          * !!! DO NOT REMOVE THIS COMMENT IT IS REQUIRED BY SMSC !!!
353                          *
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"".
357                          *
358                          * !!! DO NOT REMOVE THIS COMMENT IT IS REQUIRED BY SMSC !!!
359                          */
360                         v08_5c |= 0x01;
361
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);
377
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);
388
389 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
390                         {
391                                 early_read_config_byte(hose, busno, busno,
392                                                        pci_devfn, 0x04,
393                                                        &v08_04);
394                                 early_read_config_byte(hose, busno, busno,
395                                                        pci_devfn, 0x09,
396                                                        &v08_09);
397                                 early_read_config_byte(hose, busno, busno,
398                                                        pci_devfn, 0x41,
399                                                        &v08_41);
400                                 early_read_config_byte(hose, busno, busno,
401                                                        pci_devfn, 0x43,
402                                                        &v08_43);
403                                 early_read_config_byte(hose, busno, busno,
404                                                        pci_devfn, 0x5c,
405                                                        &v08_5c);
406
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);
422                         }
423 #endif
424
425                         TOSHIBA_RBTX4927_SETUP_DPRINTK
426                             (TOSHIBA_RBTX4927_SETUP_PCIBIOS, ":%s end\n",
427                              s);
428                 }
429
430         }
431
432         register_pci_controller(&tx4927_controller);
433         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCIBIOS,
434                                        "+\n");
435
436         return 0;
437 }
438
439 arch_initcall(tx4927_pcibios_init);
440
441 extern struct resource pci_io_resource;
442 extern struct resource pci_mem_resource;
443
444 void __init tx4927_pci_setup(void)
445 {
446         static int called = 0;
447         extern unsigned int tx4927_get_mem_size(void);
448
449         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2, "-\n");
450
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",
455                                        mips_memory_upper);
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;
460
461         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
462                                        "0x%08lx=mips_pci_io_base\n",
463                                        mips_pci_io_base);
464         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
465                                        "0x%08lx=mips_pci_io_size\n",
466                                        mips_pci_io_size);
467         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
468                                        "0x%08lx=mips_pci_mem_base\n",
469                                        mips_pci_mem_base);
470         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
471                                        "0x%08lx=mips_pci_mem_size\n",
472                                        mips_pci_mem_size);
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",
487                                        mips_io_port_base);
488         if (!called) {
489                 printk
490                     ("%s PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:%s\n",
491                      toshiba_name,
492                      (unsigned short) (tx4927_pcicptr->pciid >> 16),
493                      (unsigned short) (tx4927_pcicptr->pciid & 0xffff),
494                      (unsigned short) (tx4927_pcicptr->pciccrev & 0xff),
495                      (!(tx4927_ccfgptr->
496                         ccfg & TX4927_CCFG_PCIXARB)) ? "External" :
497                      "Internal");
498                 called = 1;
499         }
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) {
503                 int pciclk = 0;
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;
509                                 break;
510                         case TX4937_CCFG_PCIDIVMODE_4_5:
511                                 pciclk = tx4927_cpu_clock * 2 / 9;
512                                 break;
513                         case TX4937_CCFG_PCIDIVMODE_5:
514                                 pciclk = tx4927_cpu_clock / 5;
515                                 break;
516                         case TX4937_CCFG_PCIDIVMODE_5_5:
517                                 pciclk = tx4927_cpu_clock * 2 / 11;
518                                 break;
519                         case TX4937_CCFG_PCIDIVMODE_8:
520                                 pciclk = tx4927_cpu_clock / 8;
521                                 break;
522                         case TX4937_CCFG_PCIDIVMODE_9:
523                                 pciclk = tx4927_cpu_clock / 9;
524                                 break;
525                         case TX4937_CCFG_PCIDIVMODE_10:
526                                 pciclk = tx4927_cpu_clock / 10;
527                                 break;
528                         case TX4937_CCFG_PCIDIVMODE_11:
529                                 pciclk = tx4927_cpu_clock / 11;
530                                 break;
531                         }
532
533                 else
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;
538                                 break;
539                         case TX4927_CCFG_PCIDIVMODE_3:
540                                 pciclk = tx4927_cpu_clock / 3;
541                                 break;
542                         case TX4927_CCFG_PCIDIVMODE_5:
543                                 pciclk = tx4927_cpu_clock / 5;
544                                 break;
545                         case TX4927_CCFG_PCIDIVMODE_6:
546                                 pciclk = tx4927_cpu_clock / 6;
547                                 break;
548                         }
549
550                 printk("Internal(%dMHz)", pciclk / 1000000);
551         } else {
552                 int pciclk = 0;
553                 int pciclk_setting = *tx4927_pci_clk_ptr;
554                 switch (pciclk_setting & TX4927_PCI_CLK_MASK) {
555                 case TX4927_PCI_CLK_33:
556                         pciclk = 33333333;
557                         break;
558                 case TX4927_PCI_CLK_25:
559                         pciclk = 25000000;
560                         break;
561                 case TX4927_PCI_CLK_66:
562                         pciclk = 66666666;
563                         break;
564                 case TX4927_PCI_CLK_50:
565                         pciclk = 50000000;
566                         break;
567                 }
568                 printk("External(%dMHz)", pciclk / 1000000);
569         }
570         printk("\n");
571
572
573
574         /* GB->PCI mappings */
575         tx4927_pcicptr->g2piomask = (mips_pci_io_size - 1) >> 4;
576         tx4927_pcicptr->g2piogbase = mips_pci_io_base |
577 #ifdef __BIG_ENDIAN
578             TX4927_PCIC_G2PIOGBASE_ECHG
579 #else
580             TX4927_PCIC_G2PIOGBASE_BSDIS
581 #endif
582             ;
583
584         tx4927_pcicptr->g2piopbase = 0;
585
586         tx4927_pcicptr->g2pmmask[0] = (mips_pci_mem_size - 1) >> 4;
587         tx4927_pcicptr->g2pmgbase[0] = mips_pci_mem_base |
588 #ifdef __BIG_ENDIAN
589             TX4927_PCIC_G2PMnGBASE_ECHG
590 #else
591             TX4927_PCIC_G2PMnGBASE_BSDIS
592 #endif
593             ;
594         tx4927_pcicptr->g2pmpbase[0] = mips_pci_mem_base;
595
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;
602
603
604         /* PCI->GB mappings (I/O 256B) */
605         tx4927_pcicptr->p2giopbase = 0; /* 256B */
606
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 |
611 #ifdef __BIG_ENDIAN
612             TX4927_PCIC_P2GMnGBASE_TECHG
613 #else
614             TX4927_PCIC_P2GMnGBASE_TBSDIS
615 #endif
616             ;
617
618         /* PCI->GB mappings (MEM 16MB) -not used */
619         tx4927_pcicptr->p2gm1plbase = 0xffffffff;
620         tx4927_pcicptr->p2gm1pubase = 0xffffffff;
621         tx4927_pcicptr->p2gmgbase[1] = 0;
622
623         /* PCI->GB mappings (MEM 1MB) -not used */
624         tx4927_pcicptr->p2gm2pbase = 0xffffffff;
625         tx4927_pcicptr->p2gmgbase[2] = 0;
626
627
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;
633
634
635         /* Do not use MEMMUL, MEMINF: YMFPCI card causes M_ABORT. */
636         tx4927_pcicptr->pcicfg1 = 0;
637
638         if (tx4927_pcic_trdyto >= 0) {
639                 tx4927_pcicptr->g2ptocnt &= ~0xff;
640                 tx4927_pcicptr->g2ptocnt |= (tx4927_pcic_trdyto & 0xff);
641         }
642
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;
657
658         /* PCIC Int => IRC IRQ16 */
659         tx4927_pcicptr->pcicfg2 =
660             (tx4927_pcicptr->pcicfg2 & 0xffffff00) | TX4927_IR_PCIC;
661
662         if (!(tx4927_ccfgptr->ccfg & TX4927_CCFG_PCIXARB)) {
663                 /* XXX */
664         } else {
665                 /* Reset Bus Arbiter */
666                 tx4927_pcicptr->pbacfg = TX4927_PCIC_PBACFG_RPBA;
667                 /* Enable Bus Arbiter */
668                 tx4927_pcicptr->pbacfg = TX4927_PCIC_PBACFG_PBAEN;
669         }
670
671         tx4927_pcicptr->pcistatus = PCI_COMMAND_MASTER |
672             PCI_COMMAND_MEMORY |
673             PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
674
675         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2,
676                                        ":pci setup complete:\n");
677         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_PCI2, "+\n");
678 }
679
680 #endif /* CONFIG_PCI */
681
682 static void __noreturn wait_forever(void)
683 {
684         while (1)
685                 if (cpu_wait)
686                         (*cpu_wait)();
687 }
688
689 void toshiba_rbtx4927_restart(char *command)
690 {
691         printk(KERN_NOTICE "System Rebooting...\n");
692
693         /* enable the s/w reset register */
694         writeb(RBTX4927_SW_RESET_ENABLE_SET, RBTX4927_SW_RESET_ENABLE);
695
696         /* wait for enable to be seen */
697         while ((readb(RBTX4927_SW_RESET_ENABLE) &
698                 RBTX4927_SW_RESET_ENABLE_SET) == 0x00);
699
700         /* do a s/w reset */
701         writeb(RBTX4927_SW_RESET_DO_SET, RBTX4927_SW_RESET_DO);
702
703         /* do something passive while waiting for reset */
704         local_irq_disable();
705         wait_forever();
706         /* no return */
707 }
708
709
710 void toshiba_rbtx4927_halt(void)
711 {
712         printk(KERN_NOTICE "System Halted\n");
713         local_irq_disable();
714         wait_forever();
715         /* no return */
716 }
717
718 void toshiba_rbtx4927_power_off(void)
719 {
720         toshiba_rbtx4927_halt();
721         /* no return */
722 }
723
724 void __init toshiba_rbtx4927_setup(void)
725 {
726         u32 cp0_config;
727         char *argptr;
728
729         printk("CPU is %s\n", toshiba_name);
730
731         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
732                                        "-\n");
733
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);
738
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);
745
746 #ifdef TOSHIBA_RBTX4927_SETUP_DEBUG
747         {
748                 extern void dump_cp0(char *);
749                 dump_cp0("toshiba_rbtx4927_early_fw_fixup");
750         }
751 #endif
752
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",
756                                        mips_io_port_base);
757
758         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
759                                        ":Resource\n");
760         ioport_resource.end = 0xffffffff;
761         iomem_resource.end = 0xffffffff;
762
763         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
764                                        ":ResetRoutines\n");
765         _machine_restart = toshiba_rbtx4927_restart;
766         _machine_halt = toshiba_rbtx4927_halt;
767         pm_power_off = toshiba_rbtx4927_power_off;
768
769 #ifdef CONFIG_PCI
770
771         /* PCIC */
772         /*
773            * ASSUMPTION: PCIDIVMODE is configured for PCI 33MHz or 66MHz.
774            *
775            * For TX4927:
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)
782            *
783            * For TX4937:
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)
792            *
793          */
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));
801
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);
810
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 */
817                         break;
818                 case TX4937_CCFG_PCIDIVMODE_9:
819                 case TX4937_CCFG_PCIDIVMODE_4_5:
820                         tx4927_cpu_clock = 300000000;   /* 300MHz */
821                         break;
822                 default:
823                         tx4927_cpu_clock = 333333333;   /* 333MHz */
824                 }
825         else
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 */
831                         break;
832                 default:
833                         tx4927_cpu_clock = 200000000;   /* 200MHz */
834                 }
835
836         /* CCFG */
837         /* enable Timeout BusError */
838         if (tx4927_ccfg_toeon)
839                 tx4927_ccfgptr->ccfg |= TX4927_CCFG_TOE;
840
841         tx4927_pci_setup();
842         if (tx4927_using_backplane == 1)
843                 printk("backplane board IS installed\n");
844         else
845                 printk("No Backplane \n");
846
847         /* this is on ISA bus behind PCI bus, so need PCI up first */
848 #ifdef CONFIG_TOSHIBA_FPCIB0
849         {
850                 if (tx4927_using_backplane) {
851                         TOSHIBA_RBTX4927_SETUP_DPRINTK
852                             (TOSHIBA_RBTX4927_SETUP_SETUP,
853                              ":fpcibo=yes\n");
854
855                         TOSHIBA_RBTX4927_SETUP_DPRINTK
856                             (TOSHIBA_RBTX4927_SETUP_SETUP,
857                              ":smsc_fdc37m81x_init()\n");
858                         smsc_fdc37m81x_init(0x3f0);
859
860                         TOSHIBA_RBTX4927_SETUP_DPRINTK
861                             (TOSHIBA_RBTX4927_SETUP_SETUP,
862                              ":smsc_fdc37m81x_config_beg()\n");
863                         smsc_fdc37m81x_config_beg();
864
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,
869                                                   SMSC_FDC37M81X_KBD);
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,
873                                                   1);
874
875                         smsc_fdc37m81x_config_end();
876                         TOSHIBA_RBTX4927_SETUP_DPRINTK
877                             (TOSHIBA_RBTX4927_SETUP_SETUP,
878                              ":smsc_fdc37m81x_config_end()\n");
879                 } else {
880                         TOSHIBA_RBTX4927_SETUP_DPRINTK
881                             (TOSHIBA_RBTX4927_SETUP_SETUP,
882                              ":fpcibo=not_found\n");
883                 }
884         }
885 #else
886         {
887                 TOSHIBA_RBTX4927_SETUP_DPRINTK
888                     (TOSHIBA_RBTX4927_SETUP_SETUP, ":fpcibo=no\n");
889         }
890 #endif
891
892 #endif /* CONFIG_PCI */
893
894 #ifdef CONFIG_SERIAL_TXX9
895         {
896                 extern int early_serial_txx9_setup(struct uart_port *port);
897                 int i;
898                 struct uart_port req;
899                 for(i = 0; i < 2; i++) {
900                         memset(&req, 0, sizeof(req));
901                         req.line = i;
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);
909                 }
910         }
911 #ifdef CONFIG_SERIAL_TXX9_CONSOLE
912         argptr = prom_getcmdline();
913         if (strstr(argptr, "console=") == NULL) {
914                 strcat(argptr, " console=ttyS0,38400");
915         }
916 #endif
917 #endif
918
919 #ifdef CONFIG_ROOT_NFS
920         argptr = prom_getcmdline();
921         if (strstr(argptr, "root=") == NULL) {
922                 strcat(argptr, " root=/dev/nfs rw");
923         }
924 #endif
925
926
927 #ifdef CONFIG_IP_PNP
928         argptr = prom_getcmdline();
929         if (strstr(argptr, "ip=") == NULL) {
930                 strcat(argptr, " ip=any");
931         }
932 #endif
933
934
935         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_SETUP,
936                                "+\n");
937 }
938
939 void __init
940 toshiba_rbtx4927_time_init(void)
941 {
942         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIME_INIT, "-\n");
943
944         mips_hpt_frequency = tx4927_cpu_clock / 2;
945
946         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIME_INIT, "+\n");
947
948 }
949
950 void __init toshiba_rbtx4927_timer_setup(struct irqaction *irq)
951 {
952         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIMER_SETUP,
953                                        "-\n");
954         TOSHIBA_RBTX4927_SETUP_DPRINTK(TOSHIBA_RBTX4927_SETUP_TIMER_SETUP,
955                                        "+\n");
956 }
957
958 static int __init toshiba_rbtx4927_rtc_init(void)
959 {
960         static struct resource __initdata res = {
961                 .start  = 0x1c010000,
962                 .end    = 0x1c010000 + 0x800 - 1,
963                 .flags  = IORESOURCE_MEM,
964         };
965         struct platform_device *dev =
966                 platform_device_register_simple("rtc-ds1742", -1, &res, 1);
967         return IS_ERR(dev) ? PTR_ERR(dev) : 0;
968 }
969 device_initcall(toshiba_rbtx4927_rtc_init);
970
971 static int __init rbtx4927_ne_init(void)
972 {
973         static struct resource __initdata res[] = {
974                 {
975                         .start  = RBTX4927_RTL_8019_BASE,
976                         .end    = RBTX4927_RTL_8019_BASE + 0x20 - 1,
977                         .flags  = IORESOURCE_IO,
978                 }, {
979                         .start  = RBTX4927_RTL_8019_IRQ,
980                         .flags  = IORESOURCE_IRQ,
981                 }
982         };
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;
987 }
988 device_initcall(rbtx4927_ne_init);