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