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