1 /* 2 * Copyright (c) 1996, Sujal M. Patel 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 * from: pnp.c,v 1.11 1999/05/06 22:11:19 peter Exp 28 */ 29 30 #include <sys/param.h> 31 #include <sys/systm.h> 32 #include <sys/kernel.h> 33 #include <sys/module.h> 34 #include <sys/bus.h> 35 #include <sys/malloc.h> 36 #include <isa/isavar.h> 37 #include <isa/pnpreg.h> 38 #include <isa/pnpvar.h> 39 #include <machine/clock.h> 40 41 typedef struct _pnp_id { 42 u_int32_t vendor_id; 43 u_int32_t serial; 44 u_char checksum; 45 } pnp_id; 46 47 struct pnp_set_config_arg { 48 int csn; /* Card number to configure */ 49 int ldn; /* Logical device on card */ 50 }; 51 52 struct pnp_quirk { 53 u_int32_t vendor_id; /* Vendor of the card */ 54 u_int32_t logical_id; /* ID of the device with quirk */ 55 int type; 56 #define PNP_QUIRK_WRITE_REG 1 /* Need to write a pnp register */ 57 #define PNP_QUIRK_EXTRA_IO 2 /* Has extra io ports */ 58 int arg1; 59 int arg2; 60 }; 61 62 struct pnp_quirk pnp_quirks[] = { 63 /* 64 * The Gravis UltraSound needs register 0xf2 to be set to 0xff 65 * to enable power. 66 * XXX need to know the logical device id. 67 */ 68 { 0x0100561e /* GRV0001 */, 0, 69 PNP_QUIRK_WRITE_REG, 0xf2, 0xff }, 70 /* 71 * An emu8000 does not give us other than the first 72 * port. 73 */ 74 { 0x26008c0e /* SB16 */, 0x21008c0e, 75 PNP_QUIRK_EXTRA_IO, 0x400, 0x800 }, 76 { 0x42008c0e /* SB32(CTL0042) */, 0x21008c0e, 77 PNP_QUIRK_EXTRA_IO, 0x400, 0x800 }, 78 { 0x44008c0e /* SB32(CTL0044) */, 0x21008c0e, 79 PNP_QUIRK_EXTRA_IO, 0x400, 0x800 }, 80 { 0x49008c0e /* SB32(CTL0049) */, 0x21008c0e, 81 PNP_QUIRK_EXTRA_IO, 0x400, 0x800 }, 82 { 0xf1008c0e /* SB32(CTL00f1) */, 0x21008c0e, 83 PNP_QUIRK_EXTRA_IO, 0x400, 0x800 }, 84 { 0xc1008c0e /* SB64(CTL00c1) */, 0x22008c0e, 85 PNP_QUIRK_EXTRA_IO, 0x400, 0x800 }, 86 { 0xe4008c0e /* SB64(CTL00e4) */, 0x22008c0e, 87 PNP_QUIRK_EXTRA_IO, 0x400, 0x800 }, 88 89 { 0 } 90 }; 91 92 #if 0 93 /* 94 * these entries are initialized using the autoconfig menu 95 * The struct is invalid (and must be initialized) if the first 96 * CSN is zero. The init code fills invalid entries with CSN 255 97 * which is not a supported value. 98 */ 99 100 struct pnp_cinfo pnp_ldn_overrides[MAX_PNP_LDN] = { 101 { 0 } 102 }; 103 #endif 104 105 /* The READ_DATA port that we are using currently */ 106 static int pnp_rd_port; 107 108 static void pnp_send_initiation_key(void); 109 static int pnp_get_serial(pnp_id *p); 110 static int pnp_isolation_protocol(device_t parent); 111 112 char * 113 pnp_eisaformat(u_int32_t id) 114 { 115 u_int8_t *data = (u_int8_t *) &id; 116 static char idbuf[8]; 117 const char hextoascii[] = "0123456789abcdef"; 118 119 idbuf[0] = '@' + ((data[0] & 0x7c) >> 2); 120 idbuf[1] = '@' + (((data[0] & 0x3) << 3) + ((data[1] & 0xe0) >> 5)); 121 idbuf[2] = '@' + (data[1] & 0x1f); 122 idbuf[3] = hextoascii[(data[2] >> 4)]; 123 idbuf[4] = hextoascii[(data[2] & 0xf)]; 124 idbuf[5] = hextoascii[(data[3] >> 4)]; 125 idbuf[6] = hextoascii[(data[3] & 0xf)]; 126 idbuf[7] = 0; 127 return(idbuf); 128 } 129 130 static void 131 pnp_write(int d, u_char r) 132 { 133 outb (_PNP_ADDRESS, d); 134 outb (_PNP_WRITE_DATA, r); 135 } 136 137 #if 0 138 139 static u_char 140 pnp_read(int d) 141 { 142 outb (_PNP_ADDRESS, d); 143 return (inb(3 | (pnp_rd_port <<2))); 144 } 145 146 #endif 147 148 /* 149 * Send Initiation LFSR as described in "Plug and Play ISA Specification", 150 * Intel May 94. 151 */ 152 static void 153 pnp_send_initiation_key() 154 { 155 int cur, i; 156 157 /* Reset the LSFR */ 158 outb(_PNP_ADDRESS, 0); 159 outb(_PNP_ADDRESS, 0); /* yes, we do need it twice! */ 160 161 cur = 0x6a; 162 outb(_PNP_ADDRESS, cur); 163 164 for (i = 1; i < 32; i++) { 165 cur = (cur >> 1) | (((cur ^ (cur >> 1)) << 7) & 0xff); 166 outb(_PNP_ADDRESS, cur); 167 } 168 } 169 170 171 /* 172 * Get the device's serial number. Returns 1 if the serial is valid. 173 */ 174 static int 175 pnp_get_serial(pnp_id *p) 176 { 177 int i, bit, valid = 0, sum = 0x6a; 178 u_char *data = (u_char *)p; 179 180 bzero(data, sizeof(char) * 9); 181 outb(_PNP_ADDRESS, PNP_SERIAL_ISOLATION); 182 for (i = 0; i < 72; i++) { 183 bit = inb((pnp_rd_port << 2) | 0x3) == 0x55; 184 DELAY(250); /* Delay 250 usec */ 185 186 /* Can't Short Circuit the next evaluation, so 'and' is last */ 187 bit = (inb((pnp_rd_port << 2) | 0x3) == 0xaa) && bit; 188 DELAY(250); /* Delay 250 usec */ 189 190 valid = valid || bit; 191 192 if (i < 64) 193 sum = (sum >> 1) | 194 (((sum ^ (sum >> 1) ^ bit) << 7) & 0xff); 195 196 data[i / 8] = (data[i / 8] >> 1) | (bit ? 0x80 : 0); 197 } 198 199 valid = valid && (data[8] == sum); 200 201 return valid; 202 } 203 204 /* 205 * Fill's the buffer with resource info from the device. 206 * Returns the number of characters read. 207 */ 208 static int 209 pnp_get_resource_info(u_char *buffer, int len) 210 { 211 int i, j, count; 212 u_char temp; 213 214 count = 0; 215 for (i = 0; i < len; i++) { 216 outb(_PNP_ADDRESS, PNP_STATUS); 217 for (j = 0; j < 100; j++) { 218 if ((inb((pnp_rd_port << 2) | 0x3)) & 0x1) 219 break; 220 DELAY(1); 221 } 222 if (j == 100) { 223 printf("PnP device failed to report resource data\n"); 224 return count; 225 } 226 outb(_PNP_ADDRESS, PNP_RESOURCE_DATA); 227 temp = inb((pnp_rd_port << 2) | 0x3); 228 if (buffer != NULL) 229 buffer[i] = temp; 230 count++; 231 } 232 return count; 233 } 234 235 #if 0 236 /* 237 * write_pnp_parms initializes a logical device with the parms 238 * in d, and then activates the board if the last parameter is 1. 239 */ 240 241 static int 242 write_pnp_parms(struct pnp_cinfo *d, pnp_id *p, int ldn) 243 { 244 int i, empty = -1 ; 245 246 pnp_write (SET_LDN, ldn ); 247 i = pnp_read(SET_LDN) ; 248 if (i != ldn) { 249 printf("Warning: LDN %d does not exist\n", ldn); 250 } 251 for (i = 0; i < 8; i++) { 252 pnp_write(IO_CONFIG_BASE + i * 2, d->ic_port[i] >> 8 ); 253 pnp_write(IO_CONFIG_BASE + i * 2 + 1, d->ic_port[i] & 0xff ); 254 } 255 for (i = 0; i < 4; i++) { 256 pnp_write(MEM_CONFIG + i*8, (d->ic_mem[i].base >> 16) & 0xff ); 257 pnp_write(MEM_CONFIG + i*8+1, (d->ic_mem[i].base >> 8) & 0xff ); 258 pnp_write(MEM_CONFIG + i*8+2, d->ic_mem[i].control & 0xff ); 259 pnp_write(MEM_CONFIG + i*8+3, (d->ic_mem[i].range >> 16) & 0xff ); 260 pnp_write(MEM_CONFIG + i*8+4, (d->ic_mem[i].range >> 8) & 0xff ); 261 } 262 for (i = 0; i < 2; i++) { 263 pnp_write(IRQ_CONFIG + i*2 , d->irq[i] ); 264 pnp_write(IRQ_CONFIG + i*2 + 1, d->irq_type[i] ); 265 pnp_write(DRQ_CONFIG + i, d->drq[i] ); 266 } 267 /* 268 * store parameters read into the current kernel 269 * so manual editing next time is easier 270 */ 271 for (i = 0 ; i < MAX_PNP_LDN; i++) { 272 if (pnp_ldn_overrides[i].csn == d->csn && 273 pnp_ldn_overrides[i].ldn == ldn) { 274 d->flags = pnp_ldn_overrides[i].flags ; 275 pnp_ldn_overrides[i] = *d ; 276 break ; 277 } else if (pnp_ldn_overrides[i].csn < 1 || 278 pnp_ldn_overrides[i].csn == 255) 279 empty = i ; 280 } 281 if (i== MAX_PNP_LDN && empty != -1) 282 pnp_ldn_overrides[empty] = *d; 283 284 /* 285 * Here should really perform the range check, and 286 * return a failure if not successful. 287 */ 288 pnp_write (IO_RANGE_CHECK, 0); 289 DELAY(1000); /* XXX is it really necessary ? */ 290 pnp_write (ACTIVATE, d->enable ? 1 : 0); 291 DELAY(1000); /* XXX is it really necessary ? */ 292 return 1 ; 293 } 294 #endif 295 296 /* 297 * This function is called after the bus has assigned resource 298 * locations for a logical device. 299 */ 300 static void 301 pnp_set_config(void *arg, struct isa_config *config, int enable) 302 { 303 int csn = ((struct pnp_set_config_arg *) arg)->csn; 304 int ldn = ((struct pnp_set_config_arg *) arg)->ldn; 305 int i; 306 307 /* 308 * First put all cards into Sleep state with the initiation 309 * key, then put our card into Config state. 310 */ 311 pnp_send_initiation_key(); 312 pnp_write(PNP_WAKE, csn); 313 314 /* 315 * Select our logical device so that we can program it. 316 */ 317 pnp_write(PNP_SET_LDN, ldn); 318 319 /* 320 * Now program the resources. 321 */ 322 for (i = 0; i < config->ic_nmem; i++) { 323 u_int32_t start = config->ic_mem[i].ir_start; 324 u_int32_t size = config->ic_mem[i].ir_size; 325 if (start & 0xff) 326 panic("pnp_set_config: bogus memory assignment"); 327 pnp_write(PNP_MEM_BASE_HIGH(i), (start >> 16) & 0xff); 328 pnp_write(PNP_MEM_BASE_LOW(i), (start >> 8) & 0xff); 329 pnp_write(PNP_MEM_RANGE_HIGH(i), (size >> 16) & 0xff); 330 pnp_write(PNP_MEM_RANGE_LOW(i), (size >> 8) & 0xff); 331 } 332 for (; i < ISA_NMEM; i++) { 333 pnp_write(PNP_MEM_BASE_HIGH(i), 0); 334 pnp_write(PNP_MEM_BASE_LOW(i), 0); 335 pnp_write(PNP_MEM_RANGE_HIGH(i), 0); 336 pnp_write(PNP_MEM_RANGE_LOW(i), 0); 337 } 338 339 for (i = 0; i < config->ic_nport; i++) { 340 u_int32_t start = config->ic_port[i].ir_start; 341 pnp_write(PNP_IO_BASE_HIGH(i), (start >> 8) & 0xff); 342 pnp_write(PNP_IO_BASE_LOW(i), (start >> 0) & 0xff); 343 } 344 for (; i < ISA_NPORT; i++) { 345 pnp_write(PNP_IO_BASE_HIGH(i), 0); 346 pnp_write(PNP_IO_BASE_LOW(i), 0); 347 } 348 349 for (i = 0; i < config->ic_nirq; i++) { 350 int irq = ffs(config->ic_irqmask[i]) - 1; 351 pnp_write(PNP_IRQ_LEVEL(i), irq); 352 pnp_write(PNP_IRQ_TYPE(i), 2); /* XXX */ 353 } 354 for (; i < ISA_NIRQ; i++) { 355 /* 356 * IRQ 0 is not a valid interrupt selection and 357 * represents no interrupt selection. 358 */ 359 pnp_write(PNP_IRQ_LEVEL(i), 0); 360 } 361 362 for (i = 0; i < config->ic_ndrq; i++) { 363 int drq = ffs(config->ic_drqmask[i]) - 1; 364 pnp_write(PNP_DMA_CHANNEL(i), drq); 365 } 366 for (; i < ISA_NDRQ; i++) { 367 /* 368 * DMA channel 4, the cascade channel is used to 369 * indicate no DMA channel is active. 370 */ 371 pnp_write(PNP_DMA_CHANNEL(i), 4); 372 } 373 374 pnp_write(PNP_ACTIVATE, enable ? 1 : 0); 375 376 /* 377 * Wake everyone up again, we are finished. 378 */ 379 pnp_write(PNP_CONFIG_CONTROL, PNP_CONFIG_CONTROL_WAIT_FOR_KEY); 380 } 381 382 /* 383 * Process quirks for a logical device.. The card must be in Config state. 384 */ 385 void 386 pnp_check_quirks(u_int32_t vendor_id, u_int32_t logical_id, int ldn, struct isa_config *config) 387 { 388 struct pnp_quirk *qp; 389 390 for (qp = &pnp_quirks[0]; qp->vendor_id; qp++) { 391 if (qp->vendor_id == vendor_id 392 && (qp->logical_id == 0 393 || qp->logical_id == logical_id)) { 394 switch (qp->type) { 395 case PNP_QUIRK_WRITE_REG: 396 pnp_write(PNP_SET_LDN, ldn); 397 pnp_write(qp->arg1, qp->arg2); 398 break; 399 case PNP_QUIRK_EXTRA_IO: 400 if (config == NULL) 401 break; 402 if (qp->arg1 != 0) { 403 config->ic_nport++; 404 config->ic_port[config->ic_nport - 1] = config->ic_port[0]; 405 config->ic_port[config->ic_nport - 1].ir_start += qp->arg1; 406 config->ic_port[config->ic_nport - 1].ir_end += qp->arg1; 407 } 408 if (qp->arg2 != 0) { 409 config->ic_nport++; 410 config->ic_port[config->ic_nport - 1] = config->ic_port[0]; 411 config->ic_port[config->ic_nport - 1].ir_start += qp->arg2; 412 config->ic_port[config->ic_nport - 1].ir_end += qp->arg2; 413 } 414 break; 415 } 416 } 417 } 418 } 419 420 /* 421 * Scan Resource Data for Logical Devices. 422 * 423 * This function exits as soon as it gets an error reading *ANY* 424 * Resource Data or it reaches the end of Resource Data. In the first 425 * case the return value will be TRUE, FALSE otherwise. 426 */ 427 static int 428 pnp_create_devices(device_t parent, pnp_id *p, int csn, 429 u_char *resources, int len) 430 { 431 u_char tag, *resp, *resinfo, *startres = 0; 432 int large_len, scanning = len, retval = FALSE; 433 u_int32_t logical_id; 434 u_int32_t compat_id; 435 device_t dev = 0; 436 int ldn = 0; 437 struct pnp_set_config_arg *csnldn; 438 char buf[100]; 439 char *desc = 0; 440 441 resp = resources; 442 while (scanning > 0) { 443 tag = *resp++; 444 scanning--; 445 if (PNP_RES_TYPE(tag) != 0) { 446 /* Large resource */ 447 if (scanning < 2) { 448 scanning = 0; 449 continue; 450 } 451 large_len = resp[0] + (resp[1] << 8); 452 resp += 2; 453 454 if (scanning < large_len) { 455 scanning = 0; 456 continue; 457 } 458 resinfo = resp; 459 resp += large_len; 460 scanning -= large_len; 461 462 if (PNP_LRES_NUM(tag) == PNP_TAG_ID_ANSI) { 463 if (large_len > sizeof(buf) - 1) 464 large_len = sizeof(buf) - 1; 465 bcopy(resinfo, buf, large_len); 466 467 /* 468 * Trim trailing spaces. 469 */ 470 while (buf[large_len-1] == ' ') 471 large_len--; 472 buf[large_len] = '\0'; 473 desc = buf; 474 if (dev) 475 device_set_desc_copy(dev, desc); 476 continue; 477 } 478 479 continue; 480 } 481 482 /* Small resource */ 483 if (scanning < PNP_SRES_LEN(tag)) { 484 scanning = 0; 485 continue; 486 } 487 resinfo = resp; 488 resp += PNP_SRES_LEN(tag); 489 scanning -= PNP_SRES_LEN(tag);; 490 491 switch (PNP_SRES_NUM(tag)) { 492 case PNP_TAG_LOGICAL_DEVICE: 493 /* 494 * Parse the resources for the previous 495 * logical device (if any). 496 */ 497 if (startres) { 498 pnp_parse_resources(dev, startres, 499 resinfo - startres - 1, 500 p->vendor_id, logical_id, ldn); 501 dev = 0; 502 startres = 0; 503 } 504 505 /* 506 * A new logical device. Scan for end of 507 * resources. 508 */ 509 bcopy(resinfo, &logical_id, 4); 510 pnp_check_quirks(p->vendor_id, logical_id, ldn, NULL); 511 compat_id = 0; 512 dev = BUS_ADD_CHILD(parent, ISA_ORDER_PNP, NULL, -1); 513 if (desc) 514 device_set_desc_copy(dev, desc); 515 isa_set_vendorid(dev, p->vendor_id); 516 isa_set_serial(dev, p->serial); 517 isa_set_logicalid(dev, logical_id); 518 csnldn = malloc(sizeof *csnldn, M_DEVBUF, M_NOWAIT); 519 if (!csnldn) { 520 device_printf(parent, 521 "out of memory\n"); 522 scanning = 0; 523 break; 524 } 525 csnldn->csn = csn; 526 csnldn->ldn = ldn; 527 ISA_SET_CONFIG_CALLBACK(parent, dev, 528 pnp_set_config, csnldn); 529 ldn++; 530 startres = resp; 531 break; 532 533 case PNP_TAG_END: 534 if (!startres) { 535 device_printf(parent, 536 "malformed resources\n"); 537 scanning = 0; 538 break; 539 } 540 pnp_parse_resources(dev, startres, 541 resinfo - startres - 1, 542 p->vendor_id, logical_id, ldn); 543 dev = 0; 544 startres = 0; 545 scanning = 0; 546 break; 547 548 default: 549 /* Skip this resource */ 550 break; 551 } 552 } 553 554 return retval; 555 } 556 557 /* 558 * Read 'amount' bytes of resources from the card, allocating memory 559 * as needed. If a buffer is already available, it should be passed in 560 * '*resourcesp' and its length in '*spacep'. The number of resource 561 * bytes already in the buffer should be passed in '*lenp'. The memory 562 * allocated will be returned in '*resourcesp' with its size and the 563 * number of bytes of resources in '*spacep' and '*lenp' respectively. 564 */ 565 static int 566 pnp_read_bytes(int amount, u_char **resourcesp, int *spacep, int *lenp) 567 { 568 u_char *resources = *resourcesp; 569 u_char *newres; 570 int space = *spacep; 571 int len = *lenp; 572 573 if (space == 0) { 574 space = 1024; 575 resources = malloc(space, M_TEMP, M_NOWAIT); 576 if (!resources) 577 return ENOMEM; 578 } 579 580 if (len + amount > space) { 581 int extra = 1024; 582 while (len + amount > space + extra) 583 extra += 1024; 584 newres = malloc(space + extra, M_TEMP, M_NOWAIT); 585 if (!newres) 586 return ENOMEM; 587 bcopy(resources, newres, len); 588 free(resources, M_TEMP); 589 resources = newres; 590 space += extra; 591 } 592 593 if (pnp_get_resource_info(resources + len, amount) != amount) 594 return EINVAL; 595 len += amount; 596 597 *resourcesp = resources; 598 *spacep = space; 599 *lenp = len; 600 601 return 0; 602 } 603 604 /* 605 * Read all resources from the card, allocating memory as needed. If a 606 * buffer is already available, it should be passed in '*resourcesp' 607 * and its length in '*spacep'. The memory allocated will be returned 608 * in '*resourcesp' with its size and the number of bytes of resources 609 * in '*spacep' and '*lenp' respectively. 610 */ 611 static int 612 pnp_read_resources(u_char **resourcesp, int *spacep, int *lenp) 613 { 614 u_char *resources = *resourcesp; 615 int space = *spacep; 616 int len = 0; 617 int error, done; 618 u_char tag; 619 620 error = 0; 621 done = 0; 622 while (!done) { 623 error = pnp_read_bytes(1, &resources, &space, &len); 624 if (error) 625 goto out; 626 tag = resources[len-1]; 627 if (PNP_RES_TYPE(tag) == 0) { 628 /* 629 * Small resource, read contents. 630 */ 631 error = pnp_read_bytes(PNP_SRES_LEN(tag), 632 &resources, &space, &len); 633 if (error) 634 goto out; 635 if (PNP_SRES_NUM(tag) == PNP_TAG_END) 636 done = 1; 637 } else { 638 /* 639 * Large resource, read length and contents. 640 */ 641 error = pnp_read_bytes(2, &resources, &space, &len); 642 if (error) 643 goto out; 644 error = pnp_read_bytes(resources[len-2] 645 + (resources[len-1] << 8), 646 &resources, &space, &len); 647 if (error) 648 goto out; 649 } 650 } 651 652 out: 653 *resourcesp = resources; 654 *spacep = space; 655 *lenp = len; 656 return error; 657 } 658 659 /* 660 * Run the isolation protocol. Use pnp_rd_port as the READ_DATA port 661 * value (caller should try multiple READ_DATA locations before giving 662 * up). Upon exiting, all cards are aware that they should use 663 * pnp_rd_port as the READ_DATA port. 664 * 665 * In the first pass, a csn is assigned to each board and pnp_id's 666 * are saved to an array, pnp_devices. In the second pass, each 667 * card is woken up and the device configuration is called. 668 */ 669 static int 670 pnp_isolation_protocol(device_t parent) 671 { 672 int csn; 673 pnp_id id; 674 int found = 0, len; 675 u_char *resources = 0; 676 int space = 0; 677 int error; 678 679 /* 680 * Put all cards into the Sleep state so that we can clear 681 * their CSNs. 682 */ 683 pnp_send_initiation_key(); 684 685 /* 686 * Clear the CSN for all cards. 687 */ 688 pnp_write(PNP_CONFIG_CONTROL, PNP_CONFIG_CONTROL_RESET_CSN); 689 690 /* 691 * Move all cards to the Isolation state. 692 */ 693 pnp_write(PNP_WAKE, 0); 694 695 /* 696 * Tell them where the read point is going to be this time. 697 */ 698 pnp_write(PNP_SET_RD_DATA, pnp_rd_port); 699 700 for (csn = 1; csn < PNP_MAX_CARDS; csn++) { 701 /* 702 * Start the serial isolation protocol. 703 */ 704 outb(_PNP_ADDRESS, PNP_SERIAL_ISOLATION); 705 DELAY(1000); /* Delay 1 msec */ 706 707 if (pnp_get_serial(&id)) { 708 /* 709 * We have read the id from a card 710 * successfully. The card which won the 711 * isolation protocol will be in Isolation 712 * mode and all others will be in Sleep. 713 * Program the CSN of the isolated card 714 * (taking it to Config state) and read its 715 * resources, creating devices as we find 716 * logical devices on the card. 717 */ 718 pnp_write(PNP_SET_CSN, csn); 719 error = pnp_read_resources(&resources, 720 &space, 721 &len); 722 if (error) 723 break; 724 pnp_create_devices(parent, &id, csn, 725 resources, len); 726 found++; 727 } else 728 break; 729 730 /* 731 * Put this card back to the Sleep state and 732 * simultaneously move all cards which don't have a 733 * CSN yet to Isolation state. 734 */ 735 pnp_write(PNP_WAKE, 0); 736 } 737 738 /* 739 * Unless we have chosen the wrong read port, all cards will 740 * be in Sleep state. Put them back into WaitForKey for 741 * now. Their resources will be programmed later. 742 */ 743 pnp_write(PNP_CONFIG_CONTROL, PNP_CONFIG_CONTROL_WAIT_FOR_KEY); 744 745 /* 746 * Cleanup. 747 */ 748 if (resources) 749 free(resources, M_TEMP); 750 751 return found; 752 } 753 754 755 /* 756 * pnp_identify() 757 * 758 * autoconfiguration of pnp devices. This routine just runs the 759 * isolation protocol over several ports, until one is successful. 760 * 761 * may be called more than once ? 762 * 763 */ 764 765 static void 766 pnp_identify(driver_t *driver, device_t parent) 767 { 768 int num_pnp_devs; 769 770 #if 0 771 if (pnp_ldn_overrides[0].csn == 0) { 772 if (bootverbose) 773 printf("Initializing PnP override table\n"); 774 bzero (pnp_ldn_overrides, sizeof(pnp_ldn_overrides)); 775 pnp_ldn_overrides[0].csn = 255 ; 776 } 777 #endif 778 779 /* Try various READ_DATA ports from 0x203-0x3ff */ 780 for (pnp_rd_port = 0x80; (pnp_rd_port < 0xff); pnp_rd_port += 0x10) { 781 if (bootverbose) 782 printf("Trying Read_Port at %x\n", (pnp_rd_port << 2) | 0x3); 783 784 num_pnp_devs = pnp_isolation_protocol(parent); 785 if (num_pnp_devs) 786 break; 787 } 788 } 789 790 static device_method_t pnp_methods[] = { 791 /* Device interface */ 792 DEVMETHOD(device_identify, pnp_identify), 793 794 { 0, 0 } 795 }; 796 797 static driver_t pnp_driver = { 798 "pnp", 799 pnp_methods, 800 1, /* no softc */ 801 }; 802 803 static devclass_t pnp_devclass; 804 805 DRIVER_MODULE(pnp, isa, pnp_driver, pnp_devclass, 0, 0); 806