pciide_machdep.c revision 1.3.4.3 1 1.3.4.3 skrll /* $NetBSD: pciide_machdep.c,v 1.3.4.3 2004/09/18 14:42:43 skrll Exp $ */
2 1.3.4.2 skrll
3 1.3.4.2 skrll /*
4 1.3.4.2 skrll * Copyright (c) 1998 Christopher G. Demetriou. All rights reserved.
5 1.3.4.2 skrll *
6 1.3.4.2 skrll * Redistribution and use in source and binary forms, with or without
7 1.3.4.2 skrll * modification, are permitted provided that the following conditions
8 1.3.4.2 skrll * are met:
9 1.3.4.2 skrll * 1. Redistributions of source code must retain the above copyright
10 1.3.4.2 skrll * notice, this list of conditions and the following disclaimer.
11 1.3.4.2 skrll * 2. Redistributions in binary form must reproduce the above copyright
12 1.3.4.2 skrll * notice, this list of conditions and the following disclaimer in the
13 1.3.4.2 skrll * documentation and/or other materials provided with the distribution.
14 1.3.4.2 skrll * 3. All advertising materials mentioning features or use of this software
15 1.3.4.2 skrll * must display the following acknowledgement:
16 1.3.4.2 skrll * This product includes software developed by Christopher G. Demetriou
17 1.3.4.2 skrll * for the NetBSD Project.
18 1.3.4.2 skrll * 4. The name of the author may not be used to endorse or promote products
19 1.3.4.2 skrll * derived from this software without specific prior written permission
20 1.3.4.2 skrll *
21 1.3.4.2 skrll * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.3.4.2 skrll * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.3.4.2 skrll * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.3.4.2 skrll * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.3.4.2 skrll * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.3.4.2 skrll * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.3.4.2 skrll * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.3.4.2 skrll * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.3.4.2 skrll * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.3.4.2 skrll * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.3.4.2 skrll */
32 1.3.4.2 skrll
33 1.3.4.2 skrll /*
34 1.3.4.2 skrll * PCI IDE controller driver (i386 machine-dependent portion).
35 1.3.4.2 skrll *
36 1.3.4.2 skrll * Author: Christopher G. Demetriou, March 2, 1998 (derived from NetBSD
37 1.3.4.2 skrll * sys/dev/pci/ppb.c, revision 1.16).
38 1.3.4.2 skrll *
39 1.3.4.2 skrll * See "PCI IDE Controller Specification, Revision 1.0 3/4/94" from the
40 1.3.4.2 skrll * PCI SIG.
41 1.3.4.2 skrll */
42 1.3.4.2 skrll
43 1.3.4.2 skrll #include <sys/cdefs.h>
44 1.3.4.3 skrll __KERNEL_RCSID(0, "$NetBSD: pciide_machdep.c,v 1.3.4.3 2004/09/18 14:42:43 skrll Exp $");
45 1.3.4.2 skrll
46 1.3.4.2 skrll #include <sys/param.h>
47 1.3.4.2 skrll #include <sys/systm.h>
48 1.3.4.2 skrll #include <sys/device.h>
49 1.3.4.2 skrll
50 1.3.4.2 skrll #include <dev/pci/pcireg.h>
51 1.3.4.2 skrll #include <dev/pci/pcivar.h>
52 1.3.4.2 skrll #include <dev/pci/pciidereg.h>
53 1.3.4.2 skrll #include <dev/pci/pciidevar.h>
54 1.3.4.2 skrll
55 1.3.4.2 skrll #include <dev/isa/isavar.h>
56 1.3.4.2 skrll
57 1.3.4.2 skrll #include "ioapic.h"
58 1.3.4.2 skrll
59 1.3.4.2 skrll #if NIOAPIC > 0
60 1.3.4.2 skrll #include <machine/i82093var.h>
61 1.3.4.2 skrll #include <machine/mpbiosvar.h>
62 1.3.4.2 skrll #endif
63 1.3.4.2 skrll
64 1.3.4.2 skrll void *
65 1.3.4.2 skrll pciide_machdep_compat_intr_establish(dev, pa, chan, func, arg)
66 1.3.4.2 skrll struct device *dev;
67 1.3.4.2 skrll struct pci_attach_args *pa;
68 1.3.4.2 skrll int chan;
69 1.3.4.2 skrll int (*func) __P((void *));
70 1.3.4.2 skrll void *arg;
71 1.3.4.2 skrll {
72 1.3.4.2 skrll int irq;
73 1.3.4.2 skrll void *cookie;
74 1.3.4.2 skrll #if NIOAPIC > 0
75 1.3.4.2 skrll int mpih;
76 1.3.4.2 skrll #endif
77 1.3.4.2 skrll
78 1.3.4.2 skrll irq = PCIIDE_COMPAT_IRQ(chan);
79 1.3.4.2 skrll cookie = isa_intr_establish(NULL, irq, IST_EDGE, IPL_BIO, func, arg);
80 1.3.4.2 skrll if (cookie == NULL)
81 1.3.4.2 skrll return (NULL);
82 1.3.4.2 skrll #if NIOAPIC > 0
83 1.3.4.2 skrll if (mp_busses != NULL &&
84 1.3.4.2 skrll (intr_find_mpmapping(mp_isa_bus, irq, &mpih) == 0 ||
85 1.3.4.2 skrll intr_find_mpmapping(mp_eisa_bus, irq, &mpih) == 0)) {
86 1.3.4.2 skrll mpih |= irq;
87 1.3.4.2 skrll printf("%s: %s channel interrupting at %s\n", dev->dv_xname,
88 1.3.4.2 skrll PCIIDE_CHANNEL_NAME(chan), intr_string(mpih));
89 1.3.4.2 skrll } else
90 1.3.4.2 skrll #endif
91 1.3.4.2 skrll printf("%s: %s channel interrupting at irq %d\n", dev->dv_xname,
92 1.3.4.2 skrll PCIIDE_CHANNEL_NAME(chan), irq);
93 1.3.4.2 skrll return (cookie);
94 1.3.4.2 skrll }
95