blob: 897334680657f53e207031c52573bb7e81eb08d7 [file] [log] [blame]
David S. Miller9fd8b642007-03-08 21:55:49 -08001/* pci_psycho.c: PSYCHO/U2P specific PCI controller support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Miller9fd8b642007-03-08 21:55:49 -08003 * Copyright (C) 1997, 1998, 1999, 2007 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1998, 1999 Eddie C. Dost (ecd@skynet.be)
5 * Copyright (C) 1999 Jakub Jelinek (jakub@redhat.com)
6 */
7
8#include <linux/kernel.h>
9#include <linux/types.h>
10#include <linux/pci.h>
11#include <linux/init.h>
12#include <linux/slab.h>
13#include <linux/interrupt.h>
Stephen Rothwell764f2572008-08-07 15:33:36 -070014#include <linux/of_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/iommu.h>
17#include <asm/irq.h>
18#include <asm/starfire.h>
David S. Millere87dc352006-06-21 18:18:47 -070019#include <asm/prom.h>
David S. Miller87395fc2008-09-10 04:13:10 -070020#include <asm/upa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "pci_impl.h"
23#include "iommu_common.h"
David S. Millera21cff32008-09-10 03:07:03 -070024#include "psycho_common.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
David S. Millerb20bfe42008-08-30 03:13:20 -070026#define DRIVER_NAME "psycho"
27#define PFX DRIVER_NAME ": "
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/* Misc. PSYCHO PCI controller register offsets and definitions. */
30#define PSYCHO_CONTROL 0x0010UL
31#define PSYCHO_CONTROL_IMPL 0xf000000000000000UL /* Implementation of this PSYCHO*/
32#define PSYCHO_CONTROL_VER 0x0f00000000000000UL /* Version of this PSYCHO */
33#define PSYCHO_CONTROL_MID 0x00f8000000000000UL /* UPA Module ID of PSYCHO */
34#define PSYCHO_CONTROL_IGN 0x0007c00000000000UL /* Interrupt Group Number */
35#define PSYCHO_CONTROL_RESV 0x00003ffffffffff0UL /* Reserved */
36#define PSYCHO_CONTROL_APCKEN 0x0000000000000008UL /* Address Parity Check Enable */
37#define PSYCHO_CONTROL_APERR 0x0000000000000004UL /* Incoming System Addr Parerr */
38#define PSYCHO_CONTROL_IAP 0x0000000000000002UL /* Invert UPA Parity */
39#define PSYCHO_CONTROL_MODE 0x0000000000000001UL /* PSYCHO clock mode */
40#define PSYCHO_PCIA_CTRL 0x2000UL
41#define PSYCHO_PCIB_CTRL 0x4000UL
42#define PSYCHO_PCICTRL_RESV1 0xfffffff000000000UL /* Reserved */
43#define PSYCHO_PCICTRL_SBH_ERR 0x0000000800000000UL /* Streaming byte hole error */
44#define PSYCHO_PCICTRL_SERR 0x0000000400000000UL /* SERR signal asserted */
45#define PSYCHO_PCICTRL_SPEED 0x0000000200000000UL /* PCI speed (1 is U2P clock) */
46#define PSYCHO_PCICTRL_RESV2 0x00000001ffc00000UL /* Reserved */
47#define PSYCHO_PCICTRL_ARB_PARK 0x0000000000200000UL /* PCI arbitration parking */
48#define PSYCHO_PCICTRL_RESV3 0x00000000001ff800UL /* Reserved */
49#define PSYCHO_PCICTRL_SBH_INT 0x0000000000000400UL /* Streaming byte hole int enab */
50#define PSYCHO_PCICTRL_WEN 0x0000000000000200UL /* Power Mgmt Wake Enable */
51#define PSYCHO_PCICTRL_EEN 0x0000000000000100UL /* PCI Error Interrupt Enable */
52#define PSYCHO_PCICTRL_RESV4 0x00000000000000c0UL /* Reserved */
53#define PSYCHO_PCICTRL_AEN 0x000000000000003fUL /* PCI DVMA Arbitration Enable */
54
55/* U2P Programmer's Manual, page 13-55, configuration space
56 * address format:
57 *
58 * 32 24 23 16 15 11 10 8 7 2 1 0
59 * ---------------------------------------------------------
60 * |0 0 0 0 0 0 0 0 1| bus | device | function | reg | 0 0 |
61 * ---------------------------------------------------------
62 */
63#define PSYCHO_CONFIG_BASE(PBM) \
64 ((PBM)->config_space | (1UL << 24))
65#define PSYCHO_CONFIG_ENCODE(BUS, DEVFN, REG) \
66 (((unsigned long)(BUS) << 16) | \
67 ((unsigned long)(DEVFN) << 8) | \
68 ((unsigned long)(REG)))
69
70static void *psycho_pci_config_mkaddr(struct pci_pbm_info *pbm,
71 unsigned char bus,
72 unsigned int devfn,
73 int where)
74{
75 if (!pbm)
76 return NULL;
77 return (void *)
78 (PSYCHO_CONFIG_BASE(pbm) |
79 PSYCHO_CONFIG_ENCODE(bus, devfn, where));
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* PSYCHO error handling support. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/* Helper function of IOMMU error checking, which checks out
85 * the state of the streaming buffers. The IOMMU lock is
86 * held when this is called.
87 *
88 * For the PCI error case we know which PBM (and thus which
89 * streaming buffer) caused the error, but for the uncorrectable
90 * error case we do not. So we always check both streaming caches.
91 */
92#define PSYCHO_STRBUF_CONTROL_A 0x2800UL
93#define PSYCHO_STRBUF_CONTROL_B 0x4800UL
94#define PSYCHO_STRBUF_CTRL_LPTR 0x00000000000000f0UL /* LRU Lock Pointer */
95#define PSYCHO_STRBUF_CTRL_LENAB 0x0000000000000008UL /* LRU Lock Enable */
96#define PSYCHO_STRBUF_CTRL_RRDIS 0x0000000000000004UL /* Rerun Disable */
97#define PSYCHO_STRBUF_CTRL_DENAB 0x0000000000000002UL /* Diagnostic Mode Enable */
98#define PSYCHO_STRBUF_CTRL_ENAB 0x0000000000000001UL /* Streaming Buffer Enable */
99#define PSYCHO_STRBUF_FLUSH_A 0x2808UL
100#define PSYCHO_STRBUF_FLUSH_B 0x4808UL
101#define PSYCHO_STRBUF_FSYNC_A 0x2810UL
102#define PSYCHO_STRBUF_FSYNC_B 0x4810UL
103#define PSYCHO_STC_DATA_A 0xb000UL
104#define PSYCHO_STC_DATA_B 0xc000UL
105#define PSYCHO_STC_ERR_A 0xb400UL
106#define PSYCHO_STC_ERR_B 0xc400UL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define PSYCHO_STC_TAG_A 0xb800UL
108#define PSYCHO_STC_TAG_B 0xc800UL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define PSYCHO_STC_LINE_A 0xb900UL
110#define PSYCHO_STC_LINE_B 0xc900UL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* When an Uncorrectable Error or a PCI Error happens, we
113 * interrogate the IOMMU state to see if it is the cause.
114 */
115#define PSYCHO_IOMMU_CONTROL 0x0200UL
116#define PSYCHO_IOMMU_CTRL_RESV 0xfffffffff9000000UL /* Reserved */
117#define PSYCHO_IOMMU_CTRL_XLTESTAT 0x0000000006000000UL /* Translation Error Status */
118#define PSYCHO_IOMMU_CTRL_XLTEERR 0x0000000001000000UL /* Translation Error encountered */
119#define PSYCHO_IOMMU_CTRL_LCKEN 0x0000000000800000UL /* Enable translation locking */
120#define PSYCHO_IOMMU_CTRL_LCKPTR 0x0000000000780000UL /* Translation lock pointer */
121#define PSYCHO_IOMMU_CTRL_TSBSZ 0x0000000000070000UL /* TSB Size */
122#define PSYCHO_IOMMU_TSBSZ_1K 0x0000000000000000UL /* TSB Table 1024 8-byte entries */
123#define PSYCHO_IOMMU_TSBSZ_2K 0x0000000000010000UL /* TSB Table 2048 8-byte entries */
124#define PSYCHO_IOMMU_TSBSZ_4K 0x0000000000020000UL /* TSB Table 4096 8-byte entries */
125#define PSYCHO_IOMMU_TSBSZ_8K 0x0000000000030000UL /* TSB Table 8192 8-byte entries */
126#define PSYCHO_IOMMU_TSBSZ_16K 0x0000000000040000UL /* TSB Table 16k 8-byte entries */
127#define PSYCHO_IOMMU_TSBSZ_32K 0x0000000000050000UL /* TSB Table 32k 8-byte entries */
128#define PSYCHO_IOMMU_TSBSZ_64K 0x0000000000060000UL /* TSB Table 64k 8-byte entries */
129#define PSYCHO_IOMMU_TSBSZ_128K 0x0000000000070000UL /* TSB Table 128k 8-byte entries */
130#define PSYCHO_IOMMU_CTRL_RESV2 0x000000000000fff8UL /* Reserved */
131#define PSYCHO_IOMMU_CTRL_TBWSZ 0x0000000000000004UL /* Assumed page size, 0=8k 1=64k */
132#define PSYCHO_IOMMU_CTRL_DENAB 0x0000000000000002UL /* Diagnostic mode enable */
133#define PSYCHO_IOMMU_CTRL_ENAB 0x0000000000000001UL /* IOMMU Enable */
134#define PSYCHO_IOMMU_TSBBASE 0x0208UL
135#define PSYCHO_IOMMU_FLUSH 0x0210UL
136#define PSYCHO_IOMMU_TAG 0xa580UL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define PSYCHO_IOMMU_DATA 0xa600UL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139/* Uncorrectable Errors. Cause of the error and the address are
140 * recorded in the UE_AFSR and UE_AFAR of PSYCHO. They are errors
141 * relating to UPA interface transactions.
142 */
143#define PSYCHO_UE_AFSR 0x0030UL
144#define PSYCHO_UEAFSR_PPIO 0x8000000000000000UL /* Primary PIO is cause */
145#define PSYCHO_UEAFSR_PDRD 0x4000000000000000UL /* Primary DVMA read is cause */
146#define PSYCHO_UEAFSR_PDWR 0x2000000000000000UL /* Primary DVMA write is cause */
147#define PSYCHO_UEAFSR_SPIO 0x1000000000000000UL /* Secondary PIO is cause */
148#define PSYCHO_UEAFSR_SDRD 0x0800000000000000UL /* Secondary DVMA read is cause */
149#define PSYCHO_UEAFSR_SDWR 0x0400000000000000UL /* Secondary DVMA write is cause*/
150#define PSYCHO_UEAFSR_RESV1 0x03ff000000000000UL /* Reserved */
151#define PSYCHO_UEAFSR_BMSK 0x0000ffff00000000UL /* Bytemask of failed transfer */
152#define PSYCHO_UEAFSR_DOFF 0x00000000e0000000UL /* Doubleword Offset */
153#define PSYCHO_UEAFSR_MID 0x000000001f000000UL /* UPA MID causing the fault */
154#define PSYCHO_UEAFSR_BLK 0x0000000000800000UL /* Trans was block operation */
155#define PSYCHO_UEAFSR_RESV2 0x00000000007fffffUL /* Reserved */
156#define PSYCHO_UE_AFAR 0x0038UL
157
Al Viro6d24c8d2006-10-08 08:23:28 -0400158static irqreturn_t psycho_ue_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
David S. Miller34768bc2007-05-07 23:06:27 -0700160 struct pci_pbm_info *pbm = dev_id;
David S. Miller34768bc2007-05-07 23:06:27 -0700161 unsigned long afsr_reg = pbm->controller_regs + PSYCHO_UE_AFSR;
162 unsigned long afar_reg = pbm->controller_regs + PSYCHO_UE_AFAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 unsigned long afsr, afar, error_bits;
164 int reported;
165
166 /* Latch uncorrectable error status. */
David S. Miller87395fc2008-09-10 04:13:10 -0700167 afar = upa_readq(afar_reg);
168 afsr = upa_readq(afsr_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /* Clear the primary/secondary error status bits. */
171 error_bits = afsr &
172 (PSYCHO_UEAFSR_PPIO | PSYCHO_UEAFSR_PDRD | PSYCHO_UEAFSR_PDWR |
173 PSYCHO_UEAFSR_SPIO | PSYCHO_UEAFSR_SDRD | PSYCHO_UEAFSR_SDWR);
174 if (!error_bits)
175 return IRQ_NONE;
David S. Miller87395fc2008-09-10 04:13:10 -0700176 upa_writeq(error_bits, afsr_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /* Log the error. */
David S. Miller6c108f12007-05-07 23:49:01 -0700179 printk("%s: Uncorrectable Error, primary error type[%s]\n",
180 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 (((error_bits & PSYCHO_UEAFSR_PPIO) ?
182 "PIO" :
183 ((error_bits & PSYCHO_UEAFSR_PDRD) ?
184 "DMA Read" :
185 ((error_bits & PSYCHO_UEAFSR_PDWR) ?
186 "DMA Write" : "???")))));
David S. Miller6c108f12007-05-07 23:49:01 -0700187 printk("%s: bytemask[%04lx] dword_offset[%lx] UPA_MID[%02lx] was_block(%d)\n",
188 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 (afsr & PSYCHO_UEAFSR_BMSK) >> 32UL,
190 (afsr & PSYCHO_UEAFSR_DOFF) >> 29UL,
191 (afsr & PSYCHO_UEAFSR_MID) >> 24UL,
192 ((afsr & PSYCHO_UEAFSR_BLK) ? 1 : 0));
David S. Miller6c108f12007-05-07 23:49:01 -0700193 printk("%s: UE AFAR [%016lx]\n", pbm->name, afar);
194 printk("%s: UE Secondary errors [", pbm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 reported = 0;
196 if (afsr & PSYCHO_UEAFSR_SPIO) {
197 reported++;
198 printk("(PIO)");
199 }
200 if (afsr & PSYCHO_UEAFSR_SDRD) {
201 reported++;
202 printk("(DMA Read)");
203 }
204 if (afsr & PSYCHO_UEAFSR_SDWR) {
205 reported++;
206 printk("(DMA Write)");
207 }
208 if (!reported)
209 printk("(none)");
210 printk("]\n");
211
David S. Miller34768bc2007-05-07 23:06:27 -0700212 /* Interrogate both IOMMUs for error status. */
David S. Millerd3ae4b52008-09-09 23:54:02 -0700213 psycho_check_iommu_error(pbm, afsr, afar, UE_ERR);
214 if (pbm->sibling)
215 psycho_check_iommu_error(pbm->sibling, afsr, afar, UE_ERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 return IRQ_HANDLED;
218}
219
220/* Correctable Errors. */
221#define PSYCHO_CE_AFSR 0x0040UL
222#define PSYCHO_CEAFSR_PPIO 0x8000000000000000UL /* Primary PIO is cause */
223#define PSYCHO_CEAFSR_PDRD 0x4000000000000000UL /* Primary DVMA read is cause */
224#define PSYCHO_CEAFSR_PDWR 0x2000000000000000UL /* Primary DVMA write is cause */
225#define PSYCHO_CEAFSR_SPIO 0x1000000000000000UL /* Secondary PIO is cause */
226#define PSYCHO_CEAFSR_SDRD 0x0800000000000000UL /* Secondary DVMA read is cause */
227#define PSYCHO_CEAFSR_SDWR 0x0400000000000000UL /* Secondary DVMA write is cause*/
228#define PSYCHO_CEAFSR_RESV1 0x0300000000000000UL /* Reserved */
229#define PSYCHO_CEAFSR_ESYND 0x00ff000000000000UL /* Syndrome Bits */
230#define PSYCHO_CEAFSR_BMSK 0x0000ffff00000000UL /* Bytemask of failed transfer */
231#define PSYCHO_CEAFSR_DOFF 0x00000000e0000000UL /* Double Offset */
232#define PSYCHO_CEAFSR_MID 0x000000001f000000UL /* UPA MID causing the fault */
233#define PSYCHO_CEAFSR_BLK 0x0000000000800000UL /* Trans was block operation */
234#define PSYCHO_CEAFSR_RESV2 0x00000000007fffffUL /* Reserved */
235#define PSYCHO_CE_AFAR 0x0040UL
236
Al Viro6d24c8d2006-10-08 08:23:28 -0400237static irqreturn_t psycho_ce_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
David S. Miller34768bc2007-05-07 23:06:27 -0700239 struct pci_pbm_info *pbm = dev_id;
David S. Miller34768bc2007-05-07 23:06:27 -0700240 unsigned long afsr_reg = pbm->controller_regs + PSYCHO_CE_AFSR;
241 unsigned long afar_reg = pbm->controller_regs + PSYCHO_CE_AFAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 unsigned long afsr, afar, error_bits;
243 int reported;
244
245 /* Latch error status. */
David S. Miller87395fc2008-09-10 04:13:10 -0700246 afar = upa_readq(afar_reg);
247 afsr = upa_readq(afsr_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 /* Clear primary/secondary error status bits. */
250 error_bits = afsr &
251 (PSYCHO_CEAFSR_PPIO | PSYCHO_CEAFSR_PDRD | PSYCHO_CEAFSR_PDWR |
252 PSYCHO_CEAFSR_SPIO | PSYCHO_CEAFSR_SDRD | PSYCHO_CEAFSR_SDWR);
253 if (!error_bits)
254 return IRQ_NONE;
David S. Miller87395fc2008-09-10 04:13:10 -0700255 upa_writeq(error_bits, afsr_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 /* Log the error. */
David S. Miller6c108f12007-05-07 23:49:01 -0700258 printk("%s: Correctable Error, primary error type[%s]\n",
259 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 (((error_bits & PSYCHO_CEAFSR_PPIO) ?
261 "PIO" :
262 ((error_bits & PSYCHO_CEAFSR_PDRD) ?
263 "DMA Read" :
264 ((error_bits & PSYCHO_CEAFSR_PDWR) ?
265 "DMA Write" : "???")))));
266
267 /* XXX Use syndrome and afar to print out module string just like
268 * XXX UDB CE trap handler does... -DaveM
269 */
David S. Miller6c108f12007-05-07 23:49:01 -0700270 printk("%s: syndrome[%02lx] bytemask[%04lx] dword_offset[%lx] "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 "UPA_MID[%02lx] was_block(%d)\n",
David S. Miller6c108f12007-05-07 23:49:01 -0700272 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 (afsr & PSYCHO_CEAFSR_ESYND) >> 48UL,
274 (afsr & PSYCHO_CEAFSR_BMSK) >> 32UL,
275 (afsr & PSYCHO_CEAFSR_DOFF) >> 29UL,
276 (afsr & PSYCHO_CEAFSR_MID) >> 24UL,
277 ((afsr & PSYCHO_CEAFSR_BLK) ? 1 : 0));
David S. Miller6c108f12007-05-07 23:49:01 -0700278 printk("%s: CE AFAR [%016lx]\n", pbm->name, afar);
279 printk("%s: CE Secondary errors [", pbm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 reported = 0;
281 if (afsr & PSYCHO_CEAFSR_SPIO) {
282 reported++;
283 printk("(PIO)");
284 }
285 if (afsr & PSYCHO_CEAFSR_SDRD) {
286 reported++;
287 printk("(DMA Read)");
288 }
289 if (afsr & PSYCHO_CEAFSR_SDWR) {
290 reported++;
291 printk("(DMA Write)");
292 }
293 if (!reported)
294 printk("(none)");
295 printk("]\n");
296
297 return IRQ_HANDLED;
298}
299
300/* PCI Errors. They are signalled by the PCI bus module since they
301 * are associated with a specific bus segment.
302 */
303#define PSYCHO_PCI_AFSR_A 0x2010UL
304#define PSYCHO_PCI_AFSR_B 0x4010UL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305#define PSYCHO_PCI_AFAR_A 0x2018UL
306#define PSYCHO_PCI_AFAR_B 0x4018UL
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/* XXX What about PowerFail/PowerManagement??? -DaveM */
309#define PSYCHO_ECC_CTRL 0x0020
310#define PSYCHO_ECCCTRL_EE 0x8000000000000000UL /* Enable ECC Checking */
311#define PSYCHO_ECCCTRL_UE 0x4000000000000000UL /* Enable UE Interrupts */
312#define PSYCHO_ECCCTRL_CE 0x2000000000000000UL /* Enable CE INterrupts */
David S. Miller34768bc2007-05-07 23:06:27 -0700313static void psycho_register_error_handlers(struct pci_pbm_info *pbm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
David S. Miller22fecba2008-09-10 00:19:28 -0700315 struct of_device *op = of_find_device_by_node(pbm->op->node);
David S. Miller34768bc2007-05-07 23:06:27 -0700316 unsigned long base = pbm->controller_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 u64 tmp;
David S. Milleraf803182007-05-08 17:23:31 -0700318 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
David S. Miller2b1e5972006-06-29 15:07:37 -0700320 if (!op)
321 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
David S. Miller2b1e5972006-06-29 15:07:37 -0700323 /* Psycho interrupt property order is:
David S. Miller34768bc2007-05-07 23:06:27 -0700324 * 0: PCIERR INO for this PBM
David S. Miller2b1e5972006-06-29 15:07:37 -0700325 * 1: UE ERR
326 * 2: CE ERR
327 * 3: POWER FAIL
328 * 4: SPARE HARDWARE
David S. Miller34768bc2007-05-07 23:06:27 -0700329 * 5: POWER MANAGEMENT
David S. Miller2b1e5972006-06-29 15:07:37 -0700330 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
David S. Miller2b1e5972006-06-29 15:07:37 -0700332 if (op->num_irqs < 6)
333 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
David S. Milleraf803182007-05-08 17:23:31 -0700335 /* We really mean to ignore the return result here. Two
336 * PCI controller share the same interrupt numbers and
337 * drive the same front-end hardware. Whichever of the
338 * two get in here first will register the IRQ handler
339 * the second will just error out since we do not pass in
340 * IRQF_SHARED.
341 */
342 err = request_irq(op->irqs[1], psycho_ue_intr, 0,
343 "PSYCHO_UE", pbm);
344 err = request_irq(op->irqs[2], psycho_ce_intr, 0,
345 "PSYCHO_CE", pbm);
346
347 /* This one, however, ought not to fail. We can just warn
348 * about it since the system can still operate properly even
349 * if this fails.
350 */
351 err = request_irq(op->irqs[0], psycho_pcierr_intr, 0,
352 "PSYCHO_PCIERR", pbm);
353 if (err)
354 printk(KERN_WARNING "%s: Could not register PCIERR, "
355 "err=%d\n", pbm->name, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Enable UE and CE interrupts for controller. */
David S. Miller87395fc2008-09-10 04:13:10 -0700358 upa_writeq((PSYCHO_ECCCTRL_EE |
359 PSYCHO_ECCCTRL_UE |
360 PSYCHO_ECCCTRL_CE), base + PSYCHO_ECC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 /* Enable PCI Error interrupts and clear error
363 * bits for each PBM.
364 */
David S. Miller87395fc2008-09-10 04:13:10 -0700365 tmp = upa_readq(base + PSYCHO_PCIA_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 tmp |= (PSYCHO_PCICTRL_SERR |
367 PSYCHO_PCICTRL_SBH_ERR |
368 PSYCHO_PCICTRL_EEN);
369 tmp &= ~(PSYCHO_PCICTRL_SBH_INT);
David S. Miller87395fc2008-09-10 04:13:10 -0700370 upa_writeq(tmp, base + PSYCHO_PCIA_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
David S. Miller87395fc2008-09-10 04:13:10 -0700372 tmp = upa_readq(base + PSYCHO_PCIB_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 tmp |= (PSYCHO_PCICTRL_SERR |
374 PSYCHO_PCICTRL_SBH_ERR |
375 PSYCHO_PCICTRL_EEN);
376 tmp &= ~(PSYCHO_PCICTRL_SBH_INT);
David S. Miller87395fc2008-09-10 04:13:10 -0700377 upa_writeq(tmp, base + PSYCHO_PCIB_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380/* PSYCHO boot time probing and initialization. */
David S. Miller085ae412005-08-08 13:19:08 -0700381static void pbm_config_busmastering(struct pci_pbm_info *pbm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 u8 *addr;
384
385 /* Set cache-line size to 64 bytes, this is actually
386 * a nop but I do it for completeness.
387 */
388 addr = psycho_pci_config_mkaddr(pbm, pbm->pci_first_busno,
389 0, PCI_CACHE_LINE_SIZE);
390 pci_config_write8(addr, 64 / sizeof(u32));
391
392 /* Set PBM latency timer to 64 PCI clocks. */
393 addr = psycho_pci_config_mkaddr(pbm, pbm->pci_first_busno,
394 0, PCI_LATENCY_TIMER);
395 pci_config_write8(addr, 64);
396}
397
David S. Millere822358a2008-09-01 18:32:22 -0700398static void __init psycho_scan_bus(struct pci_pbm_info *pbm,
399 struct device *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
David S. Miller34768bc2007-05-07 23:06:27 -0700401 pbm_config_busmastering(pbm);
402 pbm->is_66mhz_capable = 0;
David S. Millere822358a2008-09-01 18:32:22 -0700403 pbm->pci_bus = pci_scan_one_pbm(pbm, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /* After the PCI bus scan is complete, we can register
406 * the error interrupt handlers.
407 */
David S. Miller34768bc2007-05-07 23:06:27 -0700408 psycho_register_error_handlers(pbm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#define PSYCHO_IRQ_RETRY 0x1a00UL
412#define PSYCHO_PCIA_DIAG 0x2020UL
413#define PSYCHO_PCIB_DIAG 0x4020UL
414#define PSYCHO_PCIDIAG_RESV 0xffffffffffffff80UL /* Reserved */
415#define PSYCHO_PCIDIAG_DRETRY 0x0000000000000040UL /* Disable retry limit */
416#define PSYCHO_PCIDIAG_DISYNC 0x0000000000000020UL /* Disable DMA wr / irq sync */
417#define PSYCHO_PCIDIAG_DDWSYNC 0x0000000000000010UL /* Disable DMA wr / PIO rd sync */
418#define PSYCHO_PCIDIAG_IDDPAR 0x0000000000000008UL /* Invert DMA data parity */
419#define PSYCHO_PCIDIAG_IPDPAR 0x0000000000000004UL /* Invert PIO data parity */
420#define PSYCHO_PCIDIAG_IPAPAR 0x0000000000000002UL /* Invert PIO address parity */
421#define PSYCHO_PCIDIAG_LPBACK 0x0000000000000001UL /* Enable loopback mode */
422
David S. Miller28113a92007-05-08 00:19:02 -0700423static void psycho_controller_hwinit(struct pci_pbm_info *pbm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
425 u64 tmp;
426
David S. Miller87395fc2008-09-10 04:13:10 -0700427 upa_writeq(5, pbm->controller_regs + PSYCHO_IRQ_RETRY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 /* Enable arbiter for all PCI slots. */
David S. Miller87395fc2008-09-10 04:13:10 -0700430 tmp = upa_readq(pbm->controller_regs + PSYCHO_PCIA_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 tmp |= PSYCHO_PCICTRL_AEN;
David S. Miller87395fc2008-09-10 04:13:10 -0700432 upa_writeq(tmp, pbm->controller_regs + PSYCHO_PCIA_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
David S. Miller87395fc2008-09-10 04:13:10 -0700434 tmp = upa_readq(pbm->controller_regs + PSYCHO_PCIB_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 tmp |= PSYCHO_PCICTRL_AEN;
David S. Miller87395fc2008-09-10 04:13:10 -0700436 upa_writeq(tmp, pbm->controller_regs + PSYCHO_PCIB_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /* Disable DMA write / PIO read synchronization on
439 * both PCI bus segments.
440 * [ U2P Erratum 1243770, STP2223BGA data sheet ]
441 */
David S. Miller87395fc2008-09-10 04:13:10 -0700442 tmp = upa_readq(pbm->controller_regs + PSYCHO_PCIA_DIAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 tmp |= PSYCHO_PCIDIAG_DDWSYNC;
David S. Miller87395fc2008-09-10 04:13:10 -0700444 upa_writeq(tmp, pbm->controller_regs + PSYCHO_PCIA_DIAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
David S. Miller87395fc2008-09-10 04:13:10 -0700446 tmp = upa_readq(pbm->controller_regs + PSYCHO_PCIB_DIAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 tmp |= PSYCHO_PCIDIAG_DDWSYNC;
David S. Miller87395fc2008-09-10 04:13:10 -0700448 upa_writeq(tmp, pbm->controller_regs + PSYCHO_PCIB_DIAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
David S. Miller28113a92007-05-08 00:19:02 -0700451static void psycho_pbm_strbuf_init(struct pci_pbm_info *pbm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 int is_pbm_a)
453{
454 unsigned long base = pbm->controller_regs;
455 u64 control;
456
457 if (is_pbm_a) {
458 pbm->stc.strbuf_control = base + PSYCHO_STRBUF_CONTROL_A;
459 pbm->stc.strbuf_pflush = base + PSYCHO_STRBUF_FLUSH_A;
460 pbm->stc.strbuf_fsync = base + PSYCHO_STRBUF_FSYNC_A;
David S. Millerd3ae4b52008-09-09 23:54:02 -0700461 pbm->stc.strbuf_err_stat = base + PSYCHO_STC_ERR_A;
462 pbm->stc.strbuf_tag_diag = base + PSYCHO_STC_TAG_A;
463 pbm->stc.strbuf_line_diag= base + PSYCHO_STC_LINE_A;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 } else {
465 pbm->stc.strbuf_control = base + PSYCHO_STRBUF_CONTROL_B;
466 pbm->stc.strbuf_pflush = base + PSYCHO_STRBUF_FLUSH_B;
467 pbm->stc.strbuf_fsync = base + PSYCHO_STRBUF_FSYNC_B;
David S. Millerd3ae4b52008-09-09 23:54:02 -0700468 pbm->stc.strbuf_err_stat = base + PSYCHO_STC_ERR_B;
469 pbm->stc.strbuf_tag_diag = base + PSYCHO_STC_TAG_B;
470 pbm->stc.strbuf_line_diag= base + PSYCHO_STC_LINE_B;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472 /* PSYCHO's streaming buffer lacks ctx flushing. */
473 pbm->stc.strbuf_ctxflush = 0;
474 pbm->stc.strbuf_ctxmatch_base = 0;
475
476 pbm->stc.strbuf_flushflag = (volatile unsigned long *)
477 ((((unsigned long)&pbm->stc.__flushflag_buf[0])
478 + 63UL)
479 & ~63UL);
480 pbm->stc.strbuf_flushflag_pa = (unsigned long)
481 __pa(pbm->stc.strbuf_flushflag);
482
483 /* Enable the streaming buffer. We have to be careful
484 * just in case OBP left it with LRU locking enabled.
485 *
486 * It is possible to control if PBM will be rerun on
487 * line misses. Currently I just retain whatever setting
488 * OBP left us with. All checks so far show it having
489 * a value of zero.
490 */
491#undef PSYCHO_STRBUF_RERUN_ENABLE
492#undef PSYCHO_STRBUF_RERUN_DISABLE
David S. Miller87395fc2008-09-10 04:13:10 -0700493 control = upa_readq(pbm->stc.strbuf_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 control |= PSYCHO_STRBUF_CTRL_ENAB;
495 control &= ~(PSYCHO_STRBUF_CTRL_LENAB | PSYCHO_STRBUF_CTRL_LPTR);
496#ifdef PSYCHO_STRBUF_RERUN_ENABLE
497 control &= ~(PSYCHO_STRBUF_CTRL_RRDIS);
498#else
499#ifdef PSYCHO_STRBUF_RERUN_DISABLE
500 control |= PSYCHO_STRBUF_CTRL_RRDIS;
501#endif
502#endif
David S. Miller87395fc2008-09-10 04:13:10 -0700503 upa_writeq(control, pbm->stc.strbuf_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 pbm->stc.strbuf_enabled = 1;
506}
507
508#define PSYCHO_IOSPACE_A 0x002000000UL
509#define PSYCHO_IOSPACE_B 0x002010000UL
510#define PSYCHO_IOSPACE_SIZE 0x00000ffffUL
511#define PSYCHO_MEMSPACE_A 0x100000000UL
512#define PSYCHO_MEMSPACE_B 0x180000000UL
513#define PSYCHO_MEMSPACE_SIZE 0x07fffffffUL
514
David S. Millerd3ae4b52008-09-09 23:54:02 -0700515static void __init psycho_pbm_init(struct pci_pbm_info *pbm,
David S. Millere822358a2008-09-01 18:32:22 -0700516 struct of_device *op, int is_pbm_a)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
David S. Miller1c03a552008-09-10 03:15:56 -0700518 psycho_pbm_init_common(pbm, op, "PSYCHO", PBM_CHIP_TYPE_PSYCHO);
David S. Miller28113a92007-05-08 00:19:02 -0700519 psycho_pbm_strbuf_init(pbm, is_pbm_a);
David S. Millere822358a2008-09-01 18:32:22 -0700520 psycho_scan_bus(pbm, &op->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
David S. Millerd3ae4b52008-09-09 23:54:02 -0700523static struct pci_pbm_info * __devinit psycho_find_sibling(u32 upa_portid)
524{
525 struct pci_pbm_info *pbm;
526
527 for (pbm = pci_pbm_root; pbm; pbm = pbm->next) {
528 if (pbm->portid == upa_portid)
529 return pbm;
530 }
531 return NULL;
532}
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534#define PSYCHO_CONFIGSPACE 0x001000000UL
535
David S. Millerb20bfe42008-08-30 03:13:20 -0700536static int __devinit psycho_probe(struct of_device *op,
537 const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
David S. Millerb20bfe42008-08-30 03:13:20 -0700539 const struct linux_prom64_registers *pr_regs;
540 struct device_node *dp = op->node;
David S. Miller34768bc2007-05-07 23:06:27 -0700541 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700542 struct iommu *iommu;
David S. Millerb20bfe42008-08-30 03:13:20 -0700543 int is_pbm_a, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 u32 upa_portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
David S. Miller0f73d1b2008-09-01 20:18:04 -0700546 upa_portid = of_getintprop_default(dp, "upa-portid", 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
David S. Millerb20bfe42008-08-30 03:13:20 -0700548 err = -ENOMEM;
David S. Millerd3ae4b52008-09-09 23:54:02 -0700549 pbm = kzalloc(sizeof(*pbm), GFP_KERNEL);
550 if (!pbm) {
551 printk(KERN_ERR PFX "Cannot allocate pci_pbm_info.\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700552 goto out_err;
David S. Millerb20bfe42008-08-30 03:13:20 -0700553 }
554
David S. Millerd3ae4b52008-09-09 23:54:02 -0700555 pbm->sibling = psycho_find_sibling(upa_portid);
556 if (pbm->sibling) {
557 iommu = pbm->sibling->iommu;
558 } else {
559 iommu = kzalloc(sizeof(struct iommu), GFP_KERNEL);
560 if (!iommu) {
561 printk(KERN_ERR PFX "Cannot allocate PBM iommu.\n");
562 goto out_free_controller;
563 }
David S. Millerb20bfe42008-08-30 03:13:20 -0700564 }
David S. Millerad7ad572007-07-27 22:39:14 -0700565
David S. Millerd3ae4b52008-09-09 23:54:02 -0700566 pbm->iommu = iommu;
567 pbm->portid = upa_portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
David S. Millerb20bfe42008-08-30 03:13:20 -0700569 pr_regs = of_get_property(dp, "reg", NULL);
570 err = -ENODEV;
571 if (!pr_regs) {
572 printk(KERN_ERR PFX "No reg property.\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700573 goto out_free_iommu;
David S. Millerb20bfe42008-08-30 03:13:20 -0700574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 is_pbm_a = ((pr_regs[0].phys_addr & 0x6000) == 0x2000);
David S. Millerad7ad572007-07-27 22:39:14 -0700577
David S. Millerd3ae4b52008-09-09 23:54:02 -0700578 pbm->controller_regs = pr_regs[2].phys_addr;
579 pbm->config_space = (pr_regs[2].phys_addr + PSYCHO_CONFIGSPACE);
580
581 if (is_pbm_a) {
582 pbm->pci_afsr = pbm->controller_regs + PSYCHO_PCI_AFSR_A;
583 pbm->pci_afar = pbm->controller_regs + PSYCHO_PCI_AFAR_A;
584 pbm->pci_csr = pbm->controller_regs + PSYCHO_PCIA_CTRL;
585 } else {
586 pbm->pci_afsr = pbm->controller_regs + PSYCHO_PCI_AFSR_B;
587 pbm->pci_afar = pbm->controller_regs + PSYCHO_PCI_AFAR_B;
588 pbm->pci_csr = pbm->controller_regs + PSYCHO_PCIB_CTRL;
589 }
590
591 psycho_controller_hwinit(pbm);
592 if (!pbm->sibling) {
David S. Millera21cff32008-09-10 03:07:03 -0700593 err = psycho_iommu_init(pbm, 128, 0xc0000000,
594 0xffffffff, PSYCHO_CONTROL);
David S. Millerd3ae4b52008-09-09 23:54:02 -0700595 if (err)
596 goto out_free_iommu;
David S. Millera21cff32008-09-10 03:07:03 -0700597
598 /* If necessary, hook us up for starfire IRQ translations. */
599 if (this_is_starfire)
600 starfire_hookup(pbm->portid);
David S. Millerd3ae4b52008-09-09 23:54:02 -0700601 }
602
603 psycho_pbm_init(pbm, op, is_pbm_a);
604
David S. Miller1c03a552008-09-10 03:15:56 -0700605 pbm->next = pci_pbm_root;
606 pci_pbm_root = pbm;
607
David S. Millerd3ae4b52008-09-09 23:54:02 -0700608 if (pbm->sibling)
609 pbm->sibling->sibling = pbm;
610
611 dev_set_drvdata(&op->dev, pbm);
David S. Millerb20bfe42008-08-30 03:13:20 -0700612
613 return 0;
614
David S. Millerd7472c32008-08-31 01:33:52 -0700615out_free_iommu:
David S. Millerd3ae4b52008-09-09 23:54:02 -0700616 if (!pbm->sibling)
617 kfree(pbm->iommu);
David S. Millerd7472c32008-08-31 01:33:52 -0700618
619out_free_controller:
David S. Millerd3ae4b52008-09-09 23:54:02 -0700620 kfree(pbm);
David S. Millerd7472c32008-08-31 01:33:52 -0700621
622out_err:
David S. Millerb20bfe42008-08-30 03:13:20 -0700623 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
David S. Millerb20bfe42008-08-30 03:13:20 -0700625
David S. Millerfd098312008-08-31 01:23:17 -0700626static struct of_device_id __initdata psycho_match[] = {
David S. Millerb20bfe42008-08-30 03:13:20 -0700627 {
628 .name = "pci",
629 .compatible = "pci108e,8000",
630 },
631 {},
632};
633
634static struct of_platform_driver psycho_driver = {
635 .name = DRIVER_NAME,
636 .match_table = psycho_match,
637 .probe = psycho_probe,
638};
639
640static int __init psycho_init(void)
641{
642 return of_register_driver(&psycho_driver, &of_bus_type);
643}
644
645subsys_initcall(psycho_init);