xref: /freebsd/sys/cam/scsi/scsi_sa.c (revision daf1cffce2e07931f27c6c6998652e90df6ba87e)
1 /*
2  * $FreeBSD$
3  *
4  * Implementation of SCSI Sequential Access Peripheral driver for CAM.
5  *
6  * Copyright (c) 1997 Justin T. Gibbs
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions, and the following disclaimer,
14  *    without modification, immediately at the beginning of the file.
15  * 2. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
22  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  *
31  * Substantial subsequent modifications
32  * Copyright (c) 1999 Matthew Jacob
33  *  NASA Ames Research Center,
34  *  Feral Software
35  */
36 
37 #include <sys/param.h>
38 #include <sys/queue.h>
39 #ifdef _KERNEL
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #endif
43 #include <sys/types.h>
44 #include <sys/buf.h>
45 #include <sys/malloc.h>
46 #include <sys/mtio.h>
47 #include <sys/conf.h>
48 #include <sys/buf.h>
49 #include <sys/devicestat.h>
50 #include <machine/limits.h>
51 
52 #ifndef _KERNEL
53 #include <stdio.h>
54 #include <string.h>
55 #endif
56 
57 #include <cam/cam.h>
58 #include <cam/cam_ccb.h>
59 #include <cam/cam_extend.h>
60 #include <cam/cam_periph.h>
61 #include <cam/cam_xpt_periph.h>
62 #include <cam/cam_debug.h>
63 
64 #include <cam/scsi/scsi_all.h>
65 #include <cam/scsi/scsi_message.h>
66 #include <cam/scsi/scsi_sa.h>
67 
68 #ifdef _KERNEL
69 
70 #include <opt_sa.h>
71 
72 #ifndef SA_SPACE_TIMEOUT
73 #define SA_SPACE_TIMEOUT	1 * 60
74 #endif
75 #ifndef SA_REWIND_TIMEOUT
76 #define SA_REWIND_TIMEOUT	2 * 60
77 #endif
78 #ifndef SA_ERASE_TIMEOUT
79 #define SA_ERASE_TIMEOUT	4 * 60
80 #endif
81 
82 #define	REWIND_TIMEOUT		(SA_REWIND_TIMEOUT * 60 * 1000)
83 #define	ERASE_TIMEOUT		(SA_ERASE_TIMEOUT * 60 * 1000)
84 #define	SPACE_TIMEOUT		(SA_SPACE_TIMEOUT * 60 * 1000)
85 
86 /*
87  * Additional options that can be set for config: SA_1FM_AT_EOT
88  */
89 
90 #ifndef	UNUSED_PARAMETER
91 #define	UNUSED_PARAMETER(x)	x = x
92 #endif
93 
94 #define	QFRLS(ccb)	\
95 	if (((ccb)->ccb_h.status & CAM_DEV_QFRZN) != 0)	\
96 		cam_release_devq((ccb)->ccb_h.path, 0, 0, 0, FALSE)
97 
98 /*
99  * Driver states
100  */
101 
102 
103 typedef enum {
104 	SA_STATE_NORMAL, SA_STATE_ABNORMAL
105 } sa_state;
106 
107 typedef enum {
108 	SA_CCB_BUFFER_IO,
109 	SA_CCB_WAITING
110 } sa_ccb_types;
111 
112 #define ccb_type ppriv_field0
113 #define ccb_bp	 ppriv_ptr1
114 
115 typedef enum {
116 	SA_FLAG_OPEN		= 0x0001,
117 	SA_FLAG_FIXED		= 0x0002,
118 	SA_FLAG_TAPE_LOCKED	= 0x0004,
119 	SA_FLAG_TAPE_MOUNTED	= 0x0008,
120 	SA_FLAG_TAPE_WP		= 0x0010,
121 	SA_FLAG_TAPE_WRITTEN	= 0x0020,
122 	SA_FLAG_EOM_PENDING	= 0x0040,
123 	SA_FLAG_EIO_PENDING	= 0x0080,
124 	SA_FLAG_EOF_PENDING	= 0x0100,
125 	SA_FLAG_ERR_PENDING	= (SA_FLAG_EOM_PENDING|SA_FLAG_EIO_PENDING|
126 				   SA_FLAG_EOF_PENDING),
127 	SA_FLAG_INVALID		= 0x0200,
128 	SA_FLAG_COMP_ENABLED	= 0x0400,
129 	SA_FLAG_COMP_SUPP	= 0x0800,
130 	SA_FLAG_COMP_UNSUPP	= 0x1000,
131 	SA_FLAG_TAPE_FROZEN	= 0x2000
132 } sa_flags;
133 
134 typedef enum {
135 	SA_MODE_REWIND		= 0x00,
136 	SA_MODE_NOREWIND	= 0x01,
137 	SA_MODE_OFFLINE		= 0x02
138 } sa_mode;
139 
140 typedef enum {
141 	SA_PARAM_NONE		= 0x00,
142 	SA_PARAM_BLOCKSIZE	= 0x01,
143 	SA_PARAM_DENSITY	= 0x02,
144 	SA_PARAM_COMPRESSION	= 0x04,
145 	SA_PARAM_BUFF_MODE	= 0x08,
146 	SA_PARAM_NUMBLOCKS	= 0x10,
147 	SA_PARAM_WP		= 0x20,
148 	SA_PARAM_SPEED		= 0x40,
149 	SA_PARAM_ALL		= 0x7f
150 } sa_params;
151 
152 typedef enum {
153 	SA_QUIRK_NONE		= 0x00,
154 	SA_QUIRK_NOCOMP		= 0x01,	/* can't deal with compression at all */
155 	SA_QUIRK_FIXED		= 0x02,	/* force fixed mode */
156 	SA_QUIRK_VARIABLE	= 0x04,	/* force variable mode */
157 	SA_QUIRK_2FM		= 0x08,	/* Needs Two File Marks at EOD */
158 	SA_QUIRK_1FM		= 0x10,	/* No more than 1 File Mark at EOD */
159 	SA_QUIRK_NODREAD	= 0x20	/* Don't try and dummy read density */
160 } sa_quirks;
161 
162 /* units are bits 4-7, 16-21 (1024 units) */
163 #define SAUNIT(DEV) \
164 	(((minor(DEV) & 0xF0) >> 4) |  ((minor(DEV) & 0x3f0000) >> 16))
165 
166 #define SAMODE(z) ((minor(z) & 0x3))
167 #define SADENSITY(z) (((minor(z) >> 2) & 0x3))
168 #define	SA_IS_CTRL(z) (minor(z) & (1 << 29))
169 
170 #define SA_NOT_CTLDEV	0
171 #define SA_CTLDEV	1
172 
173 #define SA_ATYPE_R	0
174 #define SA_ATYPE_NR	1
175 #define SA_ATYPE_ER	2
176 
177 #define SAMINOR(ctl, unit, mode, access) \
178 	((ctl << 29) | ((unit & 0x3f0) << 16) | ((unit & 0xf) << 4) | \
179 	(mode << 0x2) | (access & 0x3))
180 
181 #define SA_NUM_MODES	4
182 struct sa_devs {
183 	dev_t	ctl_dev;
184 	struct sa_mode_devs {
185 		dev_t	r_dev;
186 		dev_t	nr_dev;
187 		dev_t	er_dev;
188 	} mode_devs[SA_NUM_MODES];
189 	dev_t	r_dev;
190 	dev_t	nr_dev;
191 	dev_t	er_dev;
192 };
193 
194 struct sa_softc {
195 	sa_state	state;
196 	sa_flags	flags;
197 	sa_quirks	quirks;
198 	struct		buf_queue_head buf_queue;
199 	int		queue_count;
200 	struct		devstat device_stats;
201 	struct sa_devs	devs;
202 	int		blk_gran;
203 	int		blk_mask;
204 	int		blk_shift;
205 	u_int32_t	max_blk;
206 	u_int32_t	min_blk;
207 	u_int32_t	comp_algorithm;
208 	u_int32_t	saved_comp_algorithm;
209 	u_int32_t	media_blksize;
210 	u_int32_t	last_media_blksize;
211 	u_int32_t	media_numblks;
212 	u_int8_t	media_density;
213 	u_int8_t	speed;
214 	u_int8_t	scsi_rev;
215 	u_int8_t	dsreg;		/* mtio mt_dsreg, redux */
216 	int		buffer_mode;
217 	int		filemarks;
218 	union		ccb saved_ccb;
219 
220 	/*
221 	 * Relative to BOT Location.
222 	 */
223 	daddr_t		fileno;
224 	daddr_t		blkno;
225 
226 	/*
227 	 * Latched Error Info
228 	 */
229 	struct {
230 		struct scsi_sense_data _last_io_sense;
231 		u_int32_t _last_io_resid;
232 		u_int8_t _last_io_cdb[CAM_MAX_CDBLEN];
233 		struct scsi_sense_data _last_ctl_sense;
234 		u_int32_t _last_ctl_resid;
235 		u_int8_t _last_ctl_cdb[CAM_MAX_CDBLEN];
236 #define	last_io_sense	errinfo._last_io_sense
237 #define	last_io_resid	errinfo._last_io_resid
238 #define	last_io_cdb	errinfo._last_io_cdb
239 #define	last_ctl_sense	errinfo._last_ctl_sense
240 #define	last_ctl_resid	errinfo._last_ctl_resid
241 #define	last_ctl_cdb	errinfo._last_ctl_cdb
242 	} errinfo;
243 	/*
244 	 * Misc other flags/state
245 	 */
246 	u_int32_t
247 				: 31,
248 		ctrl_mode	: 1;	/* control device open */
249 };
250 
251 struct sa_quirk_entry {
252 	struct scsi_inquiry_pattern inq_pat;	/* matching pattern */
253 	sa_quirks quirks;	/* specific quirk type */
254 	u_int32_t prefblk;	/* preferred blocksize when in fixed mode */
255 };
256 
257 static struct sa_quirk_entry sa_quirk_table[] =
258 {
259 	{
260 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE",
261 		  "Python 25601*", "*"}, SA_QUIRK_NOCOMP|SA_QUIRK_NODREAD, 0
262 	},
263 	{
264 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE",
265 		  "Python*", "*"}, SA_QUIRK_NODREAD, 0
266 	},
267 	{
268 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE",
269 		  "VIPER 150*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 512
270 	},
271 	{
272 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE",
273 		  "VIPER 2525*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 1024
274 	},
275 	{
276 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "HP",
277 		  "T20*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 512
278 	},
279 	{
280 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "HP",
281 		  "T4000*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 512
282 	},
283 	{
284 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "HP",
285 		  "HP-88780*", "*"}, SA_QUIRK_VARIABLE|SA_QUIRK_2FM, 0
286 	},
287 	{
288 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "KENNEDY",
289 		  "*", "*"}, SA_QUIRK_VARIABLE|SA_QUIRK_2FM, 0
290 	},
291 	{
292 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "M4 DATA",
293 		  "123107 SCSI*", "*"}, SA_QUIRK_VARIABLE|SA_QUIRK_2FM, 0
294 	},
295 	{	/* jreynold@primenet.com */
296 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "Seagate",
297 		"STT8000N*", "*"}, SA_QUIRK_1FM, 0
298 	},
299 	{	/* mike@sentex.net */
300 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "Seagate",
301 		"STT20000*", "*"}, SA_QUIRK_1FM, 0
302 	},
303 	{
304 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG",
305 		  " TDC 3600", "U07:"}, SA_QUIRK_NOCOMP|SA_QUIRK_1FM, 512
306 	},
307 	{
308 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG",
309 		  " TDC 3800", "*"}, SA_QUIRK_NOCOMP|SA_QUIRK_1FM, 512
310 	},
311 	{
312 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG",
313 		  " TDC 4100", "*"}, SA_QUIRK_NOCOMP|SA_QUIRK_1FM, 512
314 	},
315 	{
316 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG",
317 		  " TDC 4200", "*"}, SA_QUIRK_NOCOMP|SA_QUIRK_1FM, 512
318 	},
319 	{
320 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG",
321 		  " SLR*", "*"}, SA_QUIRK_1FM, 0
322 	},
323 	{
324 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "WANGTEK",
325 		  "5525ES*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 512
326 	},
327 	{
328 		{ T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "WANGTEK",
329 		  "51000*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 1024
330 	}
331 };
332 
333 static	d_open_t	saopen;
334 static	d_close_t	saclose;
335 static	d_strategy_t	sastrategy;
336 static	d_ioctl_t	saioctl;
337 static	periph_init_t	sainit;
338 static	periph_ctor_t	saregister;
339 static	periph_oninv_t	saoninvalidate;
340 static	periph_dtor_t	sacleanup;
341 static	periph_start_t	sastart;
342 static	void		saasync(void *callback_arg, u_int32_t code,
343 				struct cam_path *path, void *arg);
344 static	void		sadone(struct cam_periph *periph,
345 			       union ccb *start_ccb);
346 static  int		saerror(union ccb *ccb, u_int32_t cam_flags,
347 				u_int32_t sense_flags);
348 static int		sacheckeod(struct cam_periph *periph);
349 static int		sagetparams(struct cam_periph *periph,
350 				    sa_params params_to_get,
351 				    u_int32_t *blocksize, u_int8_t *density,
352 				    u_int32_t *numblocks, int *buff_mode,
353 				    u_int8_t *write_protect, u_int8_t *speed,
354 				    int *comp_supported, int *comp_enabled,
355 				    u_int32_t *comp_algorithm,
356 				    sa_comp_t *comp_page);
357 static int		sasetparams(struct cam_periph *periph,
358 				    sa_params params_to_set,
359 				    u_int32_t blocksize, u_int8_t density,
360 				    u_int32_t comp_algorithm,
361 				    u_int32_t sense_flags);
362 static void		saprevent(struct cam_periph *periph, int action);
363 static int		sarewind(struct cam_periph *periph);
364 static int		saspace(struct cam_periph *periph, int count,
365 				scsi_space_code code);
366 static int		samount(struct cam_periph *, int, dev_t);
367 static int		saretension(struct cam_periph *periph);
368 static int		sareservereleaseunit(struct cam_periph *periph,
369 					     int reserve);
370 static int		saloadunload(struct cam_periph *periph, int load);
371 static int		saerase(struct cam_periph *periph, int longerase);
372 static int		sawritefilemarks(struct cam_periph *periph,
373 					 int nmarks, int setmarks);
374 static int		sardpos(struct cam_periph *periph, int, u_int32_t *);
375 static int		sasetpos(struct cam_periph *periph, int, u_int32_t *);
376 
377 
378 static struct periph_driver sadriver =
379 {
380 	sainit, "sa",
381 	TAILQ_HEAD_INITIALIZER(sadriver.units), /* generation */ 0
382 };
383 
384 DATA_SET(periphdriver_set, sadriver);
385 
386 /* For 2.2-stable support */
387 #ifndef D_TAPE
388 #define D_TAPE 0
389 #endif
390 
391 #define SA_CDEV_MAJOR 14
392 
393 static struct cdevsw sa_cdevsw = {
394 	/* open */	saopen,
395 	/* close */	saclose,
396 	/* read */	physread,
397 	/* write */	physwrite,
398 	/* ioctl */	saioctl,
399 	/* poll */	nopoll,
400 	/* mmap */	nommap,
401 	/* strategy */	sastrategy,
402 	/* name */	"sa",
403 	/* maj */	SA_CDEV_MAJOR,
404 	/* dump */	nodump,
405 	/* psize */	nopsize,
406 	/* flags */	D_TAPE,
407 	/* bmaj */	-1
408 };
409 
410 static struct extend_array *saperiphs;
411 
412 static int
413 saopen(dev_t dev, int flags, int fmt, struct proc *p)
414 {
415 	struct cam_periph *periph;
416 	struct sa_softc *softc;
417 	int unit;
418 	int mode;
419 	int density;
420 	int error;
421 	int s;
422 
423 	unit = SAUNIT(dev);
424 	mode = SAMODE(dev);
425 	density = SADENSITY(dev);
426 
427 	s = splsoftcam();
428 	periph = cam_extend_get(saperiphs, unit);
429 	if (periph == NULL) {
430 		(void) splx(s);
431 		return (ENXIO);
432 	}
433 	softc = (struct sa_softc *)periph->softc;
434 	if ((error = cam_periph_lock(periph, PRIBIO|PCATCH)) != 0) {
435 		splx(s);
436 		return (error);
437 	}
438 	splx(s);
439 
440 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE|CAM_DEBUG_INFO,
441 	    ("saopen(%d): dev=0x%x softc=0x%x\n", unit, unit, softc->flags));
442 
443 	if (cam_periph_acquire(periph) != CAM_REQ_CMP) {
444 		cam_periph_unlock(periph);
445 		return (ENXIO);
446 	}
447 	if (SA_IS_CTRL(dev)) {
448 		softc->ctrl_mode = 1;
449 		cam_periph_unlock(periph);
450 		return (0);
451 	}
452 
453 
454 	if (softc->flags & SA_FLAG_OPEN) {
455 		error = EBUSY;
456 	} else if (softc->flags & SA_FLAG_INVALID) {
457 		error = ENXIO;
458 	} else {
459 		/*
460 		 * The function samount ensures media is loaded and ready.
461 		 * It also does a device RESERVE if the tape isn't yet mounted.
462 		 */
463 		error = samount(periph, flags, dev);
464 	}
465 
466 	if (error) {
467 		cam_periph_release(periph);
468 	} else {
469 		saprevent(periph, PR_PREVENT);
470 		softc->flags |= SA_FLAG_OPEN;
471 	}
472 	cam_periph_unlock(periph);
473 	return (error);
474 }
475 
476 static int
477 saclose(dev_t dev, int flag, int fmt, struct proc *p)
478 {
479 	struct	cam_periph *periph;
480 	struct	sa_softc *softc;
481 	int	unit, mode, error, writing, tmp;
482 	int	closedbits = SA_FLAG_OPEN;
483 
484 	unit = SAUNIT(dev);
485 	mode = SAMODE(dev);
486 	periph = cam_extend_get(saperiphs, unit);
487 	if (periph == NULL)
488 		return (ENXIO);
489 
490 	softc = (struct sa_softc *)periph->softc;
491 
492 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE|CAM_DEBUG_INFO,
493 	    ("saclose(%d): dev=0x%x softc=0x%x\n", unit, unit, softc->flags));
494 
495 
496 	if ((error = cam_periph_lock(periph, PRIBIO)) != 0) {
497 		return (error);
498 	}
499 
500 	if (SA_IS_CTRL(dev)) {
501 		softc->ctrl_mode = 0;
502 		cam_periph_release(periph);
503 		cam_periph_unlock(periph);
504 		return (0);
505 	}
506 
507 	/*
508 	 * Were we writing the tape?
509 	 */
510 	writing = (softc->flags & SA_FLAG_TAPE_WRITTEN) != 0;
511 
512 	/*
513 	 * See whether or not we need to write filemarks. If this
514 	 * fails, we probably have to assume we've lost tape
515 	 * position.
516 	 */
517 	error = sacheckeod(periph);
518 	if (error) {
519 		xpt_print_path(periph->path);
520 		printf("failed to write terminating filemark(s)\n");
521 		softc->flags |= SA_FLAG_TAPE_FROZEN;
522 	}
523 
524 	/*
525 	 * Whatever we end up doing, allow users to eject tapes from here on.
526 	 */
527 	saprevent(periph, PR_ALLOW);
528 
529 	/*
530 	 * Decide how to end...
531 	 */
532 	if ((softc->flags & SA_FLAG_TAPE_MOUNTED) == 0) {
533 		closedbits |= SA_FLAG_TAPE_FROZEN;
534 	} else switch (mode) {
535 	case SA_MODE_OFFLINE:
536 		/*
537 		 * An 'offline' close is an unconditional release of
538 		 * frozen && mount conditions, irrespective of whether
539 		 * these operations succeeded. The reason for this is
540 		 * to allow at least some kind of programmatic way
541 		 * around our state getting all fouled up. If somebody
542 		 * issues an 'offline' command, that will be allowed
543 		 * to clear state.
544 		 */
545 		(void) sarewind(periph);
546 		(void) saloadunload(periph, FALSE);
547 		closedbits |= SA_FLAG_TAPE_MOUNTED|SA_FLAG_TAPE_FROZEN;
548 		break;
549 	case SA_MODE_REWIND:
550 		/*
551 		 * If the rewind fails, return an error- if anyone cares,
552 		 * but not overwriting any previous error.
553 		 *
554 		 * We don't clear the notion of mounted here, but we do
555 		 * clear the notion of frozen if we successfully rewound.
556 		 */
557 		tmp = sarewind(periph);
558 		if (tmp) {
559 			if (error != 0)
560 				error = tmp;
561 		} else {
562 			closedbits |= SA_FLAG_TAPE_FROZEN;
563 		}
564 		break;
565 	case SA_MODE_NOREWIND:
566 		/*
567 		 * If we're not rewinding/unloading the tape, find out
568 		 * whether we need to back up over one of two filemarks
569 		 * we wrote (if we wrote two filemarks) so that appends
570 		 * from this point on will be sane.
571 		 */
572 		if (error == 0 && writing && (softc->quirks & SA_QUIRK_2FM)) {
573 			tmp = saspace(periph, -1, SS_FILEMARKS);
574 			if (tmp) {
575 				xpt_print_path(periph->path);
576 				printf("unable to backspace over one of double"
577 				   " filemarks at end of tape\n");
578 				xpt_print_path(periph->path);
579 				printf("it is possible that this device"
580 				   " needs a SA_QUIRK_1FM quirk set for it\n");
581 				softc->flags |= SA_FLAG_TAPE_FROZEN;
582 			}
583 		}
584 		break;
585 	default:
586 		xpt_print_path(periph->path);
587 		panic("unknown mode 0x%x in saclose\n", mode);
588 		/* NOTREACHED */
589 		break;
590 	}
591 
592 	/*
593 	 * We wish to note here that there are no more filemarks to be written.
594 	 */
595 	softc->filemarks = 0;
596 	softc->flags &= ~SA_FLAG_TAPE_WRITTEN;
597 
598 	/*
599 	 * And we are no longer open for business.
600 	 */
601 	softc->flags &= ~closedbits;
602 
603 	/*
604 	 * Inform users if tape state if frozen....
605 	 */
606 	if (softc->flags & SA_FLAG_TAPE_FROZEN) {
607 		xpt_print_path(periph->path);
608 		printf("tape is now frozen- use an OFFLINE, REWIND or MTEOM "
609 		    "command to clear this state.\n");
610 	}
611 
612 	/* release the device if it is no longer mounted */
613 	if ((softc->flags & SA_FLAG_TAPE_MOUNTED) == 0)
614 		sareservereleaseunit(periph, FALSE);
615 
616 	cam_periph_unlock(periph);
617 	cam_periph_release(periph);
618 
619 	return (error);
620 }
621 
622 /*
623  * Actually translate the requested transfer into one the physical driver
624  * can understand.  The transfer is described by a buf and will include
625  * only one physical transfer.
626  */
627 static void
628 sastrategy(struct buf *bp)
629 {
630 	struct cam_periph *periph;
631 	struct sa_softc *softc;
632 	u_int  unit;
633 	int    s;
634 
635 	if (SA_IS_CTRL(bp->b_dev)) {
636 		bp->b_error = EINVAL;
637 		goto bad;
638 	}
639 	unit = SAUNIT(bp->b_dev);
640 	periph = cam_extend_get(saperiphs, unit);
641 	if (periph == NULL) {
642 		bp->b_error = ENXIO;
643 		goto bad;
644 	}
645 	softc = (struct sa_softc *)periph->softc;
646 
647 	s = splsoftcam();
648 
649 	if (softc->flags & SA_FLAG_INVALID) {
650 		splx(s);
651 		bp->b_error = ENXIO;
652 		goto bad;
653 	}
654 
655 	if (softc->flags & SA_FLAG_TAPE_FROZEN) {
656 		splx(s);
657 		bp->b_error = EPERM;
658 		goto bad;
659 	}
660 
661 	splx(s);
662 
663 	/*
664 	 * If it's a null transfer, return immediatly
665 	 */
666 	if (bp->b_bcount == 0)
667 		goto done;
668 
669 	/* valid request?  */
670 	if (softc->flags & SA_FLAG_FIXED) {
671 		/*
672 		 * Fixed block device.  The byte count must
673 		 * be a multiple of our block size.
674 		 */
675 		if (((softc->blk_mask != ~0) &&
676 		    ((bp->b_bcount & softc->blk_mask) != 0)) ||
677 		    ((softc->blk_mask == ~0) &&
678 		    ((bp->b_bcount % softc->min_blk) != 0))) {
679 			xpt_print_path(periph->path);
680 			printf("Invalid request.  Fixed block device "
681 			       "requests must be a multiple "
682 			       "of %d bytes\n", softc->min_blk);
683 			bp->b_error = EINVAL;
684 			goto bad;
685 		}
686 	} else if ((bp->b_bcount > softc->max_blk) ||
687 		   (bp->b_bcount < softc->min_blk) ||
688 		   (bp->b_bcount & softc->blk_mask) != 0) {
689 
690 		xpt_print_path(periph->path);
691 		printf("Invalid request.  Variable block device "
692 		    "requests must be ");
693 		if (softc->blk_mask != 0) {
694 			printf("a multiple of %d ", (0x1 << softc->blk_gran));
695 		}
696 		printf("between %d and %d bytes\n", softc->min_blk,
697 		    softc->max_blk);
698 		bp->b_error = EINVAL;
699 		goto bad;
700         }
701 
702 	/*
703 	 * Mask interrupts so that the device cannot be invalidated until
704 	 * after we are in the queue.  Otherwise, we might not properly
705 	 * clean up one of the buffers.
706 	 */
707 	s = splbio();
708 
709 	/*
710 	 * Place it at the end of the queue.
711 	 */
712 	bufq_insert_tail(&softc->buf_queue, bp);
713 
714 	softc->queue_count++;
715 	CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("sastrategy: enqueuing a %d "
716 	    "%s byte %s queue count now %d\n", (int) bp->b_bcount,
717 	     (softc->flags & SA_FLAG_FIXED)?  "fixed" : "variable",
718 	     (bp->b_flags & B_READ)? "read" : "write", softc->queue_count));
719 
720 	splx(s);
721 
722 	/*
723 	 * Schedule ourselves for performing the work.
724 	 */
725 	xpt_schedule(periph, 1);
726 
727 	return;
728 bad:
729 	bp->b_flags |= B_ERROR;
730 done:
731 
732 	/*
733 	 * Correctly set the buf to indicate a completed xfer
734 	 */
735 	bp->b_resid = bp->b_bcount;
736 	biodone(bp);
737 }
738 
739 static int
740 saioctl(dev_t dev, u_long cmd, caddr_t arg, int flag, struct proc *p)
741 {
742 	struct cam_periph *periph;
743 	struct sa_softc *softc;
744 	scsi_space_code spaceop;
745 	int didlockperiph = 0;
746 	int s;
747 	int unit;
748 	int mode;
749 	int density;
750 	int error = 0;
751 
752 	unit = SAUNIT(dev);
753 	mode = SAMODE(dev);
754 	density = SADENSITY(dev);
755 	error = 0;		/* shut up gcc */
756 	spaceop = 0;		/* shut up gcc */
757 
758 	periph = cam_extend_get(saperiphs, unit);
759 	if (periph == NULL)
760 		return (ENXIO);
761 
762 	softc = (struct sa_softc *)periph->softc;
763 
764 	/*
765 	 * Check for control mode accesses. We allow MTIOCGET and
766 	 * MTIOCERRSTAT (but need to be the only one open in order
767 	 * to clear latched status), and MTSETBSIZE, MTSETDNSTY
768 	 * and MTCOMP (but need to be the only one accessing this
769 	 * device to run those).
770 	 */
771 
772 	if (SA_IS_CTRL(dev)) {
773 		switch (cmd) {
774 		case MTIOCGETEOTMODEL:
775 		case MTIOCGET:
776 			break;
777 		case MTIOCERRSTAT:
778 			/*
779 			 * If the periph isn't already locked, lock it
780 			 * so our MTIOCERRSTAT can reset latched error stats.
781 			 *
782 			 * If the periph is already locked, skip it because
783 			 * we're just getting status and it'll be up to the
784 			 * other thread that has this device open to do
785 			 * an MTIOCERRSTAT that would clear latched status.
786 			 */
787 			s = splsoftcam();
788 			if ((periph->flags & CAM_PERIPH_LOCKED) == 0) {
789 				error = cam_periph_lock(periph, PRIBIO|PCATCH);
790 				if (error != 0) {
791 					splx(s);
792 					return (error);
793 				}
794 				didlockperiph = 1;
795 			}
796 			break;
797 
798 		case MTIOCSETEOTMODEL:
799 		case MTSETBSIZ:
800 		case MTSETDNSTY:
801 		case MTCOMP:
802 			/*
803 			 * We need to acquire the peripheral here rather
804 			 * than at open time because we are sharing writable
805 			 * access to data structures.
806 			 */
807 			s = splsoftcam();
808 			error = cam_periph_lock(periph, PRIBIO|PCATCH);
809 			if (error != 0) {
810 				splx(s);
811 				return (error);
812 			}
813 			didlockperiph = 1;
814 			break;
815 
816 		default:
817 			return (EINVAL);
818 		}
819 	}
820 
821 	/*
822 	 * Find the device that the user is talking about
823 	 */
824 	switch (cmd) {
825 	case MTIOCGET:
826 	{
827 		struct mtget *g = (struct mtget *)arg;
828 
829 		/*
830 		 * If this isn't the control mode device, actually go out
831 		 * and ask the drive again what it's set to.
832 		 */
833 		if (!SA_IS_CTRL(dev)) {
834 			u_int8_t write_protect;
835 			int comp_enabled, comp_supported;
836 			error = sagetparams(periph, SA_PARAM_ALL,
837 			    &softc->media_blksize, &softc->media_density,
838 			    &softc->media_numblks, &softc->buffer_mode,
839 			    &write_protect, &softc->speed, &comp_supported,
840 			    &comp_enabled, &softc->comp_algorithm, NULL);
841 			if (error)
842 				break;
843 			if (write_protect)
844 				softc->flags |= SA_FLAG_TAPE_WP;
845 			else
846 				softc->flags &= ~SA_FLAG_TAPE_WP;
847 			softc->flags &= ~(SA_FLAG_COMP_SUPP|
848 			    SA_FLAG_COMP_ENABLED|SA_FLAG_COMP_UNSUPP);
849 			if (comp_supported) {
850 				if (softc->saved_comp_algorithm == 0)
851 					softc->saved_comp_algorithm =
852 					    softc->comp_algorithm;
853 				softc->flags |= SA_FLAG_COMP_SUPP;
854 				if (comp_enabled)
855 					softc->flags |= SA_FLAG_COMP_ENABLED;
856 			} else
857 				softc->flags |= SA_FLAG_COMP_UNSUPP;
858 		}
859 		bzero(g, sizeof(struct mtget));
860 		g->mt_type = MT_ISAR;
861 		if (softc->flags & SA_FLAG_COMP_UNSUPP) {
862 			g->mt_comp = MT_COMP_UNSUPP;
863 			g->mt_comp0 = MT_COMP_UNSUPP;
864 			g->mt_comp1 = MT_COMP_UNSUPP;
865 			g->mt_comp2 = MT_COMP_UNSUPP;
866 			g->mt_comp3 = MT_COMP_UNSUPP;
867 		} else {
868 			if ((softc->flags & SA_FLAG_COMP_ENABLED) == 0) {
869 				g->mt_comp = MT_COMP_DISABLED;
870 			} else {
871 				g->mt_comp = softc->comp_algorithm;
872 			}
873 			g->mt_comp0 = softc->comp_algorithm;
874 			g->mt_comp1 = softc->comp_algorithm;
875 			g->mt_comp2 = softc->comp_algorithm;
876 			g->mt_comp3 = softc->comp_algorithm;
877 		}
878 		g->mt_density = softc->media_density;
879 		g->mt_density0 = softc->media_density;
880 		g->mt_density1 = softc->media_density;
881 		g->mt_density2 = softc->media_density;
882 		g->mt_density3 = softc->media_density;
883 		g->mt_blksiz = softc->media_blksize;
884 		g->mt_blksiz0 = softc->media_blksize;
885 		g->mt_blksiz1 = softc->media_blksize;
886 		g->mt_blksiz2 = softc->media_blksize;
887 		g->mt_blksiz3 = softc->media_blksize;
888 		g->mt_fileno = softc->fileno;
889 		g->mt_blkno = softc->blkno;
890 		g->mt_dsreg = (short) softc->dsreg;
891 		error = 0;
892 		break;
893 	}
894 	case MTIOCERRSTAT:
895 	{
896 		struct scsi_tape_errors *sep =
897 		    &((union mterrstat *)arg)->scsi_errstat;
898 
899 		CAM_DEBUG(periph->path, CAM_DEBUG_TRACE,
900 		    ("saioctl: MTIOCERRSTAT\n"));
901 
902 		bzero(sep, sizeof(*sep));
903 		sep->io_resid = softc->last_io_resid;
904 		bcopy((caddr_t) &softc->last_io_sense, sep->io_sense,
905 		    sizeof (sep->io_sense));
906 		bcopy((caddr_t) &softc->last_io_cdb, sep->io_cdb,
907 		    sizeof (sep->io_cdb));
908 		sep->ctl_resid = softc->last_ctl_resid;
909 		bcopy((caddr_t) &softc->last_ctl_sense, sep->ctl_sense,
910 		    sizeof (sep->ctl_sense));
911 		bcopy((caddr_t) &softc->last_ctl_cdb, sep->ctl_cdb,
912 		    sizeof (sep->ctl_cdb));
913 
914 		if (SA_IS_CTRL(dev) == 0 || didlockperiph)
915 			bzero((caddr_t) &softc->errinfo,
916 			    sizeof (softc->errinfo));
917 		error = 0;
918 		break;
919 	}
920 	case MTIOCTOP:
921 	{
922 		struct mtop *mt;
923 		int    count;
924 
925 		mt = (struct mtop *)arg;
926 
927 		CAM_DEBUG(periph->path, CAM_DEBUG_TRACE,
928 			 ("saioctl: op=0x%x count=0x%x\n",
929 			  mt->mt_op, mt->mt_count));
930 
931 		count = mt->mt_count;
932 		switch (mt->mt_op) {
933 		case MTWEOF:	/* write an end-of-file marker */
934 			/* XXXX: NEED TO CLEAR SA_TAPE_WRITTEN */
935 			error = sawritefilemarks(periph, count, FALSE);
936 			break;
937 		case MTWSS:	/* write a setmark */
938 			error = sawritefilemarks(periph, count, TRUE);
939 			break;
940 		case MTBSR:	/* backward space record */
941 		case MTFSR:	/* forward space record */
942 		case MTBSF:	/* backward space file */
943 		case MTFSF:	/* forward space file */
944 		case MTBSS:	/* backward space setmark */
945 		case MTFSS:	/* forward space setmark */
946 		case MTEOD:	/* space to end of recorded medium */
947 		{
948 			int nmarks;
949 
950 			spaceop = SS_FILEMARKS;
951 			nmarks = softc->filemarks;
952 			error = sacheckeod(periph);
953 			if (error) {
954 				xpt_print_path(periph->path);
955 				printf("EOD check prior to spacing failed\n");
956 				softc->flags |= SA_FLAG_EIO_PENDING;
957 				break;
958 			}
959 			nmarks -= softc->filemarks;
960 			switch(mt->mt_op) {
961 			case MTBSR:
962 				count = -count;
963 				/* FALLTHROUGH */
964 			case MTFSR:
965 				spaceop = SS_BLOCKS;
966 				break;
967 			case MTBSF:
968 				count = -count;
969 				/* FALLTHROUGH */
970 			case MTFSF:
971 				break;
972 			case MTBSS:
973 				count = -count;
974 				/* FALLTHROUGH */
975 			case MTFSS:
976 				spaceop = SS_SETMARKS;
977 				break;
978 			case MTEOD:
979 				spaceop = SS_EOD;
980 				count = 0;
981 				nmarks = 0;
982 				break;
983 			default:
984 				error = EINVAL;
985 				break;
986 			}
987 			if (error)
988 				break;
989 
990 			nmarks = softc->filemarks;
991 			/*
992 			 * XXX: Why are we checking again?
993 			 */
994 			error = sacheckeod(periph);
995 			if (error)
996 				break;
997 			nmarks -= softc->filemarks;
998 			error = saspace(periph, count - nmarks, spaceop);
999 			/*
1000 			 * At this point, clear that we've written the tape
1001 			 * and that we've written any filemarks. We really
1002 			 * don't know what the applications wishes to do next-
1003 			 * the sacheckeod's will make sure we terminated the
1004 			 * tape correctly if we'd been writing, but the next
1005 			 * action the user application takes will set again
1006 			 * whether we need to write filemarks.
1007 			 */
1008 			softc->flags &=
1009 			    ~(SA_FLAG_TAPE_WRITTEN|SA_FLAG_TAPE_FROZEN);
1010 			softc->filemarks = 0;
1011 			break;
1012 		}
1013 		case MTREW:	/* rewind */
1014 			(void) sacheckeod(periph);
1015 			error = sarewind(periph);
1016 			/* see above */
1017 			softc->flags &=
1018 			    ~(SA_FLAG_TAPE_WRITTEN|SA_FLAG_TAPE_FROZEN);
1019 			softc->filemarks = 0;
1020 			break;
1021 		case MTERASE:	/* erase */
1022 			error = saerase(periph, count);
1023 			softc->flags &=
1024 			    ~(SA_FLAG_TAPE_WRITTEN|SA_FLAG_TAPE_FROZEN);
1025 			break;
1026 		case MTRETENS:	/* re-tension tape */
1027 			error = saretension(periph);
1028 			softc->flags &=
1029 			    ~(SA_FLAG_TAPE_WRITTEN|SA_FLAG_TAPE_FROZEN);
1030 			break;
1031 		case MTOFFL:	/* rewind and put the drive offline */
1032 
1033 			(void) sacheckeod(periph);
1034 			/* see above */
1035 			softc->flags &= ~SA_FLAG_TAPE_WRITTEN;
1036 			softc->filemarks = 0;
1037 
1038 			error = sarewind(periph);
1039 			/* clear the frozen flag anyway */
1040 			softc->flags &= ~SA_FLAG_TAPE_FROZEN;
1041 
1042 			/*
1043 			 * Be sure to allow media removal before ejecting.
1044 			 */
1045 
1046 			saprevent(periph, PR_ALLOW);
1047 			if (error == 0) {
1048 				error = saloadunload(periph, FALSE);
1049 				if (error == 0) {
1050 					softc->flags &= ~SA_FLAG_TAPE_MOUNTED;
1051 				}
1052 			}
1053 			break;
1054 
1055 		case MTNOP:	/* no operation, sets status only */
1056 		case MTCACHE:	/* enable controller cache */
1057 		case MTNOCACHE:	/* disable controller cache */
1058 			error = 0;
1059 			break;
1060 
1061 		case MTSETBSIZ:	/* Set block size for device */
1062 
1063 			error = sasetparams(periph, SA_PARAM_BLOCKSIZE, count,
1064 					    0, 0, 0);
1065 			if (error == 0) {
1066 				softc->last_media_blksize =
1067 				    softc->media_blksize;
1068 				softc->media_blksize = count;
1069 				if (count) {
1070 					softc->flags |= SA_FLAG_FIXED;
1071 					if (powerof2(count)) {
1072 						softc->blk_shift =
1073 						    ffs(count) - 1;
1074 						softc->blk_mask = count - 1;
1075 					} else {
1076 						softc->blk_mask = ~0;
1077 						softc->blk_shift = 0;
1078 					}
1079 					/*
1080 					 * Make the user's desire 'persistent'.
1081 					 */
1082 					softc->quirks &= ~SA_QUIRK_VARIABLE;
1083 					softc->quirks |= SA_QUIRK_FIXED;
1084 				} else {
1085 					softc->flags &= ~SA_FLAG_FIXED;
1086 					if (softc->max_blk == 0) {
1087 						softc->max_blk = ~0;
1088 					}
1089 					softc->blk_shift = 0;
1090 					if (softc->blk_gran != 0) {
1091 						softc->blk_mask =
1092 						    softc->blk_gran - 1;
1093 					} else {
1094 						softc->blk_mask = 0;
1095 					}
1096 					/*
1097 					 * Make the user's desire 'persistent'.
1098 					 */
1099 					softc->quirks |= SA_QUIRK_VARIABLE;
1100 					softc->quirks &= ~SA_QUIRK_FIXED;
1101 				}
1102 			}
1103 			break;
1104 		case MTSETDNSTY:	/* Set density for device and mode */
1105 			if (count > UCHAR_MAX) {
1106 				error = EINVAL;
1107 				break;
1108 			} else {
1109 				error = sasetparams(periph, SA_PARAM_DENSITY,
1110 						    0, count, 0, 0);
1111 			}
1112 			break;
1113 		case MTCOMP:	/* enable compression */
1114 			/*
1115 			 * Some devices don't support compression, and
1116 			 * don't like it if you ask them for the
1117 			 * compression page.
1118 			 */
1119 			if ((softc->quirks & SA_QUIRK_NOCOMP) ||
1120 			    (softc->flags & SA_FLAG_COMP_UNSUPP)) {
1121 				error = ENODEV;
1122 				break;
1123 			}
1124 			error = sasetparams(periph, SA_PARAM_COMPRESSION,
1125 			    0, 0, count, SF_NO_PRINT);
1126 			break;
1127 		default:
1128 			error = EINVAL;
1129 		}
1130 		break;
1131 	}
1132 	case MTIOCIEOT:
1133 	case MTIOCEEOT:
1134 		error = 0;
1135 		break;
1136 	case MTIOCRDSPOS:
1137 		error = sardpos(periph, 0, (u_int32_t *) arg);
1138 		break;
1139 	case MTIOCRDHPOS:
1140 		error = sardpos(periph, 1, (u_int32_t *) arg);
1141 		break;
1142 	case MTIOCSLOCATE:
1143 		error = sasetpos(periph, 0, (u_int32_t *) arg);
1144 		break;
1145 	case MTIOCHLOCATE:
1146 		error = sasetpos(periph, 1, (u_int32_t *) arg);
1147 		break;
1148 	case MTIOCGETEOTMODEL:
1149 		error = 0;
1150 		if (softc->quirks & SA_QUIRK_1FM)
1151 			mode = 1;
1152 		else
1153 			mode = 2;
1154 		*((u_int32_t *) arg) = mode;
1155 		break;
1156 	case MTIOCSETEOTMODEL:
1157 		error = 0;
1158 		switch (*((u_int32_t *) arg)) {
1159 		case 1:
1160 			softc->quirks &= ~SA_QUIRK_2FM;
1161 			softc->quirks |= SA_QUIRK_1FM;
1162 			break;
1163 		case 2:
1164 			softc->quirks &= ~SA_QUIRK_1FM;
1165 			softc->quirks |= SA_QUIRK_2FM;
1166 			break;
1167 		default:
1168 			error = EINVAL;
1169 			break;
1170 		}
1171 		break;
1172 	default:
1173 		error = cam_periph_ioctl(periph, cmd, arg, saerror);
1174 		break;
1175 	}
1176 	if (didlockperiph) {
1177 		cam_periph_unlock(periph);
1178 	}
1179 	return (error);
1180 }
1181 
1182 static void
1183 sainit(void)
1184 {
1185 	cam_status status;
1186 	struct cam_path *path;
1187 
1188 	/*
1189 	 * Create our extend array for storing the devices we attach to.
1190 	 */
1191 	saperiphs = cam_extend_new();
1192 	if (saperiphs == NULL) {
1193 		printf("sa: Failed to alloc extend array!\n");
1194 		return;
1195 	}
1196 
1197 	/*
1198 	 * Install a global async callback.
1199 	 */
1200 	status = xpt_create_path(&path, NULL, CAM_XPT_PATH_ID,
1201 				 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD);
1202 
1203 	if (status == CAM_REQ_CMP) {
1204 		/* Register the async callbacks of interrest */
1205 		struct ccb_setasync csa; /*
1206 					  * This is an immediate CCB,
1207 					  * so using the stack is OK
1208 					  */
1209 		xpt_setup_ccb(&csa.ccb_h, path, 5);
1210 		csa.ccb_h.func_code = XPT_SASYNC_CB;
1211 		csa.event_enable = AC_FOUND_DEVICE;
1212 		csa.callback = saasync;
1213 		csa.callback_arg = NULL;
1214 		xpt_action((union ccb *)&csa);
1215 		status = csa.ccb_h.status;
1216 		xpt_free_path(path);
1217 	}
1218 
1219 	if (status != CAM_REQ_CMP) {
1220 		printf("sa: Failed to attach master async callback "
1221 		       "due to status 0x%x!\n", status);
1222 	}
1223 }
1224 
1225 static void
1226 saoninvalidate(struct cam_periph *periph)
1227 {
1228 	struct sa_softc *softc;
1229 	struct buf *q_bp;
1230 	struct ccb_setasync csa;
1231 	int s;
1232 
1233 	softc = (struct sa_softc *)periph->softc;
1234 
1235 	/*
1236 	 * De-register any async callbacks.
1237 	 */
1238 	xpt_setup_ccb(&csa.ccb_h, periph->path,
1239 		      /* priority */ 5);
1240 	csa.ccb_h.func_code = XPT_SASYNC_CB;
1241 	csa.event_enable = 0;
1242 	csa.callback = saasync;
1243 	csa.callback_arg = periph;
1244 	xpt_action((union ccb *)&csa);
1245 
1246 	softc->flags |= SA_FLAG_INVALID;
1247 
1248 	/*
1249 	 * Although the oninvalidate() routines are always called at
1250 	 * splsoftcam, we need to be at splbio() here to keep the buffer
1251 	 * queue from being modified while we traverse it.
1252 	 */
1253 	s = splbio();
1254 
1255 	/*
1256 	 * Return all queued I/O with ENXIO.
1257 	 * XXX Handle any transactions queued to the card
1258 	 *     with XPT_ABORT_CCB.
1259 	 */
1260 	while ((q_bp = bufq_first(&softc->buf_queue)) != NULL){
1261 		bufq_remove(&softc->buf_queue, q_bp);
1262 		q_bp->b_resid = q_bp->b_bcount;
1263 		q_bp->b_error = ENXIO;
1264 		q_bp->b_flags |= B_ERROR;
1265 		biodone(q_bp);
1266 	}
1267 	softc->queue_count = 0;
1268 	splx(s);
1269 
1270 	xpt_print_path(periph->path);
1271 	printf("lost device\n");
1272 
1273 }
1274 
1275 static void
1276 sacleanup(struct cam_periph *periph)
1277 {
1278 	struct sa_softc *softc;
1279 	int i;
1280 
1281 	softc = (struct sa_softc *)periph->softc;
1282 
1283 	devstat_remove_entry(&softc->device_stats);
1284 
1285 	destroy_dev(softc->devs.ctl_dev);
1286 	destroy_dev(softc->devs.r_dev);
1287 	destroy_dev(softc->devs.nr_dev);
1288 	destroy_dev(softc->devs.er_dev);
1289 
1290 	for (i = 0; i < SA_NUM_MODES; i++) {
1291 		destroy_dev(softc->devs.mode_devs[i].r_dev);
1292 		destroy_dev(softc->devs.mode_devs[i].nr_dev);
1293 		destroy_dev(softc->devs.mode_devs[i].er_dev);
1294 	}
1295 
1296 	cam_extend_release(saperiphs, periph->unit_number);
1297 	xpt_print_path(periph->path);
1298 	printf("removing device entry\n");
1299 	free(softc, M_DEVBUF);
1300 }
1301 
1302 static void
1303 saasync(void *callback_arg, u_int32_t code,
1304 	struct cam_path *path, void *arg)
1305 {
1306 	struct cam_periph *periph;
1307 
1308 	periph = (struct cam_periph *)callback_arg;
1309 	switch (code) {
1310 	case AC_FOUND_DEVICE:
1311 	{
1312 		struct ccb_getdev *cgd;
1313 		cam_status status;
1314 
1315 		cgd = (struct ccb_getdev *)arg;
1316 
1317 		if (SID_TYPE(&cgd->inq_data) != T_SEQUENTIAL)
1318 			break;
1319 
1320 		/*
1321 		 * Allocate a peripheral instance for
1322 		 * this device and start the probe
1323 		 * process.
1324 		 */
1325 		status = cam_periph_alloc(saregister, saoninvalidate,
1326 					  sacleanup, sastart,
1327 					  "sa", CAM_PERIPH_BIO, cgd->ccb_h.path,
1328 					  saasync, AC_FOUND_DEVICE, cgd);
1329 
1330 		if (status != CAM_REQ_CMP
1331 		 && status != CAM_REQ_INPROG)
1332 			printf("saasync: Unable to probe new device "
1333 				"due to status 0x%x\n", status);
1334 		break;
1335 	}
1336 	default:
1337 		cam_periph_async(periph, code, path, arg);
1338 		break;
1339 	}
1340 }
1341 
1342 static cam_status
1343 saregister(struct cam_periph *periph, void *arg)
1344 {
1345 	struct sa_softc *softc;
1346 	struct ccb_setasync csa;
1347 	struct ccb_getdev *cgd;
1348 	caddr_t match;
1349 	int i;
1350 
1351 	cgd = (struct ccb_getdev *)arg;
1352 	if (periph == NULL) {
1353 		printf("saregister: periph was NULL!!\n");
1354 		return (CAM_REQ_CMP_ERR);
1355 	}
1356 
1357 	if (cgd == NULL) {
1358 		printf("saregister: no getdev CCB, can't register device\n");
1359 		return (CAM_REQ_CMP_ERR);
1360 	}
1361 
1362 	softc = (struct sa_softc *)malloc(sizeof (*softc), M_DEVBUF, M_NOWAIT);
1363 	if (softc == NULL) {
1364 		printf("saregister: Unable to probe new device. "
1365 		       "Unable to allocate softc\n");
1366 		return (CAM_REQ_CMP_ERR);
1367 	}
1368 
1369 	bzero(softc, sizeof(*softc));
1370 	softc->scsi_rev = SID_ANSI_REV(&cgd->inq_data);
1371 	softc->state = SA_STATE_NORMAL;
1372 	softc->fileno = (daddr_t) -1;
1373 	softc->blkno = (daddr_t) -1;
1374 
1375 	bufq_init(&softc->buf_queue);
1376 	periph->softc = softc;
1377 	cam_extend_set(saperiphs, periph->unit_number, periph);
1378 
1379 	/*
1380 	 * See if this device has any quirks.
1381 	 */
1382 	match = cam_quirkmatch((caddr_t)&cgd->inq_data,
1383 			       (caddr_t)sa_quirk_table,
1384 			       sizeof(sa_quirk_table)/sizeof(*sa_quirk_table),
1385 			       sizeof(*sa_quirk_table), scsi_inquiry_match);
1386 
1387 	if (match != NULL) {
1388 		softc->quirks = ((struct sa_quirk_entry *)match)->quirks;
1389 		softc->last_media_blksize =
1390 		    ((struct sa_quirk_entry *)match)->prefblk;
1391 #ifdef	CAMDEBUG
1392 		xpt_print_path(periph->path);
1393 		printf("found quirk entry %d\n", (int)
1394 		    (((struct sa_quirk_entry *) match) - sa_quirk_table));
1395 #endif
1396 	} else
1397 		softc->quirks = SA_QUIRK_NONE;
1398 
1399 	/*
1400  	 * The SA driver supports a blocksize, but we don't know the
1401 	 * blocksize until we media is inserted.  So, set a flag to
1402 	 * indicate that the blocksize is unavailable right now.
1403 	 */
1404 	devstat_add_entry(&softc->device_stats, "sa", periph->unit_number, 0,
1405 	    DEVSTAT_BS_UNAVAILABLE, SID_TYPE(&cgd->inq_data) |
1406 	    DEVSTAT_TYPE_IF_SCSI, DEVSTAT_PRIORITY_TAPE);
1407 
1408 	softc->devs.ctl_dev = make_dev(&sa_cdevsw, SAMINOR(SA_CTLDEV,
1409 	    periph->unit_number, 0, SA_ATYPE_R), UID_ROOT, GID_OPERATOR,
1410 	    0660, "r%s%d.ctl", periph->periph_name, periph->unit_number);
1411 
1412 	softc->devs.r_dev = make_dev(&sa_cdevsw, SAMINOR(SA_NOT_CTLDEV,
1413 	    periph->unit_number, 0, SA_ATYPE_R), UID_ROOT, GID_OPERATOR,
1414 	    0660, "r%s%d", periph->periph_name, periph->unit_number);
1415 
1416 	softc->devs.nr_dev = make_dev(&sa_cdevsw, SAMINOR(SA_NOT_CTLDEV,
1417 	    periph->unit_number, 0, SA_ATYPE_NR), UID_ROOT, GID_OPERATOR,
1418 	    0660, "nr%s%d", periph->periph_name, periph->unit_number);
1419 
1420 	softc->devs.er_dev = make_dev(&sa_cdevsw, SAMINOR(SA_NOT_CTLDEV,
1421 	    periph->unit_number, 0, SA_ATYPE_ER), UID_ROOT, GID_OPERATOR,
1422 	    0660, "er%s%d", periph->periph_name, periph->unit_number);
1423 
1424 	for (i = 0; i < SA_NUM_MODES; i++) {
1425 
1426 		softc->devs.mode_devs[i].r_dev = make_dev(&sa_cdevsw,
1427 		    SAMINOR(SA_NOT_CTLDEV, periph->unit_number, i, SA_ATYPE_R),
1428 		    UID_ROOT, GID_OPERATOR, 0660, "r%s%d.%d",
1429 		    periph->periph_name, periph->unit_number, i);
1430 
1431 		softc->devs.mode_devs[i].nr_dev = make_dev(&sa_cdevsw,
1432 		    SAMINOR(SA_NOT_CTLDEV, periph->unit_number, i, SA_ATYPE_NR),
1433 		    UID_ROOT, GID_OPERATOR, 0660, "nr%s%d.%d",
1434 		    periph->periph_name, periph->unit_number, i);
1435 
1436 
1437 		softc->devs.mode_devs[i].er_dev = make_dev(&sa_cdevsw,
1438 		    SAMINOR(SA_NOT_CTLDEV, periph->unit_number, i, SA_ATYPE_ER),
1439 		    UID_ROOT, GID_OPERATOR, 0660, "er%s%d.%d",
1440 		    periph->periph_name, periph->unit_number, i);
1441 	}
1442 
1443 	/*
1444 	 * Add an async callback so that we get
1445 	 * notified if this device goes away.
1446 	 */
1447 	xpt_setup_ccb(&csa.ccb_h, periph->path, /* priority */ 5);
1448 	csa.ccb_h.func_code = XPT_SASYNC_CB;
1449 	csa.event_enable = AC_LOST_DEVICE;
1450 	csa.callback = saasync;
1451 	csa.callback_arg = periph;
1452 	xpt_action((union ccb *)&csa);
1453 
1454 	xpt_announce_periph(periph, NULL);
1455 
1456 	return (CAM_REQ_CMP);
1457 }
1458 
1459 static void
1460 sastart(struct cam_periph *periph, union ccb *start_ccb)
1461 {
1462 	struct sa_softc *softc;
1463 
1464 	softc = (struct sa_softc *)periph->softc;
1465 
1466 	CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("sastart"));
1467 
1468 	switch (softc->state) {
1469 	case SA_STATE_NORMAL:
1470 	{
1471 		/* Pull a buffer from the queue and get going on it */
1472 		struct buf *bp;
1473 		int s;
1474 
1475 		/*
1476 		 * See if there is a buf with work for us to do..
1477 		 */
1478 		s = splbio();
1479 		bp = bufq_first(&softc->buf_queue);
1480 		if (periph->immediate_priority <= periph->pinfo.priority) {
1481 			CAM_DEBUG_PRINT(CAM_DEBUG_SUBTRACE,
1482 					("queuing for immediate ccb\n"));
1483 			start_ccb->ccb_h.ccb_type = SA_CCB_WAITING;
1484 			SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h,
1485 					  periph_links.sle);
1486 			periph->immediate_priority = CAM_PRIORITY_NONE;
1487 			splx(s);
1488 			wakeup(&periph->ccb_list);
1489 		} else if (bp == NULL) {
1490 			splx(s);
1491 			xpt_release_ccb(start_ccb);
1492 		} else if ((softc->flags & SA_FLAG_ERR_PENDING) != 0) {
1493 			struct buf *done_bp;
1494 			softc->queue_count--;
1495 			bufq_remove(&softc->buf_queue, bp);
1496 			bp->b_resid = bp->b_bcount;
1497 			bp->b_flags |= B_ERROR;
1498 			if ((softc->flags & SA_FLAG_EOM_PENDING) != 0) {
1499 				if ((bp->b_flags & B_READ) == 0)
1500 					bp->b_error = ENOSPC;
1501 				else
1502 					bp->b_error = EIO;
1503 			}
1504 			if ((softc->flags & SA_FLAG_EOF_PENDING) != 0) {
1505 				bp->b_error = EIO;
1506 			}
1507 			if ((softc->flags & SA_FLAG_EIO_PENDING) != 0) {
1508 				bp->b_error = EIO;
1509 			}
1510 			done_bp = bp;
1511 			bp = bufq_first(&softc->buf_queue);
1512 			/*
1513 			 * Only if we have no other buffers queued up
1514 			 * do we clear the pending error flag.
1515 			 */
1516 			if (bp == NULL)
1517 				softc->flags &= ~SA_FLAG_ERR_PENDING;
1518 			CAM_DEBUG(periph->path, CAM_DEBUG_INFO,
1519 			    ("sastart- ERR_PENDING now 0x%x, bp is %sNULL, "
1520 			    "%d more buffers queued up\n",
1521 			    (softc->flags & SA_FLAG_ERR_PENDING),
1522 			    (bp != NULL)? "not " : " ", softc->queue_count));
1523 			splx(s);
1524 			xpt_release_ccb(start_ccb);
1525 			biodone(done_bp);
1526 		} else {
1527 			u_int32_t length;
1528 
1529 			bufq_remove(&softc->buf_queue, bp);
1530 			softc->queue_count--;
1531 
1532 			if ((softc->flags & SA_FLAG_FIXED) != 0) {
1533 				if (softc->blk_shift != 0) {
1534 					length =
1535 					    bp->b_bcount >> softc->blk_shift;
1536 				} else if (softc->media_blksize != 0) {
1537 					length =
1538 					    bp->b_bcount / softc->media_blksize;
1539 				} else {
1540 					bp->b_error = EIO;
1541 					xpt_print_path(periph->path);
1542 					printf("zero blocksize for "
1543 					    "FIXED length writes?\n");
1544 					splx(s);
1545 					biodone(bp);
1546 					break;
1547 				}
1548 				CAM_DEBUG(periph->path, CAM_DEBUG_INFO,
1549 				    ("Fixed Record Count is %d\n", length));
1550 			} else {
1551 				length = bp->b_bcount;
1552 				CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_INFO,
1553 				    ("Variable Record Count is %d\n", length));
1554 			}
1555 			devstat_start_transaction(&softc->device_stats);
1556 			/*
1557 			 * Some people have theorized that we should
1558 			 * suppress illegal length indication if we are
1559 			 * running in variable block mode so that we don't
1560 			 * have to request sense every time our requested
1561 			 * block size is larger than the written block.
1562 			 * The residual information from the ccb allows
1563 			 * us to identify this situation anyway.  The only
1564 			 * problem with this is that we will not get
1565 			 * information about blocks that are larger than
1566 			 * our read buffer unless we set the block size
1567 			 * in the mode page to something other than 0.
1568 			 *
1569 			 * I believe that this is a non-issue. If user apps
1570 			 * don't adjust their read size to match our record
1571 			 * size, that's just life. Anyway, the typical usage
1572 			 * would be to issue, e.g., 64KB reads and occasionally
1573 			 * have to do deal with 512 byte or 1KB intermediate
1574 			 * records.
1575 			 */
1576 			softc->dsreg = (bp->b_flags & B_READ)?
1577 			    MTIO_DSREG_RD : MTIO_DSREG_WR;
1578 			scsi_sa_read_write(&start_ccb->csio, 0, sadone,
1579 			    MSG_SIMPLE_Q_TAG, (bp->b_flags & B_READ) != 0,
1580 			    FALSE, (softc->flags & SA_FLAG_FIXED) != 0,
1581 			    length, bp->b_data, bp->b_bcount, SSD_FULL_SIZE,
1582 			    120 * 60 * 1000);
1583 			start_ccb->ccb_h.ccb_type = SA_CCB_BUFFER_IO;
1584 			start_ccb->ccb_h.ccb_bp = bp;
1585 			bp = bufq_first(&softc->buf_queue);
1586 			splx(s);
1587 			xpt_action(start_ccb);
1588 		}
1589 
1590 		if (bp != NULL) {
1591 			/* Have more work to do, so ensure we stay scheduled */
1592 			xpt_schedule(periph, 1);
1593 		}
1594 		break;
1595 	}
1596 	case SA_STATE_ABNORMAL:
1597 	default:
1598 		panic("state 0x%x in sastart", softc->state);
1599 		break;
1600 	}
1601 }
1602 
1603 
1604 static void
1605 sadone(struct cam_periph *periph, union ccb *done_ccb)
1606 {
1607 	struct sa_softc *softc;
1608 	struct ccb_scsiio *csio;
1609 
1610 	softc = (struct sa_softc *)periph->softc;
1611 	csio = &done_ccb->csio;
1612 	switch (csio->ccb_h.ccb_type) {
1613 	case SA_CCB_BUFFER_IO:
1614 	{
1615 		struct buf *bp;
1616 		int error;
1617 
1618 		softc->dsreg = MTIO_DSREG_REST;
1619 		bp = (struct buf *)done_ccb->ccb_h.ccb_bp;
1620 		error = 0;
1621 		if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1622 			if ((error = saerror(done_ccb, 0, 0)) == ERESTART) {
1623 				/*
1624 				 * A retry was scheduled, so just return.
1625 				 */
1626 				return;
1627 			}
1628 		}
1629 
1630 		if (error == EIO) {
1631 			int s;
1632 			struct buf *q_bp;
1633 
1634 			/*
1635 			 * Catastrophic error. Mark the tape as frozen
1636 			 * (we no longer know tape position).
1637 			 *
1638 			 * Return all queued I/O with EIO, and unfreeze
1639 			 * our queue so that future transactions that
1640 			 * attempt to fix this problem can get to the
1641 			 * device.
1642 			 *
1643 			 */
1644 
1645 			s = splbio();
1646 			softc->flags |= SA_FLAG_TAPE_FROZEN;
1647 			while ((q_bp = bufq_first(&softc->buf_queue)) != NULL) {
1648 				bufq_remove(&softc->buf_queue, q_bp);
1649 				q_bp->b_resid = q_bp->b_bcount;
1650 				q_bp->b_error = EIO;
1651 				q_bp->b_flags |= B_ERROR;
1652 				biodone(q_bp);
1653 			}
1654 			splx(s);
1655 		}
1656 		if (error != 0) {
1657 			bp->b_resid = bp->b_bcount;
1658 			bp->b_error = error;
1659 			bp->b_flags |= B_ERROR;
1660 			/*
1661 			 * In the error case, position is updated in saerror.
1662 			 */
1663 		} else {
1664 			bp->b_resid = csio->resid;
1665 			bp->b_error = 0;
1666 			if (csio->resid != 0) {
1667 				bp->b_flags |= B_ERROR;
1668 			}
1669 			if ((bp->b_flags & B_READ) == 0) {
1670 				softc->flags |= SA_FLAG_TAPE_WRITTEN;
1671 				softc->filemarks = 0;
1672 			}
1673 			if (softc->blkno != (daddr_t) -1) {
1674 				if ((softc->flags & SA_FLAG_FIXED) != 0) {
1675 					u_int32_t l;
1676 					if (softc->blk_shift != 0) {
1677 						l = bp->b_bcount >>
1678 							softc->blk_shift;
1679 					} else {
1680 						l = bp->b_bcount /
1681 							softc->media_blksize;
1682 					}
1683 					softc->blkno += (daddr_t) l;
1684 				} else {
1685 					softc->blkno++;
1686 				}
1687 			}
1688 		}
1689 		/*
1690 		 * If we had an error (immediate or pending),
1691 		 * release the device queue now.
1692 		 */
1693 		if (error || (softc->flags & SA_FLAG_ERR_PENDING))
1694 			cam_release_devq(done_ccb->ccb_h.path, 0, 0, 0, 0);
1695 #ifdef	CAMDEBUG
1696 		if (error || bp->b_resid) {
1697 			CAM_DEBUG(periph->path, CAM_DEBUG_INFO,
1698 			    	  ("error %d resid %ld count %ld\n", error,
1699 				  bp->b_resid, bp->b_bcount));
1700 		}
1701 #endif
1702 		devstat_end_transaction_buf(&softc->device_stats, bp);
1703 		biodone(bp);
1704 		break;
1705 	}
1706 	case SA_CCB_WAITING:
1707 	{
1708 		/* Caller will release the CCB */
1709 		wakeup(&done_ccb->ccb_h.cbfcnp);
1710 		return;
1711 	}
1712 	}
1713 	xpt_release_ccb(done_ccb);
1714 }
1715 
1716 /*
1717  * Mount the tape (make sure it's ready for I/O).
1718  */
1719 static int
1720 samount(struct cam_periph *periph, int oflags, dev_t dev)
1721 {
1722 	struct	sa_softc *softc;
1723 	union	ccb *ccb;
1724 	int	error;
1725 
1726 	/*
1727 	 * oflags can be checked for 'kind' of open (read-only check) - later
1728 	 * dev can be checked for a control-mode or compression open - later
1729 	 */
1730 	UNUSED_PARAMETER(oflags);
1731 	UNUSED_PARAMETER(dev);
1732 
1733 
1734 	softc = (struct sa_softc *)periph->softc;
1735 
1736 	/*
1737 	 * This should determine if something has happend since the last
1738 	 * open/mount that would invalidate the mount. We do *not* want
1739 	 * to retry this command- we just want the status. But we only
1740 	 * do this if we're mounted already- if we're not mounted,
1741 	 * we don't care about the unit read state and can instead use
1742 	 * this opportunity to attempt to reserve the tape unit.
1743 	 */
1744 
1745 	if (softc->flags & SA_FLAG_TAPE_MOUNTED) {
1746 		ccb = cam_periph_getccb(periph, 1);
1747 		scsi_test_unit_ready(&ccb->csio, 0, sadone,
1748 		    MSG_SIMPLE_Q_TAG, SSD_FULL_SIZE, 5 * 60 * 1000);
1749 		error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT,
1750 		    &softc->device_stats);
1751 		QFRLS(ccb);
1752 		if (error == ENXIO) {
1753 			softc->flags &= ~SA_FLAG_TAPE_MOUNTED;
1754 			scsi_test_unit_ready(&ccb->csio, 0, sadone,
1755 			    MSG_SIMPLE_Q_TAG, SSD_FULL_SIZE, 5 * 60 * 1000);
1756 			error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT,
1757 			    &softc->device_stats);
1758 			QFRLS(ccb);
1759 		} else if (error) {
1760 			/*
1761 			 * We don't need to freeze the tape because we
1762 			 * will now attempt to rewind/load it.
1763 			 */
1764 			softc->flags &= ~SA_FLAG_TAPE_MOUNTED;
1765 			if (CAM_DEBUGGED(ccb->ccb_h.path, CAM_DEBUG_INFO)) {
1766 				xpt_print_path(ccb->ccb_h.path);
1767 				printf("error %d on TUR in samount\n", error);
1768 			}
1769 		}
1770 	} else {
1771 		error = sareservereleaseunit(periph, TRUE);
1772 		if (error) {
1773 			return (error);
1774 		}
1775 		ccb = cam_periph_getccb(periph, 1);
1776 		scsi_test_unit_ready(&ccb->csio, 0, sadone,
1777 		    MSG_SIMPLE_Q_TAG, SSD_FULL_SIZE, 5 * 60 * 1000);
1778 		error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT,
1779 		    &softc->device_stats);
1780 		QFRLS(ccb);
1781 	}
1782 
1783 	if ((softc->flags & SA_FLAG_TAPE_MOUNTED) == 0) {
1784 		struct scsi_read_block_limits_data *rblim = NULL;
1785 		int comp_enabled, comp_supported;
1786 		u_int8_t write_protect, guessing = 0;
1787 
1788 		/*
1789 		 * Clear out old state.
1790 		 */
1791 		softc->flags &= ~(SA_FLAG_TAPE_WP|SA_FLAG_TAPE_WRITTEN|
1792 				  SA_FLAG_ERR_PENDING|SA_FLAG_COMP_ENABLED|
1793 				  SA_FLAG_COMP_SUPP|SA_FLAG_COMP_UNSUPP);
1794 		softc->filemarks = 0;
1795 
1796 		/*
1797 		 * *Very* first off, make sure we're loaded to BOT.
1798 		 */
1799 		scsi_load_unload(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG, FALSE,
1800 		    FALSE, FALSE, 1, SSD_FULL_SIZE, REWIND_TIMEOUT);
1801 		error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT,
1802 		    &softc->device_stats);
1803 		QFRLS(ccb);
1804 
1805 		/*
1806 		 * In case this doesn't work, do a REWIND instead
1807 		 */
1808 		if (error) {
1809 			scsi_rewind(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG,
1810 			    FALSE, SSD_FULL_SIZE, REWIND_TIMEOUT);
1811 			error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT,
1812 				&softc->device_stats);
1813 			QFRLS(ccb);
1814 		}
1815 		if (error) {
1816 			xpt_release_ccb(ccb);
1817 			goto exit;
1818 		}
1819 
1820 		/*
1821 		 * Do a dummy test read to force access to the
1822 		 * media so that the drive will really know what's
1823 		 * there. We actually don't really care what the
1824 		 * blocksize on tape is and don't expect to really
1825 		 * read a full record.
1826 		 */
1827 		rblim = (struct  scsi_read_block_limits_data *)
1828 		    malloc(8192, M_TEMP, M_WAITOK);
1829 		if (rblim == NULL) {
1830 			xpt_print_path(ccb->ccb_h.path);
1831 			printf("no memory for test read\n");
1832 			xpt_release_ccb(ccb);
1833 			error = ENOMEM;
1834 			goto exit;
1835 		}
1836 
1837 		if ((softc->quirks & SA_QUIRK_NODREAD) == 0) {
1838 			scsi_sa_read_write(&ccb->csio, 0, sadone,
1839 			    MSG_SIMPLE_Q_TAG, 1, FALSE, 0, 8192,
1840 			    (void *) rblim, 8192, SSD_FULL_SIZE,
1841 			    120 * 60 * 1000);
1842 			(void) cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT,
1843 			    &softc->device_stats);
1844 			QFRLS(ccb);
1845 			scsi_rewind(&ccb->csio, 1, sadone, MSG_SIMPLE_Q_TAG,
1846 			    FALSE, SSD_FULL_SIZE, REWIND_TIMEOUT);
1847 			error = cam_periph_runccb(ccb, saerror, 0,
1848 			    SF_NO_PRINT | SF_RETRY_SELTO | SF_RETRY_UA,
1849 			    &softc->device_stats);
1850 			QFRLS(ccb);
1851 			if (error) {
1852 				xpt_print_path(ccb->ccb_h.path);
1853 				printf("unable to rewind after test read\n");
1854 				xpt_release_ccb(ccb);
1855 				goto exit;
1856 			}
1857 		}
1858 
1859 		/*
1860 		 * Next off, determine block limits.
1861 		 */
1862 		scsi_read_block_limits(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG,
1863 		    rblim, SSD_FULL_SIZE, 5000);
1864 
1865 		error = cam_periph_runccb(ccb, saerror, 0,
1866 		    SF_NO_PRINT | SF_RETRY_UA | SF_RETRY_SELTO,
1867 		    &softc->device_stats);
1868 		QFRLS(ccb);
1869 		xpt_release_ccb(ccb);
1870 
1871 		if (error != 0) {
1872 			/*
1873 			 * If it's less than SCSI-2, READ BLOCK LIMITS is not
1874 			 * a MANDATORY command. Anyway- it doesn't matter-
1875 			 * we can proceed anyway.
1876 			 */
1877 			softc->blk_gran = 0;
1878 			softc->max_blk = ~0;
1879 			softc->min_blk = 0;
1880 		} else {
1881 			if (softc->scsi_rev >= SCSI_REV_3) {
1882 				softc->blk_gran = RBL_GRAN(rblim);
1883 			} else {
1884 				softc->blk_gran = 0;
1885 			}
1886 			/*
1887 			 * We take max_blk == min_blk to mean a default to
1888 			 * fixed mode- but note that whatever we get out of
1889 			 * sagetparams below will actually determine whether
1890 			 * we are actually *in* fixed mode.
1891 			 */
1892 			softc->max_blk = scsi_3btoul(rblim->maximum);
1893 			softc->min_blk = scsi_2btoul(rblim->minimum);
1894 
1895 
1896 		}
1897 		/*
1898 		 * Next, perform a mode sense to determine
1899 		 * current density, blocksize, compression etc.
1900 		 */
1901 		error = sagetparams(periph, SA_PARAM_ALL,
1902 				    &softc->media_blksize,
1903 				    &softc->media_density,
1904 				    &softc->media_numblks,
1905 				    &softc->buffer_mode, &write_protect,
1906 				    &softc->speed, &comp_supported,
1907 				    &comp_enabled, &softc->comp_algorithm,
1908 				    NULL);
1909 
1910 		if (error != 0) {
1911 			/*
1912 			 * We could work a little harder here. We could
1913 			 * adjust our attempts to get information. It
1914 			 * might be an ancient tape drive. If someone
1915 			 * nudges us, we'll do that.
1916 			 */
1917 			goto exit;
1918 		}
1919 
1920 		/*
1921 		 * If no quirk has determined that this is a device that is
1922 		 * preferred to be in fixed or variable mode, now is the time
1923 		 * to find out.
1924 	 	 */
1925 		if ((softc->quirks & (SA_QUIRK_FIXED|SA_QUIRK_VARIABLE)) == 0) {
1926 			guessing = 1;
1927 			/*
1928 			 * This could be expensive to find out. Luckily we
1929 			 * only need to do this once. If we start out in
1930 			 * 'default' mode, try and set ourselves to one
1931 			 * of the densities that would determine a wad
1932 			 * of other stuff. Go from highest to lowest.
1933 			 */
1934 			if (softc->media_density == SCSI_DEFAULT_DENSITY) {
1935 				int i;
1936 				static u_int8_t ctry[] = {
1937 					SCSI_DENSITY_HALFINCH_PE,
1938 					SCSI_DENSITY_HALFINCH_6250C,
1939 					SCSI_DENSITY_HALFINCH_6250,
1940 					SCSI_DENSITY_HALFINCH_1600,
1941 					SCSI_DENSITY_HALFINCH_800,
1942 					SCSI_DENSITY_QIC_4GB,
1943 					SCSI_DENSITY_QIC_2GB,
1944 					SCSI_DENSITY_QIC_525_320,
1945 					SCSI_DENSITY_QIC_150,
1946 					SCSI_DENSITY_QIC_120,
1947 					SCSI_DENSITY_QIC_24,
1948 					SCSI_DENSITY_QIC_11_9TRK,
1949 					SCSI_DENSITY_QIC_11_4TRK,
1950 					SCSI_DENSITY_QIC_1320,
1951 					SCSI_DENSITY_QIC_3080,
1952 					0
1953 				};
1954 				for (i = 0; ctry[i]; i++) {
1955 					error = sasetparams(periph,
1956 					    SA_PARAM_DENSITY, 0, ctry[i],
1957 					    0, SF_NO_PRINT);
1958 					if (error == 0) {
1959 						softc->media_density = ctry[i];
1960 						break;
1961 					}
1962 				}
1963 			}
1964 			switch (softc->media_density) {
1965 			case SCSI_DENSITY_QIC_11_4TRK:
1966 			case SCSI_DENSITY_QIC_11_9TRK:
1967 			case SCSI_DENSITY_QIC_24:
1968 			case SCSI_DENSITY_QIC_120:
1969 			case SCSI_DENSITY_QIC_150:
1970 			case SCSI_DENSITY_QIC_1320:
1971 			case SCSI_DENSITY_QIC_3080:
1972 				softc->quirks &= ~SA_QUIRK_2FM;
1973 				softc->quirks |= SA_QUIRK_FIXED|SA_QUIRK_1FM;
1974 				softc->last_media_blksize = 512;
1975 				break;
1976 			case SCSI_DENSITY_QIC_4GB:
1977 			case SCSI_DENSITY_QIC_2GB:
1978 			case SCSI_DENSITY_QIC_525_320:
1979 				softc->quirks &= ~SA_QUIRK_2FM;
1980 				softc->quirks |= SA_QUIRK_FIXED|SA_QUIRK_1FM;
1981 				softc->last_media_blksize = 1024;
1982 				break;
1983 			default:
1984 				softc->last_media_blksize =
1985 				    softc->media_blksize;
1986 				softc->quirks |= SA_QUIRK_VARIABLE;
1987 				break;
1988 			}
1989 		}
1990 
1991 		/*
1992 		 * If no quirk has determined that this is a device that needs
1993 		 * to have 2 Filemarks at EOD, now is the time to find out.
1994 		 */
1995 
1996 		if ((softc->quirks & SA_QUIRK_2FM) == 0) {
1997 			switch (softc->media_density) {
1998 			case SCSI_DENSITY_HALFINCH_800:
1999 			case SCSI_DENSITY_HALFINCH_1600:
2000 			case SCSI_DENSITY_HALFINCH_6250:
2001 			case SCSI_DENSITY_HALFINCH_6250C:
2002 			case SCSI_DENSITY_HALFINCH_PE:
2003 				softc->quirks &= ~SA_QUIRK_1FM;
2004 				softc->quirks |= SA_QUIRK_2FM;
2005 				break;
2006 			default:
2007 				break;
2008 			}
2009 		}
2010 
2011 		/*
2012 		 * Now validate that some info we got makes sense.
2013 		 */
2014 		if ((softc->max_blk < softc->media_blksize) ||
2015 		    (softc->min_blk > softc->media_blksize &&
2016 		    softc->media_blksize)) {
2017 			xpt_print_path(ccb->ccb_h.path);
2018 			printf("BLOCK LIMITS (%d..%d) could not match current "
2019 			    "block settings (%d)- adjusting\n", softc->min_blk,
2020 			    softc->max_blk, softc->media_blksize);
2021 			softc->max_blk = softc->min_blk =
2022 			    softc->media_blksize;
2023 		}
2024 
2025 		/*
2026 		 * Now put ourselves into the right frame of mind based
2027 		 * upon quirks...
2028 		 */
2029 tryagain:
2030 		/*
2031 		 * If we want to be in FIXED mode and our current blocksize
2032 		 * is not equal to our last blocksize (if nonzero), try and
2033 		 * set ourselves to this last blocksize (as the 'preferred'
2034 		 * block size).  The initial quirkmatch at registry sets the
2035 		 * initial 'last' blocksize. If, for whatever reason, this
2036 		 * 'last' blocksize is zero, set the blocksize to 512,
2037 		 * or min_blk if that's larger.
2038 		 */
2039 		if ((softc->quirks & SA_QUIRK_FIXED) &&
2040 		    (softc->media_blksize != softc->last_media_blksize)) {
2041 			softc->media_blksize = softc->last_media_blksize;
2042 			if (softc->media_blksize == 0) {
2043 				softc->media_blksize = 512;
2044 				if (softc->media_blksize < softc->min_blk) {
2045 					softc->media_blksize = softc->min_blk;
2046 				}
2047 			}
2048 			error = sasetparams(periph, SA_PARAM_BLOCKSIZE,
2049 			    softc->media_blksize, 0, 0, SF_NO_PRINT);
2050 			if (error) {
2051 				xpt_print_path(ccb->ccb_h.path);
2052 				printf("unable to set fixed blocksize to %d\n",
2053 				     softc->media_blksize);
2054 				goto exit;
2055 			}
2056 		}
2057 
2058 		if ((softc->quirks & SA_QUIRK_VARIABLE) &&
2059 		    (softc->media_blksize != 0)) {
2060 			softc->last_media_blksize = softc->media_blksize;
2061 			softc->media_blksize = 0;
2062 			error = sasetparams(periph, SA_PARAM_BLOCKSIZE,
2063 			    0, 0, 0, SF_NO_PRINT);
2064 			if (error) {
2065 				/*
2066 				 * If this fails and we were guessing, just
2067 				 * assume that we got it wrong and go try
2068 				 * fixed block mode. Don't even check against
2069 				 * density code at this point.
2070 				 */
2071 				if (guessing) {
2072 					softc->quirks &= ~SA_QUIRK_VARIABLE;
2073 					softc->quirks |= SA_QUIRK_FIXED;
2074 					if (softc->last_media_blksize == 0)
2075 						softc->last_media_blksize = 512;
2076 					goto tryagain;
2077 				}
2078 				xpt_print_path(ccb->ccb_h.path);
2079 				printf("unable to set variable blocksize\n");
2080 				goto exit;
2081 			}
2082 		}
2083 
2084 		/*
2085 		 * Now that we have the current block size,
2086 		 * set up some parameters for sastart's usage.
2087 		 */
2088 		if (softc->media_blksize) {
2089 			softc->flags |= SA_FLAG_FIXED;
2090 			if (powerof2(softc->media_blksize)) {
2091 				softc->blk_shift =
2092 				    ffs(softc->media_blksize) - 1;
2093 				softc->blk_mask = softc->media_blksize - 1;
2094 			} else {
2095 				softc->blk_mask = ~0;
2096 				softc->blk_shift = 0;
2097 			}
2098 		} else {
2099 			/*
2100 			 * The SCSI-3 spec allows 0 to mean "unspecified".
2101 			 * The SCSI-1 spec allows 0 to mean 'infinite'.
2102 			 *
2103 			 * Either works here.
2104 			 */
2105 			if (softc->max_blk == 0) {
2106 				softc->max_blk = ~0;
2107 			}
2108 			softc->blk_shift = 0;
2109 			if (softc->blk_gran != 0) {
2110 				softc->blk_mask = softc->blk_gran - 1;
2111 			} else {
2112 				softc->blk_mask = 0;
2113 			}
2114 		}
2115 
2116 		if (write_protect)
2117 			softc->flags |= SA_FLAG_TAPE_WP;
2118 
2119 		if (comp_supported) {
2120 			if (softc->saved_comp_algorithm == 0)
2121 				softc->saved_comp_algorithm =
2122 				    softc->comp_algorithm;
2123 			softc->flags |= SA_FLAG_COMP_SUPP;
2124 			if (comp_enabled)
2125 				softc->flags |= SA_FLAG_COMP_ENABLED;
2126 		} else
2127 			softc->flags |= SA_FLAG_COMP_UNSUPP;
2128 
2129 		if (softc->buffer_mode == SMH_SA_BUF_MODE_NOBUF) {
2130 			error = sasetparams(periph, SA_PARAM_BUFF_MODE, 0,
2131 			    0, 0, SF_NO_PRINT);
2132 			if (error == 0)
2133 				softc->buffer_mode = SMH_SA_BUF_MODE_SIBUF;
2134 		}
2135 
2136 
2137 		if (error == 0) {
2138 			softc->flags |= SA_FLAG_TAPE_MOUNTED;
2139 		}
2140 exit:
2141 		if (rblim != NULL)
2142 			free(rblim, M_TEMP);
2143 
2144 		if (error != 0) {
2145 			softc->dsreg = MTIO_DSREG_NIL;
2146 		} else {
2147 			softc->fileno = softc->blkno = 0;
2148 			softc->dsreg = MTIO_DSREG_REST;
2149 		}
2150 #ifdef	SA_1FM_AT_EOD
2151 		if ((softc->quirks & SA_QUIRK_2FM) == 0)
2152 			softc->quirks |= SA_QUIRK_1FM;
2153 #else
2154 		if ((softc->quirks & SA_QUIRK_1FM) == 0)
2155 			softc->quirks |= SA_QUIRK_2FM;
2156 #endif
2157 	} else
2158 		xpt_release_ccb(ccb);
2159 
2160 	/*
2161 	 * If we return an error, we're not mounted any more,
2162 	 * so release any device reservation.
2163 	 */
2164 	if (error != 0) {
2165 		(void) sareservereleaseunit(periph, FALSE);
2166 	}
2167 	return (error);
2168 }
2169 
2170 static int
2171 sacheckeod(struct cam_periph *periph)
2172 {
2173 	int	error;
2174 	int	markswanted;
2175 	struct	sa_softc *softc;
2176 
2177 	softc = (struct sa_softc *)periph->softc;
2178 	markswanted = 0;
2179 
2180 	if ((softc->flags & SA_FLAG_TAPE_WRITTEN) != 0) {
2181 		markswanted++;
2182 		if (softc->quirks & SA_QUIRK_2FM)
2183 			markswanted++;
2184 	}
2185 
2186 	if (softc->filemarks < markswanted) {
2187 		markswanted -= softc->filemarks;
2188 		error = sawritefilemarks(periph, markswanted, FALSE);
2189 	} else {
2190 		error = 0;
2191 	}
2192 	return (error);
2193 }
2194 
2195 static int
2196 saerror(union ccb *ccb, u_int32_t cflgs, u_int32_t sflgs)
2197 {
2198 	static const char *toobig =
2199 	    "%d-byte tape record bigger than suplied buffer\n";
2200 	struct	cam_periph *periph;
2201 	struct	sa_softc *softc;
2202 	struct	ccb_scsiio *csio;
2203 	struct	scsi_sense_data *sense;
2204 	u_int32_t resid = 0;
2205 	int32_t	info = 0;
2206 	int	error_code, sense_key, asc, ascq;
2207 	int	error, defer_action;
2208 
2209 	periph = xpt_path_periph(ccb->ccb_h.path);
2210 	softc = (struct sa_softc *)periph->softc;
2211 	csio = &ccb->csio;
2212 	sense = &csio->sense_data;
2213 	scsi_extract_sense(sense, &error_code, &sense_key, &asc, &ascq);
2214 	error = 0;
2215 
2216 	/*
2217 	 * Calculate/latch up, any residuals...
2218 	 */
2219 	if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_SCSI_STATUS_ERROR) {
2220 		if ((sense->error_code & SSD_ERRCODE_VALID) != 0) {
2221 			info = (int32_t) scsi_4btoul(sense->info);
2222 			resid = info;
2223 			if ((softc->flags & SA_FLAG_FIXED) != 0)
2224 				resid *= softc->media_blksize;
2225 		} else {
2226 			resid = csio->dxfer_len;
2227 			info = resid;
2228 			if ((softc->flags & SA_FLAG_FIXED) != 0) {
2229 				if (softc->media_blksize)
2230 					info /= softc->media_blksize;
2231 			}
2232 		}
2233 		if (csio->ccb_h.ccb_type == SA_CCB_BUFFER_IO) {
2234 			bcopy((caddr_t) sense, (caddr_t) &softc->last_io_sense,
2235 			    sizeof (struct scsi_sense_data));
2236 			bcopy(csio->cdb_io.cdb_bytes, softc->last_io_cdb,
2237 			    (int) csio->cdb_len);
2238 			softc->last_io_resid = resid;
2239 		} else {
2240 			bcopy((caddr_t) sense, (caddr_t) &softc->last_ctl_sense,
2241 			    sizeof (struct scsi_sense_data));
2242 			bcopy(csio->cdb_io.cdb_bytes, softc->last_ctl_cdb,
2243 			    (int) csio->cdb_len);
2244 			softc->last_ctl_resid = resid;
2245 		}
2246 		CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("Key 0x%x ASC/ASCQ
2247 		    0x%x 0x%x flags 0x%x resid %d dxfer_len %d\n", sense_key,
2248 		    asc, ascq, sense->flags & ~SSD_KEY_RESERVED, resid,
2249 		    csio->dxfer_len));
2250 	} else {
2251 		CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("Cam Status 0x%x\n",
2252 		    csio->ccb_h.status & CAM_STATUS_MASK));
2253 	}
2254 
2255 	/*
2256 	 * If it's neither a SCSI Check Condition Error nor a non-read/write
2257 	 * command, let the common code deal with it the error setting.
2258 	 */
2259 	if ((csio->ccb_h.status & CAM_STATUS_MASK) != CAM_SCSI_STATUS_ERROR ||
2260 	    (csio->ccb_h.ccb_type == SA_CCB_WAITING)) {
2261 		return (cam_periph_error(ccb, cflgs, sflgs, &softc->saved_ccb));
2262 	}
2263 
2264 	/*
2265 	 * Calculate whether we'll defer action.
2266 	 */
2267 
2268 	if (resid > 0 && resid < csio->dxfer_len &&
2269 	    (softc->flags & SA_FLAG_FIXED) != 0) {
2270 		defer_action = TRUE;
2271 	} else {
2272 		defer_action = FALSE;
2273 	}
2274 
2275 	/*
2276 	 * Handle filemark, end of tape, mismatched record sizes....
2277 	 * From this point out, we're only handling read/write cases.
2278 	 * Handle writes && reads differently.
2279 	 */
2280 
2281 	if (csio->cdb_io.cdb_bytes[0] == SA_WRITE) {
2282 		if (sense->flags & SSD_FILEMARK) {
2283 			xpt_print_path(csio->ccb_h.path);
2284 			printf("filemark detected on write?\n");
2285 			if (softc->fileno != (daddr_t) -1) {
2286 				softc->fileno++;
2287 				softc->blkno = 0;
2288 			}
2289 		}
2290 		if (sense->flags & SSD_EOM) {
2291 			csio->resid = resid;
2292 			if (defer_action) {
2293 				error = -1;
2294 				softc->flags |= SA_FLAG_EOM_PENDING;
2295 			} else {
2296 				error = ENOSPC;
2297 			}
2298 		}
2299 	} else {
2300 		if (sense_key == SSD_KEY_BLANK_CHECK) {
2301 			csio->resid = resid;
2302 			if (defer_action) {
2303 				error = -1;
2304 				softc->flags |= SA_FLAG_EOM_PENDING;
2305 			} else {
2306 				error = EIO;
2307 			}
2308 		}
2309 		if (sense->flags & SSD_FILEMARK) {
2310 			csio->resid = resid;
2311 			if (defer_action) {
2312 				error = -1;
2313 				softc->flags |= SA_FLAG_EOF_PENDING;
2314 			}
2315 			/*
2316 			 * Unconditionally, if we detected a filemark on a read,
2317 			 * mark that we've run moved a file ahead.
2318 			 */
2319 			if (softc->fileno != (daddr_t) -1) {
2320 				softc->fileno++;
2321 				softc->blkno = 0;
2322 			}
2323 		}
2324 	}
2325 	/*
2326 	 * Incorrect Length usually applies to read, but can apply to writes.
2327 	 */
2328 	if (error == 0 && (sense->flags & SSD_ILI)) {
2329 		if (info < 0) {
2330 			xpt_print_path(csio->ccb_h.path);
2331 			printf(toobig, csio->dxfer_len - info);
2332 			csio->resid = csio->dxfer_len;
2333 			error = EIO;
2334 		} else {
2335 			csio->resid = resid;
2336 			if ((softc->flags & SA_FLAG_FIXED) != 0) {
2337 				if (defer_action)
2338 					softc->flags |= SA_FLAG_EIO_PENDING;
2339 				else
2340 					error = EIO;
2341 			}
2342 			/*
2343 			 * Bump the block number if we hadn't seen a filemark.
2344 			 * Do this independent of errors (we've moved anyway).
2345 			 */
2346 			if ((sense->flags & SSD_FILEMARK) == 0) {
2347 				if (softc->blkno != (daddr_t) -1) {
2348 					softc->blkno++;
2349 				}
2350 			}
2351 		}
2352 	}
2353 	if (error == 0)
2354 		return (cam_periph_error(ccb, cflgs, sflgs, &softc->saved_ccb));
2355 
2356 	if (error == -1)
2357 		return (0);
2358 	else
2359 		return (error);
2360 }
2361 
2362 static int
2363 sagetparams(struct cam_periph *periph, sa_params params_to_get,
2364 	    u_int32_t *blocksize, u_int8_t *density, u_int32_t *numblocks,
2365 	    int *buff_mode, u_int8_t *write_protect, u_int8_t *speed,
2366 	    int *comp_supported, int *comp_enabled, u_int32_t *comp_algorithm,
2367 	    sa_comp_t *tcs)
2368 {
2369 	union ccb *ccb;
2370 	void *mode_buffer;
2371 	struct scsi_mode_header_6 *mode_hdr;
2372 	struct scsi_mode_blk_desc *mode_blk;
2373 	int mode_buffer_len;
2374 	struct sa_softc *softc;
2375 	u_int8_t cpage;
2376 	int error;
2377 	cam_status status;
2378 
2379 	softc = (struct sa_softc *)periph->softc;
2380 	ccb = cam_periph_getccb(periph, 1);
2381 	cpage = SA_DATA_COMPRESSION_PAGE;
2382 
2383 retry:
2384 	mode_buffer_len = sizeof(*mode_hdr) + sizeof(*mode_blk);
2385 
2386 	if (params_to_get & SA_PARAM_COMPRESSION) {
2387 		if (softc->quirks & SA_QUIRK_NOCOMP) {
2388 			*comp_supported = FALSE;
2389 			params_to_get &= ~SA_PARAM_COMPRESSION;
2390 		} else
2391 			mode_buffer_len += sizeof (sa_comp_t);
2392 	}
2393 
2394 	mode_buffer = malloc(mode_buffer_len, M_TEMP, M_WAITOK);
2395 	bzero(mode_buffer, mode_buffer_len);
2396 	mode_hdr = (struct scsi_mode_header_6 *)mode_buffer;
2397 	mode_blk = (struct scsi_mode_blk_desc *)&mode_hdr[1];
2398 
2399 	/* it is safe to retry this */
2400 	scsi_mode_sense(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, FALSE,
2401 	    SMS_PAGE_CTRL_CURRENT, (params_to_get & SA_PARAM_COMPRESSION) ?
2402 	    cpage : SMS_VENDOR_SPECIFIC_PAGE, mode_buffer, mode_buffer_len,
2403 	    SSD_FULL_SIZE, 5000);
2404 
2405 	error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT,
2406 	    &softc->device_stats);
2407 	QFRLS(ccb);
2408 
2409 	status = ccb->ccb_h.status & CAM_STATUS_MASK;
2410 
2411 	if (error == EINVAL && (params_to_get & SA_PARAM_COMPRESSION) != 0) {
2412 		/*
2413 		 * Hmm. Let's see if we can try another page...
2414 		 * If we've already done that, give up on compression
2415 		 * for this device and remember this for the future
2416 		 * and attempt the request without asking for compression
2417 		 * info.
2418 		 */
2419 		if (cpage == SA_DATA_COMPRESSION_PAGE) {
2420 			cpage = SA_DEVICE_CONFIGURATION_PAGE;
2421 			goto retry;
2422 		}
2423 		softc->quirks |= SA_QUIRK_NOCOMP;
2424 		free(mode_buffer, M_TEMP);
2425 		goto retry;
2426 	} else if (status == CAM_SCSI_STATUS_ERROR) {
2427 		/* Tell the user about the fatal error. */
2428 		scsi_sense_print(&ccb->csio);
2429 		goto sagetparamsexit;
2430 	}
2431 
2432 	/*
2433 	 * If the user only wants the compression information, and
2434 	 * the device doesn't send back the block descriptor, it's
2435 	 * no big deal.  If the user wants more than just
2436 	 * compression, though, and the device doesn't pass back the
2437 	 * block descriptor, we need to send another mode sense to
2438 	 * get the block descriptor.
2439 	 */
2440 	if ((mode_hdr->blk_desc_len == 0) &&
2441 	    (params_to_get & SA_PARAM_COMPRESSION) &&
2442 	    (params_to_get & ~(SA_PARAM_COMPRESSION))) {
2443 
2444 		/*
2445 		 * Decrease the mode buffer length by the size of
2446 		 * the compression page, to make sure the data
2447 		 * there doesn't get overwritten.
2448 		 */
2449 		mode_buffer_len -= sizeof (sa_comp_t);
2450 
2451 		/*
2452 		 * Now move the compression page that we presumably
2453 		 * got back down the memory chunk a little bit so
2454 		 * it doesn't get spammed.
2455 		 */
2456 		bcopy(&mode_hdr[0], &mode_hdr[1], sizeof (sa_comp_t));
2457 		bzero(&mode_hdr[0], sizeof (mode_hdr[0]));
2458 
2459 		/*
2460 		 * Now, we issue another mode sense and just ask
2461 		 * for the block descriptor, etc.
2462 		 */
2463 
2464 		scsi_mode_sense(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG, FALSE,
2465 		    SMS_PAGE_CTRL_CURRENT, SMS_VENDOR_SPECIFIC_PAGE,
2466 		    mode_buffer, mode_buffer_len, SSD_FULL_SIZE, 5000);
2467 
2468 		error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT,
2469 		    &softc->device_stats);
2470 		QFRLS(ccb);
2471 
2472 		if (error != 0)
2473 			goto sagetparamsexit;
2474 	}
2475 
2476 	if (params_to_get & SA_PARAM_BLOCKSIZE)
2477 		*blocksize = scsi_3btoul(mode_blk->blklen);
2478 
2479 	if (params_to_get & SA_PARAM_NUMBLOCKS)
2480 		*numblocks = scsi_3btoul(mode_blk->nblocks);
2481 
2482 	if (params_to_get & SA_PARAM_BUFF_MODE)
2483 		*buff_mode = mode_hdr->dev_spec & SMH_SA_BUF_MODE_MASK;
2484 
2485 	if (params_to_get & SA_PARAM_DENSITY)
2486 		*density = mode_blk->density;
2487 
2488 	if (params_to_get & SA_PARAM_WP)
2489 		*write_protect = (mode_hdr->dev_spec & SMH_SA_WP)? TRUE : FALSE;
2490 
2491 	if (params_to_get & SA_PARAM_SPEED)
2492 		*speed = mode_hdr->dev_spec & SMH_SA_SPEED_MASK;
2493 
2494 	if (params_to_get & SA_PARAM_COMPRESSION) {
2495 		sa_comp_t *ntcs = (sa_comp_t *) &mode_blk[1];
2496 		if (cpage == SA_DATA_COMPRESSION_PAGE) {
2497 			struct scsi_data_compression_page *cp = &ntcs->dcomp;
2498 			*comp_supported =
2499 			    (cp->dce_and_dcc & SA_DCP_DCC)? TRUE : FALSE;
2500 			*comp_enabled =
2501 			    (cp->dce_and_dcc & SA_DCP_DCE)? TRUE : FALSE;
2502 			*comp_algorithm = scsi_4btoul(cp->comp_algorithm);
2503 		} else {
2504 			struct scsi_dev_conf_page *cp = &ntcs->dconf;
2505 			/*
2506 			 * We don't really know whether this device supports
2507 			 * Data Compression if the the algorithm field is
2508 			 * zero. Just say we do.
2509 			 */
2510 			*comp_supported = TRUE;
2511 			*comp_enabled =
2512 			    (cp->sel_comp_alg != SA_COMP_NONE)? TRUE : FALSE;
2513 			*comp_algorithm = cp->sel_comp_alg;
2514 		}
2515 		if (tcs != NULL)
2516 			bcopy(ntcs, tcs, sizeof (sa_comp_t));
2517 	}
2518 
2519 	if (CAM_DEBUGGED(periph->path, CAM_DEBUG_INFO)) {
2520 		int idx;
2521 		char *xyz = mode_buffer;
2522 		xpt_print_path(periph->path);
2523 		printf("Mode Sense Data=");
2524 		for (idx = 0; idx < mode_buffer_len; idx++)
2525 			printf(" 0x%02x", xyz[idx] & 0xff);
2526 		printf("\n");
2527 	}
2528 
2529 sagetparamsexit:
2530 
2531 	xpt_release_ccb(ccb);
2532 	free(mode_buffer, M_TEMP);
2533 	return (error);
2534 }
2535 
2536 /*
2537  * The purpose of this function is to set one of four different parameters
2538  * for a tape drive:
2539  *	- blocksize
2540  *	- density
2541  *	- compression / compression algorithm
2542  *	- buffering mode
2543  *
2544  * The assumption is that this will be called from saioctl(), and therefore
2545  * from a process context.  Thus the waiting malloc calls below.  If that
2546  * assumption ever changes, the malloc calls should be changed to be
2547  * NOWAIT mallocs.
2548  *
2549  * Any or all of the four parameters may be set when this function is
2550  * called.  It should handle setting more than one parameter at once.
2551  */
2552 static int
2553 sasetparams(struct cam_periph *periph, sa_params params_to_set,
2554 	    u_int32_t blocksize, u_int8_t density, u_int32_t calg,
2555 	    u_int32_t sense_flags)
2556 {
2557 	struct sa_softc *softc;
2558 	u_int32_t current_blocksize;
2559 	u_int32_t current_calg;
2560 	u_int8_t current_density;
2561 	u_int8_t current_speed;
2562 	int comp_enabled, comp_supported;
2563 	void *mode_buffer;
2564 	int mode_buffer_len;
2565 	struct scsi_mode_header_6 *mode_hdr;
2566 	struct scsi_mode_blk_desc *mode_blk;
2567 	sa_comp_t *ccomp, *cpage;
2568 	int buff_mode;
2569 	union ccb *ccb = NULL;
2570 	int error;
2571 
2572 	softc = (struct sa_softc *)periph->softc;
2573 
2574 	ccomp = malloc(sizeof (sa_comp_t), M_TEMP, M_WAITOK);
2575 
2576 	/*
2577 	 * Since it doesn't make sense to set the number of blocks, or
2578 	 * write protection, we won't try to get the current value.  We
2579 	 * always want to get the blocksize, so we can set it back to the
2580 	 * proper value.
2581 	 */
2582 	error = sagetparams(periph,
2583 	    params_to_set | SA_PARAM_BLOCKSIZE | SA_PARAM_SPEED,
2584 	    &current_blocksize, &current_density, NULL, &buff_mode, NULL,
2585 	    &current_speed, &comp_supported, &comp_enabled,
2586 	    &current_calg, ccomp);
2587 
2588 	if (error != 0) {
2589 		free(ccomp, M_TEMP);
2590 		return (error);
2591 	}
2592 
2593 	mode_buffer_len = sizeof(*mode_hdr) + sizeof(*mode_blk);
2594 	if (params_to_set & SA_PARAM_COMPRESSION)
2595 		mode_buffer_len += sizeof (sa_comp_t);
2596 
2597 	mode_buffer = malloc(mode_buffer_len, M_TEMP, M_WAITOK);
2598 	bzero(mode_buffer, mode_buffer_len);
2599 
2600 	mode_hdr = (struct scsi_mode_header_6 *)mode_buffer;
2601 	mode_blk = (struct scsi_mode_blk_desc *)&mode_hdr[1];
2602 
2603 	ccb = cam_periph_getccb(periph, 1);
2604 
2605 retry:
2606 
2607 	if (params_to_set & SA_PARAM_COMPRESSION) {
2608 		if (mode_blk) {
2609 			cpage = (sa_comp_t *)&mode_blk[1];
2610 		} else {
2611 			cpage = (sa_comp_t *)&mode_hdr[1];
2612 		}
2613 		bcopy(ccomp, cpage, sizeof (sa_comp_t));
2614 		cpage->hdr.pagecode &= ~0x80;
2615 	} else
2616 		cpage = NULL;
2617 
2618 	/*
2619 	 * If the caller wants us to set the blocksize, use the one they
2620 	 * pass in.  Otherwise, use the blocksize we got back from the
2621 	 * mode select above.
2622 	 */
2623 	if (mode_blk) {
2624 		if (params_to_set & SA_PARAM_BLOCKSIZE)
2625 			scsi_ulto3b(blocksize, mode_blk->blklen);
2626 		else
2627 			scsi_ulto3b(current_blocksize, mode_blk->blklen);
2628 
2629 		/*
2630 		 * Set density if requested, else preserve old density.
2631 		 * SCSI_SAME_DENSITY only applies to SCSI-2 or better
2632 		 * devices, else density we've latched up in our softc.
2633 		 */
2634 		if (params_to_set & SA_PARAM_DENSITY) {
2635 			mode_blk->density = density;
2636 		} else if (softc->scsi_rev > SCSI_REV_CCS) {
2637 			mode_blk->density = SCSI_SAME_DENSITY;
2638 		} else {
2639 			mode_blk->density = softc->media_density;
2640 		}
2641 	}
2642 
2643 	/*
2644 	 * For mode selects, these two fields must be zero.
2645 	 */
2646 	mode_hdr->data_length = 0;
2647 	mode_hdr->medium_type = 0;
2648 
2649 	/* set the speed to the current value */
2650 	mode_hdr->dev_spec = current_speed;
2651 
2652 	/* set single-initiator buffering mode */
2653 	mode_hdr->dev_spec |= SMH_SA_BUF_MODE_SIBUF;
2654 
2655 	if (mode_blk)
2656 		mode_hdr->blk_desc_len = sizeof(struct scsi_mode_blk_desc);
2657 	else
2658 		mode_hdr->blk_desc_len = 0;
2659 
2660 	/*
2661 	 * First, if the user wants us to set the compression algorithm or
2662 	 * just turn compression on, check to make sure that this drive
2663 	 * supports compression.
2664 	 */
2665 	if (params_to_set & SA_PARAM_COMPRESSION) {
2666 		/*
2667 		 * If the compression algorithm is 0, disable compression.
2668 		 * If the compression algorithm is non-zero, enable
2669 		 * compression and set the compression type to the
2670 		 * specified compression algorithm, unless the algorithm is
2671 		 * MT_COMP_ENABLE.  In that case, we look at the
2672 		 * compression algorithm that is currently set and if it is
2673 		 * non-zero, we leave it as-is.  If it is zero, and we have
2674 		 * saved a compression algorithm from a time when
2675 		 * compression was enabled before, set the compression to
2676 		 * the saved value.
2677 		 */
2678 		switch (ccomp->hdr.pagecode & ~0x80) {
2679 		case SA_DATA_COMPRESSION_PAGE:
2680 		if (ccomp->dcomp.dce_and_dcc & SA_DCP_DCC) {
2681 			struct scsi_data_compression_page *dcp = &cpage->dcomp;
2682 			if (calg == 0) {
2683 				/*
2684 				 * Disable compression, but leave the
2685 				 * decompression and the capability bit
2686 				 * alone.
2687 				 */
2688 				dcp->dce_and_dcc = SA_DCP_DCC;
2689 				dcp->dde_and_red |= SA_DCP_DDE;
2690 				break;
2691 			}
2692 			/* enable compression && decompression */
2693 			dcp->dce_and_dcc = SA_DCP_DCE | SA_DCP_DCC;
2694 			dcp->dde_and_red |= SA_DCP_DDE;
2695 			/*
2696 			 * If there, use compression algorithm from caller.
2697 			 * Otherwise, if there's a saved compression algorithm
2698 			 * and there is no current algorithm, use the saved
2699 			 * algorithm. Else parrot back what we got and hope
2700 			 * for the best.
2701 			 */
2702 			if (calg != MT_COMP_ENABLE) {
2703 				scsi_ulto4b(calg, dcp->comp_algorithm);
2704 				scsi_ulto4b(calg, dcp->decomp_algorithm);
2705 			} else if (scsi_4btoul(dcp->comp_algorithm) == 0 &&
2706 			    softc->saved_comp_algorithm != 0) {
2707 				scsi_ulto4b(softc->saved_comp_algorithm,
2708 				    dcp->comp_algorithm);
2709 				scsi_ulto4b(softc->saved_comp_algorithm,
2710 				    dcp->decomp_algorithm);
2711 			}
2712 			break;
2713 		}
2714 		case SA_DEVICE_CONFIGURATION_PAGE:
2715 		{
2716 			struct scsi_dev_conf_page *dcp = &cpage->dconf;
2717 			if (calg == 0) {
2718 				dcp->sel_comp_alg = SA_COMP_NONE;
2719 				break;
2720 			}
2721 			if (calg != MT_COMP_ENABLE) {
2722 				dcp->sel_comp_alg = calg;
2723 			} else if (dcp->sel_comp_alg == SA_COMP_NONE &&
2724 			    softc->saved_comp_algorithm != 0) {
2725 				dcp->sel_comp_alg = softc->saved_comp_algorithm;
2726 			}
2727 			break;
2728 		}
2729 		default:
2730 			/*
2731 			 * The drive doesn't seem to support compression,
2732 			 * so turn off the set compression bit.
2733 			 */
2734 			params_to_set &= ~SA_PARAM_COMPRESSION;
2735 			xpt_print_path(periph->path);
2736 			printf("device does not seem to support compression\n");
2737 
2738 			/*
2739 			 * If that was the only thing the user wanted us to set,
2740 			 * clean up allocated resources and return with
2741 			 * 'operation not supported'.
2742 			 */
2743 			if (params_to_set == SA_PARAM_NONE) {
2744 				free(mode_buffer, M_TEMP);
2745 				xpt_release_ccb(ccb);
2746 				return (ENODEV);
2747 			}
2748 
2749 			/*
2750 			 * That wasn't the only thing the user wanted us to set.
2751 			 * So, decrease the stated mode buffer length by the
2752 			 * size of the compression mode page.
2753 			 */
2754 			mode_buffer_len -= sizeof(sa_comp_t);
2755 		}
2756 	}
2757 
2758 	/* It is safe to retry this operation */
2759 	scsi_mode_select(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG,
2760 	    (params_to_set & SA_PARAM_COMPRESSION)? TRUE : FALSE,
2761 	    FALSE, mode_buffer, mode_buffer_len, SSD_FULL_SIZE, 5000);
2762 
2763 	error = cam_periph_runccb(ccb, saerror, 0,
2764 	    sense_flags, &softc->device_stats);
2765 	QFRLS(ccb);
2766 
2767 	if (CAM_DEBUGGED(periph->path, CAM_DEBUG_INFO)) {
2768 		int idx;
2769 		char *xyz = mode_buffer;
2770 		xpt_print_path(periph->path);
2771 		printf("Err%d, Mode Select Data=", error);
2772 		for (idx = 0; idx < mode_buffer_len; idx++)
2773 			printf(" 0x%02x", xyz[idx] & 0xff);
2774 		printf("\n");
2775 	}
2776 
2777 
2778 	if (error) {
2779 		/*
2780 		 * If we can, try without setting density/blocksize.
2781 		 */
2782 		if (mode_blk) {
2783 			if ((params_to_set &
2784 			    (SA_PARAM_DENSITY|SA_PARAM_BLOCKSIZE)) == 0) {
2785 				mode_blk = NULL;
2786 				goto retry;
2787 			}
2788 		} else {
2789 			mode_blk = (struct scsi_mode_blk_desc *)&mode_hdr[1];
2790 			cpage = (sa_comp_t *)&mode_blk[1];
2791 		}
2792 
2793 		/*
2794 		 * If we were setting the blocksize, and that failed, we
2795 		 * want to set it to its original value.  If we weren't
2796 		 * setting the blocksize, we don't want to change it.
2797 		 */
2798 		scsi_ulto3b(current_blocksize, mode_blk->blklen);
2799 
2800 		/*
2801 		 * Set density if requested, else preserve old density.
2802 		 * SCSI_SAME_DENSITY only applies to SCSI-2 or better
2803 		 * devices, else density we've latched up in our softc.
2804 		 */
2805 		if (params_to_set & SA_PARAM_DENSITY) {
2806 			mode_blk->density = current_density;
2807 		} else if (softc->scsi_rev > SCSI_REV_CCS) {
2808 			mode_blk->density = SCSI_SAME_DENSITY;
2809 		} else {
2810 			mode_blk->density = softc->media_density;
2811 		}
2812 
2813 		if (params_to_set & SA_PARAM_COMPRESSION)
2814 			bcopy(ccomp, cpage, sizeof (sa_comp_t));
2815 
2816 		/*
2817 		 * The retry count is the only CCB field that might have been
2818 		 * changed that we care about, so reset it back to 1.
2819 		 */
2820 		ccb->ccb_h.retry_count = 1;
2821 		cam_periph_runccb(ccb, saerror, 0, sense_flags,
2822 		    &softc->device_stats);
2823 		QFRLS(ccb);
2824 	}
2825 
2826 	xpt_release_ccb(ccb);
2827 
2828 	if (ccomp != NULL)
2829 		free(ccomp, M_TEMP);
2830 
2831 	if (params_to_set & SA_PARAM_COMPRESSION) {
2832 		if (error) {
2833 			softc->flags &= ~SA_FLAG_COMP_ENABLED;
2834 			/*
2835 			 * Even if we get an error setting compression,
2836 			 * do not say that we don't support it. We could
2837 			 * have been wrong, or it may be media specific.
2838 			 *	softc->flags &= ~SA_FLAG_COMP_SUPP;
2839 			 */
2840 			softc->saved_comp_algorithm = softc->comp_algorithm;
2841 			softc->comp_algorithm = 0;
2842 		} else {
2843 			softc->flags |= SA_FLAG_COMP_ENABLED;
2844 			softc->comp_algorithm = calg;
2845 		}
2846 	}
2847 
2848 	free(mode_buffer, M_TEMP);
2849 	return (error);
2850 }
2851 
2852 static void
2853 saprevent(struct cam_periph *periph, int action)
2854 {
2855 	struct	sa_softc *softc;
2856 	union	ccb *ccb;
2857 	int	error, sf;
2858 
2859 	softc = (struct sa_softc *)periph->softc;
2860 
2861 	if ((action == PR_ALLOW) && (softc->flags & SA_FLAG_TAPE_LOCKED) == 0)
2862 		return;
2863 	if ((action == PR_PREVENT) && (softc->flags & SA_FLAG_TAPE_LOCKED) != 0)
2864 		return;
2865 
2866 	/*
2867 	 * We can be quiet about illegal requests.
2868 	 */
2869 	if (CAM_DEBUGGED(periph->path, CAM_DEBUG_INFO)) {
2870 		sf = 0;
2871 	} else
2872 		sf = SF_QUIET_IR;
2873 
2874 	ccb = cam_periph_getccb(periph, 1);
2875 
2876 	/* It is safe to retry this operation */
2877 	scsi_prevent(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, action,
2878 	    SSD_FULL_SIZE, 100000);
2879 
2880 	error = cam_periph_runccb(ccb, saerror, 0, sf, &softc->device_stats);
2881 	QFRLS(ccb);
2882 	if (error == 0) {
2883 		if (action == PR_ALLOW)
2884 			softc->flags &= ~SA_FLAG_TAPE_LOCKED;
2885 		else
2886 			softc->flags |= SA_FLAG_TAPE_LOCKED;
2887 	}
2888 
2889 	xpt_release_ccb(ccb);
2890 }
2891 
2892 static int
2893 sarewind(struct cam_periph *periph)
2894 {
2895 	union	ccb *ccb;
2896 	struct	sa_softc *softc;
2897 	int	error;
2898 
2899 	softc = (struct sa_softc *)periph->softc;
2900 
2901 	ccb = cam_periph_getccb(periph, 1);
2902 
2903 	/* It is safe to retry this operation */
2904 	scsi_rewind(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG, FALSE,
2905 	    SSD_FULL_SIZE, REWIND_TIMEOUT);
2906 
2907 	softc->dsreg = MTIO_DSREG_REW;
2908 	error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats);
2909 	softc->dsreg = MTIO_DSREG_REST;
2910 
2911 	if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
2912 		cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE);
2913 
2914 	xpt_release_ccb(ccb);
2915 	if (error == 0)
2916 		softc->fileno = softc->blkno = (daddr_t) 0;
2917 	else
2918 		softc->fileno = softc->blkno = (daddr_t) -1;
2919 	return (error);
2920 }
2921 
2922 static int
2923 saspace(struct cam_periph *periph, int count, scsi_space_code code)
2924 {
2925 	union	ccb *ccb;
2926 	struct	sa_softc *softc;
2927 	int	error;
2928 
2929 	softc = (struct sa_softc *)periph->softc;
2930 
2931 	ccb = cam_periph_getccb(periph, 1);
2932 
2933 	/* This cannot be retried */
2934 
2935 	scsi_space(&ccb->csio, 0, sadone, MSG_SIMPLE_Q_TAG, code, count,
2936 	    SSD_FULL_SIZE, SPACE_TIMEOUT);
2937 
2938 	softc->dsreg = (count < 0)? MTIO_DSREG_REV : MTIO_DSREG_FWD;
2939 	error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats);
2940 	softc->dsreg = MTIO_DSREG_REST;
2941 
2942 	if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
2943 		cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE);
2944 
2945 	xpt_release_ccb(ccb);
2946 
2947 	/*
2948 	 * If a spacing operation has failed, we need to invalidate
2949 	 * this mount.
2950 	 *
2951 	 * If the spacing operation was setmarks or to end of recorded data,
2952 	 * we no longer know our relative position.
2953 	 *
2954 	 * We are not managing residuals here (really).
2955 	 */
2956 	if (error) {
2957 		softc->fileno = softc->blkno = (daddr_t) -1;
2958 	} else if (code == SS_SETMARKS || code == SS_EOD) {
2959 		softc->fileno = softc->blkno = (daddr_t) -1;
2960 	} else if (code == SS_FILEMARKS && softc->fileno != (daddr_t) -1) {
2961 		softc->fileno += count;
2962 		softc->blkno = 0;
2963 	} else if (code == SS_BLOCKS && softc->blkno != (daddr_t) -1) {
2964 		softc->blkno += count;
2965 	}
2966 	return (error);
2967 }
2968 
2969 static int
2970 sawritefilemarks(struct cam_periph *periph, int nmarks, int setmarks)
2971 {
2972 	union	ccb *ccb;
2973 	struct	sa_softc *softc;
2974 	int	error;
2975 
2976 	softc = (struct sa_softc *)periph->softc;
2977 
2978 	ccb = cam_periph_getccb(periph, 1);
2979 
2980 	softc->dsreg = MTIO_DSREG_FMK;
2981 	/* this *must* not be retried */
2982 	scsi_write_filemarks(&ccb->csio, 0, sadone, MSG_SIMPLE_Q_TAG,
2983 	    FALSE, setmarks, nmarks, SSD_FULL_SIZE, 60000);
2984 	softc->dsreg = MTIO_DSREG_REST;
2985 
2986 
2987 	error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats);
2988 
2989 	if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
2990 		cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE);
2991 
2992 	/*
2993 	 * XXXX: Get back the actual number of filemarks written
2994 	 * XXXX: (there can be a residual).
2995 	 */
2996 	if (error == 0 && nmarks) {
2997 		struct sa_softc *softc = (struct sa_softc *)periph->softc;
2998 		softc->filemarks += nmarks;
2999 	}
3000 	xpt_release_ccb(ccb);
3001 
3002 	/*
3003 	 * Update relative positions (if we're doing that).
3004 	 */
3005 	if (error) {
3006 		softc->fileno = softc->blkno = (daddr_t) -1;
3007 	} else if (softc->fileno != (daddr_t) -1) {
3008 		softc->fileno += nmarks;
3009 		softc->blkno = 0;
3010 	}
3011 	return (error);
3012 }
3013 
3014 static int
3015 sardpos(struct cam_periph *periph, int hard, u_int32_t *blkptr)
3016 {
3017 	struct scsi_tape_position_data loc;
3018 	union ccb *ccb;
3019 	struct sa_softc *softc = (struct sa_softc *)periph->softc;
3020 	int error;
3021 
3022 	/*
3023 	 * We have to try and flush any buffered writes here if we were writing.
3024 	 *
3025 	 * The SCSI specification is vague enough about situations like
3026 	 * different sized blocks in a tape drive buffer as to make one
3027 	 * wary about trying to figure out the actual block location value
3028 	 * if data is in the tape drive buffer.
3029 	 */
3030 	ccb = cam_periph_getccb(periph, 1);
3031 
3032 	if (softc->flags & SA_FLAG_TAPE_WRITTEN) {
3033 		error = sawritefilemarks(periph, 0, 0);
3034 		if (error && error != EACCES)
3035 			return (error);
3036 	}
3037 
3038 	scsi_read_position(&ccb->csio, 1, sadone, MSG_SIMPLE_Q_TAG,
3039 	    hard, &loc, SSD_FULL_SIZE, 5000);
3040 	softc->dsreg = MTIO_DSREG_RBSY;
3041 	error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats);
3042 	softc->dsreg = MTIO_DSREG_REST;
3043 	if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
3044 		cam_release_devq(ccb->ccb_h.path, 0, 0, 0, 0);
3045 
3046 	if (error == 0) {
3047 		if (loc.flags & SA_RPOS_UNCERTAIN) {
3048 			error = EINVAL;		/* nothing is certain */
3049 		} else {
3050 #if	0
3051 			u_int32_t firstblk, lastblk, nbufblk, nbufbyte;
3052 
3053 			firstblk = scsi_4btoul(loc.firstblk);
3054 			lastblk = scsi_4btoul(loc.lastblk);
3055 			nbufblk = scsi_4btoul(loc.nbufblk);
3056 			nbufbyte = scsi_4btoul(loc.nbufbyte);
3057 			if (lastblk || nbufblk || nbufbyte) {
3058 				xpt_print_path(periph->path);
3059 				printf("rdpos firstblk 0x%x lastblk 0x%x bufblk"
3060 				    " 0x%x bufbyte 0x%x\n", firstblk, lastblk,
3061 				    nbufblk, nbufbyte);
3062 			}
3063 			*blkptr = firstblk;
3064 #else
3065 			*blkptr = scsi_4btoul(loc.firstblk);
3066 #endif
3067 		}
3068 	}
3069 
3070 	xpt_release_ccb(ccb);
3071 	return (error);
3072 }
3073 
3074 static int
3075 sasetpos(struct cam_periph *periph, int hard, u_int32_t *blkptr)
3076 {
3077 	union ccb *ccb;
3078 	struct sa_softc *softc;
3079 	int error;
3080 
3081 	/*
3082 	 * We used to try and flush any buffered writes here.
3083 	 * Now we push this onto user applications to either
3084 	 * flush the pending writes themselves (via a zero count
3085 	 * WRITE FILEMARKS command) or they can trust their tape
3086 	 * drive to do this correctly for them.
3087  	 */
3088 
3089 	softc = (struct sa_softc *)periph->softc;
3090 	ccb = cam_periph_getccb(periph, 1);
3091 
3092 
3093 	scsi_set_position(&ccb->csio, 1, sadone, MSG_SIMPLE_Q_TAG,
3094 	    hard, *blkptr, SSD_FULL_SIZE, 60 * 60 * 1000);
3095 
3096 	softc->dsreg = MTIO_DSREG_POS;
3097 	error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats);
3098 	softc->dsreg = MTIO_DSREG_REST;
3099 	if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
3100 		cam_release_devq(ccb->ccb_h.path, 0, 0, 0, 0);
3101 	xpt_release_ccb(ccb);
3102 	/*
3103 	 * Note relative file && block number position as now unknown.
3104 	 */
3105 	softc->fileno = softc->blkno = (daddr_t) -1;
3106 	return (error);
3107 }
3108 
3109 static int
3110 saretension(struct cam_periph *periph)
3111 {
3112 	union ccb *ccb;
3113 	struct sa_softc *softc;
3114 	int error;
3115 
3116 	softc = (struct sa_softc *)periph->softc;
3117 
3118 	ccb = cam_periph_getccb(periph, 1);
3119 
3120 	/* It is safe to retry this operation */
3121 	scsi_load_unload(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, FALSE,
3122 	    FALSE, TRUE,  TRUE, SSD_FULL_SIZE, ERASE_TIMEOUT);
3123 
3124 	softc->dsreg = MTIO_DSREG_TEN;
3125 	error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats);
3126 	softc->dsreg = MTIO_DSREG_REST;
3127 
3128 	if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
3129 		cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE);
3130 	xpt_release_ccb(ccb);
3131 	if (error == 0)
3132 		softc->fileno = softc->blkno = (daddr_t) 0;
3133 	else
3134 		softc->fileno = softc->blkno = (daddr_t) -1;
3135 	return (error);
3136 }
3137 
3138 static int
3139 sareservereleaseunit(struct cam_periph *periph, int reserve)
3140 {
3141 	union ccb *ccb;
3142 	struct sa_softc *softc;
3143 	int error;
3144 
3145 	softc = (struct sa_softc *)periph->softc;
3146 	ccb = cam_periph_getccb(periph,  1);
3147 
3148 	/* It is safe to retry this operation */
3149 	scsi_reserve_release_unit(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG,
3150 	    FALSE,  0, SSD_FULL_SIZE,  5000, reserve);
3151 	softc->dsreg = MTIO_DSREG_RBSY;
3152 	error = cam_periph_runccb(ccb, saerror, 0,
3153 	    SF_RETRY_UA | SF_NO_PRINT, &softc->device_stats);
3154 	softc->dsreg = MTIO_DSREG_REST;
3155 	QFRLS(ccb);
3156 	xpt_release_ccb(ccb);
3157 
3158 	/*
3159 	 * If the error was Illegal Request, then the device doesn't support
3160 	 * RESERVE/RELEASE. This is not an error.
3161 	 */
3162 	if (error == EINVAL) {
3163 		error = 0;
3164 	}
3165 
3166 	return (error);
3167 }
3168 
3169 static int
3170 saloadunload(struct cam_periph *periph, int load)
3171 {
3172 	union	ccb *ccb;
3173 	struct	sa_softc *softc;
3174 	int	error;
3175 
3176 	softc = (struct sa_softc *)periph->softc;
3177 
3178 	ccb = cam_periph_getccb(periph, 1);
3179 
3180 	/* It is safe to retry this operation */
3181 	scsi_load_unload(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, FALSE,
3182 	    FALSE, FALSE, load, SSD_FULL_SIZE, REWIND_TIMEOUT);
3183 
3184 	softc->dsreg = (load)? MTIO_DSREG_LD : MTIO_DSREG_UNL;
3185 	error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats);
3186 	softc->dsreg = MTIO_DSREG_REST;
3187 	QFRLS(ccb);
3188 	xpt_release_ccb(ccb);
3189 
3190 	if (error || load == 0)
3191 		softc->fileno = softc->blkno = (daddr_t) -1;
3192 	else if (error == 0)
3193 		softc->fileno = softc->blkno = (daddr_t) 0;
3194 	return (error);
3195 }
3196 
3197 static int
3198 saerase(struct cam_periph *periph, int longerase)
3199 {
3200 
3201 	union	ccb *ccb;
3202 	struct	sa_softc *softc;
3203 	int error;
3204 
3205 	softc = (struct sa_softc *)periph->softc;
3206 
3207 	ccb = cam_periph_getccb(periph, 1);
3208 
3209 	scsi_erase(&ccb->csio, 1, sadone, MSG_SIMPLE_Q_TAG, FALSE, longerase,
3210 	    SSD_FULL_SIZE, ERASE_TIMEOUT);
3211 
3212 	softc->dsreg = MTIO_DSREG_ZER;
3213 	error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats);
3214 	softc->dsreg = MTIO_DSREG_REST;
3215 
3216 	if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
3217 		cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE);
3218 	xpt_release_ccb(ccb);
3219 	return (error);
3220 }
3221 
3222 #endif /* _KERNEL */
3223 
3224 /*
3225  * Read tape block limits command.
3226  */
3227 void
3228 scsi_read_block_limits(struct ccb_scsiio *csio, u_int32_t retries,
3229 		   void (*cbfcnp)(struct cam_periph *, union ccb *),
3230 		   u_int8_t tag_action,
3231 		   struct scsi_read_block_limits_data *rlimit_buf,
3232 		   u_int8_t sense_len, u_int32_t timeout)
3233 {
3234 	struct scsi_read_block_limits *scsi_cmd;
3235 
3236 	cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_IN, tag_action,
3237 	     (u_int8_t *)rlimit_buf, sizeof(*rlimit_buf), sense_len,
3238 	     sizeof(*scsi_cmd), timeout);
3239 
3240 	scsi_cmd = (struct scsi_read_block_limits *)&csio->cdb_io.cdb_bytes;
3241 	bzero(scsi_cmd, sizeof(*scsi_cmd));
3242 	scsi_cmd->opcode = READ_BLOCK_LIMITS;
3243 }
3244 
3245 void
3246 scsi_sa_read_write(struct ccb_scsiio *csio, u_int32_t retries,
3247 		   void (*cbfcnp)(struct cam_periph *, union ccb *),
3248 		   u_int8_t tag_action, int readop, int sli,
3249 		   int fixed, u_int32_t length, u_int8_t *data_ptr,
3250 		   u_int32_t dxfer_len, u_int8_t sense_len, u_int32_t timeout)
3251 {
3252 	struct scsi_sa_rw *scsi_cmd;
3253 
3254 	scsi_cmd = (struct scsi_sa_rw *)&csio->cdb_io.cdb_bytes;
3255 	scsi_cmd->opcode = readop ? SA_READ : SA_WRITE;
3256 	scsi_cmd->sli_fixed = 0;
3257 	if (sli && readop)
3258 		scsi_cmd->sli_fixed |= SAR_SLI;
3259 	if (fixed)
3260 		scsi_cmd->sli_fixed |= SARW_FIXED;
3261 	scsi_ulto3b(length, scsi_cmd->length);
3262 	scsi_cmd->control = 0;
3263 
3264 	cam_fill_csio(csio, retries, cbfcnp, readop ? CAM_DIR_IN : CAM_DIR_OUT,
3265 	    tag_action, data_ptr, dxfer_len, sense_len,
3266 	    sizeof(*scsi_cmd), timeout);
3267 }
3268 
3269 void
3270 scsi_load_unload(struct ccb_scsiio *csio, u_int32_t retries,
3271 		 void (*cbfcnp)(struct cam_periph *, union ccb *),
3272 		 u_int8_t tag_action, int immediate, int eot,
3273 		 int reten, int load, u_int8_t sense_len,
3274 		 u_int32_t timeout)
3275 {
3276 	struct scsi_load_unload *scsi_cmd;
3277 
3278 	scsi_cmd = (struct scsi_load_unload *)&csio->cdb_io.cdb_bytes;
3279 	bzero(scsi_cmd, sizeof(*scsi_cmd));
3280 	scsi_cmd->opcode = LOAD_UNLOAD;
3281 	if (immediate)
3282 		scsi_cmd->immediate = SLU_IMMED;
3283 	if (eot)
3284 		scsi_cmd->eot_reten_load |= SLU_EOT;
3285 	if (reten)
3286 		scsi_cmd->eot_reten_load |= SLU_RETEN;
3287 	if (load)
3288 		scsi_cmd->eot_reten_load |= SLU_LOAD;
3289 
3290 	cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action,
3291 	    NULL, 0, sense_len, sizeof(*scsi_cmd), timeout);
3292 }
3293 
3294 void
3295 scsi_rewind(struct ccb_scsiio *csio, u_int32_t retries,
3296 	    void (*cbfcnp)(struct cam_periph *, union ccb *),
3297 	    u_int8_t tag_action, int immediate, u_int8_t sense_len,
3298 	    u_int32_t timeout)
3299 {
3300 	struct scsi_rewind *scsi_cmd;
3301 
3302 	scsi_cmd = (struct scsi_rewind *)&csio->cdb_io.cdb_bytes;
3303 	bzero(scsi_cmd, sizeof(*scsi_cmd));
3304 	scsi_cmd->opcode = REWIND;
3305 	if (immediate)
3306 		scsi_cmd->immediate = SREW_IMMED;
3307 
3308 	cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL,
3309 	    0, sense_len, sizeof(*scsi_cmd), timeout);
3310 }
3311 
3312 void
3313 scsi_space(struct ccb_scsiio *csio, u_int32_t retries,
3314 	   void (*cbfcnp)(struct cam_periph *, union ccb *),
3315 	   u_int8_t tag_action, scsi_space_code code,
3316 	   u_int32_t count, u_int8_t sense_len, u_int32_t timeout)
3317 {
3318 	struct scsi_space *scsi_cmd;
3319 
3320 	scsi_cmd = (struct scsi_space *)&csio->cdb_io.cdb_bytes;
3321 	scsi_cmd->opcode = SPACE;
3322 	scsi_cmd->code = code;
3323 	scsi_ulto3b(count, scsi_cmd->count);
3324 	scsi_cmd->control = 0;
3325 
3326 	cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL,
3327 	    0, sense_len, sizeof(*scsi_cmd), timeout);
3328 }
3329 
3330 void
3331 scsi_write_filemarks(struct ccb_scsiio *csio, u_int32_t retries,
3332 		     void (*cbfcnp)(struct cam_periph *, union ccb *),
3333 		     u_int8_t tag_action, int immediate, int setmark,
3334 		     u_int32_t num_marks, u_int8_t sense_len,
3335 		     u_int32_t timeout)
3336 {
3337 	struct scsi_write_filemarks *scsi_cmd;
3338 
3339 	scsi_cmd = (struct scsi_write_filemarks *)&csio->cdb_io.cdb_bytes;
3340 	bzero(scsi_cmd, sizeof(*scsi_cmd));
3341 	scsi_cmd->opcode = WRITE_FILEMARKS;
3342 	if (immediate)
3343 		scsi_cmd->byte2 |= SWFMRK_IMMED;
3344 	if (setmark)
3345 		scsi_cmd->byte2 |= SWFMRK_WSMK;
3346 
3347 	scsi_ulto3b(num_marks, scsi_cmd->num_marks);
3348 
3349 	cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL,
3350 	    0, sense_len, sizeof(*scsi_cmd), timeout);
3351 }
3352 
3353 /*
3354  * The reserve and release unit commands differ only by their opcodes.
3355  */
3356 void
3357 scsi_reserve_release_unit(struct ccb_scsiio *csio, u_int32_t retries,
3358 			  void (*cbfcnp)(struct cam_periph *, union ccb *),
3359 			  u_int8_t tag_action, int third_party,
3360 			  int third_party_id, u_int8_t sense_len,
3361 			  u_int32_t timeout, int reserve)
3362 {
3363 	struct scsi_reserve_release_unit *scsi_cmd;
3364 
3365 	scsi_cmd = (struct scsi_reserve_release_unit *)&csio->cdb_io.cdb_bytes;
3366 	bzero(scsi_cmd, sizeof(*scsi_cmd));
3367 
3368 	if (reserve)
3369 		scsi_cmd->opcode = RESERVE_UNIT;
3370 	else
3371 		scsi_cmd->opcode = RELEASE_UNIT;
3372 
3373 	if (third_party) {
3374 		scsi_cmd->lun_thirdparty |= SRRU_3RD_PARTY;
3375 		scsi_cmd->lun_thirdparty |=
3376 			((third_party_id << SRRU_3RD_SHAMT) & SRRU_3RD_MASK);
3377 	}
3378 
3379 	cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL,
3380 	    0, sense_len, sizeof(*scsi_cmd), timeout);
3381 }
3382 
3383 void
3384 scsi_erase(struct ccb_scsiio *csio, u_int32_t retries,
3385 	   void (*cbfcnp)(struct cam_periph *, union ccb *),
3386 	   u_int8_t tag_action, int immediate, int long_erase,
3387 	   u_int8_t sense_len, u_int32_t timeout)
3388 {
3389 	struct scsi_erase *scsi_cmd;
3390 
3391 	scsi_cmd = (struct scsi_erase *)&csio->cdb_io.cdb_bytes;
3392 	bzero(scsi_cmd, sizeof(*scsi_cmd));
3393 
3394 	scsi_cmd->opcode = ERASE;
3395 
3396 	if (immediate)
3397 		scsi_cmd->lun_imm_long |= SE_IMMED;
3398 
3399 	if (long_erase)
3400 		scsi_cmd->lun_imm_long |= SE_LONG;
3401 
3402 	cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL,
3403 	    0, sense_len, sizeof(*scsi_cmd), timeout);
3404 }
3405 
3406 /*
3407  * Read Tape Position command.
3408  */
3409 void
3410 scsi_read_position(struct ccb_scsiio *csio, u_int32_t retries,
3411 		   void (*cbfcnp)(struct cam_periph *, union ccb *),
3412 		   u_int8_t tag_action, int hardsoft,
3413 		   struct scsi_tape_position_data *sbp,
3414 		   u_int8_t sense_len, u_int32_t timeout)
3415 {
3416 	struct scsi_tape_read_position *scmd;
3417 
3418 	cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_IN, tag_action,
3419 	    (u_int8_t *)sbp, sizeof (*sbp), sense_len, sizeof(*scmd), timeout);
3420 	scmd = (struct scsi_tape_read_position *)&csio->cdb_io.cdb_bytes;
3421 	bzero(scmd, sizeof(*scmd));
3422 	scmd->opcode = READ_POSITION;
3423 	scmd->byte1 = hardsoft;
3424 }
3425 
3426 /*
3427  * Set Tape Position command.
3428  */
3429 void
3430 scsi_set_position(struct ccb_scsiio *csio, u_int32_t retries,
3431 		   void (*cbfcnp)(struct cam_periph *, union ccb *),
3432 		   u_int8_t tag_action, int hardsoft, u_int32_t blkno,
3433 		   u_int8_t sense_len, u_int32_t timeout)
3434 {
3435 	struct scsi_tape_locate *scmd;
3436 
3437 	cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action,
3438 	    (u_int8_t *)NULL, 0, sense_len, sizeof(*scmd), timeout);
3439 	scmd = (struct scsi_tape_locate *)&csio->cdb_io.cdb_bytes;
3440 	bzero(scmd, sizeof(*scmd));
3441 	scmd->opcode = LOCATE;
3442 	if (hardsoft)
3443 		scmd->byte1 |= SA_SPOS_BT;
3444 	scsi_ulto4b(blkno, scmd->blkaddr);
3445 }
3446