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