sio.c revision 1.46 1 /* $NetBSD: sio.c,v 1.46 2009/03/14 21:04:02 dsl Exp $ */
2
3 /*-
4 * Copyright (c) 2000 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 /*
33 * Copyright (c) 1995, 1996 Carnegie-Mellon University.
34 * All rights reserved.
35 *
36 * Author: Chris G. Demetriou
37 *
38 * Permission to use, copy, modify and distribute this software and
39 * its documentation is hereby granted, provided that both the copyright
40 * notice and this permission notice appear in all copies of the
41 * software, derivative works or modified versions, and any portions
42 * thereof, and that both notices appear in supporting documentation.
43 *
44 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
45 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
46 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
47 *
48 * Carnegie Mellon requests users of this software to return to
49 *
50 * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
51 * School of Computer Science
52 * Carnegie Mellon University
53 * Pittsburgh PA 15213-3890
54 *
55 * any improvements or extensions that they make and grant Carnegie the
56 * rights to redistribute these changes.
57 */
58
59 #include "opt_dec_2100_a500.h"
60 #include "opt_dec_2100a_a500.h"
61 #include "eisa.h"
62 #include "sio.h"
63
64 #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
65
66 __KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.46 2009/03/14 21:04:02 dsl Exp $");
67
68 #include <sys/param.h>
69 #include <sys/systm.h>
70 #include <sys/kernel.h>
71 #include <sys/device.h>
72 #include <sys/malloc.h>
73
74 #include <machine/intr.h>
75 #include <machine/bus.h>
76 #include <machine/rpb.h>
77
78 #include <dev/isa/isavar.h>
79 #include <dev/eisa/eisavar.h>
80
81 #include <dev/pci/pcireg.h>
82 #include <dev/pci/pcivar.h>
83 #include <dev/pci/pcidevs.h>
84
85 #include <alpha/pci/siovar.h>
86
87 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500)
88 #include <alpha/pci/pci_2100_a500.h>
89 #include <alpha/sableio/sableiovar.h>
90 #endif
91
92 struct sio_softc {
93 struct device sc_dv;
94
95 pci_chipset_tag_t sc_pc;
96
97 bus_space_tag_t sc_iot, sc_memt;
98 bus_dma_tag_t sc_parent_dmat;
99 #if NPCEB > 0
100 int sc_haseisa;
101 #endif
102 int sc_is82c693;
103
104 /* ISA chipset must persist; it's used after autoconfig. */
105 isa_chipset_tag_t sc_ic;
106 };
107
108 int siomatch(struct device *, struct cfdata *, void *);
109 void sioattach(struct device *, struct device *, void *);
110
111 CFATTACH_DECL(sio, sizeof(struct sio_softc),
112 siomatch, sioattach, NULL, NULL);
113
114 #if NPCEB > 0
115 int pcebmatch(struct device *, struct cfdata *, void *);
116
117 CFATTACH_DECL(pceb, sizeof(struct sio_softc),
118 pcebmatch, sioattach, NULL, NULL);
119 #endif
120
121 union sio_attach_args {
122 struct isabus_attach_args sa_iba;
123 struct eisabus_attach_args sa_eba;
124 };
125
126 void sio_isa_attach_hook(struct device *, struct device *,
127 struct isabus_attach_args *);
128 #if NPCEB > 0
129 void sio_eisa_attach_hook(struct device *, struct device *,
130 struct eisabus_attach_args *);
131 int sio_eisa_maxslots(void *);
132 int sio_eisa_intr_map(void *, u_int, eisa_intr_handle_t *);
133 #endif
134
135 void sio_bridge_callback(struct device *);
136
137 int
138 siomatch(struct device *parent, struct cfdata *match, void *aux)
139 {
140 struct pci_attach_args *pa = aux;
141
142 /*
143 * The Cypress 82C693 is more-or-less an SIO, but with
144 * indirect register access. (XXX for everything, or
145 * just the ELCR?)
146 */
147 if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_CONTAQ &&
148 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CONTAQ_82C693 &&
149 pa->pa_function == 0)
150 return (1);
151
152 if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL &&
153 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_SIO)
154 return (1);
155
156 if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI &&
157 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1543)
158 return (1);
159
160 return (0);
161 }
162
163 #if NPCEB > 0
164 int
165 pcebmatch(struct device *parent, struct cfdata *match, void *aux)
166 {
167 struct pci_attach_args *pa = aux;
168
169 if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL &&
170 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PCEB)
171 return (1);
172
173 return (0);
174 }
175 #endif
176
177 void
178 sioattach(struct device *parent, struct device *self, void *aux)
179 {
180 struct sio_softc *sc = (struct sio_softc *)self;
181 struct pci_attach_args *pa = aux;
182 char devinfo[256];
183
184 pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
185 printf(": %s (rev. 0x%02x)\n", devinfo,
186 PCI_REVISION(pa->pa_class));
187
188 sc->sc_pc = pa->pa_pc;
189 sc->sc_iot = pa->pa_iot;
190 sc->sc_memt = pa->pa_memt;
191 sc->sc_parent_dmat = pa->pa_dmat;
192 #if NPCEB > 0
193 sc->sc_haseisa = (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL &&
194 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PCEB);
195 #endif
196 sc->sc_is82c693 = (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_CONTAQ &&
197 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CONTAQ_82C693);
198
199 config_defer(self, sio_bridge_callback);
200 }
201
202 void
203 sio_bridge_callback(struct device *self)
204 {
205 struct sio_softc *sc = (struct sio_softc *)self;
206 union sio_attach_args sa;
207 #if NPCEB > 0
208 struct alpha_eisa_chipset ec;
209
210 if (sc->sc_haseisa) {
211 ec.ec_v = NULL;
212 ec.ec_attach_hook = sio_eisa_attach_hook;
213 ec.ec_maxslots = sio_eisa_maxslots;
214
215 /*
216 * Deal with platforms that hook EISA interrupts
217 * up differently.
218 */
219 switch (cputype) {
220 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500)
221 case ST_DEC_2100_A500:
222 case ST_DEC_2100A_A500:
223 pci_2100_a500_eisa_pickintr(sc->sc_pc, &ec);
224 break;
225 #endif
226 default:
227 ec.ec_intr_map = sio_eisa_intr_map;
228 ec.ec_intr_string = sio_intr_string;
229 ec.ec_intr_evcnt = sio_intr_evcnt;
230 ec.ec_intr_establish = sio_intr_establish;
231 ec.ec_intr_disestablish = sio_intr_disestablish;
232 }
233
234 sa.sa_eba.eba_iot = sc->sc_iot;
235 sa.sa_eba.eba_memt = sc->sc_memt;
236 sa.sa_eba.eba_dmat =
237 alphabus_dma_get_tag(sc->sc_parent_dmat, ALPHA_BUS_EISA);
238 sa.sa_eba.eba_ec = &ec;
239 config_found_ia(&sc->sc_dv, "eisabus", &sa.sa_eba,
240 eisabusprint);
241 }
242 #endif /* NPCEB */
243
244 /*
245 * Deal with platforms which have Odd ISA DMA needs.
246 */
247 switch (cputype) {
248 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500)
249 case ST_DEC_2100_A500:
250 case ST_DEC_2100A_A500:
251 sc->sc_ic = sableio_pickisa();
252 break;
253 #endif
254 default:
255 sc->sc_ic = malloc(sizeof(*sc->sc_ic), M_DEVBUF, M_WAITOK);
256 memset(sc->sc_ic, 0, sizeof(*sc->sc_ic));
257 }
258
259 sc->sc_ic->ic_v = NULL;
260 sc->sc_ic->ic_attach_hook = sio_isa_attach_hook;
261
262 /*
263 * Deal with platforms that hook up ISA interrupts differently.
264 */
265 switch (cputype) {
266 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500)
267 case ST_DEC_2100_A500:
268 case ST_DEC_2100A_A500:
269 pci_2100_a500_isa_pickintr(sc->sc_pc, sc->sc_ic);
270 break;
271 #endif
272 default:
273 sc->sc_ic->ic_intr_evcnt = sio_intr_evcnt;
274 sc->sc_ic->ic_intr_establish = sio_intr_establish;
275 sc->sc_ic->ic_intr_disestablish = sio_intr_disestablish;
276 sc->sc_ic->ic_intr_alloc = sio_intr_alloc;
277 }
278
279 sa.sa_iba.iba_iot = sc->sc_iot;
280 sa.sa_iba.iba_memt = sc->sc_memt;
281 sa.sa_iba.iba_dmat =
282 alphabus_dma_get_tag(sc->sc_parent_dmat, ALPHA_BUS_ISA);
283 sa.sa_iba.iba_ic = sc->sc_ic;
284 config_found_ia(&sc->sc_dv, "isabus", &sa.sa_iba, isabusprint);
285 }
286
287 void
288 sio_isa_attach_hook(struct device *parent, struct device *self, struct isabus_attach_args *iba)
289 {
290
291 /* Nothing to do. */
292 }
293
294 #if NPCEB > 0
295
296 void
297 sio_eisa_attach_hook(struct device *parent, struct device *self, struct eisabus_attach_args *eba)
298 {
299
300 #if NEISA > 0
301 eisa_init(eba->eba_ec);
302 #endif
303 }
304
305 int
306 sio_eisa_maxslots(void *v)
307 {
308
309 return 16; /* as good a number as any. only 8, maybe? */
310 }
311
312 int
313 sio_eisa_intr_map(void *v, u_int irq, eisa_intr_handle_t *ihp)
314 {
315
316 #define ICU_LEN 16 /* number of ISA IRQs (XXX) */
317
318 if (irq >= ICU_LEN) {
319 printf("sio_eisa_intr_map: bad IRQ %d\n", irq);
320 *ihp = -1;
321 return 1;
322 }
323 if (irq == 2) {
324 printf("sio_eisa_intr_map: changed IRQ 2 to IRQ 9\n");
325 irq = 9;
326 }
327
328 *ihp = irq;
329 return 0;
330 }
331
332 #endif /* NPCEB */
333