1
2
3
4
5
6
7
8
9
10
11
12
13#include <linux/kernel.h>
14#include <linux/types.h>
15#include <linux/init.h>
16#include <linux/mm.h>
17#include <linux/slab.h>
18#include <linux/jiffies.h>
19
20#include <asm/swift.h>
21#include <asm/io.h>
22
23#include <linux/ctype.h>
24#include <linux/pci.h>
25#include <linux/time.h>
26#include <linux/timex.h>
27#include <linux/interrupt.h>
28#include <linux/export.h>
29
30#include <asm/irq.h>
31#include <asm/oplib.h>
32#include <asm/prom.h>
33#include <asm/pcic.h>
34#include <asm/timex.h>
35#include <asm/timer.h>
36#include <asm/uaccess.h>
37#include <asm/irq_regs.h>
38
39#include "irq.h"
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56struct pcic_ca2irq {
57 unsigned char busno;
58 unsigned char devfn;
59 unsigned char pin;
60 unsigned char irq;
61 unsigned int force;
62};
63
64struct pcic_sn2list {
65 char *sysname;
66 struct pcic_ca2irq *intmap;
67 int mapdim;
68};
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89static struct pcic_ca2irq pcic_i_je1a[] = {
90 { 0, 0x00, 2, 12, 0 },
91 { 0, 0x01, 1, 6, 1 },
92 { 0, 0x80, 0, 7, 0 },
93};
94
95
96static struct pcic_ca2irq pcic_i_jse[] = {
97 { 0, 0x00, 0, 13, 0 },
98 { 0, 0x01, 1, 6, 0 },
99 { 0, 0x08, 2, 9, 0 },
100 { 0, 0x10, 6, 8, 0 },
101 { 0, 0x18, 7, 12, 0 },
102 { 0, 0x38, 4, 9, 0 },
103 { 0, 0x80, 5, 11, 0 },
104
105 { 0, 0xA0, 4, 9, 0 },
106
107
108
109
110
111
112
113};
114
115
116
117
118static struct pcic_ca2irq pcic_i_se6[] = {
119 { 0, 0x08, 0, 2, 0 },
120 { 0, 0x01, 1, 6, 0 },
121 { 0, 0x00, 3, 13, 0 },
122};
123
124
125
126
127
128
129
130
131
132
133
134
135
136static struct pcic_ca2irq pcic_i_jk[] = {
137 { 0, 0x00, 0, 13, 0 },
138 { 0, 0x01, 1, 6, 0 },
139};
140
141
142
143
144
145#define SN2L_INIT(name, map) \
146 { name, map, ARRAY_SIZE(map) }
147
148static struct pcic_sn2list pcic_known_sysnames[] = {
149 SN2L_INIT("SUNW,JavaEngine1", pcic_i_je1a),
150 SN2L_INIT("SUNW,JS-E", pcic_i_jse),
151 SN2L_INIT("SUNW,SPARCengine-6", pcic_i_se6),
152 SN2L_INIT("SUNW,JS-NC", pcic_i_jk),
153 SN2L_INIT("SUNW,JSIIep", pcic_i_jk),
154 { NULL, NULL, 0 }
155};
156
157
158
159
160
161static int pcic0_up;
162static struct linux_pcic pcic0;
163
164void __iomem *pcic_regs;
165volatile int pcic_speculative;
166volatile int pcic_trapped;
167
168
169unsigned int pcic_build_device_irq(struct platform_device *op,
170 unsigned int real_irq);
171
172#define CONFIG_CMD(bus, device_fn, where) (0x80000000 | (((unsigned int)bus) << 16) | (((unsigned int)device_fn) << 8) | (where & ~3))
173
174static int pcic_read_config_dword(unsigned int busno, unsigned int devfn,
175 int where, u32 *value)
176{
177 struct linux_pcic *pcic;
178 unsigned long flags;
179
180 pcic = &pcic0;
181
182 local_irq_save(flags);
183#if 0
184 pcic_speculative = 1;
185 pcic_trapped = 0;
186#endif
187 writel(CONFIG_CMD(busno, devfn, where), pcic->pcic_config_space_addr);
188#if 0
189 nop();
190 if (pcic_trapped) {
191 local_irq_restore(flags);
192 *value = ~0;
193 return 0;
194 }
195#endif
196 pcic_speculative = 2;
197 pcic_trapped = 0;
198 *value = readl(pcic->pcic_config_space_data + (where&4));
199 nop();
200 if (pcic_trapped) {
201 pcic_speculative = 0;
202 local_irq_restore(flags);
203 *value = ~0;
204 return 0;
205 }
206 pcic_speculative = 0;
207 local_irq_restore(flags);
208 return 0;
209}
210
211static int pcic_read_config(struct pci_bus *bus, unsigned int devfn,
212 int where, int size, u32 *val)
213{
214 unsigned int v;
215
216 if (bus->number != 0) return -EINVAL;
217 switch (size) {
218 case 1:
219 pcic_read_config_dword(bus->number, devfn, where&~3, &v);
220 *val = 0xff & (v >> (8*(where & 3)));
221 return 0;
222 case 2:
223 if (where&1) return -EINVAL;
224 pcic_read_config_dword(bus->number, devfn, where&~3, &v);
225 *val = 0xffff & (v >> (8*(where & 3)));
226 return 0;
227 case 4:
228 if (where&3) return -EINVAL;
229 pcic_read_config_dword(bus->number, devfn, where&~3, val);
230 return 0;
231 }
232 return -EINVAL;
233}
234
235static int pcic_write_config_dword(unsigned int busno, unsigned int devfn,
236 int where, u32 value)
237{
238 struct linux_pcic *pcic;
239 unsigned long flags;
240
241 pcic = &pcic0;
242
243 local_irq_save(flags);
244 writel(CONFIG_CMD(busno, devfn, where), pcic->pcic_config_space_addr);
245 writel(value, pcic->pcic_config_space_data + (where&4));
246 local_irq_restore(flags);
247 return 0;
248}
249
250static int pcic_write_config(struct pci_bus *bus, unsigned int devfn,
251 int where, int size, u32 val)
252{
253 unsigned int v;
254
255 if (bus->number != 0) return -EINVAL;
256 switch (size) {
257 case 1:
258 pcic_read_config_dword(bus->number, devfn, where&~3, &v);
259 v = (v & ~(0xff << (8*(where&3)))) |
260 ((0xff&val) << (8*(where&3)));
261 return pcic_write_config_dword(bus->number, devfn, where&~3, v);
262 case 2:
263 if (where&1) return -EINVAL;
264 pcic_read_config_dword(bus->number, devfn, where&~3, &v);
265 v = (v & ~(0xffff << (8*(where&3)))) |
266 ((0xffff&val) << (8*(where&3)));
267 return pcic_write_config_dword(bus->number, devfn, where&~3, v);
268 case 4:
269 if (where&3) return -EINVAL;
270 return pcic_write_config_dword(bus->number, devfn, where, val);
271 }
272 return -EINVAL;
273}
274
275static struct pci_ops pcic_ops = {
276 .read = pcic_read_config,
277 .write = pcic_write_config,
278};
279
280
281
282
283
284
285int __init pcic_probe(void)
286{
287 struct linux_pcic *pcic;
288 struct linux_prom_registers regs[PROMREG_MAX];
289 struct linux_pbm_info* pbm;
290 char namebuf[64];
291 phandle node;
292 int err;
293
294 if (pcic0_up) {
295 prom_printf("PCIC: called twice!\n");
296 prom_halt();
297 }
298 pcic = &pcic0;
299
300 node = prom_getchild (prom_root_node);
301 node = prom_searchsiblings (node, "pci");
302 if (node == 0)
303 return -ENODEV;
304
305
306
307 err = prom_getproperty(node, "reg", (char*)regs, sizeof(regs));
308 if (err == 0 || err == -1) {
309 prom_printf("PCIC: Error, cannot get PCIC registers "
310 "from PROM.\n");
311 prom_halt();
312 }
313
314 pcic0_up = 1;
315
316 pcic->pcic_res_regs.name = "pcic_registers";
317 pcic->pcic_regs = ioremap(regs[0].phys_addr, regs[0].reg_size);
318 if (!pcic->pcic_regs) {
319 prom_printf("PCIC: Error, cannot map PCIC registers.\n");
320 prom_halt();
321 }
322
323 pcic->pcic_res_io.name = "pcic_io";
324 if ((pcic->pcic_io = (unsigned long)
325 ioremap(regs[1].phys_addr, 0x10000)) == 0) {
326 prom_printf("PCIC: Error, cannot map PCIC IO Base.\n");
327 prom_halt();
328 }
329
330 pcic->pcic_res_cfg_addr.name = "pcic_cfg_addr";
331 if ((pcic->pcic_config_space_addr =
332 ioremap(regs[2].phys_addr, regs[2].reg_size * 2)) == 0) {
333 prom_printf("PCIC: Error, cannot map "
334 "PCI Configuration Space Address.\n");
335 prom_halt();
336 }
337
338
339
340
341
342 pcic->pcic_res_cfg_data.name = "pcic_cfg_data";
343 if ((pcic->pcic_config_space_data =
344 ioremap(regs[3].phys_addr, regs[3].reg_size * 2)) == 0) {
345 prom_printf("PCIC: Error, cannot map "
346 "PCI Configuration Space Data.\n");
347 prom_halt();
348 }
349
350 pbm = &pcic->pbm;
351 pbm->prom_node = node;
352 prom_getstring(node, "name", namebuf, 63); namebuf[63] = 0;
353 strcpy(pbm->prom_name, namebuf);
354
355 {
356 extern volatile int t_nmi[4];
357 extern int pcic_nmi_trap_patch[4];
358
359 t_nmi[0] = pcic_nmi_trap_patch[0];
360 t_nmi[1] = pcic_nmi_trap_patch[1];
361 t_nmi[2] = pcic_nmi_trap_patch[2];
362 t_nmi[3] = pcic_nmi_trap_patch[3];
363 swift_flush_dcache();
364 pcic_regs = pcic->pcic_regs;
365 }
366
367 prom_getstring(prom_root_node, "name", namebuf, 63); namebuf[63] = 0;
368 {
369 struct pcic_sn2list *p;
370
371 for (p = pcic_known_sysnames; p->sysname != NULL; p++) {
372 if (strcmp(namebuf, p->sysname) == 0)
373 break;
374 }
375 pcic->pcic_imap = p->intmap;
376 pcic->pcic_imdim = p->mapdim;
377 }
378 if (pcic->pcic_imap == NULL) {
379
380
381
382 printk("PCIC: System %s is unknown, cannot route interrupts\n",
383 namebuf);
384 }
385
386 return 0;
387}
388
389static void __init pcic_pbm_scan_bus(struct linux_pcic *pcic)
390{
391 struct linux_pbm_info *pbm = &pcic->pbm;
392
393 pbm->pci_bus = pci_scan_bus(pbm->pci_first_busno, &pcic_ops, pbm);
394#if 0
395 pci_fill_in_pbm_cookies(pbm->pci_bus, pbm, pbm->prom_node);
396 pci_record_assignments(pbm, pbm->pci_bus);
397 pci_assign_unassigned(pbm, pbm->pci_bus);
398 pci_fixup_irq(pbm, pbm->pci_bus);
399#endif
400}
401
402
403
404
405static int __init pcic_init(void)
406{
407 struct linux_pcic *pcic;
408
409
410
411
412
413 if(!pcic0_up)
414 return 0;
415 pcic = &pcic0;
416
417
418
419
420 writeb(PCI_DVMA_CONTROL_IOTLB_DISABLE,
421 pcic->pcic_regs+PCI_DVMA_CONTROL);
422
423
424
425
426
427
428 writel(0xF0000000UL, pcic->pcic_regs+PCI_SIZE_0);
429 writel(0+PCI_BASE_ADDRESS_SPACE_MEMORY,
430 pcic->pcic_regs+PCI_BASE_ADDRESS_0);
431
432 pcic_pbm_scan_bus(pcic);
433
434 return 0;
435}
436
437int pcic_present(void)
438{
439 return pcic0_up;
440}
441
442static int pdev_to_pnode(struct linux_pbm_info *pbm, struct pci_dev *pdev)
443{
444 struct linux_prom_pci_registers regs[PROMREG_MAX];
445 int err;
446 phandle node = prom_getchild(pbm->prom_node);
447
448 while(node) {
449 err = prom_getproperty(node, "reg",
450 (char *)®s[0], sizeof(regs));
451 if(err != 0 && err != -1) {
452 unsigned long devfn = (regs[0].which_io >> 8) & 0xff;
453 if(devfn == pdev->devfn)
454 return node;
455 }
456 node = prom_getsibling(node);
457 }
458 return 0;
459}
460
461static inline struct pcidev_cookie *pci_devcookie_alloc(void)
462{
463 return kmalloc(sizeof(struct pcidev_cookie), GFP_ATOMIC);
464}
465
466static void pcic_map_pci_device(struct linux_pcic *pcic,
467 struct pci_dev *dev, int node)
468{
469 char namebuf[64];
470 unsigned long address;
471 unsigned long flags;
472 int j;
473
474 if (node == 0 || node == -1) {
475 strcpy(namebuf, "???");
476 } else {
477 prom_getstring(node, "name", namebuf, 63); namebuf[63] = 0;
478 }
479
480 for (j = 0; j < 6; j++) {
481 address = dev->resource[j].start;
482 if (address == 0) break;
483 flags = dev->resource[j].flags;
484 if ((flags & IORESOURCE_IO) != 0) {
485 if (address < 0x10000) {
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503 dev->resource[j].start =
504 pcic->pcic_io + address;
505 dev->resource[j].end = 1;
506 dev->resource[j].flags =
507 (flags & ~IORESOURCE_IO) | IORESOURCE_MEM;
508 } else {
509
510
511
512
513
514
515
516 printk("PCIC: Skipping I/O space at 0x%lx, "
517 "this will Oops if a driver attaches "
518 "device '%s' at %02x:%02x)\n", address,
519 namebuf, dev->bus->number, dev->devfn);
520 }
521 }
522 }
523}
524
525static void
526pcic_fill_irq(struct linux_pcic *pcic, struct pci_dev *dev, int node)
527{
528 struct pcic_ca2irq *p;
529 unsigned int real_irq;
530 int i, ivec;
531 char namebuf[64];
532
533 if (node == 0 || node == -1) {
534 strcpy(namebuf, "???");
535 } else {
536 prom_getstring(node, "name", namebuf, sizeof(namebuf));
537 }
538
539 if ((p = pcic->pcic_imap) == 0) {
540 dev->irq = 0;
541 return;
542 }
543 for (i = 0; i < pcic->pcic_imdim; i++) {
544 if (p->busno == dev->bus->number && p->devfn == dev->devfn)
545 break;
546 p++;
547 }
548 if (i >= pcic->pcic_imdim) {
549 printk("PCIC: device %s devfn %02x:%02x not found in %d\n",
550 namebuf, dev->bus->number, dev->devfn, pcic->pcic_imdim);
551 dev->irq = 0;
552 return;
553 }
554
555 i = p->pin;
556 if (i >= 0 && i < 4) {
557 ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_LO);
558 real_irq = ivec >> (i << 2) & 0xF;
559 } else if (i >= 4 && i < 8) {
560 ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_HI);
561 real_irq = ivec >> ((i-4) << 2) & 0xF;
562 } else {
563 printk("PCIC: BAD PIN %d\n", i); for (;;) {}
564 }
565
566
567
568
569
570 if (real_irq == 0 || p->force) {
571 if (p->irq == 0 || p->irq >= 15) {
572 printk("PCIC: BAD IRQ %d\n", p->irq); for (;;) {}
573 }
574 printk("PCIC: setting irq %d at pin %d for device %02x:%02x\n",
575 p->irq, p->pin, dev->bus->number, dev->devfn);
576 real_irq = p->irq;
577
578 i = p->pin;
579 if (i >= 4) {
580 ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_HI);
581 ivec &= ~(0xF << ((i - 4) << 2));
582 ivec |= p->irq << ((i - 4) << 2);
583 writew(ivec, pcic->pcic_regs+PCI_INT_SELECT_HI);
584 } else {
585 ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_LO);
586 ivec &= ~(0xF << (i << 2));
587 ivec |= p->irq << (i << 2);
588 writew(ivec, pcic->pcic_regs+PCI_INT_SELECT_LO);
589 }
590 }
591 dev->irq = pcic_build_device_irq(NULL, real_irq);
592}
593
594
595
596
597void pcibios_fixup_bus(struct pci_bus *bus)
598{
599 struct pci_dev *dev;
600 int i, has_io, has_mem;
601 unsigned int cmd;
602 struct linux_pcic *pcic;
603
604 int node;
605 struct pcidev_cookie *pcp;
606
607 if (!pcic0_up) {
608 printk("pcibios_fixup_bus: no PCIC\n");
609 return;
610 }
611 pcic = &pcic0;
612
613
614
615
616 if (bus->number != 0) {
617 printk("pcibios_fixup_bus: nonzero bus 0x%x\n", bus->number);
618 return;
619 }
620
621 list_for_each_entry(dev, &bus->devices, bus_list) {
622
623
624
625
626
627
628
629
630
631 has_io = has_mem = 0;
632 for(i=0; i<6; i++) {
633 unsigned long f = dev->resource[i].flags;
634 if (f & IORESOURCE_IO) {
635 has_io = 1;
636 } else if (f & IORESOURCE_MEM)
637 has_mem = 1;
638 }
639 pcic_read_config(dev->bus, dev->devfn, PCI_COMMAND, 2, &cmd);
640 if (has_io && !(cmd & PCI_COMMAND_IO)) {
641 printk("PCIC: Enabling I/O for device %02x:%02x\n",
642 dev->bus->number, dev->devfn);
643 cmd |= PCI_COMMAND_IO;
644 pcic_write_config(dev->bus, dev->devfn,
645 PCI_COMMAND, 2, cmd);
646 }
647 if (has_mem && !(cmd & PCI_COMMAND_MEMORY)) {
648 printk("PCIC: Enabling memory for device %02x:%02x\n",
649 dev->bus->number, dev->devfn);
650 cmd |= PCI_COMMAND_MEMORY;
651 pcic_write_config(dev->bus, dev->devfn,
652 PCI_COMMAND, 2, cmd);
653 }
654
655 node = pdev_to_pnode(&pcic->pbm, dev);
656 if(node == 0)
657 node = -1;
658
659
660 pcp = pci_devcookie_alloc();
661 pcp->pbm = &pcic->pbm;
662 pcp->prom_node = of_find_node_by_phandle(node);
663 dev->sysdata = pcp;
664
665
666 if ((dev->class>>16) != PCI_BASE_CLASS_BRIDGE)
667 pcic_map_pci_device(pcic, dev, node);
668
669 pcic_fill_irq(pcic, dev, node);
670 }
671}
672
673
674
675
676unsigned int
677pcic_pin_to_irq(unsigned int pin, const char *name)
678{
679 struct linux_pcic *pcic = &pcic0;
680 unsigned int irq;
681 unsigned int ivec;
682
683 if (pin < 4) {
684 ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_LO);
685 irq = ivec >> (pin << 2) & 0xF;
686 } else if (pin < 8) {
687 ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_HI);
688 irq = ivec >> ((pin-4) << 2) & 0xF;
689 } else {
690 printk("PCIC: BAD PIN %d FOR %s\n", pin, name);
691 for (;;) {}
692 }
693
694 return irq;
695}
696
697
698static volatile int pcic_timer_dummy;
699
700static void pcic_clear_clock_irq(void)
701{
702 pcic_timer_dummy = readl(pcic0.pcic_regs+PCI_SYS_LIMIT);
703}
704
705
706#define USECS_PER_JIFFY (1000000 / HZ)
707#define TICK_TIMER_LIMIT ((100 * 1000000 / 4) / HZ)
708
709static unsigned int pcic_cycles_offset(void)
710{
711 u32 value, count;
712
713 value = readl(pcic0.pcic_regs + PCI_SYS_COUNTER);
714 count = value & ~PCI_SYS_COUNTER_OVERFLOW;
715
716 if (value & PCI_SYS_COUNTER_OVERFLOW)
717 count += TICK_TIMER_LIMIT;
718
719
720
721
722 count = ((count / HZ) * USECS_PER_JIFFY) / (TICK_TIMER_LIMIT / HZ);
723
724
725 return count * 2;
726}
727
728void __init pci_time_init(void)
729{
730 struct linux_pcic *pcic = &pcic0;
731 unsigned long v;
732 int timer_irq, irq;
733 int err;
734
735#ifndef CONFIG_SMP
736
737
738
739
740 sparc_config.clock_rate = SBUS_CLOCK_RATE / HZ;
741 sparc_config.features |= FEAT_L10_CLOCKEVENT;
742#endif
743 sparc_config.features |= FEAT_L10_CLOCKSOURCE;
744 sparc_config.get_cycles_offset = pcic_cycles_offset;
745
746 writel (TICK_TIMER_LIMIT, pcic->pcic_regs+PCI_SYS_LIMIT);
747
748 v = readb(pcic->pcic_regs+PCI_COUNTER_IRQ);
749 timer_irq = PCI_COUNTER_IRQ_SYS(v);
750 writel (PCI_COUNTER_IRQ_SET(timer_irq, 0),
751 pcic->pcic_regs+PCI_COUNTER_IRQ);
752 irq = pcic_build_device_irq(NULL, timer_irq);
753 err = request_irq(irq, timer_interrupt,
754 IRQF_TIMER, "timer", NULL);
755 if (err) {
756 prom_printf("time_init: unable to attach IRQ%d\n", timer_irq);
757 prom_halt();
758 }
759 local_irq_enable();
760}
761
762
763#if 0
764static void watchdog_reset() {
765 writeb(0, pcic->pcic_regs+PCI_SYS_STATUS);
766}
767#endif
768
769resource_size_t pcibios_align_resource(void *data, const struct resource *res,
770 resource_size_t size, resource_size_t align)
771{
772 return res->start;
773}
774
775int pcibios_enable_device(struct pci_dev *pdev, int mask)
776{
777 return 0;
778}
779
780
781
782
783void pcic_nmi(unsigned int pend, struct pt_regs *regs)
784{
785
786 pend = flip_dword(pend);
787
788 if (!pcic_speculative || (pend & PCI_SYS_INT_PENDING_PIO) == 0) {
789
790
791
792
793 printk("Aiee, NMI pend 0x%x pc 0x%x spec %d, hanging\n",
794 pend, (int)regs->pc, pcic_speculative);
795 for (;;) { }
796 }
797 pcic_speculative = 0;
798 pcic_trapped = 1;
799 regs->pc = regs->npc;
800 regs->npc += 4;
801}
802
803static inline unsigned long get_irqmask(int irq_nr)
804{
805 return 1 << irq_nr;
806}
807
808static void pcic_mask_irq(struct irq_data *data)
809{
810 unsigned long mask, flags;
811
812 mask = (unsigned long)data->chip_data;
813 local_irq_save(flags);
814 writel(mask, pcic0.pcic_regs+PCI_SYS_INT_TARGET_MASK_SET);
815 local_irq_restore(flags);
816}
817
818static void pcic_unmask_irq(struct irq_data *data)
819{
820 unsigned long mask, flags;
821
822 mask = (unsigned long)data->chip_data;
823 local_irq_save(flags);
824 writel(mask, pcic0.pcic_regs+PCI_SYS_INT_TARGET_MASK_CLEAR);
825 local_irq_restore(flags);
826}
827
828static unsigned int pcic_startup_irq(struct irq_data *data)
829{
830 irq_link(data->irq);
831 pcic_unmask_irq(data);
832 return 0;
833}
834
835static struct irq_chip pcic_irq = {
836 .name = "pcic",
837 .irq_startup = pcic_startup_irq,
838 .irq_mask = pcic_mask_irq,
839 .irq_unmask = pcic_unmask_irq,
840};
841
842unsigned int pcic_build_device_irq(struct platform_device *op,
843 unsigned int real_irq)
844{
845 unsigned int irq;
846 unsigned long mask;
847
848 irq = 0;
849 mask = get_irqmask(real_irq);
850 if (mask == 0)
851 goto out;
852
853 irq = irq_alloc(real_irq, real_irq);
854 if (irq == 0)
855 goto out;
856
857 irq_set_chip_and_handler_name(irq, &pcic_irq,
858 handle_level_irq, "PCIC");
859 irq_set_chip_data(irq, (void *)mask);
860
861out:
862 return irq;
863}
864
865
866static void pcic_load_profile_irq(int cpu, unsigned int limit)
867{
868 printk("PCIC: unimplemented code: FILE=%s LINE=%d", __FILE__, __LINE__);
869}
870
871void __init sun4m_pci_init_IRQ(void)
872{
873 sparc_config.build_device_irq = pcic_build_device_irq;
874 sparc_config.clear_clock_irq = pcic_clear_clock_irq;
875 sparc_config.load_profile_irq = pcic_load_profile_irq;
876}
877
878
879
880
881
882
883
884
885
886
887void outsb(unsigned long addr, const void *src, unsigned long count)
888{
889 while (count) {
890 count -= 1;
891 outb(*(const char *)src, addr);
892 src += 1;
893
894 }
895}
896EXPORT_SYMBOL(outsb);
897
898void outsw(unsigned long addr, const void *src, unsigned long count)
899{
900 while (count) {
901 count -= 2;
902 outw(*(const short *)src, addr);
903 src += 2;
904
905 }
906}
907EXPORT_SYMBOL(outsw);
908
909void outsl(unsigned long addr, const void *src, unsigned long count)
910{
911 while (count) {
912 count -= 4;
913 outl(*(const long *)src, addr);
914 src += 4;
915
916 }
917}
918EXPORT_SYMBOL(outsl);
919
920void insb(unsigned long addr, void *dst, unsigned long count)
921{
922 while (count) {
923 count -= 1;
924 *(unsigned char *)dst = inb(addr);
925 dst += 1;
926
927 }
928}
929EXPORT_SYMBOL(insb);
930
931void insw(unsigned long addr, void *dst, unsigned long count)
932{
933 while (count) {
934 count -= 2;
935 *(unsigned short *)dst = inw(addr);
936 dst += 2;
937
938 }
939}
940EXPORT_SYMBOL(insw);
941
942void insl(unsigned long addr, void *dst, unsigned long count)
943{
944 while (count) {
945 count -= 4;
946
947
948
949 *(unsigned long *)dst = inl(addr);
950 dst += 4;
951
952 }
953}
954EXPORT_SYMBOL(insl);
955
956subsys_initcall(pcic_init);
957