blob: 8f779b58d65a18e3317dafa4d7ebeb6fbc6d1cf5 [file] [log] [blame]
David S. Miller16ce82d2007-04-26 21:08:21 -07001/* pci_sabre.c: Sabre specific PCI controller support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Miller16ce82d2007-04-26 21:08:21 -07003 * Copyright (C) 1997, 1998, 1999, 2007 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1998, 1999 Eddie C. Dost (ecd@skynet.be)
5 * Copyright (C) 1999 Jakub Jelinek (jakub@redhat.com)
6 */
7
8#include <linux/kernel.h>
9#include <linux/types.h>
10#include <linux/pci.h>
11#include <linux/init.h>
12#include <linux/slab.h>
13#include <linux/interrupt.h>
Stephen Rothwell764f2572008-08-07 15:33:36 -070014#include <linux/of_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <asm/apb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/iommu.h>
18#include <asm/irq.h>
David S. Millere87dc352006-06-21 18:18:47 -070019#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include "pci_impl.h"
22#include "iommu_common.h"
23
David S. Milleredbe8052008-08-30 03:14:01 -070024#define DRIVER_NAME "sabre"
25#define PFX DRIVER_NAME ": "
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/* All SABRE registers are 64-bits. The following accessor
28 * routines are how they are accessed. The REG parameter
29 * is a physical address.
30 */
31#define sabre_read(__reg) \
32({ u64 __ret; \
33 __asm__ __volatile__("ldxa [%1] %2, %0" \
34 : "=r" (__ret) \
35 : "r" (__reg), "i" (ASI_PHYS_BYPASS_EC_E) \
36 : "memory"); \
37 __ret; \
38})
39#define sabre_write(__reg, __val) \
40 __asm__ __volatile__("stxa %0, [%1] %2" \
41 : /* no outputs */ \
42 : "r" (__val), "r" (__reg), \
43 "i" (ASI_PHYS_BYPASS_EC_E) \
44 : "memory")
45
46/* SABRE PCI controller register offsets and definitions. */
47#define SABRE_UE_AFSR 0x0030UL
48#define SABRE_UEAFSR_PDRD 0x4000000000000000UL /* Primary PCI DMA Read */
49#define SABRE_UEAFSR_PDWR 0x2000000000000000UL /* Primary PCI DMA Write */
50#define SABRE_UEAFSR_SDRD 0x0800000000000000UL /* Secondary PCI DMA Read */
51#define SABRE_UEAFSR_SDWR 0x0400000000000000UL /* Secondary PCI DMA Write */
52#define SABRE_UEAFSR_SDTE 0x0200000000000000UL /* Secondary DMA Translation Error */
53#define SABRE_UEAFSR_PDTE 0x0100000000000000UL /* Primary DMA Translation Error */
54#define SABRE_UEAFSR_BMSK 0x0000ffff00000000UL /* Bytemask */
55#define SABRE_UEAFSR_OFF 0x00000000e0000000UL /* Offset (AFAR bits [5:3] */
56#define SABRE_UEAFSR_BLK 0x0000000000800000UL /* Was block operation */
57#define SABRE_UECE_AFAR 0x0038UL
58#define SABRE_CE_AFSR 0x0040UL
59#define SABRE_CEAFSR_PDRD 0x4000000000000000UL /* Primary PCI DMA Read */
60#define SABRE_CEAFSR_PDWR 0x2000000000000000UL /* Primary PCI DMA Write */
61#define SABRE_CEAFSR_SDRD 0x0800000000000000UL /* Secondary PCI DMA Read */
62#define SABRE_CEAFSR_SDWR 0x0400000000000000UL /* Secondary PCI DMA Write */
63#define SABRE_CEAFSR_ESYND 0x00ff000000000000UL /* ECC Syndrome */
64#define SABRE_CEAFSR_BMSK 0x0000ffff00000000UL /* Bytemask */
65#define SABRE_CEAFSR_OFF 0x00000000e0000000UL /* Offset */
66#define SABRE_CEAFSR_BLK 0x0000000000800000UL /* Was block operation */
67#define SABRE_UECE_AFAR_ALIAS 0x0048UL /* Aliases to 0x0038 */
68#define SABRE_IOMMU_CONTROL 0x0200UL
69#define SABRE_IOMMUCTRL_ERRSTS 0x0000000006000000UL /* Error status bits */
70#define SABRE_IOMMUCTRL_ERR 0x0000000001000000UL /* Error present in IOTLB */
71#define SABRE_IOMMUCTRL_LCKEN 0x0000000000800000UL /* IOTLB lock enable */
72#define SABRE_IOMMUCTRL_LCKPTR 0x0000000000780000UL /* IOTLB lock pointer */
73#define SABRE_IOMMUCTRL_TSBSZ 0x0000000000070000UL /* TSB Size */
74#define SABRE_IOMMU_TSBSZ_1K 0x0000000000000000
75#define SABRE_IOMMU_TSBSZ_2K 0x0000000000010000
76#define SABRE_IOMMU_TSBSZ_4K 0x0000000000020000
77#define SABRE_IOMMU_TSBSZ_8K 0x0000000000030000
78#define SABRE_IOMMU_TSBSZ_16K 0x0000000000040000
79#define SABRE_IOMMU_TSBSZ_32K 0x0000000000050000
80#define SABRE_IOMMU_TSBSZ_64K 0x0000000000060000
81#define SABRE_IOMMU_TSBSZ_128K 0x0000000000070000
82#define SABRE_IOMMUCTRL_TBWSZ 0x0000000000000004UL /* TSB assumed page size */
83#define SABRE_IOMMUCTRL_DENAB 0x0000000000000002UL /* Diagnostic Mode Enable */
84#define SABRE_IOMMUCTRL_ENAB 0x0000000000000001UL /* IOMMU Enable */
85#define SABRE_IOMMU_TSBBASE 0x0208UL
86#define SABRE_IOMMU_FLUSH 0x0210UL
87#define SABRE_IMAP_A_SLOT0 0x0c00UL
88#define SABRE_IMAP_B_SLOT0 0x0c20UL
89#define SABRE_IMAP_SCSI 0x1000UL
90#define SABRE_IMAP_ETH 0x1008UL
91#define SABRE_IMAP_BPP 0x1010UL
92#define SABRE_IMAP_AU_REC 0x1018UL
93#define SABRE_IMAP_AU_PLAY 0x1020UL
94#define SABRE_IMAP_PFAIL 0x1028UL
95#define SABRE_IMAP_KMS 0x1030UL
96#define SABRE_IMAP_FLPY 0x1038UL
97#define SABRE_IMAP_SHW 0x1040UL
98#define SABRE_IMAP_KBD 0x1048UL
99#define SABRE_IMAP_MS 0x1050UL
100#define SABRE_IMAP_SER 0x1058UL
101#define SABRE_IMAP_UE 0x1070UL
102#define SABRE_IMAP_CE 0x1078UL
103#define SABRE_IMAP_PCIERR 0x1080UL
104#define SABRE_IMAP_GFX 0x1098UL
105#define SABRE_IMAP_EUPA 0x10a0UL
106#define SABRE_ICLR_A_SLOT0 0x1400UL
107#define SABRE_ICLR_B_SLOT0 0x1480UL
108#define SABRE_ICLR_SCSI 0x1800UL
109#define SABRE_ICLR_ETH 0x1808UL
110#define SABRE_ICLR_BPP 0x1810UL
111#define SABRE_ICLR_AU_REC 0x1818UL
112#define SABRE_ICLR_AU_PLAY 0x1820UL
113#define SABRE_ICLR_PFAIL 0x1828UL
114#define SABRE_ICLR_KMS 0x1830UL
115#define SABRE_ICLR_FLPY 0x1838UL
116#define SABRE_ICLR_SHW 0x1840UL
117#define SABRE_ICLR_KBD 0x1848UL
118#define SABRE_ICLR_MS 0x1850UL
119#define SABRE_ICLR_SER 0x1858UL
120#define SABRE_ICLR_UE 0x1870UL
121#define SABRE_ICLR_CE 0x1878UL
122#define SABRE_ICLR_PCIERR 0x1880UL
123#define SABRE_WRSYNC 0x1c20UL
124#define SABRE_PCICTRL 0x2000UL
125#define SABRE_PCICTRL_MRLEN 0x0000001000000000UL /* Use MemoryReadLine for block loads/stores */
126#define SABRE_PCICTRL_SERR 0x0000000400000000UL /* Set when SERR asserted on PCI bus */
127#define SABRE_PCICTRL_ARBPARK 0x0000000000200000UL /* Bus Parking 0=Ultra-IIi 1=prev-bus-owner */
128#define SABRE_PCICTRL_CPUPRIO 0x0000000000100000UL /* Ultra-IIi granted every other bus cycle */
129#define SABRE_PCICTRL_ARBPRIO 0x00000000000f0000UL /* Slot which is granted every other bus cycle */
130#define SABRE_PCICTRL_ERREN 0x0000000000000100UL /* PCI Error Interrupt Enable */
131#define SABRE_PCICTRL_RTRYWE 0x0000000000000080UL /* DMA Flow Control 0=wait-if-possible 1=retry */
132#define SABRE_PCICTRL_AEN 0x000000000000000fUL /* Slot PCI arbitration enables */
133#define SABRE_PIOAFSR 0x2010UL
134#define SABRE_PIOAFSR_PMA 0x8000000000000000UL /* Primary Master Abort */
135#define SABRE_PIOAFSR_PTA 0x4000000000000000UL /* Primary Target Abort */
136#define SABRE_PIOAFSR_PRTRY 0x2000000000000000UL /* Primary Excessive Retries */
137#define SABRE_PIOAFSR_PPERR 0x1000000000000000UL /* Primary Parity Error */
138#define SABRE_PIOAFSR_SMA 0x0800000000000000UL /* Secondary Master Abort */
139#define SABRE_PIOAFSR_STA 0x0400000000000000UL /* Secondary Target Abort */
140#define SABRE_PIOAFSR_SRTRY 0x0200000000000000UL /* Secondary Excessive Retries */
141#define SABRE_PIOAFSR_SPERR 0x0100000000000000UL /* Secondary Parity Error */
142#define SABRE_PIOAFSR_BMSK 0x0000ffff00000000UL /* Byte Mask */
143#define SABRE_PIOAFSR_BLK 0x0000000080000000UL /* Was Block Operation */
144#define SABRE_PIOAFAR 0x2018UL
145#define SABRE_PCIDIAG 0x2020UL
146#define SABRE_PCIDIAG_DRTRY 0x0000000000000040UL /* Disable PIO Retry Limit */
147#define SABRE_PCIDIAG_IPAPAR 0x0000000000000008UL /* Invert PIO Address Parity */
148#define SABRE_PCIDIAG_IPDPAR 0x0000000000000004UL /* Invert PIO Data Parity */
149#define SABRE_PCIDIAG_IDDPAR 0x0000000000000002UL /* Invert DMA Data Parity */
150#define SABRE_PCIDIAG_ELPBK 0x0000000000000001UL /* Loopback Enable - not supported */
151#define SABRE_PCITASR 0x2028UL
152#define SABRE_PCITASR_EF 0x0000000000000080UL /* Respond to 0xe0000000-0xffffffff */
153#define SABRE_PCITASR_CD 0x0000000000000040UL /* Respond to 0xc0000000-0xdfffffff */
154#define SABRE_PCITASR_AB 0x0000000000000020UL /* Respond to 0xa0000000-0xbfffffff */
155#define SABRE_PCITASR_89 0x0000000000000010UL /* Respond to 0x80000000-0x9fffffff */
156#define SABRE_PCITASR_67 0x0000000000000008UL /* Respond to 0x60000000-0x7fffffff */
157#define SABRE_PCITASR_45 0x0000000000000004UL /* Respond to 0x40000000-0x5fffffff */
158#define SABRE_PCITASR_23 0x0000000000000002UL /* Respond to 0x20000000-0x3fffffff */
159#define SABRE_PCITASR_01 0x0000000000000001UL /* Respond to 0x00000000-0x1fffffff */
160#define SABRE_PIOBUF_DIAG 0x5000UL
161#define SABRE_DMABUF_DIAGLO 0x5100UL
162#define SABRE_DMABUF_DIAGHI 0x51c0UL
163#define SABRE_IMAP_GFX_ALIAS 0x6000UL /* Aliases to 0x1098 */
164#define SABRE_IMAP_EUPA_ALIAS 0x8000UL /* Aliases to 0x10a0 */
165#define SABRE_IOMMU_VADIAG 0xa400UL
166#define SABRE_IOMMU_TCDIAG 0xa408UL
167#define SABRE_IOMMU_TAG 0xa580UL
168#define SABRE_IOMMUTAG_ERRSTS 0x0000000001800000UL /* Error status bits */
169#define SABRE_IOMMUTAG_ERR 0x0000000000400000UL /* Error present */
170#define SABRE_IOMMUTAG_WRITE 0x0000000000200000UL /* Page is writable */
171#define SABRE_IOMMUTAG_STREAM 0x0000000000100000UL /* Streamable bit - unused */
172#define SABRE_IOMMUTAG_SIZE 0x0000000000080000UL /* 0=8k 1=16k */
173#define SABRE_IOMMUTAG_VPN 0x000000000007ffffUL /* Virtual Page Number [31:13] */
174#define SABRE_IOMMU_DATA 0xa600UL
175#define SABRE_IOMMUDATA_VALID 0x0000000040000000UL /* Valid */
176#define SABRE_IOMMUDATA_USED 0x0000000020000000UL /* Used (for LRU algorithm) */
177#define SABRE_IOMMUDATA_CACHE 0x0000000010000000UL /* Cacheable */
178#define SABRE_IOMMUDATA_PPN 0x00000000001fffffUL /* Physical Page Number [33:13] */
179#define SABRE_PCI_IRQSTATE 0xa800UL
180#define SABRE_OBIO_IRQSTATE 0xa808UL
181#define SABRE_FFBCFG 0xf000UL
182#define SABRE_FFBCFG_SPRQS 0x000000000f000000 /* Slave P_RQST queue size */
183#define SABRE_FFBCFG_ONEREAD 0x0000000000004000 /* Slave supports one outstanding read */
184#define SABRE_MCCTRL0 0xf010UL
185#define SABRE_MCCTRL0_RENAB 0x0000000080000000 /* Refresh Enable */
186#define SABRE_MCCTRL0_EENAB 0x0000000010000000 /* Enable all ECC functions */
187#define SABRE_MCCTRL0_11BIT 0x0000000000001000 /* Enable 11-bit column addressing */
188#define SABRE_MCCTRL0_DPP 0x0000000000000f00 /* DIMM Pair Present Bits */
189#define SABRE_MCCTRL0_RINTVL 0x00000000000000ff /* Refresh Interval */
190#define SABRE_MCCTRL1 0xf018UL
191#define SABRE_MCCTRL1_AMDC 0x0000000038000000 /* Advance Memdata Clock */
192#define SABRE_MCCTRL1_ARDC 0x0000000007000000 /* Advance DRAM Read Data Clock */
193#define SABRE_MCCTRL1_CSR 0x0000000000e00000 /* CAS to RAS delay for CBR refresh */
194#define SABRE_MCCTRL1_CASRW 0x00000000001c0000 /* CAS length for read/write */
195#define SABRE_MCCTRL1_RCD 0x0000000000038000 /* RAS to CAS delay */
196#define SABRE_MCCTRL1_CP 0x0000000000007000 /* CAS Precharge */
197#define SABRE_MCCTRL1_RP 0x0000000000000e00 /* RAS Precharge */
198#define SABRE_MCCTRL1_RAS 0x00000000000001c0 /* Length of RAS for refresh */
199#define SABRE_MCCTRL1_CASRW2 0x0000000000000038 /* Must be same as CASRW */
200#define SABRE_MCCTRL1_RSC 0x0000000000000007 /* RAS after CAS hold time */
201#define SABRE_RESETCTRL 0xf020UL
202
203#define SABRE_CONFIGSPACE 0x001000000UL
204#define SABRE_IOSPACE 0x002000000UL
205#define SABRE_IOSPACE_SIZE 0x000ffffffUL
206#define SABRE_MEMSPACE 0x100000000UL
207#define SABRE_MEMSPACE_SIZE 0x07fffffffUL
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209static int hummingbird_p;
210static struct pci_bus *sabre_root_bus;
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/* SABRE error handling support. */
David S. Miller6c108f12007-05-07 23:49:01 -0700213static void sabre_check_iommu_error(struct pci_pbm_info *pbm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 unsigned long afsr,
215 unsigned long afar)
216{
David S. Miller6c108f12007-05-07 23:49:01 -0700217 struct iommu *iommu = pbm->iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 unsigned long iommu_tag[16];
219 unsigned long iommu_data[16];
220 unsigned long flags;
221 u64 control;
222 int i;
223
224 spin_lock_irqsave(&iommu->lock, flags);
225 control = sabre_read(iommu->iommu_control);
226 if (control & SABRE_IOMMUCTRL_ERR) {
227 char *type_string;
228
229 /* Clear the error encountered bit.
230 * NOTE: On Sabre this is write 1 to clear,
231 * which is different from Psycho.
232 */
233 sabre_write(iommu->iommu_control, control);
234 switch((control & SABRE_IOMMUCTRL_ERRSTS) >> 25UL) {
235 case 1:
236 type_string = "Invalid Error";
237 break;
238 case 3:
239 type_string = "ECC Error";
240 break;
241 default:
242 type_string = "Unknown";
243 break;
244 };
David S. Miller6c108f12007-05-07 23:49:01 -0700245 printk("%s: IOMMU Error, type[%s]\n",
246 pbm->name, type_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 /* Enter diagnostic mode and probe for error'd
249 * entries in the IOTLB.
250 */
251 control &= ~(SABRE_IOMMUCTRL_ERRSTS | SABRE_IOMMUCTRL_ERR);
252 sabre_write(iommu->iommu_control,
253 (control | SABRE_IOMMUCTRL_DENAB));
254 for (i = 0; i < 16; i++) {
David S. Miller6c108f12007-05-07 23:49:01 -0700255 unsigned long base = pbm->controller_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 iommu_tag[i] =
258 sabre_read(base + SABRE_IOMMU_TAG + (i * 8UL));
259 iommu_data[i] =
260 sabre_read(base + SABRE_IOMMU_DATA + (i * 8UL));
261 sabre_write(base + SABRE_IOMMU_TAG + (i * 8UL), 0);
262 sabre_write(base + SABRE_IOMMU_DATA + (i * 8UL), 0);
263 }
264 sabre_write(iommu->iommu_control, control);
265
266 for (i = 0; i < 16; i++) {
267 unsigned long tag, data;
268
269 tag = iommu_tag[i];
270 if (!(tag & SABRE_IOMMUTAG_ERR))
271 continue;
272
273 data = iommu_data[i];
274 switch((tag & SABRE_IOMMUTAG_ERRSTS) >> 23UL) {
275 case 1:
276 type_string = "Invalid Error";
277 break;
278 case 3:
279 type_string = "ECC Error";
280 break;
281 default:
282 type_string = "Unknown";
283 break;
284 };
David S. Miller6c108f12007-05-07 23:49:01 -0700285 printk("%s: IOMMU TAG(%d)[RAW(%016lx)error(%s)wr(%d)sz(%dK)vpg(%08lx)]\n",
286 pbm->name, i, tag, type_string,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 ((tag & SABRE_IOMMUTAG_WRITE) ? 1 : 0),
288 ((tag & SABRE_IOMMUTAG_SIZE) ? 64 : 8),
289 ((tag & SABRE_IOMMUTAG_VPN) << IOMMU_PAGE_SHIFT));
David S. Miller6c108f12007-05-07 23:49:01 -0700290 printk("%s: IOMMU DATA(%d)[RAW(%016lx)valid(%d)used(%d)cache(%d)ppg(%016lx)\n",
291 pbm->name, i, data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 ((data & SABRE_IOMMUDATA_VALID) ? 1 : 0),
293 ((data & SABRE_IOMMUDATA_USED) ? 1 : 0),
294 ((data & SABRE_IOMMUDATA_CACHE) ? 1 : 0),
295 ((data & SABRE_IOMMUDATA_PPN) << IOMMU_PAGE_SHIFT));
296 }
297 }
298 spin_unlock_irqrestore(&iommu->lock, flags);
299}
300
Al Viro6d24c8d2006-10-08 08:23:28 -0400301static irqreturn_t sabre_ue_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
David S. Miller6c108f12007-05-07 23:49:01 -0700303 struct pci_pbm_info *pbm = dev_id;
304 unsigned long afsr_reg = pbm->controller_regs + SABRE_UE_AFSR;
305 unsigned long afar_reg = pbm->controller_regs + SABRE_UECE_AFAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 unsigned long afsr, afar, error_bits;
307 int reported;
308
309 /* Latch uncorrectable error status. */
310 afar = sabre_read(afar_reg);
311 afsr = sabre_read(afsr_reg);
312
313 /* Clear the primary/secondary error status bits. */
314 error_bits = afsr &
315 (SABRE_UEAFSR_PDRD | SABRE_UEAFSR_PDWR |
316 SABRE_UEAFSR_SDRD | SABRE_UEAFSR_SDWR |
317 SABRE_UEAFSR_SDTE | SABRE_UEAFSR_PDTE);
318 if (!error_bits)
319 return IRQ_NONE;
320 sabre_write(afsr_reg, error_bits);
321
322 /* Log the error. */
David S. Miller6c108f12007-05-07 23:49:01 -0700323 printk("%s: Uncorrectable Error, primary error type[%s%s]\n",
324 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 ((error_bits & SABRE_UEAFSR_PDRD) ?
326 "DMA Read" :
327 ((error_bits & SABRE_UEAFSR_PDWR) ?
328 "DMA Write" : "???")),
329 ((error_bits & SABRE_UEAFSR_PDTE) ?
330 ":Translation Error" : ""));
David S. Miller6c108f12007-05-07 23:49:01 -0700331 printk("%s: bytemask[%04lx] dword_offset[%lx] was_block(%d)\n",
332 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 (afsr & SABRE_UEAFSR_BMSK) >> 32UL,
334 (afsr & SABRE_UEAFSR_OFF) >> 29UL,
335 ((afsr & SABRE_UEAFSR_BLK) ? 1 : 0));
David S. Miller6c108f12007-05-07 23:49:01 -0700336 printk("%s: UE AFAR [%016lx]\n", pbm->name, afar);
337 printk("%s: UE Secondary errors [", pbm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 reported = 0;
339 if (afsr & SABRE_UEAFSR_SDRD) {
340 reported++;
341 printk("(DMA Read)");
342 }
343 if (afsr & SABRE_UEAFSR_SDWR) {
344 reported++;
345 printk("(DMA Write)");
346 }
347 if (afsr & SABRE_UEAFSR_SDTE) {
348 reported++;
349 printk("(Translation Error)");
350 }
351 if (!reported)
352 printk("(none)");
353 printk("]\n");
354
355 /* Interrogate IOMMU for error status. */
David S. Miller6c108f12007-05-07 23:49:01 -0700356 sabre_check_iommu_error(pbm, afsr, afar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 return IRQ_HANDLED;
359}
360
Al Viro6d24c8d2006-10-08 08:23:28 -0400361static irqreturn_t sabre_ce_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
David S. Miller6c108f12007-05-07 23:49:01 -0700363 struct pci_pbm_info *pbm = dev_id;
364 unsigned long afsr_reg = pbm->controller_regs + SABRE_CE_AFSR;
365 unsigned long afar_reg = pbm->controller_regs + SABRE_UECE_AFAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 unsigned long afsr, afar, error_bits;
367 int reported;
368
369 /* Latch error status. */
370 afar = sabre_read(afar_reg);
371 afsr = sabre_read(afsr_reg);
372
373 /* Clear primary/secondary error status bits. */
374 error_bits = afsr &
375 (SABRE_CEAFSR_PDRD | SABRE_CEAFSR_PDWR |
376 SABRE_CEAFSR_SDRD | SABRE_CEAFSR_SDWR);
377 if (!error_bits)
378 return IRQ_NONE;
379 sabre_write(afsr_reg, error_bits);
380
381 /* Log the error. */
David S. Miller6c108f12007-05-07 23:49:01 -0700382 printk("%s: Correctable Error, primary error type[%s]\n",
383 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 ((error_bits & SABRE_CEAFSR_PDRD) ?
385 "DMA Read" :
386 ((error_bits & SABRE_CEAFSR_PDWR) ?
387 "DMA Write" : "???")));
388
389 /* XXX Use syndrome and afar to print out module string just like
390 * XXX UDB CE trap handler does... -DaveM
391 */
David S. Miller6c108f12007-05-07 23:49:01 -0700392 printk("%s: syndrome[%02lx] bytemask[%04lx] dword_offset[%lx] "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 "was_block(%d)\n",
David S. Miller6c108f12007-05-07 23:49:01 -0700394 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 (afsr & SABRE_CEAFSR_ESYND) >> 48UL,
396 (afsr & SABRE_CEAFSR_BMSK) >> 32UL,
397 (afsr & SABRE_CEAFSR_OFF) >> 29UL,
398 ((afsr & SABRE_CEAFSR_BLK) ? 1 : 0));
David S. Miller6c108f12007-05-07 23:49:01 -0700399 printk("%s: CE AFAR [%016lx]\n", pbm->name, afar);
400 printk("%s: CE Secondary errors [", pbm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 reported = 0;
402 if (afsr & SABRE_CEAFSR_SDRD) {
403 reported++;
404 printk("(DMA Read)");
405 }
406 if (afsr & SABRE_CEAFSR_SDWR) {
407 reported++;
408 printk("(DMA Write)");
409 }
410 if (!reported)
411 printk("(none)");
412 printk("]\n");
413
414 return IRQ_HANDLED;
415}
416
David S. Miller6c108f12007-05-07 23:49:01 -0700417static irqreturn_t sabre_pcierr_intr_other(struct pci_pbm_info *pbm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 unsigned long csr_reg, csr, csr_error_bits;
420 irqreturn_t ret = IRQ_NONE;
421 u16 stat;
422
David S. Miller6c108f12007-05-07 23:49:01 -0700423 csr_reg = pbm->controller_regs + SABRE_PCICTRL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 csr = sabre_read(csr_reg);
425 csr_error_bits =
426 csr & SABRE_PCICTRL_SERR;
427 if (csr_error_bits) {
428 /* Clear the errors. */
429 sabre_write(csr_reg, csr);
430
431 /* Log 'em. */
432 if (csr_error_bits & SABRE_PCICTRL_SERR)
David S. Miller6c108f12007-05-07 23:49:01 -0700433 printk("%s: PCI SERR signal asserted.\n",
434 pbm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 ret = IRQ_HANDLED;
436 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800437 pci_bus_read_config_word(sabre_root_bus, 0,
438 PCI_STATUS, &stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (stat & (PCI_STATUS_PARITY |
440 PCI_STATUS_SIG_TARGET_ABORT |
441 PCI_STATUS_REC_TARGET_ABORT |
442 PCI_STATUS_REC_MASTER_ABORT |
443 PCI_STATUS_SIG_SYSTEM_ERROR)) {
David S. Miller6c108f12007-05-07 23:49:01 -0700444 printk("%s: PCI bus error, PCI_STATUS[%04x]\n",
445 pbm->name, stat);
David S. Millera2fb23a2007-02-28 23:35:04 -0800446 pci_bus_write_config_word(sabre_root_bus, 0,
447 PCI_STATUS, 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 ret = IRQ_HANDLED;
449 }
450 return ret;
451}
452
Al Viro6d24c8d2006-10-08 08:23:28 -0400453static irqreturn_t sabre_pcierr_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
David S. Miller6c108f12007-05-07 23:49:01 -0700455 struct pci_pbm_info *pbm = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 unsigned long afsr_reg, afar_reg;
457 unsigned long afsr, afar, error_bits;
458 int reported;
459
David S. Miller6c108f12007-05-07 23:49:01 -0700460 afsr_reg = pbm->controller_regs + SABRE_PIOAFSR;
461 afar_reg = pbm->controller_regs + SABRE_PIOAFAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* Latch error status. */
464 afar = sabre_read(afar_reg);
465 afsr = sabre_read(afsr_reg);
466
467 /* Clear primary/secondary error status bits. */
468 error_bits = afsr &
469 (SABRE_PIOAFSR_PMA | SABRE_PIOAFSR_PTA |
470 SABRE_PIOAFSR_PRTRY | SABRE_PIOAFSR_PPERR |
471 SABRE_PIOAFSR_SMA | SABRE_PIOAFSR_STA |
472 SABRE_PIOAFSR_SRTRY | SABRE_PIOAFSR_SPERR);
473 if (!error_bits)
David S. Miller6c108f12007-05-07 23:49:01 -0700474 return sabre_pcierr_intr_other(pbm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 sabre_write(afsr_reg, error_bits);
476
477 /* Log the error. */
David S. Miller6c108f12007-05-07 23:49:01 -0700478 printk("%s: PCI Error, primary error type[%s]\n",
479 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 (((error_bits & SABRE_PIOAFSR_PMA) ?
481 "Master Abort" :
482 ((error_bits & SABRE_PIOAFSR_PTA) ?
483 "Target Abort" :
484 ((error_bits & SABRE_PIOAFSR_PRTRY) ?
485 "Excessive Retries" :
486 ((error_bits & SABRE_PIOAFSR_PPERR) ?
487 "Parity Error" : "???"))))));
David S. Miller6c108f12007-05-07 23:49:01 -0700488 printk("%s: bytemask[%04lx] was_block(%d)\n",
489 pbm->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 (afsr & SABRE_PIOAFSR_BMSK) >> 32UL,
491 (afsr & SABRE_PIOAFSR_BLK) ? 1 : 0);
David S. Miller6c108f12007-05-07 23:49:01 -0700492 printk("%s: PCI AFAR [%016lx]\n", pbm->name, afar);
493 printk("%s: PCI Secondary errors [", pbm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 reported = 0;
495 if (afsr & SABRE_PIOAFSR_SMA) {
496 reported++;
497 printk("(Master Abort)");
498 }
499 if (afsr & SABRE_PIOAFSR_STA) {
500 reported++;
501 printk("(Target Abort)");
502 }
503 if (afsr & SABRE_PIOAFSR_SRTRY) {
504 reported++;
505 printk("(Excessive Retries)");
506 }
507 if (afsr & SABRE_PIOAFSR_SPERR) {
508 reported++;
509 printk("(Parity Error)");
510 }
511 if (!reported)
512 printk("(none)");
513 printk("]\n");
514
515 /* For the error types shown, scan both PCI buses for devices
516 * which have logged that error type.
517 */
518
519 /* If we see a Target Abort, this could be the result of an
520 * IOMMU translation error of some sort. It is extremely
521 * useful to log this information as usually it indicates
522 * a bug in the IOMMU support code or a PCI device driver.
523 */
524 if (error_bits & (SABRE_PIOAFSR_PTA | SABRE_PIOAFSR_STA)) {
David S. Miller6c108f12007-05-07 23:49:01 -0700525 sabre_check_iommu_error(pbm, afsr, afar);
526 pci_scan_for_target_abort(pbm, pbm->pci_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
David S. Miller01f94c42007-03-04 12:53:19 -0800528 if (error_bits & (SABRE_PIOAFSR_PMA | SABRE_PIOAFSR_SMA))
David S. Miller6c108f12007-05-07 23:49:01 -0700529 pci_scan_for_master_abort(pbm, pbm->pci_bus);
David S. Miller01f94c42007-03-04 12:53:19 -0800530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /* For excessive retries, SABRE/PBM will abort the device
532 * and there is no way to specifically check for excessive
533 * retries in the config space status registers. So what
534 * we hope is that we'll catch it via the master/target
535 * abort events.
536 */
537
David S. Miller01f94c42007-03-04 12:53:19 -0800538 if (error_bits & (SABRE_PIOAFSR_PPERR | SABRE_PIOAFSR_SPERR))
David S. Miller6c108f12007-05-07 23:49:01 -0700539 pci_scan_for_parity_error(pbm, pbm->pci_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 return IRQ_HANDLED;
542}
543
David S. Miller34768bc2007-05-07 23:06:27 -0700544static void sabre_register_error_handlers(struct pci_pbm_info *pbm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
David S. Miller2b1e5972006-06-29 15:07:37 -0700546 struct device_node *dp = pbm->prom_node;
547 struct of_device *op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 unsigned long base = pbm->controller_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 u64 tmp;
David S. Milleraf803182007-05-08 17:23:31 -0700550 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
David S. Miller2b1e5972006-06-29 15:07:37 -0700552 if (pbm->chip_type == PBM_CHIP_TYPE_SABRE)
553 dp = dp->parent;
554
555 op = of_find_device_by_node(dp);
556 if (!op)
557 return;
558
559 /* Sabre/Hummingbird IRQ property layout is:
560 * 0: PCI ERR
561 * 1: UE ERR
562 * 2: CE ERR
563 * 3: POWER FAIL
564 */
565 if (op->num_irqs < 4)
566 return;
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* We clear the error bits in the appropriate AFSR before
569 * registering the handler so that we don't get spurious
570 * interrupts.
571 */
572 sabre_write(base + SABRE_UE_AFSR,
573 (SABRE_UEAFSR_PDRD | SABRE_UEAFSR_PDWR |
574 SABRE_UEAFSR_SDRD | SABRE_UEAFSR_SDWR |
575 SABRE_UEAFSR_SDTE | SABRE_UEAFSR_PDTE));
David S. Miller2b1e5972006-06-29 15:07:37 -0700576
David S. Milleraf803182007-05-08 17:23:31 -0700577 err = request_irq(op->irqs[1], sabre_ue_intr, 0, "SABRE_UE", pbm);
578 if (err)
579 printk(KERN_WARNING "%s: Couldn't register UE, err=%d.\n",
580 pbm->name, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 sabre_write(base + SABRE_CE_AFSR,
583 (SABRE_CEAFSR_PDRD | SABRE_CEAFSR_PDWR |
584 SABRE_CEAFSR_SDRD | SABRE_CEAFSR_SDWR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
David S. Milleraf803182007-05-08 17:23:31 -0700586 err = request_irq(op->irqs[2], sabre_ce_intr, 0, "SABRE_CE", pbm);
587 if (err)
588 printk(KERN_WARNING "%s: Couldn't register CE, err=%d.\n",
589 pbm->name, err);
590 err = request_irq(op->irqs[0], sabre_pcierr_intr, 0,
591 "SABRE_PCIERR", pbm);
592 if (err)
593 printk(KERN_WARNING "%s: Couldn't register PCIERR, err=%d.\n",
594 pbm->name, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 tmp = sabre_read(base + SABRE_PCICTRL);
597 tmp |= SABRE_PCICTRL_ERREN;
598 sabre_write(base + SABRE_PCICTRL, tmp);
599}
600
David S. Miller34768bc2007-05-07 23:06:27 -0700601static void apb_init(struct pci_bus *sabre_bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 struct pci_dev *pdev;
604
605 list_for_each_entry(pdev, &sabre_bus->devices, bus_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (pdev->vendor == PCI_VENDOR_ID_SUN &&
607 pdev->device == PCI_DEVICE_ID_SUN_SIMBA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 u16 word16;
609
David S. Miller01f94c42007-03-04 12:53:19 -0800610 pci_read_config_word(pdev, PCI_COMMAND, &word16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 word16 |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY |
612 PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY |
613 PCI_COMMAND_IO;
David S. Miller01f94c42007-03-04 12:53:19 -0800614 pci_write_config_word(pdev, PCI_COMMAND, word16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 /* Status register bits are "write 1 to clear". */
David S. Miller01f94c42007-03-04 12:53:19 -0800617 pci_write_config_word(pdev, PCI_STATUS, 0xffff);
618 pci_write_config_word(pdev, PCI_SEC_STATUS, 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 /* Use a primary/seconday latency timer value
621 * of 64.
622 */
David S. Miller01f94c42007-03-04 12:53:19 -0800623 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 64);
624 pci_write_config_byte(pdev, PCI_SEC_LATENCY_TIMER, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 /* Enable reporting/forwarding of master aborts,
627 * parity, and SERR.
628 */
David S. Miller01f94c42007-03-04 12:53:19 -0800629 pci_write_config_byte(pdev, PCI_BRIDGE_CONTROL,
630 (PCI_BRIDGE_CTL_PARITY |
631 PCI_BRIDGE_CTL_SERR |
632 PCI_BRIDGE_CTL_MASTER_ABORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634 }
635}
636
David S. Millere822358a2008-09-01 18:32:22 -0700637static void __init sabre_scan_bus(struct pci_pbm_info *pbm,
638 struct device *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640 static int once;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /* The APB bridge speaks to the Sabre host PCI bridge
643 * at 66Mhz, but the front side of APB runs at 33Mhz
644 * for both segments.
David S. Miller321566c2007-06-06 14:03:08 -0700645 *
646 * Hummingbird systems do not use APB, so they run
647 * at 66MHZ.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 */
David S. Miller321566c2007-06-06 14:03:08 -0700649 if (hummingbird_p)
650 pbm->is_66mhz_capable = 1;
651 else
652 pbm->is_66mhz_capable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 /* This driver has not been verified to handle
655 * multiple SABREs yet, so trap this.
656 *
657 * Also note that the SABRE host bridge is hardwired
658 * to live at bus 0.
659 */
660 if (once != 0) {
David S. Milleredbe8052008-08-30 03:14:01 -0700661 printk(KERN_ERR PFX "Multiple controllers unsupported.\n");
662 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664 once++;
665
David S. Millere822358a2008-09-01 18:32:22 -0700666 pbm->pci_bus = pci_scan_one_pbm(pbm, parent);
David S. Miller321566c2007-06-06 14:03:08 -0700667 if (!pbm->pci_bus)
David S. Millera2fb23a2007-02-28 23:35:04 -0800668 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
David S. Miller321566c2007-06-06 14:03:08 -0700670 sabre_root_bus = pbm->pci_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
David S. Miller321566c2007-06-06 14:03:08 -0700672 apb_init(pbm->pci_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
David S. Miller34768bc2007-05-07 23:06:27 -0700674 sabre_register_error_handlers(pbm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
David S. Millerad7ad572007-07-27 22:39:14 -0700677static int sabre_iommu_init(struct pci_pbm_info *pbm,
678 int tsbsize, unsigned long dvma_offset,
679 u32 dma_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
David S. Miller28113a92007-05-08 00:19:02 -0700681 struct iommu *iommu = pbm->iommu;
David S. Miller51e85132005-10-13 21:10:08 -0700682 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 u64 control;
David S. Millerad7ad572007-07-27 22:39:14 -0700684 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /* Register addresses. */
David S. Miller28113a92007-05-08 00:19:02 -0700687 iommu->iommu_control = pbm->controller_regs + SABRE_IOMMU_CONTROL;
688 iommu->iommu_tsbbase = pbm->controller_regs + SABRE_IOMMU_TSBBASE;
689 iommu->iommu_flush = pbm->controller_regs + SABRE_IOMMU_FLUSH;
David S. Millerad7ad572007-07-27 22:39:14 -0700690 iommu->iommu_tags = iommu->iommu_flush + (0xa580UL - 0x0210UL);
David S. Miller28113a92007-05-08 00:19:02 -0700691 iommu->write_complete_reg = pbm->controller_regs + SABRE_WRSYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /* Sabre's IOMMU lacks ctx flushing. */
693 iommu->iommu_ctxflush = 0;
694
695 /* Invalidate TLB Entries. */
David S. Miller28113a92007-05-08 00:19:02 -0700696 control = sabre_read(pbm->controller_regs + SABRE_IOMMU_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 control |= SABRE_IOMMUCTRL_DENAB;
David S. Miller28113a92007-05-08 00:19:02 -0700698 sabre_write(pbm->controller_regs + SABRE_IOMMU_CONTROL, control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 for(i = 0; i < 16; i++) {
David S. Miller28113a92007-05-08 00:19:02 -0700701 sabre_write(pbm->controller_regs + SABRE_IOMMU_TAG + (i * 8UL), 0);
702 sabre_write(pbm->controller_regs + SABRE_IOMMU_DATA + (i * 8UL), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704
705 /* Leave diag mode enabled for full-flushing done
706 * in pci_iommu.c
707 */
David S. Millerad7ad572007-07-27 22:39:14 -0700708 err = iommu_table_init(iommu, tsbsize * 1024 * 8,
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700709 dvma_offset, dma_mask, pbm->numa_node);
David S. Milleredbe8052008-08-30 03:14:01 -0700710 if (err) {
711 printk(KERN_ERR PFX "iommu_table_init() failed\n");
David S. Millerad7ad572007-07-27 22:39:14 -0700712 return err;
David S. Milleredbe8052008-08-30 03:14:01 -0700713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
David S. Miller28113a92007-05-08 00:19:02 -0700715 sabre_write(pbm->controller_regs + SABRE_IOMMU_TSBBASE,
David S. Miller51e85132005-10-13 21:10:08 -0700716 __pa(iommu->page_table));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
David S. Miller28113a92007-05-08 00:19:02 -0700718 control = sabre_read(pbm->controller_regs + SABRE_IOMMU_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 control &= ~(SABRE_IOMMUCTRL_TSBSZ | SABRE_IOMMUCTRL_TBWSZ);
720 control |= SABRE_IOMMUCTRL_ENAB;
721 switch(tsbsize) {
722 case 64:
723 control |= SABRE_IOMMU_TSBSZ_64K;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 break;
725 case 128:
726 control |= SABRE_IOMMU_TSBSZ_128K;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 break;
728 default:
David S. Milleredbe8052008-08-30 03:14:01 -0700729 printk(KERN_ERR PFX "Illegal TSB size %d\n", tsbsize);
730 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
David S. Miller28113a92007-05-08 00:19:02 -0700732 sabre_write(pbm->controller_regs + SABRE_IOMMU_CONTROL, control);
David S. Millerad7ad572007-07-27 22:39:14 -0700733
734 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
David S. Millerd3ae4b52008-09-09 23:54:02 -0700737static void __init sabre_pbm_init(struct pci_pbm_info *pbm,
738 struct of_device *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
David S. Millere822358a2008-09-01 18:32:22 -0700740 struct device_node *dp = op->node;
741
David S. Miller01f94c42007-03-04 12:53:19 -0800742 pbm->name = dp->full_name;
743 printk("%s: SABRE PCI Bus Module\n", pbm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700745 pbm->numa_node = -1;
746
David S. Millerca3dd882007-05-09 02:35:27 -0700747 pbm->pci_ops = &sun4u_pci_ops;
748 pbm->config_space_reg_bits = 8;
David S. Miller34768bc2007-05-07 23:06:27 -0700749
David S. Miller6c108f12007-05-07 23:49:01 -0700750 pbm->index = pci_num_pbms++;
751
David S. Miller01f94c42007-03-04 12:53:19 -0800752 pbm->chip_type = PBM_CHIP_TYPE_SABRE;
David S. Miller01f94c42007-03-04 12:53:19 -0800753 pbm->prom_node = dp;
David S. Millercfa06522007-05-07 21:51:41 -0700754 pci_get_pbm_props(pbm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
David S. Miller9fd8b642007-03-08 21:55:49 -0800756 pci_determine_mem_io_space(pbm);
David S. Milleredbe8052008-08-30 03:14:01 -0700757
David S. Millere822358a2008-09-01 18:32:22 -0700758 sabre_scan_bus(pbm, &op->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
David S. Milleredbe8052008-08-30 03:14:01 -0700761static int __devinit sabre_probe(struct of_device *op,
762 const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
David S. Millera165b422007-03-29 01:50:16 -0700764 const struct linux_prom64_registers *pr_regs;
David S. Milleredbe8052008-08-30 03:14:01 -0700765 struct device_node *dp = op->node;
David S. Miller28113a92007-05-08 00:19:02 -0700766 struct pci_pbm_info *pbm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 u32 upa_portid, dma_mask;
David S. Milleredbe8052008-08-30 03:14:01 -0700768 struct iommu *iommu;
769 int tsbsize, err;
770 const u32 *vdma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 u64 clear_irq;
772
David S. Milleredbe8052008-08-30 03:14:01 -0700773 hummingbird_p = (match->data != NULL);
774 if (!hummingbird_p) {
775 struct device_node *cpu_dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
David S. Milleredbe8052008-08-30 03:14:01 -0700777 /* Of course, Sun has to encode things a thousand
778 * different ways, inconsistently.
779 */
780 for_each_node_by_type(cpu_dp, "cpu") {
781 if (!strcmp(cpu_dp->name, "SUNW,UltraSPARC-IIe"))
782 hummingbird_p = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784 }
785
David S. Milleredbe8052008-08-30 03:14:01 -0700786 err = -ENOMEM;
David S. Millerd3ae4b52008-09-09 23:54:02 -0700787 pbm = kzalloc(sizeof(*pbm), GFP_KERNEL);
788 if (!pbm) {
789 printk(KERN_ERR PFX "Cannot allocate pci_pbm_info.\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700790 goto out_err;
David S. Milleredbe8052008-08-30 03:14:01 -0700791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
David S. Millerd3ae4b52008-09-09 23:54:02 -0700793 iommu = kzalloc(sizeof(*iommu), GFP_KERNEL);
David S. Milleredbe8052008-08-30 03:14:01 -0700794 if (!iommu) {
795 printk(KERN_ERR PFX "Cannot allocate PBM iommu.\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700796 goto out_free_controller;
David S. Milleredbe8052008-08-30 03:14:01 -0700797 }
798
David S. Miller28113a92007-05-08 00:19:02 -0700799 pbm->iommu = iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
David S. Miller01f94c42007-03-04 12:53:19 -0800801 upa_portid = of_getintprop_default(dp, "upa-portid", 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
David S. Miller28113a92007-05-08 00:19:02 -0700803 pbm->portid = upa_portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 /*
806 * Map in SABRE register set and report the presence of this SABRE.
807 */
David S. Millere87dc352006-06-21 18:18:47 -0700808
David S. Miller01f94c42007-03-04 12:53:19 -0800809 pr_regs = of_get_property(dp, "reg", NULL);
David S. Milleredbe8052008-08-30 03:14:01 -0700810 err = -ENODEV;
811 if (!pr_regs) {
812 printk(KERN_ERR PFX "No reg property\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700813 goto out_free_iommu;
David S. Milleredbe8052008-08-30 03:14:01 -0700814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 /*
817 * First REG in property is base of entire SABRE register space.
818 */
David S. Miller28113a92007-05-08 00:19:02 -0700819 pbm->controller_regs = pr_regs[0].phys_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /* Clear interrupts */
822
823 /* PCI first */
824 for (clear_irq = SABRE_ICLR_A_SLOT0; clear_irq < SABRE_ICLR_B_SLOT0 + 0x80; clear_irq += 8)
David S. Miller28113a92007-05-08 00:19:02 -0700825 sabre_write(pbm->controller_regs + clear_irq, 0x0UL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /* Then OBIO */
828 for (clear_irq = SABRE_ICLR_SCSI; clear_irq < SABRE_ICLR_SCSI + 0x80; clear_irq += 8)
David S. Miller28113a92007-05-08 00:19:02 -0700829 sabre_write(pbm->controller_regs + clear_irq, 0x0UL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 /* Error interrupts are enabled later after the bus scan. */
David S. Miller28113a92007-05-08 00:19:02 -0700832 sabre_write(pbm->controller_regs + SABRE_PCICTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 (SABRE_PCICTRL_MRLEN | SABRE_PCICTRL_SERR |
834 SABRE_PCICTRL_ARBPARK | SABRE_PCICTRL_AEN));
835
836 /* Now map in PCI config space for entire SABRE. */
David S. Millerd3ae4b52008-09-09 23:54:02 -0700837 pbm->config_space = pbm->controller_regs + SABRE_CONFIGSPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
David S. Miller01f94c42007-03-04 12:53:19 -0800839 vdma = of_get_property(dp, "virtual-dma", NULL);
David S. Milleredbe8052008-08-30 03:14:01 -0700840 if (!vdma) {
841 printk(KERN_ERR PFX "No virtual-dma property\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700842 goto out_free_iommu;
David S. Milleredbe8052008-08-30 03:14:01 -0700843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 dma_mask = vdma[0];
846 switch(vdma[1]) {
847 case 0x20000000:
848 dma_mask |= 0x1fffffff;
849 tsbsize = 64;
850 break;
851 case 0x40000000:
852 dma_mask |= 0x3fffffff;
853 tsbsize = 128;
854 break;
855
856 case 0x80000000:
857 dma_mask |= 0x7fffffff;
858 tsbsize = 128;
859 break;
860 default:
David S. Milleredbe8052008-08-30 03:14:01 -0700861 printk(KERN_ERR PFX "Strange virtual-dma size.\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700862 goto out_free_iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864
David S. Milleredbe8052008-08-30 03:14:01 -0700865 err = sabre_iommu_init(pbm, tsbsize, vdma[0], dma_mask);
866 if (err)
David S. Millerd7472c32008-08-31 01:33:52 -0700867 goto out_free_iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
870 * Look for APB underneath.
871 */
David S. Millerd3ae4b52008-09-09 23:54:02 -0700872 sabre_pbm_init(pbm, op);
873
874 pbm->next = pci_pbm_root;
875 pci_pbm_root = pbm;
876
877 dev_set_drvdata(&op->dev, pbm);
878
David S. Milleredbe8052008-08-30 03:14:01 -0700879 return 0;
David S. Millerad7ad572007-07-27 22:39:14 -0700880
David S. Millerd7472c32008-08-31 01:33:52 -0700881out_free_iommu:
David S. Millerd3ae4b52008-09-09 23:54:02 -0700882 kfree(pbm->iommu);
David S. Millerd7472c32008-08-31 01:33:52 -0700883
884out_free_controller:
David S. Millerd3ae4b52008-09-09 23:54:02 -0700885 kfree(pbm);
David S. Millerd7472c32008-08-31 01:33:52 -0700886
887out_err:
David S. Milleredbe8052008-08-30 03:14:01 -0700888 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
David S. Milleredbe8052008-08-30 03:14:01 -0700890
David S. Millerfd098312008-08-31 01:23:17 -0700891static struct of_device_id __initdata sabre_match[] = {
David S. Milleredbe8052008-08-30 03:14:01 -0700892 {
893 .name = "pci",
894 .compatible = "pci108e,a001",
895 .data = (void *) 1,
896 },
897 {
898 .name = "pci",
899 .compatible = "pci108e,a000",
900 },
901 {},
902};
903
904static struct of_platform_driver sabre_driver = {
905 .name = DRIVER_NAME,
906 .match_table = sabre_match,
907 .probe = sabre_probe,
908};
909
910static int __init sabre_init(void)
911{
912 return of_register_driver(&sabre_driver, &of_bus_type);
913}
914
915subsys_initcall(sabre_init);