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 default: 615 if (ch->active & ATA_WAIT_INTR) 616 wakeup((caddr_t)ch); 617 } 618 619 if (ch->active & ATA_CONTROL) { 620 ATA_FORCELOCK_CH(ch, ATA_CONTROL); 621 return; 622 } 623 624 if ((ch->flags & ATA_QUEUED) && 625 ATA_INB(ch->r_altio, ATA_ALTSTAT) & ATA_S_SERVICE) { 626 ATA_FORCELOCK_CH(ch, ATA_ACTIVE); 627 if (ata_service(ch) == ATA_OP_CONTINUES) 628 return; 629 } 630 ATA_UNLOCK_CH(ch); 631 ch->running = NULL; 632 ata_start(ch); 633 return; 634 } 635 636 void 637 ata_start(struct ata_channel *ch) 638 { 639 #ifdef DEV_ATADISK 640 struct ad_request *ad_request; 641 #endif 642 #if defined(DEV_ATAPICD) || defined(DEV_ATAPIFD) || defined(DEV_ATAPIST) 643 struct atapi_request *atapi_request; 644 #endif 645 int s; 646 647 if (!ATA_LOCK_CH(ch, ATA_ACTIVE)) 648 return; 649 650 s = splbio(); 651 #ifdef DEV_ATADISK 652 /* find & call the responsible driver if anything on the ATA queue */ 653 if (TAILQ_EMPTY(&ch->ata_queue)) { 654 if (ch->devices & (ATA_ATA_MASTER) && ch->device[MASTER].driver) 655 ad_start(&ch->device[MASTER]); 656 if (ch->devices & (ATA_ATA_SLAVE) && ch->device[SLAVE].driver) 657 ad_start(&ch->device[SLAVE]); 658 } 659 if ((ad_request = TAILQ_FIRST(&ch->ata_queue))) { 660 TAILQ_REMOVE(&ch->ata_queue, ad_request, chain); 661 ch->active = ATA_ACTIVE_ATA; 662 ch->running = ad_request; 663 if (ad_transfer(ad_request) == ATA_OP_CONTINUES) { 664 splx(s); 665 return; 666 } 667 } 668 669 #endif 670 #if defined(DEV_ATAPICD) || defined(DEV_ATAPIFD) || defined(DEV_ATAPIST) 671 /* find & call the responsible driver if anything on the ATAPI queue */ 672 if (TAILQ_EMPTY(&ch->atapi_queue)) { 673 if (ch->devices & (ATA_ATAPI_MASTER) && ch->device[MASTER].driver) 674 atapi_start(&ch->device[MASTER]); 675 if (ch->devices & (ATA_ATAPI_SLAVE) && ch->device[SLAVE].driver) 676 atapi_start(&ch->device[SLAVE]); 677 } 678 if ((atapi_request = TAILQ_FIRST(&ch->atapi_queue))) { 679 TAILQ_REMOVE(&ch->atapi_queue, atapi_request, chain); 680 ch->active = ATA_ACTIVE_ATAPI; 681 ch->running = atapi_request; 682 if (atapi_transfer(atapi_request) == ATA_OP_CONTINUES) { 683 splx(s); 684 return; 685 } 686 } 687 #endif 688 ATA_UNLOCK_CH(ch); 689 splx(s); 690 } 691 692 void 693 ata_reset(struct ata_channel *ch) 694 { 695 u_int8_t lsb, msb, ostat0, ostat1; 696 u_int8_t stat0 = 0, stat1 = 0; 697 int mask = 0, timeout; 698 699 /* do we have any signs of ATA/ATAPI HW being present ? */ 700 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_MASTER); 701 DELAY(10); 702 ostat0 = ATA_INB(ch->r_io, ATA_STATUS); 703 if ((ostat0 & 0xf8) != 0xf8 && ostat0 != 0xa5) { 704 stat0 = ATA_S_BUSY; 705 mask |= 0x01; 706 } 707 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_SLAVE); 708 DELAY(10); 709 ostat1 = ATA_INB(ch->r_io, ATA_STATUS); 710 if ((ostat1 & 0xf8) != 0xf8 && ostat1 != 0xa5) { 711 stat1 = ATA_S_BUSY; 712 mask |= 0x02; 713 } 714 715 ch->devices = 0; 716 if (!mask) 717 return; 718 719 /* in some setups we dont want to test for a slave */ 720 if (ch->flags & ATA_NO_SLAVE) { 721 stat1 = 0x0; 722 mask &= ~0x02; 723 } 724 725 if (bootverbose) 726 ata_printf(ch, -1, "mask=%02x ostat0=%02x ostat2=%02x\n", 727 mask, ostat0, ostat1); 728 729 /* reset channel */ 730 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_MASTER); 731 DELAY(10); 732 ATA_OUTB(ch->r_altio, ATA_ALTSTAT, ATA_A_IDS | ATA_A_RESET); 733 DELAY(10000); 734 ATA_OUTB(ch->r_altio, ATA_ALTSTAT, ATA_A_IDS); 735 DELAY(100000); 736 ATA_INB(ch->r_io, ATA_ERROR); 737 738 /* wait for BUSY to go inactive */ 739 for (timeout = 0; timeout < 310000; timeout++) { 740 if (stat0 & ATA_S_BUSY) { 741 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_MASTER); 742 DELAY(10); 743 stat0 = ATA_INB(ch->r_io, ATA_STATUS); 744 if (!(stat0 & ATA_S_BUSY)) { 745 /* check for ATAPI signature while its still there */ 746 lsb = ATA_INB(ch->r_io, ATA_CYL_LSB); 747 msb = ATA_INB(ch->r_io, ATA_CYL_MSB); 748 if (bootverbose) 749 ata_printf(ch, ATA_MASTER, "ATAPI %02x %02x\n", lsb, msb); 750 if (lsb == ATAPI_MAGIC_LSB && msb == ATAPI_MAGIC_MSB) 751 ch->devices |= ATA_ATAPI_MASTER; 752 } 753 } 754 if (stat1 & ATA_S_BUSY) { 755 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_SLAVE); 756 DELAY(10); 757 stat1 = ATA_INB(ch->r_io, ATA_STATUS); 758 if (!(stat1 & ATA_S_BUSY)) { 759 /* check for ATAPI signature while its still there */ 760 lsb = ATA_INB(ch->r_io, ATA_CYL_LSB); 761 msb = ATA_INB(ch->r_io, ATA_CYL_MSB); 762 if (bootverbose) 763 ata_printf(ch, ATA_SLAVE, "ATAPI %02x %02x\n", lsb, msb); 764 if (lsb == ATAPI_MAGIC_LSB && msb == ATAPI_MAGIC_MSB) 765 ch->devices |= ATA_ATAPI_SLAVE; 766 } 767 } 768 if (mask == 0x01) /* wait for master only */ 769 if (!(stat0 & ATA_S_BUSY)) 770 break; 771 if (mask == 0x02) /* wait for slave only */ 772 if (!(stat1 & ATA_S_BUSY)) 773 break; 774 if (mask == 0x03) /* wait for both master & slave */ 775 if (!(stat0 & ATA_S_BUSY) && !(stat1 & ATA_S_BUSY)) 776 break; 777 DELAY(100); 778 } 779 DELAY(10); 780 ATA_OUTB(ch->r_altio, ATA_ALTSTAT, ATA_A_4BIT); 781 782 if (stat0 & ATA_S_BUSY) 783 mask &= ~0x01; 784 if (stat1 & ATA_S_BUSY) 785 mask &= ~0x02; 786 if (bootverbose) 787 ata_printf(ch, -1, "mask=%02x stat0=%02x stat1=%02x\n", 788 mask, stat0, stat1); 789 if (!mask) 790 return; 791 792 if (mask & 0x01 && ostat0 != 0x00 && !(ch->devices & ATA_ATAPI_MASTER)) { 793 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_MASTER); 794 DELAY(10); 795 ATA_OUTB(ch->r_io, ATA_ERROR, 0x58); 796 ATA_OUTB(ch->r_io, ATA_CYL_LSB, 0xa5); 797 lsb = ATA_INB(ch->r_io, ATA_ERROR); 798 msb = ATA_INB(ch->r_io, ATA_CYL_LSB); 799 if (bootverbose) 800 ata_printf(ch, ATA_MASTER, "ATA %02x %02x\n", lsb, msb); 801 if (lsb != 0x58 && msb == 0xa5) 802 ch->devices |= ATA_ATA_MASTER; 803 } 804 if (mask & 0x02 && ostat1 != 0x00 && !(ch->devices & ATA_ATAPI_SLAVE)) { 805 ATA_OUTB(ch->r_io, ATA_DRIVE, ATA_D_IBM | ATA_SLAVE); 806 DELAY(10); 807 ATA_OUTB(ch->r_io, ATA_ERROR, 0x58); 808 ATA_OUTB(ch->r_io, ATA_CYL_LSB, 0xa5); 809 lsb = ATA_INB(ch->r_io, ATA_ERROR); 810 msb = ATA_INB(ch->r_io, ATA_CYL_LSB); 811 if (bootverbose) 812 ata_printf(ch, ATA_SLAVE, "ATA %02x %02x\n", lsb, msb); 813 if (lsb != 0x58 && msb == 0xa5) 814 ch->devices |= ATA_ATA_SLAVE; 815 } 816 if (bootverbose) 817 ata_printf(ch, -1, "devices=%02x\n", ch->devices); 818 } 819 820 int 821 ata_reinit(struct ata_channel *ch) 822 { 823 int devices, misdev, newdev; 824 825 if (!ch->r_io || !ch->r_altio || !ch->r_irq) 826 return ENXIO; 827 828 ATA_FORCELOCK_CH(ch, ATA_CONTROL); 829 ch->running = NULL; 830 devices = ch->devices; 831 ata_printf(ch, -1, "resetting devices ..\n"); 832 ata_reset(ch); 833 834 if ((misdev = devices & ~ch->devices)) { 835 #ifdef DEV_ATADISK 836 if (misdev & ATA_ATA_MASTER && ch->device[MASTER].driver) 837 ad_detach(&ch->device[MASTER], 0); 838 if (misdev & ATA_ATA_SLAVE && ch->device[SLAVE].driver) 839 ad_detach(&ch->device[SLAVE], 0); 840 #endif 841 #if defined(DEV_ATAPICD) || defined(DEV_ATAPIFD) || defined(DEV_ATAPIST) 842 if (misdev & ATA_ATAPI_MASTER && ch->device[MASTER].driver) 843 atapi_detach(&ch->device[MASTER]); 844 if (misdev & ATA_ATAPI_SLAVE && ch->device[SLAVE].driver) 845 atapi_detach(&ch->device[SLAVE]); 846 #endif 847 if (misdev & ATA_ATA_MASTER || misdev & ATA_ATAPI_MASTER) { 848 if (ch->device[MASTER].param) 849 free(ch->device[MASTER].param, M_ATA); 850 ch->device[MASTER].param = NULL; 851 } 852 if (misdev & ATA_ATA_SLAVE || misdev & ATA_ATAPI_SLAVE) { 853 if (ch->device[SLAVE].param) 854 free(ch->device[SLAVE].param, M_ATA); 855 ch->device[SLAVE].param = NULL; 856 } 857 } 858 if ((newdev = ~devices & ch->devices)) { 859 if (newdev & ATA_ATA_MASTER) 860 if (ata_getparam(&ch->device[MASTER], ATA_C_ATA_IDENTIFY)) 861 newdev &= ~ATA_ATA_MASTER; 862 if (newdev & ATA_ATA_SLAVE) 863 if (ata_getparam(&ch->device[SLAVE], ATA_C_ATA_IDENTIFY)) 864 newdev &= ~ATA_ATA_SLAVE; 865 if (newdev & ATA_ATAPI_MASTER) 866 if (ata_getparam(&ch->device[MASTER], ATA_C_ATAPI_IDENTIFY)) 867 newdev &= ~ATA_ATAPI_MASTER; 868 if (newdev & ATA_ATAPI_SLAVE) 869 if (ata_getparam(&ch->device[SLAVE], ATA_C_ATAPI_IDENTIFY)) 870 newdev &= ~ATA_ATAPI_SLAVE; 871 } 872 #ifdef DEV_ATADISK 873 if (newdev & ATA_ATA_MASTER && !ch->device[MASTER].driver) 874 ad_attach(&ch->device[MASTER]); 875 else if (ch->devices & ATA_ATA_MASTER && ch->device[MASTER].driver) { 876 ata_getparam(&ch->device[MASTER], ATA_C_ATA_IDENTIFY); 877 ad_reinit(&ch->device[MASTER]); 878 } 879 if (newdev & ATA_ATA_SLAVE && !ch->device[SLAVE].driver) 880 ad_attach(&ch->device[SLAVE]); 881 else if (ch->devices & (ATA_ATA_SLAVE) && ch->device[SLAVE].driver) { 882 ata_getparam(&ch->device[SLAVE], ATA_C_ATA_IDENTIFY); 883 ad_reinit(&ch->device[SLAVE]); 884 } 885 #endif 886 #if defined(DEV_ATAPICD) || defined(DEV_ATAPIFD) || defined(DEV_ATAPIST) 887 if (newdev & ATA_ATAPI_MASTER && !ch->device[MASTER].driver) 888 atapi_attach(&ch->device[MASTER]); 889 else if (ch->devices & (ATA_ATAPI_MASTER) && ch->device[MASTER].driver) { 890 ata_getparam(&ch->device[MASTER], ATA_C_ATAPI_IDENTIFY); 891 atapi_reinit(&ch->device[MASTER]); 892 } 893 if (newdev & ATA_ATAPI_SLAVE && !ch->device[SLAVE].driver) 894 atapi_attach(&ch->device[SLAVE]); 895 else if (ch->devices & (ATA_ATAPI_SLAVE) && ch->device[SLAVE].driver) { 896 ata_getparam(&ch->device[SLAVE], ATA_C_ATAPI_IDENTIFY); 897 atapi_reinit(&ch->device[SLAVE]); 898 } 899 #endif 900 printf("done\n"); 901 ATA_UNLOCK_CH(ch); 902 ata_start(ch); 903 return 0; 904 } 905 906 static int 907 ata_service(struct ata_channel *ch) 908 { 909 /* do we have a SERVICE request from the drive ? */ 910 if ((ch->status & (ATA_S_SERVICE|ATA_S_ERROR|ATA_S_DRQ)) == ATA_S_SERVICE) { 911 ATA_OUTB(ch->r_bmio, ATA_BMSTAT_PORT, 912 ata_dmastatus(ch) | ATA_BMSTAT_INTERRUPT); 913 #ifdef DEV_ATADISK 914 if ((ATA_INB(ch->r_io, ATA_DRIVE) & ATA_SLAVE) == ATA_MASTER) { 915 if ((ch->devices & ATA_ATA_MASTER) && ch->device[MASTER].driver) 916 return ad_service((struct ad_softc *) 917 ch->device[MASTER].driver, 0); 918 } 919 else { 920 if ((ch->devices & ATA_ATA_SLAVE) && ch->device[SLAVE].driver) 921 return ad_service((struct ad_softc *) 922 ch->device[SLAVE].driver, 0); 923 } 924 #endif 925 } 926 return ATA_OP_FINISHED; 927 } 928 929 int 930 ata_wait(struct ata_device *atadev, u_int8_t mask) 931 { 932 int timeout = 0; 933 934 DELAY(1); 935 while (timeout < 5000000) { /* timeout 5 secs */ 936 atadev->channel->status = ATA_INB(atadev->channel->r_io, ATA_STATUS); 937 938 /* if drive fails status, reselect the drive just to be sure */ 939 if (atadev->channel->status == 0xff) { 940 ata_prtdev(atadev, "no status, reselecting device\n"); 941 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM|atadev->unit); 942 DELAY(10); 943 atadev->channel->status = ATA_INB(atadev->channel->r_io,ATA_STATUS); 944 if (atadev->channel->status == 0xff) 945 return -1; 946 } 947 948 /* are we done ? */ 949 if (!(atadev->channel->status & ATA_S_BUSY)) 950 break; 951 952 if (timeout > 1000) { 953 timeout += 1000; 954 DELAY(1000); 955 } 956 else { 957 timeout += 10; 958 DELAY(10); 959 } 960 } 961 if (atadev->channel->status & ATA_S_ERROR) 962 atadev->channel->error = ATA_INB(atadev->channel->r_io, ATA_ERROR); 963 if (timeout >= 5000000) 964 return -1; 965 if (!mask) 966 return (atadev->channel->status & ATA_S_ERROR); 967 968 /* Wait 50 msec for bits wanted. */ 969 timeout = 5000; 970 while (timeout--) { 971 atadev->channel->status = ATA_INB(atadev->channel->r_io, ATA_STATUS); 972 if ((atadev->channel->status & mask) == mask) { 973 if (atadev->channel->status & ATA_S_ERROR) 974 atadev->channel->error=ATA_INB(atadev->channel->r_io,ATA_ERROR); 975 return (atadev->channel->status & ATA_S_ERROR); 976 } 977 DELAY (10); 978 } 979 return -1; 980 } 981 982 int 983 ata_command(struct ata_device *atadev, u_int8_t command, 984 u_int64_t lba, u_int16_t count, u_int8_t feature, int flags) 985 { 986 int error = 0; 987 #ifdef ATA_DEBUG 988 ata_prtdev(atadev, "ata_command: addr=%04lx, cmd=%02x, " 989 "lba=%lld, count=%d, feature=%d, flags=%02x\n", 990 rman_get_start(atadev->channel->r_io), 991 command, lba, count, feature, flags); 992 #endif 993 994 /* select device */ 995 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 996 997 /* disable interrupt from device */ 998 if (atadev->channel->flags & ATA_QUEUED) 999 ATA_OUTB(atadev->channel->r_altio, ATA_ALTSTAT, ATA_A_IDS | ATA_A_4BIT); 1000 1001 /* ready to issue command ? */ 1002 if (ata_wait(atadev, 0) < 0) { 1003 ata_prtdev(atadev, "timeout sending command=%02x s=%02x e=%02x\n", 1004 command, atadev->channel->status, atadev->channel->error); 1005 return -1; 1006 } 1007 1008 /* only use 48bit addressing if needed because of the overhead */ 1009 if ((lba > 268435455 || count > 256) && atadev->param && 1010 atadev->param->support.address48) { 1011 ATA_OUTB(atadev->channel->r_io, ATA_FEATURE, (feature>>8) & 0xff); 1012 ATA_OUTB(atadev->channel->r_io, ATA_FEATURE, feature); 1013 ATA_OUTB(atadev->channel->r_io, ATA_COUNT, (count>>8) & 0xff); 1014 ATA_OUTB(atadev->channel->r_io, ATA_COUNT, count & 0xff); 1015 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, (lba>>24) & 0xff); 1016 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, lba & 0xff); 1017 ATA_OUTB(atadev->channel->r_io, ATA_CYL_LSB, (lba>>32) & 0xff); 1018 ATA_OUTB(atadev->channel->r_io, ATA_CYL_LSB, (lba>>8) & 0xff); 1019 ATA_OUTB(atadev->channel->r_io, ATA_CYL_MSB, (lba>>40) & 0xff); 1020 ATA_OUTB(atadev->channel->r_io, ATA_CYL_MSB, (lba>>16) & 0xff); 1021 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_LBA | atadev->unit); 1022 1023 /* translate command into 48bit version */ 1024 switch (command) { 1025 case ATA_C_READ: 1026 command = ATA_C_READ48; break; 1027 case ATA_C_READ_MUL: 1028 command = ATA_C_READ_MUL48; break; 1029 case ATA_C_READ_DMA: 1030 command = ATA_C_READ_DMA48; break; 1031 case ATA_C_READ_DMA_QUEUED: 1032 command = ATA_C_READ_DMA_QUEUED48; break; 1033 case ATA_C_WRITE: 1034 command = ATA_C_WRITE48; break; 1035 case ATA_C_WRITE_MUL: 1036 command = ATA_C_WRITE_MUL48; break; 1037 case ATA_C_WRITE_DMA: 1038 command = ATA_C_WRITE_DMA48; break; 1039 case ATA_C_WRITE_DMA_QUEUED: 1040 command = ATA_C_WRITE_DMA_QUEUED48; break; 1041 case ATA_C_FLUSHCACHE: 1042 command = ATA_C_FLUSHCACHE48; break; 1043 default: 1044 ata_prtdev(atadev, "can't translate cmd to 48bit version\n"); 1045 return -1; 1046 } 1047 } 1048 else { 1049 ATA_OUTB(atadev->channel->r_io, ATA_FEATURE, feature); 1050 ATA_OUTB(atadev->channel->r_io, ATA_COUNT, count); 1051 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, lba & 0xff); 1052 ATA_OUTB(atadev->channel->r_io, ATA_CYL_LSB, (lba>>8) & 0xff); 1053 ATA_OUTB(atadev->channel->r_io, ATA_CYL_MSB, (lba>>16) & 0xff); 1054 if (atadev->flags & ATA_D_USE_CHS) 1055 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, 1056 ATA_D_IBM | atadev->unit | ((lba>>24) & 0xf)); 1057 else 1058 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, 1059 ATA_D_IBM | ATA_D_LBA | atadev->unit | ((lba>>24) &0xf)); 1060 } 1061 1062 switch (flags & ATA_WAIT_MASK) { 1063 case ATA_IMMEDIATE: 1064 ATA_OUTB(atadev->channel->r_io, ATA_CMD, command); 1065 1066 /* enable interrupt */ 1067 if (atadev->channel->flags & ATA_QUEUED) 1068 ATA_OUTB(atadev->channel->r_altio, ATA_ALTSTAT, ATA_A_4BIT); 1069 break; 1070 1071 case ATA_WAIT_INTR: 1072 atadev->channel->active |= ATA_WAIT_INTR; 1073 ATA_OUTB(atadev->channel->r_io, ATA_CMD, command); 1074 1075 /* enable interrupt */ 1076 if (atadev->channel->flags & ATA_QUEUED) 1077 ATA_OUTB(atadev->channel->r_altio, ATA_ALTSTAT, ATA_A_4BIT); 1078 1079 if (tsleep((caddr_t)atadev->channel, PRIBIO, "atacmd", 10 * hz)) { 1080 ata_prtdev(atadev, "timeout waiting for interrupt\n"); 1081 atadev->channel->active &= ~ATA_WAIT_INTR; 1082 error = -1; 1083 } 1084 break; 1085 1086 case ATA_WAIT_READY: 1087 atadev->channel->active |= ATA_WAIT_READY; 1088 ATA_OUTB(atadev->channel->r_io, ATA_CMD, command); 1089 if (ata_wait(atadev, ATA_S_READY) < 0) { 1090 ata_prtdev(atadev, "timeout waiting for cmd=%02x s=%02x e=%02x\n", 1091 command, atadev->channel->status,atadev->channel->error); 1092 error = -1; 1093 } 1094 atadev->channel->active &= ~ATA_WAIT_READY; 1095 break; 1096 } 1097 return error; 1098 } 1099 1100 static void 1101 ata_drawer_start(struct ata_device *atadev) 1102 { 1103 ATA_INB(atadev->channel->r_io, ATA_DRIVE); 1104 DELAY(1); 1105 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 1106 DELAY(1); 1107 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 1108 DELAY(1); 1109 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 1110 DELAY(1); 1111 ATA_INB(atadev->channel->r_io, ATA_COUNT); 1112 DELAY(1); 1113 ATA_INB(atadev->channel->r_io, ATA_DRIVE); 1114 DELAY(1); 1115 } 1116 1117 static void 1118 ata_drawer_end(struct ata_device *atadev) 1119 { 1120 ATA_OUTB(atadev->channel->r_io, ATA_DRIVE, ATA_D_IBM | atadev->unit); 1121 DELAY(1); 1122 } 1123 1124 static void 1125 ata_chip_start(struct ata_device *atadev) 1126 { 1127 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x0b); 1128 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x0a); 1129 DELAY(25); 1130 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x08); 1131 } 1132 1133 static void 1134 ata_chip_end(struct ata_device *atadev) 1135 { 1136 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x08); 1137 DELAY(64); 1138 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x0a); 1139 DELAY(25); 1140 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x0b); 1141 DELAY(64); 1142 } 1143 1144 static u_int8_t 1145 ata_chip_rdbit(struct ata_device *atadev) 1146 { 1147 u_int8_t val; 1148 1149 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0); 1150 DELAY(64); 1151 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x02); 1152 DELAY(25); 1153 val = ATA_INB(atadev->channel->r_io, ATA_SECTOR) & 0x01; 1154 DELAY(38); 1155 return val; 1156 } 1157 1158 static void 1159 ata_chip_wrbit(struct ata_device *atadev, u_int8_t data) 1160 { 1161 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x08 | (data & 0x01)); 1162 DELAY(64); 1163 ATA_OUTB(atadev->channel->r_io, ATA_SECTOR, 0x08 | 0x02 | (data & 0x01)); 1164 DELAY(64); 1165 } 1166 1167 static u_int8_t 1168 ata_chip_rw(struct ata_device *atadev, int rw, u_int8_t val) 1169 { 1170 int i; 1171 1172 if (rw) { 1173 for (i = 0; i < 8; i++) 1174 ata_chip_wrbit(atadev, (val & (0x80 >> i)) ? 1 : 0); 1175 } 1176 else { 1177 for (i = 0; i < 8; i++) 1178 val = (val << 1) | ata_chip_rdbit(atadev); 1179 } 1180 ata_chip_wrbit(atadev, 0); 1181 return val; 1182 } 1183 1184 static u_int8_t 1185 ata_drawersensor(struct ata_device *atadev, int rw, u_int8_t idx, u_int8_t data) 1186 { 1187 ata_drawer_start(atadev); 1188 ata_chip_start(atadev); 1189 ata_chip_rw(atadev, 1, 0x5a); 1190 ata_chip_rw(atadev, 1, idx); 1191 if (rw) { 1192 ata_chip_rw(atadev, 1, data); 1193 } 1194 else { 1195 ata_chip_end(atadev); 1196 ata_chip_start(atadev); 1197 ata_chip_rw(atadev, 1, 0x5b); 1198 data = ata_chip_rw(atadev, 0, 0); 1199 } 1200 ata_chip_end(atadev); 1201 ata_drawer_end(atadev); 1202 return data; 1203 } 1204 1205 void 1206 ata_drawerleds(struct ata_device *atadev, u_int8_t color) 1207 { 1208 ata_drawer_start(atadev); 1209 ATA_OUTB(atadev->channel->r_io, ATA_COUNT, color); 1210 DELAY(1); 1211 ata_drawer_end(atadev); 1212 } 1213 1214 static void 1215 ata_change_mode(struct ata_device *atadev, int mode) 1216 { 1217 int umode, wmode, pmode; 1218 1219 umode = ata_umode(atadev->param); 1220 wmode = ata_wmode(atadev->param); 1221 pmode = ata_pmode(atadev->param); 1222 1223 switch (mode & ATA_DMA_MASK) { 1224 case ATA_UDMA: 1225 if ((mode & ATA_MODE_MASK) < umode) 1226 umode = mode & ATA_MODE_MASK; 1227 break; 1228 case ATA_WDMA: 1229 if ((mode & ATA_MODE_MASK) < wmode) 1230 wmode = mode & ATA_MODE_MASK; 1231 umode = -1; 1232 break; 1233 default: 1234 if (((mode & ATA_MODE_MASK) - ATA_PIO0) < pmode) 1235 pmode = (mode & ATA_MODE_MASK) - ATA_PIO0; 1236 umode = -1; 1237 wmode = -1; 1238 } 1239 1240 ATA_SLEEPLOCK_CH(atadev->channel, ATA_ACTIVE); 1241 ata_dmainit(atadev, pmode, wmode, umode); 1242 ATA_UNLOCK_CH(atadev->channel); 1243 ata_start(atadev->channel); /* XXX SOS */ 1244 } 1245 1246 int 1247 ata_printf(struct ata_channel *ch, int device, const char * fmt, ...) 1248 { 1249 va_list ap; 1250 int ret; 1251 1252 if (device == -1) 1253 ret = printf("ata%d: ", device_get_unit(ch->dev)); 1254 else { 1255 if (ch->device[ATA_DEV(device)].name) 1256 ret = printf("%s: ", ch->device[ATA_DEV(device)].name); 1257 else 1258 ret = printf("ata%d-%s: ", device_get_unit(ch->dev), 1259 (device == ATA_MASTER) ? "master" : "slave"); 1260 } 1261 va_start(ap, fmt); 1262 ret += vprintf(fmt, ap); 1263 va_end(ap); 1264 return ret; 1265 } 1266 1267 int 1268 ata_prtdev(struct ata_device *atadev, const char * fmt, ...) 1269 { 1270 va_list ap; 1271 int ret; 1272 1273 if (atadev->name) 1274 ret = printf("%s: ", atadev->name); 1275 else 1276 ret = printf("ata%d-%s: ", device_get_unit(atadev->channel->dev), 1277 (atadev->unit == ATA_MASTER) ? "master" : "slave"); 1278 va_start(ap, fmt); 1279 ret += vprintf(fmt, ap); 1280 va_end(ap); 1281 return ret; 1282 } 1283 1284 void 1285 ata_set_name(struct ata_device *atadev, char *name, int lun) 1286 { 1287 atadev->name = malloc(strlen(name) + 4, M_ATA, M_NOWAIT); 1288 if (atadev->name) 1289 sprintf(atadev->name, "%s%d", name, lun); 1290 } 1291 1292 void 1293 ata_free_name(struct ata_device *atadev) 1294 { 1295 if (atadev->name) 1296 free(atadev->name, M_ATA); 1297 atadev->name = NULL; 1298 } 1299 1300 int 1301 ata_get_lun(u_int32_t *map) 1302 { 1303 int lun = ffs(~*map) - 1; 1304 1305 *map |= (1 << lun); 1306 return lun; 1307 } 1308 1309 int 1310 ata_test_lun(u_int32_t *map, int lun) 1311 { 1312 return (*map & (1 << lun)); 1313 } 1314 1315 void 1316 ata_free_lun(u_int32_t *map, int lun) 1317 { 1318 *map &= ~(1 << lun); 1319 } 1320 1321 char * 1322 ata_mode2str(int mode) 1323 { 1324 switch (mode) { 1325 case ATA_PIO: return "BIOSPIO"; 1326 case ATA_PIO0: return "PIO0"; 1327 case ATA_PIO1: return "PIO1"; 1328 case ATA_PIO2: return "PIO2"; 1329 case ATA_PIO3: return "PIO3"; 1330 case ATA_PIO4: return "PIO4"; 1331 case ATA_DMA: return "BIOSDMA"; 1332 case ATA_WDMA2: return "WDMA2"; 1333 case ATA_UDMA2: return "UDMA33"; 1334 case ATA_UDMA4: return "UDMA66"; 1335 case ATA_UDMA5: return "UDMA100"; 1336 case ATA_UDMA6: return "UDMA133"; 1337 default: return "???"; 1338 } 1339 } 1340 1341 int 1342 ata_pmode(struct ata_params *ap) 1343 { 1344 if (ap->atavalid & ATA_FLAG_64_70) { 1345 if (ap->apiomodes & 2) 1346 return 4; 1347 if (ap->apiomodes & 1) 1348 return 3; 1349 } 1350 if (ap->retired_piomode == 2) 1351 return 2; 1352 if (ap->retired_piomode == 1) 1353 return 1; 1354 if (ap->retired_piomode == 0) 1355 return 0; 1356 return -1; 1357 } 1358 1359 int 1360 ata_wmode(struct ata_params *ap) 1361 { 1362 if (ap->mwdmamodes & 0x04) 1363 return 2; 1364 if (ap->mwdmamodes & 0x02) 1365 return 1; 1366 if (ap->mwdmamodes & 0x01) 1367 return 0; 1368 return -1; 1369 } 1370 1371 int 1372 ata_umode(struct ata_params *ap) 1373 { 1374 if (ap->atavalid & ATA_FLAG_88) { 1375 if (ap->udmamodes & 0x40) 1376 return 6; 1377 if (ap->udmamodes & 0x20) 1378 return 5; 1379 if (ap->udmamodes & 0x10) 1380 return 4; 1381 if (ap->udmamodes & 0x08) 1382 return 3; 1383 if (ap->udmamodes & 0x04) 1384 return 2; 1385 if (ap->udmamodes & 0x02) 1386 return 1; 1387 if (ap->udmamodes & 0x01) 1388 return 0; 1389 } 1390 return -1; 1391 } 1392 1393 static void 1394 bswap(int8_t *buf, int len) 1395 { 1396 u_int16_t *ptr = (u_int16_t*)(buf + len); 1397 1398 while (--ptr >= (u_int16_t*)buf) 1399 *ptr = ntohs(*ptr); 1400 } 1401 1402 static void 1403 btrim(int8_t *buf, int len) 1404 { 1405 int8_t *ptr; 1406 1407 for (ptr = buf; ptr < buf+len; ++ptr) 1408 if (!*ptr) 1409 *ptr = ' '; 1410 for (ptr = buf + len - 1; ptr >= buf && *ptr == ' '; --ptr) 1411 *ptr = 0; 1412 } 1413 1414 static void 1415 bpack(int8_t *src, int8_t *dst, int len) 1416 { 1417 int i, j, blank; 1418 1419 for (i = j = blank = 0 ; i < len; i++) { 1420 if (blank && src[i] == ' ') continue; 1421 if (blank && src[i] != ' ') { 1422 dst[j++] = src[i]; 1423 blank = 0; 1424 continue; 1425 } 1426 if (src[i] == ' ') { 1427 blank = 1; 1428 if (i == 0) 1429 continue; 1430 } 1431 dst[j++] = src[i]; 1432 } 1433 if (j < len) 1434 dst[j] = 0x00; 1435 } 1436 1437 static void 1438 ata_init(void) 1439 { 1440 /* register controlling device */ 1441 make_dev(&ata_cdevsw, 0, UID_ROOT, GID_OPERATOR, 0600, "ata"); 1442 1443 /* register boot attach to be run when interrupts are enabled */ 1444 if (!(ata_delayed_attach = (struct intr_config_hook *) 1445 malloc(sizeof(struct intr_config_hook), 1446 M_TEMP, M_NOWAIT | M_ZERO))) { 1447 printf("ata: malloc of delayed attach hook failed\n"); 1448 return; 1449 } 1450 1451 ata_delayed_attach->ich_func = (void*)ata_boot_attach; 1452 if (config_intrhook_establish(ata_delayed_attach) != 0) { 1453 printf("ata: config_intrhook_establish failed\n"); 1454 free(ata_delayed_attach, M_TEMP); 1455 } 1456 } 1457 SYSINIT(atadev, SI_SUB_DRIVERS, SI_ORDER_SECOND, ata_init, NULL) 1458