pci_machdep.c revision 1.29.4.1 1 /* $NetBSD: pci_machdep.c,v 1.29.4.1 2006/09/09 02:41:14 rpaulo Exp $ */
2
3 /*
4 * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
5 * Copyright (c) 1994 Charles M. Hannum. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Charles M. Hannum.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33 /*
34 * Machine-specific functions for PCI autoconfiguration.
35 *
36 * On PCs, there are two methods of generating PCI configuration cycles.
37 * We try to detect the appropriate mechanism for this machine and set
38 * up a few function pointers to access the correct method directly.
39 *
40 * The configuration method can be hard-coded in the config file by
41 * using `options PCI_CONF_MODE=N', where `N' is the configuration mode
42 * as defined section 3.6.4.1, `Generating Configuration Cycles'.
43 */
44
45 #include <sys/cdefs.h>
46 __KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.29.4.1 2006/09/09 02:41:14 rpaulo Exp $");
47
48 #include <sys/types.h>
49 #include <sys/param.h>
50 #include <sys/time.h>
51 #include <sys/systm.h>
52 #include <sys/errno.h>
53 #include <sys/device.h>
54
55 #include <uvm/uvm_extern.h>
56
57 #define _MACPPC_BUS_DMA_PRIVATE
58 #include <machine/bus.h>
59
60 #include <machine/bus.h>
61 #include <machine/pio.h>
62 #include <machine/intr.h>
63
64 #include <dev/pci/pcivar.h>
65 #include <dev/pci/pcireg.h>
66
67 #include <dev/ofw/openfirm.h>
68 #include <dev/ofw/ofw_pci.h>
69
70 static void fixpci __P((int, pci_chipset_tag_t));
71 static int find_node_intr __P((int, u_int32_t *, u_int32_t *));
72
73 /*
74 * PCI doesn't have any special needs; just use the generic versions
75 * of these functions.
76 */
77 struct macppc_bus_dma_tag pci_bus_dma_tag = {
78 0, /* _bounce_thresh */
79 _bus_dmamap_create,
80 _bus_dmamap_destroy,
81 _bus_dmamap_load,
82 _bus_dmamap_load_mbuf,
83 _bus_dmamap_load_uio,
84 _bus_dmamap_load_raw,
85 _bus_dmamap_unload,
86 NULL, /* _dmamap_sync */
87 _bus_dmamem_alloc,
88 _bus_dmamem_free,
89 _bus_dmamem_map,
90 _bus_dmamem_unmap,
91 _bus_dmamem_mmap,
92 };
93
94 void
95 pci_attach_hook(parent, self, pba)
96 struct device *parent, *self;
97 struct pcibus_attach_args *pba;
98 {
99 pci_chipset_tag_t pc = pba->pba_pc;
100 int bus = pba->pba_bus;
101 int node, nn, sz;
102 int32_t busrange[2];
103
104 for (node = pc->node; node; node = nn) {
105 sz = OF_getprop(node, "bus-range", busrange, 8);
106 if (sz == 8 && busrange[0] == bus) {
107 fixpci(node, pc);
108 return;
109 }
110 if ((nn = OF_child(node)) != 0)
111 continue;
112 while ((nn = OF_peer(node)) == 0) {
113 node = OF_parent(node);
114 if (node == pc->node)
115 return; /* not found */
116 }
117 }
118 }
119
120 int
121 pci_bus_maxdevs(pc, busno)
122 pci_chipset_tag_t pc;
123 int busno;
124 {
125
126 /*
127 * Bus number is irrelevant. Configuration Mechanism 1 is in
128 * use, can have devices 0-32 (i.e. the `normal' range).
129 */
130 return 32;
131 }
132
133 pcitag_t
134 pci_make_tag(pc, bus, device, function)
135 pci_chipset_tag_t pc;
136 int bus, device, function;
137 {
138 pcitag_t tag;
139
140 if (bus >= 256 || device >= 32 || function >= 8)
141 panic("pci_make_tag: bad request");
142
143 /* XXX magic number */
144 tag = 0x80000000 | (bus << 16) | (device << 11) | (function << 8);
145
146 return tag;
147 }
148
149 void
150 pci_decompose_tag(pc, tag, bp, dp, fp)
151 pci_chipset_tag_t pc;
152 pcitag_t tag;
153 int *bp, *dp, *fp;
154 {
155
156 if (bp != NULL)
157 *bp = (tag >> 16) & 0xff;
158 if (dp != NULL)
159 *dp = (tag >> 11) & 0x1f;
160 if (fp != NULL)
161 *fp = (tag >> 8) & 0x07;
162 }
163
164 pcireg_t
165 pci_conf_read(pc, tag, reg)
166 pci_chipset_tag_t pc;
167 pcitag_t tag;
168 int reg;
169 {
170
171 return (*pc->conf_read)(pc, tag, reg);
172 }
173
174 void
175 pci_conf_write(pc, tag, reg, data)
176 pci_chipset_tag_t pc;
177 pcitag_t tag;
178 int reg;
179 pcireg_t data;
180 {
181
182 (*pc->conf_write)(pc, tag, reg, data);
183 }
184
185 int
186 pci_intr_map(pa, ihp)
187 struct pci_attach_args *pa;
188 pci_intr_handle_t *ihp;
189 {
190 int pin = pa->pa_intrpin;
191 int line = pa->pa_intrline;
192
193 printf("%s: pin: %d, line: %d\n", __FUNCTION__, pin, line);
194
195 if (pin == 0) {
196 /* No IRQ used. */
197 printf("pci_intr_map: interrupt pin %d\n", pin);
198 goto bad;
199 }
200
201 if (pin > 4) {
202 printf("pci_intr_map: bad interrupt pin %d\n", pin);
203 goto bad;
204 }
205
206 /*
207 * Section 6.2.4, `Miscellaneous Functions', says that 255 means
208 * `unknown' or `no connection' on a PC. We assume that a device with
209 * `no connection' either doesn't have an interrupt (in which case the
210 * pin number should be 0, and would have been noticed above), or
211 * wasn't configured by the BIOS (in which case we punt, since there's
212 * no real way we can know how the interrupt lines are mapped in the
213 * hardware).
214 *
215 * XXX
216 * Since IRQ 0 is only used by the clock, and we can't actually be sure
217 * that the BIOS did its job, we also recognize that as meaning that
218 * the BIOS has not configured the device.
219 */
220 if (line == 0 || line == 255) {
221 printf("pci_intr_map: no mapping for pin %c\n", '@' + pin);
222 goto bad;
223 } else {
224 if (line >= ICU_LEN) {
225 printf("pci_intr_map: bad interrupt line %d\n", line);
226 goto bad;
227 }
228 }
229
230 *ihp = line;
231 return 0;
232
233 bad:
234 *ihp = -1;
235 return 1;
236 }
237
238 const char *
239 pci_intr_string(pc, ih)
240 pci_chipset_tag_t pc;
241 pci_intr_handle_t ih;
242 {
243 static char irqstr[8]; /* 4 + 2 + NULL + sanity */
244
245 if (ih == 0 || ih >= ICU_LEN)
246 panic("pci_intr_string: bogus handle 0x%x", ih);
247
248 sprintf(irqstr, "irq %d", ih);
249 return (irqstr);
250
251 }
252
253 const struct evcnt *
254 pci_intr_evcnt(pc, ih)
255 pci_chipset_tag_t pc;
256 pci_intr_handle_t ih;
257 {
258
259 /* XXX for now, no evcnt parent reported */
260 return NULL;
261 }
262
263 void *
264 pci_intr_establish(pc, ih, level, func, arg)
265 pci_chipset_tag_t pc;
266 pci_intr_handle_t ih;
267 int level, (*func) __P((void *));
268 void *arg;
269 {
270
271 if (ih == 0 || ih >= ICU_LEN)
272 panic("pci_intr_establish: bogus handle 0x%x", ih);
273
274 return intr_establish(ih, IST_LEVEL, level, func, arg);
275 }
276
277 void
278 pci_intr_disestablish(pc, cookie)
279 pci_chipset_tag_t pc;
280 void *cookie;
281 {
282
283 intr_disestablish(cookie);
284 }
285
286 #define pcibus(x) \
287 (((x) & OFW_PCI_PHYS_HI_BUSMASK) >> OFW_PCI_PHYS_HI_BUSSHIFT)
288 #define pcidev(x) \
289 (((x) & OFW_PCI_PHYS_HI_DEVICEMASK) >> OFW_PCI_PHYS_HI_DEVICESHIFT)
290 #define pcifunc(x) \
291 (((x) & OFW_PCI_PHYS_HI_FUNCTIONMASK) >> OFW_PCI_PHYS_HI_FUNCTIONSHIFT)
292
293 void
294 fixpci(parent, pc)
295 int parent;
296 pci_chipset_tag_t pc;
297 {
298 int node;
299 pcitag_t tag;
300 pcireg_t csr, intr;
301 int len, i, ilen;
302 int32_t irqs[4];
303 struct {
304 u_int32_t phys_hi, phys_mid, phys_lo;
305 u_int32_t size_hi, size_lo;
306 } addr[8];
307 struct {
308 u_int32_t phys_hi, phys_mid, phys_lo;
309 u_int32_t icells[5];
310 } iaddr;
311
312 len = OF_getprop(parent, "#interrupt-cells", &ilen, sizeof(ilen));
313 if (len < 0)
314 ilen = 0;
315 for (node = OF_child(parent); node; node = OF_peer(node)) {
316 len = OF_getprop(node, "assigned-addresses", addr,
317 sizeof(addr));
318 if (len < (int)sizeof(addr[0]))
319 continue;
320
321 tag = pci_make_tag(pc, pcibus(addr[0].phys_hi),
322 pcidev(addr[0].phys_hi),
323 pcifunc(addr[0].phys_hi));
324
325 /*
326 * Make sure the IO and MEM enable bits are set in the CSR.
327 */
328 csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
329 csr &= ~(PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MEM_ENABLE);
330
331 for (i = 0; i < len / sizeof(addr[0]); i++) {
332 switch (addr[i].phys_hi & OFW_PCI_PHYS_HI_SPACEMASK) {
333 case OFW_PCI_PHYS_HI_SPACE_IO:
334 csr |= PCI_COMMAND_IO_ENABLE;
335 break;
336
337 case OFW_PCI_PHYS_HI_SPACE_MEM32:
338 case OFW_PCI_PHYS_HI_SPACE_MEM64:
339 csr |= PCI_COMMAND_MEM_ENABLE;
340 break;
341 }
342 }
343
344 pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr);
345
346 /*
347 * Make sure the line register is programmed with the
348 * interrupt mapping.
349 */
350 if (ilen == 0) {
351 /*
352 * Early Apple OFW implementation don't handle
353 * interrupts as defined by the OFW PCI bindings.
354 */
355 len = OF_getprop(node, "AAPL,interrupts", irqs, 4);
356 } else {
357 iaddr.phys_hi = addr[0].phys_hi;
358 iaddr.phys_mid = addr[0].phys_mid;
359 iaddr.phys_lo = addr[0].phys_lo;
360 /*
361 * Thankfully, PCI can only have one entry in its
362 * "interrupts" property.
363 */
364 len = OF_getprop(node, "interrupts", &iaddr.icells[0],
365 4*ilen);
366 if (len != 4*ilen)
367 continue;
368 len = find_node_intr(node, &iaddr.phys_hi, irqs);
369 }
370 if (len <= 0) {
371 /*
372 * If we still don't have an interrupt, try one
373 * more time. This case covers devices behind the
374 * PCI-PCI bridge in a UMAX S900 or similar (9500?)
375 * system. These slots all share the bridge's
376 * interrupt.
377 */
378 len = find_node_intr(node, &addr[0].phys_hi, irqs);
379 if (len <= 0)
380 continue;
381 }
382 intr = pci_conf_read(pc, tag, PCI_INTERRUPT_REG);
383 intr &= ~PCI_INTERRUPT_LINE_MASK;
384 intr |= irqs[0] & PCI_INTERRUPT_LINE_MASK;
385 pci_conf_write(pc, tag, PCI_INTERRUPT_REG, intr);
386 }
387 }
388
389 /*
390 * Find PCI IRQ of the node from OF tree.
391 */
392 int
393 find_node_intr(node, addr, intr)
394 int node;
395 u_int32_t *addr, *intr;
396 {
397 int parent, len, mlen, iparent;
398 int match, i;
399 u_int32_t map[160];
400 const u_int32_t *mp;
401 u_int32_t imapmask[8], maskedaddr[8];
402 u_int32_t acells, icells;
403 char name[32];
404
405 /* XXXSL: 1st check for a interrupt-parent property */
406 if (OF_getprop(node, "interrupt-parent", &iparent, sizeof(iparent)) == sizeof(iparent))
407 {
408 /* How many cells to specify an interrupt ?? */
409 if (OF_getprop(iparent, "#interrupt-cells", &icells, 4) != 4)
410 return -1;
411
412 if (OF_getprop(node, "interrupts", &map, sizeof(map)) != (icells * 4))
413 return -1;
414
415 memcpy(intr, map, icells * 4);
416 return (icells * 4);
417 }
418
419 parent = OF_parent(node);
420 len = OF_getprop(parent, "interrupt-map", map, sizeof(map));
421 mlen = OF_getprop(parent, "interrupt-map-mask", imapmask,
422 sizeof(imapmask));
423
424 if (mlen != -1)
425 memcpy(maskedaddr, addr, mlen);
426 again:
427 if (len == -1 || mlen == -1)
428 goto nomap;
429
430 #ifdef DIAGNOSTIC
431 if (mlen == sizeof(imapmask)) {
432 printf("interrupt-map too long\n");
433 return -1;
434 }
435 #endif
436
437 /* mask addr by "interrupt-map-mask" */
438 for (i = 0; i < mlen / 4; i++)
439 maskedaddr[i] &= imapmask[i];
440
441 mp = map;
442 i = 0;
443 while (len > mlen) {
444 match = memcmp(maskedaddr, mp, mlen);
445 mp += mlen / 4;
446 len -= mlen;
447
448 /*
449 * We must read "#address-cells" and "#interrupt-cells" each
450 * time because each interrupt-parent may be different.
451 */
452 iparent = *mp++;
453 len -= 4;
454 i = OF_getprop(iparent, "#address-cells", &acells, 4);
455 if (i <= 0)
456 acells = 0;
457 else if (i != 4)
458 return -1;
459 if (OF_getprop(iparent, "#interrupt-cells", &icells, 4) != 4)
460 return -1;
461
462 /* Found. */
463 if (match == 0) {
464 /*
465 * We matched on address/interrupt, but are we done?
466 */
467 if (acells == 0) { /* XXX */
468 /*
469 * If we are at the interrupt controller,
470 * we are finally done. Save the result and
471 * return.
472 */
473 memcpy(intr, mp, icells * 4);
474 return icells * 4;
475 }
476 /*
477 * We are now at an intermedia interrupt node. We
478 * need to use its interrupt mask and map the
479 * supplied address/interrupt via its map.
480 */
481 mlen = OF_getprop(iparent, "interrupt-map-mask",
482 imapmask, sizeof(imapmask));
483 #ifdef DIAGNOSTIC
484 if (mlen != (acells + icells)*4) {
485 printf("interrupt-map inconsistent (%d, %d)\n",
486 mlen, (acells + icells)*4);
487 return -1;
488 }
489 #endif
490 memcpy(maskedaddr, mp, mlen);
491 len = OF_getprop(iparent, "interrupt-map", map,
492 sizeof(map));
493 goto again;
494 }
495
496 mp += (acells + icells);
497 len -= (acells + icells) * 4;
498 }
499
500 nomap:
501 /*
502 * If the node has no interrupt property and the parent is a
503 * pci-bridge, use parent's interrupt. This occurs on a PCI
504 * slot. (e.g. AHA-3940)
505 */
506 memset(name, 0, sizeof(name));
507 OF_getprop(parent, "name", name, sizeof(name));
508 if (strcmp(name, "pci-bridge") == 0) {
509 len = OF_getprop(parent, "AAPL,interrupts", intr, 4) ;
510 if (len == 4)
511 return len;
512 #if 0
513 /*
514 * XXX I don't know what is the correct local address.
515 * XXX Use the first entry for now.
516 */
517 len = OF_getprop(parent, "interrupt-map", map, sizeof(map));
518 if (len >= 36) {
519 addr = &map[5];
520 return find_node_intr(parent, addr, intr);
521 }
522 #endif
523 }
524
525 /*
526 * If all else fails, attempt to get AAPL, interrupts property.
527 * Grackle, at least, uses this instead of above in some cases.
528 */
529 len = OF_getprop(node, "AAPL,interrupts", intr, 4) ;
530 if (len == 4)
531 return len;
532
533 return -1;
534 }
535