1 /* pci_schizo.c: SCHIZO/TOMATILLO specific PCI controller support.
3 * Copyright (C) 2001, 2002, 2003, 2007 David S. Miller (davem@davemloft.net)
6 #include <linux/kernel.h>
7 #include <linux/types.h>
9 #include <linux/init.h>
10 #include <linux/slab.h>
11 #include <linux/interrupt.h>
12 #include <linux/of_device.h>
14 #include <asm/iommu.h>
17 #include <asm/pstate.h>
19 #include <asm/oplib.h>
22 #include "iommu_common.h"
24 /* All SCHIZO registers are 64-bits. The following accessor
25 * routines are how they are accessed. The REG parameter
26 * is a physical address.
28 #define schizo_read(__reg) \
30 __asm__ __volatile__("ldxa [%1] %2, %0" \
32 : "r" (__reg), "i" (ASI_PHYS_BYPASS_EC_E) \
36 #define schizo_write(__reg, __val) \
37 __asm__ __volatile__("stxa %0, [%1] %2" \
39 : "r" (__val), "r" (__reg), \
40 "i" (ASI_PHYS_BYPASS_EC_E) \
43 /* This is a convention that at least Excalibur and Merlin
44 * follow. I suppose the SCHIZO used in Starcat and friends
47 * The only way I could see this changing is if the newlink
48 * block requires more space in Schizo's address space than
49 * they predicted, thus requiring an address space reorg when
50 * the newer Schizo is taped out.
53 /* Streaming buffer control register. */
54 #define SCHIZO_STRBUF_CTRL_LPTR 0x00000000000000f0UL /* LRU Lock Pointer */
55 #define SCHIZO_STRBUF_CTRL_LENAB 0x0000000000000008UL /* LRU Lock Enable */
56 #define SCHIZO_STRBUF_CTRL_RRDIS 0x0000000000000004UL /* Rerun Disable */
57 #define SCHIZO_STRBUF_CTRL_DENAB 0x0000000000000002UL /* Diagnostic Mode Enable */
58 #define SCHIZO_STRBUF_CTRL_ENAB 0x0000000000000001UL /* Streaming Buffer Enable */
60 /* IOMMU control register. */
61 #define SCHIZO_IOMMU_CTRL_RESV 0xfffffffff9000000UL /* Reserved */
62 #define SCHIZO_IOMMU_CTRL_XLTESTAT 0x0000000006000000UL /* Translation Error Status */
63 #define SCHIZO_IOMMU_CTRL_XLTEERR 0x0000000001000000UL /* Translation Error encountered */
64 #define SCHIZO_IOMMU_CTRL_LCKEN 0x0000000000800000UL /* Enable translation locking */
65 #define SCHIZO_IOMMU_CTRL_LCKPTR 0x0000000000780000UL /* Translation lock pointer */
66 #define SCHIZO_IOMMU_CTRL_TSBSZ 0x0000000000070000UL /* TSB Size */
67 #define SCHIZO_IOMMU_TSBSZ_1K 0x0000000000000000UL /* TSB Table 1024 8-byte entries */
68 #define SCHIZO_IOMMU_TSBSZ_2K 0x0000000000010000UL /* TSB Table 2048 8-byte entries */
69 #define SCHIZO_IOMMU_TSBSZ_4K 0x0000000000020000UL /* TSB Table 4096 8-byte entries */
70 #define SCHIZO_IOMMU_TSBSZ_8K 0x0000000000030000UL /* TSB Table 8192 8-byte entries */
71 #define SCHIZO_IOMMU_TSBSZ_16K 0x0000000000040000UL /* TSB Table 16k 8-byte entries */
72 #define SCHIZO_IOMMU_TSBSZ_32K 0x0000000000050000UL /* TSB Table 32k 8-byte entries */
73 #define SCHIZO_IOMMU_TSBSZ_64K 0x0000000000060000UL /* TSB Table 64k 8-byte entries */
74 #define SCHIZO_IOMMU_TSBSZ_128K 0x0000000000070000UL /* TSB Table 128k 8-byte entries */
75 #define SCHIZO_IOMMU_CTRL_RESV2 0x000000000000fff8UL /* Reserved */
76 #define SCHIZO_IOMMU_CTRL_TBWSZ 0x0000000000000004UL /* Assumed page size, 0=8k 1=64k */
77 #define SCHIZO_IOMMU_CTRL_DENAB 0x0000000000000002UL /* Diagnostic mode enable */
78 #define SCHIZO_IOMMU_CTRL_ENAB 0x0000000000000001UL /* IOMMU Enable */
80 /* Schizo config space address format is nearly identical to
83 * 32 24 23 16 15 11 10 8 7 2 1 0
84 * ---------------------------------------------------------
85 * |0 0 0 0 0 0 0 0 0| bus | device | function | reg | 0 0 |
86 * ---------------------------------------------------------
88 #define SCHIZO_CONFIG_BASE(PBM) ((PBM)->config_space)
89 #define SCHIZO_CONFIG_ENCODE(BUS, DEVFN, REG) \
90 (((unsigned long)(BUS) << 16) | \
91 ((unsigned long)(DEVFN) << 8) | \
92 ((unsigned long)(REG)))
94 static void *schizo_pci_config_mkaddr(struct pci_pbm_info
*pbm
,
101 bus
-= pbm
->pci_first_busno
;
103 (SCHIZO_CONFIG_BASE(pbm
) |
104 SCHIZO_CONFIG_ENCODE(bus
, devfn
, where
));
107 /* SCHIZO error handling support. */
108 enum schizo_error_type
{
109 UE_ERR
, CE_ERR
, PCI_ERR
, SAFARI_ERR
112 static DEFINE_SPINLOCK(stc_buf_lock
);
113 static unsigned long stc_error_buf
[128];
114 static unsigned long stc_tag_buf
[16];
115 static unsigned long stc_line_buf
[16];
117 #define SCHIZO_UE_INO 0x30 /* Uncorrectable ECC error */
118 #define SCHIZO_CE_INO 0x31 /* Correctable ECC error */
119 #define SCHIZO_PCIERR_A_INO 0x32 /* PBM A PCI bus error */
120 #define SCHIZO_PCIERR_B_INO 0x33 /* PBM B PCI bus error */
121 #define SCHIZO_SERR_INO 0x34 /* Safari interface error */
123 #define SCHIZO_STC_ERR 0xb800UL /* --> 0xba00 */
124 #define SCHIZO_STC_TAG 0xba00UL /* --> 0xba80 */
125 #define SCHIZO_STC_LINE 0xbb00UL /* --> 0xbb80 */
127 #define SCHIZO_STCERR_WRITE 0x2UL
128 #define SCHIZO_STCERR_READ 0x1UL
130 #define SCHIZO_STCTAG_PPN 0x3fffffff00000000UL
131 #define SCHIZO_STCTAG_VPN 0x00000000ffffe000UL
132 #define SCHIZO_STCTAG_VALID 0x8000000000000000UL
133 #define SCHIZO_STCTAG_READ 0x4000000000000000UL
135 #define SCHIZO_STCLINE_LINDX 0x0000000007800000UL
136 #define SCHIZO_STCLINE_SPTR 0x000000000007e000UL
137 #define SCHIZO_STCLINE_LADDR 0x0000000000001fc0UL
138 #define SCHIZO_STCLINE_EPTR 0x000000000000003fUL
139 #define SCHIZO_STCLINE_VALID 0x0000000000600000UL
140 #define SCHIZO_STCLINE_FOFN 0x0000000000180000UL
142 static void __schizo_check_stc_error_pbm(struct pci_pbm_info
*pbm
,
143 enum schizo_error_type type
)
145 struct strbuf
*strbuf
= &pbm
->stc
;
146 unsigned long regbase
= pbm
->pbm_regs
;
147 unsigned long err_base
, tag_base
, line_base
;
151 err_base
= regbase
+ SCHIZO_STC_ERR
;
152 tag_base
= regbase
+ SCHIZO_STC_TAG
;
153 line_base
= regbase
+ SCHIZO_STC_LINE
;
155 spin_lock(&stc_buf_lock
);
157 /* This is __REALLY__ dangerous. When we put the
158 * streaming buffer into diagnostic mode to probe
159 * it's tags and error status, we _must_ clear all
160 * of the line tag valid bits before re-enabling
161 * the streaming buffer. If any dirty data lives
162 * in the STC when we do this, we will end up
163 * invalidating it before it has a chance to reach
166 control
= schizo_read(strbuf
->strbuf_control
);
167 schizo_write(strbuf
->strbuf_control
,
168 (control
| SCHIZO_STRBUF_CTRL_DENAB
));
169 for (i
= 0; i
< 128; i
++) {
172 val
= schizo_read(err_base
+ (i
* 8UL));
173 schizo_write(err_base
+ (i
* 8UL), 0UL);
174 stc_error_buf
[i
] = val
;
176 for (i
= 0; i
< 16; i
++) {
177 stc_tag_buf
[i
] = schizo_read(tag_base
+ (i
* 8UL));
178 stc_line_buf
[i
] = schizo_read(line_base
+ (i
* 8UL));
179 schizo_write(tag_base
+ (i
* 8UL), 0UL);
180 schizo_write(line_base
+ (i
* 8UL), 0UL);
183 /* OK, state is logged, exit diagnostic mode. */
184 schizo_write(strbuf
->strbuf_control
, control
);
186 for (i
= 0; i
< 16; i
++) {
187 int j
, saw_error
, first
, last
;
192 for (j
= first
; j
< last
; j
++) {
193 unsigned long errval
= stc_error_buf
[j
];
196 printk("%s: STC_ERR(%d)[wr(%d)rd(%d)]\n",
199 (errval
& SCHIZO_STCERR_WRITE
) ? 1 : 0,
200 (errval
& SCHIZO_STCERR_READ
) ? 1 : 0);
203 if (saw_error
!= 0) {
204 unsigned long tagval
= stc_tag_buf
[i
];
205 unsigned long lineval
= stc_line_buf
[i
];
206 printk("%s: STC_TAG(%d)[PA(%016lx)VA(%08lx)V(%d)R(%d)]\n",
209 ((tagval
& SCHIZO_STCTAG_PPN
) >> 19UL),
210 (tagval
& SCHIZO_STCTAG_VPN
),
211 ((tagval
& SCHIZO_STCTAG_VALID
) ? 1 : 0),
212 ((tagval
& SCHIZO_STCTAG_READ
) ? 1 : 0));
214 /* XXX Should spit out per-bank error information... -DaveM */
215 printk("%s: STC_LINE(%d)[LIDX(%lx)SP(%lx)LADDR(%lx)EP(%lx)"
219 ((lineval
& SCHIZO_STCLINE_LINDX
) >> 23UL),
220 ((lineval
& SCHIZO_STCLINE_SPTR
) >> 13UL),
221 ((lineval
& SCHIZO_STCLINE_LADDR
) >> 6UL),
222 ((lineval
& SCHIZO_STCLINE_EPTR
) >> 0UL),
223 ((lineval
& SCHIZO_STCLINE_VALID
) ? 1 : 0),
224 ((lineval
& SCHIZO_STCLINE_FOFN
) ? 1 : 0));
228 spin_unlock(&stc_buf_lock
);
231 /* IOMMU is per-PBM in Schizo, so interrogate both for anonymous
232 * controller level errors.
235 #define SCHIZO_IOMMU_TAG 0xa580UL
236 #define SCHIZO_IOMMU_DATA 0xa600UL
238 #define SCHIZO_IOMMU_TAG_CTXT 0x0000001ffe000000UL
239 #define SCHIZO_IOMMU_TAG_ERRSTS 0x0000000001800000UL
240 #define SCHIZO_IOMMU_TAG_ERR 0x0000000000400000UL
241 #define SCHIZO_IOMMU_TAG_WRITE 0x0000000000200000UL
242 #define SCHIZO_IOMMU_TAG_STREAM 0x0000000000100000UL
243 #define SCHIZO_IOMMU_TAG_SIZE 0x0000000000080000UL
244 #define SCHIZO_IOMMU_TAG_VPAGE 0x000000000007ffffUL
246 #define SCHIZO_IOMMU_DATA_VALID 0x0000000100000000UL
247 #define SCHIZO_IOMMU_DATA_CACHE 0x0000000040000000UL
248 #define SCHIZO_IOMMU_DATA_PPAGE 0x000000003fffffffUL
250 static void schizo_check_iommu_error_pbm(struct pci_pbm_info
*pbm
,
251 enum schizo_error_type type
)
253 struct iommu
*iommu
= pbm
->iommu
;
254 unsigned long iommu_tag
[16];
255 unsigned long iommu_data
[16];
260 spin_lock_irqsave(&iommu
->lock
, flags
);
261 control
= schizo_read(iommu
->iommu_control
);
262 if (control
& SCHIZO_IOMMU_CTRL_XLTEERR
) {
266 /* Clear the error encountered bit. */
267 control
&= ~SCHIZO_IOMMU_CTRL_XLTEERR
;
268 schizo_write(iommu
->iommu_control
, control
);
270 switch((control
& SCHIZO_IOMMU_CTRL_XLTESTAT
) >> 25UL) {
272 type_string
= "Protection Error";
275 type_string
= "Invalid Error";
278 type_string
= "TimeOut Error";
282 type_string
= "ECC Error";
285 printk("%s: IOMMU Error, type[%s]\n",
286 pbm
->name
, type_string
);
288 /* Put the IOMMU into diagnostic mode and probe
289 * it's TLB for entries with error status.
291 * It is very possible for another DVMA to occur
292 * while we do this probe, and corrupt the system
293 * further. But we are so screwed at this point
294 * that we are likely to crash hard anyways, so
295 * get as much diagnostic information to the
298 schizo_write(iommu
->iommu_control
,
299 control
| SCHIZO_IOMMU_CTRL_DENAB
);
301 base
= pbm
->pbm_regs
;
303 for (i
= 0; i
< 16; i
++) {
305 schizo_read(base
+ SCHIZO_IOMMU_TAG
+ (i
* 8UL));
307 schizo_read(base
+ SCHIZO_IOMMU_DATA
+ (i
* 8UL));
309 /* Now clear out the entry. */
310 schizo_write(base
+ SCHIZO_IOMMU_TAG
+ (i
* 8UL), 0);
311 schizo_write(base
+ SCHIZO_IOMMU_DATA
+ (i
* 8UL), 0);
314 /* Leave diagnostic mode. */
315 schizo_write(iommu
->iommu_control
, control
);
317 for (i
= 0; i
< 16; i
++) {
318 unsigned long tag
, data
;
321 if (!(tag
& SCHIZO_IOMMU_TAG_ERR
))
324 data
= iommu_data
[i
];
325 switch((tag
& SCHIZO_IOMMU_TAG_ERRSTS
) >> 23UL) {
327 type_string
= "Protection Error";
330 type_string
= "Invalid Error";
333 type_string
= "TimeOut Error";
337 type_string
= "ECC Error";
340 printk("%s: IOMMU TAG(%d)[error(%s) ctx(%x) wr(%d) str(%d) "
341 "sz(%dK) vpg(%08lx)]\n",
342 pbm
->name
, i
, type_string
,
343 (int)((tag
& SCHIZO_IOMMU_TAG_CTXT
) >> 25UL),
344 ((tag
& SCHIZO_IOMMU_TAG_WRITE
) ? 1 : 0),
345 ((tag
& SCHIZO_IOMMU_TAG_STREAM
) ? 1 : 0),
346 ((tag
& SCHIZO_IOMMU_TAG_SIZE
) ? 64 : 8),
347 (tag
& SCHIZO_IOMMU_TAG_VPAGE
) << IOMMU_PAGE_SHIFT
);
348 printk("%s: IOMMU DATA(%d)[valid(%d) cache(%d) ppg(%016lx)]\n",
350 ((data
& SCHIZO_IOMMU_DATA_VALID
) ? 1 : 0),
351 ((data
& SCHIZO_IOMMU_DATA_CACHE
) ? 1 : 0),
352 (data
& SCHIZO_IOMMU_DATA_PPAGE
) << IOMMU_PAGE_SHIFT
);
355 if (pbm
->stc
.strbuf_enabled
)
356 __schizo_check_stc_error_pbm(pbm
, type
);
357 spin_unlock_irqrestore(&iommu
->lock
, flags
);
360 static void schizo_check_iommu_error(struct pci_controller_info
*p
,
361 enum schizo_error_type type
)
363 schizo_check_iommu_error_pbm(&p
->pbm_A
, type
);
364 schizo_check_iommu_error_pbm(&p
->pbm_B
, type
);
367 /* Uncorrectable ECC error status gathering. */
368 #define SCHIZO_UE_AFSR 0x10030UL
369 #define SCHIZO_UE_AFAR 0x10038UL
371 #define SCHIZO_UEAFSR_PPIO 0x8000000000000000UL /* Safari */
372 #define SCHIZO_UEAFSR_PDRD 0x4000000000000000UL /* Safari/Tomatillo */
373 #define SCHIZO_UEAFSR_PDWR 0x2000000000000000UL /* Safari */
374 #define SCHIZO_UEAFSR_SPIO 0x1000000000000000UL /* Safari */
375 #define SCHIZO_UEAFSR_SDMA 0x0800000000000000UL /* Safari/Tomatillo */
376 #define SCHIZO_UEAFSR_ERRPNDG 0x0300000000000000UL /* Safari */
377 #define SCHIZO_UEAFSR_BMSK 0x000003ff00000000UL /* Safari */
378 #define SCHIZO_UEAFSR_QOFF 0x00000000c0000000UL /* Safari/Tomatillo */
379 #define SCHIZO_UEAFSR_AID 0x000000001f000000UL /* Safari/Tomatillo */
380 #define SCHIZO_UEAFSR_PARTIAL 0x0000000000800000UL /* Safari */
381 #define SCHIZO_UEAFSR_OWNEDIN 0x0000000000400000UL /* Safari */
382 #define SCHIZO_UEAFSR_MTAGSYND 0x00000000000f0000UL /* Safari */
383 #define SCHIZO_UEAFSR_MTAG 0x000000000000e000UL /* Safari */
384 #define SCHIZO_UEAFSR_ECCSYND 0x00000000000001ffUL /* Safari */
386 static irqreturn_t
schizo_ue_intr(int irq
, void *dev_id
)
388 struct pci_pbm_info
*pbm
= dev_id
;
389 struct pci_controller_info
*p
= pbm
->parent
;
390 unsigned long afsr_reg
= pbm
->controller_regs
+ SCHIZO_UE_AFSR
;
391 unsigned long afar_reg
= pbm
->controller_regs
+ SCHIZO_UE_AFAR
;
392 unsigned long afsr
, afar
, error_bits
;
395 /* Latch uncorrectable error status. */
396 afar
= schizo_read(afar_reg
);
398 /* If either of the error pending bits are set in the
399 * AFSR, the error status is being actively updated by
400 * the hardware and we must re-read to get a clean value.
404 afsr
= schizo_read(afsr_reg
);
405 } while ((afsr
& SCHIZO_UEAFSR_ERRPNDG
) != 0 && --limit
);
407 /* Clear the primary/secondary error status bits. */
409 (SCHIZO_UEAFSR_PPIO
| SCHIZO_UEAFSR_PDRD
| SCHIZO_UEAFSR_PDWR
|
410 SCHIZO_UEAFSR_SPIO
| SCHIZO_UEAFSR_SDMA
);
413 schizo_write(afsr_reg
, error_bits
);
416 printk("%s: Uncorrectable Error, primary error type[%s]\n",
418 (((error_bits
& SCHIZO_UEAFSR_PPIO
) ?
420 ((error_bits
& SCHIZO_UEAFSR_PDRD
) ?
422 ((error_bits
& SCHIZO_UEAFSR_PDWR
) ?
423 "DMA Write" : "???")))));
424 printk("%s: bytemask[%04lx] qword_offset[%lx] SAFARI_AID[%02lx]\n",
426 (afsr
& SCHIZO_UEAFSR_BMSK
) >> 32UL,
427 (afsr
& SCHIZO_UEAFSR_QOFF
) >> 30UL,
428 (afsr
& SCHIZO_UEAFSR_AID
) >> 24UL);
429 printk("%s: partial[%d] owned_in[%d] mtag[%lx] mtag_synd[%lx] ecc_sync[%lx]\n",
431 (afsr
& SCHIZO_UEAFSR_PARTIAL
) ? 1 : 0,
432 (afsr
& SCHIZO_UEAFSR_OWNEDIN
) ? 1 : 0,
433 (afsr
& SCHIZO_UEAFSR_MTAG
) >> 13UL,
434 (afsr
& SCHIZO_UEAFSR_MTAGSYND
) >> 16UL,
435 (afsr
& SCHIZO_UEAFSR_ECCSYND
) >> 0UL);
436 printk("%s: UE AFAR [%016lx]\n", pbm
->name
, afar
);
437 printk("%s: UE Secondary errors [", pbm
->name
);
439 if (afsr
& SCHIZO_UEAFSR_SPIO
) {
443 if (afsr
& SCHIZO_UEAFSR_SDMA
) {
451 /* Interrogate IOMMU for error status. */
452 schizo_check_iommu_error(p
, UE_ERR
);
457 #define SCHIZO_CE_AFSR 0x10040UL
458 #define SCHIZO_CE_AFAR 0x10048UL
460 #define SCHIZO_CEAFSR_PPIO 0x8000000000000000UL
461 #define SCHIZO_CEAFSR_PDRD 0x4000000000000000UL
462 #define SCHIZO_CEAFSR_PDWR 0x2000000000000000UL
463 #define SCHIZO_CEAFSR_SPIO 0x1000000000000000UL
464 #define SCHIZO_CEAFSR_SDMA 0x0800000000000000UL
465 #define SCHIZO_CEAFSR_ERRPNDG 0x0300000000000000UL
466 #define SCHIZO_CEAFSR_BMSK 0x000003ff00000000UL
467 #define SCHIZO_CEAFSR_QOFF 0x00000000c0000000UL
468 #define SCHIZO_CEAFSR_AID 0x000000001f000000UL
469 #define SCHIZO_CEAFSR_PARTIAL 0x0000000000800000UL
470 #define SCHIZO_CEAFSR_OWNEDIN 0x0000000000400000UL
471 #define SCHIZO_CEAFSR_MTAGSYND 0x00000000000f0000UL
472 #define SCHIZO_CEAFSR_MTAG 0x000000000000e000UL
473 #define SCHIZO_CEAFSR_ECCSYND 0x00000000000001ffUL
475 static irqreturn_t
schizo_ce_intr(int irq
, void *dev_id
)
477 struct pci_pbm_info
*pbm
= dev_id
;
478 unsigned long afsr_reg
= pbm
->controller_regs
+ SCHIZO_CE_AFSR
;
479 unsigned long afar_reg
= pbm
->controller_regs
+ SCHIZO_CE_AFAR
;
480 unsigned long afsr
, afar
, error_bits
;
483 /* Latch error status. */
484 afar
= schizo_read(afar_reg
);
486 /* If either of the error pending bits are set in the
487 * AFSR, the error status is being actively updated by
488 * the hardware and we must re-read to get a clean value.
492 afsr
= schizo_read(afsr_reg
);
493 } while ((afsr
& SCHIZO_UEAFSR_ERRPNDG
) != 0 && --limit
);
495 /* Clear primary/secondary error status bits. */
497 (SCHIZO_CEAFSR_PPIO
| SCHIZO_CEAFSR_PDRD
| SCHIZO_CEAFSR_PDWR
|
498 SCHIZO_CEAFSR_SPIO
| SCHIZO_CEAFSR_SDMA
);
501 schizo_write(afsr_reg
, error_bits
);
504 printk("%s: Correctable Error, primary error type[%s]\n",
506 (((error_bits
& SCHIZO_CEAFSR_PPIO
) ?
508 ((error_bits
& SCHIZO_CEAFSR_PDRD
) ?
510 ((error_bits
& SCHIZO_CEAFSR_PDWR
) ?
511 "DMA Write" : "???")))));
513 /* XXX Use syndrome and afar to print out module string just like
514 * XXX UDB CE trap handler does... -DaveM
516 printk("%s: bytemask[%04lx] qword_offset[%lx] SAFARI_AID[%02lx]\n",
518 (afsr
& SCHIZO_UEAFSR_BMSK
) >> 32UL,
519 (afsr
& SCHIZO_UEAFSR_QOFF
) >> 30UL,
520 (afsr
& SCHIZO_UEAFSR_AID
) >> 24UL);
521 printk("%s: partial[%d] owned_in[%d] mtag[%lx] mtag_synd[%lx] ecc_sync[%lx]\n",
523 (afsr
& SCHIZO_UEAFSR_PARTIAL
) ? 1 : 0,
524 (afsr
& SCHIZO_UEAFSR_OWNEDIN
) ? 1 : 0,
525 (afsr
& SCHIZO_UEAFSR_MTAG
) >> 13UL,
526 (afsr
& SCHIZO_UEAFSR_MTAGSYND
) >> 16UL,
527 (afsr
& SCHIZO_UEAFSR_ECCSYND
) >> 0UL);
528 printk("%s: CE AFAR [%016lx]\n", pbm
->name
, afar
);
529 printk("%s: CE Secondary errors [", pbm
->name
);
531 if (afsr
& SCHIZO_CEAFSR_SPIO
) {
535 if (afsr
& SCHIZO_CEAFSR_SDMA
) {
546 #define SCHIZO_PCI_AFSR 0x2010UL
547 #define SCHIZO_PCI_AFAR 0x2018UL
549 #define SCHIZO_PCIAFSR_PMA 0x8000000000000000UL /* Schizo/Tomatillo */
550 #define SCHIZO_PCIAFSR_PTA 0x4000000000000000UL /* Schizo/Tomatillo */
551 #define SCHIZO_PCIAFSR_PRTRY 0x2000000000000000UL /* Schizo/Tomatillo */
552 #define SCHIZO_PCIAFSR_PPERR 0x1000000000000000UL /* Schizo/Tomatillo */
553 #define SCHIZO_PCIAFSR_PTTO 0x0800000000000000UL /* Schizo/Tomatillo */
554 #define SCHIZO_PCIAFSR_PUNUS 0x0400000000000000UL /* Schizo */
555 #define SCHIZO_PCIAFSR_SMA 0x0200000000000000UL /* Schizo/Tomatillo */
556 #define SCHIZO_PCIAFSR_STA 0x0100000000000000UL /* Schizo/Tomatillo */
557 #define SCHIZO_PCIAFSR_SRTRY 0x0080000000000000UL /* Schizo/Tomatillo */
558 #define SCHIZO_PCIAFSR_SPERR 0x0040000000000000UL /* Schizo/Tomatillo */
559 #define SCHIZO_PCIAFSR_STTO 0x0020000000000000UL /* Schizo/Tomatillo */
560 #define SCHIZO_PCIAFSR_SUNUS 0x0010000000000000UL /* Schizo */
561 #define SCHIZO_PCIAFSR_BMSK 0x000003ff00000000UL /* Schizo/Tomatillo */
562 #define SCHIZO_PCIAFSR_BLK 0x0000000080000000UL /* Schizo/Tomatillo */
563 #define SCHIZO_PCIAFSR_CFG 0x0000000040000000UL /* Schizo/Tomatillo */
564 #define SCHIZO_PCIAFSR_MEM 0x0000000020000000UL /* Schizo/Tomatillo */
565 #define SCHIZO_PCIAFSR_IO 0x0000000010000000UL /* Schizo/Tomatillo */
567 #define SCHIZO_PCI_CTRL (0x2000UL)
568 #define SCHIZO_PCICTRL_BUS_UNUS (1UL << 63UL) /* Safari */
569 #define SCHIZO_PCICTRL_DTO_INT (1UL << 61UL) /* Tomatillo */
570 #define SCHIZO_PCICTRL_ARB_PRIO (0x1ff << 52UL) /* Tomatillo */
571 #define SCHIZO_PCICTRL_ESLCK (1UL << 51UL) /* Safari */
572 #define SCHIZO_PCICTRL_ERRSLOT (7UL << 48UL) /* Safari */
573 #define SCHIZO_PCICTRL_TTO_ERR (1UL << 38UL) /* Safari/Tomatillo */
574 #define SCHIZO_PCICTRL_RTRY_ERR (1UL << 37UL) /* Safari/Tomatillo */
575 #define SCHIZO_PCICTRL_DTO_ERR (1UL << 36UL) /* Safari/Tomatillo */
576 #define SCHIZO_PCICTRL_SBH_ERR (1UL << 35UL) /* Safari */
577 #define SCHIZO_PCICTRL_SERR (1UL << 34UL) /* Safari/Tomatillo */
578 #define SCHIZO_PCICTRL_PCISPD (1UL << 33UL) /* Safari */
579 #define SCHIZO_PCICTRL_MRM_PREF (1UL << 30UL) /* Tomatillo */
580 #define SCHIZO_PCICTRL_RDO_PREF (1UL << 29UL) /* Tomatillo */
581 #define SCHIZO_PCICTRL_RDL_PREF (1UL << 28UL) /* Tomatillo */
582 #define SCHIZO_PCICTRL_PTO (3UL << 24UL) /* Safari/Tomatillo */
583 #define SCHIZO_PCICTRL_PTO_SHIFT 24UL
584 #define SCHIZO_PCICTRL_TRWSW (7UL << 21UL) /* Tomatillo */
585 #define SCHIZO_PCICTRL_F_TGT_A (1UL << 20UL) /* Tomatillo */
586 #define SCHIZO_PCICTRL_S_DTO_INT (1UL << 19UL) /* Safari */
587 #define SCHIZO_PCICTRL_F_TGT_RT (1UL << 19UL) /* Tomatillo */
588 #define SCHIZO_PCICTRL_SBH_INT (1UL << 18UL) /* Safari */
589 #define SCHIZO_PCICTRL_T_DTO_INT (1UL << 18UL) /* Tomatillo */
590 #define SCHIZO_PCICTRL_EEN (1UL << 17UL) /* Safari/Tomatillo */
591 #define SCHIZO_PCICTRL_PARK (1UL << 16UL) /* Safari/Tomatillo */
592 #define SCHIZO_PCICTRL_PCIRST (1UL << 8UL) /* Safari */
593 #define SCHIZO_PCICTRL_ARB_S (0x3fUL << 0UL) /* Safari */
594 #define SCHIZO_PCICTRL_ARB_T (0xffUL << 0UL) /* Tomatillo */
596 static irqreturn_t
schizo_pcierr_intr_other(struct pci_pbm_info
*pbm
)
598 unsigned long csr_reg
, csr
, csr_error_bits
;
599 irqreturn_t ret
= IRQ_NONE
;
602 csr_reg
= pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
;
603 csr
= schizo_read(csr_reg
);
605 csr
& (SCHIZO_PCICTRL_BUS_UNUS
|
606 SCHIZO_PCICTRL_TTO_ERR
|
607 SCHIZO_PCICTRL_RTRY_ERR
|
608 SCHIZO_PCICTRL_DTO_ERR
|
609 SCHIZO_PCICTRL_SBH_ERR
|
610 SCHIZO_PCICTRL_SERR
);
611 if (csr_error_bits
) {
612 /* Clear the errors. */
613 schizo_write(csr_reg
, csr
);
616 if (csr_error_bits
& SCHIZO_PCICTRL_BUS_UNUS
)
617 printk("%s: Bus unusable error asserted.\n",
619 if (csr_error_bits
& SCHIZO_PCICTRL_TTO_ERR
)
620 printk("%s: PCI TRDY# timeout error asserted.\n",
622 if (csr_error_bits
& SCHIZO_PCICTRL_RTRY_ERR
)
623 printk("%s: PCI excessive retry error asserted.\n",
625 if (csr_error_bits
& SCHIZO_PCICTRL_DTO_ERR
)
626 printk("%s: PCI discard timeout error asserted.\n",
628 if (csr_error_bits
& SCHIZO_PCICTRL_SBH_ERR
)
629 printk("%s: PCI streaming byte hole error asserted.\n",
631 if (csr_error_bits
& SCHIZO_PCICTRL_SERR
)
632 printk("%s: PCI SERR signal asserted.\n",
636 pci_read_config_word(pbm
->pci_bus
->self
, PCI_STATUS
, &stat
);
637 if (stat
& (PCI_STATUS_PARITY
|
638 PCI_STATUS_SIG_TARGET_ABORT
|
639 PCI_STATUS_REC_TARGET_ABORT
|
640 PCI_STATUS_REC_MASTER_ABORT
|
641 PCI_STATUS_SIG_SYSTEM_ERROR
)) {
642 printk("%s: PCI bus error, PCI_STATUS[%04x]\n",
644 pci_write_config_word(pbm
->pci_bus
->self
, PCI_STATUS
, 0xffff);
650 static irqreturn_t
schizo_pcierr_intr(int irq
, void *dev_id
)
652 struct pci_pbm_info
*pbm
= dev_id
;
653 struct pci_controller_info
*p
= pbm
->parent
;
654 unsigned long afsr_reg
, afar_reg
, base
;
655 unsigned long afsr
, afar
, error_bits
;
658 base
= pbm
->pbm_regs
;
660 afsr_reg
= base
+ SCHIZO_PCI_AFSR
;
661 afar_reg
= base
+ SCHIZO_PCI_AFAR
;
663 /* Latch error status. */
664 afar
= schizo_read(afar_reg
);
665 afsr
= schizo_read(afsr_reg
);
667 /* Clear primary/secondary error status bits. */
669 (SCHIZO_PCIAFSR_PMA
| SCHIZO_PCIAFSR_PTA
|
670 SCHIZO_PCIAFSR_PRTRY
| SCHIZO_PCIAFSR_PPERR
|
671 SCHIZO_PCIAFSR_PTTO
| SCHIZO_PCIAFSR_PUNUS
|
672 SCHIZO_PCIAFSR_SMA
| SCHIZO_PCIAFSR_STA
|
673 SCHIZO_PCIAFSR_SRTRY
| SCHIZO_PCIAFSR_SPERR
|
674 SCHIZO_PCIAFSR_STTO
| SCHIZO_PCIAFSR_SUNUS
);
676 return schizo_pcierr_intr_other(pbm
);
677 schizo_write(afsr_reg
, error_bits
);
680 printk("%s: PCI Error, primary error type[%s]\n",
682 (((error_bits
& SCHIZO_PCIAFSR_PMA
) ?
684 ((error_bits
& SCHIZO_PCIAFSR_PTA
) ?
686 ((error_bits
& SCHIZO_PCIAFSR_PRTRY
) ?
687 "Excessive Retries" :
688 ((error_bits
& SCHIZO_PCIAFSR_PPERR
) ?
690 ((error_bits
& SCHIZO_PCIAFSR_PTTO
) ?
692 ((error_bits
& SCHIZO_PCIAFSR_PUNUS
) ?
693 "Bus Unusable" : "???"))))))));
694 printk("%s: bytemask[%04lx] was_block(%d) space(%s)\n",
696 (afsr
& SCHIZO_PCIAFSR_BMSK
) >> 32UL,
697 (afsr
& SCHIZO_PCIAFSR_BLK
) ? 1 : 0,
698 ((afsr
& SCHIZO_PCIAFSR_CFG
) ?
700 ((afsr
& SCHIZO_PCIAFSR_MEM
) ?
702 ((afsr
& SCHIZO_PCIAFSR_IO
) ?
704 printk("%s: PCI AFAR [%016lx]\n",
706 printk("%s: PCI Secondary errors [",
709 if (afsr
& SCHIZO_PCIAFSR_SMA
) {
711 printk("(Master Abort)");
713 if (afsr
& SCHIZO_PCIAFSR_STA
) {
715 printk("(Target Abort)");
717 if (afsr
& SCHIZO_PCIAFSR_SRTRY
) {
719 printk("(Excessive Retries)");
721 if (afsr
& SCHIZO_PCIAFSR_SPERR
) {
723 printk("(Parity Error)");
725 if (afsr
& SCHIZO_PCIAFSR_STTO
) {
729 if (afsr
& SCHIZO_PCIAFSR_SUNUS
) {
731 printk("(Bus Unusable)");
737 /* For the error types shown, scan PBM's PCI bus for devices
738 * which have logged that error type.
741 /* If we see a Target Abort, this could be the result of an
742 * IOMMU translation error of some sort. It is extremely
743 * useful to log this information as usually it indicates
744 * a bug in the IOMMU support code or a PCI device driver.
746 if (error_bits
& (SCHIZO_PCIAFSR_PTA
| SCHIZO_PCIAFSR_STA
)) {
747 schizo_check_iommu_error(p
, PCI_ERR
);
748 pci_scan_for_target_abort(pbm
, pbm
->pci_bus
);
750 if (error_bits
& (SCHIZO_PCIAFSR_PMA
| SCHIZO_PCIAFSR_SMA
))
751 pci_scan_for_master_abort(pbm
, pbm
->pci_bus
);
753 /* For excessive retries, PSYCHO/PBM will abort the device
754 * and there is no way to specifically check for excessive
755 * retries in the config space status registers. So what
756 * we hope is that we'll catch it via the master/target
760 if (error_bits
& (SCHIZO_PCIAFSR_PPERR
| SCHIZO_PCIAFSR_SPERR
))
761 pci_scan_for_parity_error(pbm
, pbm
->pci_bus
);
766 #define SCHIZO_SAFARI_ERRLOG 0x10018UL
768 #define SAFARI_ERRLOG_ERROUT 0x8000000000000000UL
770 #define BUS_ERROR_BADCMD 0x4000000000000000UL /* Schizo/Tomatillo */
771 #define BUS_ERROR_SSMDIS 0x2000000000000000UL /* Safari */
772 #define BUS_ERROR_BADMA 0x1000000000000000UL /* Safari */
773 #define BUS_ERROR_BADMB 0x0800000000000000UL /* Safari */
774 #define BUS_ERROR_BADMC 0x0400000000000000UL /* Safari */
775 #define BUS_ERROR_SNOOP_GR 0x0000000000200000UL /* Tomatillo */
776 #define BUS_ERROR_SNOOP_PCI 0x0000000000100000UL /* Tomatillo */
777 #define BUS_ERROR_SNOOP_RD 0x0000000000080000UL /* Tomatillo */
778 #define BUS_ERROR_SNOOP_RDS 0x0000000000020000UL /* Tomatillo */
779 #define BUS_ERROR_SNOOP_RDSA 0x0000000000010000UL /* Tomatillo */
780 #define BUS_ERROR_SNOOP_OWN 0x0000000000008000UL /* Tomatillo */
781 #define BUS_ERROR_SNOOP_RDO 0x0000000000004000UL /* Tomatillo */
782 #define BUS_ERROR_CPU1PS 0x0000000000002000UL /* Safari */
783 #define BUS_ERROR_WDATA_PERR 0x0000000000002000UL /* Tomatillo */
784 #define BUS_ERROR_CPU1PB 0x0000000000001000UL /* Safari */
785 #define BUS_ERROR_CTRL_PERR 0x0000000000001000UL /* Tomatillo */
786 #define BUS_ERROR_CPU0PS 0x0000000000000800UL /* Safari */
787 #define BUS_ERROR_SNOOP_ERR 0x0000000000000800UL /* Tomatillo */
788 #define BUS_ERROR_CPU0PB 0x0000000000000400UL /* Safari */
789 #define BUS_ERROR_JBUS_ILL_B 0x0000000000000400UL /* Tomatillo */
790 #define BUS_ERROR_CIQTO 0x0000000000000200UL /* Safari */
791 #define BUS_ERROR_LPQTO 0x0000000000000100UL /* Safari */
792 #define BUS_ERROR_JBUS_ILL_C 0x0000000000000100UL /* Tomatillo */
793 #define BUS_ERROR_SFPQTO 0x0000000000000080UL /* Safari */
794 #define BUS_ERROR_UFPQTO 0x0000000000000040UL /* Safari */
795 #define BUS_ERROR_RD_PERR 0x0000000000000040UL /* Tomatillo */
796 #define BUS_ERROR_APERR 0x0000000000000020UL /* Safari/Tomatillo */
797 #define BUS_ERROR_UNMAP 0x0000000000000010UL /* Safari/Tomatillo */
798 #define BUS_ERROR_BUSERR 0x0000000000000004UL /* Safari/Tomatillo */
799 #define BUS_ERROR_TIMEOUT 0x0000000000000002UL /* Safari/Tomatillo */
800 #define BUS_ERROR_ILL 0x0000000000000001UL /* Safari */
802 /* We only expect UNMAP errors here. The rest of the Safari errors
803 * are marked fatal and thus cause a system reset.
805 static irqreturn_t
schizo_safarierr_intr(int irq
, void *dev_id
)
807 struct pci_pbm_info
*pbm
= dev_id
;
808 struct pci_controller_info
*p
= pbm
->parent
;
811 errlog
= schizo_read(pbm
->controller_regs
+ SCHIZO_SAFARI_ERRLOG
);
812 schizo_write(pbm
->controller_regs
+ SCHIZO_SAFARI_ERRLOG
,
813 errlog
& ~(SAFARI_ERRLOG_ERROUT
));
815 if (!(errlog
& BUS_ERROR_UNMAP
)) {
816 printk("%s: Unexpected Safari/JBUS error interrupt, errlog[%016lx]\n",
822 printk("%s: Safari/JBUS interrupt, UNMAPPED error, interrogating IOMMUs.\n",
824 schizo_check_iommu_error(p
, SAFARI_ERR
);
829 /* Nearly identical to PSYCHO equivalents... */
830 #define SCHIZO_ECC_CTRL 0x10020UL
831 #define SCHIZO_ECCCTRL_EE 0x8000000000000000UL /* Enable ECC Checking */
832 #define SCHIZO_ECCCTRL_UE 0x4000000000000000UL /* Enable UE Interrupts */
833 #define SCHIZO_ECCCTRL_CE 0x2000000000000000UL /* Enable CE INterrupts */
835 #define SCHIZO_SAFARI_ERRCTRL 0x10008UL
836 #define SCHIZO_SAFERRCTRL_EN 0x8000000000000000UL
837 #define SCHIZO_SAFARI_IRQCTRL 0x10010UL
838 #define SCHIZO_SAFIRQCTRL_EN 0x8000000000000000UL
840 static int pbm_routes_this_ino(struct pci_pbm_info
*pbm
, u32 ino
)
844 if (pbm
->ino_bitmap
& (1UL << ino
))
850 /* How the Tomatillo IRQs are routed around is pure guesswork here.
852 * All the Tomatillo devices I see in prtconf dumps seem to have only
853 * a single PCI bus unit attached to it. It would seem they are separate
854 * devices because their PortID (ie. JBUS ID) values are all different
855 * and thus the registers are mapped to totally different locations.
857 * However, two Tomatillo's look "similar" in that the only difference
858 * in their PortID is the lowest bit.
860 * So if we were to ignore this lower bit, it certainly looks like two
861 * PCI bus units of the same Tomatillo. I still have not really
862 * figured this out...
864 static void tomatillo_register_error_handlers(struct pci_pbm_info
*pbm
)
866 struct of_device
*op
= of_find_device_by_node(pbm
->prom_node
);
867 u64 tmp
, err_mask
, err_no_mask
;
870 /* Tomatillo IRQ property layout is:
878 if (pbm_routes_this_ino(pbm
, SCHIZO_UE_INO
)) {
879 err
= request_irq(op
->irqs
[1], schizo_ue_intr
, 0,
880 "TOMATILLO_UE", pbm
);
882 printk(KERN_WARNING
"%s: Could not register UE, "
883 "err=%d\n", pbm
->name
, err
);
885 if (pbm_routes_this_ino(pbm
, SCHIZO_CE_INO
)) {
886 err
= request_irq(op
->irqs
[2], schizo_ce_intr
, 0,
887 "TOMATILLO_CE", pbm
);
889 printk(KERN_WARNING
"%s: Could not register CE, "
890 "err=%d\n", pbm
->name
, err
);
893 if (pbm_routes_this_ino(pbm
, SCHIZO_PCIERR_A_INO
)) {
894 err
= request_irq(op
->irqs
[0], schizo_pcierr_intr
, 0,
895 "TOMATILLO_PCIERR", pbm
);
896 } else if (pbm_routes_this_ino(pbm
, SCHIZO_PCIERR_B_INO
)) {
897 err
= request_irq(op
->irqs
[0], schizo_pcierr_intr
, 0,
898 "TOMATILLO_PCIERR", pbm
);
901 printk(KERN_WARNING
"%s: Could not register PCIERR, "
902 "err=%d\n", pbm
->name
, err
);
904 if (pbm_routes_this_ino(pbm
, SCHIZO_SERR_INO
)) {
905 err
= request_irq(op
->irqs
[3], schizo_safarierr_intr
, 0,
906 "TOMATILLO_SERR", pbm
);
908 printk(KERN_WARNING
"%s: Could not register SERR, "
909 "err=%d\n", pbm
->name
, err
);
912 /* Enable UE and CE interrupts for controller. */
913 schizo_write(pbm
->controller_regs
+ SCHIZO_ECC_CTRL
,
918 /* Enable PCI Error interrupts and clear error
921 err_mask
= (SCHIZO_PCICTRL_BUS_UNUS
|
922 SCHIZO_PCICTRL_TTO_ERR
|
923 SCHIZO_PCICTRL_RTRY_ERR
|
924 SCHIZO_PCICTRL_SERR
|
927 err_no_mask
= SCHIZO_PCICTRL_DTO_ERR
;
929 tmp
= schizo_read(pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
);
932 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
, tmp
);
934 err_mask
= (SCHIZO_PCIAFSR_PMA
| SCHIZO_PCIAFSR_PTA
|
935 SCHIZO_PCIAFSR_PRTRY
| SCHIZO_PCIAFSR_PPERR
|
936 SCHIZO_PCIAFSR_PTTO
|
937 SCHIZO_PCIAFSR_SMA
| SCHIZO_PCIAFSR_STA
|
938 SCHIZO_PCIAFSR_SRTRY
| SCHIZO_PCIAFSR_SPERR
|
939 SCHIZO_PCIAFSR_STTO
);
941 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_AFSR
, err_mask
);
943 err_mask
= (BUS_ERROR_BADCMD
| BUS_ERROR_SNOOP_GR
|
944 BUS_ERROR_SNOOP_PCI
| BUS_ERROR_SNOOP_RD
|
945 BUS_ERROR_SNOOP_RDS
| BUS_ERROR_SNOOP_RDSA
|
946 BUS_ERROR_SNOOP_OWN
| BUS_ERROR_SNOOP_RDO
|
947 BUS_ERROR_WDATA_PERR
| BUS_ERROR_CTRL_PERR
|
948 BUS_ERROR_SNOOP_ERR
| BUS_ERROR_JBUS_ILL_B
|
949 BUS_ERROR_JBUS_ILL_C
| BUS_ERROR_RD_PERR
|
950 BUS_ERROR_APERR
| BUS_ERROR_UNMAP
|
951 BUS_ERROR_BUSERR
| BUS_ERROR_TIMEOUT
);
953 schizo_write(pbm
->controller_regs
+ SCHIZO_SAFARI_ERRCTRL
,
954 (SCHIZO_SAFERRCTRL_EN
| err_mask
));
956 schizo_write(pbm
->controller_regs
+ SCHIZO_SAFARI_IRQCTRL
,
957 (SCHIZO_SAFIRQCTRL_EN
| (BUS_ERROR_UNMAP
)));
960 static void schizo_register_error_handlers(struct pci_pbm_info
*pbm
)
962 struct of_device
*op
= of_find_device_by_node(pbm
->prom_node
);
963 u64 tmp
, err_mask
, err_no_mask
;
966 /* Schizo IRQ property layout is:
974 if (pbm_routes_this_ino(pbm
, SCHIZO_UE_INO
)) {
975 err
= request_irq(op
->irqs
[1], schizo_ue_intr
, 0,
978 printk(KERN_WARNING
"%s: Could not register UE, "
979 "err=%d\n", pbm
->name
, err
);
981 if (pbm_routes_this_ino(pbm
, SCHIZO_CE_INO
)) {
982 err
= request_irq(op
->irqs
[2], schizo_ce_intr
, 0,
985 printk(KERN_WARNING
"%s: Could not register CE, "
986 "err=%d\n", pbm
->name
, err
);
989 if (pbm_routes_this_ino(pbm
, SCHIZO_PCIERR_A_INO
)) {
990 err
= request_irq(op
->irqs
[0], schizo_pcierr_intr
, 0,
991 "SCHIZO_PCIERR", pbm
);
992 } else if (pbm_routes_this_ino(pbm
, SCHIZO_PCIERR_B_INO
)) {
993 err
= request_irq(op
->irqs
[0], schizo_pcierr_intr
, 0,
994 "SCHIZO_PCIERR", pbm
);
997 printk(KERN_WARNING
"%s: Could not register PCIERR, "
998 "err=%d\n", pbm
->name
, err
);
1000 if (pbm_routes_this_ino(pbm
, SCHIZO_SERR_INO
)) {
1001 err
= request_irq(op
->irqs
[3], schizo_safarierr_intr
, 0,
1002 "SCHIZO_SERR", pbm
);
1004 printk(KERN_WARNING
"%s: Could not register SERR, "
1005 "err=%d\n", pbm
->name
, err
);
1008 /* Enable UE and CE interrupts for controller. */
1009 schizo_write(pbm
->controller_regs
+ SCHIZO_ECC_CTRL
,
1010 (SCHIZO_ECCCTRL_EE
|
1012 SCHIZO_ECCCTRL_CE
));
1014 err_mask
= (SCHIZO_PCICTRL_BUS_UNUS
|
1015 SCHIZO_PCICTRL_ESLCK
|
1016 SCHIZO_PCICTRL_TTO_ERR
|
1017 SCHIZO_PCICTRL_RTRY_ERR
|
1018 SCHIZO_PCICTRL_SBH_ERR
|
1019 SCHIZO_PCICTRL_SERR
|
1020 SCHIZO_PCICTRL_EEN
);
1022 err_no_mask
= (SCHIZO_PCICTRL_DTO_ERR
|
1023 SCHIZO_PCICTRL_SBH_INT
);
1025 /* Enable PCI Error interrupts and clear error
1026 * bits for each PBM.
1028 tmp
= schizo_read(pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
);
1030 tmp
&= ~err_no_mask
;
1031 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
, tmp
);
1033 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_AFSR
,
1034 (SCHIZO_PCIAFSR_PMA
| SCHIZO_PCIAFSR_PTA
|
1035 SCHIZO_PCIAFSR_PRTRY
| SCHIZO_PCIAFSR_PPERR
|
1036 SCHIZO_PCIAFSR_PTTO
| SCHIZO_PCIAFSR_PUNUS
|
1037 SCHIZO_PCIAFSR_SMA
| SCHIZO_PCIAFSR_STA
|
1038 SCHIZO_PCIAFSR_SRTRY
| SCHIZO_PCIAFSR_SPERR
|
1039 SCHIZO_PCIAFSR_STTO
| SCHIZO_PCIAFSR_SUNUS
));
1041 /* Make all Safari error conditions fatal except unmapped
1042 * errors which we make generate interrupts.
1044 err_mask
= (BUS_ERROR_BADCMD
| BUS_ERROR_SSMDIS
|
1045 BUS_ERROR_BADMA
| BUS_ERROR_BADMB
|
1047 BUS_ERROR_CPU1PS
| BUS_ERROR_CPU1PB
|
1048 BUS_ERROR_CPU0PS
| BUS_ERROR_CPU0PB
|
1050 BUS_ERROR_LPQTO
| BUS_ERROR_SFPQTO
|
1051 BUS_ERROR_UFPQTO
| BUS_ERROR_APERR
|
1052 BUS_ERROR_BUSERR
| BUS_ERROR_TIMEOUT
|
1055 /* XXX Something wrong with some Excalibur systems
1056 * XXX Sun is shipping. The behavior on a 2-cpu
1057 * XXX machine is that both CPU1 parity error bits
1058 * XXX are set and are immediately set again when
1059 * XXX their error status bits are cleared. Just
1060 * XXX ignore them for now. -DaveM
1062 err_mask
&= ~(BUS_ERROR_CPU1PS
| BUS_ERROR_CPU1PB
|
1063 BUS_ERROR_CPU0PS
| BUS_ERROR_CPU0PB
);
1066 schizo_write(pbm
->controller_regs
+ SCHIZO_SAFARI_ERRCTRL
,
1067 (SCHIZO_SAFERRCTRL_EN
| err_mask
));
1070 static void pbm_config_busmastering(struct pci_pbm_info
*pbm
)
1074 /* Set cache-line size to 64 bytes, this is actually
1075 * a nop but I do it for completeness.
1077 addr
= schizo_pci_config_mkaddr(pbm
, pbm
->pci_first_busno
,
1078 0, PCI_CACHE_LINE_SIZE
);
1079 pci_config_write8(addr
, 64 / sizeof(u32
));
1081 /* Set PBM latency timer to 64 PCI clocks. */
1082 addr
= schizo_pci_config_mkaddr(pbm
, pbm
->pci_first_busno
,
1083 0, PCI_LATENCY_TIMER
);
1084 pci_config_write8(addr
, 64);
1087 static void __init
schizo_scan_bus(struct pci_pbm_info
*pbm
)
1089 pbm_config_busmastering(pbm
);
1090 pbm
->is_66mhz_capable
=
1091 (of_find_property(pbm
->prom_node
, "66mhz-capable", NULL
)
1094 pbm
->pci_bus
= pci_scan_one_pbm(pbm
);
1096 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
)
1097 tomatillo_register_error_handlers(pbm
);
1099 schizo_register_error_handlers(pbm
);
1102 #define SCHIZO_STRBUF_CONTROL (0x02800UL)
1103 #define SCHIZO_STRBUF_FLUSH (0x02808UL)
1104 #define SCHIZO_STRBUF_FSYNC (0x02810UL)
1105 #define SCHIZO_STRBUF_CTXFLUSH (0x02818UL)
1106 #define SCHIZO_STRBUF_CTXMATCH (0x10000UL)
1108 static void schizo_pbm_strbuf_init(struct pci_pbm_info
*pbm
)
1110 unsigned long base
= pbm
->pbm_regs
;
1113 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
) {
1114 /* TOMATILLO lacks streaming cache. */
1118 /* SCHIZO has context flushing. */
1119 pbm
->stc
.strbuf_control
= base
+ SCHIZO_STRBUF_CONTROL
;
1120 pbm
->stc
.strbuf_pflush
= base
+ SCHIZO_STRBUF_FLUSH
;
1121 pbm
->stc
.strbuf_fsync
= base
+ SCHIZO_STRBUF_FSYNC
;
1122 pbm
->stc
.strbuf_ctxflush
= base
+ SCHIZO_STRBUF_CTXFLUSH
;
1123 pbm
->stc
.strbuf_ctxmatch_base
= base
+ SCHIZO_STRBUF_CTXMATCH
;
1125 pbm
->stc
.strbuf_flushflag
= (volatile unsigned long *)
1126 ((((unsigned long)&pbm
->stc
.__flushflag_buf
[0])
1129 pbm
->stc
.strbuf_flushflag_pa
= (unsigned long)
1130 __pa(pbm
->stc
.strbuf_flushflag
);
1132 /* Turn off LRU locking and diag mode, enable the
1133 * streaming buffer and leave the rerun-disable
1134 * setting however OBP set it.
1136 control
= schizo_read(pbm
->stc
.strbuf_control
);
1137 control
&= ~(SCHIZO_STRBUF_CTRL_LPTR
|
1138 SCHIZO_STRBUF_CTRL_LENAB
|
1139 SCHIZO_STRBUF_CTRL_DENAB
);
1140 control
|= SCHIZO_STRBUF_CTRL_ENAB
;
1141 schizo_write(pbm
->stc
.strbuf_control
, control
);
1143 pbm
->stc
.strbuf_enabled
= 1;
1146 #define SCHIZO_IOMMU_CONTROL (0x00200UL)
1147 #define SCHIZO_IOMMU_TSBBASE (0x00208UL)
1148 #define SCHIZO_IOMMU_FLUSH (0x00210UL)
1149 #define SCHIZO_IOMMU_CTXFLUSH (0x00218UL)
1151 static int schizo_pbm_iommu_init(struct pci_pbm_info
*pbm
)
1153 struct iommu
*iommu
= pbm
->iommu
;
1154 unsigned long i
, tagbase
, database
;
1155 struct property
*prop
;
1156 u32 vdma
[2], dma_mask
;
1160 prop
= of_find_property(pbm
->prom_node
, "virtual-dma", NULL
);
1162 u32
*val
= prop
->value
;
1167 /* No property, use default values. */
1168 vdma
[0] = 0xc0000000;
1169 vdma
[1] = 0x40000000;
1175 dma_mask
|= 0x1fffffff;
1180 dma_mask
|= 0x3fffffff;
1185 dma_mask
|= 0x7fffffff;
1190 prom_printf("SCHIZO: strange virtual-dma size.\n");
1194 /* Register addresses, SCHIZO has iommu ctx flushing. */
1195 iommu
->iommu_control
= pbm
->pbm_regs
+ SCHIZO_IOMMU_CONTROL
;
1196 iommu
->iommu_tsbbase
= pbm
->pbm_regs
+ SCHIZO_IOMMU_TSBBASE
;
1197 iommu
->iommu_flush
= pbm
->pbm_regs
+ SCHIZO_IOMMU_FLUSH
;
1198 iommu
->iommu_tags
= iommu
->iommu_flush
+ (0xa580UL
- 0x0210UL
);
1199 iommu
->iommu_ctxflush
= pbm
->pbm_regs
+ SCHIZO_IOMMU_CTXFLUSH
;
1201 /* We use the main control/status register of SCHIZO as the write
1202 * completion register.
1204 iommu
->write_complete_reg
= pbm
->controller_regs
+ 0x10000UL
;
1207 * Invalidate TLB Entries.
1209 control
= schizo_read(iommu
->iommu_control
);
1210 control
|= SCHIZO_IOMMU_CTRL_DENAB
;
1211 schizo_write(iommu
->iommu_control
, control
);
1213 tagbase
= SCHIZO_IOMMU_TAG
, database
= SCHIZO_IOMMU_DATA
;
1215 for(i
= 0; i
< 16; i
++) {
1216 schizo_write(pbm
->pbm_regs
+ tagbase
+ (i
* 8UL), 0);
1217 schizo_write(pbm
->pbm_regs
+ database
+ (i
* 8UL), 0);
1220 /* Leave diag mode enabled for full-flushing done
1223 err
= iommu_table_init(iommu
, tsbsize
* 8 * 1024, vdma
[0], dma_mask
,
1228 schizo_write(iommu
->iommu_tsbbase
, __pa(iommu
->page_table
));
1230 control
= schizo_read(iommu
->iommu_control
);
1231 control
&= ~(SCHIZO_IOMMU_CTRL_TSBSZ
| SCHIZO_IOMMU_CTRL_TBWSZ
);
1234 control
|= SCHIZO_IOMMU_TSBSZ_64K
;
1237 control
|= SCHIZO_IOMMU_TSBSZ_128K
;
1241 control
|= SCHIZO_IOMMU_CTRL_ENAB
;
1242 schizo_write(iommu
->iommu_control
, control
);
1247 #define SCHIZO_PCI_IRQ_RETRY (0x1a00UL)
1248 #define SCHIZO_IRQ_RETRY_INF 0xffUL
1250 #define SCHIZO_PCI_DIAG (0x2020UL)
1251 #define SCHIZO_PCIDIAG_D_BADECC (1UL << 10UL) /* Disable BAD ECC errors (Schizo) */
1252 #define SCHIZO_PCIDIAG_D_BYPASS (1UL << 9UL) /* Disable MMU bypass mode (Schizo/Tomatillo) */
1253 #define SCHIZO_PCIDIAG_D_TTO (1UL << 8UL) /* Disable TTO errors (Schizo/Tomatillo) */
1254 #define SCHIZO_PCIDIAG_D_RTRYARB (1UL << 7UL) /* Disable retry arbitration (Schizo) */
1255 #define SCHIZO_PCIDIAG_D_RETRY (1UL << 6UL) /* Disable retry limit (Schizo/Tomatillo) */
1256 #define SCHIZO_PCIDIAG_D_INTSYNC (1UL << 5UL) /* Disable interrupt/DMA synch (Schizo/Tomatillo) */
1257 #define SCHIZO_PCIDIAG_I_DMA_PARITY (1UL << 3UL) /* Invert DMA parity (Schizo/Tomatillo) */
1258 #define SCHIZO_PCIDIAG_I_PIOD_PARITY (1UL << 2UL) /* Invert PIO data parity (Schizo/Tomatillo) */
1259 #define SCHIZO_PCIDIAG_I_PIOA_PARITY (1UL << 1UL) /* Invert PIO address parity (Schizo/Tomatillo) */
1261 #define TOMATILLO_PCI_IOC_CSR (0x2248UL)
1262 #define TOMATILLO_IOC_PART_WPENAB 0x0000000000080000UL
1263 #define TOMATILLO_IOC_RDMULT_PENAB 0x0000000000040000UL
1264 #define TOMATILLO_IOC_RDONE_PENAB 0x0000000000020000UL
1265 #define TOMATILLO_IOC_RDLINE_PENAB 0x0000000000010000UL
1266 #define TOMATILLO_IOC_RDMULT_PLEN 0x000000000000c000UL
1267 #define TOMATILLO_IOC_RDMULT_PLEN_SHIFT 14UL
1268 #define TOMATILLO_IOC_RDONE_PLEN 0x0000000000003000UL
1269 #define TOMATILLO_IOC_RDONE_PLEN_SHIFT 12UL
1270 #define TOMATILLO_IOC_RDLINE_PLEN 0x0000000000000c00UL
1271 #define TOMATILLO_IOC_RDLINE_PLEN_SHIFT 10UL
1272 #define TOMATILLO_IOC_PREF_OFF 0x00000000000003f8UL
1273 #define TOMATILLO_IOC_PREF_OFF_SHIFT 3UL
1274 #define TOMATILLO_IOC_RDMULT_CPENAB 0x0000000000000004UL
1275 #define TOMATILLO_IOC_RDONE_CPENAB 0x0000000000000002UL
1276 #define TOMATILLO_IOC_RDLINE_CPENAB 0x0000000000000001UL
1278 #define TOMATILLO_PCI_IOC_TDIAG (0x2250UL)
1279 #define TOMATILLO_PCI_IOC_DDIAG (0x2290UL)
1281 static void schizo_pbm_hw_init(struct pci_pbm_info
*pbm
)
1283 struct property
*prop
;
1286 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_IRQ_RETRY
, 5);
1288 tmp
= schizo_read(pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
);
1290 /* Enable arbiter for all PCI slots. */
1293 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
&&
1294 pbm
->chip_version
>= 0x2)
1295 tmp
|= 0x3UL
<< SCHIZO_PCICTRL_PTO_SHIFT
;
1297 prop
= of_find_property(pbm
->prom_node
, "no-bus-parking", NULL
);
1299 tmp
|= SCHIZO_PCICTRL_PARK
;
1301 tmp
&= ~SCHIZO_PCICTRL_PARK
;
1303 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
&&
1304 pbm
->chip_version
<= 0x1)
1305 tmp
|= SCHIZO_PCICTRL_DTO_INT
;
1307 tmp
&= ~SCHIZO_PCICTRL_DTO_INT
;
1309 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
)
1310 tmp
|= (SCHIZO_PCICTRL_MRM_PREF
|
1311 SCHIZO_PCICTRL_RDO_PREF
|
1312 SCHIZO_PCICTRL_RDL_PREF
);
1314 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
, tmp
);
1316 tmp
= schizo_read(pbm
->pbm_regs
+ SCHIZO_PCI_DIAG
);
1317 tmp
&= ~(SCHIZO_PCIDIAG_D_RTRYARB
|
1318 SCHIZO_PCIDIAG_D_RETRY
|
1319 SCHIZO_PCIDIAG_D_INTSYNC
);
1320 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_DIAG
, tmp
);
1322 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
) {
1323 /* Clear prefetch lengths to workaround a bug in
1326 tmp
= (TOMATILLO_IOC_PART_WPENAB
|
1327 (1 << TOMATILLO_IOC_PREF_OFF_SHIFT
) |
1328 TOMATILLO_IOC_RDMULT_CPENAB
|
1329 TOMATILLO_IOC_RDONE_CPENAB
|
1330 TOMATILLO_IOC_RDLINE_CPENAB
);
1332 schizo_write(pbm
->pbm_regs
+ TOMATILLO_PCI_IOC_CSR
,
1337 static int __init
schizo_pbm_init(struct pci_controller_info
*p
,
1338 struct device_node
*dp
, u32 portid
,
1341 const struct linux_prom64_registers
*regs
;
1342 struct pci_pbm_info
*pbm
;
1343 const char *chipset_name
;
1346 switch (chip_type
) {
1347 case PBM_CHIP_TYPE_TOMATILLO
:
1348 chipset_name
= "TOMATILLO";
1351 case PBM_CHIP_TYPE_SCHIZO_PLUS
:
1352 chipset_name
= "SCHIZO+";
1355 case PBM_CHIP_TYPE_SCHIZO
:
1357 chipset_name
= "SCHIZO";
1361 /* For SCHIZO, three OBP regs:
1362 * 1) PBM controller regs
1363 * 2) Schizo front-end controller regs (same for both PBMs)
1364 * 3) PBM PCI config space
1366 * For TOMATILLO, four OBP regs:
1367 * 1) PBM controller regs
1368 * 2) Tomatillo front-end controller regs
1369 * 3) PBM PCI config space
1372 regs
= of_get_property(dp
, "reg", NULL
);
1374 is_pbm_a
= ((regs
[0].phys_addr
& 0x00700000) == 0x00600000);
1380 pbm
->next
= pci_pbm_root
;
1383 pbm
->numa_node
= -1;
1385 pbm
->scan_bus
= schizo_scan_bus
;
1386 pbm
->pci_ops
= &sun4u_pci_ops
;
1387 pbm
->config_space_reg_bits
= 8;
1389 pbm
->index
= pci_num_pbms
++;
1391 pbm
->portid
= portid
;
1393 pbm
->prom_node
= dp
;
1395 pbm
->chip_type
= chip_type
;
1396 pbm
->chip_version
= of_getintprop_default(dp
, "version#", 0);
1397 pbm
->chip_revision
= of_getintprop_default(dp
, "module-version#", 0);
1399 pbm
->pbm_regs
= regs
[0].phys_addr
;
1400 pbm
->controller_regs
= regs
[1].phys_addr
- 0x10000UL
;
1402 if (chip_type
== PBM_CHIP_TYPE_TOMATILLO
)
1403 pbm
->sync_reg
= regs
[3].phys_addr
+ 0x1a18UL
;
1405 pbm
->name
= dp
->full_name
;
1407 printk("%s: %s PCI Bus Module ver[%x:%x]\n",
1408 pbm
->name
, chipset_name
,
1409 pbm
->chip_version
, pbm
->chip_revision
);
1411 schizo_pbm_hw_init(pbm
);
1413 pci_determine_mem_io_space(pbm
);
1415 pci_get_pbm_props(pbm
);
1417 err
= schizo_pbm_iommu_init(pbm
);
1421 schizo_pbm_strbuf_init(pbm
);
1426 static inline int portid_compare(u32 x
, u32 y
, int chip_type
)
1428 if (chip_type
== PBM_CHIP_TYPE_TOMATILLO
) {
1436 static void __init
__schizo_init(struct device_node
*dp
, char *model_name
,
1439 struct pci_controller_info
*p
;
1440 struct pci_pbm_info
*pbm
;
1441 struct iommu
*iommu
;
1444 portid
= of_getintprop_default(dp
, "portid", 0xff);
1446 for (pbm
= pci_pbm_root
; pbm
; pbm
= pbm
->next
) {
1447 if (portid_compare(pbm
->portid
, portid
, chip_type
)) {
1448 if (schizo_pbm_init(pbm
->parent
, dp
,
1450 goto fatal_memory_error
;
1455 p
= kzalloc(sizeof(struct pci_controller_info
), GFP_ATOMIC
);
1457 goto fatal_memory_error
;
1459 iommu
= kzalloc(sizeof(struct iommu
), GFP_ATOMIC
);
1461 goto fatal_memory_error
;
1463 p
->pbm_A
.iommu
= iommu
;
1465 iommu
= kzalloc(sizeof(struct iommu
), GFP_ATOMIC
);
1467 goto fatal_memory_error
;
1469 p
->pbm_B
.iommu
= iommu
;
1471 if (schizo_pbm_init(p
, dp
, portid
, chip_type
))
1472 goto fatal_memory_error
;
1477 prom_printf("SCHIZO: Fatal memory allocation error.\n");
1481 void __init
schizo_init(struct device_node
*dp
, char *model_name
)
1483 __schizo_init(dp
, model_name
, PBM_CHIP_TYPE_SCHIZO
);
1486 void __init
schizo_plus_init(struct device_node
*dp
, char *model_name
)
1488 __schizo_init(dp
, model_name
, PBM_CHIP_TYPE_SCHIZO_PLUS
);
1491 void __init
tomatillo_init(struct device_node
*dp
, char *model_name
)
1493 __schizo_init(dp
, model_name
, PBM_CHIP_TYPE_TOMATILLO
);