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/bus.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 * Constrain the number of resources we will try to program 321 */ 322 if (config->ic_nmem > ISA_PNP_NMEM) { 323 printf("too many ISA memory ranges (%d > %d)\n", config->ic_nmem, ISA_PNP_NMEM); 324 config->ic_nmem = ISA_PNP_NMEM; 325 } 326 if (config->ic_nport > ISA_PNP_NPORT) { 327 printf("too many ISA I/O ranges (%d > %d)\n", config->ic_nport, ISA_PNP_NPORT); 328 config->ic_nport = ISA_PNP_NPORT; 329 } 330 if (config->ic_nirq > ISA_PNP_NIRQ) { 331 printf("too many ISA IRQs (%d > %d)\n", config->ic_nirq, ISA_PNP_NIRQ); 332 config->ic_nirq = ISA_PNP_NIRQ; 333 } 334 if (config->ic_ndrq > ISA_PNP_NDRQ) { 335 printf("too many ISA DRQs (%d > %d)\n", config->ic_ndrq, ISA_PNP_NDRQ); 336 config->ic_ndrq = ISA_PNP_NDRQ; 337 } 338 339 /* 340 * Now program the resources. 341 */ 342 for (i = 0; i < config->ic_nmem; i++) { 343 u_int32_t start; 344 u_int32_t size; 345 346 /* XXX: should handle memory control register, 32 bit memory */ 347 if (config->ic_mem[i].ir_size == 0) { 348 pnp_write(PNP_MEM_BASE_HIGH(i), 0); 349 pnp_write(PNP_MEM_BASE_LOW(i), 0); 350 pnp_write(PNP_MEM_RANGE_HIGH(i), 0); 351 pnp_write(PNP_MEM_RANGE_LOW(i), 0); 352 } else { 353 start = config->ic_mem[i].ir_start; 354 size = config->ic_mem[i].ir_size; 355 if (start & 0xff) 356 panic("pnp_set_config: bogus memory assignment"); 357 pnp_write(PNP_MEM_BASE_HIGH(i), (start >> 16) & 0xff); 358 pnp_write(PNP_MEM_BASE_LOW(i), (start >> 8) & 0xff); 359 pnp_write(PNP_MEM_RANGE_HIGH(i), (size >> 16) & 0xff); 360 pnp_write(PNP_MEM_RANGE_LOW(i), (size >> 8) & 0xff); 361 } 362 } 363 for (; i < ISA_PNP_NMEM; i++) { 364 pnp_write(PNP_MEM_BASE_HIGH(i), 0); 365 pnp_write(PNP_MEM_BASE_LOW(i), 0); 366 pnp_write(PNP_MEM_RANGE_HIGH(i), 0); 367 pnp_write(PNP_MEM_RANGE_LOW(i), 0); 368 } 369 370 for (i = 0; i < config->ic_nport; i++) { 371 u_int32_t start; 372 373 if (config->ic_port[i].ir_size == 0) { 374 pnp_write(PNP_IO_BASE_HIGH(i), 0); 375 pnp_write(PNP_IO_BASE_LOW(i), 0); 376 } else { 377 start = config->ic_port[i].ir_start; 378 pnp_write(PNP_IO_BASE_HIGH(i), (start >> 8) & 0xff); 379 pnp_write(PNP_IO_BASE_LOW(i), (start >> 0) & 0xff); 380 } 381 } 382 for (; i < ISA_PNP_NPORT; i++) { 383 pnp_write(PNP_IO_BASE_HIGH(i), 0); 384 pnp_write(PNP_IO_BASE_LOW(i), 0); 385 } 386 387 for (i = 0; i < config->ic_nirq; i++) { 388 int irq; 389 390 /* XXX: interrupt type */ 391 if (config->ic_irqmask[i] == 0) { 392 pnp_write(PNP_IRQ_LEVEL(i), 0); 393 pnp_write(PNP_IRQ_TYPE(i), 2); 394 } else { 395 irq = ffs(config->ic_irqmask[i]) - 1; 396 pnp_write(PNP_IRQ_LEVEL(i), irq); 397 pnp_write(PNP_IRQ_TYPE(i), 2); /* XXX */ 398 } 399 } 400 for (; i < ISA_PNP_NIRQ; i++) { 401 /* 402 * IRQ 0 is not a valid interrupt selection and 403 * represents no interrupt selection. 404 */ 405 pnp_write(PNP_IRQ_LEVEL(i), 0); 406 pnp_write(PNP_IRQ_TYPE(i), 2); 407 } 408 409 for (i = 0; i < config->ic_ndrq; i++) { 410 int drq; 411 412 if (config->ic_drqmask[i] == 0) { 413 pnp_write(PNP_DMA_CHANNEL(i), 4); 414 } else { 415 drq = ffs(config->ic_drqmask[i]) - 1; 416 pnp_write(PNP_DMA_CHANNEL(i), drq); 417 } 418 } 419 for (; i < ISA_PNP_NDRQ; i++) { 420 /* 421 * DMA channel 4, the cascade channel is used to 422 * indicate no DMA channel is active. 423 */ 424 pnp_write(PNP_DMA_CHANNEL(i), 4); 425 } 426 427 pnp_write(PNP_ACTIVATE, enable ? 1 : 0); 428 429 /* 430 * Wake everyone up again, we are finished. 431 */ 432 pnp_write(PNP_CONFIG_CONTROL, PNP_CONFIG_CONTROL_WAIT_FOR_KEY); 433 } 434 435 /* 436 * Process quirks for a logical device.. The card must be in Config state. 437 */ 438 void 439 pnp_check_quirks(u_int32_t vendor_id, u_int32_t logical_id, int ldn, struct isa_config *config) 440 { 441 struct pnp_quirk *qp; 442 443 for (qp = &pnp_quirks[0]; qp->vendor_id; qp++) { 444 if (qp->vendor_id == vendor_id 445 && (qp->logical_id == 0 446 || qp->logical_id == logical_id)) { 447 switch (qp->type) { 448 case PNP_QUIRK_WRITE_REG: 449 pnp_write(PNP_SET_LDN, ldn); 450 pnp_write(qp->arg1, qp->arg2); 451 break; 452 case PNP_QUIRK_EXTRA_IO: 453 if (config == NULL) 454 break; 455 if (qp->arg1 != 0) { 456 config->ic_nport++; 457 config->ic_port[config->ic_nport - 1] = config->ic_port[0]; 458 config->ic_port[config->ic_nport - 1].ir_start += qp->arg1; 459 config->ic_port[config->ic_nport - 1].ir_end += qp->arg1; 460 } 461 if (qp->arg2 != 0) { 462 config->ic_nport++; 463 config->ic_port[config->ic_nport - 1] = config->ic_port[0]; 464 config->ic_port[config->ic_nport - 1].ir_start += qp->arg2; 465 config->ic_port[config->ic_nport - 1].ir_end += qp->arg2; 466 } 467 break; 468 } 469 } 470 } 471 } 472 473 /* 474 * Scan Resource Data for Logical Devices. 475 * 476 * This function exits as soon as it gets an error reading *ANY* 477 * Resource Data or it reaches the end of Resource Data. In the first 478 * case the return value will be TRUE, FALSE otherwise. 479 */ 480 static int 481 pnp_create_devices(device_t parent, pnp_id *p, int csn, 482 u_char *resources, int len) 483 { 484 u_char tag, *resp, *resinfo, *startres = 0; 485 int large_len, scanning = len, retval = FALSE; 486 u_int32_t logical_id; 487 u_int32_t compat_id; 488 device_t dev = 0; 489 int ldn = 0; 490 struct pnp_set_config_arg *csnldn; 491 char buf[100]; 492 char *desc = 0; 493 494 resp = resources; 495 while (scanning > 0) { 496 tag = *resp++; 497 scanning--; 498 if (PNP_RES_TYPE(tag) != 0) { 499 /* Large resource */ 500 if (scanning < 2) { 501 scanning = 0; 502 continue; 503 } 504 large_len = resp[0] + (resp[1] << 8); 505 resp += 2; 506 507 if (scanning < large_len) { 508 scanning = 0; 509 continue; 510 } 511 resinfo = resp; 512 resp += large_len; 513 scanning -= large_len; 514 515 if (PNP_LRES_NUM(tag) == PNP_TAG_ID_ANSI) { 516 if (dev) { 517 /* 518 * This is an optional device 519 * indentifier string. Skipt it 520 * for now. 521 */ 522 continue; 523 } 524 /* else mandately card identifier string */ 525 if (large_len > sizeof(buf) - 1) 526 large_len = sizeof(buf) - 1; 527 bcopy(resinfo, buf, large_len); 528 529 /* 530 * Trim trailing spaces. 531 */ 532 while (buf[large_len-1] == ' ') 533 large_len--; 534 buf[large_len] = '\0'; 535 desc = buf; 536 continue; 537 } 538 539 continue; 540 } 541 542 /* Small resource */ 543 if (scanning < PNP_SRES_LEN(tag)) { 544 scanning = 0; 545 continue; 546 } 547 resinfo = resp; 548 resp += PNP_SRES_LEN(tag); 549 scanning -= PNP_SRES_LEN(tag);; 550 551 switch (PNP_SRES_NUM(tag)) { 552 case PNP_TAG_LOGICAL_DEVICE: 553 /* 554 * Parse the resources for the previous 555 * logical device (if any). 556 */ 557 if (startres) { 558 pnp_parse_resources(dev, startres, 559 resinfo - startres - 1, 560 ldn); 561 dev = 0; 562 startres = 0; 563 } 564 565 /* 566 * A new logical device. Scan for end of 567 * resources. 568 */ 569 bcopy(resinfo, &logical_id, 4); 570 pnp_check_quirks(p->vendor_id, logical_id, ldn, NULL); 571 compat_id = 0; 572 dev = BUS_ADD_CHILD(parent, ISA_ORDER_PNP, NULL, -1); 573 if (desc) 574 device_set_desc_copy(dev, desc); 575 else 576 device_set_desc_copy(dev, 577 pnp_eisaformat(logical_id)); 578 isa_set_vendorid(dev, p->vendor_id); 579 isa_set_serial(dev, p->serial); 580 isa_set_logicalid(dev, logical_id); 581 isa_set_configattr(dev, 582 ISACFGATTR_CANDISABLE | 583 ISACFGATTR_DYNAMIC); 584 csnldn = malloc(sizeof *csnldn, M_DEVBUF, M_NOWAIT); 585 if (!csnldn) { 586 device_printf(parent, 587 "out of memory\n"); 588 scanning = 0; 589 break; 590 } 591 csnldn->csn = csn; 592 csnldn->ldn = ldn; 593 ISA_SET_CONFIG_CALLBACK(parent, dev, 594 pnp_set_config, csnldn); 595 ldn++; 596 startres = resp; 597 break; 598 599 case PNP_TAG_END: 600 if (!startres) { 601 device_printf(parent, 602 "malformed resources\n"); 603 scanning = 0; 604 break; 605 } 606 pnp_parse_resources(dev, startres, 607 resinfo - startres - 1, ldn); 608 dev = 0; 609 startres = 0; 610 scanning = 0; 611 break; 612 613 default: 614 /* Skip this resource */ 615 break; 616 } 617 } 618 619 return retval; 620 } 621 622 /* 623 * Read 'amount' bytes of resources from the card, allocating memory 624 * as needed. If a buffer is already available, it should be passed in 625 * '*resourcesp' and its length in '*spacep'. The number of resource 626 * bytes already in the buffer should be passed in '*lenp'. The memory 627 * allocated will be returned in '*resourcesp' with its size and the 628 * number of bytes of resources in '*spacep' and '*lenp' respectively. 629 */ 630 static int 631 pnp_read_bytes(int amount, u_char **resourcesp, int *spacep, int *lenp) 632 { 633 u_char *resources = *resourcesp; 634 u_char *newres; 635 int space = *spacep; 636 int len = *lenp; 637 638 if (space == 0) { 639 space = 1024; 640 resources = malloc(space, M_TEMP, M_NOWAIT); 641 if (!resources) 642 return ENOMEM; 643 } 644 645 if (len + amount > space) { 646 int extra = 1024; 647 while (len + amount > space + extra) 648 extra += 1024; 649 newres = malloc(space + extra, M_TEMP, M_NOWAIT); 650 if (!newres) 651 return ENOMEM; 652 bcopy(resources, newres, len); 653 free(resources, M_TEMP); 654 resources = newres; 655 space += extra; 656 } 657 658 if (pnp_get_resource_info(resources + len, amount) != amount) 659 return EINVAL; 660 len += amount; 661 662 *resourcesp = resources; 663 *spacep = space; 664 *lenp = len; 665 666 return 0; 667 } 668 669 /* 670 * Read all resources from the card, allocating memory as needed. If a 671 * buffer is already available, it should be passed in '*resourcesp' 672 * and its length in '*spacep'. The memory allocated will be returned 673 * in '*resourcesp' with its size and the number of bytes of resources 674 * in '*spacep' and '*lenp' respectively. 675 */ 676 static int 677 pnp_read_resources(u_char **resourcesp, int *spacep, int *lenp) 678 { 679 u_char *resources = *resourcesp; 680 int space = *spacep; 681 int len = 0; 682 int error, done; 683 u_char tag; 684 685 error = 0; 686 done = 0; 687 while (!done) { 688 error = pnp_read_bytes(1, &resources, &space, &len); 689 if (error) 690 goto out; 691 tag = resources[len-1]; 692 if (PNP_RES_TYPE(tag) == 0) { 693 /* 694 * Small resource, read contents. 695 */ 696 error = pnp_read_bytes(PNP_SRES_LEN(tag), 697 &resources, &space, &len); 698 if (error) 699 goto out; 700 if (PNP_SRES_NUM(tag) == PNP_TAG_END) 701 done = 1; 702 } else { 703 /* 704 * Large resource, read length and contents. 705 */ 706 error = pnp_read_bytes(2, &resources, &space, &len); 707 if (error) 708 goto out; 709 error = pnp_read_bytes(resources[len-2] 710 + (resources[len-1] << 8), 711 &resources, &space, &len); 712 if (error) 713 goto out; 714 } 715 } 716 717 out: 718 *resourcesp = resources; 719 *spacep = space; 720 *lenp = len; 721 return error; 722 } 723 724 /* 725 * Run the isolation protocol. Use pnp_rd_port as the READ_DATA port 726 * value (caller should try multiple READ_DATA locations before giving 727 * up). Upon exiting, all cards are aware that they should use 728 * pnp_rd_port as the READ_DATA port. 729 * 730 * In the first pass, a csn is assigned to each board and pnp_id's 731 * are saved to an array, pnp_devices. In the second pass, each 732 * card is woken up and the device configuration is called. 733 */ 734 static int 735 pnp_isolation_protocol(device_t parent) 736 { 737 int csn; 738 pnp_id id; 739 int found = 0, len; 740 u_char *resources = 0; 741 int space = 0; 742 int error; 743 744 /* 745 * Put all cards into the Sleep state so that we can clear 746 * their CSNs. 747 */ 748 pnp_send_initiation_key(); 749 750 /* 751 * Clear the CSN for all cards. 752 */ 753 pnp_write(PNP_CONFIG_CONTROL, PNP_CONFIG_CONTROL_RESET_CSN); 754 755 /* 756 * Move all cards to the Isolation state. 757 */ 758 pnp_write(PNP_WAKE, 0); 759 760 /* 761 * Tell them where the read point is going to be this time. 762 */ 763 pnp_write(PNP_SET_RD_DATA, pnp_rd_port); 764 765 for (csn = 1; csn < PNP_MAX_CARDS; csn++) { 766 /* 767 * Start the serial isolation protocol. 768 */ 769 outb(_PNP_ADDRESS, PNP_SERIAL_ISOLATION); 770 DELAY(1000); /* Delay 1 msec */ 771 772 if (pnp_get_serial(&id)) { 773 /* 774 * We have read the id from a card 775 * successfully. The card which won the 776 * isolation protocol will be in Isolation 777 * mode and all others will be in Sleep. 778 * Program the CSN of the isolated card 779 * (taking it to Config state) and read its 780 * resources, creating devices as we find 781 * logical devices on the card. 782 */ 783 pnp_write(PNP_SET_CSN, csn); 784 error = pnp_read_resources(&resources, 785 &space, 786 &len); 787 if (error) 788 break; 789 pnp_create_devices(parent, &id, csn, 790 resources, len); 791 found++; 792 } else 793 break; 794 795 /* 796 * Put this card back to the Sleep state and 797 * simultaneously move all cards which don't have a 798 * CSN yet to Isolation state. 799 */ 800 pnp_write(PNP_WAKE, 0); 801 } 802 803 /* 804 * Unless we have chosen the wrong read port, all cards will 805 * be in Sleep state. Put them back into WaitForKey for 806 * now. Their resources will be programmed later. 807 */ 808 pnp_write(PNP_CONFIG_CONTROL, PNP_CONFIG_CONTROL_WAIT_FOR_KEY); 809 810 /* 811 * Cleanup. 812 */ 813 if (resources) 814 free(resources, M_TEMP); 815 816 return found; 817 } 818 819 820 /* 821 * pnp_identify() 822 * 823 * autoconfiguration of pnp devices. This routine just runs the 824 * isolation protocol over several ports, until one is successful. 825 * 826 * may be called more than once ? 827 * 828 */ 829 830 static void 831 pnp_identify(driver_t *driver, device_t parent) 832 { 833 int num_pnp_devs; 834 835 #if 0 836 if (pnp_ldn_overrides[0].csn == 0) { 837 if (bootverbose) 838 printf("Initializing PnP override table\n"); 839 bzero (pnp_ldn_overrides, sizeof(pnp_ldn_overrides)); 840 pnp_ldn_overrides[0].csn = 255 ; 841 } 842 #endif 843 844 /* Try various READ_DATA ports from 0x203-0x3ff */ 845 for (pnp_rd_port = 0x80; (pnp_rd_port < 0xff); pnp_rd_port += 0x10) { 846 if (bootverbose) 847 printf("Trying Read_Port at %x\n", (pnp_rd_port << 2) | 0x3); 848 849 num_pnp_devs = pnp_isolation_protocol(parent); 850 if (num_pnp_devs) 851 break; 852 } 853 } 854 855 static device_method_t pnp_methods[] = { 856 /* Device interface */ 857 DEVMETHOD(device_identify, pnp_identify), 858 859 { 0, 0 } 860 }; 861 862 static driver_t pnp_driver = { 863 "pnp", 864 pnp_methods, 865 1, /* no softc */ 866 }; 867 868 static devclass_t pnp_devclass; 869 870 DRIVER_MODULE(pnp, isa, pnp_driver, pnp_devclass, 0, 0); 871