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/ata.h> 35 #include <sys/kernel.h> 36 #include <sys/conf.h> 37 #include <sys/disk.h> 38 #include <sys/module.h> 39 #include <sys/bus.h> 40 #include <sys/bio.h> 41 #include <sys/malloc.h> 42 #include <sys/devicestat.h> 43 #include <sys/stdint.h> 44 #include <sys/sysctl.h> 45 #include <machine/stdarg.h> 46 #include <machine/resource.h> 47 #include <machine/bus.h> 48 #include <sys/rman.h> 49 #ifdef __alpha__ 50 #include <machine/md_var.h> 51 #endif 52 #include <dev/ata/ata-all.h> 53 #include <dev/ata/ata-disk.h> 54 #include <dev/ata/ata-raid.h> 55 #include <dev/ata/atapi-all.h> 56 57 /* device structures */ 58 static d_ioctl_t ataioctl; 59 static struct cdevsw ata_cdevsw = { 60 /* open */ nullopen, 61 /* close */ nullclose, 62 /* read */ noread, 63 /* write */ nowrite, 64 /* ioctl */ ataioctl, 65 /* poll */ nopoll, 66 /* mmap */ nommap, 67 /* strategy */ nostrategy, 68 /* name */ "ata", 69 /* maj */ 159, 70 /* dump */ nodump, 71 /* psize */ nopsize, 72 /* flags */ 0, 73 }; 74 75 /* prototypes */ 76 static void ata_boot_attach(void); 77 static void ata_intr(void *); 78 static int ata_getparam(struct ata_device *, u_int8_t); 79 static int ata_service(struct ata_channel *); 80 static void bswap(int8_t *, int); 81 static void btrim(int8_t *, int); 82 static void bpack(int8_t *, int8_t *, int); 83 static void ata_change_mode(struct ata_device *, int); 84 static u_int8_t ata_enclosure_sensor(struct ata_device *, int, u_int8_t, u_int8_t); 85 static int ata_enclosure_status(struct ata_device *, int *, int *, int *, int *); 86 87 /* sysctl vars */ 88 SYSCTL_NODE(_hw, OID_AUTO, ata, CTLFLAG_RD, 0, "ATA driver parameters"); 89 90 /* global vars */ 91 struct intr_config_hook *ata_delayed_attach = NULL; 92 devclass_t ata_devclass; 93 94 /* local vars */ 95 static MALLOC_DEFINE(M_ATA, "ATA generic", "ATA driver generic layer"); 96 97 /* misc defines */ 98 #define DEV_ATAPIALL defined(DEV_ATAPICD) || defined(DEV_ATAPIFD) || \ 99 defined(DEV_ATAPIST) || defined(DEV_ATAPICAM) 100 101 int 102 ata_probe(device_t dev) 103 { 104 struct ata_channel *ch; 105 int rid; 106 107 if (!dev || !(ch = device_get_softc(dev))) 108 return ENXIO; 109 110 if (ch->r_io || ch->r_altio || ch->r_irq) 111 return EEXIST; 112 113 /* initialize the softc basics */ 114 ch->active = ATA_IDLE; 115 ch->dev = dev; 116 117 rid = ATA_IOADDR_RID; 118 ch->r_io = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0, 119 ATA_IOSIZE, RF_ACTIVE); 120 if (!ch->r_io) 121 goto failure; 122 123 rid = ATA_ALTADDR_RID; 124 ch->r_altio = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0, 125 ATA_ALTIOSIZE, RF_ACTIVE); 126 if (!ch->r_altio) 127 goto failure; 128 129 rid = ATA_BMADDR_RID; 130 ch->r_bmio = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0, 131 ATA_BMIOSIZE, RF_ACTIVE); 132 if (bootverbose) 133 ata_printf(ch, -1, "iobase=0x%04x altiobase=0x%04x bmaddr=0x%04x\n", 134 (int)rman_get_start(ch->r_io), 135 (int)rman_get_start(ch->r_altio), 136 (ch->r_bmio) ? (int)rman_get_start(ch->r_bmio) : 0); 137 138 ch->lock_func(ch, ATA_LF_LOCK); 139 ata_reset(ch); 140 ch->lock_func(ch, ATA_LF_UNLOCK); 141 142 ch->device[MASTER].channel = ch; 143 ch->device[MASTER].unit = ATA_MASTER; 144 ch->device[MASTER].mode = ATA_PIO; 145 ch->device[SLAVE].channel = ch; 146 ch->device[SLAVE].unit = ATA_SLAVE; 147 ch->device[SLAVE].mode = ATA_PIO; 148 TAILQ_INIT(&ch->ata_queue); 149 TAILQ_INIT(&ch->atapi_queue); 150 return 0; 151 152 failure: 153 if (ch->r_io) 154 bus_release_resource(dev, SYS_RES_IOPORT, ATA_IOADDR_RID, ch->r_io); 155 if (ch->r_altio) 156 bus_release_resource(dev, SYS_RES_IOPORT, ATA_ALTADDR_RID, ch->r_altio); 157 if (ch->r_bmio) 158 bus_release_resource(dev, SYS_RES_IOPORT, ATA_BMADDR_RID, ch->r_bmio); 159 if (bootverbose) 160 ata_printf(ch, -1, "probe allocation failed\n"); 161 return ENXIO; 162 } 163 164 int 165 ata_attach(device_t dev) 166 { 167 struct ata_channel *ch; 168 int error, rid; 169 170 if (!dev || !(ch = device_get_softc(dev))) 171 return ENXIO; 172 173 rid = ATA_IRQ_RID; 174 ch->r_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, 175 RF_SHAREABLE | RF_ACTIVE); 176 if (!ch->r_irq) { 177 ata_printf(ch, -1, "unable to allocate interrupt\n"); 178 return ENXIO; 179 } 180 if ((error = bus_setup_intr(dev, ch->r_irq, INTR_TYPE_BIO | INTR_ENTROPY, 181 ata_intr, ch, &ch->ih))) { 182 ata_printf(ch, -1, "unable to setup interrupt\n"); 183 return error; 184 } 185 186 /* 187 * do not attach devices if we are in early boot, this is done later 188 * when interrupts are enabled by a hook into the boot process. 189 * otherwise attach what the probe has found in ch->devices. 190 */ 191 if (!ata_delayed_attach) { 192 ch->lock_func(ch, ATA_LF_LOCK); 193 if (ch->devices & ATA_ATA_SLAVE) 194 if (ata_getparam(&ch->device[SLAVE], ATA_C_ATA_IDENTIFY)) 195 ch->devices &= ~ATA_ATA_SLAVE; 196 if (ch->devices & ATA_ATAPI_SLAVE) 197 if (ata_getparam(&ch->device[SLAVE], ATA_C_ATAPI_IDENTIFY)) 198 ch->devices &= ~ATA_ATAPI_SLAVE; 199 if (ch->devices & ATA_ATA_MASTER) 200 if (ata_getparam(&ch->device[MASTER], ATA_C_ATA_IDENTIFY)) 201 ch->devices &= ~ATA_ATA_MASTER; 202 if (ch->devices & ATA_ATAPI_MASTER) 203 if (ata_getparam(&ch->device[MASTER], ATA_C_ATAPI_IDENTIFY)) 204 ch->devices &= ~ATA_ATAPI_MASTER; 205 #ifdef DEV_ATADISK 206 if (ch->devices & ATA_ATA_MASTER) 207 ad_attach(&ch->device[MASTER]); 208 if (ch->devices & ATA_ATA_SLAVE) 209 ad_attach(&ch->device[SLAVE]); 210 #endif 211 #if DEV_ATAPIALL 212 if (ch->devices & ATA_ATAPI_MASTER) 213 atapi_attach(&ch->device[MASTER]); 214 if (ch->devices & ATA_ATAPI_SLAVE) 215 atapi_attach(&ch->device[SLAVE]); 216 #endif 217 #ifdef DEV_ATAPICAM 218 atapi_cam_attach_bus(ch); 219 #endif 220 ch->lock_func(ch, ATA_LF_UNLOCK); 221 } 222 return 0; 223 } 224 225 int 226 ata_detach(device_t dev) 227 { 228 struct ata_channel *ch; 229 int s; 230 231 if (!dev || !(ch = device_get_softc(dev)) || 232 !ch->r_io || !ch->r_altio || !ch->r_irq) 233 return ENXIO; 234 235 /* make sure channel is not busy */ 236 ch->lock_func(ch, ATA_LF_LOCK); 237 ATA_SLEEPLOCK_CH(ch, ATA_CONTROL); 238 239 s = splbio(); 240 #ifdef DEV_ATADISK 241 if (ch->devices & ATA_ATA_MASTER && ch->device[MASTER].driver) 242 ad_detach(&ch->device[MASTER], 1); 243 if (ch->devices & ATA_ATA_SLAVE && ch->device[SLAVE].driver) 244 ad_detach(&ch->device[SLAVE], 1); 245 #endif 246 #if DEV_ATAPIALL 247 if (ch->devices & ATA_ATAPI_MASTER && ch->device[MASTER].driver) 248 atapi_detach(&ch->device[MASTER]); 249 if (ch->devices & ATA_ATAPI_SLAVE && ch->device[SLAVE].driver) 250 atapi_detach(&ch->device[SLAVE]); 251 #endif 252 #ifdef DEV_ATAPICAM 253 atapi_cam_detach_bus(ch); 254 #endif 255 splx(s); 256 257 if (ch->device[MASTER].param) { 258 free(ch->device[MASTER].param, M_ATA); 259 ch->device[MASTER].param = NULL; 260 } 261 if (ch->device[SLAVE].param) { 262 free(ch->device[SLAVE].param, M_ATA); 263 ch->device[SLAVE].param = NULL; 264 } 265 ch->device[MASTER].driver = NULL; 266 ch->device[SLAVE].driver = NULL; 267 ch->device[MASTER].mode = ATA_PIO; 268 ch->device[SLAVE].mode = ATA_PIO; 269 ch->devices = 0; 270 ata_dmafreetags(ch); 271 272 bus_teardown_intr(dev, ch->r_irq, ch->ih); 273 bus_release_resource(dev, SYS_RES_IRQ, ATA_IRQ_RID, ch->r_irq); 274 if (ch->r_bmio) 275 bus_release_resource(dev, SYS_RES_IOPORT, ATA_BMADDR_RID, ch->r_bmio); 276 bus_release_resource(dev, SYS_RES_IOPORT, ATA_ALTADDR_RID, ch->r_altio); 277 bus_release_resource(dev, SYS_RES_IOPORT, ATA_IOADDR_RID, ch->r_io); 278 ch->r_io = NULL; 279 ch->r_altio = NULL; 280 ch->r_bmio = NULL; 281 ch->r_irq = NULL; 282 ATA_UNLOCK_CH(ch); 283 ch->lock_func(ch, ATA_LF_UNLOCK); 284 return 0; 285 } 286 287 int 288 ata_resume(device_t dev) 289 { 290 struct ata_channel *ch; 291 int error; 292 293 if (!dev || !(ch = device_get_softc(dev))) 294 return ENXIO; 295 296 ch->lock_func(ch, ATA_LF_LOCK); 297 error = ata_reinit(ch); 298 ch->lock_func(ch, ATA_LF_UNLOCK); 299 return error; 300 } 301 302 static int 303 ataioctl(dev_t dev, u_long cmd, caddr_t addr, int32_t flag, struct thread *td) 304 { 305 struct ata_cmd *iocmd = (struct ata_cmd *)addr; 306 struct ata_channel *ch; 307 device_t device = devclass_get_device(ata_devclass, iocmd->channel); 308 int error; 309 310 if (cmd != IOCATA) 311 return ENOTTY; 312 313 if (iocmd->channel < -1 || iocmd->device < -1 || iocmd->device > SLAVE) 314 return ENXIO; 315 316 switch (iocmd->cmd) { 317 case ATAATTACH: 318 /* should enable channel HW on controller that can SOS XXX */ 319 error = ata_probe(device); 320 if (!error) 321 error = ata_attach(device); 322 return error; 323 324 case ATADETACH: 325 error = ata_detach(device); 326 /* should disable channel HW on controller that can SOS XXX */ 327 return error; 328 329 case ATAREINIT: 330 if (!device || !(ch = device_get_softc(device))) 331 return ENXIO; 332 ch->lock_func(ch, ATA_LF_LOCK); 333 ATA_SLEEPLOCK_CH(ch, ATA_ACTIVE); 334 error = ata_reinit(ch); 335 ch->lock_func(ch, ATA_LF_UNLOCK); 336 return error; 337 338 case ATAGMODE: 339 if (!device || !(ch = device_get_softc(device))) 340 return ENXIO; 341 342 if ((iocmd->device == MASTER || iocmd->device == -1) && 343 ch->device[MASTER].driver) 344 iocmd->u.mode.mode[MASTER] = ch->device[MASTER].mode; 345 else 346 iocmd->u.mode.mode[MASTER] = -1; 347 348 if ((iocmd->device == SLAVE || iocmd->device == -1) && 349 ch->device[SLAVE].param) 350 iocmd->u.mode.mode[SLAVE] = ch->device[SLAVE].mode; 351 else 352 iocmd->u.mode.mode[SLAVE] = -1; 353 return 0; 354 355 case ATASMODE: 356 if (!device || !(ch = device_get_softc(device))) 357 return ENXIO; 358 359 ch->lock_func(ch, ATA_LF_LOCK); 360 if ((iocmd->device == MASTER || iocmd->device == -1) && 361 iocmd->u.mode.mode[MASTER] >= 0 && ch->device[MASTER].param) { 362 ata_change_mode(&ch->device[MASTER],iocmd->u.mode.mode[MASTER]); 363 iocmd->u.mode.mode[MASTER] = ch->device[MASTER].mode; 364 } 365 else 366 iocmd->u.mode.mode[MASTER] = -1; 367 368 if ((iocmd->device == SLAVE || iocmd->device == -1) && 369 iocmd->u.mode.mode[SLAVE] >= 0 && ch->device[SLAVE].param) { 370 ata_change_mode(&ch->device[SLAVE], iocmd->u.mode.mode[SLAVE]); 371 iocmd->u.mode.mode[SLAVE] = ch->device[SLAVE].mode; 372 } 373 else 374 iocmd->u.mode.mode[SLAVE] = -1; 375 ch->lock_func(ch, ATA_LF_UNLOCK); 376 return 0; 377 378 case ATAGPARM: 379 if (!device || !(ch = device_get_softc(device))) 380 return ENXIO; 381 382 iocmd->u.param.type[MASTER] = 383 ch->devices & (ATA_ATA_MASTER | ATA_ATAPI_MASTER); 384 iocmd->u.param.type[SLAVE] = 385 ch->devices & (ATA_ATA_SLAVE | ATA_ATAPI_SLAVE); 386 387 if (ch->device[MASTER].name) 388 strcpy(iocmd->u.param.name[MASTER], ch->device[MASTER].name); 389 if (ch->device[SLAVE].name) 390 strcpy(iocmd->u.param.name[SLAVE], ch->device[SLAVE].name); 391 392 if (ch->device[MASTER].param) 393 bcopy(ch->device[MASTER].param, &iocmd->u.param.params[MASTER], 394 sizeof(struct ata_params)); 395 if (ch->device[SLAVE].param) 396 bcopy(ch->device[SLAVE].param, &iocmd->u.param.params[SLAVE], 397 sizeof(struct ata_params)); 398 return 0; 399 400 case ATAENCSTAT: { 401 struct ata_device *atadev; 402 403 if (!device || !(ch = device_get_softc(device))) 404 return ENXIO; 405 406 if (iocmd->device == SLAVE) 407 atadev = &ch->device[SLAVE]; 408 else 409 atadev = &ch->device[MASTER]; 410 411 return ata_enclosure_status(atadev, 412 &iocmd->u.enclosure.fan, 413 &iocmd->u.enclosure.temp, 414 &iocmd->u.enclosure.v05, 415 &iocmd->u.enclosure.v12); 416 } 417 418 #ifdef DEV_ATADISK 419 case ATARAIDREBUILD: 420 return ata_raid_rebuild(iocmd->channel); 421 422 case ATARAIDCREATE: 423 return ata_raid_create(&iocmd->u.raid_setup); 424 425 case ATARAIDDELETE: 426 return ata_raid_delete(iocmd->channel); 427 428 case ATARAIDSTATUS: 429 return ata_raid_status(iocmd->channel, &iocmd->u.raid_status); 430 #endif 431 #if DEV_ATAPIALL 432 case ATAPICMD: { 433 struct ata_device *atadev; 434 caddr_t buf; 435 436 if (!device || !(ch = device_get_softc(device))) 437 return ENXIO; 438 439 if (!(atadev = &ch->device[iocmd->device]) || 440 !(ch->devices & (iocmd->device == MASTER ? 441 ATA_ATAPI_MASTER : ATA_ATAPI_SLAVE))) 442 return ENODEV; 443 444 if (!(buf = malloc(iocmd->u.atapi.count, M_ATA, M_NOWAIT))) 445 return ENOMEM; 446 447 if (iocmd->u.atapi.flags & ATAPI_CMD_WRITE) { 448 error = copyin(iocmd->u.atapi.data, buf, iocmd->u.atapi.count); 449 if (error) 450 return error; 451 } 452 error = atapi_queue_cmd(atadev, iocmd->u.atapi.ccb, 453 buf, iocmd->u.atapi.count, 454 (iocmd->u.atapi.flags == ATAPI_CMD_READ ? 455 ATPR_F_READ : 0) | ATPR_F_QUIET, 456 iocmd->u.atapi.timeout, NULL, NULL); 457 if (error) { 458 iocmd->u.atapi.error = error; 459 bcopy(&atadev->result, iocmd->u.atapi.sense_data, 460 sizeof(struct atapi_reqsense)); 461 error = 0; 462 } 463 else if (iocmd->u.atapi.flags & ATAPI_CMD_READ) 464 error = copyout(buf, iocmd->u.atapi.data, iocmd->u.atapi.count); 465 466 free(buf, M_ATA); 467 return error; 468 } 469 #endif 470 default: 471 break; 472 } 473 return ENOTTY; 474 } 475 476 static int 477 ata_getparam(struct ata_device *atadev, u_int8_t command) 478 { 479 struct ata_params *ata_parm; 480 int retry = 0; 481 482 if (!(ata_parm = malloc(sizeof(struct ata_params), M_ATA, M_NOWAIT))) { 483 ata_prtdev(atadev, "malloc for identify data failed\n"); 484 return -1; 485 } 486 487 /* apparently some devices needs this repeated */ 488 do { 489 if (ata_command(atadev, command, 0, 0, 0, ATA_WAIT_INTR)) { 490 ata_prtdev(atadev, "%s identify failed\n", 491 command == ATA_C_ATAPI_IDENTIFY ? "ATAPI" : "ATA"); 492 free(ata_parm, M_ATA); 493 return -1; 494 } 495 if (retry++ > 4) { 496 ata_prtdev(atadev, "%s identify retries exceeded\n", 497 command == ATA_C_ATAPI_IDENTIFY ? "ATAPI" : "ATA"); 498 free(ata_parm, M_ATA); 499 return -1; 500 } 501 } while (ata_wait(atadev, ((command == ATA_C_ATAPI_IDENTIFY) ? 502 ATA_S_DRQ : (ATA_S_READY|ATA_S_DSC|ATA_S_DRQ)))); 503 ATA_INSW(atadev->channel->r_io, ATA_DATA, (int16_t *)ata_parm, 504 sizeof(struct ata_params)/sizeof(int16_t)); 505 506 if (command == ATA_C_ATA_IDENTIFY || 507 !((ata_parm->model[0] == 'N' && ata_parm->model[1] == 'E') || 508 (ata_parm->model[0] == 'F' && ata_parm->model[1] == 'X') || 509 (ata_parm->model[0] == 'P' && ata_parm->model[1] == 'i'))) 510 bswap(ata_parm->model, sizeof(ata_parm->model)); 511 btrim(ata_parm->model, sizeof(ata_parm->model)); 512 bpack(ata_parm->model, ata_parm->model, sizeof(ata_parm->model)); 513 bswap(ata_parm->revision, sizeof(ata_parm->revision)); 514 btrim(ata_parm->revision, sizeof(ata_parm->revision)); 515 bpack(ata_parm->revision, ata_parm->revision, sizeof(ata_parm->revision)); 516 bswap(ata_parm->serial, sizeof(ata_parm->serial)); 517 btrim(ata_parm->serial, sizeof(ata_parm->serial)); 518 bpack(ata_parm->serial, ata_parm->serial, sizeof(ata_parm->serial)); 519 atadev->param = ata_parm; 520 return 0; 521 } 522 523 static void 524 ata_boot_attach(void) 525 { 526 struct ata_channel *ch; 527 int ctlr; 528 529 /* 530 * run through all ata devices and look for real ATA & ATAPI devices 531 * using the hints we found in the early probe, this avoids some of 532 * the delays probing of non-exsistent devices can cause. 533 */ 534 for (ctlr=0; ctlr<devclass_get_maxunit(ata_devclass); ctlr++) { 535 if (!(ch = devclass_get_softc(ata_devclass, ctlr))) 536 continue; 537 ch->lock_func(ch, ATA_LF_LOCK); 538 if (ch->devices & ATA_ATA_SLAVE) 539 if (ata_getparam(&ch->device[SLAVE], ATA_C_ATA_IDENTIFY)) 540 ch->devices &= ~ATA_ATA_SLAVE; 541 if (ch->devices & ATA_ATAPI_SLAVE) 542 if (ata_getparam(&ch->device[SLAVE], ATA_C_ATAPI_IDENTIFY)) 543 ch->devices &= ~ATA_ATAPI_SLAVE; 544 if (ch->devices & ATA_ATA_MASTER) 545 if (ata_getparam(&ch->device[MASTER], ATA_C_ATA_IDENTIFY)) 546 ch->devices &= ~ATA_ATA_MASTER; 547 if (ch->devices & ATA_ATAPI_MASTER) 548 if (ata_getparam(&ch->device[MASTER], ATA_C_ATAPI_IDENTIFY)) 549 ch->devices &= ~ATA_ATAPI_MASTER; 550 ch->lock_func(ch, ATA_LF_UNLOCK); 551 } 552 #ifdef DEV_ATADISK 553 /* now we know whats there, do the real attach, first the ATA disks */ 554 for (ctlr=0; ctlr<devclass_get_maxunit(ata_devclass); ctlr++) { 555 if (!(ch = devclass_get_softc(ata_devclass, ctlr))) 556 continue; 557 ch->lock_func(ch, ATA_LF_LOCK); 558 if (ch->devices & ATA_ATA_MASTER) 559 ad_attach(&ch->device[MASTER]); 560 if (ch->devices & ATA_ATA_SLAVE) 561 ad_attach(&ch->device[SLAVE]); 562 ch->lock_func(ch, ATA_LF_UNLOCK); 563 } 564 #endif 565 /* then the atapi devices */ 566 for (ctlr=0; ctlr<devclass_get_maxunit(ata_devclass); ctlr++) { 567 if (!(ch = devclass_get_softc(ata_devclass, ctlr))) 568 continue; 569 ch->lock_func(ch, ATA_LF_LOCK); 570 #if DEV_ATAPIALL 571 if (ch->devices & ATA_ATAPI_MASTER) 572 atapi_attach(&ch->device[MASTER]); 573 if (ch->devices & ATA_ATAPI_SLAVE) 574 atapi_attach(&ch->device[SLAVE]); 575 #endif 576 #ifdef DEV_ATAPICAM 577 atapi_cam_attach_bus(ch); 578 #endif 579 ch->lock_func(ch, ATA_LF_UNLOCK); 580 } 581 if (ata_delayed_attach) { 582 config_intrhook_disestablish(ata_delayed_attach); 583 free(ata_delayed_attach, M_TEMP); 584 ata_delayed_attach = NULL; 585 } 586 #ifdef DEV_ATADISK 587 ata_raid_attach(); 588 #endif 589 } 590 591 static void 592 ata_intr(void *data) 593 { 594 struct ata_channel *ch = (struct ata_channel *)data; 595 /* 596 * on PCI systems we might share an interrupt line with another 597 * device or our twin ATA channel, so call ch->intr_func to figure 598 * out if it is really an interrupt we should process here 599 */ 600 if (!ch->intr_func(ch)) 601 return; 602 603 /* if drive is busy it didn't interrupt */ 604 if (ATA_INB(ch->r_altio, ATA_ALTSTAT) & ATA_S_BUSY) { 605 DELAY(100); 606 if (!(ATA_INB(ch->r_altio, ATA_ALTSTAT) & ATA_S_DRQ)) 607 return; 608 } 609 610 /* clear interrupt and get status */ 611 ch->status = ATA_INB(ch->r_io, ATA_STATUS); 612 613 if (ch->status & ATA_S_ERROR) 614 ch->error = ATA_INB(ch->r_io, ATA_ERROR); 615 616 /* find & call the responsible driver to process this interrupt */ 617 switch (ch->active) { 618 #ifdef DEV_ATADISK 619 case ATA_ACTIVE_ATA: 620 if (!ch->running || ad_interrupt(ch->running) == ATA_OP_CONTINUES) 621 return; 622 break; 623 #endif 624 #if DEV_ATAPIALL 625 case ATA_ACTIVE_ATAPI: 626 if (!ch->running || atapi_interrupt(ch->running) == ATA_OP_CONTINUES) 627 return; 628 break; 629 #endif 630 default: 631 if (ch->active & ATA_WAIT_INTR) 632 wakeup((caddr_t)ch); 633 } 634 635 if (ch->active & ATA_CONTROL) { 636 ATA_FORCELOCK_CH(ch, ATA_CONTROL); 637 return; 638 } 639 640 if (ch->active & ATA_WAIT_INTR) { 641 ATA_UNLOCK_CH(ch); 642 return; 643 } 644 645 if ((ch->flags & ATA_QUEUED) && 646 ATA_INB(ch->r_altio, ATA_ALTSTAT) & ATA_S_SERVICE) { 647 ATA_FORCELOCK_CH(ch, ATA_ACTIVE); 648 if (ata_service(ch) == ATA_OP_CONTINUES) 649 return; 650 } 651 ch->running = NULL; 652 ATA_UNLOCK_CH(ch); 653 ch->lock_func(ch, ATA_LF_UNLOCK); 654 ata_start(ch); 655 return; 656 } 657 658 void 659 ata_start(struct ata_channel *ch) 660 { 661 #ifdef DEV_ATADISK 662 struct ad_request *ad_request; 663 #endif 664 #if DEV_ATAPIALL 665 struct atapi_request *atapi_request; 666 #endif 667 int s; 668 669 ch->lock_func(ch, ATA_LF_LOCK); 670 if (!ATA_LOCK_CH(ch, ATA_ACTIVE)) 671 return; 672 673 s = splbio(); 674 #ifdef DEV_ATADISK 675 /* find & call the responsible driver if anything on the ATA queue */ 676 if (TAILQ_EMPTY(&ch->ata_queue)) { 677 if (ch->devices & (ATA_ATA_MASTER) && ch->device[MASTER].driver) 678 ad_start(&ch->device[MASTER]); 679 if (ch->devices & (ATA_ATA_SLAVE) && ch->device[SLAVE].driver) 680 ad_start(&ch->device[SLAVE]); 681 } 682 if ((ad_request = TAILQ_FIRST(&ch->ata_queue))) { 683 TAILQ_REMOVE(&ch->ata_queue, ad_request, chain); 684 ch->active = ATA_ACTIVE_ATA; 685 ch->running = ad_request; 686 if (ad_transfer(ad_request) == ATA_OP_CONTINUES) { 687 splx(s); 688 return; 689 } 690 } 691 692 #endif 693 #if DEV_ATAPIALL 694 /* find & call the responsible driver if anything on the ATAPI queue */ 695 if (TAILQ_EMPTY(&ch->atapi_queue)) { 696 if (ch->devices & (ATA_ATAPI_MASTER) && ch->device[MASTER].driver) 697 atapi_start(&ch->device[MASTER]); 698 if (ch->devices & (ATA_ATAPI_SLAVE) && ch->device[SLAVE].driver) 699 atapi_start(&ch->device[SLAVE]); 700 } 701 if ((atapi_request = TAILQ_FIRST(&ch->atapi_queue))) { 702 TAILQ_REMOVE(&ch->atapi_queue, atapi_request, chain); 703 ch->active = ATA_ACTIVE_ATAPI; 704 ch->running = atapi_request; 705 if (atapi_transfer(atapi_request) == ATA_OP_CONTINUES) { 706 splx(s); 707 return; 708 } 709 } 710 #endif 711 ATA_UNLOCK_CH(ch); 712 ch->lock_func(ch, ATA_LF_UNLOCK); 713 splx(s); 714 } 715 716 void 717 ata_reset(struct ata_channel *ch) 718 { 719 u_int8_t lsb, msb, ostat0, ostat1; 720 u_int8_t stat0 = 0, stat1 = 0; 721 int mask = 0, timeout; 722 723 /* do we have any signs of ATA/ATAPI HW being present ? */ 724 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_MASTER); 725 DELAY(10); 726 ostat0 = ATA_INB(ch->r_io, ATA_STATUS); 727 if ((ostat0 & 0xf8) != 0xf8 && ostat0 != 0xa5) { 728 stat0 = ATA_S_BUSY; 729 mask |= 0x01; 730 } 731 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_SLAVE); 732 DELAY(10); 733 ostat1 = ATA_INB(ch->r_io, ATA_STATUS); 734 if ((ostat1 & 0xf8) != 0xf8 && ostat1 != 0xa5) { 735 stat1 = ATA_S_BUSY; 736 mask |= 0x02; 737 } 738 739 ch->devices = 0; 740 if (!mask) 741 return; 742 743 /* in some setups we dont want to test for a slave */ 744 if (ch->flags & ATA_NO_SLAVE) { 745 stat1 = 0x0; 746 mask &= ~0x02; 747 } 748 749 if (bootverbose) 750 ata_printf(ch, -1, "mask=%02x ostat0=%02x ostat2=%02x\n", 751 mask, ostat0, ostat1); 752 753 /* reset channel */ 754 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_MASTER); 755 DELAY(10); 756 ATA_OUTB(ch->r_altio, ATA_ALTSTAT, ATA_A_IDS | ATA_A_RESET); 757 DELAY(10000); 758 ATA_OUTB(ch->r_altio, ATA_ALTSTAT, ATA_A_IDS); 759 DELAY(100000); 760 ATA_INB(ch->r_io, ATA_ERROR); 761 762 /* wait for BUSY to go inactive */ 763 for (timeout = 0; timeout < 310000; timeout++) { 764 if (stat0 & ATA_S_BUSY) { 765 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_MASTER); 766 DELAY(10); 767 768 /* check for ATAPI signature while its still there */ 769 lsb = ATA_INB(ch->r_io, ATA_CYL_LSB); 770 msb = ATA_INB(ch->r_io, ATA_CYL_MSB); 771 stat0 = ATA_INB(ch->r_io, ATA_STATUS); 772 if (!(stat0 & ATA_S_BUSY)) { 773 if (bootverbose) 774 ata_printf(ch, ATA_MASTER, "ATAPI %02x %02x\n", lsb, msb); 775 if (lsb == ATAPI_MAGIC_LSB && msb == ATAPI_MAGIC_MSB) 776 ch->devices |= ATA_ATAPI_MASTER; 777 } 778 } 779 if (stat1 & ATA_S_BUSY) { 780 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_SLAVE); 781 DELAY(10); 782 783 /* check for ATAPI signature while its still there */ 784 lsb = ATA_INB(ch->r_io, ATA_CYL_LSB); 785 msb = ATA_INB(ch->r_io, ATA_CYL_MSB); 786 stat1 = ATA_INB(ch->r_io, ATA_STATUS); 787 if (!(stat1 & ATA_S_BUSY)) { 788 if (bootverbose) 789 ata_printf(ch, ATA_SLAVE, "ATAPI %02x %02x\n", lsb, msb); 790 if (lsb == ATAPI_MAGIC_LSB && msb == ATAPI_MAGIC_MSB) 791 ch->devices |= ATA_ATAPI_SLAVE; 792 } 793 } 794 if (mask == 0x01) /* wait for master only */ 795 if (!(stat0 & ATA_S_BUSY)) 796 break; 797 if (mask == 0x02) /* wait for slave only */ 798 if (!(stat1 & ATA_S_BUSY)) 799 break; 800 if (mask == 0x03) /* wait for both master & slave */ 801 if (!(stat0 & ATA_S_BUSY) && !(stat1 & ATA_S_BUSY)) 802 break; 803 DELAY(100); 804 } 805 DELAY(10); 806 ATA_OUTB(ch->r_altio, ATA_ALTSTAT, ATA_A_4BIT); 807 808 if (stat0 & ATA_S_BUSY) 809 mask &= ~0x01; 810 if (stat1 & ATA_S_BUSY) 811 mask &= ~0x02; 812 if (bootverbose) 813 ata_printf(ch, -1, "mask=%02x stat0=%02x stat1=%02x\n", 814 mask, stat0, stat1); 815 if (!mask) 816 return; 817 818 if (mask & 0x01 && ostat0 != 0x00 && !(ch->devices & ATA_ATAPI_MASTER)) { 819 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_MASTER); 820 DELAY(10); 821 ATA_OUTB(ch->r_io, ATA_ERROR, 0x58); 822 ATA_OUTB(ch->r_io, ATA_CYL_LSB, 0xa5); 823 lsb = ATA_INB(ch->r_io, ATA_ERROR); 824 msb = ATA_INB(ch->r_io, ATA_CYL_LSB); 825 if (bootverbose) 826 ata_printf(ch, ATA_MASTER, "ATA %02x %02x\n", lsb, msb); 827 if (lsb != 0x58 && msb == 0xa5) 828 ch->devices |= ATA_ATA_MASTER; 829 } 830 if (mask & 0x02 && ostat1 != 0x00 && !(ch->devices & ATA_ATAPI_SLAVE)) { 831 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_SLAVE); 832 DELAY(10); 833 ATA_OUTB(ch->r_io, ATA_ERROR, 0x58); 834 ATA_OUTB(ch->r_io, ATA_CYL_LSB, 0xa5); 835 lsb = ATA_INB(ch->r_io, ATA_ERROR); 836 msb = ATA_INB(ch->r_io, ATA_CYL_LSB); 837 if (bootverbose) 838 ata_printf(ch, ATA_SLAVE, "ATA %02x %02x\n", lsb, msb); 839 if (lsb != 0x58 && msb == 0xa5) 840 ch->devices |= ATA_ATA_SLAVE; 841 } 842 if (bootverbose) 843 ata_printf(ch, -1, "devices=%02x\n", ch->devices); 844 } 845 846 int 847 ata_reinit(struct ata_channel *ch) 848 { 849 int devices, misdev, newdev; 850 851 ATA_FORCELOCK_CH(ch, ATA_CONTROL); 852 853 if (!ch->r_io || !ch->r_altio || !ch->r_irq) { 854 ATA_UNLOCK_CH(ch); 855 return ENXIO; 856 } 857 858 ch->running = NULL; 859 devices = ch->devices; 860 ata_printf(ch, -1, "resetting devices ..\n"); 861 ata_reset(ch); 862 863 if ((misdev = devices & ~ch->devices)) { 864 #ifdef DEV_ATADISK 865 if (misdev & ATA_ATA_MASTER && ch->device[MASTER].driver) 866 ad_detach(&ch->device[MASTER], 0); 867 if (misdev & ATA_ATA_SLAVE && ch->device[SLAVE].driver) 868 ad_detach(&ch->device[SLAVE], 0); 869 #endif 870 #if DEV_ATAPIALL 871 if (misdev & ATA_ATAPI_MASTER && ch->device[MASTER].driver) 872 atapi_detach(&ch->device[MASTER]); 873 if (misdev & ATA_ATAPI_SLAVE && ch->device[SLAVE].driver) 874 atapi_detach(&ch->device[SLAVE]); 875 #endif 876 if (misdev & ATA_ATA_MASTER || misdev & ATA_ATAPI_MASTER) { 877 if (ch->device[MASTER].param) 878 free(ch->device[MASTER].param, M_ATA); 879 ch->device[MASTER].param = NULL; 880 } 881 if (misdev & ATA_ATA_SLAVE || misdev & ATA_ATAPI_SLAVE) { 882 if (ch->device[SLAVE].param) 883 free(ch->device[SLAVE].param, M_ATA); 884 ch->device[SLAVE].param = NULL; 885 } 886 } 887 if ((newdev = ~devices & ch->devices)) { 888 if (newdev & ATA_ATA_MASTER) 889 if (ata_getparam(&ch->device[MASTER], ATA_C_ATA_IDENTIFY)) 890 ch->devices &= ~ATA_ATA_MASTER; 891 if (newdev & ATA_ATA_SLAVE) 892 if (ata_getparam(&ch->device[SLAVE], ATA_C_ATA_IDENTIFY)) 893 ch->devices &= ~ATA_ATA_SLAVE; 894 if (newdev & ATA_ATAPI_MASTER) 895 if (ata_getparam(&ch->device[MASTER], ATA_C_ATAPI_IDENTIFY)) 896 ch->devices &= ~ATA_ATAPI_MASTER; 897 if (newdev & ATA_ATAPI_SLAVE) 898 if (ata_getparam(&ch->device[SLAVE], ATA_C_ATAPI_IDENTIFY)) 899 ch->devices &= ~ATA_ATAPI_SLAVE; 900 } 901 newdev = ~devices & ch->devices; 902 #ifdef DEV_ATADISK 903 if (newdev & ATA_ATA_MASTER && !ch->device[MASTER].driver) 904 ad_attach(&ch->device[MASTER]); 905 else if (ch->devices & ATA_ATA_MASTER && ch->device[MASTER].driver) { 906 ata_getparam(&ch->device[MASTER], ATA_C_ATA_IDENTIFY); 907 ad_reinit(&ch->device[MASTER]); 908 } 909 if (newdev & ATA_ATA_SLAVE && !ch->device[SLAVE].driver) 910 ad_attach(&ch->device[SLAVE]); 911 else if (ch->devices & (ATA_ATA_SLAVE) && ch->device[SLAVE].driver) { 912 ata_getparam(&ch->device[SLAVE], ATA_C_ATA_IDENTIFY); 913 ad_reinit(&ch->device[SLAVE]); 914 } 915 #endif 916 #if DEV_ATAPIALL 917 if (newdev & ATA_ATAPI_MASTER && !ch->device[MASTER].driver) 918 atapi_attach(&ch->device[MASTER]); 919 else if (ch->devices & (ATA_ATAPI_MASTER) && ch->device[MASTER].driver) { 920 ata_getparam(&ch->device[MASTER], ATA_C_ATAPI_IDENTIFY); 921 atapi_reinit(&ch->device[MASTER]); 922 } 923 if (newdev & ATA_ATAPI_SLAVE && !ch->device[SLAVE].driver) 924 atapi_attach(&ch->device[SLAVE]); 925 else if (ch->devices & (ATA_ATAPI_SLAVE) && ch->device[SLAVE].driver) { 926 ata_getparam(&ch->device[SLAVE], ATA_C_ATAPI_IDENTIFY); 927 atapi_reinit(&ch->device[SLAVE]); 928 } 929 #endif 930 #ifdef DEV_ATAPICAM 931 atapi_cam_reinit_bus(ch); 932 #endif 933 printf("done\n"); 934 ATA_UNLOCK_CH(ch); 935 ata_start(ch); 936 return 0; 937 } 938 939 static int 940 ata_service(struct ata_channel *ch) 941 { 942 /* do we have a SERVICE request from the drive ? */ 943 if ((ch->status & (ATA_S_SERVICE|ATA_S_ERROR|ATA_S_DRQ)) == ATA_S_SERVICE) { 944 ATA_OUTB(ch->r_bmio, ATA_BMSTAT_PORT, 945 ata_dmastatus(ch) | ATA_BMSTAT_INTERRUPT); 946 #ifdef DEV_ATADISK 947 if ((ATA_INB(ch->r_io, ATA_DRIVE) & ATA_SLAVE) == ATA_MASTER) { 948 if ((ch->devices & ATA_ATA_MASTER) && ch->device[MASTER].driver) 949 return ad_service((struct ad_softc *) 950 ch->device[MASTER].driver, 0); 951 } 952 else { 953 if ((ch->devices & ATA_ATA_SLAVE) && ch->device[SLAVE].driver) 954 return ad_service((struct ad_softc *) 955 ch->device[SLAVE].driver, 0); 956 } 957 #endif 958 } 959 return ATA_OP_FINISHED; 960 } 961 962 int 963 ata_wait(struct ata_device *atadev, u_int8_t mask) 964 { 965 int timeout = 0; 966 967 DELAY(1); 968 while (timeout < 5000000) { /* timeout 5 secs */ 969 atadev->channel->status = ATA_INB(atadev->channel->r_io, ATA_STATUS); 970 971 /* if drive fails status, reselect the drive just to be sure */ 972 if (atadev->channel->status == 0xff) { 973 ata_prtdev(atadev, "no status, reselecting device\n"); 974 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM|atadev->unit); 975 DELAY(10); 976 atadev->channel->status = ATA_INB(atadev->channel->r_io,ATA_STATUS); 977 if (atadev->channel->status == 0xff) 978 return -1; 979 } 980 981 /* are we done ? */ 982 if (!(atadev->channel->status & ATA_S_BUSY)) 983 break; 984 985 if (timeout > 1000) { 986 timeout += 1000; 987 DELAY(1000); 988 } 989 else { 990 timeout += 10; 991 DELAY(10); 992 } 993 } 994 if (atadev->channel->status & ATA_S_ERROR) 995 atadev->channel->error = ATA_INB(atadev->channel->r_io, ATA_ERROR); 996 if (timeout >= 5000000) 997 return -1; 998 if (!mask) 999 return (atadev->channel->status & ATA_S_ERROR); 1000 1001 /* Wait 50 msec for bits wanted. */ 1002 timeout = 5000; 1003 while (timeout--) { 1004 atadev->channel->status = ATA_INB(atadev->channel->r_io, ATA_STATUS); 1005 if ((atadev->channel->status & mask) == mask) { 1006 if (atadev->channel->status & ATA_S_ERROR) 1007 atadev->channel->error=ATA_INB(atadev->channel->r_io,ATA_ERROR); 1008 return (atadev->channel->status & ATA_S_ERROR); 1009 } 1010 DELAY (10); 1011 } 1012 return -1; 1013 } 1014 1015 int 1016 ata_command(struct ata_device *atadev, u_int8_t command, 1017 u_int64_t lba, u_int16_t count, u_int16_t feature, int flags) 1018 { 1019 int error = 0; 1020 #ifdef ATA_DEBUG 1021 ata_prtdev(atadev, "ata_command: addr=%04lx, cmd=%02x, " 1022 "lba=%jd, count=%d, feature=%d, flags=%02x\n", 1023 rman_get_start(atadev->channel->r_io), 1024 command, (intmax_t)lba, count, feature, flags); 1025 #endif 1026 1027 /* select device */ 1028 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 1029 1030 /* disable interrupt from device */ 1031 if (atadev->channel->flags & ATA_QUEUED) 1032 ATA_OUTB(atadev->channel->r_altio, ATA_ALTSTAT, ATA_A_IDS | ATA_A_4BIT); 1033 1034 /* ready to issue command ? */ 1035 if (ata_wait(atadev, 0) < 0) { 1036 ata_prtdev(atadev, "timeout sending command=%02x s=%02x e=%02x\n", 1037 command, atadev->channel->status, atadev->channel->error); 1038 return -1; 1039 } 1040 1041 /* only use 48bit addressing if needed because of the overhead */ 1042 if ((lba > 268435455 || count > 256) && atadev->param && 1043 atadev->param->support.address48) { 1044 ATA_OUTB(atadev->channel->r_io, ATA_FEATURE, (feature>>8) & 0xff); 1045 ATA_OUTB(atadev->channel->r_io, ATA_FEATURE, feature); 1046 ATA_OUTB(atadev->channel->r_io, ATA_COUNT, (count>>8) & 0xff); 1047 ATA_OUTB(atadev->channel->r_io, ATA_COUNT, count & 0xff); 1048 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, (lba>>24) & 0xff); 1049 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, lba & 0xff); 1050 ATA_OUTB(atadev->channel->r_io, ATA_CYL_LSB, (lba>>32) & 0xff); 1051 ATA_OUTB(atadev->channel->r_io, ATA_CYL_LSB, (lba>>8) & 0xff); 1052 ATA_OUTB(atadev->channel->r_io, ATA_CYL_MSB, (lba>>40) & 0xff); 1053 ATA_OUTB(atadev->channel->r_io, ATA_CYL_MSB, (lba>>16) & 0xff); 1054 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_LBA | atadev->unit); 1055 1056 /* translate command into 48bit version */ 1057 switch (command) { 1058 case ATA_C_READ: 1059 command = ATA_C_READ48; break; 1060 case ATA_C_READ_MUL: 1061 command = ATA_C_READ_MUL48; break; 1062 case ATA_C_READ_DMA: 1063 command = ATA_C_READ_DMA48; break; 1064 case ATA_C_READ_DMA_QUEUED: 1065 command = ATA_C_READ_DMA_QUEUED48; break; 1066 case ATA_C_WRITE: 1067 command = ATA_C_WRITE48; break; 1068 case ATA_C_WRITE_MUL: 1069 command = ATA_C_WRITE_MUL48; break; 1070 case ATA_C_WRITE_DMA: 1071 command = ATA_C_WRITE_DMA48; break; 1072 case ATA_C_WRITE_DMA_QUEUED: 1073 command = ATA_C_WRITE_DMA_QUEUED48; break; 1074 case ATA_C_FLUSHCACHE: 1075 command = ATA_C_FLUSHCACHE48; break; 1076 default: 1077 ata_prtdev(atadev, "can't translate cmd to 48bit version\n"); 1078 return -1; 1079 } 1080 atadev->channel->flags |= ATA_48BIT_ACTIVE; 1081 } 1082 else { 1083 ATA_OUTB(atadev->channel->r_io, ATA_FEATURE, feature); 1084 ATA_OUTB(atadev->channel->r_io, ATA_COUNT, count); 1085 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, lba & 0xff); 1086 ATA_OUTB(atadev->channel->r_io, ATA_CYL_LSB, (lba>>8) & 0xff); 1087 ATA_OUTB(atadev->channel->r_io, ATA_CYL_MSB, (lba>>16) & 0xff); 1088 if (atadev->flags & ATA_D_USE_CHS) 1089 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, 1090 ATA_D_IBM | atadev->unit | ((lba>>24) & 0xf)); 1091 else 1092 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, 1093 ATA_D_IBM | ATA_D_LBA | atadev->unit | ((lba>>24) &0xf)); 1094 atadev->channel->flags &= ~ATA_48BIT_ACTIVE; 1095 } 1096 1097 switch (flags & ATA_WAIT_MASK) { 1098 case ATA_IMMEDIATE: 1099 ATA_OUTB(atadev->channel->r_io, ATA_CMD, command); 1100 1101 /* enable interrupt */ 1102 if (atadev->channel->flags & ATA_QUEUED) 1103 ATA_OUTB(atadev->channel->r_altio, ATA_ALTSTAT, ATA_A_4BIT); 1104 break; 1105 1106 case ATA_WAIT_INTR: 1107 atadev->channel->active |= ATA_WAIT_INTR; 1108 ATA_OUTB(atadev->channel->r_io, ATA_CMD, command); 1109 1110 /* enable interrupt */ 1111 if (atadev->channel->flags & ATA_QUEUED) 1112 ATA_OUTB(atadev->channel->r_altio, ATA_ALTSTAT, ATA_A_4BIT); 1113 1114 if (tsleep((caddr_t)atadev->channel, PRIBIO, "atacmd", 10 * hz)) { 1115 ata_prtdev(atadev, "timeout waiting for interrupt\n"); 1116 atadev->channel->active &= ~ATA_WAIT_INTR; 1117 error = -1; 1118 } 1119 break; 1120 1121 case ATA_WAIT_READY: 1122 atadev->channel->active |= ATA_WAIT_READY; 1123 ATA_OUTB(atadev->channel->r_io, ATA_CMD, command); 1124 if (ata_wait(atadev, ATA_S_READY) < 0) { 1125 ata_prtdev(atadev, "timeout waiting for cmd=%02x s=%02x e=%02x\n", 1126 command, atadev->channel->status,atadev->channel->error); 1127 error = -1; 1128 } 1129 atadev->channel->active &= ~ATA_WAIT_READY; 1130 break; 1131 } 1132 return error; 1133 } 1134 1135 static void 1136 ata_enclosure_start(struct ata_device *atadev) 1137 { 1138 ATA_INB(atadev->channel->r_io, ATA_DRIVE); 1139 DELAY(1); 1140 ATA_INB(atadev->channel->r_io, ATA_DRIVE); 1141 DELAY(1); 1142 ATA_INB(atadev->channel->r_io, ATA_CMD); 1143 DELAY(1); 1144 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 1145 DELAY(1); 1146 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 1147 DELAY(1); 1148 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 1149 DELAY(1); 1150 ATA_INB(atadev->channel->r_io, ATA_COUNT); 1151 DELAY(1); 1152 ATA_INB(atadev->channel->r_io, ATA_DRIVE); 1153 DELAY(1); 1154 } 1155 1156 static void 1157 ata_enclosure_end(struct ata_device *atadev) 1158 { 1159 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 1160 DELAY(1); 1161 } 1162 1163 static void 1164 ata_enclosure_chip_start(struct ata_device *atadev) 1165 { 1166 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x0b); 1167 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x0a); 1168 DELAY(25); 1169 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x08); 1170 } 1171 1172 static void 1173 ata_enclosure_chip_end(struct ata_device *atadev) 1174 { 1175 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x08); 1176 DELAY(64); 1177 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x0a); 1178 DELAY(25); 1179 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x0b); 1180 DELAY(64); 1181 } 1182 1183 static u_int8_t 1184 ata_enclosure_chip_rdbit(struct ata_device *atadev) 1185 { 1186 u_int8_t val; 1187 1188 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0); 1189 DELAY(64); 1190 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x02); 1191 DELAY(25); 1192 val = ATA_INB(atadev->channel->r_io, ATA_SECTOR) & 0x01; 1193 DELAY(38); 1194 return val; 1195 } 1196 1197 static void 1198 ata_enclosure_chip_wrbit(struct ata_device *atadev, u_int8_t data) 1199 { 1200 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x08 | (data & 0x01)); 1201 DELAY(64); 1202 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x08 | 0x02 | (data & 0x01)); 1203 DELAY(64); 1204 } 1205 1206 static u_int8_t 1207 ata_enclosure_chip_rw(struct ata_device *atadev, int rw, u_int8_t val) 1208 { 1209 int i; 1210 1211 if (rw) { 1212 for (i = 0; i < 8; i++) 1213 ata_enclosure_chip_wrbit(atadev, (val & (0x80 >> i)) ? 1 : 0); 1214 } 1215 else { 1216 for (i = 0; i < 8; i++) 1217 val = (val << 1) | ata_enclosure_chip_rdbit(atadev); 1218 } 1219 ata_enclosure_chip_wrbit(atadev, 0); 1220 return val; 1221 } 1222 1223 static u_int8_t 1224 ata_enclosure_sensor(struct ata_device *atadev, 1225 int rw, u_int8_t idx, u_int8_t data) 1226 { 1227 ata_enclosure_start(atadev); 1228 ata_enclosure_chip_start(atadev); 1229 ata_enclosure_chip_rw(atadev, 1, 0x5a); 1230 ata_enclosure_chip_rw(atadev, 1, idx); 1231 if (rw) { 1232 ata_enclosure_chip_rw(atadev, 1, data); 1233 } 1234 else { 1235 ata_enclosure_chip_end(atadev); 1236 ata_enclosure_chip_start(atadev); 1237 ata_enclosure_chip_rw(atadev, 1, 0x5b); 1238 data = ata_enclosure_chip_rw(atadev, 0, 0); 1239 } 1240 ata_enclosure_chip_end(atadev); 1241 ata_enclosure_end(atadev); 1242 return data; 1243 } 1244 1245 static int 1246 ata_enclosure_status(struct ata_device *atadev, 1247 int *fan, int *temp, int *v05, int *v12) 1248 { 1249 u_int8_t id1, id2, cnt, div; 1250 1251 if (atadev->flags & ATA_D_ENC_PRESENT) { 1252 atadev->channel->lock_func(atadev->channel, ATA_LF_LOCK); 1253 ATA_SLEEPLOCK_CH(atadev->channel, ATA_CONTROL); 1254 ata_enclosure_sensor(atadev, 1, 0x4e, 0); 1255 id1 = ata_enclosure_sensor(atadev, 0, 0x4f, 0); 1256 ata_enclosure_sensor(atadev, 1, 0x4e, 0x80); 1257 id2 = ata_enclosure_sensor(atadev, 0, 0x4f, 0); 1258 if (id1 != 0xa3 || id2 != 0x5c) 1259 return ENXIO; 1260 div = 1 << (((ata_enclosure_sensor(atadev, 0, 0x5d, 0) & 0x20) >> 3)+ 1261 ((ata_enclosure_sensor(atadev, 0, 0x47, 0) & 0x30) >> 4)+1); 1262 cnt = ata_enclosure_sensor(atadev, 0, 0x28, 0); 1263 if (cnt == 0xff) 1264 *fan = 0; 1265 else 1266 *fan = 1350000 / cnt / div; 1267 ata_enclosure_sensor(atadev, 1, 0x4e, 0x01); 1268 *temp = (ata_enclosure_sensor(atadev, 0, 0x50, 0) * 10) + 1269 (ata_enclosure_sensor(atadev, 0, 0x50, 0) & 0x80 ? 5 : 0); 1270 *v05 = ata_enclosure_sensor(atadev, 0, 0x23, 0) * 27; 1271 *v12 = ata_enclosure_sensor(atadev, 0, 0x24, 0) * 61; 1272 ATA_UNLOCK_CH(atadev->channel); 1273 atadev->channel->lock_func(atadev->channel, ATA_LF_UNLOCK); 1274 return 0; 1275 } 1276 return ENXIO; 1277 } 1278 1279 void 1280 ata_enclosure_print(struct ata_device *atadev) 1281 { 1282 u_int8_t id, st; 1283 int fan, temp, v05, v12; 1284 1285 atadev->channel->lock_func(atadev->channel, ATA_LF_LOCK); 1286 ATA_SLEEPLOCK_CH(atadev->channel, ATA_CONTROL); 1287 ata_enclosure_start(atadev); 1288 id = ATA_INB(atadev->channel->r_io, ATA_DRIVE); 1289 DELAY(1); 1290 st = ATA_INB(atadev->channel->r_io, ATA_COUNT); 1291 DELAY(1); 1292 ata_enclosure_end(atadev); 1293 ATA_UNLOCK_CH(atadev->channel); 1294 atadev->channel->lock_func(atadev->channel, ATA_LF_UNLOCK); 1295 1296 switch (id & 0x93) { 1297 case 0x00: 1298 ata_prtdev(atadev, "Universal enclosure"); 1299 break; 1300 case 0x01: 1301 ata_prtdev(atadev, "FastSwap enclosure"); 1302 break; 1303 case 0x10: 1304 case 0x11: 1305 ata_prtdev(atadev, "SuperSwap enclosure"); 1306 break; 1307 default: 1308 atadev->flags &= ~ATA_D_ENC_PRESENT; 1309 return; 1310 } 1311 atadev->flags |= ATA_D_ENC_PRESENT; 1312 1313 if (ata_enclosure_status(atadev, &fan, &temp, &v05, &v12)) 1314 printf(" detected\n"); 1315 else 1316 printf(" [FAN:%drpm TEMP:%d.%01dC %d.%03dV %d.%03dV]\n", 1317 fan, temp/10, temp%10, v05/1000, v05%1000, v12/1000, v12%1000); 1318 } 1319 1320 void 1321 ata_enclosure_leds(struct ata_device *atadev, u_int8_t color) 1322 { 1323 if (atadev->flags & ATA_D_ENC_PRESENT) { 1324 u_int8_t reg; 1325 1326 ata_enclosure_start(atadev); 1327 reg = ATA_INB(atadev->channel->r_io, ATA_COUNT); 1328 DELAY(1); 1329 ATA_OUTB(atadev->channel->r_io, ATA_COUNT, 1330 (color & ATA_LED_MASK) | (reg & ~ATA_LED_MASK)); 1331 DELAY(1); 1332 ata_enclosure_end(atadev); 1333 } 1334 } 1335 1336 static void 1337 ata_change_mode(struct ata_device *atadev, int mode) 1338 { 1339 int umode, wmode, pmode; 1340 1341 umode = ata_umode(atadev->param); 1342 wmode = ata_wmode(atadev->param); 1343 pmode = ata_pmode(atadev->param); 1344 1345 switch (mode & ATA_DMA_MASK) { 1346 case ATA_UDMA: 1347 if ((mode & ATA_MODE_MASK) < umode) 1348 umode = mode & ATA_MODE_MASK; 1349 break; 1350 case ATA_WDMA: 1351 if ((mode & ATA_MODE_MASK) < wmode) 1352 wmode = mode & ATA_MODE_MASK; 1353 umode = -1; 1354 break; 1355 default: 1356 if (((mode & ATA_MODE_MASK) - ATA_PIO0) < pmode) 1357 pmode = (mode & ATA_MODE_MASK) - ATA_PIO0; 1358 umode = -1; 1359 wmode = -1; 1360 } 1361 1362 ATA_SLEEPLOCK_CH(atadev->channel, ATA_ACTIVE); 1363 ata_dmainit(atadev, pmode, wmode, umode); 1364 ATA_UNLOCK_CH(atadev->channel); 1365 ata_start(atadev->channel); 1366 } 1367 1368 int 1369 ata_printf(struct ata_channel *ch, int device, const char * fmt, ...) 1370 { 1371 va_list ap; 1372 int ret; 1373 1374 if (device == -1) 1375 ret = printf("ata%d: ", device_get_unit(ch->dev)); 1376 else { 1377 if (ch->device[ATA_DEV(device)].name) 1378 ret = printf("%s: ", ch->device[ATA_DEV(device)].name); 1379 else 1380 ret = printf("ata%d-%s: ", device_get_unit(ch->dev), 1381 (device == ATA_MASTER) ? "master" : "slave"); 1382 } 1383 va_start(ap, fmt); 1384 ret += vprintf(fmt, ap); 1385 va_end(ap); 1386 return ret; 1387 } 1388 1389 int 1390 ata_prtdev(struct ata_device *atadev, const char * fmt, ...) 1391 { 1392 va_list ap; 1393 int ret; 1394 1395 if (atadev->name) 1396 ret = printf("%s: ", atadev->name); 1397 else 1398 ret = printf("ata%d-%s: ", device_get_unit(atadev->channel->dev), 1399 (atadev->unit == ATA_MASTER) ? "master" : "slave"); 1400 va_start(ap, fmt); 1401 ret += vprintf(fmt, ap); 1402 va_end(ap); 1403 return ret; 1404 } 1405 1406 void 1407 ata_set_name(struct ata_device *atadev, char *name, int lun) 1408 { 1409 atadev->name = malloc(strlen(name) + 4, M_ATA, M_NOWAIT); 1410 if (atadev->name) 1411 sprintf(atadev->name, "%s%d", name, lun); 1412 } 1413 1414 void 1415 ata_free_name(struct ata_device *atadev) 1416 { 1417 if (atadev->name) 1418 free(atadev->name, M_ATA); 1419 atadev->name = NULL; 1420 } 1421 1422 int 1423 ata_get_lun(u_int32_t *map) 1424 { 1425 int lun = ffs(~*map) - 1; 1426 1427 *map |= (1 << lun); 1428 return lun; 1429 } 1430 1431 int 1432 ata_test_lun(u_int32_t *map, int lun) 1433 { 1434 return (*map & (1 << lun)); 1435 } 1436 1437 void 1438 ata_free_lun(u_int32_t *map, int lun) 1439 { 1440 *map &= ~(1 << lun); 1441 } 1442 1443 char * 1444 ata_mode2str(int mode) 1445 { 1446 switch (mode) { 1447 case ATA_PIO: return "BIOSPIO"; 1448 case ATA_PIO0: return "PIO0"; 1449 case ATA_PIO1: return "PIO1"; 1450 case ATA_PIO2: return "PIO2"; 1451 case ATA_PIO3: return "PIO3"; 1452 case ATA_PIO4: return "PIO4"; 1453 case ATA_DMA: return "BIOSDMA"; 1454 case ATA_WDMA2: return "WDMA2"; 1455 case ATA_UDMA2: return "UDMA33"; 1456 case ATA_UDMA4: return "UDMA66"; 1457 case ATA_UDMA5: return "UDMA100"; 1458 case ATA_UDMA6: return "UDMA133"; 1459 default: return "???"; 1460 } 1461 } 1462 1463 int 1464 ata_pmode(struct ata_params *ap) 1465 { 1466 if (ap->atavalid & ATA_FLAG_64_70) { 1467 if (ap->apiomodes & 2) 1468 return 4; 1469 if (ap->apiomodes & 1) 1470 return 3; 1471 } 1472 if (ap->retired_piomode == 2) 1473 return 2; 1474 if (ap->retired_piomode == 1) 1475 return 1; 1476 if (ap->retired_piomode == 0) 1477 return 0; 1478 return -1; 1479 } 1480 1481 int 1482 ata_wmode(struct ata_params *ap) 1483 { 1484 if (ap->mwdmamodes & 0x04) 1485 return 2; 1486 if (ap->mwdmamodes & 0x02) 1487 return 1; 1488 if (ap->mwdmamodes & 0x01) 1489 return 0; 1490 return -1; 1491 } 1492 1493 int 1494 ata_umode(struct ata_params *ap) 1495 { 1496 if (ap->atavalid & ATA_FLAG_88) { 1497 if (ap->udmamodes & 0x40) 1498 return 6; 1499 if (ap->udmamodes & 0x20) 1500 return 5; 1501 if (ap->udmamodes & 0x10) 1502 return 4; 1503 if (ap->udmamodes & 0x08) 1504 return 3; 1505 if (ap->udmamodes & 0x04) 1506 return 2; 1507 if (ap->udmamodes & 0x02) 1508 return 1; 1509 if (ap->udmamodes & 0x01) 1510 return 0; 1511 } 1512 return -1; 1513 } 1514 1515 static void 1516 bswap(int8_t *buf, int len) 1517 { 1518 u_int16_t *ptr = (u_int16_t*)(buf + len); 1519 1520 while (--ptr >= (u_int16_t*)buf) 1521 *ptr = ntohs(*ptr); 1522 } 1523 1524 static void 1525 btrim(int8_t *buf, int len) 1526 { 1527 int8_t *ptr; 1528 1529 for (ptr = buf; ptr < buf+len; ++ptr) 1530 if (!*ptr) 1531 *ptr = ' '; 1532 for (ptr = buf + len - 1; ptr >= buf && *ptr == ' '; --ptr) 1533 *ptr = 0; 1534 } 1535 1536 static void 1537 bpack(int8_t *src, int8_t *dst, int len) 1538 { 1539 int i, j, blank; 1540 1541 for (i = j = blank = 0 ; i < len; i++) { 1542 if (blank && src[i] == ' ') continue; 1543 if (blank && src[i] != ' ') { 1544 dst[j++] = src[i]; 1545 blank = 0; 1546 continue; 1547 } 1548 if (src[i] == ' ') { 1549 blank = 1; 1550 if (i == 0) 1551 continue; 1552 } 1553 dst[j++] = src[i]; 1554 } 1555 if (j < len) 1556 dst[j] = 0x00; 1557 } 1558 1559 static void 1560 ata_init(void) 1561 { 1562 /* register controlling device */ 1563 make_dev(&ata_cdevsw, 0, UID_ROOT, GID_OPERATOR, 0600, "ata"); 1564 1565 /* register boot attach to be run when interrupts are enabled */ 1566 if (!(ata_delayed_attach = (struct intr_config_hook *) 1567 malloc(sizeof(struct intr_config_hook), 1568 M_TEMP, M_NOWAIT | M_ZERO))) { 1569 printf("ata: malloc of delayed attach hook failed\n"); 1570 return; 1571 } 1572 1573 ata_delayed_attach->ich_func = (void*)ata_boot_attach; 1574 if (config_intrhook_establish(ata_delayed_attach) != 0) { 1575 printf("ata: config_intrhook_establish failed\n"); 1576 free(ata_delayed_attach, M_TEMP); 1577 } 1578 } 1579 SYSINIT(atadev, SI_SUB_DRIVERS, SI_ORDER_SECOND, ata_init, NULL) 1580