1 /* $Id: pci_schizo.c,v 1.24 2002/01/23 11:27:32 davem Exp $
2 * pci_schizo.c: SCHIZO/TOMATILLO specific PCI controller support.
4 * Copyright (C) 2001, 2002, 2003 David S. Miller (davem@redhat.com)
7 #include <linux/kernel.h>
8 #include <linux/types.h>
10 #include <linux/init.h>
11 #include <linux/slab.h>
12 #include <linux/interrupt.h>
15 #include <asm/iommu.h>
18 #include <asm/pstate.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 /* Just make sure the bus number is in range. */
108 static int schizo_out_of_range(struct pci_pbm_info
*pbm
,
112 if (bus
< pbm
->pci_first_busno
||
113 bus
> pbm
->pci_last_busno
)
118 /* SCHIZO PCI configuration space accessors. */
120 static int schizo_read_pci_cfg(struct pci_bus
*bus_dev
, unsigned int devfn
,
121 int where
, int size
, u32
*value
)
123 struct pci_pbm_info
*pbm
= bus_dev
->sysdata
;
124 unsigned char bus
= bus_dev
->number
;
141 addr
= schizo_pci_config_mkaddr(pbm
, bus
, devfn
, where
);
143 return PCIBIOS_SUCCESSFUL
;
145 if (schizo_out_of_range(pbm
, bus
, devfn
))
146 return PCIBIOS_SUCCESSFUL
;
149 pci_config_read8((u8
*)addr
, &tmp8
);
155 printk("pci_read_config_word: misaligned reg [%x]\n",
157 return PCIBIOS_SUCCESSFUL
;
159 pci_config_read16((u16
*)addr
, &tmp16
);
165 printk("pci_read_config_dword: misaligned reg [%x]\n",
167 return PCIBIOS_SUCCESSFUL
;
169 pci_config_read32(addr
, value
);
172 return PCIBIOS_SUCCESSFUL
;
175 static int schizo_write_pci_cfg(struct pci_bus
*bus_dev
, unsigned int devfn
,
176 int where
, int size
, u32 value
)
178 struct pci_pbm_info
*pbm
= bus_dev
->sysdata
;
179 unsigned char bus
= bus_dev
->number
;
182 addr
= schizo_pci_config_mkaddr(pbm
, bus
, devfn
, where
);
184 return PCIBIOS_SUCCESSFUL
;
186 if (schizo_out_of_range(pbm
, bus
, devfn
))
187 return PCIBIOS_SUCCESSFUL
;
191 pci_config_write8((u8
*)addr
, value
);
196 printk("pci_write_config_word: misaligned reg [%x]\n",
198 return PCIBIOS_SUCCESSFUL
;
200 pci_config_write16((u16
*)addr
, value
);
205 printk("pci_write_config_dword: misaligned reg [%x]\n",
207 return PCIBIOS_SUCCESSFUL
;
210 pci_config_write32(addr
, value
);
212 return PCIBIOS_SUCCESSFUL
;
215 static struct pci_ops schizo_ops
= {
216 .read
= schizo_read_pci_cfg
,
217 .write
= schizo_write_pci_cfg
,
220 /* SCHIZO error handling support. */
221 enum schizo_error_type
{
222 UE_ERR
, CE_ERR
, PCI_ERR
, SAFARI_ERR
225 static DEFINE_SPINLOCK(stc_buf_lock
);
226 static unsigned long stc_error_buf
[128];
227 static unsigned long stc_tag_buf
[16];
228 static unsigned long stc_line_buf
[16];
230 #define SCHIZO_UE_INO 0x30 /* Uncorrectable ECC error */
231 #define SCHIZO_CE_INO 0x31 /* Correctable ECC error */
232 #define SCHIZO_PCIERR_A_INO 0x32 /* PBM A PCI bus error */
233 #define SCHIZO_PCIERR_B_INO 0x33 /* PBM B PCI bus error */
234 #define SCHIZO_SERR_INO 0x34 /* Safari interface error */
236 struct pci_pbm_info
*pbm_for_ino(struct pci_controller_info
*p
, u32 ino
)
239 if (p
->pbm_A
.ino_bitmap
& (1UL << ino
))
241 if (p
->pbm_B
.ino_bitmap
& (1UL << ino
))
244 printk("PCI%d: No ino_bitmap entry for ino[%x], bitmaps "
245 "PBM_A[%016lx] PBM_B[%016lx]",
248 p
->pbm_B
.ino_bitmap
);
249 printk("PCI%d: Using PBM_A, report this problem immediately.\n",
255 #define SCHIZO_STC_ERR 0xb800UL /* --> 0xba00 */
256 #define SCHIZO_STC_TAG 0xba00UL /* --> 0xba80 */
257 #define SCHIZO_STC_LINE 0xbb00UL /* --> 0xbb80 */
259 #define SCHIZO_STCERR_WRITE 0x2UL
260 #define SCHIZO_STCERR_READ 0x1UL
262 #define SCHIZO_STCTAG_PPN 0x3fffffff00000000UL
263 #define SCHIZO_STCTAG_VPN 0x00000000ffffe000UL
264 #define SCHIZO_STCTAG_VALID 0x8000000000000000UL
265 #define SCHIZO_STCTAG_READ 0x4000000000000000UL
267 #define SCHIZO_STCLINE_LINDX 0x0000000007800000UL
268 #define SCHIZO_STCLINE_SPTR 0x000000000007e000UL
269 #define SCHIZO_STCLINE_LADDR 0x0000000000001fc0UL
270 #define SCHIZO_STCLINE_EPTR 0x000000000000003fUL
271 #define SCHIZO_STCLINE_VALID 0x0000000000600000UL
272 #define SCHIZO_STCLINE_FOFN 0x0000000000180000UL
274 static void __schizo_check_stc_error_pbm(struct pci_pbm_info
*pbm
,
275 enum schizo_error_type type
)
277 struct pci_strbuf
*strbuf
= &pbm
->stc
;
278 unsigned long regbase
= pbm
->pbm_regs
;
279 unsigned long err_base
, tag_base
, line_base
;
283 err_base
= regbase
+ SCHIZO_STC_ERR
;
284 tag_base
= regbase
+ SCHIZO_STC_TAG
;
285 line_base
= regbase
+ SCHIZO_STC_LINE
;
287 spin_lock(&stc_buf_lock
);
289 /* This is __REALLY__ dangerous. When we put the
290 * streaming buffer into diagnostic mode to probe
291 * it's tags and error status, we _must_ clear all
292 * of the line tag valid bits before re-enabling
293 * the streaming buffer. If any dirty data lives
294 * in the STC when we do this, we will end up
295 * invalidating it before it has a chance to reach
298 control
= schizo_read(strbuf
->strbuf_control
);
299 schizo_write(strbuf
->strbuf_control
,
300 (control
| SCHIZO_STRBUF_CTRL_DENAB
));
301 for (i
= 0; i
< 128; i
++) {
304 val
= schizo_read(err_base
+ (i
* 8UL));
305 schizo_write(err_base
+ (i
* 8UL), 0UL);
306 stc_error_buf
[i
] = val
;
308 for (i
= 0; i
< 16; i
++) {
309 stc_tag_buf
[i
] = schizo_read(tag_base
+ (i
* 8UL));
310 stc_line_buf
[i
] = schizo_read(line_base
+ (i
* 8UL));
311 schizo_write(tag_base
+ (i
* 8UL), 0UL);
312 schizo_write(line_base
+ (i
* 8UL), 0UL);
315 /* OK, state is logged, exit diagnostic mode. */
316 schizo_write(strbuf
->strbuf_control
, control
);
318 for (i
= 0; i
< 16; i
++) {
319 int j
, saw_error
, first
, last
;
324 for (j
= first
; j
< last
; j
++) {
325 unsigned long errval
= stc_error_buf
[j
];
328 printk("%s: STC_ERR(%d)[wr(%d)rd(%d)]\n",
331 (errval
& SCHIZO_STCERR_WRITE
) ? 1 : 0,
332 (errval
& SCHIZO_STCERR_READ
) ? 1 : 0);
335 if (saw_error
!= 0) {
336 unsigned long tagval
= stc_tag_buf
[i
];
337 unsigned long lineval
= stc_line_buf
[i
];
338 printk("%s: STC_TAG(%d)[PA(%016lx)VA(%08lx)V(%d)R(%d)]\n",
341 ((tagval
& SCHIZO_STCTAG_PPN
) >> 19UL),
342 (tagval
& SCHIZO_STCTAG_VPN
),
343 ((tagval
& SCHIZO_STCTAG_VALID
) ? 1 : 0),
344 ((tagval
& SCHIZO_STCTAG_READ
) ? 1 : 0));
346 /* XXX Should spit out per-bank error information... -DaveM */
347 printk("%s: STC_LINE(%d)[LIDX(%lx)SP(%lx)LADDR(%lx)EP(%lx)"
351 ((lineval
& SCHIZO_STCLINE_LINDX
) >> 23UL),
352 ((lineval
& SCHIZO_STCLINE_SPTR
) >> 13UL),
353 ((lineval
& SCHIZO_STCLINE_LADDR
) >> 6UL),
354 ((lineval
& SCHIZO_STCLINE_EPTR
) >> 0UL),
355 ((lineval
& SCHIZO_STCLINE_VALID
) ? 1 : 0),
356 ((lineval
& SCHIZO_STCLINE_FOFN
) ? 1 : 0));
360 spin_unlock(&stc_buf_lock
);
363 /* IOMMU is per-PBM in Schizo, so interrogate both for anonymous
364 * controller level errors.
367 #define SCHIZO_IOMMU_TAG 0xa580UL
368 #define SCHIZO_IOMMU_DATA 0xa600UL
370 #define SCHIZO_IOMMU_TAG_CTXT 0x0000001ffe000000UL
371 #define SCHIZO_IOMMU_TAG_ERRSTS 0x0000000001800000UL
372 #define SCHIZO_IOMMU_TAG_ERR 0x0000000000400000UL
373 #define SCHIZO_IOMMU_TAG_WRITE 0x0000000000200000UL
374 #define SCHIZO_IOMMU_TAG_STREAM 0x0000000000100000UL
375 #define SCHIZO_IOMMU_TAG_SIZE 0x0000000000080000UL
376 #define SCHIZO_IOMMU_TAG_VPAGE 0x000000000007ffffUL
378 #define SCHIZO_IOMMU_DATA_VALID 0x0000000100000000UL
379 #define SCHIZO_IOMMU_DATA_CACHE 0x0000000040000000UL
380 #define SCHIZO_IOMMU_DATA_PPAGE 0x000000003fffffffUL
382 static void schizo_check_iommu_error_pbm(struct pci_pbm_info
*pbm
,
383 enum schizo_error_type type
)
385 struct pci_iommu
*iommu
= pbm
->iommu
;
386 unsigned long iommu_tag
[16];
387 unsigned long iommu_data
[16];
392 spin_lock_irqsave(&iommu
->lock
, flags
);
393 control
= schizo_read(iommu
->iommu_control
);
394 if (control
& SCHIZO_IOMMU_CTRL_XLTEERR
) {
398 /* Clear the error encountered bit. */
399 control
&= ~SCHIZO_IOMMU_CTRL_XLTEERR
;
400 schizo_write(iommu
->iommu_control
, control
);
402 switch((control
& SCHIZO_IOMMU_CTRL_XLTESTAT
) >> 25UL) {
404 type_string
= "Protection Error";
407 type_string
= "Invalid Error";
410 type_string
= "TimeOut Error";
414 type_string
= "ECC Error";
417 printk("%s: IOMMU Error, type[%s]\n",
418 pbm
->name
, type_string
);
420 /* Put the IOMMU into diagnostic mode and probe
421 * it's TLB for entries with error status.
423 * It is very possible for another DVMA to occur
424 * while we do this probe, and corrupt the system
425 * further. But we are so screwed at this point
426 * that we are likely to crash hard anyways, so
427 * get as much diagnostic information to the
430 schizo_write(iommu
->iommu_control
,
431 control
| SCHIZO_IOMMU_CTRL_DENAB
);
433 base
= pbm
->pbm_regs
;
435 for (i
= 0; i
< 16; i
++) {
437 schizo_read(base
+ SCHIZO_IOMMU_TAG
+ (i
* 8UL));
439 schizo_read(base
+ SCHIZO_IOMMU_DATA
+ (i
* 8UL));
441 /* Now clear out the entry. */
442 schizo_write(base
+ SCHIZO_IOMMU_TAG
+ (i
* 8UL), 0);
443 schizo_write(base
+ SCHIZO_IOMMU_DATA
+ (i
* 8UL), 0);
446 /* Leave diagnostic mode. */
447 schizo_write(iommu
->iommu_control
, control
);
449 for (i
= 0; i
< 16; i
++) {
450 unsigned long tag
, data
;
453 if (!(tag
& SCHIZO_IOMMU_TAG_ERR
))
456 data
= iommu_data
[i
];
457 switch((tag
& SCHIZO_IOMMU_TAG_ERRSTS
) >> 23UL) {
459 type_string
= "Protection Error";
462 type_string
= "Invalid Error";
465 type_string
= "TimeOut Error";
469 type_string
= "ECC Error";
472 printk("%s: IOMMU TAG(%d)[error(%s) ctx(%x) wr(%d) str(%d) "
473 "sz(%dK) vpg(%08lx)]\n",
474 pbm
->name
, i
, type_string
,
475 (int)((tag
& SCHIZO_IOMMU_TAG_CTXT
) >> 25UL),
476 ((tag
& SCHIZO_IOMMU_TAG_WRITE
) ? 1 : 0),
477 ((tag
& SCHIZO_IOMMU_TAG_STREAM
) ? 1 : 0),
478 ((tag
& SCHIZO_IOMMU_TAG_SIZE
) ? 64 : 8),
479 (tag
& SCHIZO_IOMMU_TAG_VPAGE
) << IOMMU_PAGE_SHIFT
);
480 printk("%s: IOMMU DATA(%d)[valid(%d) cache(%d) ppg(%016lx)]\n",
482 ((data
& SCHIZO_IOMMU_DATA_VALID
) ? 1 : 0),
483 ((data
& SCHIZO_IOMMU_DATA_CACHE
) ? 1 : 0),
484 (data
& SCHIZO_IOMMU_DATA_PPAGE
) << IOMMU_PAGE_SHIFT
);
487 if (pbm
->stc
.strbuf_enabled
)
488 __schizo_check_stc_error_pbm(pbm
, type
);
489 spin_unlock_irqrestore(&iommu
->lock
, flags
);
492 static void schizo_check_iommu_error(struct pci_controller_info
*p
,
493 enum schizo_error_type type
)
495 schizo_check_iommu_error_pbm(&p
->pbm_A
, type
);
496 schizo_check_iommu_error_pbm(&p
->pbm_B
, type
);
499 /* Uncorrectable ECC error status gathering. */
500 #define SCHIZO_UE_AFSR 0x10030UL
501 #define SCHIZO_UE_AFAR 0x10038UL
503 #define SCHIZO_UEAFSR_PPIO 0x8000000000000000UL /* Safari */
504 #define SCHIZO_UEAFSR_PDRD 0x4000000000000000UL /* Safari/Tomatillo */
505 #define SCHIZO_UEAFSR_PDWR 0x2000000000000000UL /* Safari */
506 #define SCHIZO_UEAFSR_SPIO 0x1000000000000000UL /* Safari */
507 #define SCHIZO_UEAFSR_SDMA 0x0800000000000000UL /* Safari/Tomatillo */
508 #define SCHIZO_UEAFSR_ERRPNDG 0x0300000000000000UL /* Safari */
509 #define SCHIZO_UEAFSR_BMSK 0x000003ff00000000UL /* Safari */
510 #define SCHIZO_UEAFSR_QOFF 0x00000000c0000000UL /* Safari/Tomatillo */
511 #define SCHIZO_UEAFSR_AID 0x000000001f000000UL /* Safari/Tomatillo */
512 #define SCHIZO_UEAFSR_PARTIAL 0x0000000000800000UL /* Safari */
513 #define SCHIZO_UEAFSR_OWNEDIN 0x0000000000400000UL /* Safari */
514 #define SCHIZO_UEAFSR_MTAGSYND 0x00000000000f0000UL /* Safari */
515 #define SCHIZO_UEAFSR_MTAG 0x000000000000e000UL /* Safari */
516 #define SCHIZO_UEAFSR_ECCSYND 0x00000000000001ffUL /* Safari */
518 static irqreturn_t
schizo_ue_intr(int irq
, void *dev_id
)
520 struct pci_controller_info
*p
= dev_id
;
521 unsigned long afsr_reg
= p
->pbm_B
.controller_regs
+ SCHIZO_UE_AFSR
;
522 unsigned long afar_reg
= p
->pbm_B
.controller_regs
+ SCHIZO_UE_AFAR
;
523 unsigned long afsr
, afar
, error_bits
;
526 /* Latch uncorrectable error status. */
527 afar
= schizo_read(afar_reg
);
529 /* If either of the error pending bits are set in the
530 * AFSR, the error status is being actively updated by
531 * the hardware and we must re-read to get a clean value.
535 afsr
= schizo_read(afsr_reg
);
536 } while ((afsr
& SCHIZO_UEAFSR_ERRPNDG
) != 0 && --limit
);
538 /* Clear the primary/secondary error status bits. */
540 (SCHIZO_UEAFSR_PPIO
| SCHIZO_UEAFSR_PDRD
| SCHIZO_UEAFSR_PDWR
|
541 SCHIZO_UEAFSR_SPIO
| SCHIZO_UEAFSR_SDMA
);
544 schizo_write(afsr_reg
, error_bits
);
547 printk("PCI%d: Uncorrectable Error, primary error type[%s]\n",
549 (((error_bits
& SCHIZO_UEAFSR_PPIO
) ?
551 ((error_bits
& SCHIZO_UEAFSR_PDRD
) ?
553 ((error_bits
& SCHIZO_UEAFSR_PDWR
) ?
554 "DMA Write" : "???")))));
555 printk("PCI%d: bytemask[%04lx] qword_offset[%lx] SAFARI_AID[%02lx]\n",
557 (afsr
& SCHIZO_UEAFSR_BMSK
) >> 32UL,
558 (afsr
& SCHIZO_UEAFSR_QOFF
) >> 30UL,
559 (afsr
& SCHIZO_UEAFSR_AID
) >> 24UL);
560 printk("PCI%d: partial[%d] owned_in[%d] mtag[%lx] mtag_synd[%lx] ecc_sync[%lx]\n",
562 (afsr
& SCHIZO_UEAFSR_PARTIAL
) ? 1 : 0,
563 (afsr
& SCHIZO_UEAFSR_OWNEDIN
) ? 1 : 0,
564 (afsr
& SCHIZO_UEAFSR_MTAG
) >> 13UL,
565 (afsr
& SCHIZO_UEAFSR_MTAGSYND
) >> 16UL,
566 (afsr
& SCHIZO_UEAFSR_ECCSYND
) >> 0UL);
567 printk("PCI%d: UE AFAR [%016lx]\n", p
->index
, afar
);
568 printk("PCI%d: UE Secondary errors [", p
->index
);
570 if (afsr
& SCHIZO_UEAFSR_SPIO
) {
574 if (afsr
& SCHIZO_UEAFSR_SDMA
) {
582 /* Interrogate IOMMU for error status. */
583 schizo_check_iommu_error(p
, UE_ERR
);
588 #define SCHIZO_CE_AFSR 0x10040UL
589 #define SCHIZO_CE_AFAR 0x10048UL
591 #define SCHIZO_CEAFSR_PPIO 0x8000000000000000UL
592 #define SCHIZO_CEAFSR_PDRD 0x4000000000000000UL
593 #define SCHIZO_CEAFSR_PDWR 0x2000000000000000UL
594 #define SCHIZO_CEAFSR_SPIO 0x1000000000000000UL
595 #define SCHIZO_CEAFSR_SDMA 0x0800000000000000UL
596 #define SCHIZO_CEAFSR_ERRPNDG 0x0300000000000000UL
597 #define SCHIZO_CEAFSR_BMSK 0x000003ff00000000UL
598 #define SCHIZO_CEAFSR_QOFF 0x00000000c0000000UL
599 #define SCHIZO_CEAFSR_AID 0x000000001f000000UL
600 #define SCHIZO_CEAFSR_PARTIAL 0x0000000000800000UL
601 #define SCHIZO_CEAFSR_OWNEDIN 0x0000000000400000UL
602 #define SCHIZO_CEAFSR_MTAGSYND 0x00000000000f0000UL
603 #define SCHIZO_CEAFSR_MTAG 0x000000000000e000UL
604 #define SCHIZO_CEAFSR_ECCSYND 0x00000000000001ffUL
606 static irqreturn_t
schizo_ce_intr(int irq
, void *dev_id
)
608 struct pci_controller_info
*p
= dev_id
;
609 unsigned long afsr_reg
= p
->pbm_B
.controller_regs
+ SCHIZO_CE_AFSR
;
610 unsigned long afar_reg
= p
->pbm_B
.controller_regs
+ SCHIZO_CE_AFAR
;
611 unsigned long afsr
, afar
, error_bits
;
614 /* Latch error status. */
615 afar
= schizo_read(afar_reg
);
617 /* If either of the error pending bits are set in the
618 * AFSR, the error status is being actively updated by
619 * the hardware and we must re-read to get a clean value.
623 afsr
= schizo_read(afsr_reg
);
624 } while ((afsr
& SCHIZO_UEAFSR_ERRPNDG
) != 0 && --limit
);
626 /* Clear primary/secondary error status bits. */
628 (SCHIZO_CEAFSR_PPIO
| SCHIZO_CEAFSR_PDRD
| SCHIZO_CEAFSR_PDWR
|
629 SCHIZO_CEAFSR_SPIO
| SCHIZO_CEAFSR_SDMA
);
632 schizo_write(afsr_reg
, error_bits
);
635 printk("PCI%d: Correctable Error, primary error type[%s]\n",
637 (((error_bits
& SCHIZO_CEAFSR_PPIO
) ?
639 ((error_bits
& SCHIZO_CEAFSR_PDRD
) ?
641 ((error_bits
& SCHIZO_CEAFSR_PDWR
) ?
642 "DMA Write" : "???")))));
644 /* XXX Use syndrome and afar to print out module string just like
645 * XXX UDB CE trap handler does... -DaveM
647 printk("PCI%d: bytemask[%04lx] qword_offset[%lx] SAFARI_AID[%02lx]\n",
649 (afsr
& SCHIZO_UEAFSR_BMSK
) >> 32UL,
650 (afsr
& SCHIZO_UEAFSR_QOFF
) >> 30UL,
651 (afsr
& SCHIZO_UEAFSR_AID
) >> 24UL);
652 printk("PCI%d: partial[%d] owned_in[%d] mtag[%lx] mtag_synd[%lx] ecc_sync[%lx]\n",
654 (afsr
& SCHIZO_UEAFSR_PARTIAL
) ? 1 : 0,
655 (afsr
& SCHIZO_UEAFSR_OWNEDIN
) ? 1 : 0,
656 (afsr
& SCHIZO_UEAFSR_MTAG
) >> 13UL,
657 (afsr
& SCHIZO_UEAFSR_MTAGSYND
) >> 16UL,
658 (afsr
& SCHIZO_UEAFSR_ECCSYND
) >> 0UL);
659 printk("PCI%d: CE AFAR [%016lx]\n", p
->index
, afar
);
660 printk("PCI%d: CE Secondary errors [", p
->index
);
662 if (afsr
& SCHIZO_CEAFSR_SPIO
) {
666 if (afsr
& SCHIZO_CEAFSR_SDMA
) {
677 #define SCHIZO_PCI_AFSR 0x2010UL
678 #define SCHIZO_PCI_AFAR 0x2018UL
680 #define SCHIZO_PCIAFSR_PMA 0x8000000000000000UL /* Schizo/Tomatillo */
681 #define SCHIZO_PCIAFSR_PTA 0x4000000000000000UL /* Schizo/Tomatillo */
682 #define SCHIZO_PCIAFSR_PRTRY 0x2000000000000000UL /* Schizo/Tomatillo */
683 #define SCHIZO_PCIAFSR_PPERR 0x1000000000000000UL /* Schizo/Tomatillo */
684 #define SCHIZO_PCIAFSR_PTTO 0x0800000000000000UL /* Schizo/Tomatillo */
685 #define SCHIZO_PCIAFSR_PUNUS 0x0400000000000000UL /* Schizo */
686 #define SCHIZO_PCIAFSR_SMA 0x0200000000000000UL /* Schizo/Tomatillo */
687 #define SCHIZO_PCIAFSR_STA 0x0100000000000000UL /* Schizo/Tomatillo */
688 #define SCHIZO_PCIAFSR_SRTRY 0x0080000000000000UL /* Schizo/Tomatillo */
689 #define SCHIZO_PCIAFSR_SPERR 0x0040000000000000UL /* Schizo/Tomatillo */
690 #define SCHIZO_PCIAFSR_STTO 0x0020000000000000UL /* Schizo/Tomatillo */
691 #define SCHIZO_PCIAFSR_SUNUS 0x0010000000000000UL /* Schizo */
692 #define SCHIZO_PCIAFSR_BMSK 0x000003ff00000000UL /* Schizo/Tomatillo */
693 #define SCHIZO_PCIAFSR_BLK 0x0000000080000000UL /* Schizo/Tomatillo */
694 #define SCHIZO_PCIAFSR_CFG 0x0000000040000000UL /* Schizo/Tomatillo */
695 #define SCHIZO_PCIAFSR_MEM 0x0000000020000000UL /* Schizo/Tomatillo */
696 #define SCHIZO_PCIAFSR_IO 0x0000000010000000UL /* Schizo/Tomatillo */
698 #define SCHIZO_PCI_CTRL (0x2000UL)
699 #define SCHIZO_PCICTRL_BUS_UNUS (1UL << 63UL) /* Safari */
700 #define SCHIZO_PCICTRL_DTO_INT (1UL << 61UL) /* Tomatillo */
701 #define SCHIZO_PCICTRL_ARB_PRIO (0x1ff << 52UL) /* Tomatillo */
702 #define SCHIZO_PCICTRL_ESLCK (1UL << 51UL) /* Safari */
703 #define SCHIZO_PCICTRL_ERRSLOT (7UL << 48UL) /* Safari */
704 #define SCHIZO_PCICTRL_TTO_ERR (1UL << 38UL) /* Safari/Tomatillo */
705 #define SCHIZO_PCICTRL_RTRY_ERR (1UL << 37UL) /* Safari/Tomatillo */
706 #define SCHIZO_PCICTRL_DTO_ERR (1UL << 36UL) /* Safari/Tomatillo */
707 #define SCHIZO_PCICTRL_SBH_ERR (1UL << 35UL) /* Safari */
708 #define SCHIZO_PCICTRL_SERR (1UL << 34UL) /* Safari/Tomatillo */
709 #define SCHIZO_PCICTRL_PCISPD (1UL << 33UL) /* Safari */
710 #define SCHIZO_PCICTRL_MRM_PREF (1UL << 30UL) /* Tomatillo */
711 #define SCHIZO_PCICTRL_RDO_PREF (1UL << 29UL) /* Tomatillo */
712 #define SCHIZO_PCICTRL_RDL_PREF (1UL << 28UL) /* Tomatillo */
713 #define SCHIZO_PCICTRL_PTO (3UL << 24UL) /* Safari/Tomatillo */
714 #define SCHIZO_PCICTRL_PTO_SHIFT 24UL
715 #define SCHIZO_PCICTRL_TRWSW (7UL << 21UL) /* Tomatillo */
716 #define SCHIZO_PCICTRL_F_TGT_A (1UL << 20UL) /* Tomatillo */
717 #define SCHIZO_PCICTRL_S_DTO_INT (1UL << 19UL) /* Safari */
718 #define SCHIZO_PCICTRL_F_TGT_RT (1UL << 19UL) /* Tomatillo */
719 #define SCHIZO_PCICTRL_SBH_INT (1UL << 18UL) /* Safari */
720 #define SCHIZO_PCICTRL_T_DTO_INT (1UL << 18UL) /* Tomatillo */
721 #define SCHIZO_PCICTRL_EEN (1UL << 17UL) /* Safari/Tomatillo */
722 #define SCHIZO_PCICTRL_PARK (1UL << 16UL) /* Safari/Tomatillo */
723 #define SCHIZO_PCICTRL_PCIRST (1UL << 8UL) /* Safari */
724 #define SCHIZO_PCICTRL_ARB_S (0x3fUL << 0UL) /* Safari */
725 #define SCHIZO_PCICTRL_ARB_T (0xffUL << 0UL) /* Tomatillo */
727 static irqreturn_t
schizo_pcierr_intr_other(struct pci_pbm_info
*pbm
)
729 unsigned long csr_reg
, csr
, csr_error_bits
;
730 irqreturn_t ret
= IRQ_NONE
;
733 csr_reg
= pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
;
734 csr
= schizo_read(csr_reg
);
736 csr
& (SCHIZO_PCICTRL_BUS_UNUS
|
737 SCHIZO_PCICTRL_TTO_ERR
|
738 SCHIZO_PCICTRL_RTRY_ERR
|
739 SCHIZO_PCICTRL_DTO_ERR
|
740 SCHIZO_PCICTRL_SBH_ERR
|
741 SCHIZO_PCICTRL_SERR
);
742 if (csr_error_bits
) {
743 /* Clear the errors. */
744 schizo_write(csr_reg
, csr
);
747 if (csr_error_bits
& SCHIZO_PCICTRL_BUS_UNUS
)
748 printk("%s: Bus unusable error asserted.\n",
750 if (csr_error_bits
& SCHIZO_PCICTRL_TTO_ERR
)
751 printk("%s: PCI TRDY# timeout error asserted.\n",
753 if (csr_error_bits
& SCHIZO_PCICTRL_RTRY_ERR
)
754 printk("%s: PCI excessive retry error asserted.\n",
756 if (csr_error_bits
& SCHIZO_PCICTRL_DTO_ERR
)
757 printk("%s: PCI discard timeout error asserted.\n",
759 if (csr_error_bits
& SCHIZO_PCICTRL_SBH_ERR
)
760 printk("%s: PCI streaming byte hole error asserted.\n",
762 if (csr_error_bits
& SCHIZO_PCICTRL_SERR
)
763 printk("%s: PCI SERR signal asserted.\n",
767 pci_read_config_word(pbm
->pci_bus
->self
, PCI_STATUS
, &stat
);
768 if (stat
& (PCI_STATUS_PARITY
|
769 PCI_STATUS_SIG_TARGET_ABORT
|
770 PCI_STATUS_REC_TARGET_ABORT
|
771 PCI_STATUS_REC_MASTER_ABORT
|
772 PCI_STATUS_SIG_SYSTEM_ERROR
)) {
773 printk("%s: PCI bus error, PCI_STATUS[%04x]\n",
775 pci_write_config_word(pbm
->pci_bus
->self
, PCI_STATUS
, 0xffff);
781 static irqreturn_t
schizo_pcierr_intr(int irq
, void *dev_id
)
783 struct pci_pbm_info
*pbm
= dev_id
;
784 struct pci_controller_info
*p
= pbm
->parent
;
785 unsigned long afsr_reg
, afar_reg
, base
;
786 unsigned long afsr
, afar
, error_bits
;
789 base
= pbm
->pbm_regs
;
791 afsr_reg
= base
+ SCHIZO_PCI_AFSR
;
792 afar_reg
= base
+ SCHIZO_PCI_AFAR
;
794 /* Latch error status. */
795 afar
= schizo_read(afar_reg
);
796 afsr
= schizo_read(afsr_reg
);
798 /* Clear primary/secondary error status bits. */
800 (SCHIZO_PCIAFSR_PMA
| SCHIZO_PCIAFSR_PTA
|
801 SCHIZO_PCIAFSR_PRTRY
| SCHIZO_PCIAFSR_PPERR
|
802 SCHIZO_PCIAFSR_PTTO
| SCHIZO_PCIAFSR_PUNUS
|
803 SCHIZO_PCIAFSR_SMA
| SCHIZO_PCIAFSR_STA
|
804 SCHIZO_PCIAFSR_SRTRY
| SCHIZO_PCIAFSR_SPERR
|
805 SCHIZO_PCIAFSR_STTO
| SCHIZO_PCIAFSR_SUNUS
);
807 return schizo_pcierr_intr_other(pbm
);
808 schizo_write(afsr_reg
, error_bits
);
811 printk("%s: PCI Error, primary error type[%s]\n",
813 (((error_bits
& SCHIZO_PCIAFSR_PMA
) ?
815 ((error_bits
& SCHIZO_PCIAFSR_PTA
) ?
817 ((error_bits
& SCHIZO_PCIAFSR_PRTRY
) ?
818 "Excessive Retries" :
819 ((error_bits
& SCHIZO_PCIAFSR_PPERR
) ?
821 ((error_bits
& SCHIZO_PCIAFSR_PTTO
) ?
823 ((error_bits
& SCHIZO_PCIAFSR_PUNUS
) ?
824 "Bus Unusable" : "???"))))))));
825 printk("%s: bytemask[%04lx] was_block(%d) space(%s)\n",
827 (afsr
& SCHIZO_PCIAFSR_BMSK
) >> 32UL,
828 (afsr
& SCHIZO_PCIAFSR_BLK
) ? 1 : 0,
829 ((afsr
& SCHIZO_PCIAFSR_CFG
) ?
831 ((afsr
& SCHIZO_PCIAFSR_MEM
) ?
833 ((afsr
& SCHIZO_PCIAFSR_IO
) ?
835 printk("%s: PCI AFAR [%016lx]\n",
837 printk("%s: PCI Secondary errors [",
840 if (afsr
& SCHIZO_PCIAFSR_SMA
) {
842 printk("(Master Abort)");
844 if (afsr
& SCHIZO_PCIAFSR_STA
) {
846 printk("(Target Abort)");
848 if (afsr
& SCHIZO_PCIAFSR_SRTRY
) {
850 printk("(Excessive Retries)");
852 if (afsr
& SCHIZO_PCIAFSR_SPERR
) {
854 printk("(Parity Error)");
856 if (afsr
& SCHIZO_PCIAFSR_STTO
) {
860 if (afsr
& SCHIZO_PCIAFSR_SUNUS
) {
862 printk("(Bus Unusable)");
868 /* For the error types shown, scan PBM's PCI bus for devices
869 * which have logged that error type.
872 /* If we see a Target Abort, this could be the result of an
873 * IOMMU translation error of some sort. It is extremely
874 * useful to log this information as usually it indicates
875 * a bug in the IOMMU support code or a PCI device driver.
877 if (error_bits
& (SCHIZO_PCIAFSR_PTA
| SCHIZO_PCIAFSR_STA
)) {
878 schizo_check_iommu_error(p
, PCI_ERR
);
879 pci_scan_for_target_abort(p
, pbm
, pbm
->pci_bus
);
881 if (error_bits
& (SCHIZO_PCIAFSR_PMA
| SCHIZO_PCIAFSR_SMA
))
882 pci_scan_for_master_abort(p
, pbm
, pbm
->pci_bus
);
884 /* For excessive retries, PSYCHO/PBM will abort the device
885 * and there is no way to specifically check for excessive
886 * retries in the config space status registers. So what
887 * we hope is that we'll catch it via the master/target
891 if (error_bits
& (SCHIZO_PCIAFSR_PPERR
| SCHIZO_PCIAFSR_SPERR
))
892 pci_scan_for_parity_error(p
, pbm
, pbm
->pci_bus
);
897 #define SCHIZO_SAFARI_ERRLOG 0x10018UL
899 #define SAFARI_ERRLOG_ERROUT 0x8000000000000000UL
901 #define BUS_ERROR_BADCMD 0x4000000000000000UL /* Schizo/Tomatillo */
902 #define BUS_ERROR_SSMDIS 0x2000000000000000UL /* Safari */
903 #define BUS_ERROR_BADMA 0x1000000000000000UL /* Safari */
904 #define BUS_ERROR_BADMB 0x0800000000000000UL /* Safari */
905 #define BUS_ERROR_BADMC 0x0400000000000000UL /* Safari */
906 #define BUS_ERROR_SNOOP_GR 0x0000000000200000UL /* Tomatillo */
907 #define BUS_ERROR_SNOOP_PCI 0x0000000000100000UL /* Tomatillo */
908 #define BUS_ERROR_SNOOP_RD 0x0000000000080000UL /* Tomatillo */
909 #define BUS_ERROR_SNOOP_RDS 0x0000000000020000UL /* Tomatillo */
910 #define BUS_ERROR_SNOOP_RDSA 0x0000000000010000UL /* Tomatillo */
911 #define BUS_ERROR_SNOOP_OWN 0x0000000000008000UL /* Tomatillo */
912 #define BUS_ERROR_SNOOP_RDO 0x0000000000004000UL /* Tomatillo */
913 #define BUS_ERROR_CPU1PS 0x0000000000002000UL /* Safari */
914 #define BUS_ERROR_WDATA_PERR 0x0000000000002000UL /* Tomatillo */
915 #define BUS_ERROR_CPU1PB 0x0000000000001000UL /* Safari */
916 #define BUS_ERROR_CTRL_PERR 0x0000000000001000UL /* Tomatillo */
917 #define BUS_ERROR_CPU0PS 0x0000000000000800UL /* Safari */
918 #define BUS_ERROR_SNOOP_ERR 0x0000000000000800UL /* Tomatillo */
919 #define BUS_ERROR_CPU0PB 0x0000000000000400UL /* Safari */
920 #define BUS_ERROR_JBUS_ILL_B 0x0000000000000400UL /* Tomatillo */
921 #define BUS_ERROR_CIQTO 0x0000000000000200UL /* Safari */
922 #define BUS_ERROR_LPQTO 0x0000000000000100UL /* Safari */
923 #define BUS_ERROR_JBUS_ILL_C 0x0000000000000100UL /* Tomatillo */
924 #define BUS_ERROR_SFPQTO 0x0000000000000080UL /* Safari */
925 #define BUS_ERROR_UFPQTO 0x0000000000000040UL /* Safari */
926 #define BUS_ERROR_RD_PERR 0x0000000000000040UL /* Tomatillo */
927 #define BUS_ERROR_APERR 0x0000000000000020UL /* Safari/Tomatillo */
928 #define BUS_ERROR_UNMAP 0x0000000000000010UL /* Safari/Tomatillo */
929 #define BUS_ERROR_BUSERR 0x0000000000000004UL /* Safari/Tomatillo */
930 #define BUS_ERROR_TIMEOUT 0x0000000000000002UL /* Safari/Tomatillo */
931 #define BUS_ERROR_ILL 0x0000000000000001UL /* Safari */
933 /* We only expect UNMAP errors here. The rest of the Safari errors
934 * are marked fatal and thus cause a system reset.
936 static irqreturn_t
schizo_safarierr_intr(int irq
, void *dev_id
)
938 struct pci_controller_info
*p
= dev_id
;
941 errlog
= schizo_read(p
->pbm_B
.controller_regs
+ SCHIZO_SAFARI_ERRLOG
);
942 schizo_write(p
->pbm_B
.controller_regs
+ SCHIZO_SAFARI_ERRLOG
,
943 errlog
& ~(SAFARI_ERRLOG_ERROUT
));
945 if (!(errlog
& BUS_ERROR_UNMAP
)) {
946 printk("PCI%d: Unexpected Safari/JBUS error interrupt, errlog[%016lx]\n",
952 printk("PCI%d: Safari/JBUS interrupt, UNMAPPED error, interrogating IOMMUs.\n",
954 schizo_check_iommu_error(p
, SAFARI_ERR
);
959 /* Nearly identical to PSYCHO equivalents... */
960 #define SCHIZO_ECC_CTRL 0x10020UL
961 #define SCHIZO_ECCCTRL_EE 0x8000000000000000UL /* Enable ECC Checking */
962 #define SCHIZO_ECCCTRL_UE 0x4000000000000000UL /* Enable UE Interrupts */
963 #define SCHIZO_ECCCTRL_CE 0x2000000000000000UL /* Enable CE INterrupts */
965 #define SCHIZO_SAFARI_ERRCTRL 0x10008UL
966 #define SCHIZO_SAFERRCTRL_EN 0x8000000000000000UL
967 #define SCHIZO_SAFARI_IRQCTRL 0x10010UL
968 #define SCHIZO_SAFIRQCTRL_EN 0x8000000000000000UL
970 /* How the Tomatillo IRQs are routed around is pure guesswork here.
972 * All the Tomatillo devices I see in prtconf dumps seem to have only
973 * a single PCI bus unit attached to it. It would seem they are seperate
974 * devices because their PortID (ie. JBUS ID) values are all different
975 * and thus the registers are mapped to totally different locations.
977 * However, two Tomatillo's look "similar" in that the only difference
978 * in their PortID is the lowest bit.
980 * So if we were to ignore this lower bit, it certainly looks like two
981 * PCI bus units of the same Tomatillo. I still have not really
982 * figured this out...
984 static void tomatillo_register_error_handlers(struct pci_controller_info
*p
)
986 struct pci_pbm_info
*pbm
;
987 struct of_device
*op
;
988 u64 tmp
, err_mask
, err_no_mask
;
990 /* Tomatillo IRQ property layout is:
998 pbm
= pbm_for_ino(p
, SCHIZO_UE_INO
);
999 op
= of_find_device_by_node(pbm
->prom_node
);
1001 request_irq(op
->irqs
[1], schizo_ue_intr
, IRQF_SHARED
,
1004 pbm
= pbm_for_ino(p
, SCHIZO_CE_INO
);
1005 op
= of_find_device_by_node(pbm
->prom_node
);
1007 request_irq(op
->irqs
[2], schizo_ce_intr
, IRQF_SHARED
,
1010 pbm
= pbm_for_ino(p
, SCHIZO_PCIERR_A_INO
);
1011 op
= of_find_device_by_node(pbm
->prom_node
);
1013 request_irq(op
->irqs
[0], schizo_pcierr_intr
, IRQF_SHARED
,
1014 "TOMATILLO PCIERR-A", pbm
);
1017 pbm
= pbm_for_ino(p
, SCHIZO_PCIERR_B_INO
);
1018 op
= of_find_device_by_node(pbm
->prom_node
);
1020 request_irq(op
->irqs
[0], schizo_pcierr_intr
, IRQF_SHARED
,
1021 "TOMATILLO PCIERR-B", pbm
);
1023 pbm
= pbm_for_ino(p
, SCHIZO_SERR_INO
);
1024 op
= of_find_device_by_node(pbm
->prom_node
);
1026 request_irq(op
->irqs
[3], schizo_safarierr_intr
, IRQF_SHARED
,
1027 "TOMATILLO SERR", p
);
1029 /* Enable UE and CE interrupts for controller. */
1030 schizo_write(p
->pbm_A
.controller_regs
+ SCHIZO_ECC_CTRL
,
1031 (SCHIZO_ECCCTRL_EE
|
1033 SCHIZO_ECCCTRL_CE
));
1035 schizo_write(p
->pbm_B
.controller_regs
+ SCHIZO_ECC_CTRL
,
1036 (SCHIZO_ECCCTRL_EE
|
1038 SCHIZO_ECCCTRL_CE
));
1040 /* Enable PCI Error interrupts and clear error
1043 err_mask
= (SCHIZO_PCICTRL_BUS_UNUS
|
1044 SCHIZO_PCICTRL_TTO_ERR
|
1045 SCHIZO_PCICTRL_RTRY_ERR
|
1046 SCHIZO_PCICTRL_SERR
|
1047 SCHIZO_PCICTRL_EEN
);
1049 err_no_mask
= SCHIZO_PCICTRL_DTO_ERR
;
1051 tmp
= schizo_read(p
->pbm_A
.pbm_regs
+ SCHIZO_PCI_CTRL
);
1053 tmp
&= ~err_no_mask
;
1054 schizo_write(p
->pbm_A
.pbm_regs
+ SCHIZO_PCI_CTRL
, tmp
);
1056 tmp
= schizo_read(p
->pbm_B
.pbm_regs
+ SCHIZO_PCI_CTRL
);
1058 tmp
&= ~err_no_mask
;
1059 schizo_write(p
->pbm_B
.pbm_regs
+ SCHIZO_PCI_CTRL
, tmp
);
1061 err_mask
= (SCHIZO_PCIAFSR_PMA
| SCHIZO_PCIAFSR_PTA
|
1062 SCHIZO_PCIAFSR_PRTRY
| SCHIZO_PCIAFSR_PPERR
|
1063 SCHIZO_PCIAFSR_PTTO
|
1064 SCHIZO_PCIAFSR_SMA
| SCHIZO_PCIAFSR_STA
|
1065 SCHIZO_PCIAFSR_SRTRY
| SCHIZO_PCIAFSR_SPERR
|
1066 SCHIZO_PCIAFSR_STTO
);
1068 schizo_write(p
->pbm_A
.pbm_regs
+ SCHIZO_PCI_AFSR
, err_mask
);
1069 schizo_write(p
->pbm_B
.pbm_regs
+ SCHIZO_PCI_AFSR
, err_mask
);
1071 err_mask
= (BUS_ERROR_BADCMD
| BUS_ERROR_SNOOP_GR
|
1072 BUS_ERROR_SNOOP_PCI
| BUS_ERROR_SNOOP_RD
|
1073 BUS_ERROR_SNOOP_RDS
| BUS_ERROR_SNOOP_RDSA
|
1074 BUS_ERROR_SNOOP_OWN
| BUS_ERROR_SNOOP_RDO
|
1075 BUS_ERROR_WDATA_PERR
| BUS_ERROR_CTRL_PERR
|
1076 BUS_ERROR_SNOOP_ERR
| BUS_ERROR_JBUS_ILL_B
|
1077 BUS_ERROR_JBUS_ILL_C
| BUS_ERROR_RD_PERR
|
1078 BUS_ERROR_APERR
| BUS_ERROR_UNMAP
|
1079 BUS_ERROR_BUSERR
| BUS_ERROR_TIMEOUT
);
1081 schizo_write(p
->pbm_A
.controller_regs
+ SCHIZO_SAFARI_ERRCTRL
,
1082 (SCHIZO_SAFERRCTRL_EN
| err_mask
));
1083 schizo_write(p
->pbm_B
.controller_regs
+ SCHIZO_SAFARI_ERRCTRL
,
1084 (SCHIZO_SAFERRCTRL_EN
| err_mask
));
1086 schizo_write(p
->pbm_A
.controller_regs
+ SCHIZO_SAFARI_IRQCTRL
,
1087 (SCHIZO_SAFIRQCTRL_EN
| (BUS_ERROR_UNMAP
)));
1088 schizo_write(p
->pbm_B
.controller_regs
+ SCHIZO_SAFARI_IRQCTRL
,
1089 (SCHIZO_SAFIRQCTRL_EN
| (BUS_ERROR_UNMAP
)));
1092 static void schizo_register_error_handlers(struct pci_controller_info
*p
)
1094 struct pci_pbm_info
*pbm
;
1095 struct of_device
*op
;
1096 u64 tmp
, err_mask
, err_no_mask
;
1098 /* Schizo IRQ property layout is:
1106 pbm
= pbm_for_ino(p
, SCHIZO_UE_INO
);
1107 op
= of_find_device_by_node(pbm
->prom_node
);
1109 request_irq(op
->irqs
[1], schizo_ue_intr
, IRQF_SHARED
,
1112 pbm
= pbm_for_ino(p
, SCHIZO_CE_INO
);
1113 op
= of_find_device_by_node(pbm
->prom_node
);
1115 request_irq(op
->irqs
[2], schizo_ce_intr
, IRQF_SHARED
,
1118 pbm
= pbm_for_ino(p
, SCHIZO_PCIERR_A_INO
);
1119 op
= of_find_device_by_node(pbm
->prom_node
);
1121 request_irq(op
->irqs
[0], schizo_pcierr_intr
, IRQF_SHARED
,
1122 "SCHIZO PCIERR-A", pbm
);
1125 pbm
= pbm_for_ino(p
, SCHIZO_PCIERR_B_INO
);
1126 op
= of_find_device_by_node(pbm
->prom_node
);
1128 request_irq(op
->irqs
[0], schizo_pcierr_intr
, IRQF_SHARED
,
1129 "SCHIZO PCIERR-B", pbm
);
1131 pbm
= pbm_for_ino(p
, SCHIZO_SERR_INO
);
1132 op
= of_find_device_by_node(pbm
->prom_node
);
1134 request_irq(op
->irqs
[3], schizo_safarierr_intr
, IRQF_SHARED
,
1137 /* Enable UE and CE interrupts for controller. */
1138 schizo_write(p
->pbm_A
.controller_regs
+ SCHIZO_ECC_CTRL
,
1139 (SCHIZO_ECCCTRL_EE
|
1141 SCHIZO_ECCCTRL_CE
));
1143 err_mask
= (SCHIZO_PCICTRL_BUS_UNUS
|
1144 SCHIZO_PCICTRL_ESLCK
|
1145 SCHIZO_PCICTRL_TTO_ERR
|
1146 SCHIZO_PCICTRL_RTRY_ERR
|
1147 SCHIZO_PCICTRL_SBH_ERR
|
1148 SCHIZO_PCICTRL_SERR
|
1149 SCHIZO_PCICTRL_EEN
);
1151 err_no_mask
= (SCHIZO_PCICTRL_DTO_ERR
|
1152 SCHIZO_PCICTRL_SBH_INT
);
1154 /* Enable PCI Error interrupts and clear error
1155 * bits for each PBM.
1157 tmp
= schizo_read(p
->pbm_A
.pbm_regs
+ SCHIZO_PCI_CTRL
);
1159 tmp
&= ~err_no_mask
;
1160 schizo_write(p
->pbm_A
.pbm_regs
+ SCHIZO_PCI_CTRL
, tmp
);
1162 schizo_write(p
->pbm_A
.pbm_regs
+ SCHIZO_PCI_AFSR
,
1163 (SCHIZO_PCIAFSR_PMA
| SCHIZO_PCIAFSR_PTA
|
1164 SCHIZO_PCIAFSR_PRTRY
| SCHIZO_PCIAFSR_PPERR
|
1165 SCHIZO_PCIAFSR_PTTO
| SCHIZO_PCIAFSR_PUNUS
|
1166 SCHIZO_PCIAFSR_SMA
| SCHIZO_PCIAFSR_STA
|
1167 SCHIZO_PCIAFSR_SRTRY
| SCHIZO_PCIAFSR_SPERR
|
1168 SCHIZO_PCIAFSR_STTO
| SCHIZO_PCIAFSR_SUNUS
));
1170 tmp
= schizo_read(p
->pbm_B
.pbm_regs
+ SCHIZO_PCI_CTRL
);
1172 tmp
&= ~err_no_mask
;
1173 schizo_write(p
->pbm_B
.pbm_regs
+ SCHIZO_PCI_CTRL
, tmp
);
1175 schizo_write(p
->pbm_B
.pbm_regs
+ SCHIZO_PCI_AFSR
,
1176 (SCHIZO_PCIAFSR_PMA
| SCHIZO_PCIAFSR_PTA
|
1177 SCHIZO_PCIAFSR_PRTRY
| SCHIZO_PCIAFSR_PPERR
|
1178 SCHIZO_PCIAFSR_PTTO
| SCHIZO_PCIAFSR_PUNUS
|
1179 SCHIZO_PCIAFSR_SMA
| SCHIZO_PCIAFSR_STA
|
1180 SCHIZO_PCIAFSR_SRTRY
| SCHIZO_PCIAFSR_SPERR
|
1181 SCHIZO_PCIAFSR_STTO
| SCHIZO_PCIAFSR_SUNUS
));
1183 /* Make all Safari error conditions fatal except unmapped
1184 * errors which we make generate interrupts.
1186 err_mask
= (BUS_ERROR_BADCMD
| BUS_ERROR_SSMDIS
|
1187 BUS_ERROR_BADMA
| BUS_ERROR_BADMB
|
1189 BUS_ERROR_CPU1PS
| BUS_ERROR_CPU1PB
|
1190 BUS_ERROR_CPU0PS
| BUS_ERROR_CPU0PB
|
1192 BUS_ERROR_LPQTO
| BUS_ERROR_SFPQTO
|
1193 BUS_ERROR_UFPQTO
| BUS_ERROR_APERR
|
1194 BUS_ERROR_BUSERR
| BUS_ERROR_TIMEOUT
|
1197 /* XXX Something wrong with some Excalibur systems
1198 * XXX Sun is shipping. The behavior on a 2-cpu
1199 * XXX machine is that both CPU1 parity error bits
1200 * XXX are set and are immediately set again when
1201 * XXX their error status bits are cleared. Just
1202 * XXX ignore them for now. -DaveM
1204 err_mask
&= ~(BUS_ERROR_CPU1PS
| BUS_ERROR_CPU1PB
|
1205 BUS_ERROR_CPU0PS
| BUS_ERROR_CPU0PB
);
1208 schizo_write(p
->pbm_A
.controller_regs
+ SCHIZO_SAFARI_ERRCTRL
,
1209 (SCHIZO_SAFERRCTRL_EN
| err_mask
));
1211 schizo_write(p
->pbm_A
.controller_regs
+ SCHIZO_SAFARI_IRQCTRL
,
1212 (SCHIZO_SAFIRQCTRL_EN
| (BUS_ERROR_UNMAP
)));
1215 static void pbm_config_busmastering(struct pci_pbm_info
*pbm
)
1219 /* Set cache-line size to 64 bytes, this is actually
1220 * a nop but I do it for completeness.
1222 addr
= schizo_pci_config_mkaddr(pbm
, pbm
->pci_first_busno
,
1223 0, PCI_CACHE_LINE_SIZE
);
1224 pci_config_write8(addr
, 64 / sizeof(u32
));
1226 /* Set PBM latency timer to 64 PCI clocks. */
1227 addr
= schizo_pci_config_mkaddr(pbm
, pbm
->pci_first_busno
,
1228 0, PCI_LATENCY_TIMER
);
1229 pci_config_write8(addr
, 64);
1232 static void pbm_scan_bus(struct pci_controller_info
*p
,
1233 struct pci_pbm_info
*pbm
)
1235 struct pcidev_cookie
*cookie
= kzalloc(sizeof(*cookie
), GFP_KERNEL
);
1238 prom_printf("%s: Critical allocation failure.\n", pbm
->name
);
1242 /* All we care about is the PBM. */
1245 pbm
->pci_bus
= pci_scan_bus(pbm
->pci_first_busno
,
1248 pci_fixup_host_bridge_self(pbm
->pci_bus
);
1249 pbm
->pci_bus
->self
->sysdata
= cookie
;
1251 pci_fill_in_pbm_cookies(pbm
->pci_bus
, pbm
, pbm
->prom_node
);
1252 pci_record_assignments(pbm
, pbm
->pci_bus
);
1253 pci_assign_unassigned(pbm
, pbm
->pci_bus
);
1254 pci_fixup_irq(pbm
, pbm
->pci_bus
);
1255 pci_determine_66mhz_disposition(pbm
, pbm
->pci_bus
);
1256 pci_setup_busmastering(pbm
, pbm
->pci_bus
);
1259 static void __schizo_scan_bus(struct pci_controller_info
*p
,
1262 if (!p
->pbm_B
.prom_node
|| !p
->pbm_A
.prom_node
) {
1263 printk("PCI: Only one PCI bus module of controller found.\n");
1264 printk("PCI: Ignoring entire controller.\n");
1268 pbm_config_busmastering(&p
->pbm_B
);
1269 p
->pbm_B
.is_66mhz_capable
=
1270 (of_find_property(p
->pbm_B
.prom_node
, "66mhz-capable", NULL
)
1272 pbm_config_busmastering(&p
->pbm_A
);
1273 p
->pbm_A
.is_66mhz_capable
=
1274 (of_find_property(p
->pbm_A
.prom_node
, "66mhz-capable", NULL
)
1276 pbm_scan_bus(p
, &p
->pbm_B
);
1277 pbm_scan_bus(p
, &p
->pbm_A
);
1279 /* After the PCI bus scan is complete, we can register
1280 * the error interrupt handlers.
1282 if (chip_type
== PBM_CHIP_TYPE_TOMATILLO
)
1283 tomatillo_register_error_handlers(p
);
1285 schizo_register_error_handlers(p
);
1288 static void schizo_scan_bus(struct pci_controller_info
*p
)
1290 __schizo_scan_bus(p
, PBM_CHIP_TYPE_SCHIZO
);
1293 static void tomatillo_scan_bus(struct pci_controller_info
*p
)
1295 __schizo_scan_bus(p
, PBM_CHIP_TYPE_TOMATILLO
);
1298 static void schizo_base_address_update(struct pci_dev
*pdev
, int resource
)
1300 struct pcidev_cookie
*pcp
= pdev
->sysdata
;
1301 struct pci_pbm_info
*pbm
= pcp
->pbm
;
1302 struct resource
*res
, *root
;
1304 int where
, size
, is_64bit
;
1306 res
= &pdev
->resource
[resource
];
1308 where
= PCI_BASE_ADDRESS_0
+ (resource
* 4);
1309 } else if (resource
== PCI_ROM_RESOURCE
) {
1310 where
= pdev
->rom_base_reg
;
1312 /* Somebody might have asked allocation of a non-standard resource */
1317 if (res
->flags
& IORESOURCE_IO
)
1318 root
= &pbm
->io_space
;
1320 root
= &pbm
->mem_space
;
1321 if ((res
->flags
& PCI_BASE_ADDRESS_MEM_TYPE_MASK
)
1322 == PCI_BASE_ADDRESS_MEM_TYPE_64
)
1326 size
= res
->end
- res
->start
;
1327 pci_read_config_dword(pdev
, where
, ®
);
1328 reg
= ((reg
& size
) |
1329 (((u32
)(res
->start
- root
->start
)) & ~size
));
1330 if (resource
== PCI_ROM_RESOURCE
) {
1331 reg
|= PCI_ROM_ADDRESS_ENABLE
;
1332 res
->flags
|= IORESOURCE_ROM_ENABLE
;
1334 pci_write_config_dword(pdev
, where
, reg
);
1336 /* This knows that the upper 32-bits of the address
1337 * must be zero. Our PCI common layer enforces this.
1340 pci_write_config_dword(pdev
, where
+ 4, 0);
1343 static void schizo_resource_adjust(struct pci_dev
*pdev
,
1344 struct resource
*res
,
1345 struct resource
*root
)
1347 res
->start
+= root
->start
;
1348 res
->end
+= root
->start
;
1351 /* Use ranges property to determine where PCI MEM, I/O, and Config
1352 * space are for this PCI bus module.
1354 static void schizo_determine_mem_io_space(struct pci_pbm_info
*pbm
)
1356 int i
, saw_cfg
, saw_mem
, saw_io
;
1358 saw_cfg
= saw_mem
= saw_io
= 0;
1359 for (i
= 0; i
< pbm
->num_pbm_ranges
; i
++) {
1360 struct linux_prom_pci_ranges
*pr
= &pbm
->pbm_ranges
[i
];
1364 type
= (pr
->child_phys_hi
>> 24) & 0x3;
1365 a
= (((unsigned long)pr
->parent_phys_hi
<< 32UL) |
1366 ((unsigned long)pr
->parent_phys_lo
<< 0UL));
1370 /* PCI config space, 16MB */
1371 pbm
->config_space
= a
;
1376 /* 16-bit IO space, 16MB */
1377 pbm
->io_space
.start
= a
;
1378 pbm
->io_space
.end
= a
+ ((16UL*1024UL*1024UL) - 1UL);
1379 pbm
->io_space
.flags
= IORESOURCE_IO
;
1384 /* 32-bit MEM space, 2GB */
1385 pbm
->mem_space
.start
= a
;
1386 pbm
->mem_space
.end
= a
+ (0x80000000UL
- 1UL);
1387 pbm
->mem_space
.flags
= IORESOURCE_MEM
;
1396 if (!saw_cfg
|| !saw_io
|| !saw_mem
) {
1397 prom_printf("%s: Fatal error, missing %s PBM range.\n",
1406 printk("%s: PCI CFG[%lx] IO[%lx] MEM[%lx]\n",
1409 pbm
->io_space
.start
,
1410 pbm
->mem_space
.start
);
1413 static void pbm_register_toplevel_resources(struct pci_controller_info
*p
,
1414 struct pci_pbm_info
*pbm
)
1416 pbm
->io_space
.name
= pbm
->mem_space
.name
= pbm
->name
;
1418 request_resource(&ioport_resource
, &pbm
->io_space
);
1419 request_resource(&iomem_resource
, &pbm
->mem_space
);
1420 pci_register_legacy_regions(&pbm
->io_space
,
1424 #define SCHIZO_STRBUF_CONTROL (0x02800UL)
1425 #define SCHIZO_STRBUF_FLUSH (0x02808UL)
1426 #define SCHIZO_STRBUF_FSYNC (0x02810UL)
1427 #define SCHIZO_STRBUF_CTXFLUSH (0x02818UL)
1428 #define SCHIZO_STRBUF_CTXMATCH (0x10000UL)
1430 static void schizo_pbm_strbuf_init(struct pci_pbm_info
*pbm
)
1432 unsigned long base
= pbm
->pbm_regs
;
1435 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
) {
1436 /* TOMATILLO lacks streaming cache. */
1440 /* SCHIZO has context flushing. */
1441 pbm
->stc
.strbuf_control
= base
+ SCHIZO_STRBUF_CONTROL
;
1442 pbm
->stc
.strbuf_pflush
= base
+ SCHIZO_STRBUF_FLUSH
;
1443 pbm
->stc
.strbuf_fsync
= base
+ SCHIZO_STRBUF_FSYNC
;
1444 pbm
->stc
.strbuf_ctxflush
= base
+ SCHIZO_STRBUF_CTXFLUSH
;
1445 pbm
->stc
.strbuf_ctxmatch_base
= base
+ SCHIZO_STRBUF_CTXMATCH
;
1447 pbm
->stc
.strbuf_flushflag
= (volatile unsigned long *)
1448 ((((unsigned long)&pbm
->stc
.__flushflag_buf
[0])
1451 pbm
->stc
.strbuf_flushflag_pa
= (unsigned long)
1452 __pa(pbm
->stc
.strbuf_flushflag
);
1454 /* Turn off LRU locking and diag mode, enable the
1455 * streaming buffer and leave the rerun-disable
1456 * setting however OBP set it.
1458 control
= schizo_read(pbm
->stc
.strbuf_control
);
1459 control
&= ~(SCHIZO_STRBUF_CTRL_LPTR
|
1460 SCHIZO_STRBUF_CTRL_LENAB
|
1461 SCHIZO_STRBUF_CTRL_DENAB
);
1462 control
|= SCHIZO_STRBUF_CTRL_ENAB
;
1463 schizo_write(pbm
->stc
.strbuf_control
, control
);
1465 pbm
->stc
.strbuf_enabled
= 1;
1468 #define SCHIZO_IOMMU_CONTROL (0x00200UL)
1469 #define SCHIZO_IOMMU_TSBBASE (0x00208UL)
1470 #define SCHIZO_IOMMU_FLUSH (0x00210UL)
1471 #define SCHIZO_IOMMU_CTXFLUSH (0x00218UL)
1473 static void schizo_pbm_iommu_init(struct pci_pbm_info
*pbm
)
1475 struct pci_iommu
*iommu
= pbm
->iommu
;
1476 unsigned long i
, tagbase
, database
;
1477 struct property
*prop
;
1478 u32 vdma
[2], dma_mask
;
1482 prop
= of_find_property(pbm
->prom_node
, "virtual-dma", NULL
);
1484 u32
*val
= prop
->value
;
1489 /* No property, use default values. */
1490 vdma
[0] = 0xc0000000;
1491 vdma
[1] = 0x40000000;
1497 dma_mask
|= 0x1fffffff;
1502 dma_mask
|= 0x3fffffff;
1507 dma_mask
|= 0x7fffffff;
1512 prom_printf("SCHIZO: strange virtual-dma size.\n");
1516 /* Register addresses, SCHIZO has iommu ctx flushing. */
1517 iommu
->iommu_control
= pbm
->pbm_regs
+ SCHIZO_IOMMU_CONTROL
;
1518 iommu
->iommu_tsbbase
= pbm
->pbm_regs
+ SCHIZO_IOMMU_TSBBASE
;
1519 iommu
->iommu_flush
= pbm
->pbm_regs
+ SCHIZO_IOMMU_FLUSH
;
1520 iommu
->iommu_ctxflush
= pbm
->pbm_regs
+ SCHIZO_IOMMU_CTXFLUSH
;
1522 /* We use the main control/status register of SCHIZO as the write
1523 * completion register.
1525 iommu
->write_complete_reg
= pbm
->controller_regs
+ 0x10000UL
;
1528 * Invalidate TLB Entries.
1530 control
= schizo_read(iommu
->iommu_control
);
1531 control
|= SCHIZO_IOMMU_CTRL_DENAB
;
1532 schizo_write(iommu
->iommu_control
, control
);
1534 tagbase
= SCHIZO_IOMMU_TAG
, database
= SCHIZO_IOMMU_DATA
;
1536 for(i
= 0; i
< 16; i
++) {
1537 schizo_write(pbm
->pbm_regs
+ tagbase
+ (i
* 8UL), 0);
1538 schizo_write(pbm
->pbm_regs
+ database
+ (i
* 8UL), 0);
1541 /* Leave diag mode enabled for full-flushing done
1544 pci_iommu_table_init(iommu
, tsbsize
* 8 * 1024, vdma
[0], dma_mask
);
1546 schizo_write(iommu
->iommu_tsbbase
, __pa(iommu
->page_table
));
1548 control
= schizo_read(iommu
->iommu_control
);
1549 control
&= ~(SCHIZO_IOMMU_CTRL_TSBSZ
| SCHIZO_IOMMU_CTRL_TBWSZ
);
1552 control
|= SCHIZO_IOMMU_TSBSZ_64K
;
1555 control
|= SCHIZO_IOMMU_TSBSZ_128K
;
1559 control
|= SCHIZO_IOMMU_CTRL_ENAB
;
1560 schizo_write(iommu
->iommu_control
, control
);
1563 #define SCHIZO_PCI_IRQ_RETRY (0x1a00UL)
1564 #define SCHIZO_IRQ_RETRY_INF 0xffUL
1566 #define SCHIZO_PCI_DIAG (0x2020UL)
1567 #define SCHIZO_PCIDIAG_D_BADECC (1UL << 10UL) /* Disable BAD ECC errors (Schizo) */
1568 #define SCHIZO_PCIDIAG_D_BYPASS (1UL << 9UL) /* Disable MMU bypass mode (Schizo/Tomatillo) */
1569 #define SCHIZO_PCIDIAG_D_TTO (1UL << 8UL) /* Disable TTO errors (Schizo/Tomatillo) */
1570 #define SCHIZO_PCIDIAG_D_RTRYARB (1UL << 7UL) /* Disable retry arbitration (Schizo) */
1571 #define SCHIZO_PCIDIAG_D_RETRY (1UL << 6UL) /* Disable retry limit (Schizo/Tomatillo) */
1572 #define SCHIZO_PCIDIAG_D_INTSYNC (1UL << 5UL) /* Disable interrupt/DMA synch (Schizo/Tomatillo) */
1573 #define SCHIZO_PCIDIAG_I_DMA_PARITY (1UL << 3UL) /* Invert DMA parity (Schizo/Tomatillo) */
1574 #define SCHIZO_PCIDIAG_I_PIOD_PARITY (1UL << 2UL) /* Invert PIO data parity (Schizo/Tomatillo) */
1575 #define SCHIZO_PCIDIAG_I_PIOA_PARITY (1UL << 1UL) /* Invert PIO address parity (Schizo/Tomatillo) */
1577 #define TOMATILLO_PCI_IOC_CSR (0x2248UL)
1578 #define TOMATILLO_IOC_PART_WPENAB 0x0000000000080000UL
1579 #define TOMATILLO_IOC_RDMULT_PENAB 0x0000000000040000UL
1580 #define TOMATILLO_IOC_RDONE_PENAB 0x0000000000020000UL
1581 #define TOMATILLO_IOC_RDLINE_PENAB 0x0000000000010000UL
1582 #define TOMATILLO_IOC_RDMULT_PLEN 0x000000000000c000UL
1583 #define TOMATILLO_IOC_RDMULT_PLEN_SHIFT 14UL
1584 #define TOMATILLO_IOC_RDONE_PLEN 0x0000000000003000UL
1585 #define TOMATILLO_IOC_RDONE_PLEN_SHIFT 12UL
1586 #define TOMATILLO_IOC_RDLINE_PLEN 0x0000000000000c00UL
1587 #define TOMATILLO_IOC_RDLINE_PLEN_SHIFT 10UL
1588 #define TOMATILLO_IOC_PREF_OFF 0x00000000000003f8UL
1589 #define TOMATILLO_IOC_PREF_OFF_SHIFT 3UL
1590 #define TOMATILLO_IOC_RDMULT_CPENAB 0x0000000000000004UL
1591 #define TOMATILLO_IOC_RDONE_CPENAB 0x0000000000000002UL
1592 #define TOMATILLO_IOC_RDLINE_CPENAB 0x0000000000000001UL
1594 #define TOMATILLO_PCI_IOC_TDIAG (0x2250UL)
1595 #define TOMATILLO_PCI_IOC_DDIAG (0x2290UL)
1597 static void schizo_pbm_hw_init(struct pci_pbm_info
*pbm
)
1599 struct property
*prop
;
1602 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_IRQ_RETRY
, 5);
1604 tmp
= schizo_read(pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
);
1606 /* Enable arbiter for all PCI slots. */
1609 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
&&
1610 pbm
->chip_version
>= 0x2)
1611 tmp
|= 0x3UL
<< SCHIZO_PCICTRL_PTO_SHIFT
;
1613 prop
= of_find_property(pbm
->prom_node
, "no-bus-parking", NULL
);
1615 tmp
|= SCHIZO_PCICTRL_PARK
;
1617 tmp
&= ~SCHIZO_PCICTRL_PARK
;
1619 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
&&
1620 pbm
->chip_version
<= 0x1)
1621 tmp
|= SCHIZO_PCICTRL_DTO_INT
;
1623 tmp
&= ~SCHIZO_PCICTRL_DTO_INT
;
1625 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
)
1626 tmp
|= (SCHIZO_PCICTRL_MRM_PREF
|
1627 SCHIZO_PCICTRL_RDO_PREF
|
1628 SCHIZO_PCICTRL_RDL_PREF
);
1630 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_CTRL
, tmp
);
1632 tmp
= schizo_read(pbm
->pbm_regs
+ SCHIZO_PCI_DIAG
);
1633 tmp
&= ~(SCHIZO_PCIDIAG_D_RTRYARB
|
1634 SCHIZO_PCIDIAG_D_RETRY
|
1635 SCHIZO_PCIDIAG_D_INTSYNC
);
1636 schizo_write(pbm
->pbm_regs
+ SCHIZO_PCI_DIAG
, tmp
);
1638 if (pbm
->chip_type
== PBM_CHIP_TYPE_TOMATILLO
) {
1639 /* Clear prefetch lengths to workaround a bug in
1642 tmp
= (TOMATILLO_IOC_PART_WPENAB
|
1643 (1 << TOMATILLO_IOC_PREF_OFF_SHIFT
) |
1644 TOMATILLO_IOC_RDMULT_CPENAB
|
1645 TOMATILLO_IOC_RDONE_CPENAB
|
1646 TOMATILLO_IOC_RDLINE_CPENAB
);
1648 schizo_write(pbm
->pbm_regs
+ TOMATILLO_PCI_IOC_CSR
,
1653 static void schizo_pbm_init(struct pci_controller_info
*p
,
1654 struct device_node
*dp
, u32 portid
,
1657 struct linux_prom64_registers
*regs
;
1658 struct property
*prop
;
1659 unsigned int *busrange
;
1660 struct pci_pbm_info
*pbm
;
1661 const char *chipset_name
;
1666 switch (chip_type
) {
1667 case PBM_CHIP_TYPE_TOMATILLO
:
1668 chipset_name
= "TOMATILLO";
1671 case PBM_CHIP_TYPE_SCHIZO_PLUS
:
1672 chipset_name
= "SCHIZO+";
1675 case PBM_CHIP_TYPE_SCHIZO
:
1677 chipset_name
= "SCHIZO";
1681 /* For SCHIZO, three OBP regs:
1682 * 1) PBM controller regs
1683 * 2) Schizo front-end controller regs (same for both PBMs)
1684 * 3) PBM PCI config space
1686 * For TOMATILLO, four OBP regs:
1687 * 1) PBM controller regs
1688 * 2) Tomatillo front-end controller regs
1689 * 3) PBM PCI config space
1692 prop
= of_find_property(dp
, "reg", NULL
);
1695 is_pbm_a
= ((regs
[0].phys_addr
& 0x00700000) == 0x00600000);
1702 pbm
->portid
= portid
;
1704 pbm
->prom_node
= dp
;
1705 pbm
->pci_first_slot
= 1;
1707 pbm
->chip_type
= chip_type
;
1708 pbm
->chip_version
= 0;
1709 prop
= of_find_property(dp
, "version#", NULL
);
1711 pbm
->chip_version
= *(int *) prop
->value
;
1712 pbm
->chip_revision
= 0;
1713 prop
= of_find_property(dp
, "module-revision#", NULL
);
1715 pbm
->chip_revision
= *(int *) prop
->value
;
1717 pbm
->pbm_regs
= regs
[0].phys_addr
;
1718 pbm
->controller_regs
= regs
[1].phys_addr
- 0x10000UL
;
1720 if (chip_type
== PBM_CHIP_TYPE_TOMATILLO
)
1721 pbm
->sync_reg
= regs
[3].phys_addr
+ 0x1a18UL
;
1723 pbm
->name
= dp
->full_name
;
1725 printk("%s: %s PCI Bus Module ver[%x:%x]\n",
1727 (chip_type
== PBM_CHIP_TYPE_TOMATILLO
?
1728 "TOMATILLO" : "SCHIZO"),
1729 pbm
->chip_version
, pbm
->chip_revision
);
1731 schizo_pbm_hw_init(pbm
);
1733 prop
= of_find_property(dp
, "ranges", &len
);
1734 pbm
->pbm_ranges
= prop
->value
;
1735 pbm
->num_pbm_ranges
=
1736 (len
/ sizeof(struct linux_prom_pci_ranges
));
1738 schizo_determine_mem_io_space(pbm
);
1739 pbm_register_toplevel_resources(p
, pbm
);
1741 prop
= of_find_property(dp
, "interrupt-map", &len
);
1743 pbm
->pbm_intmap
= prop
->value
;
1744 pbm
->num_pbm_intmap
=
1745 (len
/ sizeof(struct linux_prom_pci_intmap
));
1747 prop
= of_find_property(dp
, "interrupt-map-mask", NULL
);
1748 pbm
->pbm_intmask
= prop
->value
;
1750 pbm
->num_pbm_intmap
= 0;
1753 prop
= of_find_property(dp
, "ino-bitmap", NULL
);
1754 ino_bitmap
= prop
->value
;
1755 pbm
->ino_bitmap
= (((u64
)ino_bitmap
[1] << 32UL) |
1756 ((u64
)ino_bitmap
[0] << 0UL));
1758 prop
= of_find_property(dp
, "bus-range", NULL
);
1759 busrange
= prop
->value
;
1760 pbm
->pci_first_busno
= busrange
[0];
1761 pbm
->pci_last_busno
= busrange
[1];
1763 schizo_pbm_iommu_init(pbm
);
1764 schizo_pbm_strbuf_init(pbm
);
1767 static inline int portid_compare(u32 x
, u32 y
, int chip_type
)
1769 if (chip_type
== PBM_CHIP_TYPE_TOMATILLO
) {
1777 static void __schizo_init(struct device_node
*dp
, char *model_name
, int chip_type
)
1779 struct pci_controller_info
*p
;
1780 struct pci_iommu
*iommu
;
1781 struct property
*prop
;
1786 prop
= of_find_property(dp
, "portid", NULL
);
1788 portid
= *(u32
*) prop
->value
;
1790 for (p
= pci_controller_root
; p
; p
= p
->next
) {
1791 struct pci_pbm_info
*pbm
;
1793 if (p
->pbm_A
.prom_node
&& p
->pbm_B
.prom_node
)
1796 pbm
= (p
->pbm_A
.prom_node
?
1800 if (portid_compare(pbm
->portid
, portid
, chip_type
)) {
1801 is_pbm_a
= (p
->pbm_A
.prom_node
== NULL
);
1802 schizo_pbm_init(p
, dp
, portid
, chip_type
);
1807 p
= kzalloc(sizeof(struct pci_controller_info
), GFP_ATOMIC
);
1809 prom_printf("SCHIZO: Fatal memory allocation error.\n");
1813 iommu
= kzalloc(sizeof(struct pci_iommu
), GFP_ATOMIC
);
1815 prom_printf("SCHIZO: Fatal memory allocation error.\n");
1818 p
->pbm_A
.iommu
= iommu
;
1820 iommu
= kzalloc(sizeof(struct pci_iommu
), GFP_ATOMIC
);
1822 prom_printf("SCHIZO: Fatal memory allocation error.\n");
1825 p
->pbm_B
.iommu
= iommu
;
1827 p
->next
= pci_controller_root
;
1828 pci_controller_root
= p
;
1830 p
->index
= pci_num_controllers
++;
1831 p
->pbms_same_domain
= 0;
1832 p
->scan_bus
= (chip_type
== PBM_CHIP_TYPE_TOMATILLO
?
1833 tomatillo_scan_bus
:
1835 p
->base_address_update
= schizo_base_address_update
;
1836 p
->resource_adjust
= schizo_resource_adjust
;
1837 p
->pci_ops
= &schizo_ops
;
1839 /* Like PSYCHO we have a 2GB aligned area for memory space. */
1840 pci_memspace_mask
= 0x7fffffffUL
;
1842 schizo_pbm_init(p
, dp
, portid
, chip_type
);
1845 void schizo_init(struct device_node
*dp
, char *model_name
)
1847 __schizo_init(dp
, model_name
, PBM_CHIP_TYPE_SCHIZO
);
1850 void schizo_plus_init(struct device_node
*dp
, char *model_name
)
1852 __schizo_init(dp
, model_name
, PBM_CHIP_TYPE_SCHIZO_PLUS
);
1855 void tomatillo_init(struct device_node
*dp
, char *model_name
)
1857 __schizo_init(dp
, model_name
, PBM_CHIP_TYPE_TOMATILLO
);