xref: /netbsd-src/sys/arch/atari/pci/pci_machdep.c (revision 3816d47b2c42fcd6e549e3407f842a5b1a1d23ad)
1 /*	$NetBSD: pci_machdep.c,v 1.47 2009/03/18 10:22:25 cegger Exp $	*/
2 
3 /*
4  * Copyright (c) 1996 Leo Weppelman.  All rights reserved.
5  * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
6  * Copyright (c) 1994 Charles M. Hannum.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *	This product includes software developed by Charles M. Hannum.
19  * 4. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.47 2009/03/18 10:22:25 cegger Exp $");
36 
37 #include "opt_mbtype.h"
38 
39 #include <sys/types.h>
40 #include <sys/param.h>
41 #include <sys/time.h>
42 #include <sys/systm.h>
43 #include <sys/errno.h>
44 #include <sys/device.h>
45 #include <sys/malloc.h>
46 
47 #define _ATARI_BUS_DMA_PRIVATE
48 #include <machine/bus.h>
49 
50 #include <dev/pci/pcivar.h>
51 #include <dev/pci/pcireg.h>
52 
53 #include <uvm/uvm_extern.h>
54 
55 #include <machine/cpu.h>
56 #include <machine/iomap.h>
57 #include <machine/mfp.h>
58 
59 #include <atari/atari/device.h>
60 #include <atari/pci/pci_vga.h>
61 
62 /*
63  * Sizes of pci memory and I/O area.
64  */
65 #define PCI_MEM_END     0x10000000      /* 256 MByte */
66 #define PCI_IO_END      0x10000000      /* 256 MByte */
67 
68 /*
69  * We preserve some space at the begin of the pci area for 32BIT_1M
70  * devices and standard vga.
71  */
72 #define PCI_MEM_START   0x00100000      /*   1 MByte */
73 #define PCI_IO_START    0x00004000      /*  16 kByte (some PCI cards allow only
74 					    I/O addresses up to 0xffff) */
75 
76 /*
77  * PCI memory and IO should be aligned acording to this masks
78  */
79 #define PCI_MACHDEP_IO_ALIGN_MASK	0xffffff00
80 #define PCI_MACHDEP_MEM_ALIGN_MASK	0xfffff000
81 
82 /*
83  * Convert a PCI 'device' number to a slot number.
84  */
85 #define	DEV2SLOT(dev)	(3 - dev)
86 
87 /*
88  * Struct to hold the memory and I/O datas of the pci devices
89  */
90 struct pci_memreg {
91     LIST_ENTRY(pci_memreg) link;
92     int dev;
93     pcitag_t tag;
94     pcireg_t reg, address, mask;
95     u_int32_t size;
96     u_int32_t csr;
97 };
98 
99 typedef LIST_HEAD(pci_memreg_head, pci_memreg) PCI_MEMREG;
100 
101 /*
102  * Entry points for PCI DMA.  Use only the 'standard' functions.
103  */
104 int	_bus_dmamap_create(bus_dma_tag_t, bus_size_t, int, bus_size_t,
105 	    bus_size_t, int, bus_dmamap_t *);
106 struct atari_bus_dma_tag pci_bus_dma_tag = {
107 	0,
108 #if defined(_ATARIHW_)
109 	0x80000000, /* On the Hades, CPU memory starts here PCI-wise */
110 #else
111 	0,
112 #endif
113 	_bus_dmamap_create,
114 	_bus_dmamap_destroy,
115 	_bus_dmamap_load,
116 	_bus_dmamap_load_mbuf,
117 	_bus_dmamap_load_uio,
118 	_bus_dmamap_load_raw,
119 	_bus_dmamap_unload,
120 	_bus_dmamap_sync,
121 };
122 
123 int	ataripcibusprint(void *auxp, const char *);
124 int	pcibusmatch(struct device *, struct cfdata *, void *);
125 void	pcibusattach(struct device *, struct device *, void *);
126 
127 static void enable_pci_devices(void);
128 static void insert_into_list(PCI_MEMREG *head, struct pci_memreg *elem);
129 static int overlap_pci_areas(struct pci_memreg *p,
130 	struct pci_memreg *self, u_int addr, u_int size, u_int what);
131 
132 CFATTACH_DECL(pcib, sizeof(struct device),
133     pcibusmatch, pcibusattach, NULL, NULL);
134 
135 /*
136  * We need some static storage to probe pci-busses for VGA cards during
137  * early console init.
138  */
139 static struct atari_bus_space	bs_storage[2];	/* 1 iot, 1 memt */
140 
141 int
142 pcibusmatch(struct device *pdp, struct cfdata *cfp, void *auxp)
143 {
144 	static int	nmatched = 0;
145 
146 	if (strcmp((char *)auxp, "pcib"))
147 		return (0);	/* Wrong number... */
148 
149 	if(atari_realconfig == 0)
150 		return (1);
151 
152 	if (machineid & (ATARI_HADES|ATARI_MILAN)) {
153 		/*
154 		 * Both Hades and Milan have only one pci bus
155 		 */
156 		if (nmatched)
157 			return (0);
158 		nmatched++;
159 		return (1);
160 	}
161 	return (0);
162 }
163 
164 void
165 pcibusattach(struct device *pdp, struct device *dp, void *auxp)
166 {
167 	struct pcibus_attach_args	pba;
168 
169 	pba.pba_pc      = NULL;
170 	pba.pba_bus     = 0;
171 	pba.pba_bridgetag = NULL;
172 	pba.pba_flags	= PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED;
173 	pba.pba_dmat	= &pci_bus_dma_tag;
174 	pba.pba_iot     = leb_alloc_bus_space_tag(&bs_storage[0]);
175 	pba.pba_memt    = leb_alloc_bus_space_tag(&bs_storage[1]);
176 	if ((pba.pba_iot == NULL) || (pba.pba_memt == NULL)) {
177 		printf("leb_alloc_bus_space_tag failed!\n");
178 		return;
179 	}
180 	pba.pba_iot->base  = PCI_IO_PHYS;
181 	pba.pba_memt->base = PCI_MEM_PHYS;
182 
183 	if (dp == NULL) {
184 		/*
185 		 * Scan the bus for a VGA-card that we support. If we
186 		 * find one, try to initialize it to a 'standard' text
187 		 * mode (80x25).
188 		 */
189 		check_for_vga(pba.pba_iot, pba.pba_memt);
190 		return;
191 	}
192 
193 	enable_pci_devices();
194 
195 #if defined(_ATARIHW_)
196 	MFP2->mf_aer &= ~(0x27); /* PCI interrupts: HIGH -> LOW */
197 #endif
198 
199 	printf("\n");
200 
201 	config_found_ia(dp, "pcibus", &pba, ataripcibusprint);
202 }
203 
204 int
205 ataripcibusprint(void *auxp, const char *name)
206 {
207 	if(name == NULL)
208 		return(UNCONF);
209 	return(QUIET);
210 }
211 
212 void
213 pci_attach_hook(struct device *parent, struct device *self, struct pcibus_attach_args *pba)
214 {
215 }
216 
217 /*
218  * Initialize the PCI-bus. The Atari-BIOS does not do this, so....
219  * We only disable all devices here. Memory and I/O enabling is done
220  * later at pcibusattach.
221  */
222 void
223 init_pci_bus(void)
224 {
225 	pci_chipset_tag_t	pc = NULL; /* XXX */
226 	pcitag_t		tag;
227 	pcireg_t		csr;
228 	int			device, id, maxndevs;
229 
230 	tag   = 0;
231 	id    = 0;
232 
233 	maxndevs = pci_bus_maxdevs(pc, 0);
234 
235 	for (device = 0; device < maxndevs; device++) {
236 
237 		tag = pci_make_tag(pc, 0, device, 0);
238 		id  = pci_conf_read(pc, tag, PCI_ID_REG);
239 		if (id == 0 || id == 0xffffffff)
240 			continue;
241 
242 		csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
243 		csr &= ~(PCI_COMMAND_MEM_ENABLE|PCI_COMMAND_IO_ENABLE);
244 		csr &= ~PCI_COMMAND_MASTER_ENABLE;
245 		pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr);
246 	}
247 }
248 
249 /*
250  * insert a new element in an existing list that the ID's (size in struct
251  * pci_memreg) are sorted.
252  */
253 static void
254 insert_into_list(PCI_MEMREG *head, struct pci_memreg *elem)
255 {
256     struct pci_memreg *p, *q;
257 
258     p = LIST_FIRST(head);
259     q = NULL;
260 
261     for (; p != NULL && p->size < elem->size; q = p, p = LIST_NEXT(p, link));
262 
263     if (q == NULL) {
264 	LIST_INSERT_HEAD(head, elem, link);
265     } else {
266 	LIST_INSERT_AFTER(q, elem, link);
267     }
268 }
269 
270 /*
271  * Test if a new selected area overlaps with an already (probably preselected)
272  * pci area.
273  */
274 static int
275 overlap_pci_areas(struct pci_memreg *p, struct pci_memreg *self, u_int addr, u_int size, u_int what)
276 {
277     struct pci_memreg *q;
278 
279     if (p == NULL)
280 	return 0;
281 
282     q = p;
283     while (q != NULL) {
284       if ((q != self) && (q->csr & what)) {
285 	if ((addr >= q->address) && (addr < (q->address + q->size))) {
286 #ifdef DEBUG_PCI_MACHDEP
287 	  printf("\noverlap area dev %d reg 0x%02x with dev %d reg 0x%02x",
288 			self->dev, self->reg, q->dev, q->reg);
289 #endif
290 	  return 1;
291 	}
292 	if ((q->address >= addr) && (q->address < (addr + size))) {
293 #ifdef DEBUG_PCI_MACHDEP
294 	  printf("\noverlap area dev %d reg 0x%02x with dev %d reg 0x%02x",
295 			self->dev, self->reg, q->dev, q->reg);
296 #endif
297 	  return 1;
298 	}
299       }
300       q = LIST_NEXT(q, link);
301     }
302     return 0;
303 }
304 
305 /*
306  * Enable memory and I/O on pci devices. Care about already enabled devices
307  * (probabaly by the console driver).
308  *
309  * The idea behind the following code is:
310  * We build a by sizes sorted list of the requirements of the different
311  * pci devices. After that we choose the start addresses of that areas
312  * in such a way that they are placed as closed as possible together.
313  */
314 static void
315 enable_pci_devices(void)
316 {
317     PCI_MEMREG memlist;
318     PCI_MEMREG iolist;
319     struct pci_memreg *p, *q;
320     int dev, reg, id, class;
321     pcitag_t tag;
322     pcireg_t csr, address, mask;
323     pci_chipset_tag_t pc;
324     int sizecnt, membase_1m;
325 
326     pc = 0;
327     csr = 0;
328     tag = 0;
329 
330     LIST_INIT(&memlist);
331     LIST_INIT(&iolist);
332 
333     /*
334      * first step: go through all devices and gather memory and I/O
335      * sizes
336      */
337     for (dev = 0; dev < pci_bus_maxdevs(pc,0); dev++) {
338 
339 	tag = pci_make_tag(pc, 0, dev, 0);
340 	id  = pci_conf_read(pc, tag, PCI_ID_REG);
341 	if (id == 0 || id == 0xffffffff)
342 	    continue;
343 
344 	csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
345 
346 	/*
347 	 * special case: if a display card is found and memory is enabled
348 	 * preserve 128k at 0xa0000 as vga memory.
349 	 * XXX: if a display card is found without being enabled, leave
350 	 *      it alone! You will usually only create conflicts by enabeling
351 	 *      it.
352 	 */
353 	class = pci_conf_read(pc, tag, PCI_CLASS_REG);
354 	switch (PCI_CLASS(class)) {
355 	    case PCI_CLASS_PREHISTORIC:
356 	    case PCI_CLASS_DISPLAY:
357 	      if (csr & (PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE)) {
358 		    p = (struct pci_memreg *)malloc(sizeof(struct pci_memreg),
359 				M_TEMP, M_WAITOK);
360 		    memset(p, '\0', sizeof(struct pci_memreg));
361 		    p->dev = dev;
362 		    p->csr = csr;
363 		    p->tag = tag;
364 		    p->reg = 0;     /* there is no register about this */
365 		    p->size = 0x20000;  /* 128kByte */
366 		    p->mask = 0xfffe0000;
367 		    p->address = 0xa0000;
368 
369 		    insert_into_list(&memlist, p);
370 	      }
371 	      else continue;
372 	}
373 
374 	for (reg = PCI_MAPREG_START; reg < PCI_MAPREG_END; reg += 4) {
375 
376 	    address = pci_conf_read(pc, tag, reg);
377 	    pci_conf_write(pc, tag, reg, 0xffffffff);
378 	    mask    = pci_conf_read(pc, tag, reg);
379 	    pci_conf_write(pc, tag, reg, address);
380 	    if (mask == 0)
381 		continue; /* Register unused */
382 
383 	    p = (struct pci_memreg *)malloc(sizeof(struct pci_memreg),
384 			M_TEMP, M_WAITOK);
385 	    memset(p, '\0', sizeof(struct pci_memreg));
386 	    p->dev = dev;
387 	    p->csr = csr;
388 	    p->tag = tag;
389 	    p->reg = reg;
390 	    p->mask = mask;
391 	    p->address = 0;
392 
393 	    if (mask & PCI_MAPREG_TYPE_IO) {
394 		p->size = PCI_MAPREG_IO_SIZE(mask);
395 
396 		/*
397 		 * Align IO if necessary
398 		 */
399 		if (p->size < PCI_MAPREG_IO_SIZE(PCI_MACHDEP_IO_ALIGN_MASK)) {
400 		    p->mask = PCI_MACHDEP_IO_ALIGN_MASK;
401 		    p->size = PCI_MAPREG_IO_SIZE(p->mask);
402 		}
403 
404 		/*
405 		 * if I/O is already enabled (probably by the console driver)
406 		 * save the address in order to take care about it later.
407 		 */
408 		if (csr & PCI_COMMAND_IO_ENABLE)
409 		    p->address = address;
410 
411 		insert_into_list(&iolist, p);
412 	    } else {
413 		p->size = PCI_MAPREG_MEM_SIZE(mask);
414 
415 		/*
416 		 * Align memory if necessary
417 		 */
418 		if (p->size < PCI_MAPREG_IO_SIZE(PCI_MACHDEP_MEM_ALIGN_MASK)) {
419 		    p->mask = PCI_MACHDEP_MEM_ALIGN_MASK;
420 		    p->size = PCI_MAPREG_MEM_SIZE(p->mask);
421 		}
422 
423 		/*
424 		 * if memory is already enabled (probably by the console driver)
425 		 * save the address in order to take care about it later.
426 		 */
427 		if (csr & PCI_COMMAND_MEM_ENABLE)
428 		    p->address = address;
429 
430 		insert_into_list(&memlist, p);
431 
432 		if (PCI_MAPREG_MEM_TYPE(mask) == PCI_MAPREG_MEM_TYPE_64BIT)
433 		    reg++;
434 	    }
435 	}
436 
437 
438 #if defined(_ATARIHW_)
439 	/*
440 	 * Both interrupt pin & line are set to the device (== slot)
441 	 * number. This makes sense on the atari Hades because the
442 	 * individual slots are hard-wired to a specific MFP-pin.
443 	 */
444 	csr  = (DEV2SLOT(dev) << PCI_INTERRUPT_PIN_SHIFT);
445 	csr |= (DEV2SLOT(dev) << PCI_INTERRUPT_LINE_SHIFT);
446 	pci_conf_write(pc, tag, PCI_INTERRUPT_REG, csr);
447 #else
448 	/*
449 	 * On the Milan, we accept the BIOS's choice.
450 	 */
451 #endif
452     }
453 
454     /*
455      * second step: calculate the memory and I/O addresses beginning from
456      * PCI_MEM_START and PCI_IO_START. Care about already mapped areas.
457      *
458      * begin with memory list
459      */
460 
461     address = PCI_MEM_START;
462     sizecnt = 0;
463     membase_1m = 0;
464     p = LIST_FIRST(&memlist);
465     while (p != NULL) {
466 	if (!(p->csr & PCI_COMMAND_MEM_ENABLE)) {
467 	    if (PCI_MAPREG_MEM_TYPE(p->mask) == PCI_MAPREG_MEM_TYPE_32BIT_1M) {
468 		if (p->size > membase_1m)
469 		    membase_1m = p->size;
470 		do {
471 		    p->address = membase_1m;
472 		    membase_1m += p->size;
473 		} while (overlap_pci_areas(LIST_FIRST(&memlist), p, p->address,
474 					   p->size, PCI_COMMAND_MEM_ENABLE));
475 		if (membase_1m > 0x00100000) {
476 		    /*
477 		     * Should we panic here?
478 		     */
479 		    printf("\npcibus0: dev %d reg %d: memory not configured",
480 			    p->dev, p->reg);
481 		    p->reg = 0;
482 		}
483 	    } else {
484 
485 		if (sizecnt && (p->size > sizecnt))
486 		    sizecnt = ((p->size + sizecnt) & p->mask) &
487 			      PCI_MAPREG_MEM_ADDR_MASK;
488 		if (sizecnt > address) {
489 		    address = sizecnt;
490 		    sizecnt = 0;
491 		}
492 
493 		do {
494 		    p->address = address + sizecnt;
495 		    sizecnt += p->size;
496 		} while (overlap_pci_areas(LIST_FIRST(&memlist), p, p->address,
497 					   p->size, PCI_COMMAND_MEM_ENABLE));
498 
499 		if ((address + sizecnt) > PCI_MEM_END) {
500 		    /*
501 		     * Should we panic here?
502 		     */
503 		    printf("\npcibus0: dev %d reg %d: memory not configured",
504 			    p->dev, p->reg);
505 		    p->reg = 0;
506 		}
507 	    }
508 	    if (p->reg > 0) {
509 		pci_conf_write(pc, p->tag, p->reg, p->address);
510 		csr = pci_conf_read(pc, p->tag, PCI_COMMAND_STATUS_REG);
511 		csr |= PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE;
512 		pci_conf_write(pc, p->tag, PCI_COMMAND_STATUS_REG, csr);
513 		p->csr = csr;
514 	    }
515 	}
516 	p = LIST_NEXT(p, link);
517     }
518 
519     /*
520      * now the I/O list
521      */
522 
523     address = PCI_IO_START;
524     sizecnt = 0;
525     p = LIST_FIRST(&iolist);
526     while (p != NULL) {
527 	if (!(p->csr & PCI_COMMAND_IO_ENABLE)) {
528 
529 	    if (sizecnt && (p->size > sizecnt))
530 		sizecnt = ((p->size + sizecnt) & p->mask) &
531 			  PCI_MAPREG_IO_ADDR_MASK;
532 	    if (sizecnt > address) {
533 		address = sizecnt;
534 		sizecnt = 0;
535 	    }
536 
537 	    do {
538 		p->address = address + sizecnt;
539 		sizecnt += p->size;
540 	    } while (overlap_pci_areas(LIST_FIRST(&iolist), p, p->address,
541 				       p->size, PCI_COMMAND_IO_ENABLE));
542 
543 	    if ((address + sizecnt) > PCI_IO_END) {
544 		/*
545 		 * Should we panic here?
546 		 */
547 		printf("\npcibus0: dev %d reg %d: io not configured",
548 			p->dev, p->reg);
549 	    } else {
550 		pci_conf_write(pc, p->tag, p->reg, p->address);
551 		csr = pci_conf_read(pc, p->tag, PCI_COMMAND_STATUS_REG);
552 		csr |= PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MASTER_ENABLE;
553 		pci_conf_write(pc, p->tag, PCI_COMMAND_STATUS_REG, csr);
554 		p->csr = csr;
555 	    }
556 	}
557 	p = LIST_NEXT(p, link);
558     }
559 
560 #ifdef DEBUG_PCI_MACHDEP
561     printf("\nI/O List:\n");
562     p = LIST_FIRST(&iolist);
563 
564     while (p != NULL) {
565 	printf("\ndev: %d, reg: 0x%02x, size: 0x%08x, addr: 0x%08x", p->dev,
566 			p->reg, p->size, p->address);
567 	p = LIST_NEXT(p, link);
568     }
569     printf("\nMemlist:");
570     p = LIST_FIRST(&memlist);
571 
572     while (p != NULL) {
573 	printf("\ndev: %d, reg: 0x%02x, size: 0x%08x, addr: 0x%08x", p->dev,
574 			p->reg, p->size, p->address);
575 	p = LIST_NEXT(p, link);
576     }
577 #endif
578 
579     /*
580      * Free the lists
581      */
582     p = LIST_FIRST(&iolist);
583     while (p != NULL) {
584 	q = p;
585 	LIST_REMOVE(q, link);
586 	free(p, M_WAITOK);
587 	p = LIST_FIRST(&iolist);
588     }
589     p = LIST_FIRST(&memlist);
590     while (p != NULL) {
591 	q = p;
592 	LIST_REMOVE(q, link);
593 	free(p, M_WAITOK);
594 	p = LIST_FIRST(&memlist);
595     }
596 }
597 
598 pcitag_t
599 pci_make_tag(pci_chipset_tag_t pc, int bus, int device, int function)
600 {
601 	return ((bus << 16) | (device << 11) | (function << 8));
602 }
603 
604 void
605 pci_decompose_tag(pci_chipset_tag_t pc, pcitag_t tag, int *bp, int *dp, int *fp)
606 {
607 
608 	if (bp != NULL)
609 		*bp = (tag >> 16) & 0xff;
610 	if (dp != NULL)
611 		*dp = (tag >> 11) & 0x1f;
612 	if (fp != NULL)
613 		*fp = (tag >> 8) & 0x7;
614 }
615 
616 int
617 pci_intr_map(struct pci_attach_args *pa, pci_intr_handle_t *ihp)
618 {
619 	int line = pa->pa_intrline;
620 
621 #if defined(_MILANHW_)
622 	/*
623 	 * On the Hades, the 'pin' info is useless.
624 	 */
625 	{
626 		int pin = pa->pa_intrpin;
627 
628 		if (pin == 0) {
629 			/* No IRQ used. */
630 			goto bad;
631 		}
632 		if (pin > PCI_INTERRUPT_PIN_MAX) {
633 			printf("pci_intr_map: bad interrupt pin %d\n", pin);
634 			goto bad;
635 		}
636 	}
637 #endif /* _MILANHW_ */
638 
639 	/*
640 	 * According to the PCI-spec, 255 means `unknown' or `no connection'.
641 	 * Interpret this as 'no interrupt assigned'.
642 	 */
643 	if (line == 255)
644 		goto bad;
645 
646 	/*
647 	 * Values are pretty useless on the Hades since all interrupt
648 	 * lines for a card are tied together and hardwired to a
649 	 * specific TT-MFP I/O port.
650 	 * On the Milan, they are tied to the ICU.
651 	 */
652 #if defined(_MILANHW_)
653 	if (line >= 16) {
654 		printf("pci_intr_map: bad interrupt line %d\n", line);
655 		goto bad;
656 	}
657 	if (line == 2) {
658 		printf("pci_intr_map: changed line 2 to line 9\n");
659 		line = 9;
660 	}
661 	/* Assume line == 0 means unassigned */
662 	if (line == 0)
663 		goto bad;
664 #endif
665 	*ihp = line;
666 	return 0;
667 
668 bad:
669 	*ihp = -1;
670 	return 1;
671 }
672 
673 const char *
674 pci_intr_string(pci_chipset_tag_t pc, pci_intr_handle_t ih)
675 {
676 	static char irqstr[8];		/* 4 + 2 + NULL + sanity */
677 
678 	if (ih == -1)
679 		panic("pci_intr_string: bogus handle 0x%x", ih);
680 
681 	sprintf(irqstr, "irq %d", ih);
682 	return (irqstr);
683 
684 }
685 
686 const struct evcnt *
687 pci_intr_evcnt(pci_chipset_tag_t pc, pci_intr_handle_t ih)
688 {
689 
690 	/* XXX for now, no evcnt parent reported */
691 	return NULL;
692 }
693