/* * Copyright (c) 1982, 1988 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * * @(#)up.c 7.8 (Berkeley) 09/17/88 */ /* * UNIBUS peripheral standalone driver with ECC correction and bad * block forwarding. Also supports header operation and write check * for data and/or header. */ #include "param.h" #include "inode.h" #include "fs.h" #include "dkbad.h" #include "disklabel.h" #include "../vax/pte.h" #include "../vaxuba/upreg.h" #include "../vaxuba/ubareg.h" #include "saio.h" #include "savax.h" #define RETRIES 27 #define MAXBADDESC 126 /* max number of bad sectors recorded */ #define SECTSIZ 512 /* sector size in bytes */ #define HDRSIZ 4 /* number of bytes in sector header */ #define MAXUNIT 8 #define MAXCTLR 1 /* all addresses must be specified */ static u_short upstd[MAXCTLR] = { 0776700 }; static struct disklabel uplabel[MAXNUBA][MAXCTLR][MAXUNIT]; static char lbuf[SECTSIZ]; extern struct st upst[]; #ifndef SMALL struct dkbad upbad[MAXNUBA][MAXCTLR][MAXUNIT]; /* bad sector table */ #endif int sectsiz; /* real sector size */ struct up_softc { char gottype; char type; char debug; # define UPF_BSEDEBUG 01 /* debugging bad sector forwarding */ # define UPF_ECCDEBUG 02 /* debugging ecc correction */ int retries; int ecclim; } up_softc[MAXNUBA][MAXCTLR][MAXUNIT]; u_char up_offset[16] = { UPOF_P400, UPOF_M400, UPOF_P400, UPOF_M400, UPOF_P800, UPOF_M800, UPOF_P800, UPOF_M800, UPOF_P1200, UPOF_M1200, UPOF_P1200, UPOF_M1200, 0, 0, 0, 0 }; upopen(io) register struct iob *io; { register struct updevice *upaddr; register struct up_softc *sc; register struct st *st; register struct disklabel *lp; struct disklabel *dlp; register int unit; int error = 0, uba, ctlr; if ((u_int)(uba = io->i_adapt) >= nuba) return (EADAPT); if ((u_int)(ctlr = io->i_ctlr) >= MAXCTLR) return (ECTLR); unit = io->i_unit; if ((u_int)unit >= MAXUNIT) return (EUNIT); upaddr = (struct updevice *)ubamem(uba, upstd[ctlr]); upaddr->upcs2 = unit; while ((upaddr->upcs1 & UP_DVA) == 0); sc = &up_softc[uba][ctlr][unit]; lp = &uplabel[uba][ctlr][unit]; if (sc->gottype == 0) { register int i; struct iob tio; #ifndef SMALL sc->retries = RETRIES; sc->ecclim = 11; sc->debug = 0; #endif /* Read in the pack label. */ lp->d_nsectors = 32; lp->d_secpercyl = 19*32; tio = *io; tio.i_bn = LABELSECTOR; tio.i_ma = lbuf; tio.i_cc = SECTSIZ; tio.i_flgs |= F_RDDATA; if (upstrategy(&tio, READ) != SECTSIZ) error = ERDLAB; dlp = (struct disklabel *)(lbuf + LABELOFFSET); if (error == 0 && (dlp->d_magic != DISKMAGIC || dlp->d_magic2 != DISKMAGIC)) error = EUNLAB; if (error == 0) *lp = *dlp; else #ifdef COMPAT_42 if (upmaptype(unit, upaddr, lp) == 0) #endif return (error); #ifndef SMALL /* Read in the bad sector table. */ tio.i_bn = lp->d_secpercyl * lp->d_ncylinders - lp->d_nsectors; tio.i_ma = (char *)&upbad[uba][ctlr][unit]; tio.i_cc = sizeof(struct dkbad); tio.i_flgs |= F_RDDATA; for (i = 0; i < 5; i++) { if (upstrategy(&tio, READ) == sizeof(struct dkbad)) break; tio.i_bn += 2; } if (i == 5) { printf("up: can't read bad sector table\n"); for (i = 0; i < MAXBADDESC; i++) { upbad[uba][ctlr][unit].bt_bad[i].bt_cyl = -1; upbad[uba][ctlr][unit].bt_bad[i].bt_trksec = -1; } } #endif sc->gottype = 1; } if (io->i_part >= lp->d_npartitions || lp->d_partitions[io->i_part].p_size == 0) return (EPART); io->i_boff = lp->d_partitions[io->i_part].p_offset; io->i_flgs &= ~F_TYPEMASK; return (0); } upstrategy(io, func) register struct iob *io; int func; { int cn, tn, sn, o; register unit = io->i_unit; register daddr_t bn; int recal, info, waitdry; register struct updevice *upaddr; register struct disklabel *lp; struct up_softc *sc; int error, rv = io->i_cc; #ifndef SMALL int doprintf = 0; #endif upaddr = (struct updevice *)ubamem(io->i_adapt, upstd[io->i_ctlr]); sc = &up_softc[io->i_adapt][io->i_ctlr][unit]; lp = &uplabel[io->i_adapt][io->i_ctlr][unit]; sectsiz = SECTSIZ; #ifndef SMALL if (io->i_flgs & (F_HDR|F_HCHECK)) sectsiz += HDRSIZ; #endif upaddr->upcs2 = unit; if ((upaddr->upds & UPDS_VV) == 0) { upaddr->upcs1 = UP_DCLR|UP_GO; upaddr->upcs1 = UP_PRESET|UP_GO; upaddr->upof = UPOF_FMT22; } if ((upaddr->upds & UPDS_DREADY) == 0) { printf("up%d not ready\n", unit); return (-1); } info = ubasetup(io, 1); upaddr->upwc = -io->i_cc / sizeof (short); recal = 0; io->i_errcnt = 0; restart: o = io->i_cc + (upaddr->upwc * sizeof (short)); upaddr->upba = info + o; bn = io->i_bn + o / sectsiz; #ifndef SMALL error = 0; if (doprintf && sc->debug & (UPF_ECCDEBUG|UPF_BSEDEBUG)) printf("wc=%d o=%d i_bn=%d bn=%d\n", upaddr->upwc, o, io->i_bn, bn); #endif upwaitdry(upaddr); if (upstart(io, bn, lp) != 0) { rv = -1; goto done; } upwaitrdy(upaddr); /* * If transfer has completed, free UNIBUS * resources and return transfer size. */ if ((upaddr->upds&UPDS_ERR) == 0 && (upaddr->upcs1&UP_TRE) == 0) goto done; bn = io->i_bn + (io->i_cc + upaddr->upwc * sizeof (short)) / sectsiz; if (upaddr->uper1 & (UPER1_DCK|UPER1_ECH)) bn--; cn = bn / lp->d_secpercyl; sn = bn % lp->d_secpercyl; tn = sn / lp->d_nsectors; sn = sn % lp->d_nsectors; #ifndef SMALL if (sc->debug & (UPF_ECCDEBUG|UPF_BSEDEBUG)) { printf("up error: sn%d (cyl,trk,sec)=(%d,%d,%d) ", bn, cn, tn, sn); printf("cs2=%b er1=%b er2=%b wc=%d\n", upaddr->upcs2, UPCS2_BITS, upaddr->uper1, UPER1_BITS, upaddr->uper2, UPER2_BITS, upaddr->upwc); } #endif waitdry = 0; while ((upaddr->upds&UPDS_DRY) == 0 && ++waitdry < sectsiz) DELAY(5); #ifndef SMALL if (upaddr->uper1&UPER1_WLE) { /* * Give up on write locked devices immediately. */ printf("up%d: write locked\n", unit); rv = -1; goto done; } if (upaddr->uper2 & UPER2_BSE) { if ((io->i_flgs&F_NBSF) == 0 && upecc(io, BSE) == 0) goto success; error = EBSE; goto hard; } /* * ECC error. If a soft error, correct it; * if correction is too large, no more retries. */ if ((upaddr->uper1 & (UPER1_DCK|UPER1_ECH|UPER1_HCRC)) == UPER1_DCK) { if (upecc(io, ECC) == 0) goto success; error = EECC; goto hard; } /* * If the error is a header CRC, check if a replacement sector * exists in the bad sector table. */ if ((upaddr->uper1&UPER1_HCRC) && (io->i_flgs&F_NBSF) == 0 && upecc(io, BSE) == 0) goto success; #endif if (++io->i_errcnt > sc->retries) { /* * After 28 retries (16 without offset, and * 12 with offset positioning) give up. */ hard: #ifndef SMALL if (error == 0) { error = EHER; if (upaddr->upcs2 & UPCS2_WCE) error = EWCK; } io->i_error = error; #endif printf("up error: sn%d (cyl,trk,sec)=(%d,%d,%d) ", bn, cn, tn, sn); printf("cs2=%b er1=%b er2=%b\n", upaddr->upcs2, UPCS2_BITS, upaddr->uper1, UPER1_BITS, upaddr->uper2, UPER2_BITS); upaddr->upcs1 = UP_TRE|UP_DCLR|UP_GO; io->i_errblk = bn; if (io->i_errcnt >= 16) { upaddr->upof = UPOF_FMT22; upaddr->upcs1 = UP_RTC|UP_GO; upwaitdry(upaddr); } rv = -1; goto done; } /* * Clear drive error and, every eight attempts, (starting with the * fourth) recalibrate to clear the slate. */ upaddr->upcs1 = UP_TRE|UP_DCLR|UP_GO; if ((io->i_errcnt&07) == 4 ) { upaddr->upcs1 = UP_RECAL|UP_GO; upwaitdry(upaddr); upaddr->updc = cn; upaddr->upcs1 = UP_SEEK|UP_GO; upwaitdry(upaddr); } if (io->i_errcnt >= 16 && (func & READ)) { upaddr->upof = up_offset[io->i_errcnt & 017] | UPOF_FMT22; upaddr->upcs1 = UP_OFFSET|UP_GO; upwaitdry(upaddr); } goto restart; success: #define rounddown(x, y) (((x) / (y)) * (y)) upaddr->upwc = rounddown(upaddr->upwc, sectsiz / sizeof (short)); if (upaddr->upwc) { #ifndef SMALL doprintf++; #endif goto restart; } done: ubafree(io, info); /* * If we were offset positioning, * return to centerline. */ if (io->i_errcnt >= 16) { upaddr->upof = UPOF_FMT22; upaddr->upcs1 = UP_RTC|UP_GO; upwaitdry(upaddr); } return (rv); } upwaitrdy(upaddr) register struct updevice *upaddr; { do { DELAY(25); } while ((upaddr->upcs1 & UP_RDY) == 0); } upwaitdry(upaddr) register struct updevice *upaddr; { while ((upaddr->upds&UPDS_DRY) == 0) DELAY(25); } #ifndef SMALL /* * Correct an ECC error, and restart the i/o to complete the transfer (if * necessary). This is quite complicated because the transfer may be going * to an odd memory address base and/or across a page boundary. */ upecc(io, flag) register struct iob *io; int flag; { register i, unit; register struct up_softc *sc; register struct updevice *up; register struct disklabel *lp; caddr_t addr; int bn, twc, npf, mask, cn, tn, sn; daddr_t bbn; /* * Npf is the number of sectors transferred * before the sector containing the ECC error; * bn is the current block number. */ unit = io->i_unit; sc = &up_softc[io->i_adapt][io->i_ctlr][unit]; lp = &uplabel[io->i_adapt][io->i_ctlr][unit]; up = (struct updevice *)ubamem(io->i_adapt, upstd[io->i_ctlr]); twc = up->upwc; npf = ((twc * sizeof(short)) + io->i_cc) / sectsiz; if (flag == ECC) npf--; if (sc->debug & UPF_ECCDEBUG) printf("npf=%d mask=0x%x ec1=%d wc=%d\n", npf, up->upec2, up->upec1, twc); bn = io->i_bn + npf; cn = bn / lp->d_secpercyl; sn = bn % lp->d_secpercyl; tn = sn / lp->d_nsectors; sn = sn % lp->d_nsectors; /* * ECC correction. */ if (flag == ECC) { int bit, o; mask = up->upec2; printf("up%d: soft ecc sn%d\n", unit, bn); for (i = mask, bit = 0; i; i >>= 1) if (i & 1) bit++; if (bit > sc->ecclim) { printf("%d-bit error\n", bit); return (1); } /* * Compute the byte and bit position of * the error. o is the byte offset in * the transfer at which the correction * applied. */ i = up->upec1 - 1; /* -1 makes 0 origin */ bit = i & 07; o = (i & ~07) >> 3; up->upcs1 = UP_TRE|UP_DCLR|UP_GO; /* * Correct while possible bits remain of mask. * Since mask contains 11 bits, we continue while * the bit offset is > -11. Also watch out for * end of this block and the end of the transfer. */ while (o < sectsiz && (npf*sectsiz)+o < io->i_cc && bit > -11) { /* * addr = * (base address of transfer) + * (# sectors transferred before the error) * * (sector size) + * (byte offset to incorrect data) */ addr = io->i_ma + (npf * sectsiz) + o; /* * No data transfer occurs with a write check, * so don't correct the resident copy of data. */ if ((io->i_flgs & (F_CHECK|F_HCHECK)) == 0) { if (sc->debug & UPF_ECCDEBUG) printf("addr=0x%x old=0x%x ", addr, (*addr&0xff)); *addr ^= (mask << bit); if (sc->debug & UPF_ECCDEBUG) printf("new=0x%x\n", (*addr&0xff)); } o++, bit -= 8; } return (0); } /* * Bad sector forwarding. */ if (flag == BSE) { /* * If not in bad sector table, * indicate a hard error to caller. */ up->upcs1 = UP_TRE|UP_DCLR|UP_GO; if ((bbn = isbad(&upbad[io->i_adapt][io->i_ctlr][unit], cn, tn, sn)) < 0) return (1); bbn = (lp->d_ncylinders * lp->d_secpercyl) - lp->d_nsectors - 1 - bbn; twc = up->upwc + sectsiz; up->upwc = - (sectsiz / sizeof (short)); if (sc->debug & UPF_BSEDEBUG) printf("revector sn %d to %d\n", sn, bbn); /* * Clear the drive & read the replacement * sector. If this is in the middle of a * transfer, then set up the controller * registers in a normal fashion. * The UNIBUS address need not be changed. */ upwaitrdy(up); if (upstart(io, bbn, lp)) return (1); /* error */ io->i_errcnt = 0; /* success */ upwaitrdy(up); if ((up->upds & UPDS_ERR) || (up->upcs1 & UP_TRE)) { up->upwc = twc - sectsiz; return (1); } } if (twc) up->upwc = twc; return (0); } #endif /* !SMALL */ upstart(io, bn, lp) register struct iob *io; daddr_t bn; register struct disklabel *lp; { register struct updevice *upaddr; register struct up_softc *sc; int sn, tn; upaddr = (struct updevice *)ubamem(io->i_adapt, upstd[io->i_ctlr]); sc = &up_softc[io->i_adapt][io->i_ctlr][io->i_unit]; sn = bn % lp->d_secpercyl; tn = sn / lp->d_nsectors; sn = sn % lp->d_nsectors; upaddr->updc = bn / lp->d_secpercyl; upaddr->upda = (tn << 8) + sn; switch (io->i_flgs & F_TYPEMASK) { case F_RDDATA: upaddr->upcs1 = UP_RCOM|UP_GO; break; case F_WRDATA: upaddr->upcs1 = UP_WCOM|UP_GO; break; #ifndef SMALL case F_HDR|F_RDDATA: upaddr->upcs1 = UP_RHDR|UP_GO; break; case F_HDR|F_WRDATA: upaddr->upcs1 = UP_WHDR|UP_GO; break; case F_CHECK|F_WRDATA: case F_CHECK|F_RDDATA: upaddr->upcs1 = UP_WCDATA|UP_GO; break; case F_HCHECK|F_WRDATA: case F_HCHECK|F_RDDATA: upaddr->upcs1 = UP_WCHDR|UP_GO; break; #endif default: io->i_error = ECMD; io->i_flgs &= ~F_TYPEMASK; return (1); } return (0); } #ifndef SMALL /*ARGSUSED*/ upioctl(io, cmd, arg) struct iob *io; int cmd; caddr_t arg; { register struct up_softc *sc; sc = &up_softc[io->i_adapt][io->i_ctlr][io->i_unit]; switch(cmd) { case SAIODEBUG: sc->debug = (int)arg; break; case SAIODEVDATA: *(struct disklabel *)arg = uplabel[io->i_adapt][io->i_ctlr][io->i_unit]; break; case SAIOGBADINFO: *(struct dkbad *)arg = upbad[io->i_adapt][io->i_ctlr][io->i_unit]; break; case SAIOECCLIM: sc->ecclim = (int)arg; break; case SAIORETRIES: sc->retries = (int)arg; break; default: return (ECMD); } return (0); } #endif /* !SMALL */