2 * pcic.c: MicroSPARC-IIep PCI controller support
4 * Copyright (C) 1998 V. Roganov and G. Raiko
6 * Code is derived from Ultra/PCI PSYCHO controller support, see that
9 * Support for diverse IIep based platforms by Pete Zaitcev.
10 * CP-1200 by Eric Brower.
13 #include <linux/kernel.h>
14 #include <linux/types.h>
15 #include <linux/init.h>
17 #include <linux/slab.h>
18 #include <linux/jiffies.h>
20 #include <asm/swift.h> /* for cache flushing. */
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>
30 #include <asm/oplib.h>
33 #include <asm/timer.h>
34 #include <asm/uaccess.h>
35 #include <asm/irq_regs.h>
40 * I studied different documents and many live PROMs both from 2.30
41 * family and 3.xx versions. I came to the amazing conclusion: there is
42 * absolutely no way to route interrupts in IIep systems relying on
43 * information which PROM presents. We must hardcode interrupt routing
44 * schematics. And this actually sucks. -- zaitcev 1999/05/12
46 * To find irq for a device we determine which routing map
47 * is in effect or, in other words, on which machine we are running.
48 * We use PROM name for this although other techniques may be used
49 * in special cases (Gleb reports a PROMless IIep based system).
50 * Once we know the map we take device configuration address and
51 * find PCIC pin number where INT line goes. Then we may either program
52 * preferred irq into the PCIC or supply the preexisting irq to the device.
55 unsigned char busno
; /* PCI bus number */
56 unsigned char devfn
; /* Configuration address */
57 unsigned char pin
; /* PCIC external interrupt pin */
58 unsigned char irq
; /* Preferred IRQ (mappable in PCIC) */
59 unsigned int force
; /* Enforce preferred IRQ */
64 struct pcic_ca2irq
*intmap
;
69 * JavaEngine-1 apparently has different versions.
71 * According to communications with Sun folks, for P2 build 501-4628-03:
72 * pin 0 - parallel, audio;
75 * pin 3 - PS/2 kbd and mouse.
77 * OEM manual (805-1486):
81 * pin 3: Not connected
82 * OEM manual says that 501-4628 & 501-4811 are the same thing,
83 * only the latter has NAND flash in place.
85 * So far unofficial Sun wins over the OEM manual. Poor OEMs...
87 static struct pcic_ca2irq pcic_i_je1a
[] = { /* 501-4811-03 */
88 { 0, 0x00, 2, 12, 0 }, /* EBus: hogs all */
89 { 0, 0x01, 1, 6, 1 }, /* Happy Meal */
90 { 0, 0x80, 0, 7, 0 }, /* IGA (unused) */
93 /* XXX JS-E entry is incomplete - PCI Slot 2 address (pin 7)? */
94 static struct pcic_ca2irq pcic_i_jse
[] = {
95 { 0, 0x00, 0, 13, 0 }, /* Ebus - serial and keyboard */
96 { 0, 0x01, 1, 6, 0 }, /* hme */
97 { 0, 0x08, 2, 9, 0 }, /* VGA - we hope not used :) */
98 { 0, 0x10, 6, 8, 0 }, /* PCI INTA# in Slot 1 */
99 { 0, 0x18, 7, 12, 0 }, /* PCI INTA# in Slot 2, shared w. RTC */
100 { 0, 0x38, 4, 9, 0 }, /* All ISA devices. Read 8259. */
101 { 0, 0x80, 5, 11, 0 }, /* EIDE */
102 /* {0,0x88, 0,0,0} - unknown device... PMU? Probably no interrupt. */
103 { 0, 0xA0, 4, 9, 0 }, /* USB */
105 * Some pins belong to non-PCI devices, we hardcode them in drivers.
106 * sun4m timers - irq 10, 14
107 * PC style RTC - pin 7, irq 4 ?
108 * Smart card, Parallel - pin 4 shared with USB, ISA
109 * audio - pin 3, irq 5 ?
113 /* SPARCengine-6 was the original release name of CP1200.
114 * The documentation differs between the two versions
116 static struct pcic_ca2irq pcic_i_se6
[] = {
117 { 0, 0x08, 0, 2, 0 }, /* SCSI */
118 { 0, 0x01, 1, 6, 0 }, /* HME */
119 { 0, 0x00, 3, 13, 0 }, /* EBus */
123 * Krups (courtesy of Varol Kaptan)
124 * No documentation available, but it was easy to guess
125 * because it was very similar to Espresso.
127 * pin 0 - kbd, mouse, serial;
129 * pin 2 - igs (we do not use it);
131 * pin 4,5,6 - unused;
132 * pin 7 - RTC (from P2 onwards as David B. says).
134 static struct pcic_ca2irq pcic_i_jk
[] = {
135 { 0, 0x00, 0, 13, 0 }, /* Ebus - serial and keyboard */
136 { 0, 0x01, 1, 6, 0 }, /* hme */
140 * Several entries in this list may point to the same routing map
141 * as several PROMs may be installed on the same physical board.
143 #define SN2L_INIT(name, map) \
144 { name, map, ARRAY_SIZE(map) }
146 static struct pcic_sn2list pcic_known_sysnames
[] = {
147 SN2L_INIT("SUNW,JavaEngine1", pcic_i_je1a
), /* JE1, PROM 2.32 */
148 SN2L_INIT("SUNW,JS-E", pcic_i_jse
), /* PROLL JavaStation-E */
149 SN2L_INIT("SUNW,SPARCengine-6", pcic_i_se6
), /* SPARCengine-6/CP-1200 */
150 SN2L_INIT("SUNW,JS-NC", pcic_i_jk
), /* PROLL JavaStation-NC */
151 SN2L_INIT("SUNW,JSIIep", pcic_i_jk
), /* OBP JavaStation-NC */
156 * Only one PCIC per IIep,
157 * and since we have no SMP IIep, only one per system.
160 static struct linux_pcic pcic0
;
162 void __iomem
*pcic_regs
;
163 volatile int pcic_speculative
;
164 volatile int pcic_trapped
;
166 static void pci_do_gettimeofday(struct timeval
*tv
);
167 static int pci_do_settimeofday(struct timespec
*tv
);
169 #define CONFIG_CMD(bus, device_fn, where) (0x80000000 | (((unsigned int)bus) << 16) | (((unsigned int)device_fn) << 8) | (where & ~3))
171 static int pcic_read_config_dword(unsigned int busno
, unsigned int devfn
,
172 int where
, u32
*value
)
174 struct linux_pcic
*pcic
;
179 local_irq_save(flags
);
180 #if 0 /* does not fail here */
181 pcic_speculative
= 1;
184 writel(CONFIG_CMD(busno
, devfn
, where
), pcic
->pcic_config_space_addr
);
185 #if 0 /* does not fail here */
188 local_irq_restore(flags
);
193 pcic_speculative
= 2;
195 *value
= readl(pcic
->pcic_config_space_data
+ (where
&4));
198 pcic_speculative
= 0;
199 local_irq_restore(flags
);
203 pcic_speculative
= 0;
204 local_irq_restore(flags
);
208 static int pcic_read_config(struct pci_bus
*bus
, unsigned int devfn
,
209 int where
, int size
, u32
*val
)
213 if (bus
->number
!= 0) return -EINVAL
;
216 pcic_read_config_dword(bus
->number
, devfn
, where
&~3, &v
);
217 *val
= 0xff & (v
>> (8*(where
& 3)));
220 if (where
&1) return -EINVAL
;
221 pcic_read_config_dword(bus
->number
, devfn
, where
&~3, &v
);
222 *val
= 0xffff & (v
>> (8*(where
& 3)));
225 if (where
&3) return -EINVAL
;
226 pcic_read_config_dword(bus
->number
, devfn
, where
&~3, val
);
232 static int pcic_write_config_dword(unsigned int busno
, unsigned int devfn
,
233 int where
, u32 value
)
235 struct linux_pcic
*pcic
;
240 local_irq_save(flags
);
241 writel(CONFIG_CMD(busno
, devfn
, where
), pcic
->pcic_config_space_addr
);
242 writel(value
, pcic
->pcic_config_space_data
+ (where
&4));
243 local_irq_restore(flags
);
247 static int pcic_write_config(struct pci_bus
*bus
, unsigned int devfn
,
248 int where
, int size
, u32 val
)
252 if (bus
->number
!= 0) return -EINVAL
;
255 pcic_read_config_dword(bus
->number
, devfn
, where
&~3, &v
);
256 v
= (v
& ~(0xff << (8*(where
&3)))) |
257 ((0xff&val
) << (8*(where
&3)));
258 return pcic_write_config_dword(bus
->number
, devfn
, where
&~3, v
);
260 if (where
&1) return -EINVAL
;
261 pcic_read_config_dword(bus
->number
, devfn
, where
&~3, &v
);
262 v
= (v
& ~(0xffff << (8*(where
&3)))) |
263 ((0xffff&val
) << (8*(where
&3)));
264 return pcic_write_config_dword(bus
->number
, devfn
, where
&~3, v
);
266 if (where
&3) return -EINVAL
;
267 return pcic_write_config_dword(bus
->number
, devfn
, where
, val
);
272 static struct pci_ops pcic_ops
= {
273 .read
= pcic_read_config
,
274 .write
= pcic_write_config
,
278 * On sparc64 pcibios_init() calls pci_controller_probe().
279 * We want PCIC probed little ahead so that interrupt controller
280 * would be operational.
282 int __init
pcic_probe(void)
284 struct linux_pcic
*pcic
;
285 struct linux_prom_registers regs
[PROMREG_MAX
];
286 struct linux_pbm_info
* pbm
;
292 prom_printf("PCIC: called twice!\n");
297 node
= prom_getchild (prom_root_node
);
298 node
= prom_searchsiblings (node
, "pci");
302 * Map in PCIC register set, config space, and IO base
304 err
= prom_getproperty(node
, "reg", (char*)regs
, sizeof(regs
));
305 if (err
== 0 || err
== -1) {
306 prom_printf("PCIC: Error, cannot get PCIC registers "
313 pcic
->pcic_res_regs
.name
= "pcic_registers";
314 pcic
->pcic_regs
= ioremap(regs
[0].phys_addr
, regs
[0].reg_size
);
315 if (!pcic
->pcic_regs
) {
316 prom_printf("PCIC: Error, cannot map PCIC registers.\n");
320 pcic
->pcic_res_io
.name
= "pcic_io";
321 if ((pcic
->pcic_io
= (unsigned long)
322 ioremap(regs
[1].phys_addr
, 0x10000)) == 0) {
323 prom_printf("PCIC: Error, cannot map PCIC IO Base.\n");
327 pcic
->pcic_res_cfg_addr
.name
= "pcic_cfg_addr";
328 if ((pcic
->pcic_config_space_addr
=
329 ioremap(regs
[2].phys_addr
, regs
[2].reg_size
* 2)) == 0) {
330 prom_printf("PCIC: Error, cannot map "
331 "PCI Configuration Space Address.\n");
336 * Docs say three least significant bits in address and data
337 * must be the same. Thus, we need adjust size of data.
339 pcic
->pcic_res_cfg_data
.name
= "pcic_cfg_data";
340 if ((pcic
->pcic_config_space_data
=
341 ioremap(regs
[3].phys_addr
, regs
[3].reg_size
* 2)) == 0) {
342 prom_printf("PCIC: Error, cannot map "
343 "PCI Configuration Space Data.\n");
348 pbm
->prom_node
= node
;
349 prom_getstring(node
, "name", namebuf
, 63); namebuf
[63] = 0;
350 strcpy(pbm
->prom_name
, namebuf
);
353 extern volatile int t_nmi
[1];
354 extern int pcic_nmi_trap_patch
[1];
356 t_nmi
[0] = pcic_nmi_trap_patch
[0];
357 t_nmi
[1] = pcic_nmi_trap_patch
[1];
358 t_nmi
[2] = pcic_nmi_trap_patch
[2];
359 t_nmi
[3] = pcic_nmi_trap_patch
[3];
360 swift_flush_dcache();
361 pcic_regs
= pcic
->pcic_regs
;
364 prom_getstring(prom_root_node
, "name", namebuf
, 63); namebuf
[63] = 0;
366 struct pcic_sn2list
*p
;
368 for (p
= pcic_known_sysnames
; p
->sysname
!= NULL
; p
++) {
369 if (strcmp(namebuf
, p
->sysname
) == 0)
372 pcic
->pcic_imap
= p
->intmap
;
373 pcic
->pcic_imdim
= p
->mapdim
;
375 if (pcic
->pcic_imap
== NULL
) {
377 * We do not panic here for the sake of embedded systems.
379 printk("PCIC: System %s is unknown, cannot route interrupts\n",
386 static void __init
pcic_pbm_scan_bus(struct linux_pcic
*pcic
)
388 struct linux_pbm_info
*pbm
= &pcic
->pbm
;
390 pbm
->pci_bus
= pci_scan_bus(pbm
->pci_first_busno
, &pcic_ops
, pbm
);
391 #if 0 /* deadwood transplanted from sparc64 */
392 pci_fill_in_pbm_cookies(pbm
->pci_bus
, pbm
, pbm
->prom_node
);
393 pci_record_assignments(pbm
, pbm
->pci_bus
);
394 pci_assign_unassigned(pbm
, pbm
->pci_bus
);
395 pci_fixup_irq(pbm
, pbm
->pci_bus
);
400 * Main entry point from the PCI subsystem.
402 static int __init
pcic_init(void)
404 struct linux_pcic
*pcic
;
407 * PCIC should be initialized at start of the timer.
408 * So, here we report the presence of PCIC and do some magic passes.
415 * Switch off IOTLB translation.
417 writeb(PCI_DVMA_CONTROL_IOTLB_DISABLE
,
418 pcic
->pcic_regs
+PCI_DVMA_CONTROL
);
421 * Increase mapped size for PCI memory space (DMA access).
422 * Should be done in that order (size first, address second).
423 * Why we couldn't set up 4GB and forget about it? XXX
425 writel(0xF0000000UL
, pcic
->pcic_regs
+PCI_SIZE_0
);
426 writel(0+PCI_BASE_ADDRESS_SPACE_MEMORY
,
427 pcic
->pcic_regs
+PCI_BASE_ADDRESS_0
);
429 pcic_pbm_scan_bus(pcic
);
434 int pcic_present(void)
439 static int __init
pdev_to_pnode(struct linux_pbm_info
*pbm
,
440 struct pci_dev
*pdev
)
442 struct linux_prom_pci_registers regs
[PROMREG_MAX
];
444 int node
= prom_getchild(pbm
->prom_node
);
447 err
= prom_getproperty(node
, "reg",
448 (char *)®s
[0], sizeof(regs
));
449 if(err
!= 0 && err
!= -1) {
450 unsigned long devfn
= (regs
[0].which_io
>> 8) & 0xff;
451 if(devfn
== pdev
->devfn
)
454 node
= prom_getsibling(node
);
459 static inline struct pcidev_cookie
*pci_devcookie_alloc(void)
461 return kmalloc(sizeof(struct pcidev_cookie
), GFP_ATOMIC
);
464 static void pcic_map_pci_device(struct linux_pcic
*pcic
,
465 struct pci_dev
*dev
, int node
)
468 unsigned long address
;
472 if (node
== 0 || node
== -1) {
473 strcpy(namebuf
, "???");
475 prom_getstring(node
, "name", namebuf
, 63); namebuf
[63] = 0;
478 for (j
= 0; j
< 6; j
++) {
479 address
= dev
->resource
[j
].start
;
480 if (address
== 0) break; /* are sequential */
481 flags
= dev
->resource
[j
].flags
;
482 if ((flags
& IORESOURCE_IO
) != 0) {
483 if (address
< 0x10000) {
485 * A device responds to I/O cycles on PCI.
486 * We generate these cycles with memory
487 * access into the fixed map (phys 0x30000000).
489 * Since a device driver does not want to
490 * do ioremap() before accessing PC-style I/O,
491 * we supply virtual, ready to access address.
493 * Note that request_region()
494 * works for these devices.
496 * XXX Neat trick, but it's a *bad* idea
497 * to shit into regions like that.
498 * What if we want to allocate one more
499 * PCI base address...
501 dev
->resource
[j
].start
=
502 pcic
->pcic_io
+ address
;
503 dev
->resource
[j
].end
= 1; /* XXX */
504 dev
->resource
[j
].flags
=
505 (flags
& ~IORESOURCE_IO
) | IORESOURCE_MEM
;
508 * OOPS... PCI Spec allows this. Sun does
509 * not have any devices getting above 64K
510 * so it must be user with a weird I/O
511 * board in a PCI slot. We must remap it
512 * under 64K but it is not done yet. XXX
514 printk("PCIC: Skipping I/O space at 0x%lx, "
515 "this will Oops if a driver attaches "
516 "device '%s' at %02x:%02x)\n", address
,
517 namebuf
, dev
->bus
->number
, dev
->devfn
);
524 pcic_fill_irq(struct linux_pcic
*pcic
, struct pci_dev
*dev
, int node
)
526 struct pcic_ca2irq
*p
;
530 if (node
== 0 || node
== -1) {
531 strcpy(namebuf
, "???");
533 prom_getstring(node
, "name", namebuf
, sizeof(namebuf
));
536 if ((p
= pcic
->pcic_imap
) == 0) {
540 for (i
= 0; i
< pcic
->pcic_imdim
; i
++) {
541 if (p
->busno
== dev
->bus
->number
&& p
->devfn
== dev
->devfn
)
545 if (i
>= pcic
->pcic_imdim
) {
546 printk("PCIC: device %s devfn %02x:%02x not found in %d\n",
547 namebuf
, dev
->bus
->number
, dev
->devfn
, pcic
->pcic_imdim
);
553 if (i
>= 0 && i
< 4) {
554 ivec
= readw(pcic
->pcic_regs
+PCI_INT_SELECT_LO
);
555 dev
->irq
= ivec
>> (i
<< 2) & 0xF;
556 } else if (i
>= 4 && i
< 8) {
557 ivec
= readw(pcic
->pcic_regs
+PCI_INT_SELECT_HI
);
558 dev
->irq
= ivec
>> ((i
-4) << 2) & 0xF;
559 } else { /* Corrupted map */
560 printk("PCIC: BAD PIN %d\n", i
); for (;;) {}
562 /* P3 */ /* printk("PCIC: device %s pin %d ivec 0x%x irq %x\n", namebuf, i, ivec, dev->irq); */
565 * dev->irq=0 means PROM did not bother to program the upper
566 * half of PCIC. This happens on JS-E with PROM 3.11, for instance.
568 if (dev
->irq
== 0 || p
->force
) {
569 if (p
->irq
== 0 || p
->irq
>= 15) { /* Corrupted map */
570 printk("PCIC: BAD IRQ %d\n", p
->irq
); for (;;) {}
572 printk("PCIC: setting irq %d at pin %d for device %02x:%02x\n",
573 p
->irq
, p
->pin
, dev
->bus
->number
, dev
->devfn
);
578 ivec
= readw(pcic
->pcic_regs
+PCI_INT_SELECT_HI
);
579 ivec
&= ~(0xF << ((i
- 4) << 2));
580 ivec
|= p
->irq
<< ((i
- 4) << 2);
581 writew(ivec
, pcic
->pcic_regs
+PCI_INT_SELECT_HI
);
583 ivec
= readw(pcic
->pcic_regs
+PCI_INT_SELECT_LO
);
584 ivec
&= ~(0xF << (i
<< 2));
585 ivec
|= p
->irq
<< (i
<< 2);
586 writew(ivec
, pcic
->pcic_regs
+PCI_INT_SELECT_LO
);
594 * Normally called from {do_}pci_scan_bus...
596 void __devinit
pcibios_fixup_bus(struct pci_bus
*bus
)
599 int i
, has_io
, has_mem
;
601 struct linux_pcic
*pcic
;
602 /* struct linux_pbm_info* pbm = &pcic->pbm; */
604 struct pcidev_cookie
*pcp
;
607 printk("pcibios_fixup_bus: no PCIC\n");
613 * Next crud is an equivalent of pbm = pcic_bus_to_pbm(bus);
615 if (bus
->number
!= 0) {
616 printk("pcibios_fixup_bus: nonzero bus 0x%x\n", bus
->number
);
620 list_for_each_entry(dev
, &bus
->devices
, bus_list
) {
623 * Comment from i386 branch:
624 * There are buggy BIOSes that forget to enable I/O and memory
625 * access to PCI devices. We try to fix this, but we need to
626 * be sure that the BIOS didn't forget to assign an address
627 * to the device. [mj]
628 * OBP is a case of such BIOS :-)
630 has_io
= has_mem
= 0;
632 unsigned long f
= dev
->resource
[i
].flags
;
633 if (f
& IORESOURCE_IO
) {
635 } else if (f
& IORESOURCE_MEM
)
638 pcic_read_config(dev
->bus
, dev
->devfn
, PCI_COMMAND
, 2, &cmd
);
639 if (has_io
&& !(cmd
& PCI_COMMAND_IO
)) {
640 printk("PCIC: Enabling I/O for device %02x:%02x\n",
641 dev
->bus
->number
, dev
->devfn
);
642 cmd
|= PCI_COMMAND_IO
;
643 pcic_write_config(dev
->bus
, dev
->devfn
,
644 PCI_COMMAND
, 2, cmd
);
646 if (has_mem
&& !(cmd
& PCI_COMMAND_MEMORY
)) {
647 printk("PCIC: Enabling memory for device %02x:%02x\n",
648 dev
->bus
->number
, dev
->devfn
);
649 cmd
|= PCI_COMMAND_MEMORY
;
650 pcic_write_config(dev
->bus
, dev
->devfn
,
651 PCI_COMMAND
, 2, cmd
);
654 node
= pdev_to_pnode(&pcic
->pbm
, dev
);
659 pcp
= pci_devcookie_alloc();
660 pcp
->pbm
= &pcic
->pbm
;
661 pcp
->prom_node
= of_find_node_by_phandle(node
);
664 /* fixing I/O to look like memory */
665 if ((dev
->class>>16) != PCI_BASE_CLASS_BRIDGE
)
666 pcic_map_pci_device(pcic
, dev
, node
);
668 pcic_fill_irq(pcic
, dev
, node
);
673 * pcic_pin_to_irq() is exported to bus probing code
676 pcic_pin_to_irq(unsigned int pin
, const char *name
)
678 struct linux_pcic
*pcic
= &pcic0
;
683 ivec
= readw(pcic
->pcic_regs
+PCI_INT_SELECT_LO
);
684 irq
= ivec
>> (pin
<< 2) & 0xF;
685 } else if (pin
< 8) {
686 ivec
= readw(pcic
->pcic_regs
+PCI_INT_SELECT_HI
);
687 irq
= ivec
>> ((pin
-4) << 2) & 0xF;
688 } else { /* Corrupted map */
689 printk("PCIC: BAD PIN %d FOR %s\n", pin
, name
);
690 for (;;) {} /* XXX Cannot panic properly in case of PROLL */
692 /* P3 */ /* printk("PCIC: dev %s pin %d ivec 0x%x irq %x\n", name, pin, ivec, irq); */
696 /* Makes compiler happy */
697 static volatile int pcic_timer_dummy
;
699 static void pcic_clear_clock_irq(void)
701 pcic_timer_dummy
= readl(pcic0
.pcic_regs
+PCI_SYS_LIMIT
);
704 static irqreturn_t
pcic_timer_handler (int irq
, void *h
)
706 write_seqlock(&xtime_lock
); /* Dummy, to show that we remember */
707 pcic_clear_clock_irq();
709 write_sequnlock(&xtime_lock
);
711 update_process_times(user_mode(get_irq_regs()));
716 #define USECS_PER_JIFFY 10000 /* We have 100HZ "standard" timer for sparc */
717 #define TICK_TIMER_LIMIT ((100*1000000/4)/100)
719 void __init
pci_time_init(void)
721 struct linux_pcic
*pcic
= &pcic0
;
725 /* A hack until do_gettimeofday prototype is moved to arch specific headers
726 and btfixupped. Patch do_gettimeofday with ba pci_do_gettimeofday; nop */
727 ((unsigned int *)do_gettimeofday
)[0] =
728 0x10800000 | ((((unsigned long)pci_do_gettimeofday
-
729 (unsigned long)do_gettimeofday
) >> 2) & 0x003fffff);
730 ((unsigned int *)do_gettimeofday
)[1] = 0x01000000;
731 BTFIXUPSET_CALL(bus_do_settimeofday
, pci_do_settimeofday
, BTFIXUPCALL_NORM
);
734 writel (TICK_TIMER_LIMIT
, pcic
->pcic_regs
+PCI_SYS_LIMIT
);
735 /* PROM should set appropriate irq */
736 v
= readb(pcic
->pcic_regs
+PCI_COUNTER_IRQ
);
737 timer_irq
= PCI_COUNTER_IRQ_SYS(v
);
738 writel (PCI_COUNTER_IRQ_SET(timer_irq
, 0),
739 pcic
->pcic_regs
+PCI_COUNTER_IRQ
);
740 irq
= request_irq(timer_irq
, pcic_timer_handler
,
741 (IRQF_DISABLED
| SA_STATIC_ALLOC
), "timer", NULL
);
743 prom_printf("time_init: unable to attach IRQ%d\n", timer_irq
);
749 static inline unsigned long do_gettimeoffset(void)
752 * We divide all by 100
753 * to have microsecond resolution and to avoid overflow
755 unsigned long count
=
756 readl(pcic0
.pcic_regs
+PCI_SYS_COUNTER
) & ~PCI_SYS_COUNTER_OVERFLOW
;
757 count
= ((count
/100)*USECS_PER_JIFFY
) / (TICK_TIMER_LIMIT
/100);
761 static void pci_do_gettimeofday(struct timeval
*tv
)
765 unsigned long usec
, sec
;
766 unsigned long max_ntp_tick
= tick_usec
- tickadj
;
769 seq
= read_seqbegin_irqsave(&xtime_lock
, flags
);
770 usec
= do_gettimeoffset();
773 * If time_adjust is negative then NTP is slowing the clock
774 * so make sure not to go into next possible interval.
775 * Better to lose some accuracy than have time go backwards..
777 if (unlikely(time_adjust
< 0))
778 usec
= min(usec
, max_ntp_tick
);
781 usec
+= (xtime
.tv_nsec
/ 1000);
782 } while (read_seqretry_irqrestore(&xtime_lock
, seq
, flags
));
784 while (usec
>= 1000000) {
793 static int pci_do_settimeofday(struct timespec
*tv
)
795 if ((unsigned long)tv
->tv_nsec
>= NSEC_PER_SEC
)
799 * This is revolting. We need to set "xtime" correctly. However, the
800 * value in this location is the value at the most recent update of
801 * wall time. Discover what correction gettimeofday() would have
802 * made, and then undo it!
804 tv
->tv_nsec
-= 1000 * do_gettimeoffset();
805 while (tv
->tv_nsec
< 0) {
806 tv
->tv_nsec
+= NSEC_PER_SEC
;
810 wall_to_monotonic
.tv_sec
+= xtime
.tv_sec
- tv
->tv_sec
;
811 wall_to_monotonic
.tv_nsec
+= xtime
.tv_nsec
- tv
->tv_nsec
;
813 if (wall_to_monotonic
.tv_nsec
> NSEC_PER_SEC
) {
814 wall_to_monotonic
.tv_nsec
-= NSEC_PER_SEC
;
815 wall_to_monotonic
.tv_sec
++;
817 if (wall_to_monotonic
.tv_nsec
< 0) {
818 wall_to_monotonic
.tv_nsec
+= NSEC_PER_SEC
;
819 wall_to_monotonic
.tv_sec
--;
822 xtime
.tv_sec
= tv
->tv_sec
;
823 xtime
.tv_nsec
= tv
->tv_nsec
;
829 static void watchdog_reset() {
830 writeb(0, pcic
->pcic_regs
+PCI_SYS_STATUS
);
835 * Other archs parse arguments here.
837 char * __devinit
pcibios_setup(char *str
)
842 void pcibios_align_resource(void *data
, struct resource
*res
,
843 resource_size_t size
, resource_size_t align
)
847 int pcibios_enable_device(struct pci_dev
*pdev
, int mask
)
855 void pcic_nmi(unsigned int pend
, struct pt_regs
*regs
)
858 pend
= flip_dword(pend
);
860 if (!pcic_speculative
|| (pend
& PCI_SYS_INT_PENDING_PIO
) == 0) {
862 * XXX On CP-1200 PCI #SERR may happen, we do not know
863 * what to do about it yet.
865 printk("Aiee, NMI pend 0x%x pc 0x%x spec %d, hanging\n",
866 pend
, (int)regs
->pc
, pcic_speculative
);
869 pcic_speculative
= 0;
871 regs
->pc
= regs
->npc
;
875 static inline unsigned long get_irqmask(int irq_nr
)
880 static void pcic_disable_irq(unsigned int irq_nr
)
882 unsigned long mask
, flags
;
884 mask
= get_irqmask(irq_nr
);
885 local_irq_save(flags
);
886 writel(mask
, pcic0
.pcic_regs
+PCI_SYS_INT_TARGET_MASK_SET
);
887 local_irq_restore(flags
);
890 static void pcic_enable_irq(unsigned int irq_nr
)
892 unsigned long mask
, flags
;
894 mask
= get_irqmask(irq_nr
);
895 local_irq_save(flags
);
896 writel(mask
, pcic0
.pcic_regs
+PCI_SYS_INT_TARGET_MASK_CLEAR
);
897 local_irq_restore(flags
);
900 static void pcic_load_profile_irq(int cpu
, unsigned int limit
)
902 printk("PCIC: unimplemented code: FILE=%s LINE=%d", __FILE__
, __LINE__
);
905 /* We assume the caller has disabled local interrupts when these are called,
906 * or else very bizarre behavior will result.
908 static void pcic_disable_pil_irq(unsigned int pil
)
910 writel(get_irqmask(pil
), pcic0
.pcic_regs
+PCI_SYS_INT_TARGET_MASK_SET
);
913 static void pcic_enable_pil_irq(unsigned int pil
)
915 writel(get_irqmask(pil
), pcic0
.pcic_regs
+PCI_SYS_INT_TARGET_MASK_CLEAR
);
918 void __init
sun4m_pci_init_IRQ(void)
920 BTFIXUPSET_CALL(enable_irq
, pcic_enable_irq
, BTFIXUPCALL_NORM
);
921 BTFIXUPSET_CALL(disable_irq
, pcic_disable_irq
, BTFIXUPCALL_NORM
);
922 BTFIXUPSET_CALL(enable_pil_irq
, pcic_enable_pil_irq
, BTFIXUPCALL_NORM
);
923 BTFIXUPSET_CALL(disable_pil_irq
, pcic_disable_pil_irq
, BTFIXUPCALL_NORM
);
924 BTFIXUPSET_CALL(clear_clock_irq
, pcic_clear_clock_irq
, BTFIXUPCALL_NORM
);
925 BTFIXUPSET_CALL(load_profile_irq
, pcic_load_profile_irq
, BTFIXUPCALL_NORM
);
928 int pcibios_assign_resource(struct pci_dev
*pdev
, int resource
)
933 struct device_node
*pci_device_to_OF_node(struct pci_dev
*pdev
)
935 struct pcidev_cookie
*pc
= pdev
->sysdata
;
937 return pc
->prom_node
;
939 EXPORT_SYMBOL(pci_device_to_OF_node
);
942 * This probably belongs here rather than ioport.c because
943 * we do not want this crud linked into SBus kernels.
944 * Also, think for a moment about likes of floppy.c that
945 * include architecture specific parts. They may want to redefine ins/outs.
947 * We do not use horrible macros here because we want to
948 * advance pointer by sizeof(size).
950 void outsb(unsigned long addr
, const void *src
, unsigned long count
)
954 outb(*(const char *)src
, addr
);
960 void outsw(unsigned long addr
, const void *src
, unsigned long count
)
964 outw(*(const short *)src
, addr
);
970 void outsl(unsigned long addr
, const void *src
, unsigned long count
)
974 outl(*(const long *)src
, addr
);
980 void insb(unsigned long addr
, void *dst
, unsigned long count
)
984 *(unsigned char *)dst
= inb(addr
);
990 void insw(unsigned long addr
, void *dst
, unsigned long count
)
994 *(unsigned short *)dst
= inw(addr
);
1000 void insl(unsigned long addr
, void *dst
, unsigned long count
)
1005 * XXX I am sure we are in for an unaligned trap here.
1007 *(unsigned long *)dst
= inl(addr
);
1013 subsys_initcall(pcic_init
);