Home | History | Annotate | Line # | Download | only in common
rd.c revision 1.1
      1  1.1  thorpej /*	$NetBSD: rd.c,v 1.1 1997/02/04 03:52:48 thorpej Exp $	*/
      2  1.1  thorpej 
      3  1.1  thorpej /*
      4  1.1  thorpej  * Copyright (c) 1988 University of Utah.
      5  1.1  thorpej  * Copyright (c) 1982, 1990, 1993
      6  1.1  thorpej  *	The Regents of the University of California.  All rights reserved.
      7  1.1  thorpej  *
      8  1.1  thorpej  * This code is derived from software contributed to Berkeley by
      9  1.1  thorpej  * the Systems Programming Group of the University of Utah Computer
     10  1.1  thorpej  * Science Department.
     11  1.1  thorpej  *
     12  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     13  1.1  thorpej  * modification, are permitted provided that the following conditions
     14  1.1  thorpej  * are met:
     15  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     16  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     17  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     18  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     19  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     20  1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     21  1.1  thorpej  *    must display the following acknowledgement:
     22  1.1  thorpej  *	This product includes software developed by the University of
     23  1.1  thorpej  *	California, Berkeley and its contributors.
     24  1.1  thorpej  * 4. Neither the name of the University nor the names of its contributors
     25  1.1  thorpej  *    may be used to endorse or promote products derived from this software
     26  1.1  thorpej  *    without specific prior written permission.
     27  1.1  thorpej  *
     28  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29  1.1  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30  1.1  thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31  1.1  thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32  1.1  thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33  1.1  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34  1.1  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35  1.1  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36  1.1  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37  1.1  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38  1.1  thorpej  * SUCH DAMAGE.
     39  1.1  thorpej  *
     40  1.1  thorpej  * from: Utah Hdr: rd.c 1.20 92/12/21
     41  1.1  thorpej  *
     42  1.1  thorpej  *	@(#)rd.c	8.1 (Berkeley) 7/15/93
     43  1.1  thorpej  */
     44  1.1  thorpej 
     45  1.1  thorpej /*
     46  1.1  thorpej  * CS80/SS80 disk driver
     47  1.1  thorpej  */
     48  1.1  thorpej #include <sys/param.h>
     49  1.1  thorpej #include <sys/disklabel.h>
     50  1.1  thorpej 
     51  1.1  thorpej #include <lib/libsa/stand.h>
     52  1.1  thorpej 
     53  1.1  thorpej #include <hp300/dev/rdreg.h>
     54  1.1  thorpej 
     55  1.1  thorpej #include <hp300/stand/common/samachdep.h>
     56  1.1  thorpej 
     57  1.1  thorpej struct	rd_iocmd rd_ioc;
     58  1.1  thorpej struct	rd_rscmd rd_rsc;
     59  1.1  thorpej struct	rd_stat rd_stat;
     60  1.1  thorpej struct	rd_ssmcmd rd_ssmc;
     61  1.1  thorpej 
     62  1.1  thorpej struct	disklabel rdlabel;
     63  1.1  thorpej 
     64  1.1  thorpej struct	rdminilabel {
     65  1.1  thorpej 	u_short	npart;
     66  1.1  thorpej 	u_long	offset[MAXPARTITIONS];
     67  1.1  thorpej };
     68  1.1  thorpej 
     69  1.1  thorpej struct	rd_softc {
     70  1.1  thorpej 	int	sc_ctlr;
     71  1.1  thorpej 	int	sc_unit;
     72  1.1  thorpej 	int	sc_part;
     73  1.1  thorpej 	char	sc_retry;
     74  1.1  thorpej 	char	sc_alive;
     75  1.1  thorpej 	short	sc_type;
     76  1.1  thorpej 	struct	rdminilabel sc_pinfo;
     77  1.1  thorpej } rd_softc[NHPIB][NRD];
     78  1.1  thorpej 
     79  1.1  thorpej #define	RDRETRY		5
     80  1.1  thorpej 
     81  1.1  thorpej struct	rdidentinfo {
     82  1.1  thorpej 	short	ri_hwid;
     83  1.1  thorpej 	short	ri_maxunum;
     84  1.1  thorpej 	int	ri_nblocks;
     85  1.1  thorpej } rdidentinfo[] = {
     86  1.1  thorpej 	{ RD7946AID,	0,	 108416 },
     87  1.1  thorpej 	{ RD9134DID,	1,	  29088 },
     88  1.1  thorpej 	{ RD9134LID,	1,	   1232 },
     89  1.1  thorpej 	{ RD7912PID,	0,	 128128 },
     90  1.1  thorpej 	{ RD7914PID,	0,	 258048 },
     91  1.1  thorpej 	{ RD7958AID,	0,	 255276 },
     92  1.1  thorpej 	{ RD7957AID,	0,	 159544 },
     93  1.1  thorpej 	{ RD7933HID,	0,	 789958 },
     94  1.1  thorpej 	{ RD9134LID,	1,	  77840 },
     95  1.1  thorpej 	{ RD7936HID,	0,	 600978 },
     96  1.1  thorpej 	{ RD7937HID,	0,	1116102 },
     97  1.1  thorpej 	{ RD7914CTID,	0,	 258048 },
     98  1.1  thorpej 	{ RD7946AID,	0,	 108416 },
     99  1.1  thorpej 	{ RD9134LID,	1,	   1232 },
    100  1.1  thorpej 	{ RD7957BID,	0,	 159894 },
    101  1.1  thorpej 	{ RD7958BID,	0,	 297108 },
    102  1.1  thorpej 	{ RD7959BID,	0,	 594216 },
    103  1.1  thorpej 	{ RD2200AID,	0,	 654948 },
    104  1.1  thorpej 	{ RD2203AID,	0,	1309896 }
    105  1.1  thorpej };
    106  1.1  thorpej int numrdidentinfo = sizeof(rdidentinfo) / sizeof(rdidentinfo[0]);
    107  1.1  thorpej 
    108  1.1  thorpej rdinit(ctlr, unit)
    109  1.1  thorpej 	int ctlr, unit;
    110  1.1  thorpej {
    111  1.1  thorpej 	register struct rd_softc *rs = &rd_softc[ctlr][unit];
    112  1.1  thorpej 	u_char stat;
    113  1.1  thorpej 
    114  1.1  thorpej 	rs->sc_type = rdident(ctlr, unit);
    115  1.1  thorpej 	if (rs->sc_type < 0)
    116  1.1  thorpej 		return (0);
    117  1.1  thorpej 	rs->sc_alive = 1;
    118  1.1  thorpej 	return (1);
    119  1.1  thorpej }
    120  1.1  thorpej 
    121  1.1  thorpej rdreset(ctlr, unit)
    122  1.1  thorpej 	register int ctlr, unit;
    123  1.1  thorpej {
    124  1.1  thorpej 	u_char stat;
    125  1.1  thorpej 
    126  1.1  thorpej 	rd_ssmc.c_unit = C_SUNIT(0);
    127  1.1  thorpej 	rd_ssmc.c_cmd = C_SSM;
    128  1.1  thorpej 	rd_ssmc.c_refm = REF_MASK;
    129  1.1  thorpej 	rd_ssmc.c_fefm = FEF_MASK;
    130  1.1  thorpej 	rd_ssmc.c_aefm = AEF_MASK;
    131  1.1  thorpej 	rd_ssmc.c_iefm = IEF_MASK;
    132  1.1  thorpej 	hpibsend(ctlr, unit, C_CMD, &rd_ssmc, sizeof(rd_ssmc));
    133  1.1  thorpej 	hpibswait(ctlr, unit);
    134  1.1  thorpej 	hpibrecv(ctlr, unit, C_QSTAT, &stat, 1);
    135  1.1  thorpej }
    136  1.1  thorpej 
    137  1.1  thorpej rdident(ctlr, unit)
    138  1.1  thorpej 	register int ctlr, unit;
    139  1.1  thorpej {
    140  1.1  thorpej 	struct rd_describe desc;
    141  1.1  thorpej 	u_char stat, cmd[3];
    142  1.1  thorpej 	char name[7];
    143  1.1  thorpej 	register int id, i;
    144  1.1  thorpej 
    145  1.1  thorpej 	id = hpibid(ctlr, unit);
    146  1.1  thorpej 	if ((id & 0x200) == 0)
    147  1.1  thorpej 		return(-1);
    148  1.1  thorpej 	for (i = 0; i < numrdidentinfo; i++)
    149  1.1  thorpej 		if (id == rdidentinfo[i].ri_hwid)
    150  1.1  thorpej 			break;
    151  1.1  thorpej 	if (i == numrdidentinfo)
    152  1.1  thorpej 		return(-1);
    153  1.1  thorpej 	id = i;
    154  1.1  thorpej 	rdreset(ctlr, unit);
    155  1.1  thorpej 	cmd[0] = C_SUNIT(0);
    156  1.1  thorpej 	cmd[1] = C_SVOL(0);
    157  1.1  thorpej 	cmd[2] = C_DESC;
    158  1.1  thorpej 	hpibsend(ctlr, unit, C_CMD, cmd, sizeof(cmd));
    159  1.1  thorpej 	hpibrecv(ctlr, unit, C_EXEC, &desc, 37);
    160  1.1  thorpej 	hpibrecv(ctlr, unit, C_QSTAT, &stat, sizeof(stat));
    161  1.1  thorpej 	bzero(name, sizeof(name));
    162  1.1  thorpej 	if (!stat) {
    163  1.1  thorpej 		register int n = desc.d_name;
    164  1.1  thorpej 		for (i = 5; i >= 0; i--) {
    165  1.1  thorpej 			name[i] = (n & 0xf) + '0';
    166  1.1  thorpej 			n >>= 4;
    167  1.1  thorpej 		}
    168  1.1  thorpej 	}
    169  1.1  thorpej 	/*
    170  1.1  thorpej 	 * Take care of a couple of anomolies:
    171  1.1  thorpej 	 * 1. 7945A and 7946A both return same HW id
    172  1.1  thorpej 	 * 2. 9122S and 9134D both return same HW id
    173  1.1  thorpej 	 * 3. 9122D and 9134L both return same HW id
    174  1.1  thorpej 	 */
    175  1.1  thorpej 	switch (rdidentinfo[id].ri_hwid) {
    176  1.1  thorpej 	case RD7946AID:
    177  1.1  thorpej 		if (bcmp(name, "079450", 6) == 0)
    178  1.1  thorpej 			id = RD7945A;
    179  1.1  thorpej 		else
    180  1.1  thorpej 			id = RD7946A;
    181  1.1  thorpej 		break;
    182  1.1  thorpej 
    183  1.1  thorpej 	case RD9134LID:
    184  1.1  thorpej 		if (bcmp(name, "091340", 6) == 0)
    185  1.1  thorpej 			id = RD9134L;
    186  1.1  thorpej 		else
    187  1.1  thorpej 			id = RD9122D;
    188  1.1  thorpej 		break;
    189  1.1  thorpej 
    190  1.1  thorpej 	case RD9134DID:
    191  1.1  thorpej 		if (bcmp(name, "091220", 6) == 0)
    192  1.1  thorpej 			id = RD9122S;
    193  1.1  thorpej 		else
    194  1.1  thorpej 			id = RD9134D;
    195  1.1  thorpej 		break;
    196  1.1  thorpej 	}
    197  1.1  thorpej 	return(id);
    198  1.1  thorpej }
    199  1.1  thorpej 
    200  1.1  thorpej #ifdef COMPAT_NOLABEL
    201  1.1  thorpej int rdcyloff[][8] = {
    202  1.1  thorpej 	{ 1, 143, 0, 143, 0,   0,   323, 503, },	/* 7945A */
    203  1.1  thorpej 	{ 1, 167, 0, 0,	  0,   0,   0,	 0,   },	/* 9134D */
    204  1.1  thorpej 	{ 0, 0,	  0, 0,	  0,   0,   0,	 0,   },	/* 9122S */
    205  1.1  thorpej 	{ 0, 71,  0, 221, 292, 542, 221, 0,   },	/* 7912P */
    206  1.1  thorpej 	{ 1, 72,  0, 72,  362, 802, 252, 362, },	/* 7914P */
    207  1.1  thorpej 	{ 1, 28,  0, 140, 167, 444, 140, 721, },	/* 7933H */
    208  1.1  thorpej 	{ 1, 200, 0, 200, 0,   0,   450, 600, },	/* 9134L */
    209  1.1  thorpej 	{ 1, 105, 0, 105, 380, 736, 265, 380, },	/* 7957A */
    210  1.1  thorpej 	{ 1, 65,  0, 65,  257, 657, 193, 257, },	/* 7958A */
    211  1.1  thorpej 	{ 1, 128, 0, 128, 518, 918, 388, 518, },	/* 7957B */
    212  1.1  thorpej 	{ 1, 44,  0, 44,  174, 496, 131, 174, },	/* 7958B */
    213  1.1  thorpej 	{ 1, 44,  0, 44,  218, 1022,174, 218, },	/* 7959B */
    214  1.1  thorpej 	{ 1, 37,  0, 37,  183, 857, 147, 183, },	/* 2200A */
    215  1.1  thorpej 	{ 1, 19,  0, 94,  112, 450, 94,	 788, },	/* 2203A */
    216  1.1  thorpej 	{ 1, 20,  0, 98,  117, 256, 98,	 397, },	/* 7936H */
    217  1.1  thorpej 	{ 1, 11,  0, 53,  63,  217, 53,	 371, },	/* 7937H */
    218  1.1  thorpej };
    219  1.1  thorpej 
    220  1.1  thorpej struct rdcompatinfo {
    221  1.1  thorpej 	int	nbpc;
    222  1.1  thorpej 	int	*cyloff;
    223  1.1  thorpej } rdcompatinfo[] = {
    224  1.1  thorpej 	NRD7945ABPT*NRD7945ATRK, rdcyloff[0],
    225  1.1  thorpej 	NRD9134DBPT*NRD9134DTRK, rdcyloff[1],
    226  1.1  thorpej 	NRD9122SBPT*NRD9122STRK, rdcyloff[2],
    227  1.1  thorpej 	NRD7912PBPT*NRD7912PTRK, rdcyloff[3],
    228  1.1  thorpej 	NRD7914PBPT*NRD7914PTRK, rdcyloff[4],
    229  1.1  thorpej 	NRD7958ABPT*NRD7958ATRK, rdcyloff[8],
    230  1.1  thorpej 	NRD7957ABPT*NRD7957ATRK, rdcyloff[7],
    231  1.1  thorpej 	NRD7933HBPT*NRD7933HTRK, rdcyloff[5],
    232  1.1  thorpej 	NRD9134LBPT*NRD9134LTRK, rdcyloff[6],
    233  1.1  thorpej 	NRD7936HBPT*NRD7936HTRK, rdcyloff[14],
    234  1.1  thorpej 	NRD7937HBPT*NRD7937HTRK, rdcyloff[15],
    235  1.1  thorpej 	NRD7914PBPT*NRD7914PTRK, rdcyloff[4],
    236  1.1  thorpej 	NRD7945ABPT*NRD7945ATRK, rdcyloff[0],
    237  1.1  thorpej 	NRD9122SBPT*NRD9122STRK, rdcyloff[2],
    238  1.1  thorpej 	NRD7957BBPT*NRD7957BTRK, rdcyloff[9],
    239  1.1  thorpej 	NRD7958BBPT*NRD7958BTRK, rdcyloff[10],
    240  1.1  thorpej 	NRD7959BBPT*NRD7959BTRK, rdcyloff[11],
    241  1.1  thorpej 	NRD2200ABPT*NRD2200ATRK, rdcyloff[12],
    242  1.1  thorpej 	NRD2203ABPT*NRD2203ATRK, rdcyloff[13],
    243  1.1  thorpej };
    244  1.1  thorpej int	nrdcompatinfo = sizeof(rdcompatinfo) / sizeof(rdcompatinfo[0]);
    245  1.1  thorpej #endif
    246  1.1  thorpej 
    247  1.1  thorpej char io_buf[MAXBSIZE];
    248  1.1  thorpej 
    249  1.1  thorpej rdgetinfo(rs)
    250  1.1  thorpej 	register struct rd_softc *rs;
    251  1.1  thorpej {
    252  1.1  thorpej 	register struct rdminilabel *pi = &rs->sc_pinfo;
    253  1.1  thorpej 	register struct disklabel *lp = &rdlabel;
    254  1.1  thorpej 	char *msg, *getdisklabel();
    255  1.1  thorpej 	int rdstrategy(), err, savepart;
    256  1.1  thorpej 	size_t i;
    257  1.1  thorpej 
    258  1.1  thorpej 	bzero((caddr_t)lp, sizeof *lp);
    259  1.1  thorpej 	lp->d_secsize = DEV_BSIZE;
    260  1.1  thorpej 
    261  1.1  thorpej 	/* Disklabel is always from RAW_PART. */
    262  1.1  thorpej 	savepart = rs->sc_part;
    263  1.1  thorpej 	rs->sc_part = RAW_PART;
    264  1.1  thorpej 	err = rdstrategy(rs, F_READ, LABELSECTOR,
    265  1.1  thorpej 	    lp->d_secsize ? lp->d_secsize : DEV_BSIZE, io_buf, &i);
    266  1.1  thorpej 	rs->sc_part = savepart;
    267  1.1  thorpej 
    268  1.1  thorpej 	if (err) {
    269  1.1  thorpej 		printf("rdgetinfo: rdstrategy error %d\n", err);
    270  1.1  thorpej 		return(0);
    271  1.1  thorpej 	}
    272  1.1  thorpej 
    273  1.1  thorpej 	msg = getdisklabel(io_buf, lp);
    274  1.1  thorpej 	if (msg) {
    275  1.1  thorpej 		printf("rd(%d,%d,%d): WARNING: %s, ",
    276  1.1  thorpej 		       rs->sc_ctlr, rs->sc_unit, rs->sc_part, msg);
    277  1.1  thorpej #ifdef COMPAT_NOLABEL
    278  1.1  thorpej 		{
    279  1.1  thorpej 			register struct rdcompatinfo *ci;
    280  1.1  thorpej 
    281  1.1  thorpej 			printf("using old default partitioning\n");
    282  1.1  thorpej 			ci = &rdcompatinfo[rs->sc_type];
    283  1.1  thorpej 			pi->npart = 8;
    284  1.1  thorpej 			for (i = 0; i < pi->npart; i++)
    285  1.1  thorpej 				pi->offset[i] = ci->cyloff[i] * ci->nbpc;
    286  1.1  thorpej 		}
    287  1.1  thorpej #else
    288  1.1  thorpej 		printf("defining `c' partition as entire disk\n");
    289  1.1  thorpej 		pi->npart = 3;
    290  1.1  thorpej 		pi->offset[0] = pi->offset[1] = -1;
    291  1.1  thorpej 		pi->offset[2] = 0;
    292  1.1  thorpej #endif
    293  1.1  thorpej 	} else {
    294  1.1  thorpej 		pi->npart = lp->d_npartitions;
    295  1.1  thorpej 		for (i = 0; i < pi->npart; i++)
    296  1.1  thorpej 			pi->offset[i] = lp->d_partitions[i].p_size == 0 ?
    297  1.1  thorpej 				-1 : lp->d_partitions[i].p_offset;
    298  1.1  thorpej 	}
    299  1.1  thorpej 	return(1);
    300  1.1  thorpej }
    301  1.1  thorpej 
    302  1.1  thorpej rdopen(f, ctlr, unit, part)
    303  1.1  thorpej 	struct open_file *f;
    304  1.1  thorpej 	int ctlr, unit, part;
    305  1.1  thorpej {
    306  1.1  thorpej 	register struct rd_softc *rs;
    307  1.1  thorpej 	struct rdinfo *ri;
    308  1.1  thorpej 
    309  1.1  thorpej 	if (ctlr >= NHPIB || hpibalive(ctlr) == 0)
    310  1.1  thorpej 		return (EADAPT);
    311  1.1  thorpej 	if (unit >= NRD)
    312  1.1  thorpej 		return (ECTLR);
    313  1.1  thorpej 	rs = &rd_softc[ctlr][unit];
    314  1.1  thorpej 	rs->sc_part = part;
    315  1.1  thorpej 	rs->sc_unit = unit;
    316  1.1  thorpej 	rs->sc_ctlr = ctlr;
    317  1.1  thorpej 	if (rs->sc_alive == 0) {
    318  1.1  thorpej 		if (rdinit(ctlr, unit) == 0)
    319  1.1  thorpej 			return (ENXIO);
    320  1.1  thorpej 		if (rdgetinfo(rs) == 0)
    321  1.1  thorpej 			return (ERDLAB);
    322  1.1  thorpej 	}
    323  1.1  thorpej 	if (part != RAW_PART &&     /* always allow RAW_PART to be opened */
    324  1.1  thorpej 	    (part >= rs->sc_pinfo.npart || rs->sc_pinfo.offset[part] == -1))
    325  1.1  thorpej 		return (EPART);
    326  1.1  thorpej 	f->f_devdata = (void *)rs;
    327  1.1  thorpej 	return (0);
    328  1.1  thorpej }
    329  1.1  thorpej 
    330  1.1  thorpej rdclose(f)
    331  1.1  thorpej 	struct open_file *f;
    332  1.1  thorpej {
    333  1.1  thorpej 	struct rd_softc *rs = f->f_devdata;
    334  1.1  thorpej 
    335  1.1  thorpej 	/*
    336  1.1  thorpej 	 * Mark the disk `not alive' so that the disklabel
    337  1.1  thorpej 	 * will be re-loaded at next open.
    338  1.1  thorpej 	 */
    339  1.1  thorpej 	bzero(rs, sizeof(struct rd_softc));
    340  1.1  thorpej 	f->f_devdata = NULL;
    341  1.1  thorpej 
    342  1.1  thorpej 	return (0);
    343  1.1  thorpej }
    344  1.1  thorpej 
    345  1.1  thorpej rdstrategy(devdata, func, dblk, size, v_buf, rsize)
    346  1.1  thorpej 	void *devdata;
    347  1.1  thorpej 	int func;
    348  1.1  thorpej 	daddr_t dblk;
    349  1.1  thorpej 	size_t size;
    350  1.1  thorpej 	void *v_buf;
    351  1.1  thorpej 	size_t *rsize;
    352  1.1  thorpej {
    353  1.1  thorpej 	char *buf = v_buf;
    354  1.1  thorpej 	struct rd_softc *rs = devdata;
    355  1.1  thorpej 	register int ctlr = rs->sc_ctlr;
    356  1.1  thorpej 	register int unit = rs->sc_unit;
    357  1.1  thorpej 	daddr_t blk;
    358  1.1  thorpej 	char stat;
    359  1.1  thorpej 
    360  1.1  thorpej 	if (size == 0)
    361  1.1  thorpej 		return(0);
    362  1.1  thorpej 
    363  1.1  thorpej 	/*
    364  1.1  thorpej 	 * Don't do partition translation on the `raw partition'.
    365  1.1  thorpej 	 */
    366  1.1  thorpej 	blk = (dblk + ((rs->sc_part == RAW_PART) ? 0 :
    367  1.1  thorpej 	    rs->sc_pinfo.offset[rs->sc_part]));
    368  1.1  thorpej 
    369  1.1  thorpej 	rs->sc_retry = 0;
    370  1.1  thorpej 	rd_ioc.c_unit = C_SUNIT(0);
    371  1.1  thorpej 	rd_ioc.c_volume = C_SVOL(0);
    372  1.1  thorpej 	rd_ioc.c_saddr = C_SADDR;
    373  1.1  thorpej 	rd_ioc.c_hiaddr = 0;
    374  1.1  thorpej 	rd_ioc.c_addr = RDBTOS(blk);
    375  1.1  thorpej 	rd_ioc.c_nop2 = C_NOP;
    376  1.1  thorpej 	rd_ioc.c_slen = C_SLEN;
    377  1.1  thorpej 	rd_ioc.c_len = size;
    378  1.1  thorpej 	rd_ioc.c_cmd = func == F_READ ? C_READ : C_WRITE;
    379  1.1  thorpej retry:
    380  1.1  thorpej 	hpibsend(ctlr, unit, C_CMD, &rd_ioc.c_unit, sizeof(rd_ioc)-2);
    381  1.1  thorpej 	hpibswait(ctlr, unit);
    382  1.1  thorpej 	hpibgo(ctlr, unit, C_EXEC, buf, size, func);
    383  1.1  thorpej 	hpibswait(ctlr, unit);
    384  1.1  thorpej 	hpibrecv(ctlr, unit, C_QSTAT, &stat, 1);
    385  1.1  thorpej 	if (stat) {
    386  1.1  thorpej 		if (rderror(ctlr, unit, rs->sc_part) == 0)
    387  1.1  thorpej 			return(EIO);
    388  1.1  thorpej 		if (++rs->sc_retry > RDRETRY)
    389  1.1  thorpej 			return(EIO);
    390  1.1  thorpej 		goto retry;
    391  1.1  thorpej 	}
    392  1.1  thorpej 	*rsize = size;
    393  1.1  thorpej 
    394  1.1  thorpej 	return(0);
    395  1.1  thorpej }
    396  1.1  thorpej 
    397  1.1  thorpej rderror(ctlr, unit, part)
    398  1.1  thorpej 	register int ctlr, unit;
    399  1.1  thorpej 	int part;
    400  1.1  thorpej {
    401  1.1  thorpej 	register struct rd_softc *rd = &rd_softc[ctlr][unit];
    402  1.1  thorpej 	char stat;
    403  1.1  thorpej 
    404  1.1  thorpej 	rd_rsc.c_unit = C_SUNIT(0);
    405  1.1  thorpej 	rd_rsc.c_sram = C_SRAM;
    406  1.1  thorpej 	rd_rsc.c_ram = C_RAM;
    407  1.1  thorpej 	rd_rsc.c_cmd = C_STATUS;
    408  1.1  thorpej 	hpibsend(ctlr, unit, C_CMD, &rd_rsc, sizeof(rd_rsc));
    409  1.1  thorpej 	hpibrecv(ctlr, unit, C_EXEC, &rd_stat, sizeof(rd_stat));
    410  1.1  thorpej 	hpibrecv(ctlr, unit, C_QSTAT, &stat, 1);
    411  1.1  thorpej 	if (stat) {
    412  1.1  thorpej 		printf("rd(%d,%d,0,%d): request status fail %d\n",
    413  1.1  thorpej 		       ctlr, unit, part, stat);
    414  1.1  thorpej 		return(0);
    415  1.1  thorpej 	}
    416  1.1  thorpej 	printf("rd(%d,%d,0,%d) err: vu 0x%x",
    417  1.1  thorpej 	       ctlr, unit, part, rd_stat.c_vu);
    418  1.1  thorpej 	if ((rd_stat.c_aef & AEF_UD) || (rd_stat.c_ief & (IEF_MD|IEF_RD)))
    419  1.1  thorpej 		printf(", block %d", rd_stat.c_blk);
    420  1.1  thorpej 	printf(", R0x%x F0x%x A0x%x I0x%x\n",
    421  1.1  thorpej 	       rd_stat.c_ref, rd_stat.c_fef, rd_stat.c_aef, rd_stat.c_ief);
    422  1.1  thorpej 	return(1);
    423  1.1  thorpej }
    424