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