1 /* tm.c 4.43 81/11/10 */ 2 3 #include "te.h" 4 #include "ts.h" 5 #if NTM > 0 6 /* 7 * TM11/TE10 tape driver 8 * 9 * TODO: 10 * test driver with more than one slave 11 * test driver with more than one controller 12 * test reset code 13 * what happens if you offline tape during rewind? 14 * test using file system on tape 15 */ 16 #include "../h/param.h" 17 #include "../h/systm.h" 18 #include "../h/buf.h" 19 #include "../h/dir.h" 20 #include "../h/conf.h" 21 #include "../h/user.h" 22 #include "../h/file.h" 23 #include "../h/map.h" 24 #include "../h/pte.h" 25 #include "../h/vm.h" 26 #include "../h/ubareg.h" 27 #include "../h/ubavar.h" 28 #include "../h/mtio.h" 29 #include "../h/ioctl.h" 30 #include "../h/cmap.h" 31 #include "../h/cpu.h" 32 33 #include "../h/tmreg.h" 34 35 /* 36 * There is a ctmbuf per tape controller. 37 * It is used as the token to pass to the internal routines 38 * to execute tape ioctls, and also acts as a lock on the slaves 39 * on the controller, since there is only one per controller. 40 * In particular, when the tape is rewinding on close we release 41 * the user process but any further attempts to use the tape drive 42 * before the rewind completes will hang waiting for ctmbuf. 43 */ 44 struct buf ctmbuf[NTM]; 45 46 /* 47 * Raw tape operations use rtmbuf. The driver 48 * notices when rtmbuf is being used and allows the user 49 * program to continue after errors and read records 50 * not of the standard length (BSIZE). 51 */ 52 struct buf rtmbuf[NTM]; 53 54 /* 55 * Driver unibus interface routines and variables. 56 */ 57 int tmprobe(), tmslave(), tmattach(), tmdgo(), tmintr(); 58 struct uba_ctlr *tmminfo[NTM]; 59 struct uba_device *tedinfo[NTE]; 60 struct buf teutab[NTE]; 61 short tetotm[NTE]; 62 u_short tmstd[] = { 0772520, 0 }; 63 struct uba_driver tmdriver = 64 { tmprobe, tmslave, tmattach, tmdgo, tmstd, "te", tedinfo, "tm", tmminfo, 0 }; 65 66 /* bits in minor device */ 67 #define TEUNIT(dev) (minor(dev)&03) 68 #define TMUNIT(dev) (tetotm[TEUNIT(dev)]) 69 #define T_NOREWIND 04 70 #define T_1600BPI 08 71 72 #define INF (daddr_t)1000000L 73 74 /* 75 * Software state per tape transport. 76 * 77 * 1. A tape drive is a unique-open device; we refuse opens when it is already. 78 * 2. We keep track of the current position on a block tape and seek 79 * before operations by forward/back spacing if necessary. 80 * 3. We remember if the last operation was a write on a tape, so if a tape 81 * is open read write and the last thing done is a write we can 82 * write a standard end of tape mark (two eofs). 83 * 4. We remember the status registers after the last command, using 84 * then internally and returning them to the SENSE ioctl. 85 * 5. We remember the last density the tape was used at. If it is 86 * not a BOT when we start using it and we are writing, we don't 87 * let the density be changed. 88 */ 89 struct te_softc { 90 char sc_openf; /* lock against multiple opens */ 91 char sc_lastiow; /* last op was a write */ 92 daddr_t sc_blkno; /* block number, for block device tape */ 93 daddr_t sc_nxrec; /* position of end of tape, if known */ 94 u_short sc_erreg; /* copy of last erreg */ 95 u_short sc_dsreg; /* copy of last dsreg */ 96 short sc_resid; /* copy of last bc */ 97 #ifdef unneeded 98 short sc_lastcmd; /* last command to handle direction changes */ 99 #endif 100 u_short sc_dens; /* prototype command with density info */ 101 daddr_t sc_timo; /* time until timeout expires */ 102 short sc_tact; /* timeout is active */ 103 } te_softc[NTM]; 104 #ifdef unneeded 105 int tmgapsdcnt; /* DEBUG */ 106 #endif 107 108 /* 109 * States for um->um_tab.b_active, the per controller state flag. 110 * This is used to sequence control in the driver. 111 */ 112 #define SSEEK 1 /* seeking */ 113 #define SIO 2 /* doing seq i/o */ 114 #define SCOM 3 /* sending control command */ 115 #define SREW 4 /* sending a drive rewind */ 116 117 #if NTS > 0 118 /* 119 * Kludge to get around fact that we don't really 120 * check if a ts is there... if there are both tm's and ts's 121 * declared in the system, then this driver sets havetm to 1 122 * if it finds a tm, and ts just pretends there isn't a ts. 123 */ 124 int havetm = 0; 125 #endif 126 /* 127 * Determine if there is a controller for 128 * a tm at address reg. Our goal is to make the 129 * device interrupt. 130 */ 131 tmprobe(reg) 132 caddr_t reg; 133 { 134 register int br, cvec; /* must be r11,r10; value-result */ 135 136 #ifdef lint 137 br = 0; cvec = br; br = cvec; 138 #endif 139 ((struct device *)reg)->tmcs = TM_IE; 140 /* 141 * If this is a tm11, it ought to have interrupted 142 * by now, if it isn't (ie: it is a ts04) then we just 143 * hope that it didn't interrupt, so autoconf will ignore it. 144 * Just in case, we will reference one 145 * of the more distant registers, and hope for a machine 146 * check, or similar disaster if this is a ts. 147 * 148 * Note: on an 11/780, badaddr will just generate 149 * a uba error for a ts; but our caller will notice that 150 * so we won't check for it. 151 */ 152 if (badaddr((caddr_t)&((struct device *)reg)->tmrd, 2)) 153 return (0); 154 return (1); 155 } 156 157 /* 158 * Due to a design flaw, we cannot ascertain if the tape 159 * exists or not unless it is on line - ie: unless a tape is 160 * mounted. This is too servere a restriction to bear, 161 * so all units are assumed to exist. 162 */ 163 /*ARGSUSED*/ 164 tmslave(ui, reg) 165 struct uba_device *ui; 166 caddr_t reg; 167 { 168 169 return (1); 170 } 171 172 /* 173 * Record attachment of the unit to the controller. 174 */ 175 /*ARGSUSED*/ 176 tmattach(ui) 177 struct uba_device *ui; 178 { 179 180 #if NTS > 0 181 havetm = 1; 182 #endif 183 /* 184 * Tetotm is used in TMUNIT to index the ctmbuf and rtmbuf 185 * arrays given a te unit number. 186 */ 187 tetotm[ui->ui_unit] = ui->ui_mi->um_ctlr; 188 } 189 190 int tmtimer(); 191 /* 192 * Open the device. Tapes are unique open 193 * devices, so we refuse if it is already open. 194 * We also check that a tape is available, and 195 * don't block waiting here; if you want to wait 196 * for a tape you should timeout in user code. 197 */ 198 tmopen(dev, flag) 199 dev_t dev; 200 int flag; 201 { 202 register int teunit; 203 register struct uba_device *ui; 204 register struct te_softc *sc; 205 int olddens, dens; 206 207 teunit = TEUNIT(dev); 208 if (teunit>=NTE || (sc = &te_softc[teunit])->sc_openf || 209 (ui = tedinfo[teunit]) == 0 || ui->ui_alive == 0) { 210 u.u_error = ENXIO; 211 return; 212 } 213 olddens = sc->sc_dens; 214 dens = TM_IE | TM_GO | (ui->ui_slave << 8); 215 if ((minor(dev) & T_1600BPI) == 0) 216 dens |= TM_D800; 217 sc->sc_dens = dens; 218 get: 219 tmcommand(dev, TM_SENSE, 1); 220 if (sc->sc_erreg&TMER_SDWN) { 221 sleep((caddr_t)&lbolt, PZERO+1); 222 goto get; 223 } 224 sc->sc_dens = olddens; 225 if ((sc->sc_erreg&(TMER_SELR|TMER_TUR)) != (TMER_SELR|TMER_TUR)) { 226 uprintf("te%d: not online\n", teunit); 227 u.u_error = EIO; 228 return; 229 } 230 if ((flag&FWRITE) && (sc->sc_erreg&TMER_WRL)) { 231 uprintf("te%d: no write ring\n", teunit); 232 u.u_error = EIO; 233 return; 234 } 235 if ((sc->sc_erreg&TMER_BOT) == 0 && (flag&FWRITE) && 236 dens != sc->sc_dens) { 237 uprintf("te%d: can't change density in mid-tape\n", teunit); 238 u.u_error = EIO; 239 return; 240 } 241 sc->sc_openf = 1; 242 sc->sc_blkno = (daddr_t)0; 243 sc->sc_nxrec = INF; 244 sc->sc_lastiow = 0; 245 sc->sc_dens = dens; 246 (void) spl6(); 247 if (sc->sc_tact == 0) { 248 sc->sc_timo = INF; 249 sc->sc_tact = 1; 250 timeout(tmtimer, (caddr_t)dev, 5*hz); 251 } 252 (void) spl0(); 253 } 254 255 /* 256 * Close tape device. 257 * 258 * If tape was open for writing or last operation was 259 * a write, then write two EOF's and backspace over the last one. 260 * Unless this is a non-rewinding special file, rewind the tape. 261 * Make the tape available to others. 262 */ 263 tmclose(dev, flag) 264 register dev_t dev; 265 register flag; 266 { 267 register struct te_softc *sc = &te_softc[TEUNIT(dev)]; 268 269 if (flag == FWRITE || (flag&FWRITE) && sc->sc_lastiow) { 270 tmcommand(dev, TM_WEOF, 1); 271 tmcommand(dev, TM_WEOF, 1); 272 tmcommand(dev, TM_SREV, 1); 273 } 274 if ((minor(dev)&T_NOREWIND) == 0) 275 /* 276 * 0 count means don't hang waiting for rewind complete 277 * rather ctmbuf stays busy until the operation completes 278 * preventing further opens from completing by 279 * preventing a TM_SENSE from completing. 280 */ 281 tmcommand(dev, TM_REW, 0); 282 sc->sc_openf = 0; 283 } 284 285 /* 286 * Execute a command on the tape drive 287 * a specified number of times. 288 */ 289 tmcommand(dev, com, count) 290 dev_t dev; 291 int com, count; 292 { 293 register struct buf *bp; 294 295 bp = &ctmbuf[TMUNIT(dev)]; 296 (void) spl5(); 297 while (bp->b_flags&B_BUSY) { 298 /* 299 * This special check is because B_BUSY never 300 * gets cleared in the non-waiting rewind case. 301 */ 302 if (bp->b_repcnt == 0 && (bp->b_flags&B_DONE)) 303 break; 304 bp->b_flags |= B_WANTED; 305 sleep((caddr_t)bp, PRIBIO); 306 } 307 bp->b_flags = B_BUSY|B_READ; 308 (void) spl0(); 309 bp->b_dev = dev; 310 bp->b_repcnt = -count; 311 bp->b_command = com; 312 bp->b_blkno = 0; 313 tmstrategy(bp); 314 /* 315 * In case of rewind from close, don't wait. 316 * This is the only case where count can be 0. 317 */ 318 if (count == 0) 319 return; 320 iowait(bp); 321 if (bp->b_flags&B_WANTED) 322 wakeup((caddr_t)bp); 323 bp->b_flags &= B_ERROR; 324 } 325 326 /* 327 * Queue a tape operation. 328 */ 329 tmstrategy(bp) 330 register struct buf *bp; 331 { 332 int teunit = TEUNIT(bp->b_dev); 333 register struct uba_ctlr *um; 334 register struct buf *dp; 335 336 /* 337 * Put transfer at end of unit queue 338 */ 339 dp = &teutab[teunit]; 340 bp->av_forw = NULL; 341 (void) spl5(); 342 um = tedinfo[teunit]->ui_mi; 343 if (dp->b_actf == NULL) { 344 dp->b_actf = bp; 345 /* 346 * Transport not already active... 347 * put at end of controller queue. 348 */ 349 dp->b_forw = NULL; 350 if (um->um_tab.b_actf == NULL) 351 um->um_tab.b_actf = dp; 352 else 353 um->um_tab.b_actl->b_forw = dp; 354 um->um_tab.b_actl = dp; 355 } else 356 dp->b_actl->av_forw = bp; 357 dp->b_actl = bp; 358 /* 359 * If the controller is not busy, get 360 * it going. 361 */ 362 if (um->um_tab.b_active == 0) 363 tmstart(um); 364 (void) spl0(); 365 } 366 367 /* 368 * Start activity on a tm controller. 369 */ 370 tmstart(um) 371 register struct uba_ctlr *um; 372 { 373 register struct buf *bp, *dp; 374 register struct device *addr = (struct device *)um->um_addr; 375 register struct te_softc *sc; 376 register struct uba_device *ui; 377 int teunit, cmd; 378 daddr_t blkno; 379 380 /* 381 * Look for an idle transport on the controller. 382 */ 383 loop: 384 if ((dp = um->um_tab.b_actf) == NULL) 385 return; 386 if ((bp = dp->b_actf) == NULL) { 387 um->um_tab.b_actf = dp->b_forw; 388 goto loop; 389 } 390 teunit = TEUNIT(bp->b_dev); 391 ui = tedinfo[teunit]; 392 /* 393 * Record pre-transfer status (e.g. for TM_SENSE) 394 */ 395 sc = &te_softc[teunit]; 396 addr = (struct device *)um->um_addr; 397 addr->tmcs = (ui->ui_slave << 8); 398 sc->sc_dsreg = addr->tmcs; 399 sc->sc_erreg = addr->tmer; 400 sc->sc_resid = addr->tmbc; 401 /* 402 * Default is that last command was NOT a write command; 403 * if we do a write command we will notice this in tmintr(). 404 */ 405 sc->sc_lastiow = 0; 406 if (sc->sc_openf < 0 || (addr->tmcs&TM_CUR) == 0) { 407 /* 408 * Have had a hard error on a non-raw tape 409 * or the tape unit is now unavailable 410 * (e.g. taken off line). 411 */ 412 bp->b_flags |= B_ERROR; 413 goto next; 414 } 415 if (bp == &ctmbuf[TMUNIT(bp->b_dev)]) { 416 /* 417 * Execute control operation with the specified count. 418 */ 419 if (bp->b_command == TM_SENSE) 420 goto next; 421 /* 422 * Set next state; give 5 minutes to complete 423 * rewind, or 10 seconds per iteration (minimum 60 424 * seconds and max 5 minutes) to complete other ops. 425 */ 426 if (bp->b_command == TM_REW) { 427 um->um_tab.b_active = SREW; 428 sc->sc_timo = 5 * 60; 429 } else { 430 um->um_tab.b_active = SCOM; 431 sc->sc_timo = 432 imin(imax(10*(int)-bp->b_repcnt,60),5*60); 433 } 434 if (bp->b_command == TM_SFORW || bp->b_command == TM_SREV) 435 addr->tmbc = bp->b_repcnt; 436 goto dobpcmd; 437 } 438 /* 439 * The following checks handle boundary cases for operation 440 * on non-raw tapes. On raw tapes the initialization of 441 * sc->sc_nxrec by tmphys causes them to be skipped normally 442 * (except in the case of retries). 443 */ 444 if (dbtofsb(bp->b_blkno) > sc->sc_nxrec) { 445 /* 446 * Can't read past known end-of-file. 447 */ 448 bp->b_flags |= B_ERROR; 449 bp->b_error = ENXIO; 450 goto next; 451 } 452 if (dbtofsb(bp->b_blkno) == sc->sc_nxrec && 453 bp->b_flags&B_READ) { 454 /* 455 * Reading at end of file returns 0 bytes. 456 */ 457 bp->b_resid = bp->b_bcount; 458 clrbuf(bp); 459 goto next; 460 } 461 if ((bp->b_flags&B_READ) == 0) 462 /* 463 * Writing sets EOF 464 */ 465 sc->sc_nxrec = dbtofsb(bp->b_blkno) + 1; 466 /* 467 * If the data transfer command is in the correct place, 468 * set up all the registers except the csr, and give 469 * control over to the UNIBUS adapter routines, to 470 * wait for resources to start the i/o. 471 */ 472 if ((blkno = sc->sc_blkno) == dbtofsb(bp->b_blkno)) { 473 addr->tmbc = -bp->b_bcount; 474 if ((bp->b_flags&B_READ) == 0) { 475 if (um->um_tab.b_errcnt) 476 cmd = TM_WIRG; 477 else 478 cmd = TM_WCOM; 479 } else 480 cmd = TM_RCOM; 481 um->um_tab.b_active = SIO; 482 um->um_cmd = sc->sc_dens|cmd; 483 #ifdef notdef 484 if (tmreverseop(sc->sc_lastcmd)) 485 while (addr->tmer & TMER_SDWN) 486 tmgapsdcnt++; 487 sc->sc_lastcmd = TM_RCOM; /* will serve */ 488 #endif 489 sc->sc_timo = 60; /* premature, but should serve */ 490 (void) ubago(ui); 491 return; 492 } 493 /* 494 * Tape positioned incorrectly; 495 * set to seek forwards or backwards to the correct spot. 496 * This happens for raw tapes only on error retries. 497 */ 498 um->um_tab.b_active = SSEEK; 499 if (blkno < dbtofsb(bp->b_blkno)) { 500 bp->b_command = TM_SFORW; 501 addr->tmbc = blkno - dbtofsb(bp->b_blkno); 502 } else { 503 bp->b_command = TM_SREV; 504 addr->tmbc = dbtofsb(bp->b_blkno) - blkno; 505 } 506 sc->sc_timo = imin(imax(10 * -addr->tmbc, 60), 5 * 60); 507 dobpcmd: 508 #ifdef notdef 509 /* 510 * It is strictly necessary to wait for the tape 511 * to stop before changing directions, but the TC11 512 * handles this for us. 513 */ 514 if (tmreverseop(sc->sc_lastcmd) != tmreverseop(bp->b_command)) 515 while (addr->tmer & TM_SDWN) 516 tmgapsdcnt++; 517 sc->sc_lastcmd = bp->b_command; 518 #endif 519 /* 520 * Do the command in bp. 521 */ 522 addr->tmcs = (sc->sc_dens | bp->b_command); 523 return; 524 525 next: 526 /* 527 * Done with this operation due to error or 528 * the fact that it doesn't do anything. 529 * Release UBA resources (if any), dequeue 530 * the transfer and continue processing this slave. 531 */ 532 if (um->um_ubinfo) 533 ubadone(um); 534 um->um_tab.b_errcnt = 0; 535 dp->b_actf = bp->av_forw; 536 iodone(bp); 537 goto loop; 538 } 539 540 /* 541 * The UNIBUS resources we needed have been 542 * allocated to us; start the device. 543 */ 544 tmdgo(um) 545 register struct uba_ctlr *um; 546 { 547 register struct device *addr = (struct device *)um->um_addr; 548 549 addr->tmba = um->um_ubinfo; 550 addr->tmcs = um->um_cmd | ((um->um_ubinfo >> 12) & 0x30); 551 } 552 553 /* 554 * Tm interrupt routine. 555 */ 556 /*ARGSUSED*/ 557 tmintr(tm11) 558 int tm11; 559 { 560 struct buf *dp; 561 register struct buf *bp; 562 register struct uba_ctlr *um = tmminfo[tm11]; 563 register struct device *addr; 564 register struct te_softc *sc; 565 int teunit; 566 register state; 567 568 if ((dp = um->um_tab.b_actf) == NULL) 569 return; 570 bp = dp->b_actf; 571 teunit = TEUNIT(bp->b_dev); 572 addr = (struct device *)tedinfo[teunit]->ui_addr; 573 sc = &te_softc[teunit]; 574 /* 575 * If last command was a rewind, and tape is still 576 * rewinding, wait for the rewind complete interrupt. 577 */ 578 if (um->um_tab.b_active == SREW) { 579 um->um_tab.b_active = SCOM; 580 if (addr->tmer&TMER_RWS) { 581 sc->sc_timo = 5*60; /* 5 minutes */ 582 return; 583 } 584 } 585 /* 586 * An operation completed... record status 587 */ 588 sc->sc_timo = INF; 589 sc->sc_dsreg = addr->tmcs; 590 sc->sc_erreg = addr->tmer; 591 sc->sc_resid = addr->tmbc; 592 if ((bp->b_flags & B_READ) == 0) 593 sc->sc_lastiow = 1; 594 state = um->um_tab.b_active; 595 um->um_tab.b_active = 0; 596 /* 597 * Check for errors. 598 */ 599 if (addr->tmcs&TM_ERR) { 600 while (addr->tmer & TMER_SDWN) 601 ; /* await settle down */ 602 /* 603 * If we hit the end of the tape file, update our position. 604 */ 605 if (addr->tmer&TMER_EOF) { 606 tmseteof(bp); /* set blkno and nxrec */ 607 state = SCOM; /* force completion */ 608 /* 609 * Stuff bc so it will be unstuffed correctly 610 * later to get resid. 611 */ 612 addr->tmbc = -bp->b_bcount; 613 goto opdone; 614 } 615 /* 616 * If we were reading raw tape and the only error was that the 617 * record was too long, then we don't consider this an error. 618 */ 619 if (bp == &rtmbuf[TMUNIT(bp->b_dev)] && (bp->b_flags&B_READ) && 620 (addr->tmer&(TMER_HARD|TMER_SOFT)) == TMER_RLE) 621 goto ignoreerr; 622 /* 623 * If error is not hard, and this was an i/o operation 624 * retry up to 8 times. 625 */ 626 if ((addr->tmer&TMER_HARD)==0 && state==SIO) { 627 if (++um->um_tab.b_errcnt < 7) { 628 sc->sc_blkno++; 629 ubadone(um); 630 goto opcont; 631 } 632 } else 633 /* 634 * Hard or non-i/o errors on non-raw tape 635 * cause it to close. 636 */ 637 if (sc->sc_openf>0 && bp != &rtmbuf[TMUNIT(bp->b_dev)]) 638 sc->sc_openf = -1; 639 /* 640 * Couldn't recover error 641 */ 642 printf("te%d: hard error bn%d er=%b\n", minor(bp->b_dev)&03, 643 bp->b_blkno, sc->sc_erreg, TMER_BITS); 644 bp->b_flags |= B_ERROR; 645 goto opdone; 646 } 647 /* 648 * Advance tape control FSM. 649 */ 650 ignoreerr: 651 switch (state) { 652 653 case SIO: 654 /* 655 * Read/write increments tape block number 656 */ 657 sc->sc_blkno++; 658 goto opdone; 659 660 case SCOM: 661 /* 662 * For forward/backward space record update current position. 663 */ 664 if (bp == &ctmbuf[TMUNIT(bp->b_dev)]) 665 switch (bp->b_command) { 666 667 case TM_SFORW: 668 sc->sc_blkno -= bp->b_repcnt; 669 break; 670 671 case TM_SREV: 672 sc->sc_blkno += bp->b_repcnt; 673 break; 674 } 675 goto opdone; 676 677 case SSEEK: 678 sc->sc_blkno = dbtofsb(bp->b_blkno); 679 goto opcont; 680 681 default: 682 panic("tmintr"); 683 } 684 opdone: 685 /* 686 * Reset error count and remove 687 * from device queue. 688 */ 689 um->um_tab.b_errcnt = 0; 690 dp->b_actf = bp->av_forw; 691 bp->b_resid = -addr->tmbc; 692 ubadone(um); 693 iodone(bp); 694 /* 695 * Circulate slave to end of controller 696 * queue to give other slaves a chance. 697 */ 698 um->um_tab.b_actf = dp->b_forw; 699 if (dp->b_actf) { 700 dp->b_forw = NULL; 701 if (um->um_tab.b_actf == NULL) 702 um->um_tab.b_actf = dp; 703 else 704 um->um_tab.b_actl->b_forw = dp; 705 um->um_tab.b_actl = dp; 706 } 707 if (um->um_tab.b_actf == 0) 708 return; 709 opcont: 710 tmstart(um); 711 } 712 713 tmtimer(dev) 714 int dev; 715 { 716 register struct te_softc *sc = &te_softc[TEUNIT(dev)]; 717 register short x; 718 719 if (sc->sc_timo != INF && (sc->sc_timo -= 5) < 0) { 720 printf("te%d: lost interrupt\n", TEUNIT(dev)); 721 sc->sc_timo = INF; 722 x = spl5(); 723 tmintr(TMUNIT(dev)); 724 (void) splx(x); 725 } 726 timeout(tmtimer, (caddr_t)dev, 5*hz); 727 } 728 729 tmseteof(bp) 730 register struct buf *bp; 731 { 732 register int teunit = TEUNIT(bp->b_dev); 733 register struct device *addr = 734 (struct device *)tedinfo[teunit]->ui_addr; 735 register struct te_softc *sc = &te_softc[teunit]; 736 737 if (bp == &ctmbuf[TMUNIT(bp->b_dev)]) { 738 if (sc->sc_blkno > dbtofsb(bp->b_blkno)) { 739 /* reversing */ 740 sc->sc_nxrec = dbtofsb(bp->b_blkno) - addr->tmbc; 741 sc->sc_blkno = sc->sc_nxrec; 742 } else { 743 /* spacing forward */ 744 sc->sc_blkno = dbtofsb(bp->b_blkno) + addr->tmbc; 745 sc->sc_nxrec = sc->sc_blkno - 1; 746 } 747 return; 748 } 749 /* eof on read */ 750 sc->sc_nxrec = dbtofsb(bp->b_blkno); 751 } 752 753 tmread(dev) 754 dev_t dev; 755 { 756 757 tmphys(dev); 758 if (u.u_error) 759 return; 760 physio(tmstrategy, &rtmbuf[TMUNIT(dev)], dev, B_READ, minphys); 761 } 762 763 tmwrite(dev) 764 dev_t dev; 765 { 766 767 tmphys(dev); 768 if (u.u_error) 769 return; 770 physio(tmstrategy, &rtmbuf[TMUNIT(dev)], dev, B_WRITE, minphys); 771 } 772 773 /* 774 * Check that a raw device exists. 775 * If it does, set up sc_blkno and sc_nxrec 776 * so that the tape will appear positioned correctly. 777 */ 778 tmphys(dev) 779 dev_t dev; 780 { 781 register int teunit = TEUNIT(dev); 782 register daddr_t a; 783 register struct te_softc *sc; 784 register struct uba_device *ui; 785 786 if (teunit >= NTE || (ui=tedinfo[teunit]) == 0 || ui->ui_alive == 0) { 787 u.u_error = ENXIO; 788 return; 789 } 790 sc = &te_softc[teunit]; 791 a = dbtofsb(u.u_offset >> 9); 792 sc->sc_blkno = a; 793 sc->sc_nxrec = a + 1; 794 } 795 796 tmreset(uban) 797 int uban; 798 { 799 register struct uba_ctlr *um; 800 register tm11, teunit; 801 register struct uba_device *ui; 802 register struct buf *dp; 803 804 for (tm11 = 0; tm11 < NTM; tm11++) { 805 if ((um = tmminfo[tm11]) == 0 || um->um_alive == 0 || 806 um->um_ubanum != uban) 807 continue; 808 printf(" tm%d", tm11); 809 um->um_tab.b_active = 0; 810 um->um_tab.b_actf = um->um_tab.b_actl = 0; 811 if (um->um_ubinfo) { 812 printf("<%d>", (um->um_ubinfo>>28)&0xf); 813 ubadone(um); 814 } 815 ((struct device *)(um->um_addr))->tmcs = TM_DCLR; 816 for (teunit = 0; teunit < NTE; teunit++) { 817 if ((ui = tedinfo[teunit]) == 0 || ui->ui_mi != um || 818 ui->ui_alive == 0) 819 continue; 820 dp = &teutab[teunit]; 821 dp->b_active = 0; 822 dp->b_forw = 0; 823 if (um->um_tab.b_actf == NULL) 824 um->um_tab.b_actf = dp; 825 else 826 um->um_tab.b_actl->b_forw = dp; 827 um->um_tab.b_actl = dp; 828 if (te_softc[teunit].sc_openf > 0) 829 te_softc[teunit].sc_openf = -1; 830 } 831 tmstart(um); 832 } 833 } 834 835 /*ARGSUSED*/ 836 tmioctl(dev, cmd, addr, flag) 837 caddr_t addr; 838 dev_t dev; 839 { 840 int teunit = TEUNIT(dev); 841 register struct te_softc *sc = &te_softc[teunit]; 842 register struct buf *bp = &ctmbuf[TMUNIT(dev)]; 843 register callcount; 844 int fcount; 845 struct mtop mtop; 846 struct mtget mtget; 847 /* we depend of the values and order of the MT codes here */ 848 static tmops[] = 849 {TM_WEOF,TM_SFORW,TM_SREV,TM_SFORW,TM_SREV,TM_REW,TM_OFFL,TM_SENSE}; 850 851 switch (cmd) { 852 case MTIOCTOP: /* tape operation */ 853 if (copyin((caddr_t)addr, (caddr_t)&mtop, sizeof(mtop))) { 854 u.u_error = EFAULT; 855 return; 856 } 857 switch(mtop.mt_op) { 858 case MTWEOF: 859 callcount = mtop.mt_count; 860 fcount = 1; 861 break; 862 case MTFSF: case MTBSF: 863 callcount = mtop.mt_count; 864 fcount = INF; 865 break; 866 case MTFSR: case MTBSR: 867 callcount = 1; 868 fcount = mtop.mt_count; 869 break; 870 case MTREW: case MTOFFL: case MTNOP: 871 callcount = 1; 872 fcount = 1; 873 break; 874 default: 875 u.u_error = ENXIO; 876 return; 877 } 878 if (callcount <= 0 || fcount <= 0) { 879 u.u_error = ENXIO; 880 return; 881 } 882 while (--callcount >= 0) { 883 tmcommand(dev, tmops[mtop.mt_op], fcount); 884 if ((mtop.mt_op == MTFSR || mtop.mt_op == MTBSR) && 885 bp->b_resid) { 886 u.u_error = EIO; 887 break; 888 } 889 if ((bp->b_flags&B_ERROR) || sc->sc_erreg&TMER_BOT) 890 break; 891 } 892 geterror(bp); 893 return; 894 case MTIOCGET: 895 mtget.mt_dsreg = sc->sc_dsreg; 896 mtget.mt_erreg = sc->sc_erreg; 897 mtget.mt_resid = sc->sc_resid; 898 mtget.mt_type = MT_ISTM; 899 if (copyout((caddr_t)&mtget, addr, sizeof(mtget))) 900 u.u_error = EFAULT; 901 return; 902 default: 903 u.u_error = ENXIO; 904 } 905 } 906 907 #define DBSIZE 20 908 909 tmdump() 910 { 911 register struct uba_device *ui; 912 register struct uba_regs *up; 913 register struct device *addr; 914 int blk, num; 915 int start; 916 917 start = 0; 918 num = maxfree; 919 #define phys(a,b) ((b)((int)(a)&0x7fffffff)) 920 if (tedinfo[0] == 0) 921 return (ENXIO); 922 ui = phys(tedinfo[0], struct uba_device *); 923 up = phys(ui->ui_hd, struct uba_hd *)->uh_physuba; 924 ubainit(up); 925 DELAY(1000000); 926 addr = (struct device *)ui->ui_physaddr; 927 tmwait(addr); 928 addr->tmcs = TM_DCLR | TM_GO; 929 while (num > 0) { 930 blk = num > DBSIZE ? DBSIZE : num; 931 tmdwrite(start, blk, addr, up); 932 start += blk; 933 num -= blk; 934 } 935 tmeof(addr); 936 tmeof(addr); 937 tmwait(addr); 938 if (addr->tmcs&TM_ERR) 939 return (EIO); 940 addr->tmcs = TM_REW | TM_GO; 941 tmwait(addr); 942 return (0); 943 } 944 945 tmdwrite(dbuf, num, addr, up) 946 register dbuf, num; 947 register struct device *addr; 948 struct uba_regs *up; 949 { 950 register struct pte *io; 951 register int npf; 952 953 tmwait(addr); 954 io = up->uba_map; 955 npf = num+1; 956 while (--npf != 0) 957 *(int *)io++ = (dbuf++ | (1<<UBAMR_DPSHIFT) | UBAMR_MRV); 958 *(int *)io = 0; 959 addr->tmbc = -(num*NBPG); 960 addr->tmba = 0; 961 addr->tmcs = TM_WCOM | TM_GO; 962 } 963 964 tmwait(addr) 965 register struct device *addr; 966 { 967 register s; 968 969 do 970 s = addr->tmcs; 971 while ((s & TM_CUR) == 0); 972 } 973 974 tmeof(addr) 975 struct device *addr; 976 { 977 978 tmwait(addr); 979 addr->tmcs = TM_WEOF | TM_GO; 980 } 981 #endif 982