1 /*- 2 * Copyright (c) 1998 - 2008 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 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include "opt_ata.h" 31 #include <sys/param.h> 32 #include <sys/systm.h> 33 #include <sys/ata.h> 34 #include <sys/kernel.h> 35 #include <sys/module.h> 36 #include <sys/endian.h> 37 #include <sys/ctype.h> 38 #include <sys/conf.h> 39 #include <sys/bus.h> 40 #include <sys/bio.h> 41 #include <sys/malloc.h> 42 #include <sys/sysctl.h> 43 #include <sys/sema.h> 44 #include <sys/taskqueue.h> 45 #include <vm/uma.h> 46 #include <machine/stdarg.h> 47 #include <machine/resource.h> 48 #include <machine/bus.h> 49 #include <sys/rman.h> 50 #include <dev/ata/ata-all.h> 51 #include <ata_if.h> 52 53 /* device structure */ 54 static d_ioctl_t ata_ioctl; 55 static struct cdevsw ata_cdevsw = { 56 .d_version = D_VERSION, 57 .d_flags = D_NEEDGIANT, /* we need this as newbus isn't mpsafe */ 58 .d_ioctl = ata_ioctl, 59 .d_name = "ata", 60 }; 61 62 /* prototypes */ 63 static void ata_boot_attach(void); 64 static device_t ata_add_child(device_t, struct ata_device *, int); 65 static void ata_conn_event(void *, int); 66 static void bswap(int8_t *, int); 67 static void btrim(int8_t *, int); 68 static void bpack(int8_t *, int8_t *, int); 69 70 /* global vars */ 71 MALLOC_DEFINE(M_ATA, "ata_generic", "ATA driver generic layer"); 72 int (*ata_raid_ioctl_func)(u_long cmd, caddr_t data) = NULL; 73 struct intr_config_hook *ata_delayed_attach = NULL; 74 devclass_t ata_devclass; 75 uma_zone_t ata_request_zone; 76 uma_zone_t ata_composite_zone; 77 int ata_wc = 1; 78 int ata_setmax = 0; 79 int ata_dma_check_80pin = 1; 80 81 /* local vars */ 82 static int ata_dma = 1; 83 static int atapi_dma = 1; 84 85 /* sysctl vars */ 86 SYSCTL_NODE(_hw, OID_AUTO, ata, CTLFLAG_RD, 0, "ATA driver parameters"); 87 TUNABLE_INT("hw.ata.ata_dma", &ata_dma); 88 SYSCTL_INT(_hw_ata, OID_AUTO, ata_dma, CTLFLAG_RDTUN, &ata_dma, 0, 89 "ATA disk DMA mode control"); 90 TUNABLE_INT("hw.ata.ata_dma_check_80pin", &ata_dma_check_80pin); 91 SYSCTL_INT(_hw_ata, OID_AUTO, ata_dma_check_80pin, 92 CTLFLAG_RDTUN, &ata_dma_check_80pin, 1, 93 "Check for 80pin cable before setting ATA DMA mode"); 94 TUNABLE_INT("hw.ata.atapi_dma", &atapi_dma); 95 SYSCTL_INT(_hw_ata, OID_AUTO, atapi_dma, CTLFLAG_RDTUN, &atapi_dma, 0, 96 "ATAPI device DMA mode control"); 97 TUNABLE_INT("hw.ata.wc", &ata_wc); 98 SYSCTL_INT(_hw_ata, OID_AUTO, wc, CTLFLAG_RDTUN, &ata_wc, 0, 99 "ATA disk write caching"); 100 TUNABLE_INT("hw.ata.setmax", &ata_setmax); 101 SYSCTL_INT(_hw_ata, OID_AUTO, setmax, CTLFLAG_RDTUN, &ata_setmax, 0, 102 "ATA disk set max native address"); 103 104 /* 105 * newbus device interface related functions 106 */ 107 int 108 ata_probe(device_t dev) 109 { 110 return 0; 111 } 112 113 int 114 ata_attach(device_t dev) 115 { 116 struct ata_channel *ch = device_get_softc(dev); 117 int error, rid; 118 119 /* check that we have a virgin channel to attach */ 120 if (ch->r_irq) 121 return EEXIST; 122 123 /* initialize the softc basics */ 124 ch->dev = dev; 125 ch->state = ATA_IDLE; 126 bzero(&ch->state_mtx, sizeof(struct mtx)); 127 mtx_init(&ch->state_mtx, "ATA state lock", NULL, MTX_DEF); 128 bzero(&ch->queue_mtx, sizeof(struct mtx)); 129 mtx_init(&ch->queue_mtx, "ATA queue lock", NULL, MTX_DEF); 130 TAILQ_INIT(&ch->ata_queue); 131 TASK_INIT(&ch->conntask, 0, ata_conn_event, dev); 132 133 /* reset the controller HW, the channel and device(s) */ 134 while (ATA_LOCKING(dev, ATA_LF_LOCK) != ch->unit) 135 pause("ataatch", 1); 136 ATA_RESET(dev); 137 ATA_LOCKING(dev, ATA_LF_UNLOCK); 138 139 /* allocate DMA resources if DMA HW present*/ 140 if (ch->dma.alloc) 141 ch->dma.alloc(dev); 142 143 /* setup interrupt delivery */ 144 rid = ATA_IRQ_RID; 145 ch->r_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, 146 RF_SHAREABLE | RF_ACTIVE); 147 if (!ch->r_irq) { 148 device_printf(dev, "unable to allocate interrupt\n"); 149 return ENXIO; 150 } 151 if ((error = bus_setup_intr(dev, ch->r_irq, ATA_INTR_FLAGS, NULL, 152 ata_interrupt, ch, &ch->ih))) { 153 device_printf(dev, "unable to setup interrupt\n"); 154 return error; 155 } 156 157 /* probe and attach devices on this channel unless we are in early boot */ 158 if (!ata_delayed_attach) 159 ata_identify(dev); 160 return 0; 161 } 162 163 int 164 ata_detach(device_t dev) 165 { 166 struct ata_channel *ch = device_get_softc(dev); 167 device_t *children; 168 int nchildren, i; 169 170 /* check that we have a valid channel to detach */ 171 if (!ch->r_irq) 172 return ENXIO; 173 174 /* grap the channel lock so no new requests gets launched */ 175 mtx_lock(&ch->state_mtx); 176 ch->state |= ATA_STALL_QUEUE; 177 mtx_unlock(&ch->state_mtx); 178 179 /* detach & delete all children */ 180 if (!device_get_children(dev, &children, &nchildren)) { 181 for (i = 0; i < nchildren; i++) 182 if (children[i]) 183 device_delete_child(dev, children[i]); 184 free(children, M_TEMP); 185 } 186 taskqueue_drain(taskqueue_thread, &ch->conntask); 187 188 /* release resources */ 189 bus_teardown_intr(dev, ch->r_irq, ch->ih); 190 bus_release_resource(dev, SYS_RES_IRQ, ATA_IRQ_RID, ch->r_irq); 191 ch->r_irq = NULL; 192 193 /* free DMA resources if DMA HW present*/ 194 if (ch->dma.free) 195 ch->dma.free(dev); 196 197 mtx_destroy(&ch->state_mtx); 198 mtx_destroy(&ch->queue_mtx); 199 return 0; 200 } 201 202 static void 203 ata_conn_event(void *context, int dummy) 204 { 205 device_t dev = (device_t)context; 206 207 ata_reinit(dev); 208 } 209 210 int 211 ata_reinit(device_t dev) 212 { 213 struct ata_channel *ch = device_get_softc(dev); 214 struct ata_request *request; 215 device_t *children; 216 int nchildren, i; 217 218 /* check that we have a valid channel to reinit */ 219 if (!ch || !ch->r_irq) 220 return ENXIO; 221 222 if (bootverbose) 223 device_printf(dev, "reiniting channel ..\n"); 224 225 /* poll for locking the channel */ 226 while (ATA_LOCKING(dev, ATA_LF_LOCK) != ch->unit) 227 pause("atarini", 1); 228 229 /* catch eventual request in ch->running */ 230 mtx_lock(&ch->state_mtx); 231 if (ch->state & ATA_STALL_QUEUE) { 232 /* Recursive reinits and reinits during detach prohobited. */ 233 mtx_unlock(&ch->state_mtx); 234 return (ENXIO); 235 } 236 if ((request = ch->running)) 237 callout_stop(&request->callout); 238 ch->running = NULL; 239 240 /* unconditionally grap the channel lock */ 241 ch->state |= ATA_STALL_QUEUE; 242 mtx_unlock(&ch->state_mtx); 243 244 /* reset the controller HW, the channel and device(s) */ 245 ATA_RESET(dev); 246 247 /* reinit the children and delete any that fails */ 248 if (!device_get_children(dev, &children, &nchildren)) { 249 mtx_lock(&Giant); /* newbus suckage it needs Giant */ 250 for (i = 0; i < nchildren; i++) { 251 /* did any children go missing ? */ 252 if (children[i] && device_is_attached(children[i]) && 253 ATA_REINIT(children[i])) { 254 /* 255 * if we had a running request and its device matches 256 * this child we need to inform the request that the 257 * device is gone. 258 */ 259 if (request && request->dev == children[i]) { 260 request->result = ENXIO; 261 device_printf(request->dev, "FAILURE - device detached\n"); 262 263 /* if not timeout finish request here */ 264 if (!(request->flags & ATA_R_TIMEOUT)) 265 ata_finish(request); 266 request = NULL; 267 } 268 device_delete_child(dev, children[i]); 269 } 270 } 271 free(children, M_TEMP); 272 mtx_unlock(&Giant); /* newbus suckage dealt with, release Giant */ 273 } 274 275 /* if we still have a good request put it on the queue again */ 276 if (request && !(request->flags & ATA_R_TIMEOUT)) { 277 device_printf(request->dev, 278 "WARNING - %s requeued due to channel reset", 279 ata_cmd2str(request)); 280 if (!(request->flags & (ATA_R_ATAPI | ATA_R_CONTROL))) 281 printf(" LBA=%ju", request->u.ata.lba); 282 printf("\n"); 283 request->flags |= ATA_R_REQUEUE; 284 ata_queue_request(request); 285 } 286 287 /* we're done release the channel for new work */ 288 mtx_lock(&ch->state_mtx); 289 ch->state = ATA_IDLE; 290 mtx_unlock(&ch->state_mtx); 291 ATA_LOCKING(dev, ATA_LF_UNLOCK); 292 293 /* Add new children. */ 294 ata_identify(dev); 295 296 if (bootverbose) 297 device_printf(dev, "reinit done ..\n"); 298 299 /* kick off requests on the queue */ 300 ata_start(dev); 301 return 0; 302 } 303 304 int 305 ata_suspend(device_t dev) 306 { 307 struct ata_channel *ch; 308 309 /* check for valid device */ 310 if (!dev || !(ch = device_get_softc(dev))) 311 return ENXIO; 312 313 /* wait for the channel to be IDLE or detached before suspending */ 314 while (ch->r_irq) { 315 mtx_lock(&ch->state_mtx); 316 if (ch->state == ATA_IDLE) { 317 ch->state = ATA_ACTIVE; 318 mtx_unlock(&ch->state_mtx); 319 break; 320 } 321 mtx_unlock(&ch->state_mtx); 322 tsleep(ch, PRIBIO, "atasusp", hz/10); 323 } 324 ATA_LOCKING(dev, ATA_LF_UNLOCK); 325 return 0; 326 } 327 328 int 329 ata_resume(device_t dev) 330 { 331 int error; 332 333 /* check for valid device */ 334 if (!dev || !device_get_softc(dev)) 335 return ENXIO; 336 337 /* reinit the devices, we dont know what mode/state they are in */ 338 error = ata_reinit(dev); 339 340 /* kick off requests on the queue */ 341 ata_start(dev); 342 return error; 343 } 344 345 void 346 ata_interrupt(void *data) 347 { 348 struct ata_channel *ch = (struct ata_channel *)data; 349 struct ata_request *request; 350 351 mtx_lock(&ch->state_mtx); 352 do { 353 /* ignore interrupt if its not for us */ 354 if (ch->hw.status && !ch->hw.status(ch->dev)) 355 break; 356 357 /* do we have a running request */ 358 if (!(request = ch->running)) 359 break; 360 361 ATA_DEBUG_RQ(request, "interrupt"); 362 363 /* safetycheck for the right state */ 364 if (ch->state == ATA_IDLE) { 365 device_printf(request->dev, "interrupt on idle channel ignored\n"); 366 break; 367 } 368 369 /* 370 * we have the HW locks, so end the transaction for this request 371 * if it finishes immediately otherwise wait for next interrupt 372 */ 373 if (ch->hw.end_transaction(request) == ATA_OP_FINISHED) { 374 ch->running = NULL; 375 if (ch->state == ATA_ACTIVE) 376 ch->state = ATA_IDLE; 377 mtx_unlock(&ch->state_mtx); 378 ATA_LOCKING(ch->dev, ATA_LF_UNLOCK); 379 ata_finish(request); 380 return; 381 } 382 } while (0); 383 mtx_unlock(&ch->state_mtx); 384 } 385 386 /* 387 * device related interfaces 388 */ 389 static int 390 ata_ioctl(struct cdev *dev, u_long cmd, caddr_t data, 391 int32_t flag, struct thread *td) 392 { 393 device_t device, *children; 394 struct ata_ioc_devices *devices = (struct ata_ioc_devices *)data; 395 int *value = (int *)data; 396 int i, nchildren, error = ENOTTY; 397 398 switch (cmd) { 399 case IOCATAGMAXCHANNEL: 400 /* In case we have channel 0..n this will return n+1. */ 401 *value = devclass_get_maxunit(ata_devclass); 402 error = 0; 403 break; 404 405 case IOCATAREINIT: 406 if (*value >= devclass_get_maxunit(ata_devclass) || 407 !(device = devclass_get_device(ata_devclass, *value)) || 408 !device_is_attached(device)) 409 return ENXIO; 410 error = ata_reinit(device); 411 break; 412 413 case IOCATAATTACH: 414 if (*value >= devclass_get_maxunit(ata_devclass) || 415 !(device = devclass_get_device(ata_devclass, *value)) || 416 !device_is_attached(device)) 417 return ENXIO; 418 error = DEVICE_ATTACH(device); 419 break; 420 421 case IOCATADETACH: 422 if (*value >= devclass_get_maxunit(ata_devclass) || 423 !(device = devclass_get_device(ata_devclass, *value)) || 424 !device_is_attached(device)) 425 return ENXIO; 426 error = DEVICE_DETACH(device); 427 break; 428 429 case IOCATADEVICES: 430 if (devices->channel >= devclass_get_maxunit(ata_devclass) || 431 !(device = devclass_get_device(ata_devclass, devices->channel)) || 432 !device_is_attached(device)) 433 return ENXIO; 434 bzero(devices->name[0], 32); 435 bzero(&devices->params[0], sizeof(struct ata_params)); 436 bzero(devices->name[1], 32); 437 bzero(&devices->params[1], sizeof(struct ata_params)); 438 if (!device_get_children(device, &children, &nchildren)) { 439 for (i = 0; i < nchildren; i++) { 440 if (children[i] && device_is_attached(children[i])) { 441 struct ata_device *atadev = device_get_softc(children[i]); 442 443 if (atadev->unit == ATA_MASTER) { /* XXX SOS PM */ 444 strncpy(devices->name[0], 445 device_get_nameunit(children[i]), 32); 446 bcopy(&atadev->param, &devices->params[0], 447 sizeof(struct ata_params)); 448 } 449 if (atadev->unit == ATA_SLAVE) { /* XXX SOS PM */ 450 strncpy(devices->name[1], 451 device_get_nameunit(children[i]), 32); 452 bcopy(&atadev->param, &devices->params[1], 453 sizeof(struct ata_params)); 454 } 455 } 456 } 457 free(children, M_TEMP); 458 error = 0; 459 } 460 else 461 error = ENODEV; 462 break; 463 464 default: 465 if (ata_raid_ioctl_func) 466 error = ata_raid_ioctl_func(cmd, data); 467 } 468 return error; 469 } 470 471 int 472 ata_device_ioctl(device_t dev, u_long cmd, caddr_t data) 473 { 474 struct ata_device *atadev = device_get_softc(dev); 475 struct ata_ioc_request *ioc_request = (struct ata_ioc_request *)data; 476 struct ata_params *params = (struct ata_params *)data; 477 int *mode = (int *)data; 478 struct ata_request *request; 479 caddr_t buf; 480 int error; 481 482 switch (cmd) { 483 case IOCATAREQUEST: 484 if (!(buf = malloc(ioc_request->count, M_ATA, M_NOWAIT))) { 485 return ENOMEM; 486 } 487 if (!(request = ata_alloc_request())) { 488 free(buf, M_ATA); 489 return ENOMEM; 490 } 491 request->dev = atadev->dev; 492 if (ioc_request->flags & ATA_CMD_WRITE) { 493 error = copyin(ioc_request->data, buf, ioc_request->count); 494 if (error) { 495 free(buf, M_ATA); 496 ata_free_request(request); 497 return error; 498 } 499 } 500 if (ioc_request->flags & ATA_CMD_ATAPI) { 501 request->flags = ATA_R_ATAPI; 502 bcopy(ioc_request->u.atapi.ccb, request->u.atapi.ccb, 16); 503 } 504 else { 505 request->u.ata.command = ioc_request->u.ata.command; 506 request->u.ata.feature = ioc_request->u.ata.feature; 507 request->u.ata.lba = ioc_request->u.ata.lba; 508 request->u.ata.count = ioc_request->u.ata.count; 509 } 510 request->timeout = ioc_request->timeout; 511 request->data = buf; 512 request->bytecount = ioc_request->count; 513 request->transfersize = request->bytecount; 514 if (ioc_request->flags & ATA_CMD_CONTROL) 515 request->flags |= ATA_R_CONTROL; 516 if (ioc_request->flags & ATA_CMD_READ) 517 request->flags |= ATA_R_READ; 518 if (ioc_request->flags & ATA_CMD_WRITE) 519 request->flags |= ATA_R_WRITE; 520 ata_queue_request(request); 521 if (request->flags & ATA_R_ATAPI) { 522 bcopy(&request->u.atapi.sense, &ioc_request->u.atapi.sense, 523 sizeof(struct atapi_sense)); 524 } 525 else { 526 ioc_request->u.ata.command = request->u.ata.command; 527 ioc_request->u.ata.feature = request->u.ata.feature; 528 ioc_request->u.ata.lba = request->u.ata.lba; 529 ioc_request->u.ata.count = request->u.ata.count; 530 } 531 ioc_request->error = request->result; 532 if (ioc_request->flags & ATA_CMD_READ) 533 error = copyout(buf, ioc_request->data, ioc_request->count); 534 else 535 error = 0; 536 free(buf, M_ATA); 537 ata_free_request(request); 538 return error; 539 540 case IOCATAGPARM: 541 ata_getparam(atadev, 0); 542 bcopy(&atadev->param, params, sizeof(struct ata_params)); 543 return 0; 544 545 case IOCATASMODE: 546 atadev->mode = *mode; 547 ATA_SETMODE(device_get_parent(dev), dev); 548 return 0; 549 550 case IOCATAGMODE: 551 *mode = atadev->mode; 552 return 0; 553 case IOCATASSPINDOWN: 554 atadev->spindown = *mode; 555 return 0; 556 case IOCATAGSPINDOWN: 557 *mode = atadev->spindown; 558 return 0; 559 default: 560 return ENOTTY; 561 } 562 } 563 564 static void 565 ata_boot_attach(void) 566 { 567 struct ata_channel *ch; 568 int ctlr; 569 570 mtx_lock(&Giant); /* newbus suckage it needs Giant */ 571 572 /* kick of probe and attach on all channels */ 573 for (ctlr = 0; ctlr < devclass_get_maxunit(ata_devclass); ctlr++) { 574 if ((ch = devclass_get_softc(ata_devclass, ctlr))) { 575 ata_identify(ch->dev); 576 } 577 } 578 579 /* release the hook that got us here, we are only needed once during boot */ 580 if (ata_delayed_attach) { 581 config_intrhook_disestablish(ata_delayed_attach); 582 free(ata_delayed_attach, M_TEMP); 583 ata_delayed_attach = NULL; 584 } 585 586 mtx_unlock(&Giant); /* newbus suckage dealt with, release Giant */ 587 } 588 589 590 /* 591 * misc support functions 592 */ 593 static device_t 594 ata_add_child(device_t parent, struct ata_device *atadev, int unit) 595 { 596 device_t child; 597 598 if ((child = device_add_child(parent, NULL, unit))) { 599 device_set_softc(child, atadev); 600 device_quiet(child); 601 atadev->dev = child; 602 atadev->max_iosize = DEV_BSIZE; 603 atadev->mode = ATA_PIO_MAX; 604 } 605 return child; 606 } 607 608 int 609 ata_getparam(struct ata_device *atadev, int init) 610 { 611 struct ata_channel *ch = device_get_softc(device_get_parent(atadev->dev)); 612 struct ata_request *request; 613 u_int8_t command = 0; 614 int error = ENOMEM, retries = 2; 615 616 if (ch->devices & (ATA_ATA_MASTER << atadev->unit)) 617 command = ATA_ATA_IDENTIFY; 618 if (ch->devices & (ATA_ATAPI_MASTER << atadev->unit)) 619 command = ATA_ATAPI_IDENTIFY; 620 if (!command) 621 return ENXIO; 622 623 while (retries-- > 0 && error) { 624 if (!(request = ata_alloc_request())) 625 break; 626 request->dev = atadev->dev; 627 request->timeout = 1; 628 request->retries = 0; 629 request->u.ata.command = command; 630 request->flags = (ATA_R_READ|ATA_R_AT_HEAD|ATA_R_THREAD|ATA_R_QUIET); 631 request->data = (void *)&atadev->param; 632 request->bytecount = sizeof(struct ata_params); 633 request->donecount = 0; 634 request->transfersize = DEV_BSIZE; 635 ata_queue_request(request); 636 error = request->result; 637 ata_free_request(request); 638 } 639 640 if (!error && (isprint(atadev->param.model[0]) || 641 isprint(atadev->param.model[1]))) { 642 struct ata_params *atacap = &atadev->param; 643 int16_t *ptr; 644 645 for (ptr = (int16_t *)atacap; 646 ptr < (int16_t *)atacap + sizeof(struct ata_params)/2; ptr++) { 647 *ptr = le16toh(*ptr); 648 } 649 if (!(!strncmp(atacap->model, "FX", 2) || 650 !strncmp(atacap->model, "NEC", 3) || 651 !strncmp(atacap->model, "Pioneer", 7) || 652 !strncmp(atacap->model, "SHARP", 5))) { 653 bswap(atacap->model, sizeof(atacap->model)); 654 bswap(atacap->revision, sizeof(atacap->revision)); 655 bswap(atacap->serial, sizeof(atacap->serial)); 656 } 657 btrim(atacap->model, sizeof(atacap->model)); 658 bpack(atacap->model, atacap->model, sizeof(atacap->model)); 659 btrim(atacap->revision, sizeof(atacap->revision)); 660 bpack(atacap->revision, atacap->revision, sizeof(atacap->revision)); 661 btrim(atacap->serial, sizeof(atacap->serial)); 662 bpack(atacap->serial, atacap->serial, sizeof(atacap->serial)); 663 664 if (bootverbose) 665 printf("ata%d-%s: pio=%s wdma=%s udma=%s cable=%s wire\n", 666 device_get_unit(ch->dev), 667 ata_unit2str(atadev), 668 ata_mode2str(ata_pmode(atacap)), 669 ata_mode2str(ata_wmode(atacap)), 670 ata_mode2str(ata_umode(atacap)), 671 (atacap->hwres & ATA_CABLE_ID) ? "80":"40"); 672 673 if (init) { 674 char buffer[64]; 675 676 sprintf(buffer, "%.40s/%.8s", atacap->model, atacap->revision); 677 device_set_desc_copy(atadev->dev, buffer); 678 if ((atadev->param.config & ATA_PROTO_ATAPI) && 679 (atadev->param.config != ATA_CFA_MAGIC1) && 680 (atadev->param.config != ATA_CFA_MAGIC2)) { 681 if (atapi_dma && 682 (atadev->param.config & ATA_DRQ_MASK) != ATA_DRQ_INTR && 683 ata_umode(&atadev->param) >= ATA_UDMA2) 684 atadev->mode = ATA_DMA_MAX; 685 } 686 else { 687 if (ata_dma && 688 (ata_umode(&atadev->param) > 0 || 689 ata_wmode(&atadev->param) > 0)) 690 atadev->mode = ATA_DMA_MAX; 691 } 692 } 693 } 694 else { 695 if (!error) 696 error = ENXIO; 697 } 698 return error; 699 } 700 701 int 702 ata_identify(device_t dev) 703 { 704 struct ata_channel *ch = device_get_softc(dev); 705 struct ata_device *atadev; 706 device_t *children; 707 device_t child; 708 int nchildren, i, n = ch->devices; 709 710 if (bootverbose) 711 device_printf(dev, "Identifying devices: %08x\n", ch->devices); 712 713 mtx_lock(&Giant); 714 /* Skip existing devices. */ 715 if (!device_get_children(dev, &children, &nchildren)) { 716 for (i = 0; i < nchildren; i++) { 717 if (children[i] && (atadev = device_get_softc(children[i]))) 718 n &= ~((ATA_ATA_MASTER | ATA_ATAPI_MASTER) << atadev->unit); 719 } 720 free(children, M_TEMP); 721 } 722 /* Create new devices. */ 723 if (bootverbose) 724 device_printf(dev, "New devices: %08x\n", n); 725 if (n == 0) { 726 mtx_unlock(&Giant); 727 return (0); 728 } 729 for (i = 0; i < ATA_PM; ++i) { 730 if (n & (((ATA_ATA_MASTER | ATA_ATAPI_MASTER) << i))) { 731 int unit = -1; 732 733 if (!(atadev = malloc(sizeof(struct ata_device), 734 M_ATA, M_NOWAIT | M_ZERO))) { 735 device_printf(dev, "out of memory\n"); 736 return ENOMEM; 737 } 738 atadev->unit = i; 739 #ifdef ATA_STATIC_ID 740 if (n & (ATA_ATA_MASTER << i)) 741 unit = (device_get_unit(dev) << 1) + i; 742 #endif 743 if ((child = ata_add_child(dev, atadev, unit))) { 744 if (ata_getparam(atadev, 1)) { 745 device_delete_child(dev, child); 746 free(atadev, M_ATA); 747 } 748 } 749 else 750 free(atadev, M_ATA); 751 } 752 } 753 bus_generic_probe(dev); 754 bus_generic_attach(dev); 755 mtx_unlock(&Giant); 756 return 0; 757 } 758 759 void 760 ata_default_registers(device_t dev) 761 { 762 struct ata_channel *ch = device_get_softc(dev); 763 764 /* fill in the defaults from whats setup already */ 765 ch->r_io[ATA_ERROR].res = ch->r_io[ATA_FEATURE].res; 766 ch->r_io[ATA_ERROR].offset = ch->r_io[ATA_FEATURE].offset; 767 ch->r_io[ATA_IREASON].res = ch->r_io[ATA_COUNT].res; 768 ch->r_io[ATA_IREASON].offset = ch->r_io[ATA_COUNT].offset; 769 ch->r_io[ATA_STATUS].res = ch->r_io[ATA_COMMAND].res; 770 ch->r_io[ATA_STATUS].offset = ch->r_io[ATA_COMMAND].offset; 771 ch->r_io[ATA_ALTSTAT].res = ch->r_io[ATA_CONTROL].res; 772 ch->r_io[ATA_ALTSTAT].offset = ch->r_io[ATA_CONTROL].offset; 773 } 774 775 void 776 ata_modify_if_48bit(struct ata_request *request) 777 { 778 struct ata_channel *ch = device_get_softc(device_get_parent(request->dev)); 779 struct ata_device *atadev = device_get_softc(request->dev); 780 781 atadev->flags &= ~ATA_D_48BIT_ACTIVE; 782 783 if (((request->u.ata.lba + request->u.ata.count) >= ATA_MAX_28BIT_LBA || 784 request->u.ata.count > 256) && 785 atadev->param.support.command2 & ATA_SUPPORT_ADDRESS48) { 786 787 /* translate command into 48bit version */ 788 switch (request->u.ata.command) { 789 case ATA_READ: 790 request->u.ata.command = ATA_READ48; 791 break; 792 case ATA_READ_MUL: 793 request->u.ata.command = ATA_READ_MUL48; 794 break; 795 case ATA_READ_DMA: 796 if (ch->flags & ATA_NO_48BIT_DMA) { 797 if (request->transfersize > DEV_BSIZE) 798 request->u.ata.command = ATA_READ_MUL48; 799 else 800 request->u.ata.command = ATA_READ48; 801 request->flags &= ~ATA_R_DMA; 802 } 803 else 804 request->u.ata.command = ATA_READ_DMA48; 805 break; 806 case ATA_READ_DMA_QUEUED: 807 if (ch->flags & ATA_NO_48BIT_DMA) { 808 if (request->transfersize > DEV_BSIZE) 809 request->u.ata.command = ATA_READ_MUL48; 810 else 811 request->u.ata.command = ATA_READ48; 812 request->flags &= ~ATA_R_DMA; 813 } 814 else 815 request->u.ata.command = ATA_READ_DMA_QUEUED48; 816 break; 817 case ATA_WRITE: 818 request->u.ata.command = ATA_WRITE48; 819 break; 820 case ATA_WRITE_MUL: 821 request->u.ata.command = ATA_WRITE_MUL48; 822 break; 823 case ATA_WRITE_DMA: 824 if (ch->flags & ATA_NO_48BIT_DMA) { 825 if (request->transfersize > DEV_BSIZE) 826 request->u.ata.command = ATA_WRITE_MUL48; 827 else 828 request->u.ata.command = ATA_WRITE48; 829 request->flags &= ~ATA_R_DMA; 830 } 831 else 832 request->u.ata.command = ATA_WRITE_DMA48; 833 break; 834 case ATA_WRITE_DMA_QUEUED: 835 if (ch->flags & ATA_NO_48BIT_DMA) { 836 if (request->transfersize > DEV_BSIZE) 837 request->u.ata.command = ATA_WRITE_MUL48; 838 else 839 request->u.ata.command = ATA_WRITE48; 840 request->u.ata.command = ATA_WRITE48; 841 request->flags &= ~ATA_R_DMA; 842 } 843 else 844 request->u.ata.command = ATA_WRITE_DMA_QUEUED48; 845 break; 846 case ATA_FLUSHCACHE: 847 request->u.ata.command = ATA_FLUSHCACHE48; 848 break; 849 case ATA_SET_MAX_ADDRESS: 850 request->u.ata.command = ATA_SET_MAX_ADDRESS48; 851 break; 852 default: 853 return; 854 } 855 atadev->flags |= ATA_D_48BIT_ACTIVE; 856 } 857 else if (atadev->param.support.command2 & ATA_SUPPORT_ADDRESS48) { 858 859 /* translate command into 48bit version */ 860 switch (request->u.ata.command) { 861 case ATA_FLUSHCACHE: 862 request->u.ata.command = ATA_FLUSHCACHE48; 863 break; 864 case ATA_READ_NATIVE_MAX_ADDRESS: 865 request->u.ata.command = ATA_READ_NATIVE_MAX_ADDRESS48; 866 break; 867 case ATA_SET_MAX_ADDRESS: 868 request->u.ata.command = ATA_SET_MAX_ADDRESS48; 869 break; 870 default: 871 return; 872 } 873 atadev->flags |= ATA_D_48BIT_ACTIVE; 874 } 875 } 876 877 void 878 ata_udelay(int interval) 879 { 880 /* for now just use DELAY, the timer/sleep subsytems are not there yet */ 881 if (1 || interval < (1000000/hz) || ata_delayed_attach) 882 DELAY(interval); 883 else 884 pause("ataslp", interval/(1000000/hz)); 885 } 886 887 char * 888 ata_unit2str(struct ata_device *atadev) 889 { 890 struct ata_channel *ch = device_get_softc(device_get_parent(atadev->dev)); 891 static char str[8]; 892 893 if (ch->devices & ATA_PORTMULTIPLIER) 894 sprintf(str, "port%d", atadev->unit); 895 else 896 sprintf(str, "%s", atadev->unit == ATA_MASTER ? "master" : "slave"); 897 return str; 898 } 899 900 char * 901 ata_mode2str(int mode) 902 { 903 switch (mode) { 904 case -1: return "UNSUPPORTED"; 905 case ATA_PIO0: return "PIO0"; 906 case ATA_PIO1: return "PIO1"; 907 case ATA_PIO2: return "PIO2"; 908 case ATA_PIO3: return "PIO3"; 909 case ATA_PIO4: return "PIO4"; 910 case ATA_WDMA0: return "WDMA0"; 911 case ATA_WDMA1: return "WDMA1"; 912 case ATA_WDMA2: return "WDMA2"; 913 case ATA_UDMA0: return "UDMA16"; 914 case ATA_UDMA1: return "UDMA25"; 915 case ATA_UDMA2: return "UDMA33"; 916 case ATA_UDMA3: return "UDMA40"; 917 case ATA_UDMA4: return "UDMA66"; 918 case ATA_UDMA5: return "UDMA100"; 919 case ATA_UDMA6: return "UDMA133"; 920 case ATA_SA150: return "SATA150"; 921 case ATA_SA300: return "SATA300"; 922 case ATA_USB: return "USB"; 923 case ATA_USB1: return "USB1"; 924 case ATA_USB2: return "USB2"; 925 default: 926 if (mode & ATA_DMA_MASK) 927 return "BIOSDMA"; 928 else 929 return "BIOSPIO"; 930 } 931 } 932 933 int 934 ata_atapi(device_t dev) 935 { 936 struct ata_channel *ch = device_get_softc(device_get_parent(dev)); 937 struct ata_device *atadev = device_get_softc(dev); 938 939 return (ch->devices & (ATA_ATAPI_MASTER << atadev->unit)); 940 } 941 942 int 943 ata_pmode(struct ata_params *ap) 944 { 945 if (ap->atavalid & ATA_FLAG_64_70) { 946 if (ap->apiomodes & 0x02) 947 return ATA_PIO4; 948 if (ap->apiomodes & 0x01) 949 return ATA_PIO3; 950 } 951 if (ap->mwdmamodes & 0x04) 952 return ATA_PIO4; 953 if (ap->mwdmamodes & 0x02) 954 return ATA_PIO3; 955 if (ap->mwdmamodes & 0x01) 956 return ATA_PIO2; 957 if ((ap->retired_piomode & ATA_RETIRED_PIO_MASK) == 0x200) 958 return ATA_PIO2; 959 if ((ap->retired_piomode & ATA_RETIRED_PIO_MASK) == 0x100) 960 return ATA_PIO1; 961 if ((ap->retired_piomode & ATA_RETIRED_PIO_MASK) == 0x000) 962 return ATA_PIO0; 963 return ATA_PIO0; 964 } 965 966 int 967 ata_wmode(struct ata_params *ap) 968 { 969 if (ap->mwdmamodes & 0x04) 970 return ATA_WDMA2; 971 if (ap->mwdmamodes & 0x02) 972 return ATA_WDMA1; 973 if (ap->mwdmamodes & 0x01) 974 return ATA_WDMA0; 975 return -1; 976 } 977 978 int 979 ata_umode(struct ata_params *ap) 980 { 981 if (ap->atavalid & ATA_FLAG_88) { 982 if (ap->udmamodes & 0x40) 983 return ATA_UDMA6; 984 if (ap->udmamodes & 0x20) 985 return ATA_UDMA5; 986 if (ap->udmamodes & 0x10) 987 return ATA_UDMA4; 988 if (ap->udmamodes & 0x08) 989 return ATA_UDMA3; 990 if (ap->udmamodes & 0x04) 991 return ATA_UDMA2; 992 if (ap->udmamodes & 0x02) 993 return ATA_UDMA1; 994 if (ap->udmamodes & 0x01) 995 return ATA_UDMA0; 996 } 997 return -1; 998 } 999 1000 int 1001 ata_limit_mode(device_t dev, int mode, int maxmode) 1002 { 1003 struct ata_device *atadev = device_get_softc(dev); 1004 1005 if (maxmode && mode > maxmode) 1006 mode = maxmode; 1007 1008 if (mode >= ATA_UDMA0 && ata_umode(&atadev->param) > 0) 1009 return min(mode, ata_umode(&atadev->param)); 1010 1011 if (mode >= ATA_WDMA0 && ata_wmode(&atadev->param) > 0) 1012 return min(mode, ata_wmode(&atadev->param)); 1013 1014 if (mode > ata_pmode(&atadev->param)) 1015 return min(mode, ata_pmode(&atadev->param)); 1016 1017 return mode; 1018 } 1019 1020 static void 1021 bswap(int8_t *buf, int len) 1022 { 1023 u_int16_t *ptr = (u_int16_t*)(buf + len); 1024 1025 while (--ptr >= (u_int16_t*)buf) 1026 *ptr = ntohs(*ptr); 1027 } 1028 1029 static void 1030 btrim(int8_t *buf, int len) 1031 { 1032 int8_t *ptr; 1033 1034 for (ptr = buf; ptr < buf+len; ++ptr) 1035 if (!*ptr || *ptr == '_') 1036 *ptr = ' '; 1037 for (ptr = buf + len - 1; ptr >= buf && *ptr == ' '; --ptr) 1038 *ptr = 0; 1039 } 1040 1041 static void 1042 bpack(int8_t *src, int8_t *dst, int len) 1043 { 1044 int i, j, blank; 1045 1046 for (i = j = blank = 0 ; i < len; i++) { 1047 if (blank && src[i] == ' ') continue; 1048 if (blank && src[i] != ' ') { 1049 dst[j++] = src[i]; 1050 blank = 0; 1051 continue; 1052 } 1053 if (src[i] == ' ') { 1054 blank = 1; 1055 if (i == 0) 1056 continue; 1057 } 1058 dst[j++] = src[i]; 1059 } 1060 if (j < len) 1061 dst[j] = 0x00; 1062 } 1063 1064 1065 /* 1066 * module handeling 1067 */ 1068 static int 1069 ata_module_event_handler(module_t mod, int what, void *arg) 1070 { 1071 static struct cdev *atacdev; 1072 1073 switch (what) { 1074 case MOD_LOAD: 1075 /* register controlling device */ 1076 atacdev = make_dev(&ata_cdevsw, 0, UID_ROOT, GID_OPERATOR, 0600, "ata"); 1077 1078 if (cold) { 1079 /* register boot attach to be run when interrupts are enabled */ 1080 if (!(ata_delayed_attach = (struct intr_config_hook *) 1081 malloc(sizeof(struct intr_config_hook), 1082 M_TEMP, M_NOWAIT | M_ZERO))) { 1083 printf("ata: malloc of delayed attach hook failed\n"); 1084 return EIO; 1085 } 1086 ata_delayed_attach->ich_func = (void*)ata_boot_attach; 1087 if (config_intrhook_establish(ata_delayed_attach) != 0) { 1088 printf("ata: config_intrhook_establish failed\n"); 1089 free(ata_delayed_attach, M_TEMP); 1090 } 1091 } 1092 return 0; 1093 1094 case MOD_UNLOAD: 1095 /* deregister controlling device */ 1096 destroy_dev(atacdev); 1097 return 0; 1098 1099 default: 1100 return EOPNOTSUPP; 1101 } 1102 } 1103 1104 static moduledata_t ata_moduledata = { "ata", ata_module_event_handler, NULL }; 1105 DECLARE_MODULE(ata, ata_moduledata, SI_SUB_CONFIGURE, SI_ORDER_SECOND); 1106 MODULE_VERSION(ata, 1); 1107 1108 static void 1109 ata_init(void) 1110 { 1111 ata_request_zone = uma_zcreate("ata_request", sizeof(struct ata_request), 1112 NULL, NULL, NULL, NULL, 0, 0); 1113 ata_composite_zone = uma_zcreate("ata_composite", 1114 sizeof(struct ata_composite), 1115 NULL, NULL, NULL, NULL, 0, 0); 1116 } 1117 SYSINIT(ata_register, SI_SUB_DRIVERS, SI_ORDER_SECOND, ata_init, NULL); 1118 1119 static void 1120 ata_uninit(void) 1121 { 1122 uma_zdestroy(ata_composite_zone); 1123 uma_zdestroy(ata_request_zone); 1124 } 1125 SYSUNINIT(ata_unregister, SI_SUB_DRIVERS, SI_ORDER_SECOND, ata_uninit, NULL); 1126