2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2000, 2001 Keith M Wesolowski
7 * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org)
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/interrupt.h>
12 #include <linux/pci.h>
13 #include <linux/types.h>
14 #include <asm/ip32/mace.h>
15 #include <asm/ip32/ip32_ints.h>
20 * Handle errors from the bridge. This includes master and target aborts,
21 * various command and address errors, and the interrupt test. This gets
22 * registered on the bridge error irq. It's conceivable that some of these
23 * conditions warrant a panic. Anybody care to say which ones?
25 static irqreturn_t
macepci_error(int irq
, void *dev
)
28 unsigned int flags
= mace
->pci
.error
;
29 unsigned int addr
= mace
->pci
.error_addr
;
31 if (flags
& MACEPCI_ERROR_MEMORY_ADDR
)
33 else if (flags
& MACEPCI_ERROR_CONFIG_ADDR
)
38 if (flags
& MACEPCI_ERROR_MASTER_ABORT
) {
39 printk("MACEPCI: Master abort at 0x%08x (%c)\n", addr
, s
);
40 flags
&= ~MACEPCI_ERROR_MASTER_ABORT
;
42 if (flags
& MACEPCI_ERROR_TARGET_ABORT
) {
43 printk("MACEPCI: Target abort at 0x%08x (%c)\n", addr
, s
);
44 flags
&= ~MACEPCI_ERROR_TARGET_ABORT
;
46 if (flags
& MACEPCI_ERROR_DATA_PARITY_ERR
) {
47 printk("MACEPCI: Data parity error at 0x%08x (%c)\n", addr
, s
);
48 flags
&= ~MACEPCI_ERROR_DATA_PARITY_ERR
;
50 if (flags
& MACEPCI_ERROR_RETRY_ERR
) {
51 printk("MACEPCI: Retry error at 0x%08x (%c)\n", addr
, s
);
52 flags
&= ~MACEPCI_ERROR_RETRY_ERR
;
54 if (flags
& MACEPCI_ERROR_ILLEGAL_CMD
) {
55 printk("MACEPCI: Illegal command at 0x%08x (%c)\n", addr
, s
);
56 flags
&= ~MACEPCI_ERROR_ILLEGAL_CMD
;
58 if (flags
& MACEPCI_ERROR_SYSTEM_ERR
) {
59 printk("MACEPCI: System error at 0x%08x (%c)\n", addr
, s
);
60 flags
&= ~MACEPCI_ERROR_SYSTEM_ERR
;
62 if (flags
& MACEPCI_ERROR_PARITY_ERR
) {
63 printk("MACEPCI: Parity error at 0x%08x (%c)\n", addr
, s
);
64 flags
&= ~MACEPCI_ERROR_PARITY_ERR
;
66 if (flags
& MACEPCI_ERROR_OVERRUN
) {
67 printk("MACEPCI: Overrun error at 0x%08x (%c)\n", addr
, s
);
68 flags
&= ~MACEPCI_ERROR_OVERRUN
;
70 if (flags
& MACEPCI_ERROR_SIG_TABORT
) {
71 printk("MACEPCI: Signaled target abort (clearing)\n");
72 flags
&= ~MACEPCI_ERROR_SIG_TABORT
;
74 if (flags
& MACEPCI_ERROR_INTERRUPT_TEST
) {
75 printk("MACEPCI: Interrupt test triggered (clearing)\n");
76 flags
&= ~MACEPCI_ERROR_INTERRUPT_TEST
;
79 mace
->pci
.error
= flags
;
85 extern struct pci_ops mace_pci_ops
;
87 static struct resource mace_pci_mem_resource
= {
88 .name
= "SGI O2 PCI MEM",
89 .start
= MACEPCI_HI_MEMORY
,
91 .flags
= IORESOURCE_MEM
,
93 static struct resource mace_pci_io_resource
= {
94 .name
= "SGI O2 PCI IO",
95 .start
= 0x00000000UL
,
97 .flags
= IORESOURCE_IO
,
99 #define MACE_PCI_MEM_OFFSET 0x200000000
101 static struct resource mace_pci_mem_resource
= {
102 .name
= "SGI O2 PCI MEM",
103 .start
= MACEPCI_LOW_MEMORY
,
104 .end
= MACEPCI_LOW_MEMORY
+ 0x2000000 - 1,
105 .flags
= IORESOURCE_MEM
,
107 static struct resource mace_pci_io_resource
= {
108 .name
= "SGI O2 PCI IO",
111 .flags
= IORESOURCE_IO
,
113 #define MACE_PCI_MEM_OFFSET (MACEPCI_LOW_MEMORY - 0x80000000)
115 static struct pci_controller mace_pci_controller
= {
116 .pci_ops
= &mace_pci_ops
,
117 .mem_resource
= &mace_pci_mem_resource
,
118 .io_resource
= &mace_pci_io_resource
,
120 .mem_offset
= MACE_PCI_MEM_OFFSET
,
122 .io_map_base
= CKSEG1ADDR(MACEPCI_LOW_IO
),
125 static int __init
mace_init(void)
127 PCIBIOS_MIN_IO
= 0x1000;
129 /* Clear any outstanding errors and enable interrupts */
130 mace
->pci
.error_addr
= 0;
132 mace
->pci
.control
= 0xff008500;
134 printk("MACE PCI rev %d\n", mace
->pci
.rev
);
136 BUG_ON(request_irq(MACE_PCI_BRIDGE_IRQ
, macepci_error
, 0,
137 "MACE PCI error", NULL
));
139 /* extend memory resources */
140 iomem_resource
.end
= mace_pci_mem_resource
.end
;
141 ioport_resource
= mace_pci_io_resource
;
143 register_pci_controller(&mace_pci_controller
);
148 arch_initcall(mace_init
);