[MIPS] Cleanup TX39/TX49 irq code
[firewire-audio.git] / arch / mips / tx4938 / toshiba_rbtx4938 / setup.c
blob57f3c705d08225ed5a4695b707405597763ff2af
1 /*
2 * linux/arch/mips/tx4938/toshiba_rbtx4938/setup.c
4 * Setup pointers to hardware-dependent routines.
5 * Copyright (C) 2000-2001 Toshiba Corporation
7 * 2003-2005 (c) MontaVista Software, Inc. This file is licensed under the
8 * terms of the GNU General Public License version 2. This program is
9 * licensed "as is" without any warranty of any kind, whether express
10 * or implied.
12 * Support for TX4938 in 2.6 - Manish Lachwani (mlachwani@mvista.com)
14 #include <linux/init.h>
15 #include <linux/types.h>
16 #include <linux/ioport.h>
17 #include <linux/delay.h>
18 #include <linux/interrupt.h>
19 #include <linux/console.h>
20 #include <linux/pci.h>
21 #include <linux/pm.h>
22 #include <linux/platform_device.h>
23 #include <linux/clk.h>
25 #include <asm/wbflush.h>
26 #include <asm/reboot.h>
27 #include <asm/irq.h>
28 #include <asm/time.h>
29 #include <asm/uaccess.h>
30 #include <asm/io.h>
31 #include <asm/bootinfo.h>
32 #include <asm/tx4938/rbtx4938.h>
33 #ifdef CONFIG_SERIAL_TXX9
34 #include <linux/tty.h>
35 #include <linux/serial.h>
36 #include <linux/serial_core.h>
37 #endif
38 #include <linux/spi/spi.h>
39 #include <asm/tx4938/spi.h>
40 #include <asm/gpio.h>
42 extern void rbtx4938_time_init(void) __init;
43 extern char * __init prom_getcmdline(void);
44 static inline void tx4938_report_pcic_status1(struct tx4938_pcic_reg *pcicptr);
46 /* These functions are used for rebooting or halting the machine*/
47 extern void rbtx4938_machine_restart(char *command);
48 extern void rbtx4938_machine_halt(void);
49 extern void rbtx4938_machine_power_off(void);
51 /* clocks */
52 unsigned int txx9_master_clock;
53 unsigned int txx9_cpu_clock;
54 unsigned int txx9_gbus_clock;
56 unsigned long rbtx4938_ce_base[8];
57 unsigned long rbtx4938_ce_size[8];
58 int txboard_pci66_mode;
59 static int tx4938_pcic_trdyto; /* default: disabled */
60 static int tx4938_pcic_retryto; /* default: disabled */
61 static int tx4938_ccfg_toeon = 1;
63 struct tx4938_pcic_reg *pcicptrs[4] = {
64 tx4938_pcicptr /* default setting for TX4938 */
67 static struct {
68 unsigned long base;
69 unsigned long size;
70 } phys_regions[16] __initdata;
71 static int num_phys_regions __initdata;
73 #define PHYS_REGION_MINSIZE 0x10000
75 void rbtx4938_machine_halt(void)
77 printk(KERN_NOTICE "System Halted\n");
78 local_irq_disable();
80 while (1)
81 __asm__(".set\tmips3\n\t"
82 "wait\n\t"
83 ".set\tmips0");
86 void rbtx4938_machine_power_off(void)
88 rbtx4938_machine_halt();
89 /* no return */
92 void rbtx4938_machine_restart(char *command)
94 local_irq_disable();
96 printk("Rebooting...");
97 *rbtx4938_softresetlock_ptr = 1;
98 *rbtx4938_sfvol_ptr = 1;
99 *rbtx4938_softreset_ptr = 1;
100 wbflush();
102 while(1);
105 void __init
106 txboard_add_phys_region(unsigned long base, unsigned long size)
108 if (num_phys_regions >= ARRAY_SIZE(phys_regions)) {
109 printk("phys_region overflow\n");
110 return;
112 phys_regions[num_phys_regions].base = base;
113 phys_regions[num_phys_regions].size = size;
114 num_phys_regions++;
116 unsigned long __init
117 txboard_find_free_phys_region(unsigned long begin, unsigned long end,
118 unsigned long size)
120 unsigned long base;
121 int i;
123 for (base = begin / size * size; base < end; base += size) {
124 for (i = 0; i < num_phys_regions; i++) {
125 if (phys_regions[i].size &&
126 base <= phys_regions[i].base + (phys_regions[i].size - 1) &&
127 base + (size - 1) >= phys_regions[i].base)
128 break;
130 if (i == num_phys_regions)
131 return base;
133 return 0;
135 unsigned long __init
136 txboard_find_free_phys_region_shrink(unsigned long begin, unsigned long end,
137 unsigned long *size)
139 unsigned long sz, base;
140 for (sz = *size; sz >= PHYS_REGION_MINSIZE; sz /= 2) {
141 base = txboard_find_free_phys_region(begin, end, sz);
142 if (base) {
143 *size = sz;
144 return base;
147 return 0;
149 unsigned long __init
150 txboard_request_phys_region_range(unsigned long begin, unsigned long end,
151 unsigned long size)
153 unsigned long base;
154 base = txboard_find_free_phys_region(begin, end, size);
155 if (base)
156 txboard_add_phys_region(base, size);
157 return base;
159 unsigned long __init
160 txboard_request_phys_region(unsigned long size)
162 unsigned long base;
163 unsigned long begin = 0, end = 0x20000000; /* search low 512MB */
164 base = txboard_find_free_phys_region(begin, end, size);
165 if (base)
166 txboard_add_phys_region(base, size);
167 return base;
169 unsigned long __init
170 txboard_request_phys_region_shrink(unsigned long *size)
172 unsigned long base;
173 unsigned long begin = 0, end = 0x20000000; /* search low 512MB */
174 base = txboard_find_free_phys_region_shrink(begin, end, size);
175 if (base)
176 txboard_add_phys_region(base, *size);
177 return base;
180 #ifdef CONFIG_PCI
181 void __init
182 tx4938_pcic_setup(struct tx4938_pcic_reg *pcicptr,
183 struct pci_controller *channel,
184 unsigned long pci_io_base,
185 int extarb)
187 int i;
189 /* Disable All Initiator Space */
190 pcicptr->pciccfg &= ~(TX4938_PCIC_PCICCFG_G2PMEN(0)|
191 TX4938_PCIC_PCICCFG_G2PMEN(1)|
192 TX4938_PCIC_PCICCFG_G2PMEN(2)|
193 TX4938_PCIC_PCICCFG_G2PIOEN);
195 /* GB->PCI mappings */
196 pcicptr->g2piomask = (channel->io_resource->end - channel->io_resource->start) >> 4;
197 pcicptr->g2piogbase = pci_io_base |
198 #ifdef __BIG_ENDIAN
199 TX4938_PCIC_G2PIOGBASE_ECHG
200 #else
201 TX4938_PCIC_G2PIOGBASE_BSDIS
202 #endif
204 pcicptr->g2piopbase = 0;
205 for (i = 0; i < 3; i++) {
206 pcicptr->g2pmmask[i] = 0;
207 pcicptr->g2pmgbase[i] = 0;
208 pcicptr->g2pmpbase[i] = 0;
210 if (channel->mem_resource->end) {
211 pcicptr->g2pmmask[0] = (channel->mem_resource->end - channel->mem_resource->start) >> 4;
212 pcicptr->g2pmgbase[0] = channel->mem_resource->start |
213 #ifdef __BIG_ENDIAN
214 TX4938_PCIC_G2PMnGBASE_ECHG
215 #else
216 TX4938_PCIC_G2PMnGBASE_BSDIS
217 #endif
219 pcicptr->g2pmpbase[0] = channel->mem_resource->start;
221 /* PCI->GB mappings (I/O 256B) */
222 pcicptr->p2giopbase = 0; /* 256B */
223 pcicptr->p2giogbase = 0;
224 /* PCI->GB mappings (MEM 512MB (64MB on R1.x)) */
225 pcicptr->p2gm0plbase = 0;
226 pcicptr->p2gm0pubase = 0;
227 pcicptr->p2gmgbase[0] = 0 |
228 TX4938_PCIC_P2GMnGBASE_TMEMEN |
229 #ifdef __BIG_ENDIAN
230 TX4938_PCIC_P2GMnGBASE_TECHG
231 #else
232 TX4938_PCIC_P2GMnGBASE_TBSDIS
233 #endif
235 /* PCI->GB mappings (MEM 16MB) */
236 pcicptr->p2gm1plbase = 0xffffffff;
237 pcicptr->p2gm1pubase = 0xffffffff;
238 pcicptr->p2gmgbase[1] = 0;
239 /* PCI->GB mappings (MEM 1MB) */
240 pcicptr->p2gm2pbase = 0xffffffff; /* 1MB */
241 pcicptr->p2gmgbase[2] = 0;
243 pcicptr->pciccfg &= TX4938_PCIC_PCICCFG_GBWC_MASK;
244 /* Enable Initiator Memory Space */
245 if (channel->mem_resource->end)
246 pcicptr->pciccfg |= TX4938_PCIC_PCICCFG_G2PMEN(0);
247 /* Enable Initiator I/O Space */
248 if (channel->io_resource->end)
249 pcicptr->pciccfg |= TX4938_PCIC_PCICCFG_G2PIOEN;
250 /* Enable Initiator Config */
251 pcicptr->pciccfg |=
252 TX4938_PCIC_PCICCFG_ICAEN |
253 TX4938_PCIC_PCICCFG_TCAR;
255 /* Do not use MEMMUL, MEMINF: YMFPCI card causes M_ABORT. */
256 pcicptr->pcicfg1 = 0;
258 pcicptr->g2ptocnt &= ~0xffff;
260 if (tx4938_pcic_trdyto >= 0) {
261 pcicptr->g2ptocnt &= ~0xff;
262 pcicptr->g2ptocnt |= (tx4938_pcic_trdyto & 0xff);
265 if (tx4938_pcic_retryto >= 0) {
266 pcicptr->g2ptocnt &= ~0xff00;
267 pcicptr->g2ptocnt |= ((tx4938_pcic_retryto<<8) & 0xff00);
270 /* Clear All Local Bus Status */
271 pcicptr->pcicstatus = TX4938_PCIC_PCICSTATUS_ALL;
272 /* Enable All Local Bus Interrupts */
273 pcicptr->pcicmask = TX4938_PCIC_PCICSTATUS_ALL;
274 /* Clear All Initiator Status */
275 pcicptr->g2pstatus = TX4938_PCIC_G2PSTATUS_ALL;
276 /* Enable All Initiator Interrupts */
277 pcicptr->g2pmask = TX4938_PCIC_G2PSTATUS_ALL;
278 /* Clear All PCI Status Error */
279 pcicptr->pcistatus =
280 (pcicptr->pcistatus & 0x0000ffff) |
281 (TX4938_PCIC_PCISTATUS_ALL << 16);
282 /* Enable All PCI Status Error Interrupts */
283 pcicptr->pcimask = TX4938_PCIC_PCISTATUS_ALL;
285 if (!extarb) {
286 /* Reset Bus Arbiter */
287 pcicptr->pbacfg = TX4938_PCIC_PBACFG_RPBA;
288 pcicptr->pbabm = 0;
289 /* Enable Bus Arbiter */
290 pcicptr->pbacfg = TX4938_PCIC_PBACFG_PBAEN;
293 /* PCIC Int => IRC IRQ16 */
294 pcicptr->pcicfg2 =
295 (pcicptr->pcicfg2 & 0xffffff00) | TX4938_IR_PCIC;
297 pcicptr->pcistatus = PCI_COMMAND_MASTER |
298 PCI_COMMAND_MEMORY |
299 PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
302 int __init
303 tx4938_report_pciclk(void)
305 unsigned long pcode = TX4938_REV_PCODE();
306 int pciclk = 0;
307 printk("TX%lx PCIC --%s PCICLK:",
308 pcode,
309 (tx4938_ccfgptr->ccfg & TX4938_CCFG_PCI66) ? " PCI66" : "");
310 if (tx4938_ccfgptr->pcfg & TX4938_PCFG_PCICLKEN_ALL) {
312 switch ((unsigned long)tx4938_ccfgptr->ccfg & TX4938_CCFG_PCIDIVMODE_MASK) {
313 case TX4938_CCFG_PCIDIVMODE_4:
314 pciclk = txx9_cpu_clock / 4; break;
315 case TX4938_CCFG_PCIDIVMODE_4_5:
316 pciclk = txx9_cpu_clock * 2 / 9; break;
317 case TX4938_CCFG_PCIDIVMODE_5:
318 pciclk = txx9_cpu_clock / 5; break;
319 case TX4938_CCFG_PCIDIVMODE_5_5:
320 pciclk = txx9_cpu_clock * 2 / 11; break;
321 case TX4938_CCFG_PCIDIVMODE_8:
322 pciclk = txx9_cpu_clock / 8; break;
323 case TX4938_CCFG_PCIDIVMODE_9:
324 pciclk = txx9_cpu_clock / 9; break;
325 case TX4938_CCFG_PCIDIVMODE_10:
326 pciclk = txx9_cpu_clock / 10; break;
327 case TX4938_CCFG_PCIDIVMODE_11:
328 pciclk = txx9_cpu_clock / 11; break;
330 printk("Internal(%dMHz)", pciclk / 1000000);
331 } else {
332 printk("External");
333 pciclk = -1;
335 printk("\n");
336 return pciclk;
339 void __init set_tx4938_pcicptr(int ch, struct tx4938_pcic_reg *pcicptr)
341 pcicptrs[ch] = pcicptr;
344 struct tx4938_pcic_reg *get_tx4938_pcicptr(int ch)
346 return pcicptrs[ch];
349 static struct pci_dev *fake_pci_dev(struct pci_controller *hose,
350 int top_bus, int busnr, int devfn)
352 static struct pci_dev dev;
353 static struct pci_bus bus;
355 dev.sysdata = bus.sysdata = hose;
356 dev.devfn = devfn;
357 bus.number = busnr;
358 bus.ops = hose->pci_ops;
359 bus.parent = NULL;
360 dev.bus = &bus;
362 return &dev;
365 #define EARLY_PCI_OP(rw, size, type) \
366 static int early_##rw##_config_##size(struct pci_controller *hose, \
367 int top_bus, int bus, int devfn, int offset, type value) \
369 return pci_##rw##_config_##size( \
370 fake_pci_dev(hose, top_bus, bus, devfn), \
371 offset, value); \
374 EARLY_PCI_OP(read, word, u16 *)
376 int txboard_pci66_check(struct pci_controller *hose, int top_bus, int current_bus)
378 u32 pci_devfn;
379 unsigned short vid;
380 int devfn_start = 0;
381 int devfn_stop = 0xff;
382 int cap66 = -1;
383 u16 stat;
385 printk("PCI: Checking 66MHz capabilities...\n");
387 for (pci_devfn=devfn_start; pci_devfn<devfn_stop; pci_devfn++) {
388 if (early_read_config_word(hose, top_bus, current_bus,
389 pci_devfn, PCI_VENDOR_ID,
390 &vid) != PCIBIOS_SUCCESSFUL)
391 continue;
393 if (vid == 0xffff) continue;
395 /* check 66MHz capability */
396 if (cap66 < 0)
397 cap66 = 1;
398 if (cap66) {
399 early_read_config_word(hose, top_bus, current_bus, pci_devfn,
400 PCI_STATUS, &stat);
401 if (!(stat & PCI_STATUS_66MHZ)) {
402 printk(KERN_DEBUG "PCI: %02x:%02x not 66MHz capable.\n",
403 current_bus, pci_devfn);
404 cap66 = 0;
405 break;
409 return cap66 > 0;
412 int __init
413 tx4938_pciclk66_setup(void)
415 int pciclk;
417 /* Assert M66EN */
418 tx4938_ccfgptr->ccfg |= TX4938_CCFG_PCI66;
419 /* Double PCICLK (if possible) */
420 if (tx4938_ccfgptr->pcfg & TX4938_PCFG_PCICLKEN_ALL) {
421 unsigned int pcidivmode =
422 tx4938_ccfgptr->ccfg & TX4938_CCFG_PCIDIVMODE_MASK;
423 switch (pcidivmode) {
424 case TX4938_CCFG_PCIDIVMODE_8:
425 case TX4938_CCFG_PCIDIVMODE_4:
426 pcidivmode = TX4938_CCFG_PCIDIVMODE_4;
427 pciclk = txx9_cpu_clock / 4;
428 break;
429 case TX4938_CCFG_PCIDIVMODE_9:
430 case TX4938_CCFG_PCIDIVMODE_4_5:
431 pcidivmode = TX4938_CCFG_PCIDIVMODE_4_5;
432 pciclk = txx9_cpu_clock * 2 / 9;
433 break;
434 case TX4938_CCFG_PCIDIVMODE_10:
435 case TX4938_CCFG_PCIDIVMODE_5:
436 pcidivmode = TX4938_CCFG_PCIDIVMODE_5;
437 pciclk = txx9_cpu_clock / 5;
438 break;
439 case TX4938_CCFG_PCIDIVMODE_11:
440 case TX4938_CCFG_PCIDIVMODE_5_5:
441 default:
442 pcidivmode = TX4938_CCFG_PCIDIVMODE_5_5;
443 pciclk = txx9_cpu_clock * 2 / 11;
444 break;
446 tx4938_ccfgptr->ccfg =
447 (tx4938_ccfgptr->ccfg & ~TX4938_CCFG_PCIDIVMODE_MASK)
448 | pcidivmode;
449 printk(KERN_DEBUG "PCICLK: ccfg:%08lx\n",
450 (unsigned long)tx4938_ccfgptr->ccfg);
451 } else {
452 pciclk = -1;
454 return pciclk;
457 extern struct pci_controller tx4938_pci_controller[];
458 static int __init tx4938_pcibios_init(void)
460 unsigned long mem_base[2];
461 unsigned long mem_size[2] = {TX4938_PCIMEM_SIZE_0,TX4938_PCIMEM_SIZE_1}; /* MAX 128M,64K */
462 unsigned long io_base[2];
463 unsigned long io_size[2] = {TX4938_PCIIO_SIZE_0,TX4938_PCIIO_SIZE_1}; /* MAX 16M,64K */
464 /* TX4938 PCIC1: 64K MEM/IO is enough for ETH0,ETH1 */
465 int extarb = !(tx4938_ccfgptr->ccfg & TX4938_CCFG_PCIXARB);
467 PCIBIOS_MIN_IO = 0x00001000UL;
469 mem_base[0] = txboard_request_phys_region_shrink(&mem_size[0]);
470 io_base[0] = txboard_request_phys_region_shrink(&io_size[0]);
472 printk("TX4938 PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:%s\n",
473 (unsigned short)(tx4938_pcicptr->pciid >> 16),
474 (unsigned short)(tx4938_pcicptr->pciid & 0xffff),
475 (unsigned short)(tx4938_pcicptr->pciccrev & 0xff),
476 extarb ? "External" : "Internal");
478 /* setup PCI area */
479 tx4938_pci_controller[0].io_resource->start = io_base[0];
480 tx4938_pci_controller[0].io_resource->end = (io_base[0] + io_size[0]) - 1;
481 tx4938_pci_controller[0].mem_resource->start = mem_base[0];
482 tx4938_pci_controller[0].mem_resource->end = mem_base[0] + mem_size[0] - 1;
484 set_tx4938_pcicptr(0, tx4938_pcicptr);
486 register_pci_controller(&tx4938_pci_controller[0]);
488 if (tx4938_ccfgptr->ccfg & TX4938_CCFG_PCI66) {
489 printk("TX4938_CCFG_PCI66 already configured\n");
490 txboard_pci66_mode = -1; /* already configured */
493 /* Reset PCI Bus */
494 *rbtx4938_pcireset_ptr = 0;
495 /* Reset PCIC */
496 tx4938_ccfgptr->clkctr |= TX4938_CLKCTR_PCIRST;
497 if (txboard_pci66_mode > 0)
498 tx4938_pciclk66_setup();
499 mdelay(10);
500 /* clear PCIC reset */
501 tx4938_ccfgptr->clkctr &= ~TX4938_CLKCTR_PCIRST;
502 *rbtx4938_pcireset_ptr = 1;
503 wbflush();
504 tx4938_report_pcic_status1(tx4938_pcicptr);
506 tx4938_report_pciclk();
507 tx4938_pcic_setup(tx4938_pcicptr, &tx4938_pci_controller[0], io_base[0], extarb);
508 if (txboard_pci66_mode == 0 &&
509 txboard_pci66_check(&tx4938_pci_controller[0], 0, 0)) {
510 /* Reset PCI Bus */
511 *rbtx4938_pcireset_ptr = 0;
512 /* Reset PCIC */
513 tx4938_ccfgptr->clkctr |= TX4938_CLKCTR_PCIRST;
514 tx4938_pciclk66_setup();
515 mdelay(10);
516 /* clear PCIC reset */
517 tx4938_ccfgptr->clkctr &= ~TX4938_CLKCTR_PCIRST;
518 *rbtx4938_pcireset_ptr = 1;
519 wbflush();
520 /* Reinitialize PCIC */
521 tx4938_report_pciclk();
522 tx4938_pcic_setup(tx4938_pcicptr, &tx4938_pci_controller[0], io_base[0], extarb);
525 mem_base[1] = txboard_request_phys_region_shrink(&mem_size[1]);
526 io_base[1] = txboard_request_phys_region_shrink(&io_size[1]);
527 /* Reset PCIC1 */
528 tx4938_ccfgptr->clkctr |= TX4938_CLKCTR_PCIC1RST;
529 /* PCI1DMD==0 => PCI1CLK==GBUSCLK/2 => PCI66 */
530 if (!(tx4938_ccfgptr->ccfg & TX4938_CCFG_PCI1DMD))
531 tx4938_ccfgptr->ccfg |= TX4938_CCFG_PCI1_66;
532 else
533 tx4938_ccfgptr->ccfg &= ~TX4938_CCFG_PCI1_66;
534 mdelay(10);
535 /* clear PCIC1 reset */
536 tx4938_ccfgptr->clkctr &= ~TX4938_CLKCTR_PCIC1RST;
537 tx4938_report_pcic_status1(tx4938_pcic1ptr);
539 printk("TX4938 PCIC1 -- DID:%04x VID:%04x RID:%02x",
540 (unsigned short)(tx4938_pcic1ptr->pciid >> 16),
541 (unsigned short)(tx4938_pcic1ptr->pciid & 0xffff),
542 (unsigned short)(tx4938_pcic1ptr->pciccrev & 0xff));
543 printk("%s PCICLK:%dMHz\n",
544 (tx4938_ccfgptr->ccfg & TX4938_CCFG_PCI1_66) ? " PCI66" : "",
545 txx9_gbus_clock /
546 ((tx4938_ccfgptr->ccfg & TX4938_CCFG_PCI1DMD) ? 4 : 2) /
547 1000000);
549 /* assumption: CPHYSADDR(mips_io_port_base) == io_base[0] */
550 tx4938_pci_controller[1].io_resource->start =
551 io_base[1] - io_base[0];
552 tx4938_pci_controller[1].io_resource->end =
553 io_base[1] - io_base[0] + io_size[1] - 1;
554 tx4938_pci_controller[1].mem_resource->start = mem_base[1];
555 tx4938_pci_controller[1].mem_resource->end =
556 mem_base[1] + mem_size[1] - 1;
557 set_tx4938_pcicptr(1, tx4938_pcic1ptr);
559 register_pci_controller(&tx4938_pci_controller[1]);
561 tx4938_pcic_setup(tx4938_pcic1ptr, &tx4938_pci_controller[1], io_base[1], extarb);
563 /* map ioport 0 to PCI I/O space address 0 */
564 set_io_port_base(KSEG1 + io_base[0]);
566 return 0;
569 arch_initcall(tx4938_pcibios_init);
571 #endif /* CONFIG_PCI */
573 /* SPI support */
575 /* chip select for SPI devices */
576 #define SEEPROM1_CS 7 /* PIO7 */
577 #define SEEPROM2_CS 0 /* IOC */
578 #define SEEPROM3_CS 1 /* IOC */
579 #define SRTC_CS 2 /* IOC */
581 #ifdef CONFIG_PCI
582 static int __init rbtx4938_ethaddr_init(void)
584 unsigned char dat[17];
585 unsigned char sum;
586 int i;
588 /* 0-3: "MAC\0", 4-9:eth0, 10-15:eth1, 16:sum */
589 if (spi_eeprom_read(SEEPROM1_CS, 0, dat, sizeof(dat))) {
590 printk(KERN_ERR "seeprom: read error.\n");
591 return -ENODEV;
592 } else {
593 if (strcmp(dat, "MAC") != 0)
594 printk(KERN_WARNING "seeprom: bad signature.\n");
595 for (i = 0, sum = 0; i < sizeof(dat); i++)
596 sum += dat[i];
597 if (sum)
598 printk(KERN_WARNING "seeprom: bad checksum.\n");
600 for (i = 0; i < 2; i++) {
601 unsigned int slot = TX4938_PCIC_IDSEL_AD_TO_SLOT(31 - i);
602 unsigned int id = (1 << 8) | PCI_DEVFN(slot, 0); /* bus 1 */
603 struct platform_device *pdev;
604 if (!(tx4938_ccfgptr->pcfg &
605 (i ? TX4938_PCFG_ETH1_SEL : TX4938_PCFG_ETH0_SEL)))
606 continue;
607 pdev = platform_device_alloc("tc35815-mac", id);
608 if (!pdev ||
609 platform_device_add_data(pdev, &dat[4 + 6 * i], 6) ||
610 platform_device_add(pdev))
611 platform_device_put(pdev);
613 return 0;
615 device_initcall(rbtx4938_ethaddr_init);
616 #endif /* CONFIG_PCI */
618 static void __init rbtx4938_spi_setup(void)
620 /* set SPI_SEL */
621 tx4938_ccfgptr->pcfg |= TX4938_PCFG_SPI_SEL;
622 /* chip selects for SPI devices */
623 tx4938_pioptr->dout |= (1 << SEEPROM1_CS);
624 tx4938_pioptr->dir |= (1 << SEEPROM1_CS);
627 static struct resource rbtx4938_fpga_resource;
629 static char pcode_str[8];
630 static struct resource tx4938_reg_resource = {
631 .start = TX4938_REG_BASE,
632 .end = TX4938_REG_BASE + TX4938_REG_SIZE,
633 .name = pcode_str,
634 .flags = IORESOURCE_MEM
637 void __init tx4938_board_setup(void)
639 int i;
640 unsigned long divmode;
641 int cpuclk = 0;
642 unsigned long pcode = TX4938_REV_PCODE();
644 ioport_resource.start = 0x1000;
645 ioport_resource.end = 0xffffffff;
646 iomem_resource.start = 0x1000;
647 iomem_resource.end = 0xffffffff; /* expand to 4GB */
649 sprintf(pcode_str, "TX%lx", pcode);
650 /* SDRAMC,EBUSC are configured by PROM */
651 for (i = 0; i < 8; i++) {
652 if (!(tx4938_ebuscptr->cr[i] & 0x8))
653 continue; /* disabled */
654 rbtx4938_ce_base[i] = (unsigned long)TX4938_EBUSC_BA(i);
655 txboard_add_phys_region(rbtx4938_ce_base[i], TX4938_EBUSC_SIZE(i));
658 /* clocks */
659 if (txx9_master_clock) {
660 /* calculate gbus_clock and cpu_clock_freq from master_clock */
661 divmode = (unsigned long)tx4938_ccfgptr->ccfg & TX4938_CCFG_DIVMODE_MASK;
662 switch (divmode) {
663 case TX4938_CCFG_DIVMODE_8:
664 case TX4938_CCFG_DIVMODE_10:
665 case TX4938_CCFG_DIVMODE_12:
666 case TX4938_CCFG_DIVMODE_16:
667 case TX4938_CCFG_DIVMODE_18:
668 txx9_gbus_clock = txx9_master_clock * 4; break;
669 default:
670 txx9_gbus_clock = txx9_master_clock;
672 switch (divmode) {
673 case TX4938_CCFG_DIVMODE_2:
674 case TX4938_CCFG_DIVMODE_8:
675 cpuclk = txx9_gbus_clock * 2; break;
676 case TX4938_CCFG_DIVMODE_2_5:
677 case TX4938_CCFG_DIVMODE_10:
678 cpuclk = txx9_gbus_clock * 5 / 2; break;
679 case TX4938_CCFG_DIVMODE_3:
680 case TX4938_CCFG_DIVMODE_12:
681 cpuclk = txx9_gbus_clock * 3; break;
682 case TX4938_CCFG_DIVMODE_4:
683 case TX4938_CCFG_DIVMODE_16:
684 cpuclk = txx9_gbus_clock * 4; break;
685 case TX4938_CCFG_DIVMODE_4_5:
686 case TX4938_CCFG_DIVMODE_18:
687 cpuclk = txx9_gbus_clock * 9 / 2; break;
689 txx9_cpu_clock = cpuclk;
690 } else {
691 if (txx9_cpu_clock == 0) {
692 txx9_cpu_clock = 300000000; /* 300MHz */
694 /* calculate gbus_clock and master_clock from cpu_clock_freq */
695 cpuclk = txx9_cpu_clock;
696 divmode = (unsigned long)tx4938_ccfgptr->ccfg & TX4938_CCFG_DIVMODE_MASK;
697 switch (divmode) {
698 case TX4938_CCFG_DIVMODE_2:
699 case TX4938_CCFG_DIVMODE_8:
700 txx9_gbus_clock = cpuclk / 2; break;
701 case TX4938_CCFG_DIVMODE_2_5:
702 case TX4938_CCFG_DIVMODE_10:
703 txx9_gbus_clock = cpuclk * 2 / 5; break;
704 case TX4938_CCFG_DIVMODE_3:
705 case TX4938_CCFG_DIVMODE_12:
706 txx9_gbus_clock = cpuclk / 3; break;
707 case TX4938_CCFG_DIVMODE_4:
708 case TX4938_CCFG_DIVMODE_16:
709 txx9_gbus_clock = cpuclk / 4; break;
710 case TX4938_CCFG_DIVMODE_4_5:
711 case TX4938_CCFG_DIVMODE_18:
712 txx9_gbus_clock = cpuclk * 2 / 9; break;
714 switch (divmode) {
715 case TX4938_CCFG_DIVMODE_8:
716 case TX4938_CCFG_DIVMODE_10:
717 case TX4938_CCFG_DIVMODE_12:
718 case TX4938_CCFG_DIVMODE_16:
719 case TX4938_CCFG_DIVMODE_18:
720 txx9_master_clock = txx9_gbus_clock / 4; break;
721 default:
722 txx9_master_clock = txx9_gbus_clock;
725 /* change default value to udelay/mdelay take reasonable time */
726 loops_per_jiffy = txx9_cpu_clock / HZ / 2;
728 /* CCFG */
729 /* clear WatchDogReset,BusErrorOnWrite flag (W1C) */
730 tx4938_ccfgptr->ccfg |= TX4938_CCFG_WDRST | TX4938_CCFG_BEOW;
731 /* clear PCIC1 reset */
732 if (tx4938_ccfgptr->clkctr & TX4938_CLKCTR_PCIC1RST)
733 tx4938_ccfgptr->clkctr &= ~TX4938_CLKCTR_PCIC1RST;
735 /* enable Timeout BusError */
736 if (tx4938_ccfg_toeon)
737 tx4938_ccfgptr->ccfg |= TX4938_CCFG_TOE;
739 /* DMA selection */
740 tx4938_ccfgptr->pcfg &= ~TX4938_PCFG_DMASEL_ALL;
742 /* Use external clock for external arbiter */
743 if (!(tx4938_ccfgptr->ccfg & TX4938_CCFG_PCIXARB))
744 tx4938_ccfgptr->pcfg &= ~TX4938_PCFG_PCICLKEN_ALL;
746 printk("%s -- %dMHz(M%dMHz) CRIR:%08lx CCFG:%Lx PCFG:%Lx\n",
747 pcode_str,
748 cpuclk / 1000000, txx9_master_clock / 1000000,
749 (unsigned long)tx4938_ccfgptr->crir,
750 tx4938_ccfgptr->ccfg,
751 tx4938_ccfgptr->pcfg);
753 printk("%s SDRAMC --", pcode_str);
754 for (i = 0; i < 4; i++) {
755 unsigned long long cr = tx4938_sdramcptr->cr[i];
756 unsigned long ram_base, ram_size;
757 if (!((unsigned long)cr & 0x00000400))
758 continue; /* disabled */
759 ram_base = (unsigned long)(cr >> 49) << 21;
760 ram_size = ((unsigned long)(cr >> 33) + 1) << 21;
761 if (ram_base >= 0x20000000)
762 continue; /* high memory (ignore) */
763 printk(" CR%d:%016Lx", i, cr);
764 txboard_add_phys_region(ram_base, ram_size);
766 printk(" TR:%09Lx\n", tx4938_sdramcptr->tr);
768 /* SRAM */
769 if (pcode == 0x4938 && tx4938_sramcptr->cr & 1) {
770 unsigned int size = 0x800;
771 unsigned long base =
772 (tx4938_sramcptr->cr >> (39-11)) & ~(size - 1);
773 txboard_add_phys_region(base, size);
776 /* TMR */
777 /* disable all timers */
778 for (i = 0; i < TX4938_NR_TMR; i++) {
779 tx4938_tmrptr(i)->tcr = 0x00000020;
780 tx4938_tmrptr(i)->tisr = 0;
781 tx4938_tmrptr(i)->cpra = 0xffffffff;
782 tx4938_tmrptr(i)->itmr = 0;
783 tx4938_tmrptr(i)->ccdr = 0;
784 tx4938_tmrptr(i)->pgmr = 0;
787 /* enable DMA */
788 TX4938_WR64(0xff1fb150, TX4938_DMA_MCR_MSTEN);
789 TX4938_WR64(0xff1fb950, TX4938_DMA_MCR_MSTEN);
791 /* PIO */
792 tx4938_pioptr->maskcpu = 0;
793 tx4938_pioptr->maskext = 0;
795 /* TX4938 internal registers */
796 if (request_resource(&iomem_resource, &tx4938_reg_resource))
797 printk("request resource for internal registers failed\n");
800 #ifdef CONFIG_PCI
801 static inline void tx4938_report_pcic_status1(struct tx4938_pcic_reg *pcicptr)
803 unsigned short pcistatus = (unsigned short)(pcicptr->pcistatus >> 16);
804 unsigned long g2pstatus = pcicptr->g2pstatus;
805 unsigned long pcicstatus = pcicptr->pcicstatus;
806 static struct {
807 unsigned long flag;
808 const char *str;
809 } pcistat_tbl[] = {
810 { PCI_STATUS_DETECTED_PARITY, "DetectedParityError" },
811 { PCI_STATUS_SIG_SYSTEM_ERROR, "SignaledSystemError" },
812 { PCI_STATUS_REC_MASTER_ABORT, "ReceivedMasterAbort" },
813 { PCI_STATUS_REC_TARGET_ABORT, "ReceivedTargetAbort" },
814 { PCI_STATUS_SIG_TARGET_ABORT, "SignaledTargetAbort" },
815 { PCI_STATUS_PARITY, "MasterParityError" },
816 }, g2pstat_tbl[] = {
817 { TX4938_PCIC_G2PSTATUS_TTOE, "TIOE" },
818 { TX4938_PCIC_G2PSTATUS_RTOE, "RTOE" },
819 }, pcicstat_tbl[] = {
820 { TX4938_PCIC_PCICSTATUS_PME, "PME" },
821 { TX4938_PCIC_PCICSTATUS_TLB, "TLB" },
822 { TX4938_PCIC_PCICSTATUS_NIB, "NIB" },
823 { TX4938_PCIC_PCICSTATUS_ZIB, "ZIB" },
824 { TX4938_PCIC_PCICSTATUS_PERR, "PERR" },
825 { TX4938_PCIC_PCICSTATUS_SERR, "SERR" },
826 { TX4938_PCIC_PCICSTATUS_GBE, "GBE" },
827 { TX4938_PCIC_PCICSTATUS_IWB, "IWB" },
829 int i;
831 printk("pcistat:%04x(", pcistatus);
832 for (i = 0; i < ARRAY_SIZE(pcistat_tbl); i++)
833 if (pcistatus & pcistat_tbl[i].flag)
834 printk("%s ", pcistat_tbl[i].str);
835 printk("), g2pstatus:%08lx(", g2pstatus);
836 for (i = 0; i < ARRAY_SIZE(g2pstat_tbl); i++)
837 if (g2pstatus & g2pstat_tbl[i].flag)
838 printk("%s ", g2pstat_tbl[i].str);
839 printk("), pcicstatus:%08lx(", pcicstatus);
840 for (i = 0; i < ARRAY_SIZE(pcicstat_tbl); i++)
841 if (pcicstatus & pcicstat_tbl[i].flag)
842 printk("%s ", pcicstat_tbl[i].str);
843 printk(")\n");
846 void tx4938_report_pcic_status(void)
848 int i;
849 struct tx4938_pcic_reg *pcicptr;
850 for (i = 0; (pcicptr = get_tx4938_pcicptr(i)) != NULL; i++)
851 tx4938_report_pcic_status1(pcicptr);
854 #endif /* CONFIG_PCI */
856 /* We use onchip r4k counter or TMR timer as our system wide timer
857 * interrupt running at 100HZ. */
859 void __init rbtx4938_time_init(void)
861 mips_hpt_frequency = txx9_cpu_clock / 2;
864 void __init toshiba_rbtx4938_setup(void)
866 unsigned long long pcfg;
867 char *argptr;
869 iomem_resource.end = 0xffffffff; /* 4GB */
871 if (txx9_master_clock == 0)
872 txx9_master_clock = 25000000; /* 25MHz */
873 tx4938_board_setup();
874 /* setup serial stuff */
875 TX4938_WR(0xff1ff314, 0x00000000); /* h/w flow control off */
876 TX4938_WR(0xff1ff414, 0x00000000); /* h/w flow control off */
878 #ifndef CONFIG_PCI
879 set_io_port_base(RBTX4938_ETHER_BASE);
880 #endif
882 #ifdef CONFIG_SERIAL_TXX9
884 extern int early_serial_txx9_setup(struct uart_port *port);
885 int i;
886 struct uart_port req;
887 for(i = 0; i < 2; i++) {
888 memset(&req, 0, sizeof(req));
889 req.line = i;
890 req.iotype = UPIO_MEM;
891 req.membase = (char *)(0xff1ff300 + i * 0x100);
892 req.mapbase = 0xff1ff300 + i * 0x100;
893 req.irq = RBTX4938_IRQ_IRC_SIO(i);
894 req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/;
895 req.uartclk = 50000000;
896 early_serial_txx9_setup(&req);
899 #ifdef CONFIG_SERIAL_TXX9_CONSOLE
900 argptr = prom_getcmdline();
901 if (strstr(argptr, "console=") == NULL) {
902 strcat(argptr, " console=ttyS0,38400");
904 #endif
905 #endif
907 #ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_PIO58_61
908 printk("PIOSEL: disabling both ata and nand selection\n");
909 local_irq_disable();
910 tx4938_ccfgptr->pcfg &= ~(TX4938_PCFG_NDF_SEL | TX4938_PCFG_ATA_SEL);
911 #endif
913 #ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_NAND
914 printk("PIOSEL: enabling nand selection\n");
915 tx4938_ccfgptr->pcfg |= TX4938_PCFG_NDF_SEL;
916 tx4938_ccfgptr->pcfg &= ~TX4938_PCFG_ATA_SEL;
917 #endif
919 #ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_ATA
920 printk("PIOSEL: enabling ata selection\n");
921 tx4938_ccfgptr->pcfg |= TX4938_PCFG_ATA_SEL;
922 tx4938_ccfgptr->pcfg &= ~TX4938_PCFG_NDF_SEL;
923 #endif
925 #ifdef CONFIG_IP_PNP
926 argptr = prom_getcmdline();
927 if (strstr(argptr, "ip=") == NULL) {
928 strcat(argptr, " ip=any");
930 #endif
933 #ifdef CONFIG_FB
935 conswitchp = &dummy_con;
937 #endif
939 rbtx4938_spi_setup();
940 pcfg = tx4938_ccfgptr->pcfg; /* updated */
941 /* fixup piosel */
942 if ((pcfg & (TX4938_PCFG_ATA_SEL | TX4938_PCFG_NDF_SEL)) ==
943 TX4938_PCFG_ATA_SEL) {
944 *rbtx4938_piosel_ptr = (*rbtx4938_piosel_ptr & 0x03) | 0x04;
946 else if ((pcfg & (TX4938_PCFG_ATA_SEL | TX4938_PCFG_NDF_SEL)) ==
947 TX4938_PCFG_NDF_SEL) {
948 *rbtx4938_piosel_ptr = (*rbtx4938_piosel_ptr & 0x03) | 0x08;
950 else {
951 *rbtx4938_piosel_ptr &= ~(0x08 | 0x04);
954 rbtx4938_fpga_resource.name = "FPGA Registers";
955 rbtx4938_fpga_resource.start = CPHYSADDR(RBTX4938_FPGA_REG_ADDR);
956 rbtx4938_fpga_resource.end = CPHYSADDR(RBTX4938_FPGA_REG_ADDR) + 0xffff;
957 rbtx4938_fpga_resource.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
958 if (request_resource(&iomem_resource, &rbtx4938_fpga_resource))
959 printk("request resource for fpga failed\n");
961 /* disable all OnBoard I/O interrupts */
962 *rbtx4938_imask_ptr = 0;
964 _machine_restart = rbtx4938_machine_restart;
965 _machine_halt = rbtx4938_machine_halt;
966 pm_power_off = rbtx4938_machine_power_off;
968 *rbtx4938_led_ptr = 0xff;
969 printk("RBTX4938 --- FPGA(Rev %02x)", *rbtx4938_fpga_rev_ptr);
970 printk(" DIPSW:%02x,%02x\n",
971 *rbtx4938_dipsw_ptr, *rbtx4938_bdipsw_ptr);
974 static int __init rbtx4938_ne_init(void)
976 struct resource res[] = {
978 .start = RBTX4938_RTL_8019_BASE,
979 .end = RBTX4938_RTL_8019_BASE + 0x20 - 1,
980 .flags = IORESOURCE_IO,
981 }, {
982 .start = RBTX4938_RTL_8019_IRQ,
983 .flags = IORESOURCE_IRQ,
986 struct platform_device *dev =
987 platform_device_register_simple("ne", -1,
988 res, ARRAY_SIZE(res));
989 return IS_ERR(dev) ? PTR_ERR(dev) : 0;
991 device_initcall(rbtx4938_ne_init);
993 /* GPIO support */
995 static DEFINE_SPINLOCK(rbtx4938_spi_gpio_lock);
997 static void rbtx4938_spi_gpio_set(unsigned gpio, int value)
999 u8 val;
1000 unsigned long flags;
1001 gpio -= 16;
1002 spin_lock_irqsave(&rbtx4938_spi_gpio_lock, flags);
1003 val = *rbtx4938_spics_ptr;
1004 if (value)
1005 val |= 1 << gpio;
1006 else
1007 val &= ~(1 << gpio);
1008 *rbtx4938_spics_ptr = val;
1009 mmiowb();
1010 spin_unlock_irqrestore(&rbtx4938_spi_gpio_lock, flags);
1013 static int rbtx4938_spi_gpio_dir_out(unsigned gpio, int value)
1015 rbtx4938_spi_gpio_set(gpio, value);
1016 return 0;
1019 static DEFINE_SPINLOCK(tx4938_gpio_lock);
1021 static int tx4938_gpio_get(unsigned gpio)
1023 return tx4938_pioptr->din & (1 << gpio);
1026 static void tx4938_gpio_set_raw(unsigned gpio, int value)
1028 u32 val;
1029 val = tx4938_pioptr->dout;
1030 if (value)
1031 val |= 1 << gpio;
1032 else
1033 val &= ~(1 << gpio);
1034 tx4938_pioptr->dout = val;
1037 static void tx4938_gpio_set(unsigned gpio, int value)
1039 unsigned long flags;
1040 spin_lock_irqsave(&tx4938_gpio_lock, flags);
1041 tx4938_gpio_set_raw(gpio, value);
1042 mmiowb();
1043 spin_unlock_irqrestore(&tx4938_gpio_lock, flags);
1046 static int tx4938_gpio_dir_in(unsigned gpio)
1048 spin_lock_irq(&tx4938_gpio_lock);
1049 tx4938_pioptr->dir &= ~(1 << gpio);
1050 mmiowb();
1051 spin_unlock_irq(&tx4938_gpio_lock);
1052 return 0;
1055 static int tx4938_gpio_dir_out(unsigned int gpio, int value)
1057 spin_lock_irq(&tx4938_gpio_lock);
1058 tx4938_gpio_set_raw(gpio, value);
1059 tx4938_pioptr->dir |= 1 << gpio;
1060 mmiowb();
1061 spin_unlock_irq(&tx4938_gpio_lock);
1062 return 0;
1065 int gpio_direction_input(unsigned gpio)
1067 if (gpio < 16)
1068 return tx4938_gpio_dir_in(gpio);
1069 return -EINVAL;
1072 int gpio_direction_output(unsigned gpio, int value)
1074 if (gpio < 16)
1075 return tx4938_gpio_dir_out(gpio, value);
1076 if (gpio < 16 + 3)
1077 return rbtx4938_spi_gpio_dir_out(gpio, value);
1078 return -EINVAL;
1081 int gpio_get_value(unsigned gpio)
1083 if (gpio < 16)
1084 return tx4938_gpio_get(gpio);
1085 return 0;
1088 void gpio_set_value(unsigned gpio, int value)
1090 if (gpio < 16)
1091 tx4938_gpio_set(gpio, value);
1092 else
1093 rbtx4938_spi_gpio_set(gpio, value);
1096 /* SPI support */
1098 static void __init txx9_spi_init(unsigned long base, int irq)
1100 struct resource res[] = {
1102 .start = base,
1103 .end = base + 0x20 - 1,
1104 .flags = IORESOURCE_MEM,
1105 .parent = &tx4938_reg_resource,
1106 }, {
1107 .start = irq,
1108 .flags = IORESOURCE_IRQ,
1111 platform_device_register_simple("txx9spi", 0,
1112 res, ARRAY_SIZE(res));
1115 static int __init rbtx4938_spi_init(void)
1117 struct spi_board_info srtc_info = {
1118 .modalias = "rs5c348",
1119 .max_speed_hz = 1000000, /* 1.0Mbps @ Vdd 2.0V */
1120 .bus_num = 0,
1121 .chip_select = 16 + SRTC_CS,
1122 /* Mode 1 (High-Active, Shift-Then-Sample), High Avtive CS */
1123 .mode = SPI_MODE_1 | SPI_CS_HIGH,
1125 spi_register_board_info(&srtc_info, 1);
1126 spi_eeprom_register(SEEPROM1_CS);
1127 spi_eeprom_register(16 + SEEPROM2_CS);
1128 spi_eeprom_register(16 + SEEPROM3_CS);
1129 txx9_spi_init(TX4938_SPI_REG & 0xfffffffffULL, RBTX4938_IRQ_IRC_SPI);
1130 return 0;
1132 arch_initcall(rbtx4938_spi_init);
1134 /* Minimum CLK support */
1136 struct clk *clk_get(struct device *dev, const char *id)
1138 if (!strcmp(id, "spi-baseclk"))
1139 return (struct clk *)(txx9_gbus_clock / 2 / 4);
1140 return ERR_PTR(-ENOENT);
1142 EXPORT_SYMBOL(clk_get);
1144 int clk_enable(struct clk *clk)
1146 return 0;
1148 EXPORT_SYMBOL(clk_enable);
1150 void clk_disable(struct clk *clk)
1153 EXPORT_SYMBOL(clk_disable);
1155 unsigned long clk_get_rate(struct clk *clk)
1157 return (unsigned long)clk;
1159 EXPORT_SYMBOL(clk_get_rate);
1161 void clk_put(struct clk *clk)
1164 EXPORT_SYMBOL(clk_put);