isapnp.c revision 1.64 1 1.64 rillig /* $NetBSD: isapnp.c,v 1.64 2024/09/08 09:36:50 rillig Exp $ */
2 1.1 christos
3 1.27 christos /*-
4 1.57 ad * Copyright (c) 1996, 2008 The NetBSD Foundation, Inc.
5 1.27 christos * All rights reserved.
6 1.27 christos *
7 1.27 christos * This code is derived from software contributed to The NetBSD Foundation
8 1.27 christos * by Christos Zoulas.
9 1.1 christos *
10 1.1 christos * Redistribution and use in source and binary forms, with or without
11 1.1 christos * modification, are permitted provided that the following conditions
12 1.1 christos * are met:
13 1.1 christos * 1. Redistributions of source code must retain the above copyright
14 1.1 christos * notice, this list of conditions and the following disclaimer.
15 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 christos * notice, this list of conditions and the following disclaimer in the
17 1.1 christos * documentation and/or other materials provided with the distribution.
18 1.1 christos *
19 1.27 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.27 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.27 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.27 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.27 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.27 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.27 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.27 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.27 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.27 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.27 christos * POSSIBILITY OF SUCH DAMAGE.
30 1.1 christos */
31 1.1 christos
32 1.1 christos /*
33 1.1 christos * ISA PnP bus autoconfiguration.
34 1.1 christos */
35 1.35 lukem
36 1.35 lukem #include <sys/cdefs.h>
37 1.64 rillig __KERNEL_RCSID(0, "$NetBSD: isapnp.c,v 1.64 2024/09/08 09:36:50 rillig Exp $");
38 1.1 christos
39 1.28 thorpej #include "isadma.h"
40 1.28 thorpej
41 1.1 christos #include <sys/param.h>
42 1.1 christos #include <sys/systm.h>
43 1.1 christos #include <sys/device.h>
44 1.63 thorpej #include <sys/kmem.h>
45 1.1 christos
46 1.53 ad #include <sys/bus.h>
47 1.1 christos
48 1.1 christos #include <dev/isa/isavar.h>
49 1.1 christos
50 1.1 christos #include <dev/isapnp/isapnpreg.h>
51 1.1 christos #include <dev/isapnp/isapnpvar.h>
52 1.20 christos #include <dev/isapnp/isapnpdevs.h>
53 1.1 christos
54 1.31 augustss #include "wss_isapnp.h" /* XXX part of disgusting CS chip hack */
55 1.31 augustss
56 1.34 mjl #ifndef ISAPNP_ALLOC_INTR_MASK
57 1.34 mjl #define ISAPNP_ALLOC_INTR_MASK (~0)
58 1.34 mjl #endif
59 1.34 mjl
60 1.44 perry static void isapnp_init(struct isapnp_softc *);
61 1.49 perry static inline u_char isapnp_shift_bit(struct isapnp_softc *);
62 1.44 perry static int isapnp_findcard(struct isapnp_softc *);
63 1.44 perry static void isapnp_free_region(bus_space_tag_t, struct isapnp_region *);
64 1.44 perry static int isapnp_alloc_region(bus_space_tag_t, struct isapnp_region *);
65 1.44 perry static int isapnp_alloc_irq(isa_chipset_tag_t, struct isapnp_pin *);
66 1.44 perry static int isapnp_alloc_drq(isa_chipset_tag_t, struct isapnp_pin *);
67 1.44 perry static int isapnp_testconfig(bus_space_tag_t, bus_space_tag_t,
68 1.44 perry struct isapnp_attach_args *, int);
69 1.44 perry static struct isapnp_attach_args *isapnp_bestconfig(struct isapnp_softc *,
70 1.44 perry struct isapnp_attach_args **);
71 1.44 perry static void isapnp_print_region(const char *, struct isapnp_region *, size_t);
72 1.44 perry static void isapnp_configure(struct isapnp_softc *,
73 1.44 perry const struct isapnp_attach_args *);
74 1.44 perry static void isapnp_print_pin(const char *, struct isapnp_pin *, size_t);
75 1.44 perry static int isapnp_print(void *, const char *);
76 1.7 mikel #ifdef _KERNEL
77 1.56 cube static int isapnp_submatch(device_t, cfdata_t, const int *, void *);
78 1.13 drochner #endif
79 1.44 perry static int isapnp_find(struct isapnp_softc *, int);
80 1.56 cube static int isapnp_match(device_t, cfdata_t, void *);
81 1.56 cube static void isapnp_attach(device_t, device_t, void *);
82 1.56 cube static void isapnp_callback(device_t);
83 1.1 christos
84 1.56 cube CFATTACH_DECL_NEW(isapnp, sizeof(struct isapnp_softc),
85 1.40 thorpej isapnp_match, isapnp_attach, NULL, NULL);
86 1.1 christos
87 1.23 thorpej /*
88 1.23 thorpej * This keeps track if which ISA's we have been probed on.
89 1.23 thorpej */
90 1.23 thorpej struct isapnp_probe_cookie {
91 1.23 thorpej LIST_ENTRY(isapnp_probe_cookie) ipc_link;
92 1.56 cube device_t ipc_parent;
93 1.23 thorpej };
94 1.23 thorpej LIST_HEAD(, isapnp_probe_cookie) isapnp_probes =
95 1.23 thorpej LIST_HEAD_INITIALIZER(isapnp_probes);
96 1.23 thorpej
97 1.1 christos /* isapnp_init():
98 1.1 christos * Write the PNP initiation key to wake up the cards...
99 1.1 christos */
100 1.1 christos static void
101 1.56 cube isapnp_init(struct isapnp_softc *sc)
102 1.1 christos {
103 1.1 christos int i;
104 1.1 christos u_char v = ISAPNP_LFSR_INIT;
105 1.1 christos
106 1.1 christos /* First write 0's twice to enter the Wait for Key state */
107 1.1 christos ISAPNP_WRITE_ADDR(sc, 0);
108 1.1 christos ISAPNP_WRITE_ADDR(sc, 0);
109 1.1 christos
110 1.1 christos /* Send the 32 byte sequence to awake the logic */
111 1.9 mikel for (i = 0; i < ISAPNP_LFSR_LENGTH; i++) {
112 1.1 christos ISAPNP_WRITE_ADDR(sc, v);
113 1.1 christos v = ISAPNP_LFSR_NEXT(v);
114 1.1 christos }
115 1.1 christos }
116 1.1 christos
117 1.1 christos
118 1.1 christos /* isapnp_shift_bit():
119 1.1 christos * Read a bit at a time from the config card.
120 1.1 christos */
121 1.49 perry static inline u_char
122 1.56 cube isapnp_shift_bit(struct isapnp_softc *sc)
123 1.1 christos {
124 1.1 christos u_char c1, c2;
125 1.1 christos
126 1.1 christos DELAY(250);
127 1.1 christos c1 = ISAPNP_READ_DATA(sc);
128 1.1 christos DELAY(250);
129 1.1 christos c2 = ISAPNP_READ_DATA(sc);
130 1.1 christos
131 1.1 christos if (c1 == 0x55 && c2 == 0xAA)
132 1.1 christos return 0x80;
133 1.1 christos else
134 1.1 christos return 0;
135 1.1 christos }
136 1.1 christos
137 1.1 christos
138 1.1 christos /* isapnp_findcard():
139 1.1 christos * Attempt to read the vendor/serial/checksum for a card
140 1.1 christos * If a card is found [the checksum matches], assign the
141 1.1 christos * next card number to it and return 1
142 1.1 christos */
143 1.1 christos static int
144 1.56 cube isapnp_findcard(struct isapnp_softc *sc)
145 1.1 christos {
146 1.4 christos u_char v = ISAPNP_LFSR_INIT, csum, w;
147 1.1 christos int i, b;
148 1.1 christos
149 1.1 christos if (sc->sc_ncards == ISAPNP_MAX_CARDS) {
150 1.56 cube aprint_error_dev(sc->sc_dev, "Too many pnp cards\n");
151 1.1 christos return 0;
152 1.1 christos }
153 1.1 christos
154 1.1 christos /* Set the read port */
155 1.1 christos isapnp_write_reg(sc, ISAPNP_WAKE, 0);
156 1.1 christos isapnp_write_reg(sc, ISAPNP_SET_RD_PORT, sc->sc_read_port >> 2);
157 1.1 christos sc->sc_read_port |= 3;
158 1.1 christos DELAY(1000);
159 1.1 christos
160 1.1 christos ISAPNP_WRITE_ADDR(sc, ISAPNP_SERIAL_ISOLATION);
161 1.1 christos DELAY(1000);
162 1.1 christos
163 1.1 christos /* Read the 8 bytes of the Vendor ID and Serial Number */
164 1.1 christos for(i = 0; i < 8; i++) {
165 1.1 christos /* Read each bit separately */
166 1.1 christos for (w = 0, b = 0; b < 8; b++) {
167 1.1 christos u_char neg = isapnp_shift_bit(sc);
168 1.1 christos
169 1.1 christos w >>= 1;
170 1.1 christos w |= neg;
171 1.1 christos v = ISAPNP_LFSR_NEXT(v) ^ neg;
172 1.1 christos }
173 1.1 christos sc->sc_id[sc->sc_ncards][i] = w;
174 1.1 christos }
175 1.1 christos
176 1.1 christos /* Read the remaining checksum byte */
177 1.4 christos for (csum = 0, b = 0; b < 8; b++) {
178 1.1 christos u_char neg = isapnp_shift_bit(sc);
179 1.1 christos
180 1.1 christos csum >>= 1;
181 1.1 christos csum |= neg;
182 1.1 christos }
183 1.4 christos sc->sc_id[sc->sc_ncards][8] = csum;
184 1.1 christos
185 1.1 christos if (csum == v) {
186 1.1 christos sc->sc_ncards++;
187 1.1 christos isapnp_write_reg(sc, ISAPNP_CARD_SELECT_NUM, sc->sc_ncards);
188 1.1 christos return 1;
189 1.1 christos }
190 1.1 christos return 0;
191 1.1 christos }
192 1.1 christos
193 1.1 christos
194 1.1 christos /* isapnp_free_region():
195 1.1 christos * Free a region
196 1.1 christos */
197 1.1 christos static void
198 1.56 cube isapnp_free_region(bus_space_tag_t t, struct isapnp_region *r)
199 1.1 christos {
200 1.32 mycroft if (r->length == 0)
201 1.32 mycroft return;
202 1.32 mycroft
203 1.8 mikel #ifdef _KERNEL
204 1.1 christos bus_space_unmap(t, r->h, r->length);
205 1.8 mikel #endif
206 1.1 christos }
207 1.1 christos
208 1.1 christos
209 1.1 christos /* isapnp_alloc_region():
210 1.1 christos * Allocate a single region if possible
211 1.1 christos */
212 1.1 christos static int
213 1.56 cube isapnp_alloc_region(bus_space_tag_t t, struct isapnp_region *r)
214 1.1 christos {
215 1.1 christos int error = 0;
216 1.32 mycroft
217 1.32 mycroft if (r->length == 0) {
218 1.32 mycroft r->base = 0;
219 1.32 mycroft return 0;
220 1.32 mycroft }
221 1.1 christos
222 1.8 mikel for (r->base = r->minbase; r->base <= r->maxbase;
223 1.8 mikel r->base += r->align) {
224 1.8 mikel #ifdef _KERNEL
225 1.1 christos error = bus_space_map(t, r->base, r->length, 0, &r->h);
226 1.8 mikel #endif
227 1.1 christos if (error == 0)
228 1.1 christos return 0;
229 1.30 fvdl if (r->align == 0)
230 1.30 fvdl break;
231 1.1 christos }
232 1.1 christos return error;
233 1.1 christos }
234 1.1 christos
235 1.1 christos
236 1.10 thorpej /* isapnp_alloc_irq():
237 1.10 thorpej * Allocate an irq
238 1.1 christos */
239 1.1 christos static int
240 1.56 cube isapnp_alloc_irq(isa_chipset_tag_t ic, struct isapnp_pin *i)
241 1.1 christos {
242 1.11 thorpej int irq;
243 1.12 christos #define LEVEL_IRQ (ISAPNP_IRQTYPE_LEVEL_PLUS|ISAPNP_IRQTYPE_LEVEL_MINUS)
244 1.12 christos i->type = (i->flags & LEVEL_IRQ) ? IST_LEVEL : IST_EDGE;
245 1.1 christos
246 1.10 thorpej if (i->bits == 0) {
247 1.1 christos i->num = 0;
248 1.10 thorpej return 0;
249 1.10 thorpej }
250 1.10 thorpej
251 1.34 mjl if (isa_intr_alloc(ic, ISAPNP_ALLOC_INTR_MASK & i->bits,
252 1.34 mjl i->type, &irq) == 0) {
253 1.11 thorpej i->num = irq;
254 1.11 thorpej return 0;
255 1.11 thorpej }
256 1.10 thorpej
257 1.10 thorpej return EINVAL;
258 1.1 christos }
259 1.1 christos
260 1.10 thorpej /* isapnp_alloc_drq():
261 1.10 thorpej * Allocate a drq
262 1.10 thorpej */
263 1.10 thorpej static int
264 1.56 cube isapnp_alloc_drq(isa_chipset_tag_t ic, struct isapnp_pin *i)
265 1.10 thorpej {
266 1.29 hannken #if NISADMA > 0
267 1.10 thorpej int b;
268 1.10 thorpej
269 1.10 thorpej if (i->bits == 0) {
270 1.10 thorpej i->num = 0;
271 1.10 thorpej return 0;
272 1.10 thorpej }
273 1.10 thorpej
274 1.17 thorpej for (b = 0; b < 8; b++)
275 1.18 thorpej if ((i->bits & (1 << b)) && isa_drq_isfree(ic, b)) {
276 1.10 thorpej i->num = b;
277 1.10 thorpej return 0;
278 1.10 thorpej }
279 1.29 hannken #endif /* NISADMA > 0 */
280 1.10 thorpej
281 1.10 thorpej return EINVAL;
282 1.10 thorpej }
283 1.1 christos
284 1.1 christos /* isapnp_testconfig():
285 1.1 christos * Test/Allocate the regions used
286 1.1 christos */
287 1.1 christos static int
288 1.56 cube isapnp_testconfig(bus_space_tag_t iot, bus_space_tag_t memt,
289 1.56 cube struct isapnp_attach_args *ipa, int alloc)
290 1.1 christos {
291 1.1 christos int nio = 0, nmem = 0, nmem32 = 0, nirq = 0, ndrq = 0;
292 1.1 christos int error = 0;
293 1.1 christos
294 1.1 christos #ifdef DEBUG_ISAPNP
295 1.1 christos isapnp_print_attach(ipa);
296 1.1 christos #endif
297 1.1 christos
298 1.1 christos for (; nio < ipa->ipa_nio; nio++) {
299 1.1 christos error = isapnp_alloc_region(iot, &ipa->ipa_io[nio]);
300 1.1 christos if (error)
301 1.1 christos goto bad;
302 1.1 christos }
303 1.1 christos
304 1.1 christos for (; nmem < ipa->ipa_nmem; nmem++) {
305 1.1 christos error = isapnp_alloc_region(memt, &ipa->ipa_mem[nmem]);
306 1.1 christos if (error)
307 1.1 christos goto bad;
308 1.1 christos }
309 1.1 christos
310 1.1 christos for (; nmem32 < ipa->ipa_nmem32; nmem32++) {
311 1.1 christos error = isapnp_alloc_region(memt, &ipa->ipa_mem32[nmem32]);
312 1.1 christos if (error)
313 1.1 christos goto bad;
314 1.1 christos }
315 1.1 christos
316 1.1 christos for (; nirq < ipa->ipa_nirq; nirq++) {
317 1.11 thorpej error = isapnp_alloc_irq(ipa->ipa_ic, &ipa->ipa_irq[nirq]);
318 1.1 christos if (error)
319 1.1 christos goto bad;
320 1.1 christos }
321 1.1 christos
322 1.1 christos for (; ndrq < ipa->ipa_ndrq; ndrq++) {
323 1.18 thorpej error = isapnp_alloc_drq(ipa->ipa_ic, &ipa->ipa_drq[ndrq]);
324 1.1 christos if (error)
325 1.1 christos goto bad;
326 1.1 christos }
327 1.1 christos
328 1.1 christos if (alloc)
329 1.1 christos return error;
330 1.1 christos
331 1.1 christos bad:
332 1.1 christos #ifdef notyet
333 1.1 christos for (ndrq--; ndrq >= 0; ndrq--)
334 1.1 christos isapnp_free_pin(&ipa->ipa_drq[ndrq]);
335 1.1 christos
336 1.1 christos for (nirq--; nirq >= 0; nirq--)
337 1.1 christos isapnp_free_pin(&ipa->ipa_irq[nirq]);
338 1.1 christos #endif
339 1.1 christos
340 1.1 christos for (nmem32--; nmem32 >= 0; nmem32--)
341 1.1 christos isapnp_free_region(memt, &ipa->ipa_mem32[nmem32]);
342 1.1 christos
343 1.1 christos for (nmem--; nmem >= 0; nmem--)
344 1.1 christos isapnp_free_region(memt, &ipa->ipa_mem[nmem]);
345 1.1 christos
346 1.1 christos for (nio--; nio >= 0; nio--)
347 1.1 christos isapnp_free_region(iot, &ipa->ipa_io[nio]);
348 1.1 christos
349 1.1 christos return error;
350 1.1 christos }
351 1.1 christos
352 1.1 christos
353 1.1 christos /* isapnp_config():
354 1.1 christos * Test/Allocate the regions used
355 1.1 christos */
356 1.1 christos int
357 1.56 cube isapnp_config(bus_space_tag_t iot, bus_space_tag_t memt,
358 1.56 cube struct isapnp_attach_args *ipa)
359 1.1 christos {
360 1.1 christos return isapnp_testconfig(iot, memt, ipa, 1);
361 1.1 christos }
362 1.1 christos
363 1.1 christos
364 1.1 christos /* isapnp_unconfig():
365 1.1 christos * Free the regions used
366 1.1 christos */
367 1.1 christos void
368 1.56 cube isapnp_unconfig(bus_space_tag_t iot, bus_space_tag_t memt,
369 1.56 cube struct isapnp_attach_args *ipa)
370 1.1 christos {
371 1.1 christos int i;
372 1.1 christos
373 1.1 christos #ifdef notyet
374 1.1 christos for (i = 0; i < ipa->ipa_ndrq; i++)
375 1.1 christos isapnp_free_pin(&ipa->ipa_drq[i]);
376 1.1 christos
377 1.1 christos for (i = 0; i < ipa->ipa_nirq; i++)
378 1.1 christos isapnp_free_pin(&ipa->ipa_irq[i]);
379 1.1 christos #endif
380 1.1 christos
381 1.1 christos for (i = 0; i < ipa->ipa_nmem32; i++)
382 1.1 christos isapnp_free_region(memt, &ipa->ipa_mem32[i]);
383 1.1 christos
384 1.1 christos for (i = 0; i < ipa->ipa_nmem; i++)
385 1.1 christos isapnp_free_region(memt, &ipa->ipa_mem[i]);
386 1.1 christos
387 1.1 christos for (i = 0; i < ipa->ipa_nio; i++)
388 1.1 christos isapnp_free_region(iot, &ipa->ipa_io[i]);
389 1.1 christos }
390 1.1 christos
391 1.1 christos
392 1.1 christos /* isapnp_bestconfig():
393 1.1 christos * Return the best configuration for each logical device, remove and
394 1.1 christos * free all other configurations.
395 1.1 christos */
396 1.1 christos static struct isapnp_attach_args *
397 1.56 cube isapnp_bestconfig(struct isapnp_softc *sc, struct isapnp_attach_args **ipa)
398 1.1 christos {
399 1.1 christos struct isapnp_attach_args *c, *best, *f = *ipa;
400 1.1 christos int error;
401 1.1 christos
402 1.1 christos for (;;) {
403 1.1 christos if (f == NULL)
404 1.1 christos return NULL;
405 1.1 christos
406 1.1 christos #define SAMEDEV(a, b) (strcmp((a)->ipa_devlogic, (b)->ipa_devlogic) == 0)
407 1.1 christos
408 1.1 christos /* Find the best config */
409 1.2 christos for (best = c = f; c != NULL; c = c->ipa_sibling) {
410 1.1 christos if (!SAMEDEV(c, f))
411 1.1 christos continue;
412 1.1 christos if (c->ipa_pref < best->ipa_pref)
413 1.1 christos best = c;
414 1.1 christos }
415 1.1 christos
416 1.18 thorpej /*
417 1.18 thorpej * Make sure the ISA chipset is initialized! We need
418 1.18 thorpej * it to test the best config!
419 1.18 thorpej */
420 1.18 thorpej best->ipa_ic = sc->sc_ic;
421 1.18 thorpej
422 1.1 christos /* Test the best config */
423 1.1 christos error = isapnp_testconfig(sc->sc_iot, sc->sc_memt, best, 0);
424 1.1 christos
425 1.1 christos /* Remove this config from the list */
426 1.1 christos if (best == f)
427 1.2 christos f = f->ipa_sibling;
428 1.1 christos else {
429 1.2 christos for (c = f; c->ipa_sibling != best; c = c->ipa_sibling)
430 1.1 christos continue;
431 1.2 christos c->ipa_sibling = best->ipa_sibling;
432 1.1 christos }
433 1.1 christos
434 1.1 christos if (error) {
435 1.1 christos best->ipa_pref = ISAPNP_DEP_CONFLICTING;
436 1.1 christos
437 1.2 christos for (c = f; c != NULL; c = c->ipa_sibling)
438 1.1 christos if (c != best && SAMEDEV(c, best))
439 1.1 christos break;
440 1.1 christos /* Last config for this logical device is conflicting */
441 1.1 christos if (c == NULL) {
442 1.1 christos *ipa = f;
443 1.1 christos return best;
444 1.1 christos }
445 1.1 christos
446 1.1 christos ISAPNP_FREE(best);
447 1.1 christos continue;
448 1.1 christos }
449 1.1 christos else {
450 1.1 christos /* Remove all other configs for this device */
451 1.1 christos struct isapnp_attach_args *l = NULL, *n = NULL, *d;
452 1.1 christos
453 1.1 christos for (c = f; c; ) {
454 1.1 christos if (c == best)
455 1.1 christos continue;
456 1.2 christos d = c->ipa_sibling;
457 1.1 christos if (SAMEDEV(c, best))
458 1.1 christos ISAPNP_FREE(c);
459 1.1 christos else {
460 1.1 christos if (n)
461 1.2 christos n->ipa_sibling = c;
462 1.45 perry
463 1.1 christos else
464 1.1 christos l = c;
465 1.1 christos n = c;
466 1.2 christos c->ipa_sibling = NULL;
467 1.1 christos }
468 1.1 christos c = d;
469 1.1 christos }
470 1.1 christos f = l;
471 1.1 christos }
472 1.1 christos *ipa = f;
473 1.1 christos return best;
474 1.1 christos }
475 1.1 christos }
476 1.1 christos
477 1.1 christos
478 1.1 christos /* isapnp_id_to_vendor():
479 1.1 christos * Convert a pnp ``compressed ascii'' vendor id to a string
480 1.1 christos */
481 1.1 christos char *
482 1.56 cube isapnp_id_to_vendor(char *v, const u_char *id)
483 1.1 christos {
484 1.1 christos char *p = v;
485 1.45 perry
486 1.1 christos *p++ = 'A' + (id[0] >> 2) - 1;
487 1.1 christos *p++ = 'A' + ((id[0] & 3) << 3) + (id[1] >> 5) - 1;
488 1.1 christos *p++ = 'A' + (id[1] & 0x1f) - 1;
489 1.46 christos *p++ = HEXDIGITS[id[2] >> 4];
490 1.46 christos *p++ = HEXDIGITS[id[2] & 0x0f];
491 1.46 christos *p++ = HEXDIGITS[id[3] >> 4];
492 1.46 christos *p++ = HEXDIGITS[id[3] & 0x0f];
493 1.1 christos *p = '\0';
494 1.1 christos
495 1.1 christos return v;
496 1.1 christos }
497 1.1 christos
498 1.1 christos
499 1.1 christos /* isapnp_print_region():
500 1.1 christos * Print a region allocation
501 1.1 christos */
502 1.1 christos static void
503 1.56 cube isapnp_print_region(const char *str, struct isapnp_region *r, size_t n)
504 1.1 christos {
505 1.1 christos size_t i;
506 1.1 christos
507 1.1 christos if (n == 0)
508 1.1 christos return;
509 1.1 christos
510 1.41 thorpej aprint_normal(" %s ", str);
511 1.1 christos for (i = 0; i < n; i++, r++) {
512 1.41 thorpej aprint_normal("0x%x", r->base);
513 1.1 christos if (r->length)
514 1.41 thorpej aprint_normal("/%d", r->length);
515 1.1 christos if (i != n - 1)
516 1.41 thorpej aprint_normal(",");
517 1.1 christos }
518 1.1 christos }
519 1.1 christos
520 1.1 christos
521 1.1 christos /* isapnp_print_pin():
522 1.1 christos * Print an irq/drq assignment
523 1.1 christos */
524 1.1 christos static void
525 1.56 cube isapnp_print_pin(const char *str, struct isapnp_pin *p, size_t n)
526 1.1 christos {
527 1.1 christos size_t i;
528 1.1 christos
529 1.1 christos if (n == 0)
530 1.1 christos return;
531 1.1 christos
532 1.1 christos printf(" %s ", str);
533 1.1 christos for (i = 0; i < n; i++, p++) {
534 1.1 christos printf("%d", p->num);
535 1.1 christos if (i != n - 1)
536 1.1 christos printf(",");
537 1.1 christos }
538 1.1 christos }
539 1.1 christos
540 1.1 christos
541 1.1 christos /* isapnp_print():
542 1.1 christos * Print the configuration line for an ISA PnP card.
543 1.1 christos */
544 1.1 christos static int
545 1.56 cube isapnp_print(void *aux, const char *str)
546 1.1 christos {
547 1.1 christos struct isapnp_attach_args *ipa = aux;
548 1.1 christos
549 1.1 christos if (str != NULL)
550 1.41 thorpej aprint_normal("%s: <%s, %s, %s, %s>",
551 1.1 christos str, ipa->ipa_devident, ipa->ipa_devlogic,
552 1.7 mikel ipa->ipa_devcompat, ipa->ipa_devclass);
553 1.1 christos
554 1.1 christos isapnp_print_region("port", ipa->ipa_io, ipa->ipa_nio);
555 1.1 christos isapnp_print_region("mem", ipa->ipa_mem, ipa->ipa_nmem);
556 1.1 christos isapnp_print_region("mem32", ipa->ipa_mem32, ipa->ipa_nmem32);
557 1.1 christos isapnp_print_pin("irq", ipa->ipa_irq, ipa->ipa_nirq);
558 1.1 christos isapnp_print_pin("drq", ipa->ipa_drq, ipa->ipa_ndrq);
559 1.1 christos
560 1.1 christos return UNCONF;
561 1.1 christos }
562 1.1 christos
563 1.1 christos
564 1.7 mikel #ifdef _KERNEL
565 1.1 christos /* isapnp_submatch():
566 1.9 mikel * Probe the logical device...
567 1.1 christos */
568 1.1 christos static int
569 1.56 cube isapnp_submatch(device_t parent, cfdata_t match, const int *ldesc, void *aux)
570 1.1 christos {
571 1.43 drochner
572 1.37 thorpej return (config_match(parent, match, aux));
573 1.1 christos }
574 1.20 christos
575 1.21 christos
576 1.20 christos /* isapnp_devmatch():
577 1.20 christos * Match a probed device with the information from the driver
578 1.20 christos */
579 1.20 christos int
580 1.56 cube isapnp_devmatch(const struct isapnp_attach_args *ipa,
581 1.56 cube const struct isapnp_devinfo *dinfo, int *variant)
582 1.20 christos {
583 1.33 mycroft const struct isapnp_matchinfo *match;
584 1.33 mycroft int n;
585 1.20 christos
586 1.33 mycroft for (match = dinfo->devlogic, n = dinfo->nlogic; n--; match++)
587 1.33 mycroft if (strcmp(match->name, ipa->ipa_devlogic) == 0) {
588 1.33 mycroft *variant = match->variant;
589 1.33 mycroft return (1);
590 1.33 mycroft }
591 1.33 mycroft
592 1.33 mycroft for (match = dinfo->devcompat, n = dinfo->ncompat; n--; match++)
593 1.33 mycroft if (strcmp(match->name, ipa->ipa_devcompat) == 0) {
594 1.33 mycroft *variant = match->variant;
595 1.33 mycroft return (1);
596 1.33 mycroft }
597 1.20 christos
598 1.33 mycroft return (0);
599 1.21 christos }
600 1.21 christos
601 1.21 christos
602 1.21 christos /* isapnp_isa_attach_hook():
603 1.21 christos * This routine is called from the isa attach code and
604 1.21 christos * is a kludge; we are resetting all the cards here in order
605 1.21 christos * to undo any card configuration that the bios did for us, in order
606 1.21 christos * to avoid having the PnP devices match an isa probe. The correct
607 1.21 christos * way of doing this is to read the PnP BIOS and find the card settings
608 1.21 christos * from there. Unfortunately it is not as easy as it sounds.
609 1.21 christos */
610 1.21 christos void
611 1.56 cube isapnp_isa_attach_hook(struct isa_softc *isa_sc)
612 1.21 christos {
613 1.21 christos struct isapnp_softc sc;
614 1.45 perry
615 1.21 christos sc.sc_iot = isa_sc->sc_iot;
616 1.21 christos sc.sc_ncards = 0;
617 1.21 christos
618 1.21 christos if (isapnp_map(&sc))
619 1.21 christos return;
620 1.31 augustss
621 1.31 augustss #if NWSS_ISAPNP > 0
622 1.31 augustss /*
623 1.31 augustss * XXX XXX
624 1.31 augustss * This a totally disgusting hack, but I can't figure out another way.
625 1.31 augustss * It seems that many CS audio chips have a bug (as far as I can
626 1.31 augustss * understand). The reset below does not really reset the chip, it
627 1.31 augustss * remains in a catatonic state and will not respond when probed.
628 1.31 augustss * The chip can be used both as a WSS and as a SB device, and a
629 1.31 augustss * single read at the WSS address (0x534) takes it out of this
630 1.31 augustss * non-responsive state.
631 1.31 augustss * The read has to happen at this point in time (or earlier) so
632 1.31 augustss * it cannot be moved to the wss_isapnp.c driver.
633 1.45 perry * (BTW, We're not alone in having problems with these chips:
634 1.31 augustss * Windoze 98 couldn't detect the sound chip on a Dell when I tried.)
635 1.31 augustss *
636 1.42 keihan * Lennart Augustsson <augustss (at) NetBSD.org>
637 1.31 augustss *
638 1.31 augustss * (Implementation from John Kohl <jtk (at) kolvir.arlington.ma.us>)
639 1.31 augustss */
640 1.31 augustss {
641 1.31 augustss bus_space_handle_t ioh;
642 1.31 augustss int rv;
643 1.31 augustss if ((rv = bus_space_map(sc.sc_iot, 0x534, 1, 0, &ioh)) == 0) {
644 1.31 augustss DPRINTF(("wss probe kludge\n"));
645 1.31 augustss (void)bus_space_read_1(sc.sc_iot, ioh, 0);
646 1.31 augustss bus_space_unmap(sc.sc_iot, ioh, 1);
647 1.31 augustss } else {
648 1.31 augustss DPRINTF(("wss probe kludge failed to map: %d\n", rv));
649 1.31 augustss }
650 1.31 augustss }
651 1.31 augustss #endif
652 1.21 christos
653 1.21 christos isapnp_init(&sc);
654 1.21 christos
655 1.21 christos isapnp_write_reg(&sc, ISAPNP_CONFIG_CONTROL, ISAPNP_CC_RESET_DRV);
656 1.21 christos DELAY(2000);
657 1.21 christos
658 1.21 christos isapnp_unmap(&sc);
659 1.20 christos }
660 1.7 mikel #endif
661 1.1 christos
662 1.1 christos
663 1.1 christos /* isapnp_find():
664 1.1 christos * Probe and add cards
665 1.1 christos */
666 1.1 christos static int
667 1.56 cube isapnp_find(struct isapnp_softc *sc, int all)
668 1.1 christos {
669 1.1 christos int p;
670 1.1 christos
671 1.1 christos isapnp_init(sc);
672 1.1 christos
673 1.1 christos isapnp_write_reg(sc, ISAPNP_CONFIG_CONTROL, ISAPNP_CC_RESET_DRV);
674 1.1 christos DELAY(2000);
675 1.1 christos
676 1.1 christos isapnp_init(sc);
677 1.1 christos DELAY(2000);
678 1.1 christos
679 1.1 christos for (p = ISAPNP_RDDATA_MIN; p <= ISAPNP_RDDATA_MAX; p += 4) {
680 1.1 christos sc->sc_read_port = p;
681 1.1 christos if (isapnp_map_readport(sc))
682 1.1 christos continue;
683 1.56 cube DPRINTF(("%s: Trying port %x\r", device_xname(sc->sc_dev), p));
684 1.1 christos if (isapnp_findcard(sc))
685 1.1 christos break;
686 1.1 christos isapnp_unmap_readport(sc);
687 1.1 christos }
688 1.1 christos
689 1.1 christos if (p > ISAPNP_RDDATA_MAX) {
690 1.1 christos sc->sc_read_port = 0;
691 1.1 christos return 0;
692 1.1 christos }
693 1.1 christos
694 1.9 mikel if (all)
695 1.9 mikel while (isapnp_findcard(sc))
696 1.9 mikel continue;
697 1.1 christos
698 1.1 christos return 1;
699 1.1 christos }
700 1.1 christos
701 1.1 christos
702 1.1 christos /* isapnp_configure():
703 1.1 christos * Configure a PnP card
704 1.1 christos * XXX: The memory configuration code is wrong. We need to check the
705 1.64 rillig * range/length bit and do appropriate sets.
706 1.1 christos */
707 1.1 christos static void
708 1.56 cube isapnp_configure(struct isapnp_softc *sc, const struct isapnp_attach_args *ipa)
709 1.1 christos {
710 1.1 christos int i;
711 1.1 christos static u_char isapnp_mem_range[] = ISAPNP_MEM_DESC;
712 1.1 christos static u_char isapnp_io_range[] = ISAPNP_IO_DESC;
713 1.1 christos static u_char isapnp_irq_range[] = ISAPNP_IRQ_DESC;
714 1.1 christos static u_char isapnp_drq_range[] = ISAPNP_DRQ_DESC;
715 1.1 christos static u_char isapnp_mem32_range[] = ISAPNP_MEM32_DESC;
716 1.1 christos const struct isapnp_region *r;
717 1.1 christos const struct isapnp_pin *p;
718 1.1 christos struct isapnp_region rz;
719 1.1 christos struct isapnp_pin pz;
720 1.1 christos
721 1.1 christos memset(&pz, 0, sizeof(pz));
722 1.1 christos memset(&rz, 0, sizeof(rz));
723 1.1 christos
724 1.1 christos #define B0(a) ((a) & 0xff)
725 1.1 christos #define B1(a) (((a) >> 8) & 0xff)
726 1.1 christos #define B2(a) (((a) >> 16) & 0xff)
727 1.1 christos #define B3(a) (((a) >> 24) & 0xff)
728 1.1 christos
729 1.1 christos for (i = 0; i < sizeof(isapnp_io_range); i++) {
730 1.1 christos if (i < ipa->ipa_nio)
731 1.1 christos r = &ipa->ipa_io[i];
732 1.1 christos else
733 1.1 christos r = &rz;
734 1.1 christos
735 1.1 christos isapnp_write_reg(sc,
736 1.1 christos isapnp_io_range[i] + ISAPNP_IO_BASE_15_8, B1(r->base));
737 1.1 christos isapnp_write_reg(sc,
738 1.1 christos isapnp_io_range[i] + ISAPNP_IO_BASE_7_0, B0(r->base));
739 1.1 christos }
740 1.1 christos
741 1.1 christos for (i = 0; i < sizeof(isapnp_mem_range); i++) {
742 1.1 christos if (i < ipa->ipa_nmem)
743 1.1 christos r = &ipa->ipa_mem[i];
744 1.45 perry else
745 1.1 christos r = &rz;
746 1.1 christos
747 1.1 christos isapnp_write_reg(sc,
748 1.1 christos isapnp_mem_range[i] + ISAPNP_MEM_BASE_23_16, B2(r->base));
749 1.1 christos isapnp_write_reg(sc,
750 1.1 christos isapnp_mem_range[i] + ISAPNP_MEM_BASE_15_8, B1(r->base));
751 1.1 christos
752 1.1 christos isapnp_write_reg(sc,
753 1.1 christos isapnp_mem_range[i] + ISAPNP_MEM_LRANGE_23_16,
754 1.1 christos B2(r->length));
755 1.1 christos isapnp_write_reg(sc,
756 1.1 christos isapnp_mem_range[i] + ISAPNP_MEM_LRANGE_15_8,
757 1.1 christos B1(r->length));
758 1.1 christos }
759 1.1 christos
760 1.1 christos for (i = 0; i < sizeof(isapnp_irq_range); i++) {
761 1.1 christos u_char v;
762 1.1 christos
763 1.1 christos if (i < ipa->ipa_nirq)
764 1.1 christos p = &ipa->ipa_irq[i];
765 1.1 christos else
766 1.1 christos p = &pz;
767 1.1 christos
768 1.1 christos isapnp_write_reg(sc,
769 1.1 christos isapnp_irq_range[i] + ISAPNP_IRQ_NUMBER, p->num);
770 1.1 christos
771 1.1 christos switch (p->flags) {
772 1.1 christos case ISAPNP_IRQTYPE_LEVEL_PLUS:
773 1.1 christos v = ISAPNP_IRQ_LEVEL|ISAPNP_IRQ_HIGH;
774 1.1 christos break;
775 1.1 christos
776 1.1 christos case ISAPNP_IRQTYPE_EDGE_PLUS:
777 1.1 christos v = ISAPNP_IRQ_HIGH;
778 1.1 christos break;
779 1.1 christos
780 1.1 christos case ISAPNP_IRQTYPE_LEVEL_MINUS:
781 1.1 christos v = ISAPNP_IRQ_LEVEL;
782 1.1 christos break;
783 1.1 christos
784 1.1 christos default:
785 1.1 christos case ISAPNP_IRQTYPE_EDGE_MINUS:
786 1.1 christos v = 0;
787 1.1 christos break;
788 1.1 christos }
789 1.1 christos isapnp_write_reg(sc,
790 1.1 christos isapnp_irq_range[i] + ISAPNP_IRQ_CONTROL, v);
791 1.1 christos }
792 1.1 christos
793 1.1 christos for (i = 0; i < sizeof(isapnp_drq_range); i++) {
794 1.1 christos u_char v;
795 1.1 christos
796 1.1 christos if (i < ipa->ipa_ndrq)
797 1.1 christos v = ipa->ipa_drq[i].num;
798 1.1 christos else
799 1.1 christos v = 4;
800 1.1 christos
801 1.1 christos isapnp_write_reg(sc, isapnp_drq_range[i], v);
802 1.1 christos }
803 1.1 christos
804 1.1 christos for (i = 0; i < sizeof(isapnp_mem32_range); i++) {
805 1.1 christos if (i < ipa->ipa_nmem32)
806 1.1 christos r = &ipa->ipa_mem32[i];
807 1.45 perry else
808 1.1 christos r = &rz;
809 1.1 christos
810 1.1 christos isapnp_write_reg(sc,
811 1.1 christos isapnp_mem32_range[i] + ISAPNP_MEM32_BASE_31_24,
812 1.1 christos B3(r->base));
813 1.1 christos isapnp_write_reg(sc,
814 1.1 christos isapnp_mem32_range[i] + ISAPNP_MEM32_BASE_23_16,
815 1.1 christos B2(r->base));
816 1.1 christos isapnp_write_reg(sc,
817 1.1 christos isapnp_mem32_range[i] + ISAPNP_MEM32_BASE_15_8,
818 1.1 christos B1(r->base));
819 1.1 christos isapnp_write_reg(sc,
820 1.1 christos isapnp_mem32_range[i] + ISAPNP_MEM32_BASE_7_0,
821 1.1 christos B0(r->base));
822 1.1 christos
823 1.1 christos isapnp_write_reg(sc,
824 1.1 christos isapnp_mem32_range[i] + ISAPNP_MEM32_LRANGE_31_24,
825 1.1 christos B3(r->length));
826 1.1 christos isapnp_write_reg(sc,
827 1.1 christos isapnp_mem32_range[i] + ISAPNP_MEM32_LRANGE_23_16,
828 1.1 christos B2(r->length));
829 1.1 christos isapnp_write_reg(sc,
830 1.1 christos isapnp_mem32_range[i] + ISAPNP_MEM32_LRANGE_15_8,
831 1.1 christos B1(r->length));
832 1.1 christos isapnp_write_reg(sc,
833 1.1 christos isapnp_mem32_range[i] + ISAPNP_MEM32_LRANGE_7_0,
834 1.1 christos B0(r->length));
835 1.1 christos }
836 1.1 christos }
837 1.1 christos
838 1.1 christos
839 1.1 christos /* isapnp_match():
840 1.1 christos * Probe routine
841 1.1 christos */
842 1.1 christos static int
843 1.56 cube isapnp_match(device_t parent, cfdata_t match, void *aux)
844 1.1 christos {
845 1.1 christos struct isapnp_softc sc;
846 1.1 christos struct isa_attach_args *ia = aux;
847 1.23 thorpej struct isapnp_probe_cookie *ipc;
848 1.23 thorpej
849 1.23 thorpej /*
850 1.57 ad * If the system has no ISA expansion slots, skip the probe
851 1.57 ad * because it's very slow.
852 1.57 ad */
853 1.57 ad if (isa_get_slotcount() == 0)
854 1.57 ad return (0);
855 1.57 ad
856 1.57 ad /*
857 1.23 thorpej * Ensure we only probe ISA PnP once; we don't actually consume
858 1.23 thorpej * bus resources, so we have to prevent being cloned forever.
859 1.23 thorpej */
860 1.23 thorpej for (ipc = LIST_FIRST(&isapnp_probes); ipc != NULL;
861 1.23 thorpej ipc = LIST_NEXT(ipc, ipc_link))
862 1.23 thorpej if (ipc->ipc_parent == parent)
863 1.23 thorpej return (0);
864 1.23 thorpej
865 1.63 thorpej ipc = kmem_alloc(sizeof(*ipc), KM_SLEEP);
866 1.23 thorpej ipc->ipc_parent = parent;
867 1.23 thorpej LIST_INSERT_HEAD(&isapnp_probes, ipc, ipc_link);
868 1.1 christos
869 1.1 christos sc.sc_iot = ia->ia_iot;
870 1.1 christos
871 1.1 christos if (isapnp_map(&sc))
872 1.1 christos return 0;
873 1.1 christos
874 1.22 thorpej isapnp_unmap(&sc);
875 1.22 thorpej
876 1.22 thorpej /*
877 1.22 thorpej * We always match. We must let all legacy ISA devices map
878 1.22 thorpej * their address spaces before we look for a read port.
879 1.22 thorpej */
880 1.36 thorpej ia->ia_io[0].ir_addr = ISAPNP_ADDR;
881 1.36 thorpej ia->ia_io[0].ir_size = 1;
882 1.36 thorpej
883 1.36 thorpej ia->ia_niomem = 0;
884 1.36 thorpej ia->ia_nirq = 0;
885 1.36 thorpej ia->ia_ndrq = 0;
886 1.1 christos
887 1.22 thorpej return (1);
888 1.1 christos }
889 1.1 christos
890 1.1 christos
891 1.1 christos /* isapnp_attach
892 1.22 thorpej * Attach the PnP `bus'.
893 1.1 christos */
894 1.1 christos static void
895 1.56 cube isapnp_attach(device_t parent, device_t self, void *aux)
896 1.1 christos {
897 1.50 thorpej struct isapnp_softc *sc = device_private(self);
898 1.1 christos struct isa_attach_args *ia = aux;
899 1.1 christos
900 1.56 cube sc->sc_dev = self;
901 1.1 christos sc->sc_iot = ia->ia_iot;
902 1.1 christos sc->sc_memt = ia->ia_memt;
903 1.18 thorpej sc->sc_ic = ia->ia_ic;
904 1.22 thorpej sc->sc_dmat = ia->ia_dmat;
905 1.1 christos sc->sc_ncards = 0;
906 1.1 christos
907 1.59 jmcneill aprint_naive("\n");
908 1.59 jmcneill aprint_normal("\n");
909 1.1 christos
910 1.22 thorpej if (isapnp_map(sc)) {
911 1.56 cube aprint_error_dev(self, "unable to map PnP register\n");
912 1.22 thorpej return;
913 1.22 thorpej }
914 1.1 christos
915 1.22 thorpej #ifdef _KERNEL
916 1.22 thorpej /*
917 1.22 thorpej * Defer configuration until the rest of the ISA devices have
918 1.22 thorpej * attached themselves.
919 1.22 thorpej */
920 1.22 thorpej config_defer(self, isapnp_callback);
921 1.22 thorpej #else
922 1.22 thorpej isapnp_callback(self);
923 1.22 thorpej #endif
924 1.55 jmcneill
925 1.55 jmcneill if (!pmf_device_register(self, NULL, NULL))
926 1.55 jmcneill aprint_error_dev(self, "couldn't establish power handler\n");
927 1.22 thorpej }
928 1.1 christos
929 1.22 thorpej /* isapnp_callback
930 1.22 thorpej * Find and attach PnP cards.
931 1.22 thorpej */
932 1.22 thorpej void
933 1.56 cube isapnp_callback(device_t self)
934 1.22 thorpej {
935 1.50 thorpej struct isapnp_softc *sc = device_private(self);
936 1.22 thorpej struct isapnp_attach_args *ipa, *lpa;
937 1.25 thorpej int c, d;
938 1.22 thorpej
939 1.22 thorpej /*
940 1.22 thorpej * Look for cards. If none are found, we say so and just return.
941 1.22 thorpej */
942 1.24 thorpej if (isapnp_find(sc, 1) == 0) {
943 1.56 cube aprint_verbose_dev(sc->sc_dev,
944 1.56 cube "no ISA Plug 'n Play devices found\n");
945 1.24 thorpej return;
946 1.24 thorpej }
947 1.22 thorpej
948 1.56 cube aprint_verbose_dev(sc->sc_dev, "read port 0x%x\n", sc->sc_read_port);
949 1.22 thorpej
950 1.22 thorpej /*
951 1.22 thorpej * Now configure all of the cards.
952 1.22 thorpej */
953 1.1 christos for (c = 0; c < sc->sc_ncards; c++) {
954 1.1 christos /* Good morning card c */
955 1.1 christos isapnp_write_reg(sc, ISAPNP_WAKE, c + 1);
956 1.1 christos
957 1.1 christos if ((ipa = isapnp_get_resource(sc, c)) == NULL)
958 1.1 christos continue;
959 1.1 christos
960 1.1 christos DPRINTF(("Selecting attachments\n"));
961 1.10 thorpej for (d = 0;
962 1.18 thorpej (lpa = isapnp_bestconfig(sc, &ipa)) != NULL; d++) {
963 1.1 christos isapnp_write_reg(sc, ISAPNP_LOGICAL_DEV_NUM, d);
964 1.1 christos isapnp_configure(sc, lpa);
965 1.1 christos #ifdef DEBUG_ISAPNP
966 1.1 christos {
967 1.1 christos struct isapnp_attach_args pa;
968 1.7 mikel
969 1.1 christos isapnp_get_config(sc, &pa);
970 1.1 christos isapnp_print_config(&pa);
971 1.1 christos }
972 1.1 christos #endif
973 1.1 christos
974 1.12 christos DPRINTF(("%s: configuring <%s, %s, %s, %s>\n",
975 1.56 cube device_xname(sc->sc_dev),
976 1.1 christos lpa->ipa_devident, lpa->ipa_devlogic,
977 1.12 christos lpa->ipa_devcompat, lpa->ipa_devclass));
978 1.1 christos if (lpa->ipa_pref == ISAPNP_DEP_CONFLICTING) {
979 1.56 cube aprint_verbose_dev(sc->sc_dev,
980 1.56 cube "<%s, %s, %s, %s> ignored; %s\n",
981 1.1 christos lpa->ipa_devident, lpa->ipa_devlogic,
982 1.7 mikel lpa->ipa_devcompat, lpa->ipa_devclass,
983 1.7 mikel "resource conflict");
984 1.1 christos ISAPNP_FREE(lpa);
985 1.1 christos continue;
986 1.1 christos }
987 1.1 christos
988 1.22 thorpej lpa->ipa_ic = sc->sc_ic;
989 1.22 thorpej lpa->ipa_iot = sc->sc_iot;
990 1.22 thorpej lpa->ipa_memt = sc->sc_memt;
991 1.22 thorpej lpa->ipa_dmat = sc->sc_dmat;
992 1.1 christos
993 1.1 christos isapnp_write_reg(sc, ISAPNP_ACTIVATE, 1);
994 1.1 christos #ifdef _KERNEL
995 1.61 thorpej if (config_found(self, lpa, isapnp_print,
996 1.62 thorpej CFARGS(.submatch =
997 1.62 thorpej isapnp_submatch)) == NULL)
998 1.1 christos isapnp_write_reg(sc, ISAPNP_ACTIVATE, 0);
999 1.1 christos #else
1000 1.1 christos isapnp_print(lpa, NULL);
1001 1.54 ad aprint_verbose("\n");
1002 1.1 christos #endif
1003 1.1 christos ISAPNP_FREE(lpa);
1004 1.1 christos }
1005 1.1 christos isapnp_write_reg(sc, ISAPNP_WAKE, 0); /* Good night cards */
1006 1.1 christos }
1007 1.1 christos }
1008