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