1 /*- 2 * Copyright (c) 1998,1999,2000,2001 S�ren Schmidt <sos@FreeBSD.org> 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 * without modification, immediately at the beginning of the file. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 3. The name of the author may not be used to endorse or promote products 15 * derived from this software without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * $FreeBSD$ 29 */ 30 31 #include <sys/param.h> 32 #include <sys/systm.h> 33 #include <sys/kernel.h> 34 #include <sys/disk.h> 35 #include <sys/module.h> 36 #include <sys/bus.h> 37 #include <sys/bio.h> 38 #include <sys/malloc.h> 39 #include <sys/devicestat.h> 40 #include <sys/sysctl.h> 41 #include <machine/stdarg.h> 42 #include <machine/resource.h> 43 #include <machine/bus.h> 44 #ifdef __alpha__ 45 #include <machine/md_var.h> 46 #endif 47 #include <sys/rman.h> 48 #include <pci/pcivar.h> 49 #include <pci/pcireg.h> 50 #include <dev/ata/ata-all.h> 51 52 /* device structures */ 53 struct ata_pci_softc { 54 struct resource *bmio; 55 int bmaddr; 56 struct resource *irq; 57 int irqcnt; 58 }; 59 60 /* prototypes */ 61 void ata_via686b(device_t); 62 63 /* misc defines */ 64 #define IOMASK 0xfffffffc 65 #define ATA_MASTERDEV(dev) ((pci_get_progif(dev) & 0x80) && \ 66 (pci_get_progif(dev) & 0x05) != 0x05) 67 68 int 69 ata_find_dev(device_t dev, u_int32_t devid, u_int32_t revid) 70 { 71 device_t *children; 72 int nchildren, i; 73 74 if (device_get_children(device_get_parent(dev), &children, &nchildren)) 75 return 0; 76 77 for (i = 0; i < nchildren; i++) { 78 if (pci_get_slot(dev) == pci_get_slot(children[i]) && 79 pci_get_devid(children[i]) == devid && 80 pci_get_revid(children[i]) >= revid) { 81 free(children, M_TEMP); 82 return 1; 83 } 84 } 85 free(children, M_TEMP); 86 return 0; 87 } 88 89 void 90 ata_via686b(device_t dev) 91 { 92 device_t *children, child; 93 int nchildren, i; 94 95 if (device_get_children(device_get_parent(dev), &children, &nchildren)) 96 return; 97 98 for (i = 0; i < nchildren; i++) { 99 child = children[i]; 100 101 if (pci_get_devid(child) == 0x03051106 || /* VIA KT133 */ 102 pci_get_devid(child) == 0x03911106) { /* VIA KX133 */ 103 pci_write_config(child, 0x75, 0x83, 1); 104 pci_write_config(child, 0x76, 105 (pci_read_config(child, 0x76, 1) & 0xdf) | 0xd0,1); 106 device_printf(dev, "VIA '686b southbridge fix applied\n"); 107 break; 108 } 109 } 110 free(children, M_TEMP); 111 } 112 113 static const char * 114 ata_pci_match(device_t dev) 115 { 116 if (pci_get_class(dev) != PCIC_STORAGE) 117 return NULL; 118 119 switch (pci_get_devid(dev)) { 120 /* supported chipsets */ 121 case 0x12308086: 122 return "Intel PIIX ATA controller"; 123 124 case 0x70108086: 125 return "Intel PIIX3 ATA controller"; 126 127 case 0x71118086: 128 case 0x71998086: 129 case 0x84ca8086: 130 return "Intel PIIX4 ATA33 controller"; 131 132 case 0x24218086: 133 return "Intel ICH0 ATA33 controller"; 134 135 case 0x24118086: 136 case 0x76018086: 137 return "Intel ICH ATA66 controller"; 138 139 case 0x244a8086: 140 case 0x244b8086: 141 return "Intel ICH2 ATA100 controller"; 142 143 case 0x248a8086: 144 case 0x248b8086: 145 return "Intel ICH3 ATA100 controller"; 146 147 case 0x522910b9: 148 if (pci_get_revid(dev) < 0x20) 149 return "AcerLabs Aladdin ATA controller"; 150 else 151 return "AcerLabs Aladdin ATA33 controller"; 152 153 case 0x05711106: 154 if (ata_find_dev(dev, 0x05861106, 0x02)) 155 return "VIA 82C586 ATA33 controller"; 156 if (ata_find_dev(dev, 0x05861106, 0)) 157 return "VIA 82C586 ATA controller"; 158 if (ata_find_dev(dev, 0x05961106, 0x12)) 159 return "VIA 82C596 ATA66 controller"; 160 if (ata_find_dev(dev, 0x05961106, 0)) 161 return "VIA 82C596 ATA33 controller"; 162 if (ata_find_dev(dev, 0x06861106, 0x40) || 163 ata_find_dev(dev, 0x82311106, 0) || 164 ata_find_dev(dev, 0x30741106, 0)) 165 return "VIA 82C686 ATA100 controller"; 166 if (ata_find_dev(dev, 0x06861106, 0)) 167 return "VIA 82C686 ATA66 controller"; 168 return "VIA Apollo ATA controller"; 169 170 case 0x55131039: 171 if (ata_find_dev(dev, 0x06301039, 0x30) || 172 ata_find_dev(dev, 0x06331039, 0x00) || 173 ata_find_dev(dev, 0x06351039, 0x00) || 174 ata_find_dev(dev, 0x07301039, 0x00) || 175 ata_find_dev(dev, 0x07331039, 0x00) || 176 ata_find_dev(dev, 0x07351039, 0x00)) 177 return "SiS 5591 ATA100 controller"; 178 if (ata_find_dev(dev, 0x05301039, 0x00) || 179 ata_find_dev(dev, 0x05401039, 0x00) || 180 ata_find_dev(dev, 0x06201039, 0x00) || 181 ata_find_dev(dev, 0x06301039, 0x00)) 182 return "SiS 5591 ATA66 controller"; 183 return "SiS 5591 ATA33 controller"; 184 185 case 0x06491095: 186 return "CMD 649 ATA100 controller"; 187 188 case 0x06481095: 189 return "CMD 648 ATA66 controller"; 190 191 case 0x06461095: 192 return "CMD 646 ATA controller"; 193 194 case 0xc6931080: 195 if (pci_get_subclass(dev) == PCIS_STORAGE_IDE) 196 return "Cypress 82C693 ATA controller"; 197 break; 198 199 case 0x01021078: 200 return "Cyrix 5530 ATA33 controller"; 201 202 case 0x74091022: 203 return "AMD 756 ATA66 controller"; 204 205 case 0x74111022: 206 return "AMD 766 ATA100 controller"; 207 208 case 0x02111166: 209 return "ServerWorks ROSB4 ATA33 controller"; 210 211 case 0x4d33105a: 212 return "Promise ATA33 controller"; 213 214 case 0x4d38105a: 215 return "Promise ATA66 controller"; 216 217 case 0x0d30105a: 218 case 0x4d30105a: 219 return "Promise ATA100 controller"; 220 221 case 0x4d68105a: 222 case 0x6268105a: 223 return "Promise TX2 ATA100 controller"; 224 225 case 0x4d69105a: 226 return "Promise ATA133 controller"; 227 228 case 0x00041103: 229 switch (pci_get_revid(dev)) { 230 case 0x00: 231 case 0x01: 232 return "HighPoint HPT366 ATA66 controller"; 233 case 0x02: 234 return "HighPoint HPT368 ATA66 controller"; 235 case 0x03: 236 case 0x04: 237 return "HighPoint HPT370 ATA100 controller"; 238 case 0x05: 239 return "HighPoint HPT372 ATA133 controller"; 240 default: 241 return "Unknown revision HighPoint ATA controller"; 242 } 243 244 /* unsupported but known chipsets, generic DMA only */ 245 case 0x10001042: 246 case 0x10011042: 247 return "RZ 100? ATA controller !WARNING! buggy chip data loss possible"; 248 249 case 0x06401095: 250 return "CMD 640 ATA controller !WARNING! buggy chip data loss possible"; 251 252 /* unknown chipsets, try generic DMA if it seems possible */ 253 default: 254 if (pci_get_class(dev) == PCIC_STORAGE && 255 (pci_get_subclass(dev) == PCIS_STORAGE_IDE)) 256 return "Generic PCI ATA controller"; 257 } 258 return NULL; 259 } 260 261 static int 262 ata_pci_probe(device_t dev) 263 { 264 const char *desc = ata_pci_match(dev); 265 266 if (desc) { 267 device_set_desc(dev, desc); 268 return 0; 269 } 270 else 271 return ENXIO; 272 } 273 274 static int 275 ata_pci_add_child(device_t dev, int unit) 276 { 277 device_t child; 278 279 /* check if this is located at one of the std addresses */ 280 if (ATA_MASTERDEV(dev)) { 281 if (!(child = device_add_child(dev, "ata", unit))) 282 return ENOMEM; 283 } 284 else { 285 if (!(child = device_add_child(dev, "ata", 286 devclass_find_free_unit(devclass_find("ata"), 2)))) 287 return ENOMEM; 288 } 289 return 0; 290 } 291 292 static int 293 ata_pci_attach(device_t dev) 294 { 295 struct ata_pci_softc *sc = device_get_softc(dev); 296 u_int8_t class, subclass; 297 u_int32_t type, cmd; 298 int rid; 299 300 /* set up vendor-specific stuff */ 301 type = pci_get_devid(dev); 302 class = pci_get_class(dev); 303 subclass = pci_get_subclass(dev); 304 cmd = pci_read_config(dev, PCIR_COMMAND, 4); 305 306 if (!(cmd & PCIM_CMD_PORTEN)) { 307 device_printf(dev, "ATA channel disabled by BIOS\n"); 308 return 0; 309 } 310 311 /* is busmastering supported ? */ 312 if ((cmd & (PCIM_CMD_PORTEN | PCIM_CMD_BUSMASTEREN)) == 313 (PCIM_CMD_PORTEN | PCIM_CMD_BUSMASTEREN)) { 314 315 /* is there a valid port range to connect to ? */ 316 rid = 0x20; 317 sc->bmio = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 318 0, ~0, 1, RF_ACTIVE); 319 if (!sc->bmio) 320 device_printf(dev, "Busmastering DMA not configured\n"); 321 } 322 else 323 device_printf(dev, "Busmastering DMA not supported\n"); 324 325 /* do extra chipset specific setups */ 326 switch (type) { 327 case 0x522910b9: /* Aladdin need to activate the ATAPI FIFO */ 328 pci_write_config(dev, 0x53, 329 (pci_read_config(dev, 0x53, 1) & ~0x01) | 0x02, 1); 330 break; 331 332 case 0x4d38105a: /* Promise 66 & 100 (before TX2) need the clock changed */ 333 case 0x4d30105a: 334 case 0x0d30105a: 335 ATA_OUTB(sc->bmio, 0x11, ATA_INB(sc->bmio, 0x11) | 0x0a); 336 /* FALLTHROUGH */ 337 338 case 0x4d33105a: /* Promise (before TX2) need burst mode turned on */ 339 ATA_OUTB(sc->bmio, 0x1f, ATA_INB(sc->bmio, 0x1f) | 0x01); 340 break; 341 342 case 0x00041103: /* HighPoint */ 343 switch (pci_get_revid(dev)) { 344 case 0x00: /* HPT 366 */ 345 case 0x01: 346 /* turn off interrupt prediction */ 347 pci_write_config(dev, 0x51, 348 (pci_read_config(dev, 0x51, 1) & ~0x80), 1); 349 break; 350 351 case 0x02: /* HPT 368 */ 352 case 0x03: /* HPT 370 */ 353 case 0x04: 354 case 0x05: /* HPT 372 */ 355 /* turn off interrupt prediction */ 356 pci_write_config(dev, 0x51, 357 (pci_read_config(dev, 0x51, 1) & ~0x02), 1); 358 pci_write_config(dev, 0x55, 359 (pci_read_config(dev, 0x55, 1) & ~0x02), 1); 360 /* turn on interrupts */ 361 pci_write_config(dev, 0x5a, 362 (pci_read_config(dev, 0x5a, 1) & ~0x10), 1); 363 364 } 365 break; 366 367 case 0x05711106: /* VIA 82C586, '596, '686 default setup */ 368 /* prepare for ATA-66 on the 82C686a and rev 0x12 and newer 82C596's */ 369 if ((ata_find_dev(dev, 0x06861106, 0) && 370 !ata_find_dev(dev, 0x06861106, 0x40)) || 371 ata_find_dev(dev, 0x05961106, 0x12)) 372 pci_write_config(dev, 0x50, 0x030b030b, 4); 373 374 /* the '686b might need the data corruption fix */ 375 if (ata_find_dev(dev, 0x06861106, 0x40)) 376 ata_via686b(dev); 377 378 /* FALLTHROUGH */ 379 380 case 0x74091022: /* AMD 756 default setup */ 381 case 0x74111022: /* AMD 766 default setup */ 382 383 /* set prefetch, postwrite */ 384 pci_write_config(dev, 0x41, pci_read_config(dev, 0x41, 1) | 0xf0, 1); 385 386 /* set fifo configuration half'n'half */ 387 pci_write_config(dev, 0x43, 388 (pci_read_config(dev, 0x43, 1) & 0x90) | 0x2a, 1); 389 390 /* set status register read retry */ 391 pci_write_config(dev, 0x44, pci_read_config(dev, 0x44, 1) | 0x08, 1); 392 393 /* set DMA read & end-of-sector fifo flush */ 394 pci_write_config(dev, 0x46, 395 (pci_read_config(dev, 0x46, 1) & 0x0c) | 0xf0, 1); 396 397 /* set sector size */ 398 pci_write_config(dev, 0x60, DEV_BSIZE, 2); 399 pci_write_config(dev, 0x68, DEV_BSIZE, 2); 400 break; 401 402 case 0x10001042: /* RZ 100? known bad, no DMA */ 403 case 0x10011042: 404 case 0x06401095: /* CMD 640 known bad, no DMA */ 405 sc->bmio = NULL; 406 device_printf(dev, "Busmastering DMA disabled\n"); 407 } 408 409 if (sc->bmio) { 410 sc->bmaddr = rman_get_start(sc->bmio); 411 BUS_RELEASE_RESOURCE(device_get_parent(dev), dev, 412 SYS_RES_IOPORT, rid, sc->bmio); 413 sc->bmio = NULL; 414 } 415 416 /* 417 * the Cypress chip is a mess, it contains two ATA functions, but 418 * both channels are visible on the first one. 419 * simply ignore the second function for now, as the right 420 * solution (ignoring the second channel on the first function) 421 * doesn't work with the crappy ATA interrupt setup on the alpha. 422 */ 423 if (pci_get_devid(dev) == 0xc6931080 && pci_get_function(dev) > 1) 424 return 0; 425 426 ata_pci_add_child(dev, 0); 427 428 if (ATA_MASTERDEV(dev) || pci_read_config(dev, 0x18, 4) & IOMASK) 429 ata_pci_add_child(dev, 1); 430 431 return bus_generic_attach(dev); 432 } 433 434 static int 435 ata_pci_intr(struct ata_softc *scp) 436 { 437 u_int8_t dmastat; 438 439 /* 440 * since we might share the IRQ with another device, and in some 441 * cases with our twin channel, we only want to process interrupts 442 * that we know this channel generated. 443 */ 444 switch (scp->chiptype) { 445 case 0x00041103: /* HighPoint HPT366/368/370/372 */ 446 if (((dmastat = ata_dmastatus(scp)) & 447 (ATA_BMSTAT_ACTIVE | ATA_BMSTAT_INTERRUPT)) != ATA_BMSTAT_INTERRUPT) 448 return 1; 449 ATA_OUTB(scp->r_bmio, ATA_BMSTAT_PORT, dmastat | ATA_BMSTAT_INTERRUPT); 450 DELAY(1); 451 return 0; 452 453 case 0x06481095: /* CMD 648 */ 454 case 0x06491095: /* CMD 649 */ 455 if (!(pci_read_config(device_get_parent(scp->dev), 0x71, 1) & 456 (scp->channel ? 0x08 : 0x04))) 457 return 1; 458 break; 459 460 case 0x4d33105a: /* Promise Ultra/Fasttrak 33 */ 461 case 0x4d38105a: /* Promise Ultra/Fasttrak 66 */ 462 case 0x4d30105a: /* Promise Ultra/Fasttrak 100 */ 463 case 0x0d30105a: /* Promise OEM ATA100 */ 464 if (!(ATA_INL(scp->r_bmio, (scp->channel ? 0x14 : 0x1c)) & 465 (scp->channel ? 0x00004000 : 0x00000400))) 466 return 1; 467 break; 468 469 case 0x4d68105a: /* Promise TX2 ATA100 */ 470 case 0x6268105a: /* Promise TX2v2 ATA100 */ 471 case 0x4d69105a: /* Promise ATA133 */ 472 ATA_OUTB(scp->r_bmio, ATA_BMDEVSPEC_0, 0x0b); 473 if (!(ATA_INB(scp->r_bmio, ATA_BMDEVSPEC_1) & 0x20)) 474 return 1; 475 break; 476 } 477 478 if (scp->flags & ATA_DMA_ACTIVE) { 479 if (!((dmastat = ata_dmastatus(scp)) & ATA_BMSTAT_INTERRUPT)) 480 return 1; 481 ATA_OUTB(scp->r_bmio, ATA_BMSTAT_PORT, dmastat | ATA_BMSTAT_INTERRUPT); 482 DELAY(1); 483 } 484 return 0; 485 } 486 487 static int 488 ata_pci_print_child(device_t dev, device_t child) 489 { 490 struct ata_softc *scp = device_get_softc(child); 491 int retval = 0; 492 493 retval += bus_print_child_header(dev, child); 494 retval += printf(": at 0x%lx", rman_get_start(scp->r_io)); 495 496 if (ATA_MASTERDEV(dev)) 497 retval += printf(" irq %d", 14 + scp->channel); 498 499 retval += bus_print_child_footer(dev, child); 500 501 return retval; 502 } 503 504 static struct resource * 505 ata_pci_alloc_resource(device_t dev, device_t child, int type, int *rid, 506 u_long start, u_long end, u_long count, u_int flags) 507 { 508 struct ata_pci_softc *sc = device_get_softc(dev); 509 struct resource *res = NULL; 510 int channel = ((struct ata_softc *)device_get_softc(child))->channel; 511 int myrid; 512 513 if (type == SYS_RES_IOPORT) { 514 switch (*rid) { 515 case ATA_IOADDR_RID: 516 if (ATA_MASTERDEV(dev)) { 517 myrid = 0; 518 start = (channel ? ATA_SECONDARY : ATA_PRIMARY); 519 end = start + ATA_IOSIZE - 1; 520 count = ATA_IOSIZE; 521 res = BUS_ALLOC_RESOURCE(device_get_parent(dev), child, 522 SYS_RES_IOPORT, &myrid, 523 start, end, count, flags); 524 } 525 else { 526 myrid = 0x10 + 8 * channel; 527 res = BUS_ALLOC_RESOURCE(device_get_parent(dev), dev, 528 SYS_RES_IOPORT, &myrid, 529 start, end, count, flags); 530 } 531 break; 532 533 case ATA_ALTADDR_RID: 534 if (ATA_MASTERDEV(dev)) { 535 myrid = 0; 536 start = (channel ? ATA_SECONDARY : ATA_PRIMARY) + ATA_ALTOFFSET; 537 end = start + ATA_ALTIOSIZE - 1; 538 count = ATA_ALTIOSIZE; 539 res = BUS_ALLOC_RESOURCE(device_get_parent(dev), child, 540 SYS_RES_IOPORT, &myrid, 541 start, end, count, flags); 542 } 543 else { 544 myrid = 0x14 + 8 * channel; 545 res = BUS_ALLOC_RESOURCE(device_get_parent(dev), dev, 546 SYS_RES_IOPORT, &myrid, 547 start, end, count, flags); 548 if (res) { 549 start = rman_get_start(res) + 2; 550 end = rman_get_start(res) + ATA_ALTIOSIZE - 1; 551 count = ATA_ALTIOSIZE; 552 BUS_RELEASE_RESOURCE(device_get_parent(dev), dev, 553 SYS_RES_IOPORT, myrid, res); 554 res = BUS_ALLOC_RESOURCE(device_get_parent(dev), dev, 555 SYS_RES_IOPORT, &myrid, 556 start, end, count, flags); 557 } 558 } 559 break; 560 561 case ATA_BMADDR_RID: 562 if (sc->bmaddr) { 563 myrid = 0x20; 564 start = (channel == 0 ? sc->bmaddr : sc->bmaddr + ATA_BMIOSIZE); 565 end = start + ATA_BMIOSIZE - 1; 566 count = ATA_BMIOSIZE; 567 res = BUS_ALLOC_RESOURCE(device_get_parent(dev), child, 568 SYS_RES_IOPORT, &myrid, 569 start, end, count, flags); 570 } 571 } 572 return res; 573 } 574 575 if (type == SYS_RES_IRQ && *rid == ATA_IRQ_RID) { 576 if (ATA_MASTERDEV(dev)) { 577 #ifdef __alpha__ 578 return alpha_platform_alloc_ide_intr(channel); 579 #else 580 int irq = (channel == 0 ? 14 : 15); 581 582 return BUS_ALLOC_RESOURCE(device_get_parent(dev), child, 583 SYS_RES_IRQ, rid, irq, irq, 1, flags); 584 #endif 585 } 586 else { 587 /* primary and secondary channels share interrupt, keep track */ 588 if (!sc->irq) 589 sc->irq = BUS_ALLOC_RESOURCE(device_get_parent(dev), dev, 590 SYS_RES_IRQ, rid, 0, ~0, 1, flags); 591 sc->irqcnt++; 592 return sc->irq; 593 } 594 } 595 return 0; 596 } 597 598 static int 599 ata_pci_release_resource(device_t dev, device_t child, int type, int rid, 600 struct resource *r) 601 { 602 struct ata_pci_softc *sc = device_get_softc(dev); 603 int channel = ((struct ata_softc *)device_get_softc(child))->channel; 604 605 if (type == SYS_RES_IOPORT) { 606 switch (rid) { 607 case ATA_IOADDR_RID: 608 if (ATA_MASTERDEV(dev)) 609 return BUS_RELEASE_RESOURCE(device_get_parent(dev), child, 610 SYS_RES_IOPORT, 0x0, r); 611 else 612 return BUS_RELEASE_RESOURCE(device_get_parent(dev), dev, 613 SYS_RES_IOPORT, 0x10+8*channel, r); 614 break; 615 616 case ATA_ALTADDR_RID: 617 if (ATA_MASTERDEV(dev)) 618 return BUS_RELEASE_RESOURCE(device_get_parent(dev), child, 619 SYS_RES_IOPORT, 0x0, r); 620 else 621 return BUS_RELEASE_RESOURCE(device_get_parent(dev), dev, 622 SYS_RES_IOPORT, 0x14+8*channel, r); 623 break; 624 625 case ATA_BMADDR_RID: 626 return BUS_RELEASE_RESOURCE(device_get_parent(dev), child, 627 SYS_RES_IOPORT, 0x20, r); 628 default: 629 return ENOENT; 630 } 631 } 632 if (type == SYS_RES_IRQ) { 633 if (rid != ATA_IRQ_RID) 634 return ENOENT; 635 636 if (ATA_MASTERDEV(dev)) { 637 #ifdef __alpha__ 638 return alpha_platform_release_ide_intr(channel, r); 639 #else 640 return BUS_RELEASE_RESOURCE(device_get_parent(dev), child, 641 SYS_RES_IRQ, rid, r); 642 #endif 643 } 644 else { 645 /* primary and secondary channels share interrupt, keep track */ 646 if (--sc->irqcnt) 647 return 0; 648 sc->irq = 0; 649 return BUS_RELEASE_RESOURCE(device_get_parent(dev), dev, 650 SYS_RES_IRQ, rid, r); 651 } 652 } 653 return EINVAL; 654 } 655 656 static int 657 ata_pci_setup_intr(device_t dev, device_t child, struct resource *irq, 658 int flags, driver_intr_t *intr, void *arg, 659 void **cookiep) 660 { 661 if (ATA_MASTERDEV(dev)) { 662 #ifdef __alpha__ 663 return alpha_platform_setup_ide_intr(child, irq, intr, arg, cookiep); 664 #else 665 return BUS_SETUP_INTR(device_get_parent(dev), child, irq, 666 flags, intr, arg, cookiep); 667 #endif 668 } 669 else 670 return BUS_SETUP_INTR(device_get_parent(dev), dev, irq, 671 flags, intr, arg, cookiep); 672 } 673 674 static int 675 ata_pci_teardown_intr(device_t dev, device_t child, struct resource *irq, 676 void *cookie) 677 { 678 if (ATA_MASTERDEV(dev)) { 679 #ifdef __alpha__ 680 return alpha_platform_teardown_ide_intr(child, irq, cookie); 681 #else 682 return BUS_TEARDOWN_INTR(device_get_parent(dev), child, irq, cookie); 683 #endif 684 } 685 else 686 return BUS_TEARDOWN_INTR(device_get_parent(dev), dev, irq, cookie); 687 } 688 689 static device_method_t ata_pci_methods[] = { 690 /* device interface */ 691 DEVMETHOD(device_probe, ata_pci_probe), 692 DEVMETHOD(device_attach, ata_pci_attach), 693 DEVMETHOD(device_shutdown, bus_generic_shutdown), 694 DEVMETHOD(device_suspend, bus_generic_suspend), 695 DEVMETHOD(device_resume, bus_generic_resume), 696 697 /* bus methods */ 698 DEVMETHOD(bus_print_child, ata_pci_print_child), 699 DEVMETHOD(bus_alloc_resource, ata_pci_alloc_resource), 700 DEVMETHOD(bus_release_resource, ata_pci_release_resource), 701 DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 702 DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 703 DEVMETHOD(bus_setup_intr, ata_pci_setup_intr), 704 DEVMETHOD(bus_teardown_intr, ata_pci_teardown_intr), 705 { 0, 0 } 706 }; 707 708 static driver_t ata_pci_driver = { 709 "atapci", 710 ata_pci_methods, 711 sizeof(struct ata_pci_softc), 712 }; 713 714 static devclass_t ata_pci_devclass; 715 716 DRIVER_MODULE(atapci, pci, ata_pci_driver, ata_pci_devclass, 0, 0); 717 718 static int 719 ata_pcisub_probe(device_t dev) 720 { 721 struct ata_softc *scp = device_get_softc(dev); 722 device_t *children; 723 int count, i; 724 725 /* find channel number on this controller */ 726 device_get_children(device_get_parent(dev), &children, &count); 727 for (i = 0; i < count; i++) { 728 if (children[i] == dev) 729 scp->channel = i; 730 } 731 free(children, M_TEMP); 732 scp->chiptype = pci_get_devid(device_get_parent(dev)); 733 scp->intr_func = ata_pci_intr; 734 return ata_probe(dev); 735 } 736 737 static device_method_t ata_pcisub_methods[] = { 738 /* device interface */ 739 DEVMETHOD(device_probe, ata_pcisub_probe), 740 DEVMETHOD(device_attach, ata_attach), 741 DEVMETHOD(device_detach, ata_detach), 742 DEVMETHOD(device_resume, ata_resume), 743 { 0, 0 } 744 }; 745 746 static driver_t ata_pcisub_driver = { 747 "ata", 748 ata_pcisub_methods, 749 sizeof(struct ata_softc), 750 }; 751 752 DRIVER_MODULE(ata, atapci, ata_pcisub_driver, ata_devclass, 0, 0); 753