sio.c revision 1.45 1 /* $NetBSD: sio.c,v 1.45 2009/03/14 15:35:59 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.45 2009/03/14 15:35:59 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(parent, self, aux)
179 struct device *parent, *self;
180 void *aux;
181 {
182 struct sio_softc *sc = (struct sio_softc *)self;
183 struct pci_attach_args *pa = aux;
184 char devinfo[256];
185
186 pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
187 printf(": %s (rev. 0x%02x)\n", devinfo,
188 PCI_REVISION(pa->pa_class));
189
190 sc->sc_pc = pa->pa_pc;
191 sc->sc_iot = pa->pa_iot;
192 sc->sc_memt = pa->pa_memt;
193 sc->sc_parent_dmat = pa->pa_dmat;
194 #if NPCEB > 0
195 sc->sc_haseisa = (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL &&
196 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PCEB);
197 #endif
198 sc->sc_is82c693 = (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_CONTAQ &&
199 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CONTAQ_82C693);
200
201 config_defer(self, sio_bridge_callback);
202 }
203
204 void
205 sio_bridge_callback(struct device *self)
206 {
207 struct sio_softc *sc = (struct sio_softc *)self;
208 union sio_attach_args sa;
209 #if NPCEB > 0
210 struct alpha_eisa_chipset ec;
211
212 if (sc->sc_haseisa) {
213 ec.ec_v = NULL;
214 ec.ec_attach_hook = sio_eisa_attach_hook;
215 ec.ec_maxslots = sio_eisa_maxslots;
216
217 /*
218 * Deal with platforms that hook EISA interrupts
219 * up differently.
220 */
221 switch (cputype) {
222 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500)
223 case ST_DEC_2100_A500:
224 case ST_DEC_2100A_A500:
225 pci_2100_a500_eisa_pickintr(sc->sc_pc, &ec);
226 break;
227 #endif
228 default:
229 ec.ec_intr_map = sio_eisa_intr_map;
230 ec.ec_intr_string = sio_intr_string;
231 ec.ec_intr_evcnt = sio_intr_evcnt;
232 ec.ec_intr_establish = sio_intr_establish;
233 ec.ec_intr_disestablish = sio_intr_disestablish;
234 }
235
236 sa.sa_eba.eba_iot = sc->sc_iot;
237 sa.sa_eba.eba_memt = sc->sc_memt;
238 sa.sa_eba.eba_dmat =
239 alphabus_dma_get_tag(sc->sc_parent_dmat, ALPHA_BUS_EISA);
240 sa.sa_eba.eba_ec = &ec;
241 config_found_ia(&sc->sc_dv, "eisabus", &sa.sa_eba,
242 eisabusprint);
243 }
244 #endif /* NPCEB */
245
246 /*
247 * Deal with platforms which have Odd ISA DMA needs.
248 */
249 switch (cputype) {
250 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500)
251 case ST_DEC_2100_A500:
252 case ST_DEC_2100A_A500:
253 sc->sc_ic = sableio_pickisa();
254 break;
255 #endif
256 default:
257 sc->sc_ic = malloc(sizeof(*sc->sc_ic), M_DEVBUF, M_WAITOK);
258 memset(sc->sc_ic, 0, sizeof(*sc->sc_ic));
259 }
260
261 sc->sc_ic->ic_v = NULL;
262 sc->sc_ic->ic_attach_hook = sio_isa_attach_hook;
263
264 /*
265 * Deal with platforms that hook up ISA interrupts differently.
266 */
267 switch (cputype) {
268 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500)
269 case ST_DEC_2100_A500:
270 case ST_DEC_2100A_A500:
271 pci_2100_a500_isa_pickintr(sc->sc_pc, sc->sc_ic);
272 break;
273 #endif
274 default:
275 sc->sc_ic->ic_intr_evcnt = sio_intr_evcnt;
276 sc->sc_ic->ic_intr_establish = sio_intr_establish;
277 sc->sc_ic->ic_intr_disestablish = sio_intr_disestablish;
278 sc->sc_ic->ic_intr_alloc = sio_intr_alloc;
279 }
280
281 sa.sa_iba.iba_iot = sc->sc_iot;
282 sa.sa_iba.iba_memt = sc->sc_memt;
283 sa.sa_iba.iba_dmat =
284 alphabus_dma_get_tag(sc->sc_parent_dmat, ALPHA_BUS_ISA);
285 sa.sa_iba.iba_ic = sc->sc_ic;
286 config_found_ia(&sc->sc_dv, "isabus", &sa.sa_iba, isabusprint);
287 }
288
289 void
290 sio_isa_attach_hook(parent, self, iba)
291 struct device *parent, *self;
292 struct isabus_attach_args *iba;
293 {
294
295 /* Nothing to do. */
296 }
297
298 #if NPCEB > 0
299
300 void
301 sio_eisa_attach_hook(parent, self, eba)
302 struct device *parent, *self;
303 struct eisabus_attach_args *eba;
304 {
305
306 #if NEISA > 0
307 eisa_init(eba->eba_ec);
308 #endif
309 }
310
311 int
312 sio_eisa_maxslots(void *v)
313 {
314
315 return 16; /* as good a number as any. only 8, maybe? */
316 }
317
318 int
319 sio_eisa_intr_map(void *v, u_int irq, eisa_intr_handle_t *ihp)
320 {
321
322 #define ICU_LEN 16 /* number of ISA IRQs (XXX) */
323
324 if (irq >= ICU_LEN) {
325 printf("sio_eisa_intr_map: bad IRQ %d\n", irq);
326 *ihp = -1;
327 return 1;
328 }
329 if (irq == 2) {
330 printf("sio_eisa_intr_map: changed IRQ 2 to IRQ 9\n");
331 irq = 9;
332 }
333
334 *ihp = irq;
335 return 0;
336 }
337
338 #endif /* NPCEB */
339