1 /*- 2 * Copyright (c) 1999 Doug Rabson 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 */ 28 /* 29 * Modifications for Intel architecture by Garrett A. Wollman. 30 * Copyright 1998 Massachusetts Institute of Technology 31 * 32 * Permission to use, copy, modify, and distribute this software and 33 * its documentation for any purpose and without fee is hereby 34 * granted, provided that both the above copyright notice and this 35 * permission notice appear in all copies, that both the above 36 * copyright notice and this permission notice appear in all 37 * supporting documentation, and that the name of M.I.T. not be used 38 * in advertising or publicity pertaining to distribution of the 39 * software without specific, written prior permission. M.I.T. makes 40 * no representations about the suitability of this software for any 41 * purpose. It is provided "as is" without express or implied 42 * warranty. 43 * 44 * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS 45 * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, 46 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 47 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT 48 * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 49 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 50 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 51 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 52 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 53 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 54 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 55 * SUCH DAMAGE. 56 */ 57 58 /* 59 * Parts of the ISA bus implementation common to all architectures. 60 */ 61 62 #include <sys/param.h> 63 #include <sys/systm.h> 64 #include <sys/kernel.h> 65 #include <sys/bus.h> 66 #include <sys/malloc.h> 67 #include <sys/module.h> 68 #include <machine/bus.h> 69 #include <sys/rman.h> 70 71 #include <machine/resource.h> 72 73 #include <isa/isavar.h> 74 #include <isa/isa_common.h> 75 #ifdef __alpha__ /* XXX workaround a stupid warning */ 76 #include <alpha/isa/isavar.h> 77 #endif 78 79 static int isa_print_child(device_t bus, device_t dev); 80 81 static MALLOC_DEFINE(M_ISADEV, "isadev", "ISA device"); 82 83 static devclass_t isa_devclass; 84 static int isa_running; 85 86 /* 87 * At 'probe' time, we add all the devices which we know about to the 88 * bus. The generic attach routine will probe and attach them if they 89 * are alive. 90 */ 91 static int 92 isa_probe(device_t dev) 93 { 94 device_set_desc(dev, "ISA bus"); 95 isa_init(); /* Allow machdep code to initialise */ 96 return 0; 97 } 98 99 extern device_t isa_bus_device; 100 101 static int 102 isa_attach(device_t dev) 103 { 104 /* 105 * Arrange for isa_probe_children(dev) to be called later. XXX 106 */ 107 isa_bus_device = dev; 108 return 0; 109 } 110 111 /* 112 * Find a working set of memory regions for a child using the ranges 113 * in *config and return the regions in *result. Returns non-zero if 114 * a set of ranges was found. 115 */ 116 static int 117 isa_find_memory(device_t child, 118 struct isa_config *config, 119 struct isa_config *result) 120 { 121 int success, i; 122 struct resource *res[ISA_NMEM]; 123 124 /* 125 * First clear out any existing resource definitions. 126 */ 127 for (i = 0; i < ISA_NMEM; i++) { 128 bus_delete_resource(child, SYS_RES_MEMORY, i); 129 res[i] = NULL; 130 } 131 132 success = 1; 133 result->ic_nmem = config->ic_nmem; 134 for (i = 0; i < config->ic_nmem; i++) { 135 u_int32_t start, end, size, align; 136 for (start = config->ic_mem[i].ir_start, 137 end = config->ic_mem[i].ir_end, 138 size = config->ic_mem[i].ir_size, 139 align = config->ic_mem[i].ir_align; 140 start + size - 1 <= end; 141 start += align) { 142 bus_set_resource(child, SYS_RES_MEMORY, i, 143 start, size); 144 res[i] = bus_alloc_resource(child, 145 SYS_RES_MEMORY, &i, 146 0, ~0, 1, 0 /* !RF_ACTIVE */); 147 if (res[i]) { 148 result->ic_mem[i].ir_start = start; 149 result->ic_mem[i].ir_end = start + size - 1; 150 result->ic_mem[i].ir_size = size; 151 result->ic_mem[i].ir_align = align; 152 break; 153 } 154 } 155 156 /* 157 * If we didn't find a place for memory range i, then 158 * give up now. 159 */ 160 if (!res[i]) { 161 success = 0; 162 break; 163 } 164 } 165 166 for (i = 0; i < ISA_NMEM; i++) { 167 if (res[i]) 168 bus_release_resource(child, SYS_RES_MEMORY, 169 i, res[i]); 170 } 171 172 return success; 173 } 174 175 /* 176 * Find a working set of port regions for a child using the ranges 177 * in *config and return the regions in *result. Returns non-zero if 178 * a set of ranges was found. 179 */ 180 static int 181 isa_find_port(device_t child, 182 struct isa_config *config, 183 struct isa_config *result) 184 { 185 int success, i; 186 struct resource *res[ISA_NPORT]; 187 188 /* 189 * First clear out any existing resource definitions. 190 */ 191 for (i = 0; i < ISA_NPORT; i++) { 192 bus_delete_resource(child, SYS_RES_IOPORT, i); 193 res[i] = NULL; 194 } 195 196 success = 1; 197 result->ic_nport = config->ic_nport; 198 for (i = 0; i < config->ic_nport; i++) { 199 u_int32_t start, end, size, align; 200 for (start = config->ic_port[i].ir_start, 201 end = config->ic_port[i].ir_end, 202 size = config->ic_port[i].ir_size, 203 align = config->ic_port[i].ir_align; 204 start + size - 1 <= end; 205 start += align) { 206 bus_set_resource(child, SYS_RES_IOPORT, i, 207 start, size); 208 res[i] = bus_alloc_resource(child, 209 SYS_RES_IOPORT, &i, 210 0, ~0, 1, 0 /* !RF_ACTIVE */); 211 if (res[i]) { 212 result->ic_port[i].ir_start = start; 213 result->ic_port[i].ir_end = start + size - 1; 214 result->ic_port[i].ir_size = size; 215 result->ic_port[i].ir_align = align; 216 break; 217 } 218 } 219 220 /* 221 * If we didn't find a place for port range i, then 222 * give up now. 223 */ 224 if (!res[i]) { 225 success = 0; 226 break; 227 } 228 } 229 230 for (i = 0; i < ISA_NPORT; i++) { 231 if (res[i]) 232 bus_release_resource(child, SYS_RES_IOPORT, 233 i, res[i]); 234 } 235 236 return success; 237 } 238 239 /* 240 * Return the index of the first bit in the mask (or -1 if mask is empty. 241 */ 242 static int 243 find_first_bit(u_int32_t mask) 244 { 245 return ffs(mask) - 1; 246 } 247 248 /* 249 * Return the index of the next bit in the mask, or -1 if there are no more. 250 */ 251 static int 252 find_next_bit(u_int32_t mask, int bit) 253 { 254 bit++; 255 while (bit < 32 && !(mask & (1 << bit))) 256 bit++; 257 if (bit != 32) 258 return bit; 259 return -1; 260 } 261 262 /* 263 * Find a working set of irqs for a child using the masks in *config 264 * and return the regions in *result. Returns non-zero if a set of 265 * irqs was found. 266 */ 267 static int 268 isa_find_irq(device_t child, 269 struct isa_config *config, 270 struct isa_config *result) 271 { 272 int success, i; 273 struct resource *res[ISA_NIRQ]; 274 275 /* 276 * First clear out any existing resource definitions. 277 */ 278 for (i = 0; i < ISA_NIRQ; i++) { 279 bus_delete_resource(child, SYS_RES_IRQ, i); 280 res[i] = NULL; 281 } 282 283 success = 1; 284 result->ic_nirq = config->ic_nirq; 285 for (i = 0; i < config->ic_nirq; i++) { 286 u_int32_t mask = config->ic_irqmask[i]; 287 int irq; 288 for (irq = find_first_bit(mask); 289 irq != -1; 290 irq = find_next_bit(mask, irq)) { 291 bus_set_resource(child, SYS_RES_IRQ, i, 292 irq, 1); 293 res[i] = bus_alloc_resource(child, 294 SYS_RES_IRQ, &i, 295 0, ~0, 1, 0 /* !RF_ACTIVE */ ); 296 if (res[i]) { 297 result->ic_irqmask[i] = (1 << irq); 298 break; 299 } 300 } 301 302 /* 303 * If we didn't find a place for irq range i, then 304 * give up now. 305 */ 306 if (!res[i]) { 307 success = 0; 308 break; 309 } 310 } 311 312 for (i = 0; i < ISA_NIRQ; i++) { 313 if (res[i]) 314 bus_release_resource(child, SYS_RES_IRQ, 315 i, res[i]); 316 } 317 318 return success; 319 } 320 321 /* 322 * Find a working set of drqs for a child using the masks in *config 323 * and return the regions in *result. Returns non-zero if a set of 324 * drqs was found. 325 */ 326 static int 327 isa_find_drq(device_t child, 328 struct isa_config *config, 329 struct isa_config *result) 330 { 331 int success, i; 332 struct resource *res[ISA_NDRQ]; 333 334 /* 335 * First clear out any existing resource definitions. 336 */ 337 for (i = 0; i < ISA_NDRQ; i++) { 338 bus_delete_resource(child, SYS_RES_DRQ, i); 339 res[i] = NULL; 340 } 341 342 success = 1; 343 result->ic_ndrq = config->ic_ndrq; 344 for (i = 0; i < config->ic_ndrq; i++) { 345 u_int32_t mask = config->ic_drqmask[i]; 346 int drq; 347 for (drq = find_first_bit(mask); 348 drq != -1; 349 drq = find_next_bit(mask, drq)) { 350 bus_set_resource(child, SYS_RES_DRQ, i, 351 drq, 1); 352 res[i] = bus_alloc_resource(child, 353 SYS_RES_DRQ, &i, 354 0, ~0, 1, 0 /* !RF_ACTIVE */); 355 if (res[i]) { 356 result->ic_drqmask[i] = (1 << drq); 357 break; 358 } 359 } 360 361 /* 362 * If we didn't find a place for drq range i, then 363 * give up now. 364 */ 365 if (!res[i]) { 366 success = 0; 367 break; 368 } 369 } 370 371 for (i = 0; i < ISA_NDRQ; i++) { 372 if (res[i]) 373 bus_release_resource(child, SYS_RES_DRQ, 374 i, res[i]); 375 } 376 377 return success; 378 } 379 380 /* 381 * Attempt to find a working set of resources for a device. Return 382 * non-zero if a working configuration is found. 383 */ 384 static int 385 isa_assign_resources(device_t child) 386 { 387 struct isa_device *idev = DEVTOISA(child); 388 struct isa_config_entry *ice; 389 struct isa_config config; 390 391 bzero(&config, sizeof config); 392 TAILQ_FOREACH(ice, &idev->id_configs, ice_link) { 393 if (!isa_find_memory(child, &ice->ice_config, &config)) 394 continue; 395 if (!isa_find_port(child, &ice->ice_config, &config)) 396 continue; 397 if (!isa_find_irq(child, &ice->ice_config, &config)) 398 continue; 399 if (!isa_find_drq(child, &ice->ice_config, &config)) 400 continue; 401 402 /* 403 * A working configuration was found enable the device 404 * with this configuration. 405 */ 406 if (idev->id_config_cb) { 407 idev->id_config_cb(idev->id_config_arg, 408 &config, 1); 409 return 1; 410 } 411 } 412 413 /* 414 * Disable the device. 415 */ 416 bus_print_child_header(device_get_parent(child), child); 417 printf(" can't assign resources\n"); 418 if (bootverbose) 419 isa_print_child(device_get_parent(child), child); 420 bzero(&config, sizeof config); 421 if (idev->id_config_cb) 422 idev->id_config_cb(idev->id_config_arg, &config, 0); 423 device_disable(child); 424 425 return 0; 426 } 427 428 /* 429 * Called after other devices have initialised to probe for isa devices. 430 */ 431 void 432 isa_probe_children(device_t dev) 433 { 434 device_t *children; 435 int nchildren, i; 436 437 /* 438 * Create all the children by calling driver's identify methods. 439 */ 440 bus_generic_probe(dev); 441 442 if (device_get_children(dev, &children, &nchildren)) 443 return; 444 445 /* 446 * First disable all pnp devices so that they don't get 447 * matched by legacy probes. 448 */ 449 if (bootverbose) 450 printf("isa_probe_children: disabling PnP devices\n"); 451 for (i = 0; i < nchildren; i++) { 452 device_t child = children[i]; 453 struct isa_device *idev = DEVTOISA(child); 454 struct isa_config config; 455 456 bzero(&config, sizeof config); 457 if (idev->id_config_cb) 458 idev->id_config_cb(idev->id_config_arg, &config, 0); 459 } 460 461 /* 462 * Next probe all non-pnp devices so that they claim their 463 * resources first. 464 */ 465 if (bootverbose) 466 printf("isa_probe_children: probing non-PnP devices\n"); 467 for (i = 0; i < nchildren; i++) { 468 device_t child = children[i]; 469 struct isa_device *idev = DEVTOISA(child); 470 471 if (TAILQ_FIRST(&idev->id_configs)) 472 continue; 473 474 device_probe_and_attach(child); 475 } 476 477 /* 478 * Finally assign resource to pnp devices and probe them. 479 */ 480 if (bootverbose) 481 printf("isa_probe_children: probing PnP devices\n"); 482 for (i = 0; i < nchildren; i++) { 483 device_t child = children[i]; 484 struct isa_device* idev = DEVTOISA(child); 485 486 if (!TAILQ_FIRST(&idev->id_configs)) 487 continue; 488 489 if (isa_assign_resources(child)) { 490 struct resource_list *rl = &idev->id_resources; 491 struct resource_list_entry *rle; 492 493 device_probe_and_attach(child); 494 495 /* 496 * Claim any unallocated resources to keep other 497 * devices from using them. 498 */ 499 SLIST_FOREACH(rle, rl, link) { 500 if (!rle->res) { 501 int rid = rle->rid; 502 resource_list_alloc(rl, dev, child, 503 rle->type, 504 &rid, 505 0, ~0, 1, 0); 506 } 507 } 508 } 509 } 510 511 free(children, M_TEMP); 512 513 isa_running = 1; 514 } 515 516 /* 517 * Add a new child with default ivars. 518 */ 519 static device_t 520 isa_add_child(device_t dev, int order, const char *name, int unit) 521 { 522 device_t child; 523 struct isa_device *idev; 524 525 idev = malloc(sizeof(struct isa_device), M_ISADEV, M_NOWAIT | M_ZERO); 526 if (!idev) 527 return 0; 528 529 resource_list_init(&idev->id_resources); 530 TAILQ_INIT(&idev->id_configs); 531 532 child = device_add_child_ordered(dev, order, name, unit); 533 device_set_ivars(child, idev); 534 535 return child; 536 } 537 538 static int 539 isa_print_resources(struct resource_list *rl, const char *name, int type, 540 int count, const char *format) 541 { 542 struct resource_list_entry *rle; 543 int printed; 544 int i, retval = 0;; 545 546 printed = 0; 547 for (i = 0; i < count; i++) { 548 rle = resource_list_find(rl, type, i); 549 if (rle) { 550 if (printed == 0) 551 retval += printf(" %s ", name); 552 else if (printed > 0) 553 retval += printf(","); 554 printed++; 555 retval += printf(format, rle->start); 556 if (rle->count > 1) { 557 retval += printf("-"); 558 retval += printf(format, 559 rle->start + rle->count - 1); 560 } 561 } else if (i > 3) { 562 /* check the first few regardless */ 563 break; 564 } 565 } 566 return retval; 567 } 568 569 static int 570 isa_print_all_resources(device_t dev) 571 { 572 struct isa_device *idev = DEVTOISA(dev); 573 struct resource_list *rl = &idev->id_resources; 574 int retval = 0; 575 576 if (SLIST_FIRST(rl) || device_get_flags(dev)) 577 retval += printf(" at"); 578 579 retval += isa_print_resources(rl, "port", SYS_RES_IOPORT, 580 ISA_NPORT, "%#lx"); 581 retval += isa_print_resources(rl, "iomem", SYS_RES_MEMORY, 582 ISA_NMEM, "%#lx"); 583 retval += isa_print_resources(rl, "irq", SYS_RES_IRQ, 584 ISA_NIRQ, "%ld"); 585 retval += isa_print_resources(rl, "drq", SYS_RES_DRQ, 586 ISA_NDRQ, "%ld"); 587 if (device_get_flags(dev)) 588 retval += printf(" flags %#x", device_get_flags(dev)); 589 590 return retval; 591 } 592 593 static int 594 isa_print_child(device_t bus, device_t dev) 595 { 596 int retval = 0; 597 598 retval += bus_print_child_header(bus, dev); 599 retval += isa_print_all_resources(dev); 600 retval += bus_print_child_footer(bus, dev); 601 602 return (retval); 603 } 604 605 static void 606 isa_probe_nomatch(device_t dev, device_t child) 607 { 608 if (bootverbose) { 609 bus_print_child_header(dev, child); 610 printf(" failed to probe"); 611 isa_print_all_resources(child); 612 bus_print_child_footer(dev, child); 613 } 614 615 return; 616 } 617 618 static int 619 isa_read_ivar(device_t bus, device_t dev, int index, uintptr_t * result) 620 { 621 struct isa_device* idev = DEVTOISA(dev); 622 struct resource_list *rl = &idev->id_resources; 623 struct resource_list_entry *rle; 624 625 switch (index) { 626 case ISA_IVAR_PORT_0: 627 rle = resource_list_find(rl, SYS_RES_IOPORT, 0); 628 if (rle) 629 *result = rle->start; 630 else 631 *result = -1; 632 break; 633 634 case ISA_IVAR_PORT_1: 635 rle = resource_list_find(rl, SYS_RES_IOPORT, 1); 636 if (rle) 637 *result = rle->start; 638 else 639 *result = -1; 640 break; 641 642 case ISA_IVAR_PORTSIZE_0: 643 rle = resource_list_find(rl, SYS_RES_IOPORT, 0); 644 if (rle) 645 *result = rle->count; 646 else 647 *result = 0; 648 break; 649 650 case ISA_IVAR_PORTSIZE_1: 651 rle = resource_list_find(rl, SYS_RES_IOPORT, 1); 652 if (rle) 653 *result = rle->count; 654 else 655 *result = 0; 656 break; 657 658 case ISA_IVAR_MADDR_0: 659 rle = resource_list_find(rl, SYS_RES_MEMORY, 0); 660 if (rle) 661 *result = rle->start; 662 else 663 *result = -1; 664 break; 665 666 case ISA_IVAR_MADDR_1: 667 rle = resource_list_find(rl, SYS_RES_MEMORY, 1); 668 if (rle) 669 *result = rle->start; 670 else 671 *result = -1; 672 break; 673 674 case ISA_IVAR_MSIZE_0: 675 rle = resource_list_find(rl, SYS_RES_MEMORY, 0); 676 if (rle) 677 *result = rle->count; 678 else 679 *result = 0; 680 break; 681 682 case ISA_IVAR_MSIZE_1: 683 rle = resource_list_find(rl, SYS_RES_MEMORY, 1); 684 if (rle) 685 *result = rle->count; 686 else 687 *result = 0; 688 break; 689 690 case ISA_IVAR_IRQ_0: 691 rle = resource_list_find(rl, SYS_RES_IRQ, 0); 692 if (rle) 693 *result = rle->start; 694 else 695 *result = -1; 696 break; 697 698 case ISA_IVAR_IRQ_1: 699 rle = resource_list_find(rl, SYS_RES_IRQ, 1); 700 if (rle) 701 *result = rle->start; 702 else 703 *result = -1; 704 break; 705 706 case ISA_IVAR_DRQ_0: 707 rle = resource_list_find(rl, SYS_RES_DRQ, 0); 708 if (rle) 709 *result = rle->start; 710 else 711 *result = -1; 712 break; 713 714 case ISA_IVAR_DRQ_1: 715 rle = resource_list_find(rl, SYS_RES_DRQ, 1); 716 if (rle) 717 *result = rle->start; 718 else 719 *result = -1; 720 break; 721 722 case ISA_IVAR_VENDORID: 723 *result = idev->id_vendorid; 724 break; 725 726 case ISA_IVAR_SERIAL: 727 *result = idev->id_serial; 728 break; 729 730 case ISA_IVAR_LOGICALID: 731 *result = idev->id_logicalid; 732 break; 733 734 case ISA_IVAR_COMPATID: 735 *result = idev->id_compatid; 736 break; 737 738 default: 739 return ENOENT; 740 } 741 742 return 0; 743 } 744 745 static int 746 isa_write_ivar(device_t bus, device_t dev, 747 int index, uintptr_t value) 748 { 749 struct isa_device* idev = DEVTOISA(dev); 750 751 switch (index) { 752 case ISA_IVAR_PORT_0: 753 case ISA_IVAR_PORT_1: 754 case ISA_IVAR_PORTSIZE_0: 755 case ISA_IVAR_PORTSIZE_1: 756 case ISA_IVAR_MADDR_0: 757 case ISA_IVAR_MADDR_1: 758 case ISA_IVAR_MSIZE_0: 759 case ISA_IVAR_MSIZE_1: 760 case ISA_IVAR_IRQ_0: 761 case ISA_IVAR_IRQ_1: 762 case ISA_IVAR_DRQ_0: 763 case ISA_IVAR_DRQ_1: 764 return EINVAL; 765 766 case ISA_IVAR_VENDORID: 767 idev->id_vendorid = value; 768 break; 769 770 case ISA_IVAR_SERIAL: 771 idev->id_serial = value; 772 break; 773 774 case ISA_IVAR_LOGICALID: 775 idev->id_logicalid = value; 776 break; 777 778 case ISA_IVAR_COMPATID: 779 idev->id_compatid = value; 780 break; 781 782 default: 783 return (ENOENT); 784 } 785 786 return (0); 787 } 788 789 /* 790 * Free any resources which the driver missed or which we were holding for 791 * it (see isa_probe_children). 792 */ 793 static void 794 isa_child_detached(device_t dev, device_t child) 795 { 796 struct isa_device* idev = DEVTOISA(child); 797 struct resource_list *rl = &idev->id_resources; 798 struct resource_list_entry *rle; 799 800 if (TAILQ_FIRST(&idev->id_configs)) { 801 /* 802 * Claim any unallocated resources to keep other 803 * devices from using them. 804 */ 805 SLIST_FOREACH(rle, rl, link) { 806 if (!rle->res) { 807 int rid = rle->rid; 808 resource_list_alloc(rl, dev, child, 809 rle->type, 810 &rid, 0, ~0, 1, 0); 811 } 812 } 813 } 814 } 815 816 static void 817 isa_driver_added(device_t dev, driver_t *driver) 818 { 819 device_t *children; 820 int nchildren, i; 821 822 /* 823 * Don't do anything if drivers are dynamically 824 * added during autoconfiguration (cf. ymf724). 825 * since that would end up calling identify 826 * twice. 827 */ 828 if (!isa_running) 829 return; 830 831 DEVICE_IDENTIFY(driver, dev); 832 if (device_get_children(dev, &children, &nchildren)) 833 return; 834 835 for (i = 0; i < nchildren; i++) { 836 device_t child = children[i]; 837 struct isa_device *idev = DEVTOISA(child); 838 struct resource_list *rl = &idev->id_resources; 839 struct resource_list_entry *rle; 840 841 if (device_get_state(child) != DS_NOTPRESENT) 842 continue; 843 if (!device_is_enabled(child)) 844 continue; 845 846 /* 847 * Free resources which we were holding on behalf of 848 * the device. 849 */ 850 SLIST_FOREACH(rle, &idev->id_resources, link) { 851 if (rle->res) 852 resource_list_release(rl, dev, child, 853 rle->type, 854 rle->rid, 855 rle->res); 856 } 857 858 if (TAILQ_FIRST(&idev->id_configs)) 859 if (!isa_assign_resources(child)) 860 continue; 861 862 device_probe_and_attach(child); 863 864 if (TAILQ_FIRST(&idev->id_configs)) { 865 /* 866 * Claim any unallocated resources to keep other 867 * devices from using them. 868 */ 869 SLIST_FOREACH(rle, rl, link) { 870 if (!rle->res) { 871 int rid = rle->rid; 872 resource_list_alloc(rl, dev, child, 873 rle->type, 874 &rid, 0, ~0, 1, 0); 875 } 876 } 877 } 878 } 879 880 free(children, M_TEMP); 881 } 882 883 static int 884 isa_set_resource(device_t dev, device_t child, int type, int rid, 885 u_long start, u_long count) 886 { 887 struct isa_device* idev = DEVTOISA(child); 888 struct resource_list *rl = &idev->id_resources; 889 890 if (type != SYS_RES_IOPORT && type != SYS_RES_MEMORY 891 && type != SYS_RES_IRQ && type != SYS_RES_DRQ) 892 return EINVAL; 893 if (rid < 0) 894 return EINVAL; 895 if (type == SYS_RES_IOPORT && rid >= ISA_NPORT) 896 return EINVAL; 897 if (type == SYS_RES_MEMORY && rid >= ISA_NMEM) 898 return EINVAL; 899 if (type == SYS_RES_IRQ && rid >= ISA_NIRQ) 900 return EINVAL; 901 if (type == SYS_RES_DRQ && rid >= ISA_NDRQ) 902 return EINVAL; 903 904 resource_list_add(rl, type, rid, start, start + count - 1, count); 905 906 return 0; 907 } 908 909 static struct resource_list * 910 isa_get_resource_list (device_t dev, device_t child) 911 { 912 struct isa_device* idev = DEVTOISA(child); 913 struct resource_list *rl = &idev->id_resources; 914 915 if (!rl) 916 return (NULL); 917 918 return (rl); 919 } 920 921 static int 922 isa_add_config(device_t dev, device_t child, 923 int priority, struct isa_config *config) 924 { 925 struct isa_device* idev = DEVTOISA(child); 926 struct isa_config_entry *newice, *ice; 927 928 newice = malloc(sizeof *ice, M_DEVBUF, M_NOWAIT); 929 if (!newice) 930 return ENOMEM; 931 932 newice->ice_priority = priority; 933 newice->ice_config = *config; 934 935 TAILQ_FOREACH(ice, &idev->id_configs, ice_link) { 936 if (ice->ice_priority > priority) 937 break; 938 } 939 if (ice) 940 TAILQ_INSERT_BEFORE(ice, newice, ice_link); 941 else 942 TAILQ_INSERT_TAIL(&idev->id_configs, newice, ice_link); 943 944 return 0; 945 } 946 947 static void 948 isa_set_config_callback(device_t dev, device_t child, 949 isa_config_cb *fn, void *arg) 950 { 951 struct isa_device* idev = DEVTOISA(child); 952 953 idev->id_config_cb = fn; 954 idev->id_config_arg = arg; 955 } 956 957 static int 958 isa_pnp_probe(device_t dev, device_t child, struct isa_pnp_id *ids) 959 { 960 struct isa_device* idev = DEVTOISA(child); 961 962 if (!idev->id_vendorid) 963 return ENOENT; 964 965 while (ids->ip_id) { 966 /* 967 * Really ought to support >1 compat id per device. 968 */ 969 if (idev->id_logicalid == ids->ip_id 970 || idev->id_compatid == ids->ip_id) { 971 if (ids->ip_desc) 972 device_set_desc(child, ids->ip_desc); 973 return 0; 974 } 975 ids++; 976 } 977 978 return ENXIO; 979 } 980 981 static device_method_t isa_methods[] = { 982 /* Device interface */ 983 DEVMETHOD(device_probe, isa_probe), 984 DEVMETHOD(device_attach, isa_attach), 985 DEVMETHOD(device_detach, bus_generic_detach), 986 DEVMETHOD(device_shutdown, bus_generic_shutdown), 987 DEVMETHOD(device_suspend, bus_generic_suspend), 988 DEVMETHOD(device_resume, bus_generic_resume), 989 990 /* Bus interface */ 991 DEVMETHOD(bus_add_child, isa_add_child), 992 DEVMETHOD(bus_print_child, isa_print_child), 993 DEVMETHOD(bus_probe_nomatch, isa_probe_nomatch), 994 DEVMETHOD(bus_read_ivar, isa_read_ivar), 995 DEVMETHOD(bus_write_ivar, isa_write_ivar), 996 DEVMETHOD(bus_child_detached, isa_child_detached), 997 DEVMETHOD(bus_driver_added, isa_driver_added), 998 DEVMETHOD(bus_setup_intr, isa_setup_intr), 999 DEVMETHOD(bus_teardown_intr, isa_teardown_intr), 1000 1001 DEVMETHOD(bus_get_resource_list,isa_get_resource_list), 1002 DEVMETHOD(bus_alloc_resource, isa_alloc_resource), 1003 DEVMETHOD(bus_release_resource, isa_release_resource), 1004 DEVMETHOD(bus_set_resource, isa_set_resource), 1005 DEVMETHOD(bus_get_resource, bus_generic_rl_get_resource), 1006 DEVMETHOD(bus_delete_resource, bus_generic_rl_delete_resource), 1007 DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 1008 DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 1009 1010 /* ISA interface */ 1011 DEVMETHOD(isa_add_config, isa_add_config), 1012 DEVMETHOD(isa_set_config_callback, isa_set_config_callback), 1013 DEVMETHOD(isa_pnp_probe, isa_pnp_probe), 1014 1015 { 0, 0 } 1016 }; 1017 1018 static driver_t isa_driver = { 1019 "isa", 1020 isa_methods, 1021 1, /* no softc */ 1022 }; 1023 1024 /* 1025 * ISA can be attached to a PCI-ISA bridge or directly to the nexus. 1026 */ 1027 DRIVER_MODULE(isa, isab, isa_driver, isa_devclass, 0, 0); 1028 DRIVER_MODULE(isa, eisab, isa_driver, isa_devclass, 0, 0); 1029 #ifdef __i386__ 1030 DRIVER_MODULE(isa, nexus, isa_driver, isa_devclass, 0, 0); 1031 #endif 1032