Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / i386 / pci / via82c586.c
blobf09fb465181d2d44eba528d1ab41b05929d511a2
1 /* $NetBSD: via82c586.c,v 1.10 2006/11/16 01:32:39 christos Exp $ */
3 /*-
4 * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 * NASA Ames Research Center.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
20 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
34 * Copyright (c) 1999, by UCHIYAMA Yasushi
35 * All rights reserved.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
39 * are met:
40 * 1. Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * 2. The name of the developer may NOT be used to endorse or promote products
43 * derived from this software without specific prior written permission.
45 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
55 * SUCH DAMAGE.
59 * Support for the VIA 82c586 PCI-ISA bridge interrupt controller.
62 #include <sys/cdefs.h>
63 __KERNEL_RCSID(0, "$NetBSD: via82c586.c,v 1.10 2006/11/16 01:32:39 christos Exp $");
65 #include <sys/param.h>
66 #include <sys/systm.h>
67 #include <sys/device.h>
69 #include <machine/intr.h>
70 #include <machine/bus.h>
72 #include <dev/pci/pcivar.h>
73 #include <dev/pci/pcireg.h>
74 #include <dev/pci/pcidevs.h>
76 #include <i386/pci/pci_intr_fixup.h>
77 #include <i386/pci/via82c586reg.h>
78 #include <i386/pci/piixvar.h>
80 int via82c586_getclink(pciintr_icu_handle_t, int, int *);
81 int via82c586_get_intr(pciintr_icu_handle_t, int, int *);
82 int via82c586_set_intr(pciintr_icu_handle_t, int, int);
83 int via82c586_get_trigger(pciintr_icu_handle_t, int, int *);
84 int via82c586_set_trigger(pciintr_icu_handle_t, int, int);
86 const struct pciintr_icu via82c586_pci_icu = {
87 via82c586_getclink,
88 via82c586_get_intr,
89 via82c586_set_intr,
90 via82c586_get_trigger,
91 via82c586_set_trigger,
94 const int vp3_cfg_trigger_shift[] = {
95 VP3_CFG_TRIGGER_SHIFT_PIRQA,
96 VP3_CFG_TRIGGER_SHIFT_PIRQB,
97 VP3_CFG_TRIGGER_SHIFT_PIRQC,
98 VP3_CFG_TRIGGER_SHIFT_PIRQD,
101 #define VP3_TRIGGER(reg, pirq) (((reg) >> vp3_cfg_trigger_shift[(pirq)]) & \
102 VP3_CFG_TRIGGER_MASK)
104 const int vp3_cfg_intr_shift[] = {
105 VP3_CFG_INTR_SHIFT_PIRQA,
106 VP3_CFG_INTR_SHIFT_PIRQB,
107 VP3_CFG_INTR_SHIFT_PIRQC,
108 VP3_CFG_INTR_SHIFT_PIRQD,
109 VP3_CFG_INTR_SHIFT_PIRQ0,
110 VP3_CFG_INTR_SHIFT_PIRQ1,
111 VP3_CFG_INTR_SHIFT_PIRQ2,
114 #define VP3_PIRQ(reg, pirq) (((reg) >> vp3_cfg_intr_shift[(pirq)]) & \
115 VP3_CFG_INTR_MASK)
118 via82c586_init(pci_chipset_tag_t pc, bus_space_tag_t iot, pcitag_t tag,
119 pciintr_icu_tag_t *ptagp, pciintr_icu_handle_t *phandp)
121 pcireg_t reg;
123 if (piix_init(pc, iot, tag, ptagp, phandp) == 0) {
124 *ptagp = &via82c586_pci_icu;
127 * Enable EISA ELCR.
129 reg = pci_conf_read(pc, tag, VP3_CFG_KBDMISCCTRL12_REG);
130 reg |= VP3_CFG_MISCCTRL2_EISA4D04D1PORT_ENABLE <<
131 VP3_CFG_MISCCTRL2_SHIFT;
132 pci_conf_write(pc, tag, VP3_CFG_KBDMISCCTRL12_REG, reg);
134 return (0);
137 return (1);
141 via82c586_getclink(pciintr_icu_handle_t v, int link, int *clinkp)
144 if (VP3_LEGAL_LINK(link - 1)) {
145 *clinkp = link - 1;
146 return (0);
149 return (1);
153 via82c586_get_intr(pciintr_icu_handle_t v, int clink, int *irqp)
155 struct piix_handle *ph = v;
156 pcireg_t reg;
157 int val;
159 if (VP3_LEGAL_LINK(clink) == 0)
160 return (1);
162 reg = pci_conf_read(ph->ph_pc, ph->ph_tag, VP3_CFG_PIRQ_REG);
163 val = VP3_PIRQ(reg, clink);
164 *irqp = (val == VP3_PIRQ_NONE) ?
165 X86_PCI_INTERRUPT_LINE_NO_CONNECTION : val;
167 return (0);
171 via82c586_set_intr(pciintr_icu_handle_t v, int clink, int irq)
173 struct piix_handle *ph = v;
174 int shift, val;
175 pcireg_t reg;
177 if (VP3_LEGAL_LINK(clink) == 0 || VP3_LEGAL_IRQ(irq) == 0)
178 return (1);
180 reg = pci_conf_read(ph->ph_pc, ph->ph_tag, VP3_CFG_PIRQ_REG);
181 via82c586_get_intr(v, clink, &val);
182 shift = vp3_cfg_intr_shift[clink];
183 reg &= ~(VP3_CFG_INTR_MASK << shift);
184 reg |= (irq << shift);
185 pci_conf_write(ph->ph_pc, ph->ph_tag, VP3_CFG_PIRQ_REG, reg);
186 if (via82c586_get_intr(v, clink, &val) != 0 ||
187 val != irq)
188 return (1);
190 return (0);
194 via82c586_get_trigger(pciintr_icu_handle_t v, int irq, int *triggerp)
196 struct piix_handle *ph = v;
197 int i, error, check_consistency, pciirq, pcitrigger = IST_NONE;
198 pcireg_t reg;
200 if (VP3_LEGAL_IRQ(irq) == 0)
201 return (1);
203 check_consistency = 0;
204 for (i = 0; i <= 3; i++) {
205 via82c586_get_intr(v, i, &pciirq);
206 if (pciirq == irq) {
207 reg = pci_conf_read(ph->ph_pc, ph->ph_tag,
208 VP3_CFG_PIRQ_REG);
209 if (VP3_TRIGGER(reg, i) == VP3_CFG_TRIGGER_EDGE)
210 pcitrigger = IST_EDGE;
211 else
212 pcitrigger = IST_LEVEL;
213 check_consistency = 1;
214 break;
218 error = piix_get_trigger(v, irq, triggerp);
219 if (error == 0 && check_consistency && pcitrigger != *triggerp)
220 return (1);
221 return (error);
225 via82c586_set_trigger(pciintr_icu_handle_t v, int irq, int trigger)
227 struct piix_handle *ph = v;
228 int i, pciirq, shift, testtrig;
229 pcireg_t reg;
231 if (VP3_LEGAL_IRQ(irq) == 0)
232 return (1);
234 for (i = 0; i <= 3; i++) {
235 via82c586_get_intr(v, i, &pciirq);
236 if (pciirq == irq) {
237 reg = pci_conf_read(ph->ph_pc, ph->ph_tag,
238 VP3_CFG_PIRQ_REG);
239 shift = vp3_cfg_trigger_shift[i];
240 if (trigger == IST_LEVEL)
241 reg &= ~(VP3_CFG_TRIGGER_MASK << shift);
242 else
243 reg |= (VP3_CFG_TRIGGER_EDGE << shift);
244 pci_conf_write(ph->ph_pc, ph->ph_tag,
245 VP3_CFG_PIRQ_REG, reg);
246 break;
250 if (piix_set_trigger(v, irq, trigger) != 0 ||
251 via82c586_get_trigger(v, irq, &testtrig) != 0 ||
252 testtrig != trigger)
253 return (1);
255 return (0);