xref: /freebsd/sys/cam/scsi/scsi_ch.c (revision 2ffd30f7ee15c87ee092cbac6a4438bcb3af923c)
1898b0535SWarner Losh /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: (BSD-2-Clause AND BSD-4-Clause)
3bec9534dSPedro F. Giffuni  *
476babe50SJustin T. Gibbs  * Copyright (c) 1997 Justin T. Gibbs.
52a888f93SKenneth D. Merry  * Copyright (c) 1997, 1998, 1999 Kenneth D. Merry.
676babe50SJustin T. Gibbs  * All rights reserved.
776babe50SJustin T. Gibbs  *
876babe50SJustin T. Gibbs  * Redistribution and use in source and binary forms, with or without
976babe50SJustin T. Gibbs  * modification, are permitted provided that the following conditions
1076babe50SJustin T. Gibbs  * are met:
1176babe50SJustin T. Gibbs  * 1. Redistributions of source code must retain the above copyright
1276babe50SJustin T. Gibbs  *    notice, this list of conditions, and the following disclaimer,
1376babe50SJustin T. Gibbs  *    without modification, immediately at the beginning of the file.
1476babe50SJustin T. Gibbs  * 2. The name of the author may not be used to endorse or promote products
1576babe50SJustin T. Gibbs  *    derived from this software without specific prior written permission.
1676babe50SJustin T. Gibbs  *
1776babe50SJustin T. Gibbs  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1876babe50SJustin T. Gibbs  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1976babe50SJustin T. Gibbs  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2076babe50SJustin T. Gibbs  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
2176babe50SJustin T. Gibbs  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2276babe50SJustin T. Gibbs  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2376babe50SJustin T. Gibbs  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2476babe50SJustin T. Gibbs  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2576babe50SJustin T. Gibbs  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2676babe50SJustin T. Gibbs  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2776babe50SJustin T. Gibbs  * SUCH DAMAGE.
2876babe50SJustin T. Gibbs  */
29ee709e70SDavid E. O'Brien 
30898b0535SWarner Losh /*-
3176babe50SJustin T. Gibbs  * Copyright (c) 1996, 1997 Jason R. Thorpe <thorpej@and.com>
3276babe50SJustin T. Gibbs  * All rights reserved.
3376babe50SJustin T. Gibbs  *
3476babe50SJustin T. Gibbs  * Partially based on an autochanger driver written by Stefan Grefen
3576babe50SJustin T. Gibbs  * and on an autochanger driver written by the Systems Programming Group
3676babe50SJustin T. Gibbs  * at the University of Utah Computer Science Department.
3776babe50SJustin T. Gibbs  *
3876babe50SJustin T. Gibbs  * Redistribution and use in source and binary forms, with or without
3976babe50SJustin T. Gibbs  * modification, are permitted provided that the following conditions
4076babe50SJustin T. Gibbs  * are met:
4176babe50SJustin T. Gibbs  * 1. Redistributions of source code must retain the above copyright
4276babe50SJustin T. Gibbs  *    notice, this list of conditions and the following disclaimer.
4376babe50SJustin T. Gibbs  * 2. Redistributions in binary form must reproduce the above copyright
4476babe50SJustin T. Gibbs  *    notice, this list of conditions and the following disclaimer in the
4576babe50SJustin T. Gibbs  *    documentation and/or other materials provided with the distribution.
4676babe50SJustin T. Gibbs  * 3. All advertising materials mentioning features or use of this software
4776babe50SJustin T. Gibbs  *    must display the following acknowledgements:
4876babe50SJustin T. Gibbs  *	This product includes software developed by Jason R. Thorpe
4976babe50SJustin T. Gibbs  *	for And Communications, http://www.and.com/
5076babe50SJustin T. Gibbs  * 4. The name of the author may not be used to endorse or promote products
5176babe50SJustin T. Gibbs  *    derived from this software without specific prior written permission.
5276babe50SJustin T. Gibbs  *
5376babe50SJustin T. Gibbs  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
5476babe50SJustin T. Gibbs  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
5576babe50SJustin T. Gibbs  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
5676babe50SJustin T. Gibbs  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
5776babe50SJustin T. Gibbs  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
5876babe50SJustin T. Gibbs  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
5976babe50SJustin T. Gibbs  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
6076babe50SJustin T. Gibbs  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
6176babe50SJustin T. Gibbs  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
6276babe50SJustin T. Gibbs  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
6376babe50SJustin T. Gibbs  * SUCH DAMAGE.
64b6eb1600SPedro F. Giffuni  *
65b6eb1600SPedro F. Giffuni  * $NetBSD: ch.c,v 1.34 1998/08/31 22:28:06 cgd Exp $
6676babe50SJustin T. Gibbs  */
6776babe50SJustin T. Gibbs 
6876babe50SJustin T. Gibbs #include <sys/param.h>
6976babe50SJustin T. Gibbs #include <sys/queue.h>
7076babe50SJustin T. Gibbs #include <sys/systm.h>
7176babe50SJustin T. Gibbs #include <sys/kernel.h>
7276babe50SJustin T. Gibbs #include <sys/types.h>
7376babe50SJustin T. Gibbs #include <sys/malloc.h>
7476babe50SJustin T. Gibbs #include <sys/fcntl.h>
7576babe50SJustin T. Gibbs #include <sys/conf.h>
7676babe50SJustin T. Gibbs #include <sys/chio.h>
7776babe50SJustin T. Gibbs #include <sys/errno.h>
7876babe50SJustin T. Gibbs #include <sys/devicestat.h>
7976babe50SJustin T. Gibbs 
8076babe50SJustin T. Gibbs #include <cam/cam.h>
8176babe50SJustin T. Gibbs #include <cam/cam_ccb.h>
8276babe50SJustin T. Gibbs #include <cam/cam_periph.h>
8376babe50SJustin T. Gibbs #include <cam/cam_xpt_periph.h>
8476babe50SJustin T. Gibbs #include <cam/cam_debug.h>
8576babe50SJustin T. Gibbs 
8676babe50SJustin T. Gibbs #include <cam/scsi/scsi_all.h>
8776babe50SJustin T. Gibbs #include <cam/scsi/scsi_message.h>
8876babe50SJustin T. Gibbs #include <cam/scsi/scsi_ch.h>
8976babe50SJustin T. Gibbs 
9076babe50SJustin T. Gibbs /*
9176babe50SJustin T. Gibbs  * Timeout definitions for various changer related commands.  They may
9276babe50SJustin T. Gibbs  * be too short for some devices (especially the timeout for INITIALIZE
9376babe50SJustin T. Gibbs  * ELEMENT STATUS).
9476babe50SJustin T. Gibbs  */
9576babe50SJustin T. Gibbs 
96*7c5d20a6SWarner Losh static const uint32_t	CH_TIMEOUT_MODE_SENSE                = 6000;
97*7c5d20a6SWarner Losh static const uint32_t	CH_TIMEOUT_MOVE_MEDIUM               = 15 * 60 * 1000;
98*7c5d20a6SWarner Losh static const uint32_t	CH_TIMEOUT_EXCHANGE_MEDIUM           = 15 * 60 * 1000;
99*7c5d20a6SWarner Losh static const uint32_t	CH_TIMEOUT_POSITION_TO_ELEMENT       = 15 * 60 * 1000;
100*7c5d20a6SWarner Losh static const uint32_t	CH_TIMEOUT_READ_ELEMENT_STATUS       = 5 * 60 * 1000;
101*7c5d20a6SWarner Losh static const uint32_t	CH_TIMEOUT_SEND_VOLTAG		     = 10000;
102*7c5d20a6SWarner Losh static const uint32_t	CH_TIMEOUT_INITIALIZE_ELEMENT_STATUS = 500000;
10376babe50SJustin T. Gibbs 
10476babe50SJustin T. Gibbs typedef enum {
105c552ebe1SKenneth D. Merry 	CH_FLAG_INVALID		= 0x001
10676babe50SJustin T. Gibbs } ch_flags;
10776babe50SJustin T. Gibbs 
10876babe50SJustin T. Gibbs typedef enum {
10976babe50SJustin T. Gibbs 	CH_STATE_PROBE,
11076babe50SJustin T. Gibbs 	CH_STATE_NORMAL
11176babe50SJustin T. Gibbs } ch_state;
11276babe50SJustin T. Gibbs 
11376babe50SJustin T. Gibbs typedef enum {
114227d67aaSAlexander Motin 	CH_CCB_PROBE
11576babe50SJustin T. Gibbs } ch_ccb_types;
11676babe50SJustin T. Gibbs 
117696db222SKenneth D. Merry typedef enum {
118696db222SKenneth D. Merry 	CH_Q_NONE	= 0x00,
119585f7966SKenneth D. Merry 	CH_Q_NO_DBD	= 0x01,
120585f7966SKenneth D. Merry 	CH_Q_NO_DVCID	= 0x02
121696db222SKenneth D. Merry } ch_quirks;
122696db222SKenneth D. Merry 
1236fb5c84eSSteven Hartland #define CH_Q_BIT_STRING	\
1246fb5c84eSSteven Hartland 	"\020"		\
125585f7966SKenneth D. Merry 	"\001NO_DBD"	\
126585f7966SKenneth D. Merry 	"\002NO_DVCID"
1276fb5c84eSSteven Hartland 
12876babe50SJustin T. Gibbs #define ccb_state	ppriv_field0
12976babe50SJustin T. Gibbs #define ccb_bp		ppriv_ptr1
13076babe50SJustin T. Gibbs 
13176babe50SJustin T. Gibbs struct scsi_mode_sense_data {
13276babe50SJustin T. Gibbs 	struct scsi_mode_header_6 header;
133696db222SKenneth D. Merry 	struct scsi_mode_blk_desc blk_desc;
13476babe50SJustin T. Gibbs 	union {
13576babe50SJustin T. Gibbs 		struct page_element_address_assignment ea;
13676babe50SJustin T. Gibbs 		struct page_transport_geometry_parameters tg;
13776babe50SJustin T. Gibbs 		struct page_device_capabilities cap;
13876babe50SJustin T. Gibbs 	} pages;
13976babe50SJustin T. Gibbs };
14076babe50SJustin T. Gibbs 
14176babe50SJustin T. Gibbs struct ch_softc {
14276babe50SJustin T. Gibbs 	ch_flags	flags;
14376babe50SJustin T. Gibbs 	ch_state	state;
144696db222SKenneth D. Merry 	ch_quirks	quirks;
145a9d2245eSPoul-Henning Kamp 	struct devstat	*device_stats;
14689c9c53dSPoul-Henning Kamp 	struct cdev     *dev;
14786d45c7fSKenneth D. Merry 	int		open_count;
14876babe50SJustin T. Gibbs 
14976babe50SJustin T. Gibbs 	int		sc_picker;	/* current picker */
15076babe50SJustin T. Gibbs 
15176babe50SJustin T. Gibbs 	/*
15276babe50SJustin T. Gibbs 	 * The following information is obtained from the
15376babe50SJustin T. Gibbs 	 * element address assignment page.
15476babe50SJustin T. Gibbs 	 */
15556824e13SPoul-Henning Kamp 	int		sc_firsts[CHET_MAX + 1];	/* firsts */
15656824e13SPoul-Henning Kamp 	int		sc_counts[CHET_MAX + 1];	/* counts */
15776babe50SJustin T. Gibbs 
15876babe50SJustin T. Gibbs 	/*
15976babe50SJustin T. Gibbs 	 * The following mask defines the legal combinations
16076babe50SJustin T. Gibbs 	 * of elements for the MOVE MEDIUM command.
16176babe50SJustin T. Gibbs 	 */
162*7c5d20a6SWarner Losh 	uint8_t	sc_movemask[CHET_MAX + 1];
16376babe50SJustin T. Gibbs 
16476babe50SJustin T. Gibbs 	/*
16576babe50SJustin T. Gibbs 	 * As above, but for EXCHANGE MEDIUM.
16676babe50SJustin T. Gibbs 	 */
167*7c5d20a6SWarner Losh 	uint8_t	sc_exchangemask[CHET_MAX + 1];
16876babe50SJustin T. Gibbs 
16976babe50SJustin T. Gibbs 	/*
17076babe50SJustin T. Gibbs 	 * Quirks; see below.  XXX KDM not implemented yet
17176babe50SJustin T. Gibbs 	 */
17276babe50SJustin T. Gibbs 	int		sc_settledelay;	/* delay for settle */
17376babe50SJustin T. Gibbs };
17476babe50SJustin T. Gibbs 
17576babe50SJustin T. Gibbs static	d_open_t	chopen;
17676babe50SJustin T. Gibbs static	d_close_t	chclose;
17776babe50SJustin T. Gibbs static	d_ioctl_t	chioctl;
17876babe50SJustin T. Gibbs static	periph_init_t	chinit;
17976babe50SJustin T. Gibbs static  periph_ctor_t	chregister;
180ee9c90c7SKenneth D. Merry static	periph_oninv_t	choninvalidate;
18176babe50SJustin T. Gibbs static  periph_dtor_t   chcleanup;
18276babe50SJustin T. Gibbs static  periph_start_t  chstart;
183*7c5d20a6SWarner Losh static	void		chasync(void *callback_arg, uint32_t code,
18476babe50SJustin T. Gibbs 				struct cam_path *path, void *arg);
18576babe50SJustin T. Gibbs static	void		chdone(struct cam_periph *periph,
18676babe50SJustin T. Gibbs 			       union ccb *done_ccb);
187*7c5d20a6SWarner Losh static	int		cherror(union ccb *ccb, uint32_t cam_flags,
188*7c5d20a6SWarner Losh 				uint32_t sense_flags);
18976babe50SJustin T. Gibbs static	int		chmove(struct cam_periph *periph,
19076babe50SJustin T. Gibbs 			       struct changer_move *cm);
19176babe50SJustin T. Gibbs static	int		chexchange(struct cam_periph *periph,
19276babe50SJustin T. Gibbs 				   struct changer_exchange *ce);
19376babe50SJustin T. Gibbs static	int		chposition(struct cam_periph *periph,
19476babe50SJustin T. Gibbs 				   struct changer_position *cp);
19576babe50SJustin T. Gibbs static	int		chgetelemstatus(struct cam_periph *periph,
19621b6ee96SKenneth D. Merry 				int scsi_version, u_long cmd,
19776babe50SJustin T. Gibbs 				struct changer_element_status_request *csr);
19876babe50SJustin T. Gibbs static	int		chsetvoltag(struct cam_periph *periph,
19976babe50SJustin T. Gibbs 				    struct changer_set_voltag_request *csvr);
20076babe50SJustin T. Gibbs static	int		chielem(struct cam_periph *periph,
20176babe50SJustin T. Gibbs 				unsigned int timeout);
20276babe50SJustin T. Gibbs static	int		chgetparams(struct cam_periph *periph);
20321b6ee96SKenneth D. Merry static	int		chscsiversion(struct cam_periph *periph);
20476babe50SJustin T. Gibbs 
20576babe50SJustin T. Gibbs static struct periph_driver chdriver =
20676babe50SJustin T. Gibbs {
20776babe50SJustin T. Gibbs 	chinit, "ch",
20876babe50SJustin T. Gibbs 	TAILQ_HEAD_INITIALIZER(chdriver.units), /* generation */ 0
20976babe50SJustin T. Gibbs };
21076babe50SJustin T. Gibbs 
2110b7c27b9SPeter Wemm PERIPHDRIVER_DECLARE(ch, chdriver);
21276babe50SJustin T. Gibbs 
2134e2f199eSPoul-Henning Kamp static struct cdevsw ch_cdevsw = {
214dc08ffecSPoul-Henning Kamp 	.d_version =	D_VERSION,
215c552ebe1SKenneth D. Merry 	.d_flags =	D_TRACKCLOSE,
2167ac40f5fSPoul-Henning Kamp 	.d_open =	chopen,
2177ac40f5fSPoul-Henning Kamp 	.d_close =	chclose,
2187ac40f5fSPoul-Henning Kamp 	.d_ioctl =	chioctl,
2197ac40f5fSPoul-Henning Kamp 	.d_name =	"ch",
22076babe50SJustin T. Gibbs };
22176babe50SJustin T. Gibbs 
222d745c852SEd Schouten static MALLOC_DEFINE(M_SCSICH, "scsi_ch", "scsi_ch buffers");
2230dd50e9bSScott Long 
22437c84183SPoul-Henning Kamp static void
chinit(void)22576babe50SJustin T. Gibbs chinit(void)
22676babe50SJustin T. Gibbs {
22776babe50SJustin T. Gibbs 	cam_status status;
22876babe50SJustin T. Gibbs 
22976babe50SJustin T. Gibbs 	/*
23076babe50SJustin T. Gibbs 	 * Install a global async callback.  This callback will
23176babe50SJustin T. Gibbs 	 * receive async callbacks like "new device found".
23276babe50SJustin T. Gibbs 	 */
23385d92640SScott Long 	status = xpt_register_async(AC_FOUND_DEVICE, chasync, NULL, NULL);
23476babe50SJustin T. Gibbs 
23576babe50SJustin T. Gibbs 	if (status != CAM_REQ_CMP) {
23676babe50SJustin T. Gibbs 		printf("ch: Failed to attach master async callback "
23776babe50SJustin T. Gibbs 		       "due to status 0x%x!\n", status);
23876babe50SJustin T. Gibbs 	}
23976babe50SJustin T. Gibbs }
24076babe50SJustin T. Gibbs 
24176babe50SJustin T. Gibbs static void
chdevgonecb(void * arg)24286d45c7fSKenneth D. Merry chdevgonecb(void *arg)
24386d45c7fSKenneth D. Merry {
24486d45c7fSKenneth D. Merry 	struct ch_softc   *softc;
24586d45c7fSKenneth D. Merry 	struct cam_periph *periph;
246227d67aaSAlexander Motin 	struct mtx *mtx;
24786d45c7fSKenneth D. Merry 	int i;
24886d45c7fSKenneth D. Merry 
24986d45c7fSKenneth D. Merry 	periph = (struct cam_periph *)arg;
250227d67aaSAlexander Motin 	mtx = cam_periph_mtx(periph);
251227d67aaSAlexander Motin 	mtx_lock(mtx);
25286d45c7fSKenneth D. Merry 
253227d67aaSAlexander Motin 	softc = (struct ch_softc *)periph->softc;
25486d45c7fSKenneth D. Merry 	KASSERT(softc->open_count >= 0, ("Negative open count %d",
25586d45c7fSKenneth D. Merry 		softc->open_count));
25686d45c7fSKenneth D. Merry 
25786d45c7fSKenneth D. Merry 	/*
25886d45c7fSKenneth D. Merry 	 * When we get this callback, we will get no more close calls from
25986d45c7fSKenneth D. Merry 	 * devfs.  So if we have any dangling opens, we need to release the
26086d45c7fSKenneth D. Merry 	 * reference held for that particular context.
26186d45c7fSKenneth D. Merry 	 */
26286d45c7fSKenneth D. Merry 	for (i = 0; i < softc->open_count; i++)
26386d45c7fSKenneth D. Merry 		cam_periph_release_locked(periph);
26486d45c7fSKenneth D. Merry 
26586d45c7fSKenneth D. Merry 	softc->open_count = 0;
26686d45c7fSKenneth D. Merry 
26786d45c7fSKenneth D. Merry 	/*
26886d45c7fSKenneth D. Merry 	 * Release the reference held for the device node, it is gone now.
26986d45c7fSKenneth D. Merry 	 */
27086d45c7fSKenneth D. Merry 	cam_periph_release_locked(periph);
27186d45c7fSKenneth D. Merry 
27286d45c7fSKenneth D. Merry 	/*
273227d67aaSAlexander Motin 	 * We reference the lock directly here, instead of using
27486d45c7fSKenneth D. Merry 	 * cam_periph_unlock().  The reason is that the final call to
27586d45c7fSKenneth D. Merry 	 * cam_periph_release_locked() above could result in the periph
27686d45c7fSKenneth D. Merry 	 * getting freed.  If that is the case, dereferencing the periph
27786d45c7fSKenneth D. Merry 	 * with a cam_periph_unlock() call would cause a page fault.
27886d45c7fSKenneth D. Merry 	 */
279227d67aaSAlexander Motin 	mtx_unlock(mtx);
28086d45c7fSKenneth D. Merry }
28186d45c7fSKenneth D. Merry 
28286d45c7fSKenneth D. Merry static void
choninvalidate(struct cam_periph * periph)283ee9c90c7SKenneth D. Merry choninvalidate(struct cam_periph *periph)
284ee9c90c7SKenneth D. Merry {
285ee9c90c7SKenneth D. Merry 	struct ch_softc *softc;
286ee9c90c7SKenneth D. Merry 
287ee9c90c7SKenneth D. Merry 	softc = (struct ch_softc *)periph->softc;
288ee9c90c7SKenneth D. Merry 
289ee9c90c7SKenneth D. Merry 	/*
290ee9c90c7SKenneth D. Merry 	 * De-register any async callbacks.
291ee9c90c7SKenneth D. Merry 	 */
29285d92640SScott Long 	xpt_register_async(0, chasync, periph, periph->path);
293ee9c90c7SKenneth D. Merry 
294ee9c90c7SKenneth D. Merry 	softc->flags |= CH_FLAG_INVALID;
295ee9c90c7SKenneth D. Merry 
29686d45c7fSKenneth D. Merry 	/*
29786d45c7fSKenneth D. Merry 	 * Tell devfs this device has gone away, and ask for a callback
29886d45c7fSKenneth D. Merry 	 * when it has cleaned up its state.
29986d45c7fSKenneth D. Merry 	 */
30086d45c7fSKenneth D. Merry 	destroy_dev_sched_cb(softc->dev, chdevgonecb, periph);
301ee9c90c7SKenneth D. Merry }
302ee9c90c7SKenneth D. Merry 
303ee9c90c7SKenneth D. Merry static void
chcleanup(struct cam_periph * periph)30476babe50SJustin T. Gibbs chcleanup(struct cam_periph *periph)
30576babe50SJustin T. Gibbs {
306ee9c90c7SKenneth D. Merry 	struct ch_softc *softc;
30776babe50SJustin T. Gibbs 
308ee9c90c7SKenneth D. Merry 	softc = (struct ch_softc *)periph->softc;
309ee9c90c7SKenneth D. Merry 
3105f3fed85SEdward Tomasz Napierala 	devstat_remove_entry(softc->device_stats);
31186d45c7fSKenneth D. Merry 
312ee9c90c7SKenneth D. Merry 	free(softc, M_DEVBUF);
31376babe50SJustin T. Gibbs }
31476babe50SJustin T. Gibbs 
31576babe50SJustin T. Gibbs static void
chasync(void * callback_arg,uint32_t code,struct cam_path * path,void * arg)316*7c5d20a6SWarner Losh chasync(void *callback_arg, uint32_t code, struct cam_path *path, void *arg)
31776babe50SJustin T. Gibbs {
31876babe50SJustin T. Gibbs 	struct cam_periph *periph;
31976babe50SJustin T. Gibbs 
32076babe50SJustin T. Gibbs 	periph = (struct cam_periph *)callback_arg;
32176babe50SJustin T. Gibbs 
32276babe50SJustin T. Gibbs 	switch(code) {
32376babe50SJustin T. Gibbs 	case AC_FOUND_DEVICE:
32476babe50SJustin T. Gibbs 	{
32576babe50SJustin T. Gibbs 		struct ccb_getdev *cgd;
32676babe50SJustin T. Gibbs 		cam_status status;
32776babe50SJustin T. Gibbs 
32876babe50SJustin T. Gibbs 		cgd = (struct ccb_getdev *)arg;
329c5ff3b2fSMatt Jacob 		if (cgd == NULL)
330c5ff3b2fSMatt Jacob 			break;
33176babe50SJustin T. Gibbs 
33252c9ce25SScott Long 		if (cgd->protocol != PROTO_SCSI)
33352c9ce25SScott Long 			break;
33492024858SAlexander Motin 		if (SID_QUAL(&cgd->inq_data) != SID_QUAL_LU_CONNECTED)
33592024858SAlexander Motin 			break;
33610b6172aSMatt Jacob 		if (SID_TYPE(&cgd->inq_data)!= T_CHANGER)
33776babe50SJustin T. Gibbs 			break;
33876babe50SJustin T. Gibbs 
33976babe50SJustin T. Gibbs 		/*
34076babe50SJustin T. Gibbs 		 * Allocate a peripheral instance for
34176babe50SJustin T. Gibbs 		 * this device and start the probe
34276babe50SJustin T. Gibbs 		 * process.
34376babe50SJustin T. Gibbs 		 */
344ee9c90c7SKenneth D. Merry 		status = cam_periph_alloc(chregister, choninvalidate,
345ee9c90c7SKenneth D. Merry 					  chcleanup, chstart, "ch",
346227d67aaSAlexander Motin 					  CAM_PERIPH_BIO, path,
34776babe50SJustin T. Gibbs 					  chasync, AC_FOUND_DEVICE, cgd);
34876babe50SJustin T. Gibbs 
34976babe50SJustin T. Gibbs 		if (status != CAM_REQ_CMP
35076babe50SJustin T. Gibbs 		 && status != CAM_REQ_INPROG)
35176babe50SJustin T. Gibbs 			printf("chasync: Unable to probe new device "
35276babe50SJustin T. Gibbs 			       "due to status 0x%x\n", status);
35376babe50SJustin T. Gibbs 
35476babe50SJustin T. Gibbs 		break;
35576babe50SJustin T. Gibbs 	}
35676babe50SJustin T. Gibbs 	default:
357516871c6SJustin T. Gibbs 		cam_periph_async(periph, code, path, arg);
35876babe50SJustin T. Gibbs 		break;
35976babe50SJustin T. Gibbs 	}
36076babe50SJustin T. Gibbs }
36176babe50SJustin T. Gibbs 
36276babe50SJustin T. Gibbs static cam_status
chregister(struct cam_periph * periph,void * arg)36376babe50SJustin T. Gibbs chregister(struct cam_periph *periph, void *arg)
36476babe50SJustin T. Gibbs {
36576babe50SJustin T. Gibbs 	struct ch_softc *softc;
36676babe50SJustin T. Gibbs 	struct ccb_getdev *cgd;
367b8b6b5d3SAlexander Motin 	struct ccb_pathinq cpi;
368ee198893SKonstantin Belousov 	struct make_dev_args args;
369ee198893SKonstantin Belousov 	int error;
37076babe50SJustin T. Gibbs 
37176babe50SJustin T. Gibbs 	cgd = (struct ccb_getdev *)arg;
37276babe50SJustin T. Gibbs 	if (cgd == NULL) {
37376babe50SJustin T. Gibbs 		printf("chregister: no getdev CCB, can't register device\n");
37476babe50SJustin T. Gibbs 		return(CAM_REQ_CMP_ERR);
37576babe50SJustin T. Gibbs 	}
37676babe50SJustin T. Gibbs 
37776babe50SJustin T. Gibbs 	softc = (struct ch_softc *)malloc(sizeof(*softc),M_DEVBUF,M_NOWAIT);
37876babe50SJustin T. Gibbs 
37976babe50SJustin T. Gibbs 	if (softc == NULL) {
38076babe50SJustin T. Gibbs 		printf("chregister: Unable to probe new device. "
38176babe50SJustin T. Gibbs 		       "Unable to allocate softc\n");
38276babe50SJustin T. Gibbs 		return(CAM_REQ_CMP_ERR);
38376babe50SJustin T. Gibbs 	}
38476babe50SJustin T. Gibbs 
38576babe50SJustin T. Gibbs 	bzero(softc, sizeof(*softc));
38676babe50SJustin T. Gibbs 	softc->state = CH_STATE_PROBE;
38776babe50SJustin T. Gibbs 	periph->softc = softc;
388696db222SKenneth D. Merry 	softc->quirks = CH_Q_NONE;
38976babe50SJustin T. Gibbs 
390585f7966SKenneth D. Merry 	/*
391585f7966SKenneth D. Merry 	 * The DVCID and CURDATA bits were not introduced until the SMC
392585f7966SKenneth D. Merry 	 * spec.  If this device claims SCSI-2 or earlier support, then it
393585f7966SKenneth D. Merry 	 * very likely does not support these bits.
394585f7966SKenneth D. Merry 	 */
395585f7966SKenneth D. Merry 	if (cgd->inq_data.version <= SCSI_REV_2)
396585f7966SKenneth D. Merry 		softc->quirks |= CH_Q_NO_DVCID;
397585f7966SKenneth D. Merry 
398762a7f4fSWarner Losh 	xpt_path_inq(&cpi, periph->path);
399b8b6b5d3SAlexander Motin 
40076babe50SJustin T. Gibbs 	/*
40176babe50SJustin T. Gibbs 	 * Changers don't have a blocksize, and obviously don't support
40276babe50SJustin T. Gibbs 	 * tagged queueing.
40376babe50SJustin T. Gibbs 	 */
40485d92640SScott Long 	cam_periph_unlock(periph);
405a9d2245eSPoul-Henning Kamp 	softc->device_stats = devstat_new_entry("ch",
40676babe50SJustin T. Gibbs 			  periph->unit_number, 0,
40776babe50SJustin T. Gibbs 			  DEVSTAT_NO_BLOCKSIZE | DEVSTAT_NO_ORDERED_TAGS,
408b8b6b5d3SAlexander Motin 			  SID_TYPE(&cgd->inq_data) |
409b8b6b5d3SAlexander Motin 			  XPORT_DEVSTAT_TYPE(cpi.transport),
4102a888f93SKenneth D. Merry 			  DEVSTAT_PRIORITY_OTHER);
41176babe50SJustin T. Gibbs 
41286d45c7fSKenneth D. Merry 	/*
41386d45c7fSKenneth D. Merry 	 * Acquire a reference to the periph before we create the devfs
41486d45c7fSKenneth D. Merry 	 * instance for it.  We'll release this reference once the devfs
41586d45c7fSKenneth D. Merry 	 * instance has been freed.
41686d45c7fSKenneth D. Merry 	 */
4170afdc471SKenneth D. Merry 	if (cam_periph_acquire(periph) != 0) {
41886d45c7fSKenneth D. Merry 		xpt_print(periph->path, "%s: lost periph during "
41986d45c7fSKenneth D. Merry 			  "registration!\n", __func__);
42086d45c7fSKenneth D. Merry 		cam_periph_lock(periph);
42186d45c7fSKenneth D. Merry 		return (CAM_REQ_CMP_ERR);
42286d45c7fSKenneth D. Merry 	}
42386d45c7fSKenneth D. Merry 
4242728bfbdSMatt Jacob 	/* Register the device */
425ee198893SKonstantin Belousov 	make_dev_args_init(&args);
426ee198893SKonstantin Belousov 	args.mda_devsw = &ch_cdevsw;
427ee198893SKonstantin Belousov 	args.mda_unit = periph->unit_number;
428ee198893SKonstantin Belousov 	args.mda_uid = UID_ROOT;
429ee198893SKonstantin Belousov 	args.mda_gid = GID_OPERATOR;
430ee198893SKonstantin Belousov 	args.mda_mode = 0600;
431ee198893SKonstantin Belousov 	args.mda_si_drv1 = periph;
432ee198893SKonstantin Belousov 	error = make_dev_s(&args, &softc->dev, "%s%d", periph->periph_name,
4332728bfbdSMatt Jacob 	    periph->unit_number);
4342b83592fSScott Long 	cam_periph_lock(periph);
435ee198893SKonstantin Belousov 	if (error != 0) {
436ee198893SKonstantin Belousov 		cam_periph_release_locked(periph);
437ee198893SKonstantin Belousov 		return (CAM_REQ_CMP_ERR);
438ee198893SKonstantin Belousov 	}
4392728bfbdSMatt Jacob 
44076babe50SJustin T. Gibbs 	/*
44176babe50SJustin T. Gibbs 	 * Add an async callback so that we get
44276babe50SJustin T. Gibbs 	 * notified if this device goes away.
44376babe50SJustin T. Gibbs 	 */
44485d92640SScott Long 	xpt_register_async(AC_LOST_DEVICE, chasync, periph, periph->path);
44576babe50SJustin T. Gibbs 
44676babe50SJustin T. Gibbs 	/*
4472b83592fSScott Long 	 * Lock this periph until we are setup.
44876babe50SJustin T. Gibbs 	 * This first call can't block
44976babe50SJustin T. Gibbs 	 */
4502b83592fSScott Long 	(void)cam_periph_hold(periph, PRIBIO);
45183c5d981SAlexander Motin 	xpt_schedule(periph, CAM_PRIORITY_DEV);
45276babe50SJustin T. Gibbs 
45376babe50SJustin T. Gibbs 	return(CAM_REQ_CMP);
45476babe50SJustin T. Gibbs }
45576babe50SJustin T. Gibbs 
45676babe50SJustin T. Gibbs static int
chopen(struct cdev * dev,int flags,int fmt,struct thread * td)45789c9c53dSPoul-Henning Kamp chopen(struct cdev *dev, int flags, int fmt, struct thread *td)
45876babe50SJustin T. Gibbs {
45976babe50SJustin T. Gibbs 	struct cam_periph *periph;
46076babe50SJustin T. Gibbs 	struct ch_softc *softc;
461e2a5fdf9SNate Lawson 	int error;
46276babe50SJustin T. Gibbs 
463e2a5fdf9SNate Lawson 	periph = (struct cam_periph *)dev->si_drv1;
4640afdc471SKenneth D. Merry 	if (cam_periph_acquire(periph) != 0)
46576babe50SJustin T. Gibbs 		return (ENXIO);
46676babe50SJustin T. Gibbs 
46776babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
46876babe50SJustin T. Gibbs 
4692b83592fSScott Long 	cam_periph_lock(periph);
4702b83592fSScott Long 
471ee9c90c7SKenneth D. Merry 	if (softc->flags & CH_FLAG_INVALID) {
472c552ebe1SKenneth D. Merry 		cam_periph_release_locked(periph);
4732b83592fSScott Long 		cam_periph_unlock(periph);
47476babe50SJustin T. Gibbs 		return(ENXIO);
475ee9c90c7SKenneth D. Merry 	}
47676babe50SJustin T. Gibbs 
4772b83592fSScott Long 	if ((error = cam_periph_hold(periph, PRIBIO | PCATCH)) != 0) {
4782b83592fSScott Long 		cam_periph_unlock(periph);
4792b83592fSScott Long 		cam_periph_release(periph);
4802b83592fSScott Long 		return (error);
48176babe50SJustin T. Gibbs 	}
48276babe50SJustin T. Gibbs 
48376babe50SJustin T. Gibbs 	/*
48476babe50SJustin T. Gibbs 	 * Load information about this changer device into the softc.
48576babe50SJustin T. Gibbs 	 */
48676babe50SJustin T. Gibbs 	if ((error = chgetparams(periph)) != 0) {
48721b6ee96SKenneth D. Merry 		cam_periph_unhold(periph);
488c552ebe1SKenneth D. Merry 		cam_periph_release_locked(periph);
48976babe50SJustin T. Gibbs 		cam_periph_unlock(periph);
49076babe50SJustin T. Gibbs 		return(error);
49176babe50SJustin T. Gibbs 	}
49276babe50SJustin T. Gibbs 
4932b83592fSScott Long 	cam_periph_unhold(periph);
49486d45c7fSKenneth D. Merry 
49586d45c7fSKenneth D. Merry 	softc->open_count++;
49686d45c7fSKenneth D. Merry 
49776babe50SJustin T. Gibbs 	cam_periph_unlock(periph);
49876babe50SJustin T. Gibbs 
49976babe50SJustin T. Gibbs 	return(error);
50076babe50SJustin T. Gibbs }
50176babe50SJustin T. Gibbs 
50276babe50SJustin T. Gibbs static int
chclose(struct cdev * dev,int flag,int fmt,struct thread * td)50389c9c53dSPoul-Henning Kamp chclose(struct cdev *dev, int flag, int fmt, struct thread *td)
50476babe50SJustin T. Gibbs {
50576babe50SJustin T. Gibbs 	struct	cam_periph *periph;
50686d45c7fSKenneth D. Merry 	struct  ch_softc *softc;
507227d67aaSAlexander Motin 	struct mtx *mtx;
50876babe50SJustin T. Gibbs 
509e2a5fdf9SNate Lawson 	periph = (struct cam_periph *)dev->si_drv1;
510227d67aaSAlexander Motin 	mtx = cam_periph_mtx(periph);
511227d67aaSAlexander Motin 	mtx_lock(mtx);
51276babe50SJustin T. Gibbs 
51386d45c7fSKenneth D. Merry 	softc = (struct ch_softc *)periph->softc;
51486d45c7fSKenneth D. Merry 	softc->open_count--;
51586d45c7fSKenneth D. Merry 
51686d45c7fSKenneth D. Merry 	cam_periph_release_locked(periph);
51786d45c7fSKenneth D. Merry 
51886d45c7fSKenneth D. Merry 	/*
519227d67aaSAlexander Motin 	 * We reference the lock directly here, instead of using
52086d45c7fSKenneth D. Merry 	 * cam_periph_unlock().  The reason is that the call to
52186d45c7fSKenneth D. Merry 	 * cam_periph_release_locked() above could result in the periph
52286d45c7fSKenneth D. Merry 	 * getting freed.  If that is the case, dereferencing the periph
52386d45c7fSKenneth D. Merry 	 * with a cam_periph_unlock() call would cause a page fault.
52486d45c7fSKenneth D. Merry 	 *
52586d45c7fSKenneth D. Merry 	 * cam_periph_release() avoids this problem using the same method,
52686d45c7fSKenneth D. Merry 	 * but we're manually acquiring and dropping the lock here to
52786d45c7fSKenneth D. Merry 	 * protect the open count and avoid another lock acquisition and
52886d45c7fSKenneth D. Merry 	 * release.
52986d45c7fSKenneth D. Merry 	 */
530227d67aaSAlexander Motin 	mtx_unlock(mtx);
53176babe50SJustin T. Gibbs 
53276babe50SJustin T. Gibbs 	return(0);
53376babe50SJustin T. Gibbs }
53476babe50SJustin T. Gibbs 
53576babe50SJustin T. Gibbs static void
chstart(struct cam_periph * periph,union ccb * start_ccb)53676babe50SJustin T. Gibbs chstart(struct cam_periph *periph, union ccb *start_ccb)
53776babe50SJustin T. Gibbs {
53876babe50SJustin T. Gibbs 	struct ch_softc *softc;
53976babe50SJustin T. Gibbs 
54076babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
54176babe50SJustin T. Gibbs 
54276babe50SJustin T. Gibbs 	switch (softc->state) {
54376babe50SJustin T. Gibbs 	case CH_STATE_NORMAL:
54476babe50SJustin T. Gibbs 	{
545227d67aaSAlexander Motin 		xpt_release_ccb(start_ccb);
54676babe50SJustin T. Gibbs 		break;
54776babe50SJustin T. Gibbs 	}
54876babe50SJustin T. Gibbs 	case CH_STATE_PROBE:
54976babe50SJustin T. Gibbs 	{
550696db222SKenneth D. Merry 		int mode_buffer_len;
551696db222SKenneth D. Merry 		void *mode_buffer;
55276babe50SJustin T. Gibbs 
553696db222SKenneth D. Merry 		/*
554696db222SKenneth D. Merry 		 * Include the block descriptor when calculating the mode
555696db222SKenneth D. Merry 		 * buffer length,
556696db222SKenneth D. Merry 		 */
557696db222SKenneth D. Merry 		mode_buffer_len = sizeof(struct scsi_mode_header_6) +
558696db222SKenneth D. Merry 				  sizeof(struct scsi_mode_blk_desc) +
559696db222SKenneth D. Merry 				 sizeof(struct page_element_address_assignment);
56076babe50SJustin T. Gibbs 
5610dd50e9bSScott Long 		mode_buffer = malloc(mode_buffer_len, M_SCSICH, M_NOWAIT);
562696db222SKenneth D. Merry 
563696db222SKenneth D. Merry 		if (mode_buffer == NULL) {
56476babe50SJustin T. Gibbs 			printf("chstart: couldn't malloc mode sense data\n");
56576babe50SJustin T. Gibbs 			break;
56676babe50SJustin T. Gibbs 		}
567696db222SKenneth D. Merry 		bzero(mode_buffer, mode_buffer_len);
56876babe50SJustin T. Gibbs 
56976babe50SJustin T. Gibbs 		/*
57076babe50SJustin T. Gibbs 		 * Get the element address assignment page.
57176babe50SJustin T. Gibbs 		 */
57276babe50SJustin T. Gibbs 		scsi_mode_sense(&start_ccb->csio,
57376babe50SJustin T. Gibbs 				/* retries */ 1,
57476babe50SJustin T. Gibbs 				/* cbfcnp */ chdone,
57576babe50SJustin T. Gibbs 				/* tag_action */ MSG_SIMPLE_Q_TAG,
576696db222SKenneth D. Merry 				/* dbd */ (softc->quirks & CH_Q_NO_DBD) ?
577696db222SKenneth D. Merry 					FALSE : TRUE,
57854644e21SAlexander Motin 				/* pc */ SMS_PAGE_CTRL_CURRENT,
57976babe50SJustin T. Gibbs 				/* page */ CH_ELEMENT_ADDR_ASSIGN_PAGE,
580*7c5d20a6SWarner Losh 				/* param_buf */ (uint8_t *)mode_buffer,
581696db222SKenneth D. Merry 				/* param_len */ mode_buffer_len,
58276babe50SJustin T. Gibbs 				/* sense_len */ SSD_FULL_SIZE,
58376babe50SJustin T. Gibbs 				/* timeout */ CH_TIMEOUT_MODE_SENSE);
58476babe50SJustin T. Gibbs 
58576babe50SJustin T. Gibbs 		start_ccb->ccb_h.ccb_bp = NULL;
58676babe50SJustin T. Gibbs 		start_ccb->ccb_h.ccb_state = CH_CCB_PROBE;
58776babe50SJustin T. Gibbs 		xpt_action(start_ccb);
58876babe50SJustin T. Gibbs 		break;
58976babe50SJustin T. Gibbs 	}
59076babe50SJustin T. Gibbs 	}
59176babe50SJustin T. Gibbs }
59276babe50SJustin T. Gibbs 
59376babe50SJustin T. Gibbs static void
chdone(struct cam_periph * periph,union ccb * done_ccb)59476babe50SJustin T. Gibbs chdone(struct cam_periph *periph, union ccb *done_ccb)
59576babe50SJustin T. Gibbs {
59676babe50SJustin T. Gibbs 	struct ch_softc *softc;
59776babe50SJustin T. Gibbs 	struct ccb_scsiio *csio;
59876babe50SJustin T. Gibbs 
59976babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
60076babe50SJustin T. Gibbs 	csio = &done_ccb->csio;
60176babe50SJustin T. Gibbs 
60276babe50SJustin T. Gibbs 	switch(done_ccb->ccb_h.ccb_state) {
60376babe50SJustin T. Gibbs 	case CH_CCB_PROBE:
60476babe50SJustin T. Gibbs 	{
605696db222SKenneth D. Merry 		struct scsi_mode_header_6 *mode_header;
606696db222SKenneth D. Merry 		struct page_element_address_assignment *ea;
60776babe50SJustin T. Gibbs 		char announce_buf[80];
60876babe50SJustin T. Gibbs 
609696db222SKenneth D. Merry 		mode_header = (struct scsi_mode_header_6 *)csio->data_ptr;
610696db222SKenneth D. Merry 
611696db222SKenneth D. Merry 		ea = (struct page_element_address_assignment *)
612696db222SKenneth D. Merry 			find_mode_page_6(mode_header);
61376babe50SJustin T. Gibbs 
61476babe50SJustin T. Gibbs 		if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP){
61576babe50SJustin T. Gibbs 
616696db222SKenneth D. Merry 			softc->sc_firsts[CHET_MT] = scsi_2btoul(ea->mtea);
617696db222SKenneth D. Merry 			softc->sc_counts[CHET_MT] = scsi_2btoul(ea->nmte);
618696db222SKenneth D. Merry 			softc->sc_firsts[CHET_ST] = scsi_2btoul(ea->fsea);
619696db222SKenneth D. Merry 			softc->sc_counts[CHET_ST] = scsi_2btoul(ea->nse);
620696db222SKenneth D. Merry 			softc->sc_firsts[CHET_IE] = scsi_2btoul(ea->fieea);
621696db222SKenneth D. Merry 			softc->sc_counts[CHET_IE] = scsi_2btoul(ea->niee);
622696db222SKenneth D. Merry 			softc->sc_firsts[CHET_DT] = scsi_2btoul(ea->fdtea);
623696db222SKenneth D. Merry 			softc->sc_counts[CHET_DT] = scsi_2btoul(ea->ndte);
62476babe50SJustin T. Gibbs 			softc->sc_picker = softc->sc_firsts[CHET_MT];
62576babe50SJustin T. Gibbs 
62676babe50SJustin T. Gibbs #define PLURAL(c)	(c) == 1 ? "" : "s"
6272127f260SArchie Cobbs 			snprintf(announce_buf, sizeof(announce_buf),
6282127f260SArchie Cobbs 				"%d slot%s, %d drive%s, "
62976babe50SJustin T. Gibbs 				"%d picker%s, %d portal%s",
63076babe50SJustin T. Gibbs 		    		softc->sc_counts[CHET_ST],
63176babe50SJustin T. Gibbs 				PLURAL(softc->sc_counts[CHET_ST]),
63276babe50SJustin T. Gibbs 		    		softc->sc_counts[CHET_DT],
63376babe50SJustin T. Gibbs 				PLURAL(softc->sc_counts[CHET_DT]),
63476babe50SJustin T. Gibbs 		    		softc->sc_counts[CHET_MT],
63576babe50SJustin T. Gibbs 				PLURAL(softc->sc_counts[CHET_MT]),
63676babe50SJustin T. Gibbs 		    		softc->sc_counts[CHET_IE],
63776babe50SJustin T. Gibbs 				PLURAL(softc->sc_counts[CHET_IE]));
63876babe50SJustin T. Gibbs #undef PLURAL
639d8e49c71SPedro F. Giffuni 			if (announce_buf[0] != '\0') {
640d8e49c71SPedro F. Giffuni 				xpt_announce_periph(periph, announce_buf);
641d8e49c71SPedro F. Giffuni 				xpt_announce_quirks(periph, softc->quirks,
642d8e49c71SPedro F. Giffuni 				    CH_Q_BIT_STRING);
643d8e49c71SPedro F. Giffuni 			}
64476babe50SJustin T. Gibbs 		} else {
64576babe50SJustin T. Gibbs 			int error;
64676babe50SJustin T. Gibbs 
6473393f8daSKenneth D. Merry 			error = cherror(done_ccb, CAM_RETRY_SELTO,
6483393f8daSKenneth D. Merry 					SF_RETRY_UA | SF_NO_PRINT);
64976babe50SJustin T. Gibbs 			/*
65076babe50SJustin T. Gibbs 			 * Retry any UNIT ATTENTION type errors.  They
65176babe50SJustin T. Gibbs 			 * are expected at boot.
65276babe50SJustin T. Gibbs 			 */
65376babe50SJustin T. Gibbs 			if (error == ERESTART) {
65476babe50SJustin T. Gibbs 				/*
6555a0c02d2SPedro F. Giffuni 				 * A retry was scheduled, so
65676babe50SJustin T. Gibbs 				 * just return.
65776babe50SJustin T. Gibbs 				 */
65876babe50SJustin T. Gibbs 				return;
65976babe50SJustin T. Gibbs 			} else if (error != 0) {
660696db222SKenneth D. Merry 				struct scsi_mode_sense_6 *sms;
66187dd1668SMark Johnston 				int frozen, retry_scheduled;
662696db222SKenneth D. Merry 
663696db222SKenneth D. Merry 				sms = (struct scsi_mode_sense_6 *)
664696db222SKenneth D. Merry 					done_ccb->csio.cdb_io.cdb_bytes;
66587dd1668SMark Johnston 				frozen = (done_ccb->ccb_h.status &
66687dd1668SMark Johnston 				    CAM_DEV_QFRZN) != 0;
667696db222SKenneth D. Merry 
668696db222SKenneth D. Merry 				/*
669696db222SKenneth D. Merry 				 * Check to see if block descriptors were
670696db222SKenneth D. Merry 				 * disabled.  Some devices don't like that.
671696db222SKenneth D. Merry 				 * We're taking advantage of the fact that
672696db222SKenneth D. Merry 				 * the first few bytes of the 6 and 10 byte
673696db222SKenneth D. Merry 				 * mode sense commands are the same.  If
674696db222SKenneth D. Merry 				 * block descriptors were disabled, enable
675696db222SKenneth D. Merry 				 * them and re-send the command.
676696db222SKenneth D. Merry 				 */
67787dd1668SMark Johnston 				if ((sms->byte2 & SMS_DBD) != 0 &&
67887dd1668SMark Johnston 				    (periph->flags & CAM_PERIPH_INVALID) == 0) {
679696db222SKenneth D. Merry 					sms->byte2 &= ~SMS_DBD;
680696db222SKenneth D. Merry 					xpt_action(done_ccb);
681696db222SKenneth D. Merry 					softc->quirks |= CH_Q_NO_DBD;
682696db222SKenneth D. Merry 					retry_scheduled = 1;
683696db222SKenneth D. Merry 				} else
684696db222SKenneth D. Merry 					retry_scheduled = 0;
685696db222SKenneth D. Merry 
68676babe50SJustin T. Gibbs 				/* Don't wedge this device's queue */
68787dd1668SMark Johnston 				if (frozen)
68876babe50SJustin T. Gibbs 					cam_release_devq(done_ccb->ccb_h.path,
68976babe50SJustin T. Gibbs 						 /*relsim_flags*/0,
69076babe50SJustin T. Gibbs 						 /*reduction*/0,
69176babe50SJustin T. Gibbs 						 /*timeout*/0,
69276babe50SJustin T. Gibbs 						 /*getcount_only*/0);
693696db222SKenneth D. Merry 
694696db222SKenneth D. Merry 				if (retry_scheduled)
695696db222SKenneth D. Merry 					return;
696696db222SKenneth D. Merry 
697696db222SKenneth D. Merry 				if ((done_ccb->ccb_h.status & CAM_STATUS_MASK)
698696db222SKenneth D. Merry 				    == CAM_SCSI_STATUS_ERROR)
699696db222SKenneth D. Merry 					scsi_sense_print(&done_ccb->csio);
700696db222SKenneth D. Merry 				else {
701f0d9af51SMatt Jacob 					xpt_print(periph->path,
702f0d9af51SMatt Jacob 					    "got CAM status %#x\n",
703696db222SKenneth D. Merry 					    done_ccb->ccb_h.status);
704696db222SKenneth D. Merry 				}
705f0d9af51SMatt Jacob 				xpt_print(periph->path, "fatal error, failed "
706f0d9af51SMatt Jacob 				    "to attach to device\n");
707696db222SKenneth D. Merry 
708696db222SKenneth D. Merry 				cam_periph_invalidate(periph);
70976babe50SJustin T. Gibbs 			}
71076babe50SJustin T. Gibbs 		}
71176babe50SJustin T. Gibbs 		softc->state = CH_STATE_NORMAL;
7120dd50e9bSScott Long 		free(mode_header, M_SCSICH);
713a68fce35SKenneth D. Merry 		/*
714a68fce35SKenneth D. Merry 		 * Since our peripheral may be invalidated by an error
715a68fce35SKenneth D. Merry 		 * above or an external event, we must release our CCB
716a68fce35SKenneth D. Merry 		 * before releasing the probe lock on the peripheral.
717a68fce35SKenneth D. Merry 		 * The peripheral will only go away once the last lock
718a68fce35SKenneth D. Merry 		 * is removed, and we need it around for the CCB release
719a68fce35SKenneth D. Merry 		 * operation.
720a68fce35SKenneth D. Merry 		 */
721a68fce35SKenneth D. Merry 		xpt_release_ccb(done_ccb);
7222b83592fSScott Long 		cam_periph_unhold(periph);
723a68fce35SKenneth D. Merry 		return;
72476babe50SJustin T. Gibbs 	}
725a68fce35SKenneth D. Merry 	default:
726a68fce35SKenneth D. Merry 		break;
72776babe50SJustin T. Gibbs 	}
72876babe50SJustin T. Gibbs 	xpt_release_ccb(done_ccb);
72976babe50SJustin T. Gibbs }
73076babe50SJustin T. Gibbs 
73176babe50SJustin T. Gibbs static int
cherror(union ccb * ccb,uint32_t cam_flags,uint32_t sense_flags)732*7c5d20a6SWarner Losh cherror(union ccb *ccb, uint32_t cam_flags, uint32_t sense_flags)
73376babe50SJustin T. Gibbs {
73476babe50SJustin T. Gibbs 
735553484aeSWarner Losh 	return (cam_periph_error(ccb, cam_flags, sense_flags));
73676babe50SJustin T. Gibbs }
73776babe50SJustin T. Gibbs 
73876babe50SJustin T. Gibbs static int
chioctl(struct cdev * dev,u_long cmd,caddr_t addr,int flag,struct thread * td)73989c9c53dSPoul-Henning Kamp chioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
74076babe50SJustin T. Gibbs {
74176babe50SJustin T. Gibbs 	struct cam_periph *periph;
74276babe50SJustin T. Gibbs 	struct ch_softc *softc;
74376babe50SJustin T. Gibbs 	int error;
74476babe50SJustin T. Gibbs 
745e2a5fdf9SNate Lawson 	periph = (struct cam_periph *)dev->si_drv1;
7462b83592fSScott Long 	cam_periph_lock(periph);
74776babe50SJustin T. Gibbs 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("entering chioctl\n"));
74876babe50SJustin T. Gibbs 
74976babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
75076babe50SJustin T. Gibbs 
75176babe50SJustin T. Gibbs 	error = 0;
75276babe50SJustin T. Gibbs 
75376babe50SJustin T. Gibbs 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE,
7546326180fSKenneth D. Merry 		  ("trying to do ioctl %#lx\n", cmd));
75576babe50SJustin T. Gibbs 
75676babe50SJustin T. Gibbs 	/*
75776babe50SJustin T. Gibbs 	 * If this command can change the device's state, we must
75876babe50SJustin T. Gibbs 	 * have the device open for writing.
75976babe50SJustin T. Gibbs 	 */
76076babe50SJustin T. Gibbs 	switch (cmd) {
76176babe50SJustin T. Gibbs 	case CHIOGPICKER:
76276babe50SJustin T. Gibbs 	case CHIOGPARAMS:
76321b6ee96SKenneth D. Merry 	case OCHIOGSTATUS:
76476babe50SJustin T. Gibbs 	case CHIOGSTATUS:
76576babe50SJustin T. Gibbs 		break;
76676babe50SJustin T. Gibbs 
76776babe50SJustin T. Gibbs 	default:
7682b83592fSScott Long 		if ((flag & FWRITE) == 0) {
7692b83592fSScott Long 			cam_periph_unlock(periph);
77076babe50SJustin T. Gibbs 			return (EBADF);
77176babe50SJustin T. Gibbs 		}
7722b83592fSScott Long 	}
77376babe50SJustin T. Gibbs 
77476babe50SJustin T. Gibbs 	switch (cmd) {
77576babe50SJustin T. Gibbs 	case CHIOMOVE:
77676babe50SJustin T. Gibbs 		error = chmove(periph, (struct changer_move *)addr);
77776babe50SJustin T. Gibbs 		break;
77876babe50SJustin T. Gibbs 
77976babe50SJustin T. Gibbs 	case CHIOEXCHANGE:
78076babe50SJustin T. Gibbs 		error = chexchange(periph, (struct changer_exchange *)addr);
78176babe50SJustin T. Gibbs 		break;
78276babe50SJustin T. Gibbs 
78376babe50SJustin T. Gibbs 	case CHIOPOSITION:
78476babe50SJustin T. Gibbs 		error = chposition(periph, (struct changer_position *)addr);
78576babe50SJustin T. Gibbs 		break;
78676babe50SJustin T. Gibbs 
78776babe50SJustin T. Gibbs 	case CHIOGPICKER:
78876babe50SJustin T. Gibbs 		*(int *)addr = softc->sc_picker - softc->sc_firsts[CHET_MT];
78976babe50SJustin T. Gibbs 		break;
79076babe50SJustin T. Gibbs 
79176babe50SJustin T. Gibbs 	case CHIOSPICKER:
79276babe50SJustin T. Gibbs 	{
79376babe50SJustin T. Gibbs 		int new_picker = *(int *)addr;
79476babe50SJustin T. Gibbs 
7952b83592fSScott Long 		if (new_picker > (softc->sc_counts[CHET_MT] - 1)) {
7962b83592fSScott Long 			error = EINVAL;
7972b83592fSScott Long 			break;
7982b83592fSScott Long 		}
79976babe50SJustin T. Gibbs 		softc->sc_picker = softc->sc_firsts[CHET_MT] + new_picker;
80076babe50SJustin T. Gibbs 		break;
80176babe50SJustin T. Gibbs 	}
80276babe50SJustin T. Gibbs 	case CHIOGPARAMS:
80376babe50SJustin T. Gibbs 	{
80476babe50SJustin T. Gibbs 		struct changer_params *cp = (struct changer_params *)addr;
80576babe50SJustin T. Gibbs 
80676babe50SJustin T. Gibbs 		cp->cp_npickers = softc->sc_counts[CHET_MT];
80776babe50SJustin T. Gibbs 		cp->cp_nslots = softc->sc_counts[CHET_ST];
80876babe50SJustin T. Gibbs 		cp->cp_nportals = softc->sc_counts[CHET_IE];
80976babe50SJustin T. Gibbs 		cp->cp_ndrives = softc->sc_counts[CHET_DT];
81076babe50SJustin T. Gibbs 		break;
81176babe50SJustin T. Gibbs 	}
81276babe50SJustin T. Gibbs 	case CHIOIELEM:
81376babe50SJustin T. Gibbs 		error = chielem(periph, *(unsigned int *)addr);
81476babe50SJustin T. Gibbs 		break;
81576babe50SJustin T. Gibbs 
81621b6ee96SKenneth D. Merry 	case OCHIOGSTATUS:
81721b6ee96SKenneth D. Merry 	{
81821b6ee96SKenneth D. Merry 		error = chgetelemstatus(periph, SCSI_REV_2, cmd,
81921b6ee96SKenneth D. Merry 		    (struct changer_element_status_request *)addr);
82021b6ee96SKenneth D. Merry 		break;
82121b6ee96SKenneth D. Merry 	}
82221b6ee96SKenneth D. Merry 
82376babe50SJustin T. Gibbs 	case CHIOGSTATUS:
82476babe50SJustin T. Gibbs 	{
82521b6ee96SKenneth D. Merry 		int scsi_version;
82621b6ee96SKenneth D. Merry 
82721b6ee96SKenneth D. Merry 		scsi_version = chscsiversion(periph);
82821b6ee96SKenneth D. Merry 		if (scsi_version >= SCSI_REV_0) {
82921b6ee96SKenneth D. Merry 			error = chgetelemstatus(periph, scsi_version, cmd,
83076babe50SJustin T. Gibbs 			    (struct changer_element_status_request *)addr);
83121b6ee96SKenneth D. Merry 	  	}
83221b6ee96SKenneth D. Merry 		else { /* unable to determine the SCSI version */
83321b6ee96SKenneth D. Merry 			cam_periph_unlock(periph);
83421b6ee96SKenneth D. Merry 			return (ENXIO);
83521b6ee96SKenneth D. Merry 		}
83676babe50SJustin T. Gibbs 		break;
83776babe50SJustin T. Gibbs 	}
83876babe50SJustin T. Gibbs 
83976babe50SJustin T. Gibbs 	case CHIOSETVOLTAG:
84076babe50SJustin T. Gibbs 	{
84176babe50SJustin T. Gibbs 		error = chsetvoltag(periph,
84276babe50SJustin T. Gibbs 				    (struct changer_set_voltag_request *) addr);
84376babe50SJustin T. Gibbs 		break;
84476babe50SJustin T. Gibbs 	}
84576babe50SJustin T. Gibbs 
84676babe50SJustin T. Gibbs 	/* Implement prevent/allow? */
84776babe50SJustin T. Gibbs 
84876babe50SJustin T. Gibbs 	default:
84976babe50SJustin T. Gibbs 		error = cam_periph_ioctl(periph, cmd, addr, cherror);
85076babe50SJustin T. Gibbs 		break;
85176babe50SJustin T. Gibbs 	}
85276babe50SJustin T. Gibbs 
8532b83592fSScott Long 	cam_periph_unlock(periph);
85476babe50SJustin T. Gibbs 	return (error);
85576babe50SJustin T. Gibbs }
85676babe50SJustin T. Gibbs 
85776babe50SJustin T. Gibbs static int
chmove(struct cam_periph * periph,struct changer_move * cm)85876babe50SJustin T. Gibbs chmove(struct cam_periph *periph, struct changer_move *cm)
85976babe50SJustin T. Gibbs {
86076babe50SJustin T. Gibbs 	struct ch_softc *softc;
861*7c5d20a6SWarner Losh 	uint16_t fromelem, toelem;
86276babe50SJustin T. Gibbs 	union ccb *ccb;
86376babe50SJustin T. Gibbs 	int error;
86476babe50SJustin T. Gibbs 
86576babe50SJustin T. Gibbs 	error = 0;
86676babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
86776babe50SJustin T. Gibbs 
86876babe50SJustin T. Gibbs 	/*
86976babe50SJustin T. Gibbs 	 * Check arguments.
87076babe50SJustin T. Gibbs 	 */
87176babe50SJustin T. Gibbs 	if ((cm->cm_fromtype > CHET_DT) || (cm->cm_totype > CHET_DT))
87276babe50SJustin T. Gibbs 		return (EINVAL);
87376babe50SJustin T. Gibbs 	if ((cm->cm_fromunit > (softc->sc_counts[cm->cm_fromtype] - 1)) ||
87476babe50SJustin T. Gibbs 	    (cm->cm_tounit > (softc->sc_counts[cm->cm_totype] - 1)))
87576babe50SJustin T. Gibbs 		return (ENODEV);
87676babe50SJustin T. Gibbs 
87776babe50SJustin T. Gibbs 	/*
87876babe50SJustin T. Gibbs 	 * Check the request against the changer's capabilities.
87976babe50SJustin T. Gibbs 	 */
88076babe50SJustin T. Gibbs 	if ((softc->sc_movemask[cm->cm_fromtype] & (1 << cm->cm_totype)) == 0)
88110fc9d90SJustin T. Gibbs 		return (ENODEV);
88276babe50SJustin T. Gibbs 
88376babe50SJustin T. Gibbs 	/*
88476babe50SJustin T. Gibbs 	 * Calculate the source and destination elements.
88576babe50SJustin T. Gibbs 	 */
88676babe50SJustin T. Gibbs 	fromelem = softc->sc_firsts[cm->cm_fromtype] + cm->cm_fromunit;
88776babe50SJustin T. Gibbs 	toelem = softc->sc_firsts[cm->cm_totype] + cm->cm_tounit;
88876babe50SJustin T. Gibbs 
889bbfa4aa1SAlexander Motin 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
89076babe50SJustin T. Gibbs 
89176babe50SJustin T. Gibbs 	scsi_move_medium(&ccb->csio,
89276babe50SJustin T. Gibbs 			 /* retries */ 1,
89376babe50SJustin T. Gibbs 			 /* cbfcnp */ chdone,
89476babe50SJustin T. Gibbs 			 /* tag_action */ MSG_SIMPLE_Q_TAG,
89576babe50SJustin T. Gibbs 			 /* tea */ softc->sc_picker,
89676babe50SJustin T. Gibbs 			 /* src */ fromelem,
89776babe50SJustin T. Gibbs 			 /* dst */ toelem,
89876babe50SJustin T. Gibbs 			 /* invert */ (cm->cm_flags & CM_INVERT) ? TRUE : FALSE,
89976babe50SJustin T. Gibbs 			 /* sense_len */ SSD_FULL_SIZE,
90076babe50SJustin T. Gibbs 			 /* timeout */ CH_TIMEOUT_MOVE_MEDIUM);
90176babe50SJustin T. Gibbs 
9023393f8daSKenneth D. Merry 	error = cam_periph_runccb(ccb, cherror, /*cam_flags*/CAM_RETRY_SELTO,
9033393f8daSKenneth D. Merry 				  /*sense_flags*/ SF_RETRY_UA,
904a9d2245eSPoul-Henning Kamp 				  softc->device_stats);
90576babe50SJustin T. Gibbs 
90676babe50SJustin T. Gibbs 	xpt_release_ccb(ccb);
90776babe50SJustin T. Gibbs 
90876babe50SJustin T. Gibbs 	return(error);
90976babe50SJustin T. Gibbs }
91076babe50SJustin T. Gibbs 
91176babe50SJustin T. Gibbs static int
chexchange(struct cam_periph * periph,struct changer_exchange * ce)91276babe50SJustin T. Gibbs chexchange(struct cam_periph *periph, struct changer_exchange *ce)
91376babe50SJustin T. Gibbs {
91476babe50SJustin T. Gibbs 	struct ch_softc *softc;
915*7c5d20a6SWarner Losh 	uint16_t src, dst1, dst2;
91676babe50SJustin T. Gibbs 	union ccb *ccb;
91776babe50SJustin T. Gibbs 	int error;
91876babe50SJustin T. Gibbs 
91976babe50SJustin T. Gibbs 	error = 0;
92076babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
92176babe50SJustin T. Gibbs 	/*
92276babe50SJustin T. Gibbs 	 * Check arguments.
92376babe50SJustin T. Gibbs 	 */
92476babe50SJustin T. Gibbs 	if ((ce->ce_srctype > CHET_DT) || (ce->ce_fdsttype > CHET_DT) ||
92576babe50SJustin T. Gibbs 	    (ce->ce_sdsttype > CHET_DT))
92676babe50SJustin T. Gibbs 		return (EINVAL);
92776babe50SJustin T. Gibbs 	if ((ce->ce_srcunit > (softc->sc_counts[ce->ce_srctype] - 1)) ||
92876babe50SJustin T. Gibbs 	    (ce->ce_fdstunit > (softc->sc_counts[ce->ce_fdsttype] - 1)) ||
92976babe50SJustin T. Gibbs 	    (ce->ce_sdstunit > (softc->sc_counts[ce->ce_sdsttype] - 1)))
93076babe50SJustin T. Gibbs 		return (ENODEV);
93176babe50SJustin T. Gibbs 
93276babe50SJustin T. Gibbs 	/*
93376babe50SJustin T. Gibbs 	 * Check the request against the changer's capabilities.
93476babe50SJustin T. Gibbs 	 */
93576babe50SJustin T. Gibbs 	if (((softc->sc_exchangemask[ce->ce_srctype] &
93676babe50SJustin T. Gibbs 	     (1 << ce->ce_fdsttype)) == 0) ||
93776babe50SJustin T. Gibbs 	    ((softc->sc_exchangemask[ce->ce_fdsttype] &
93876babe50SJustin T. Gibbs 	     (1 << ce->ce_sdsttype)) == 0))
93910fc9d90SJustin T. Gibbs 		return (ENODEV);
94076babe50SJustin T. Gibbs 
94176babe50SJustin T. Gibbs 	/*
94276babe50SJustin T. Gibbs 	 * Calculate the source and destination elements.
94376babe50SJustin T. Gibbs 	 */
94476babe50SJustin T. Gibbs 	src = softc->sc_firsts[ce->ce_srctype] + ce->ce_srcunit;
94576babe50SJustin T. Gibbs 	dst1 = softc->sc_firsts[ce->ce_fdsttype] + ce->ce_fdstunit;
94676babe50SJustin T. Gibbs 	dst2 = softc->sc_firsts[ce->ce_sdsttype] + ce->ce_sdstunit;
94776babe50SJustin T. Gibbs 
948bbfa4aa1SAlexander Motin 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
94976babe50SJustin T. Gibbs 
95076babe50SJustin T. Gibbs 	scsi_exchange_medium(&ccb->csio,
95176babe50SJustin T. Gibbs 			     /* retries */ 1,
95276babe50SJustin T. Gibbs 			     /* cbfcnp */ chdone,
95376babe50SJustin T. Gibbs 			     /* tag_action */ MSG_SIMPLE_Q_TAG,
95476babe50SJustin T. Gibbs 			     /* tea */ softc->sc_picker,
95576babe50SJustin T. Gibbs 			     /* src */ src,
95676babe50SJustin T. Gibbs 			     /* dst1 */ dst1,
95776babe50SJustin T. Gibbs 			     /* dst2 */ dst2,
95876babe50SJustin T. Gibbs 			     /* invert1 */ (ce->ce_flags & CE_INVERT1) ?
95976babe50SJustin T. Gibbs 			                   TRUE : FALSE,
96076babe50SJustin T. Gibbs 			     /* invert2 */ (ce->ce_flags & CE_INVERT2) ?
96176babe50SJustin T. Gibbs 			                   TRUE : FALSE,
96276babe50SJustin T. Gibbs 			     /* sense_len */ SSD_FULL_SIZE,
96376babe50SJustin T. Gibbs 			     /* timeout */ CH_TIMEOUT_EXCHANGE_MEDIUM);
96476babe50SJustin T. Gibbs 
9653393f8daSKenneth D. Merry 	error = cam_periph_runccb(ccb, cherror, /*cam_flags*/CAM_RETRY_SELTO,
9663393f8daSKenneth D. Merry 				  /*sense_flags*/ SF_RETRY_UA,
967a9d2245eSPoul-Henning Kamp 				  softc->device_stats);
96876babe50SJustin T. Gibbs 
96976babe50SJustin T. Gibbs 	xpt_release_ccb(ccb);
97076babe50SJustin T. Gibbs 
97176babe50SJustin T. Gibbs 	return(error);
97276babe50SJustin T. Gibbs }
97376babe50SJustin T. Gibbs 
97476babe50SJustin T. Gibbs static int
chposition(struct cam_periph * periph,struct changer_position * cp)97576babe50SJustin T. Gibbs chposition(struct cam_periph *periph, struct changer_position *cp)
97676babe50SJustin T. Gibbs {
97776babe50SJustin T. Gibbs 	struct ch_softc *softc;
978*7c5d20a6SWarner Losh 	uint16_t dst;
97976babe50SJustin T. Gibbs 	union ccb *ccb;
98076babe50SJustin T. Gibbs 	int error;
98176babe50SJustin T. Gibbs 
98276babe50SJustin T. Gibbs 	error = 0;
98376babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
98476babe50SJustin T. Gibbs 
98576babe50SJustin T. Gibbs 	/*
98676babe50SJustin T. Gibbs 	 * Check arguments.
98776babe50SJustin T. Gibbs 	 */
98876babe50SJustin T. Gibbs 	if (cp->cp_type > CHET_DT)
98976babe50SJustin T. Gibbs 		return (EINVAL);
99076babe50SJustin T. Gibbs 	if (cp->cp_unit > (softc->sc_counts[cp->cp_type] - 1))
99176babe50SJustin T. Gibbs 		return (ENODEV);
99276babe50SJustin T. Gibbs 
99376babe50SJustin T. Gibbs 	/*
99476babe50SJustin T. Gibbs 	 * Calculate the destination element.
99576babe50SJustin T. Gibbs 	 */
99676babe50SJustin T. Gibbs 	dst = softc->sc_firsts[cp->cp_type] + cp->cp_unit;
99776babe50SJustin T. Gibbs 
998bbfa4aa1SAlexander Motin 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
99976babe50SJustin T. Gibbs 
100076babe50SJustin T. Gibbs 	scsi_position_to_element(&ccb->csio,
100176babe50SJustin T. Gibbs 				 /* retries */ 1,
100276babe50SJustin T. Gibbs 				 /* cbfcnp */ chdone,
100376babe50SJustin T. Gibbs 				 /* tag_action */ MSG_SIMPLE_Q_TAG,
100476babe50SJustin T. Gibbs 				 /* tea */ softc->sc_picker,
100576babe50SJustin T. Gibbs 				 /* dst */ dst,
100676babe50SJustin T. Gibbs 				 /* invert */ (cp->cp_flags & CP_INVERT) ?
100776babe50SJustin T. Gibbs 					      TRUE : FALSE,
100876babe50SJustin T. Gibbs 				 /* sense_len */ SSD_FULL_SIZE,
100976babe50SJustin T. Gibbs 				 /* timeout */ CH_TIMEOUT_POSITION_TO_ELEMENT);
101076babe50SJustin T. Gibbs 
10113393f8daSKenneth D. Merry 	error = cam_periph_runccb(ccb, cherror, /*cam_flags*/ CAM_RETRY_SELTO,
10123393f8daSKenneth D. Merry 				  /*sense_flags*/ SF_RETRY_UA,
1013a9d2245eSPoul-Henning Kamp 				  softc->device_stats);
101476babe50SJustin T. Gibbs 
101576babe50SJustin T. Gibbs 	xpt_release_ccb(ccb);
101676babe50SJustin T. Gibbs 
101776babe50SJustin T. Gibbs 	return(error);
101876babe50SJustin T. Gibbs }
101976babe50SJustin T. Gibbs 
102076babe50SJustin T. Gibbs /*
102176babe50SJustin T. Gibbs  * Copy a volume tag to a volume_tag struct, converting SCSI byte order
102276babe50SJustin T. Gibbs  * to host native byte order in the volume serial number.  The volume
102376babe50SJustin T. Gibbs  * label as returned by the changer is transferred to user mode as
102476babe50SJustin T. Gibbs  * nul-terminated string.  Volume labels are truncated at the first
102576babe50SJustin T. Gibbs  * space, as suggested by SCSI-2.
102676babe50SJustin T. Gibbs  */
102776babe50SJustin T. Gibbs static	void
copy_voltag(struct changer_voltag * uvoltag,struct volume_tag * voltag)102876babe50SJustin T. Gibbs copy_voltag(struct changer_voltag *uvoltag, struct volume_tag *voltag)
102976babe50SJustin T. Gibbs {
103076babe50SJustin T. Gibbs 	int i;
103176babe50SJustin T. Gibbs 	for (i=0; i<CH_VOLTAG_MAXLEN; i++) {
103276babe50SJustin T. Gibbs 		char c = voltag->vif[i];
103376babe50SJustin T. Gibbs 		if (c && c != ' ')
103476babe50SJustin T. Gibbs 			uvoltag->cv_volid[i] = c;
103576babe50SJustin T. Gibbs 	        else
103676babe50SJustin T. Gibbs 			break;
103776babe50SJustin T. Gibbs 	}
103876babe50SJustin T. Gibbs 	uvoltag->cv_serial = scsi_2btoul(voltag->vsn);
103976babe50SJustin T. Gibbs }
104076babe50SJustin T. Gibbs 
104176babe50SJustin T. Gibbs /*
104221b6ee96SKenneth D. Merry  * Copy an element status descriptor to a user-mode
104376babe50SJustin T. Gibbs  * changer_element_status structure.
104476babe50SJustin T. Gibbs  */
104576babe50SJustin T. Gibbs static void
copy_element_status(struct ch_softc * softc,uint16_t flags,struct read_element_status_descriptor * desc,struct changer_element_status * ces,int scsi_version)104676babe50SJustin T. Gibbs copy_element_status(struct ch_softc *softc,
1047*7c5d20a6SWarner Losh 		    uint16_t flags,
104876babe50SJustin T. Gibbs 		    struct read_element_status_descriptor *desc,
104921b6ee96SKenneth D. Merry 		    struct changer_element_status *ces,
105021b6ee96SKenneth D. Merry 		    int scsi_version)
105176babe50SJustin T. Gibbs {
1052*7c5d20a6SWarner Losh 	uint16_t eaddr = scsi_2btoul(desc->eaddr);
1053*7c5d20a6SWarner Losh 	uint16_t et;
105421b6ee96SKenneth D. Merry 	struct volume_tag *pvol_tag = NULL, *avol_tag = NULL;
105521b6ee96SKenneth D. Merry 	struct read_element_status_device_id *devid = NULL;
105676babe50SJustin T. Gibbs 
105776babe50SJustin T. Gibbs 	ces->ces_int_addr = eaddr;
105876babe50SJustin T. Gibbs 	/* set up logical address in element status */
105976babe50SJustin T. Gibbs 	for (et = CHET_MT; et <= CHET_DT; et++) {
106076babe50SJustin T. Gibbs 		if ((softc->sc_firsts[et] <= eaddr)
106176babe50SJustin T. Gibbs 		    && ((softc->sc_firsts[et] + softc->sc_counts[et])
106276babe50SJustin T. Gibbs 			> eaddr)) {
106376babe50SJustin T. Gibbs 			ces->ces_addr = eaddr - softc->sc_firsts[et];
106476babe50SJustin T. Gibbs 			ces->ces_type = et;
106576babe50SJustin T. Gibbs 			break;
106676babe50SJustin T. Gibbs 		}
106776babe50SJustin T. Gibbs 	}
106876babe50SJustin T. Gibbs 
106976babe50SJustin T. Gibbs 	ces->ces_flags = desc->flags1;
107076babe50SJustin T. Gibbs 
107176babe50SJustin T. Gibbs 	ces->ces_sensecode = desc->sense_code;
107276babe50SJustin T. Gibbs 	ces->ces_sensequal = desc->sense_qual;
107376babe50SJustin T. Gibbs 
107476babe50SJustin T. Gibbs 	if (desc->flags2 & READ_ELEMENT_STATUS_INVERT)
107576babe50SJustin T. Gibbs 		ces->ces_flags |= CES_INVERT;
107676babe50SJustin T. Gibbs 
107776babe50SJustin T. Gibbs 	if (desc->flags2 & READ_ELEMENT_STATUS_SVALID) {
107876babe50SJustin T. Gibbs 		eaddr = scsi_2btoul(desc->ssea);
107976babe50SJustin T. Gibbs 
108076babe50SJustin T. Gibbs 		/* convert source address to logical format */
108176babe50SJustin T. Gibbs 		for (et = CHET_MT; et <= CHET_DT; et++) {
108276babe50SJustin T. Gibbs 			if ((softc->sc_firsts[et] <= eaddr)
108376babe50SJustin T. Gibbs 			    && ((softc->sc_firsts[et] + softc->sc_counts[et])
108476babe50SJustin T. Gibbs 				> eaddr)) {
108576babe50SJustin T. Gibbs 				ces->ces_source_addr =
108676babe50SJustin T. Gibbs 					eaddr - softc->sc_firsts[et];
108776babe50SJustin T. Gibbs 				ces->ces_source_type = et;
108876babe50SJustin T. Gibbs 				ces->ces_flags |= CES_SOURCE_VALID;
108976babe50SJustin T. Gibbs 				break;
109076babe50SJustin T. Gibbs 			}
109176babe50SJustin T. Gibbs 		}
109276babe50SJustin T. Gibbs 
109376babe50SJustin T. Gibbs 		if (!(ces->ces_flags & CES_SOURCE_VALID))
109476babe50SJustin T. Gibbs 			printf("ch: warning: could not map element source "
1095a68fce35SKenneth D. Merry 			       "address %ud to a valid element type\n",
109676babe50SJustin T. Gibbs 			       eaddr);
109776babe50SJustin T. Gibbs 	}
109876babe50SJustin T. Gibbs 
109921b6ee96SKenneth D. Merry 	/*
110021b6ee96SKenneth D. Merry 	 * pvoltag and avoltag are common between SCSI-2 and later versions
110121b6ee96SKenneth D. Merry 	 */
110276babe50SJustin T. Gibbs 	if (flags & READ_ELEMENT_STATUS_PVOLTAG)
110321b6ee96SKenneth D. Merry 		pvol_tag = &desc->voltag_devid.pvoltag;
110476babe50SJustin T. Gibbs 	if (flags & READ_ELEMENT_STATUS_AVOLTAG)
110521b6ee96SKenneth D. Merry 		avol_tag = (flags & READ_ELEMENT_STATUS_PVOLTAG) ?
110621b6ee96SKenneth D. Merry 		    &desc->voltag_devid.voltag[1] :&desc->voltag_devid.pvoltag;
110721b6ee96SKenneth D. Merry 	/*
110821b6ee96SKenneth D. Merry 	 * For SCSI-3 and later, element status can carry designator and
110921b6ee96SKenneth D. Merry 	 * other information.
111021b6ee96SKenneth D. Merry 	 */
111121b6ee96SKenneth D. Merry 	if (scsi_version >= SCSI_REV_SPC) {
111221b6ee96SKenneth D. Merry 		if ((flags & READ_ELEMENT_STATUS_PVOLTAG) ^
111321b6ee96SKenneth D. Merry 		    (flags & READ_ELEMENT_STATUS_AVOLTAG))
111421b6ee96SKenneth D. Merry 			devid = &desc->voltag_devid.pvol_and_devid.devid;
111521b6ee96SKenneth D. Merry 		else if (!(flags & READ_ELEMENT_STATUS_PVOLTAG) &&
111621b6ee96SKenneth D. Merry 			 !(flags & READ_ELEMENT_STATUS_AVOLTAG))
111721b6ee96SKenneth D. Merry 			devid = &desc->voltag_devid.devid;
111821b6ee96SKenneth D. Merry 		else /* Have both PVOLTAG and AVOLTAG */
111921b6ee96SKenneth D. Merry 			devid = &desc->voltag_devid.vol_tags_and_devid.devid;
112076babe50SJustin T. Gibbs 	}
112176babe50SJustin T. Gibbs 
112221b6ee96SKenneth D. Merry 	if (pvol_tag)
112321b6ee96SKenneth D. Merry 		copy_voltag(&(ces->ces_pvoltag), pvol_tag);
112421b6ee96SKenneth D. Merry 	if (avol_tag)
112521b6ee96SKenneth D. Merry 		copy_voltag(&(ces->ces_pvoltag), avol_tag);
112621b6ee96SKenneth D. Merry 	if (devid != NULL) {
112721b6ee96SKenneth D. Merry 		if (devid->designator_length > 0) {
112821b6ee96SKenneth D. Merry 			bcopy((void *)devid->designator,
112921b6ee96SKenneth D. Merry 			      (void *)ces->ces_designator,
113021b6ee96SKenneth D. Merry 			      devid->designator_length);
113121b6ee96SKenneth D. Merry 			ces->ces_designator_length = devid->designator_length;
113221b6ee96SKenneth D. Merry 			/*
113321b6ee96SKenneth D. Merry 			 * Make sure we are always NUL terminated.  The
1134e1ee2f21SKenneth D. Merry 			 * This won't matter for the binary code set,
1135e1ee2f21SKenneth D. Merry 			 * since the user will only pay attention to the
1136e1ee2f21SKenneth D. Merry 			 * length field.
113721b6ee96SKenneth D. Merry 			 */
1138e1ee2f21SKenneth D. Merry 			ces->ces_designator[devid->designator_length]= '\0';
113921b6ee96SKenneth D. Merry 		}
114021b6ee96SKenneth D. Merry 		if (devid->piv_assoc_designator_type &
114121b6ee96SKenneth D. Merry 		    READ_ELEMENT_STATUS_PIV_SET) {
114221b6ee96SKenneth D. Merry 			ces->ces_flags |= CES_PIV;
114321b6ee96SKenneth D. Merry 			ces->ces_protocol_id =
114421b6ee96SKenneth D. Merry 			    READ_ELEMENT_STATUS_PROTOCOL_ID(
114521b6ee96SKenneth D. Merry 			    devid->prot_code_set);
114621b6ee96SKenneth D. Merry 		}
114721b6ee96SKenneth D. Merry 		ces->ces_code_set =
114821b6ee96SKenneth D. Merry 		    READ_ELEMENT_STATUS_CODE_SET(devid->prot_code_set);
114921b6ee96SKenneth D. Merry 		ces->ces_assoc = READ_ELEMENT_STATUS_ASSOCIATION(
115021b6ee96SKenneth D. Merry 		    devid->piv_assoc_designator_type);
115121b6ee96SKenneth D. Merry 		ces->ces_designator_type = READ_ELEMENT_STATUS_DESIGNATOR_TYPE(
115221b6ee96SKenneth D. Merry 		    devid->piv_assoc_designator_type);
115321b6ee96SKenneth D. Merry 	} else if (scsi_version > SCSI_REV_2) {
115421b6ee96SKenneth D. Merry 		/* SCSI-SPC and No devid, no designator */
115521b6ee96SKenneth D. Merry 		ces->ces_designator_length = 0;
115621b6ee96SKenneth D. Merry 		ces->ces_designator[0] = '\0';
115721b6ee96SKenneth D. Merry 		ces->ces_protocol_id = CES_PROTOCOL_ID_FCP_4;
115821b6ee96SKenneth D. Merry 	}
115921b6ee96SKenneth D. Merry 
116021b6ee96SKenneth D. Merry 	if (scsi_version <= SCSI_REV_2) {
116121b6ee96SKenneth D. Merry 		if (desc->dt_or_obsolete.scsi_2.dt_scsi_flags &
116221b6ee96SKenneth D. Merry 		    READ_ELEMENT_STATUS_DT_IDVALID) {
116321b6ee96SKenneth D. Merry 			ces->ces_flags |= CES_SCSIID_VALID;
116421b6ee96SKenneth D. Merry 			ces->ces_scsi_id =
116521b6ee96SKenneth D. Merry 			    desc->dt_or_obsolete.scsi_2.dt_scsi_addr;
116621b6ee96SKenneth D. Merry 		}
116721b6ee96SKenneth D. Merry 
116821b6ee96SKenneth D. Merry 		if (desc->dt_or_obsolete.scsi_2.dt_scsi_addr &
116921b6ee96SKenneth D. Merry 		    READ_ELEMENT_STATUS_DT_LUVALID) {
117076babe50SJustin T. Gibbs 			ces->ces_flags |= CES_LUN_VALID;
117176babe50SJustin T. Gibbs 			ces->ces_scsi_lun =
117221b6ee96SKenneth D. Merry 			    desc->dt_or_obsolete.scsi_2.dt_scsi_flags &
117321b6ee96SKenneth D. Merry 			    READ_ELEMENT_STATUS_DT_LUNMASK;
117421b6ee96SKenneth D. Merry 		}
117576babe50SJustin T. Gibbs 	}
117676babe50SJustin T. Gibbs }
117776babe50SJustin T. Gibbs 
117876babe50SJustin T. Gibbs static int
chgetelemstatus(struct cam_periph * periph,int scsi_version,u_long cmd,struct changer_element_status_request * cesr)117921b6ee96SKenneth D. Merry chgetelemstatus(struct cam_periph *periph, int scsi_version, u_long cmd,
118076babe50SJustin T. Gibbs 		struct changer_element_status_request *cesr)
118176babe50SJustin T. Gibbs {
118276babe50SJustin T. Gibbs 	struct read_element_status_header *st_hdr;
118376babe50SJustin T. Gibbs 	struct read_element_status_page_header *pg_hdr;
118476babe50SJustin T. Gibbs 	struct read_element_status_descriptor *desc;
118576babe50SJustin T. Gibbs 	caddr_t data = NULL;
118676babe50SJustin T. Gibbs 	size_t size, desclen;
1187d821d364SPedro F. Giffuni 	u_int avail, i;
1188585f7966SKenneth D. Merry 	int curdata, dvcid, sense_flags;
1189585f7966SKenneth D. Merry 	int try_no_dvcid = 0;
119076babe50SJustin T. Gibbs 	struct changer_element_status *user_data = NULL;
119176babe50SJustin T. Gibbs 	struct ch_softc *softc;
119276babe50SJustin T. Gibbs 	union ccb *ccb;
119376babe50SJustin T. Gibbs 	int chet = cesr->cesr_element_type;
1194d821d364SPedro F. Giffuni 	int error = 0;
119576babe50SJustin T. Gibbs 	int want_voltags = (cesr->cesr_flags & CESR_VOLTAGS) ? 1 : 0;
119676babe50SJustin T. Gibbs 
119776babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
119876babe50SJustin T. Gibbs 
119976babe50SJustin T. Gibbs 	/* perform argument checking */
120076babe50SJustin T. Gibbs 
120176babe50SJustin T. Gibbs 	/*
120276babe50SJustin T. Gibbs 	 * Perform a range check on the cesr_element_{base,count}
120376babe50SJustin T. Gibbs 	 * request argument fields.
120476babe50SJustin T. Gibbs 	 */
120576babe50SJustin T. Gibbs 	if ((softc->sc_counts[chet] - cesr->cesr_element_base) <= 0
120676babe50SJustin T. Gibbs 	    || (cesr->cesr_element_base + cesr->cesr_element_count)
120776babe50SJustin T. Gibbs 	        > softc->sc_counts[chet])
120876babe50SJustin T. Gibbs 		return (EINVAL);
120976babe50SJustin T. Gibbs 
121076babe50SJustin T. Gibbs 	/*
121176babe50SJustin T. Gibbs 	 * Request one descriptor for the given element type.  This
121276babe50SJustin T. Gibbs 	 * is used to determine the size of the descriptor so that
121376babe50SJustin T. Gibbs 	 * we can allocate enough storage for all of them.  We assume
121476babe50SJustin T. Gibbs 	 * that the first one can fit into 1k.
121576babe50SJustin T. Gibbs 	 */
12162b83592fSScott Long 	cam_periph_unlock(periph);
1217a163d034SWarner Losh 	data = (caddr_t)malloc(1024, M_DEVBUF, M_WAITOK);
121876babe50SJustin T. Gibbs 
12192b83592fSScott Long 	cam_periph_lock(periph);
1220bbfa4aa1SAlexander Motin 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
122176babe50SJustin T. Gibbs 
1222585f7966SKenneth D. Merry 	sense_flags = SF_RETRY_UA;
1223585f7966SKenneth D. Merry 	if (softc->quirks & CH_Q_NO_DVCID) {
1224585f7966SKenneth D. Merry 		dvcid = 0;
1225585f7966SKenneth D. Merry 		curdata = 0;
1226585f7966SKenneth D. Merry 	} else {
1227585f7966SKenneth D. Merry 		dvcid = 1;
1228585f7966SKenneth D. Merry 		curdata = 1;
1229585f7966SKenneth D. Merry 		/*
1230585f7966SKenneth D. Merry 		 * Don't print anything for an Illegal Request, because
1231585f7966SKenneth D. Merry 		 * these flags can cause some changers to complain.  We'll
1232585f7966SKenneth D. Merry 		 * retry without them if we get an error.
1233585f7966SKenneth D. Merry 		 */
1234585f7966SKenneth D. Merry 		sense_flags |= SF_QUIET_IR;
1235585f7966SKenneth D. Merry 	}
1236585f7966SKenneth D. Merry 
1237585f7966SKenneth D. Merry retry_einval:
1238585f7966SKenneth D. Merry 
123976babe50SJustin T. Gibbs 	scsi_read_element_status(&ccb->csio,
124076babe50SJustin T. Gibbs 				 /* retries */ 1,
124176babe50SJustin T. Gibbs 				 /* cbfcnp */ chdone,
124276babe50SJustin T. Gibbs 				 /* tag_action */ MSG_SIMPLE_Q_TAG,
124376babe50SJustin T. Gibbs 				 /* voltag */ want_voltags,
124476babe50SJustin T. Gibbs 				 /* sea */ softc->sc_firsts[chet],
1245585f7966SKenneth D. Merry 				 /* curdata */ curdata,
1246d993ba12SKenneth D. Merry 				 /* dvcid */ dvcid,
124776babe50SJustin T. Gibbs 				 /* count */ 1,
124876babe50SJustin T. Gibbs 				 /* data_ptr */ data,
124976babe50SJustin T. Gibbs 				 /* dxfer_len */ 1024,
125076babe50SJustin T. Gibbs 				 /* sense_len */ SSD_FULL_SIZE,
125176babe50SJustin T. Gibbs 				 /* timeout */ CH_TIMEOUT_READ_ELEMENT_STATUS);
125276babe50SJustin T. Gibbs 
12533393f8daSKenneth D. Merry 	error = cam_periph_runccb(ccb, cherror, /*cam_flags*/ CAM_RETRY_SELTO,
1254585f7966SKenneth D. Merry 				  /*sense_flags*/ sense_flags,
1255a9d2245eSPoul-Henning Kamp 				  softc->device_stats);
125676babe50SJustin T. Gibbs 
1257585f7966SKenneth D. Merry 	/*
1258585f7966SKenneth D. Merry 	 * An Illegal Request sense key (only used if there is no asc/ascq)
1259585f7966SKenneth D. Merry 	 * or 0x24,0x00 for an ASC/ASCQ both map to EINVAL.  If dvcid or
1260585f7966SKenneth D. Merry 	 * curdata are set (we set both or neither), try turning them off
1261585f7966SKenneth D. Merry 	 * and see if the command is successful.
1262585f7966SKenneth D. Merry 	 */
1263585f7966SKenneth D. Merry 	if ((error == EINVAL)
1264585f7966SKenneth D. Merry 	 && (dvcid || curdata))  {
1265585f7966SKenneth D. Merry 		dvcid = 0;
1266585f7966SKenneth D. Merry 		curdata = 0;
1267585f7966SKenneth D. Merry 		error = 0;
1268585f7966SKenneth D. Merry 		/* At this point we want to report any Illegal Request */
1269585f7966SKenneth D. Merry 		sense_flags &= ~SF_QUIET_IR;
1270585f7966SKenneth D. Merry 		try_no_dvcid = 1;
1271585f7966SKenneth D. Merry 		goto retry_einval;
1272585f7966SKenneth D. Merry 	}
1273585f7966SKenneth D. Merry 
1274585f7966SKenneth D. Merry 	/*
1275585f7966SKenneth D. Merry 	 * In this case, we tried a read element status with dvcid and
1276585f7966SKenneth D. Merry 	 * curdata set, and it failed.  We retried without those bits, and
1277585f7966SKenneth D. Merry 	 * it succeeded.  Suggest to the user that he set a quirk, so we
1278585f7966SKenneth D. Merry 	 * don't go through the retry process the first time in the future.
1279585f7966SKenneth D. Merry 	 * This should only happen on changers that claim SCSI-3 or higher,
1280585f7966SKenneth D. Merry 	 * but don't support these bits.
1281585f7966SKenneth D. Merry 	 */
1282585f7966SKenneth D. Merry 	if ((try_no_dvcid != 0)
1283585f7966SKenneth D. Merry 	 && (error == 0))
1284585f7966SKenneth D. Merry 		softc->quirks |= CH_Q_NO_DVCID;
1285585f7966SKenneth D. Merry 
128676babe50SJustin T. Gibbs 	if (error)
128776babe50SJustin T. Gibbs 		goto done;
12882b83592fSScott Long 	cam_periph_unlock(periph);
128976babe50SJustin T. Gibbs 
129076babe50SJustin T. Gibbs 	st_hdr = (struct read_element_status_header *)data;
12911195ae18SBruce Evans 	pg_hdr = (struct read_element_status_page_header *)((uintptr_t)st_hdr +
129276babe50SJustin T. Gibbs 		  sizeof(struct read_element_status_header));
129376babe50SJustin T. Gibbs 	desclen = scsi_2btoul(pg_hdr->edl);
129476babe50SJustin T. Gibbs 
129576babe50SJustin T. Gibbs 	size = sizeof(struct read_element_status_header) +
129676babe50SJustin T. Gibbs 	       sizeof(struct read_element_status_page_header) +
129776babe50SJustin T. Gibbs 	       (desclen * cesr->cesr_element_count);
129876babe50SJustin T. Gibbs 	/*
129976babe50SJustin T. Gibbs 	 * Reallocate storage for descriptors and get them from the
130076babe50SJustin T. Gibbs 	 * device.
130176babe50SJustin T. Gibbs 	 */
130276babe50SJustin T. Gibbs 	free(data, M_DEVBUF);
1303a163d034SWarner Losh 	data = (caddr_t)malloc(size, M_DEVBUF, M_WAITOK);
130476babe50SJustin T. Gibbs 
13052b83592fSScott Long 	cam_periph_lock(periph);
130676babe50SJustin T. Gibbs 	scsi_read_element_status(&ccb->csio,
130776babe50SJustin T. Gibbs 				 /* retries */ 1,
130876babe50SJustin T. Gibbs 				 /* cbfcnp */ chdone,
130976babe50SJustin T. Gibbs 				 /* tag_action */ MSG_SIMPLE_Q_TAG,
131076babe50SJustin T. Gibbs 				 /* voltag */ want_voltags,
131176babe50SJustin T. Gibbs 				 /* sea */ softc->sc_firsts[chet]
131276babe50SJustin T. Gibbs 				 + cesr->cesr_element_base,
1313585f7966SKenneth D. Merry 				 /* curdata */ curdata,
1314d993ba12SKenneth D. Merry 				 /* dvcid */ dvcid,
131576babe50SJustin T. Gibbs 				 /* count */ cesr->cesr_element_count,
131676babe50SJustin T. Gibbs 				 /* data_ptr */ data,
131776babe50SJustin T. Gibbs 				 /* dxfer_len */ size,
131876babe50SJustin T. Gibbs 				 /* sense_len */ SSD_FULL_SIZE,
131976babe50SJustin T. Gibbs 				 /* timeout */ CH_TIMEOUT_READ_ELEMENT_STATUS);
132076babe50SJustin T. Gibbs 
13213393f8daSKenneth D. Merry 	error = cam_periph_runccb(ccb, cherror, /*cam_flags*/ CAM_RETRY_SELTO,
13223393f8daSKenneth D. Merry 				  /*sense_flags*/ SF_RETRY_UA,
1323a9d2245eSPoul-Henning Kamp 				  softc->device_stats);
132476babe50SJustin T. Gibbs 
132576babe50SJustin T. Gibbs 	if (error)
132676babe50SJustin T. Gibbs 		goto done;
13272b83592fSScott Long 	cam_periph_unlock(periph);
132876babe50SJustin T. Gibbs 
132976babe50SJustin T. Gibbs 	/*
133076babe50SJustin T. Gibbs 	 * Fill in the user status array.
133176babe50SJustin T. Gibbs 	 */
133276babe50SJustin T. Gibbs 	st_hdr = (struct read_element_status_header *)data;
1333b3b73720SKenneth D. Merry 	pg_hdr = (struct read_element_status_page_header *)((uintptr_t)st_hdr +
1334b3b73720SKenneth D. Merry 		  sizeof(struct read_element_status_header));
133576babe50SJustin T. Gibbs 	avail = scsi_2btoul(st_hdr->count);
133676babe50SJustin T. Gibbs 
133776babe50SJustin T. Gibbs 	if (avail != cesr->cesr_element_count) {
1338f0d9af51SMatt Jacob 		xpt_print(periph->path,
1339f0d9af51SMatt Jacob 		    "warning, READ ELEMENT STATUS avail != count\n");
134076babe50SJustin T. Gibbs 	}
134176babe50SJustin T. Gibbs 
134276babe50SJustin T. Gibbs 	user_data = (struct changer_element_status *)
134376babe50SJustin T. Gibbs 		malloc(avail * sizeof(struct changer_element_status),
1344a163d034SWarner Losh 		       M_DEVBUF, M_WAITOK | M_ZERO);
134576babe50SJustin T. Gibbs 
13461195ae18SBruce Evans 	desc = (struct read_element_status_descriptor *)((uintptr_t)data +
134776babe50SJustin T. Gibbs 		sizeof(struct read_element_status_header) +
134876babe50SJustin T. Gibbs 		sizeof(struct read_element_status_page_header));
134976babe50SJustin T. Gibbs 	/*
135076babe50SJustin T. Gibbs 	 * Set up the individual element status structures
135176babe50SJustin T. Gibbs 	 */
135276babe50SJustin T. Gibbs 	for (i = 0; i < avail; ++i) {
135321b6ee96SKenneth D. Merry 		struct changer_element_status *ces;
135476babe50SJustin T. Gibbs 
135521b6ee96SKenneth D. Merry 		/*
135621b6ee96SKenneth D. Merry 		 * In the changer_element_status structure, fields from
135721b6ee96SKenneth D. Merry 		 * the beginning to the field of ces_scsi_lun are common
135821b6ee96SKenneth D. Merry 		 * between SCSI-2 and SCSI-3, while all the rest are new
135921b6ee96SKenneth D. Merry 		 * from SCSI-3. In order to maintain backward compatibility
136021b6ee96SKenneth D. Merry 		 * of the chio command, the ces pointer, below, is computed
136121b6ee96SKenneth D. Merry 		 * such that it lines up with the structure boundary
136221b6ee96SKenneth D. Merry 		 * corresponding to the SCSI version.
136321b6ee96SKenneth D. Merry 		 */
136421b6ee96SKenneth D. Merry 		ces = cmd == OCHIOGSTATUS ?
136521b6ee96SKenneth D. Merry 		    (struct changer_element_status *)
136621b6ee96SKenneth D. Merry 		    ((unsigned char *)user_data + i *
136721b6ee96SKenneth D. Merry 		     (offsetof(struct changer_element_status,ces_scsi_lun)+1)):
136821b6ee96SKenneth D. Merry 		    &user_data[i];
136921b6ee96SKenneth D. Merry 
137021b6ee96SKenneth D. Merry 		copy_element_status(softc, pg_hdr->flags, desc,
137121b6ee96SKenneth D. Merry 				    ces, scsi_version);
137276babe50SJustin T. Gibbs 
13731195ae18SBruce Evans 		desc = (struct read_element_status_descriptor *)
137421b6ee96SKenneth D. Merry 		       ((unsigned char *)desc + desclen);
137576babe50SJustin T. Gibbs 	}
137676babe50SJustin T. Gibbs 
137776babe50SJustin T. Gibbs 	/* Copy element status structures out to userspace. */
137821b6ee96SKenneth D. Merry 	if (cmd == OCHIOGSTATUS)
137921b6ee96SKenneth D. Merry 		error = copyout(user_data,
138021b6ee96SKenneth D. Merry 				cesr->cesr_element_status,
138121b6ee96SKenneth D. Merry 				avail* (offsetof(struct changer_element_status,
138221b6ee96SKenneth D. Merry 				ces_scsi_lun) + 1));
138321b6ee96SKenneth D. Merry 	else
138476babe50SJustin T. Gibbs 		error = copyout(user_data,
138576babe50SJustin T. Gibbs 				cesr->cesr_element_status,
138676babe50SJustin T. Gibbs 				avail * sizeof(struct changer_element_status));
138721b6ee96SKenneth D. Merry 
13882b83592fSScott Long 	cam_periph_lock(periph);
138976babe50SJustin T. Gibbs 
139076babe50SJustin T. Gibbs  done:
139176babe50SJustin T. Gibbs 	xpt_release_ccb(ccb);
139276babe50SJustin T. Gibbs 
139376babe50SJustin T. Gibbs 	if (data != NULL)
139476babe50SJustin T. Gibbs 		free(data, M_DEVBUF);
139576babe50SJustin T. Gibbs 	if (user_data != NULL)
139676babe50SJustin T. Gibbs 		free(user_data, M_DEVBUF);
139776babe50SJustin T. Gibbs 
139876babe50SJustin T. Gibbs 	return (error);
139976babe50SJustin T. Gibbs }
140076babe50SJustin T. Gibbs 
140176babe50SJustin T. Gibbs static int
chielem(struct cam_periph * periph,unsigned int timeout)140276babe50SJustin T. Gibbs chielem(struct cam_periph *periph,
140376babe50SJustin T. Gibbs 	unsigned int timeout)
140476babe50SJustin T. Gibbs {
140576babe50SJustin T. Gibbs 	union ccb *ccb;
140676babe50SJustin T. Gibbs 	struct ch_softc *softc;
140776babe50SJustin T. Gibbs 	int error;
140876babe50SJustin T. Gibbs 
140976babe50SJustin T. Gibbs 	if (!timeout) {
141076babe50SJustin T. Gibbs 		timeout = CH_TIMEOUT_INITIALIZE_ELEMENT_STATUS;
141176babe50SJustin T. Gibbs 	} else {
141276babe50SJustin T. Gibbs 		timeout *= 1000;
141376babe50SJustin T. Gibbs 	}
141476babe50SJustin T. Gibbs 
141576babe50SJustin T. Gibbs 	error = 0;
141676babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
141776babe50SJustin T. Gibbs 
1418bbfa4aa1SAlexander Motin 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
141976babe50SJustin T. Gibbs 
142076babe50SJustin T. Gibbs 	scsi_initialize_element_status(&ccb->csio,
142176babe50SJustin T. Gibbs 				      /* retries */ 1,
142276babe50SJustin T. Gibbs 				      /* cbfcnp */ chdone,
142376babe50SJustin T. Gibbs 				      /* tag_action */ MSG_SIMPLE_Q_TAG,
142476babe50SJustin T. Gibbs 				      /* sense_len */ SSD_FULL_SIZE,
142576babe50SJustin T. Gibbs 				      /* timeout */ timeout);
142676babe50SJustin T. Gibbs 
14273393f8daSKenneth D. Merry 	error = cam_periph_runccb(ccb, cherror, /*cam_flags*/ CAM_RETRY_SELTO,
14283393f8daSKenneth D. Merry 				  /*sense_flags*/ SF_RETRY_UA,
1429a9d2245eSPoul-Henning Kamp 				  softc->device_stats);
143076babe50SJustin T. Gibbs 
143176babe50SJustin T. Gibbs 	xpt_release_ccb(ccb);
143276babe50SJustin T. Gibbs 
143376babe50SJustin T. Gibbs 	return(error);
143476babe50SJustin T. Gibbs }
143576babe50SJustin T. Gibbs 
143676babe50SJustin T. Gibbs static int
chsetvoltag(struct cam_periph * periph,struct changer_set_voltag_request * csvr)143776babe50SJustin T. Gibbs chsetvoltag(struct cam_periph *periph,
143876babe50SJustin T. Gibbs 	    struct changer_set_voltag_request *csvr)
143976babe50SJustin T. Gibbs {
144076babe50SJustin T. Gibbs 	union ccb *ccb;
144176babe50SJustin T. Gibbs 	struct ch_softc *softc;
1442*7c5d20a6SWarner Losh 	uint16_t ea;
1443*7c5d20a6SWarner Losh 	uint8_t sac;
144476babe50SJustin T. Gibbs 	struct scsi_send_volume_tag_parameters ssvtp;
144576babe50SJustin T. Gibbs 	int error;
144676babe50SJustin T. Gibbs 	int i;
144776babe50SJustin T. Gibbs 
144876babe50SJustin T. Gibbs 	error = 0;
144976babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
145076babe50SJustin T. Gibbs 
145176babe50SJustin T. Gibbs 	bzero(&ssvtp, sizeof(ssvtp));
145276babe50SJustin T. Gibbs 	for (i=0; i<sizeof(ssvtp.vitf); i++) {
145376babe50SJustin T. Gibbs 		ssvtp.vitf[i] = ' ';
145476babe50SJustin T. Gibbs 	}
145576babe50SJustin T. Gibbs 
145676babe50SJustin T. Gibbs 	/*
145776babe50SJustin T. Gibbs 	 * Check arguments.
145876babe50SJustin T. Gibbs 	 */
145976babe50SJustin T. Gibbs 	if (csvr->csvr_type > CHET_DT)
146076babe50SJustin T. Gibbs 		return EINVAL;
146176babe50SJustin T. Gibbs 	if (csvr->csvr_addr > (softc->sc_counts[csvr->csvr_type] - 1))
146276babe50SJustin T. Gibbs 		return ENODEV;
146376babe50SJustin T. Gibbs 
146476babe50SJustin T. Gibbs 	ea = softc->sc_firsts[csvr->csvr_type] + csvr->csvr_addr;
146576babe50SJustin T. Gibbs 
146676babe50SJustin T. Gibbs 	if (csvr->csvr_flags & CSVR_ALTERNATE) {
146776babe50SJustin T. Gibbs 		switch (csvr->csvr_flags & CSVR_MODE_MASK) {
146876babe50SJustin T. Gibbs 		case CSVR_MODE_SET:
146976babe50SJustin T. Gibbs 			sac = SEND_VOLUME_TAG_ASSERT_ALTERNATE;
147076babe50SJustin T. Gibbs 			break;
147176babe50SJustin T. Gibbs 		case CSVR_MODE_REPLACE:
147276babe50SJustin T. Gibbs 			sac = SEND_VOLUME_TAG_REPLACE_ALTERNATE;
147376babe50SJustin T. Gibbs 			break;
147476babe50SJustin T. Gibbs 		case CSVR_MODE_CLEAR:
147576babe50SJustin T. Gibbs 			sac = SEND_VOLUME_TAG_UNDEFINED_ALTERNATE;
147676babe50SJustin T. Gibbs 			break;
147776babe50SJustin T. Gibbs 		default:
147876babe50SJustin T. Gibbs 			error = EINVAL;
147976babe50SJustin T. Gibbs 			goto out;
148076babe50SJustin T. Gibbs 		}
148176babe50SJustin T. Gibbs 	} else {
148276babe50SJustin T. Gibbs 		switch (csvr->csvr_flags & CSVR_MODE_MASK) {
148376babe50SJustin T. Gibbs 		case CSVR_MODE_SET:
148476babe50SJustin T. Gibbs 			sac = SEND_VOLUME_TAG_ASSERT_PRIMARY;
148576babe50SJustin T. Gibbs 			break;
148676babe50SJustin T. Gibbs 		case CSVR_MODE_REPLACE:
148776babe50SJustin T. Gibbs 			sac = SEND_VOLUME_TAG_REPLACE_PRIMARY;
148876babe50SJustin T. Gibbs 			break;
148976babe50SJustin T. Gibbs 		case CSVR_MODE_CLEAR:
149076babe50SJustin T. Gibbs 			sac = SEND_VOLUME_TAG_UNDEFINED_PRIMARY;
149176babe50SJustin T. Gibbs 			break;
149276babe50SJustin T. Gibbs 		default:
149376babe50SJustin T. Gibbs 			error = EINVAL;
149476babe50SJustin T. Gibbs 			goto out;
149576babe50SJustin T. Gibbs 		}
149676babe50SJustin T. Gibbs 	}
149776babe50SJustin T. Gibbs 
149876babe50SJustin T. Gibbs 	memcpy(ssvtp.vitf, csvr->csvr_voltag.cv_volid,
149976babe50SJustin T. Gibbs 	       min(strlen(csvr->csvr_voltag.cv_volid), sizeof(ssvtp.vitf)));
150076babe50SJustin T. Gibbs 	scsi_ulto2b(csvr->csvr_voltag.cv_serial, ssvtp.minvsn);
150176babe50SJustin T. Gibbs 
1502bbfa4aa1SAlexander Motin 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
150376babe50SJustin T. Gibbs 
150476babe50SJustin T. Gibbs 	scsi_send_volume_tag(&ccb->csio,
150576babe50SJustin T. Gibbs 			     /* retries */ 1,
150676babe50SJustin T. Gibbs 			     /* cbfcnp */ chdone,
150776babe50SJustin T. Gibbs 			     /* tag_action */ MSG_SIMPLE_Q_TAG,
150876babe50SJustin T. Gibbs 			     /* element_address */ ea,
150976babe50SJustin T. Gibbs 			     /* send_action_code */ sac,
151076babe50SJustin T. Gibbs 			     /* parameters */ &ssvtp,
151176babe50SJustin T. Gibbs 			     /* sense_len */ SSD_FULL_SIZE,
151276babe50SJustin T. Gibbs 			     /* timeout */ CH_TIMEOUT_SEND_VOLTAG);
151376babe50SJustin T. Gibbs 
15143393f8daSKenneth D. Merry 	error = cam_periph_runccb(ccb, cherror, /*cam_flags*/ CAM_RETRY_SELTO,
15153393f8daSKenneth D. Merry 				  /*sense_flags*/ SF_RETRY_UA,
1516a9d2245eSPoul-Henning Kamp 				  softc->device_stats);
151776babe50SJustin T. Gibbs 
151876babe50SJustin T. Gibbs 	xpt_release_ccb(ccb);
151976babe50SJustin T. Gibbs 
152076babe50SJustin T. Gibbs  out:
152176babe50SJustin T. Gibbs 	return error;
152276babe50SJustin T. Gibbs }
152376babe50SJustin T. Gibbs 
152476babe50SJustin T. Gibbs static int
chgetparams(struct cam_periph * periph)152576babe50SJustin T. Gibbs chgetparams(struct cam_periph *periph)
152676babe50SJustin T. Gibbs {
152776babe50SJustin T. Gibbs 	union ccb *ccb;
152876babe50SJustin T. Gibbs 	struct ch_softc *softc;
1529696db222SKenneth D. Merry 	void *mode_buffer;
1530696db222SKenneth D. Merry 	int mode_buffer_len;
1531696db222SKenneth D. Merry 	struct page_element_address_assignment *ea;
1532696db222SKenneth D. Merry 	struct page_device_capabilities *cap;
1533696db222SKenneth D. Merry 	int error, from, dbd;
1534*7c5d20a6SWarner Losh 	uint8_t *moves, *exchanges;
153576babe50SJustin T. Gibbs 
153676babe50SJustin T. Gibbs 	error = 0;
153776babe50SJustin T. Gibbs 
153876babe50SJustin T. Gibbs 	softc = (struct ch_softc *)periph->softc;
153976babe50SJustin T. Gibbs 
1540bbfa4aa1SAlexander Motin 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
154176babe50SJustin T. Gibbs 
1542696db222SKenneth D. Merry 	/*
1543696db222SKenneth D. Merry 	 * The scsi_mode_sense_data structure is just a convenience
1544696db222SKenneth D. Merry 	 * structure that allows us to easily calculate the worst-case
1545696db222SKenneth D. Merry 	 * storage size of the mode sense buffer.
1546696db222SKenneth D. Merry 	 */
1547696db222SKenneth D. Merry 	mode_buffer_len = sizeof(struct scsi_mode_sense_data);
1548696db222SKenneth D. Merry 
15490dd50e9bSScott Long 	mode_buffer = malloc(mode_buffer_len, M_SCSICH, M_NOWAIT);
1550696db222SKenneth D. Merry 
1551696db222SKenneth D. Merry 	if (mode_buffer == NULL) {
155276babe50SJustin T. Gibbs 		printf("chgetparams: couldn't malloc mode sense data\n");
15539ff3cdffSBryan Drewery 		xpt_release_ccb(ccb);
155476babe50SJustin T. Gibbs 		return(ENOSPC);
155576babe50SJustin T. Gibbs 	}
155676babe50SJustin T. Gibbs 
1557696db222SKenneth D. Merry 	bzero(mode_buffer, mode_buffer_len);
1558696db222SKenneth D. Merry 
1559696db222SKenneth D. Merry 	if (softc->quirks & CH_Q_NO_DBD)
1560696db222SKenneth D. Merry 		dbd = FALSE;
1561696db222SKenneth D. Merry 	else
1562696db222SKenneth D. Merry 		dbd = TRUE;
156376babe50SJustin T. Gibbs 
156476babe50SJustin T. Gibbs 	/*
156576babe50SJustin T. Gibbs 	 * Get the element address assignment page.
156676babe50SJustin T. Gibbs 	 */
156776babe50SJustin T. Gibbs 	scsi_mode_sense(&ccb->csio,
156876babe50SJustin T. Gibbs 			/* retries */ 1,
156976babe50SJustin T. Gibbs 			/* cbfcnp */ chdone,
157076babe50SJustin T. Gibbs 			/* tag_action */ MSG_SIMPLE_Q_TAG,
1571696db222SKenneth D. Merry 			/* dbd */ dbd,
157254644e21SAlexander Motin 			/* pc */ SMS_PAGE_CTRL_CURRENT,
157376babe50SJustin T. Gibbs 			/* page */ CH_ELEMENT_ADDR_ASSIGN_PAGE,
1574*7c5d20a6SWarner Losh 			/* param_buf */ (uint8_t *)mode_buffer,
1575696db222SKenneth D. Merry 			/* param_len */ mode_buffer_len,
157676babe50SJustin T. Gibbs 			/* sense_len */ SSD_FULL_SIZE,
157776babe50SJustin T. Gibbs 			/* timeout */ CH_TIMEOUT_MODE_SENSE);
157876babe50SJustin T. Gibbs 
15793393f8daSKenneth D. Merry 	error = cam_periph_runccb(ccb, cherror, /*cam_flags*/ CAM_RETRY_SELTO,
15803393f8daSKenneth D. Merry 				  /* sense_flags */ SF_RETRY_UA|SF_NO_PRINT,
1581a9d2245eSPoul-Henning Kamp 				  softc->device_stats);
158276babe50SJustin T. Gibbs 
158376babe50SJustin T. Gibbs 	if (error) {
1584696db222SKenneth D. Merry 		if (dbd) {
1585696db222SKenneth D. Merry 			struct scsi_mode_sense_6 *sms;
1586696db222SKenneth D. Merry 
1587696db222SKenneth D. Merry 			sms = (struct scsi_mode_sense_6 *)
1588696db222SKenneth D. Merry 				ccb->csio.cdb_io.cdb_bytes;
1589696db222SKenneth D. Merry 
1590696db222SKenneth D. Merry 			sms->byte2 &= ~SMS_DBD;
15913393f8daSKenneth D. Merry 			error = cam_periph_runccb(ccb, cherror,
15923393f8daSKenneth D. Merry 						  /*cam_flags*/ CAM_RETRY_SELTO,
15933393f8daSKenneth D. Merry 				  		  /*sense_flags*/ SF_RETRY_UA,
1594a9d2245eSPoul-Henning Kamp 						  softc->device_stats);
1595696db222SKenneth D. Merry 		} else {
1596696db222SKenneth D. Merry 			/*
1597696db222SKenneth D. Merry 			 * Since we disabled sense printing above, print
1598696db222SKenneth D. Merry 			 * out the sense here since we got an error.
1599696db222SKenneth D. Merry 			 */
1600696db222SKenneth D. Merry 			scsi_sense_print(&ccb->csio);
160176babe50SJustin T. Gibbs 		}
160276babe50SJustin T. Gibbs 
1603696db222SKenneth D. Merry 		if (error) {
1604f0d9af51SMatt Jacob 			xpt_print(periph->path,
1605f0d9af51SMatt Jacob 			    "chgetparams: error getting element "
1606696db222SKenneth D. Merry 			    "address page\n");
1607696db222SKenneth D. Merry 			xpt_release_ccb(ccb);
16080dd50e9bSScott Long 			free(mode_buffer, M_SCSICH);
1609696db222SKenneth D. Merry 			return(error);
1610696db222SKenneth D. Merry 		}
1611696db222SKenneth D. Merry 	}
161276babe50SJustin T. Gibbs 
1613696db222SKenneth D. Merry 	ea = (struct page_element_address_assignment *)
1614696db222SKenneth D. Merry 		find_mode_page_6((struct scsi_mode_header_6 *)mode_buffer);
1615696db222SKenneth D. Merry 
1616696db222SKenneth D. Merry 	softc->sc_firsts[CHET_MT] = scsi_2btoul(ea->mtea);
1617696db222SKenneth D. Merry 	softc->sc_counts[CHET_MT] = scsi_2btoul(ea->nmte);
1618696db222SKenneth D. Merry 	softc->sc_firsts[CHET_ST] = scsi_2btoul(ea->fsea);
1619696db222SKenneth D. Merry 	softc->sc_counts[CHET_ST] = scsi_2btoul(ea->nse);
1620696db222SKenneth D. Merry 	softc->sc_firsts[CHET_IE] = scsi_2btoul(ea->fieea);
1621696db222SKenneth D. Merry 	softc->sc_counts[CHET_IE] = scsi_2btoul(ea->niee);
1622696db222SKenneth D. Merry 	softc->sc_firsts[CHET_DT] = scsi_2btoul(ea->fdtea);
1623696db222SKenneth D. Merry 	softc->sc_counts[CHET_DT] = scsi_2btoul(ea->ndte);
1624696db222SKenneth D. Merry 
1625696db222SKenneth D. Merry 	bzero(mode_buffer, mode_buffer_len);
162676babe50SJustin T. Gibbs 
162776babe50SJustin T. Gibbs 	/*
162876babe50SJustin T. Gibbs 	 * Now get the device capabilities page.
162976babe50SJustin T. Gibbs 	 */
163076babe50SJustin T. Gibbs 	scsi_mode_sense(&ccb->csio,
163176babe50SJustin T. Gibbs 			/* retries */ 1,
163276babe50SJustin T. Gibbs 			/* cbfcnp */ chdone,
163376babe50SJustin T. Gibbs 			/* tag_action */ MSG_SIMPLE_Q_TAG,
1634696db222SKenneth D. Merry 			/* dbd */ dbd,
163554644e21SAlexander Motin 			/* pc */ SMS_PAGE_CTRL_CURRENT,
163676babe50SJustin T. Gibbs 			/* page */ CH_DEVICE_CAP_PAGE,
1637*7c5d20a6SWarner Losh 			/* param_buf */ (uint8_t *)mode_buffer,
1638696db222SKenneth D. Merry 			/* param_len */ mode_buffer_len,
163976babe50SJustin T. Gibbs 			/* sense_len */ SSD_FULL_SIZE,
164076babe50SJustin T. Gibbs 			/* timeout */ CH_TIMEOUT_MODE_SENSE);
164176babe50SJustin T. Gibbs 
16423393f8daSKenneth D. Merry 	error = cam_periph_runccb(ccb, cherror, /*cam_flags*/ CAM_RETRY_SELTO,
16433393f8daSKenneth D. Merry 				  /* sense_flags */ SF_RETRY_UA | SF_NO_PRINT,
1644a9d2245eSPoul-Henning Kamp 				  softc->device_stats);
164576babe50SJustin T. Gibbs 
1646696db222SKenneth D. Merry 	if (error) {
1647696db222SKenneth D. Merry 		if (dbd) {
1648696db222SKenneth D. Merry 			struct scsi_mode_sense_6 *sms;
1649696db222SKenneth D. Merry 
1650696db222SKenneth D. Merry 			sms = (struct scsi_mode_sense_6 *)
1651696db222SKenneth D. Merry 				ccb->csio.cdb_io.cdb_bytes;
1652696db222SKenneth D. Merry 
1653696db222SKenneth D. Merry 			sms->byte2 &= ~SMS_DBD;
16543393f8daSKenneth D. Merry 			error = cam_periph_runccb(ccb, cherror,
16553393f8daSKenneth D. Merry 						  /*cam_flags*/ CAM_RETRY_SELTO,
16563393f8daSKenneth D. Merry 				  		  /*sense_flags*/ SF_RETRY_UA,
1657a9d2245eSPoul-Henning Kamp 						  softc->device_stats);
1658696db222SKenneth D. Merry 		} else {
1659696db222SKenneth D. Merry 			/*
1660696db222SKenneth D. Merry 			 * Since we disabled sense printing above, print
1661696db222SKenneth D. Merry 			 * out the sense here since we got an error.
1662696db222SKenneth D. Merry 			 */
1663696db222SKenneth D. Merry 			scsi_sense_print(&ccb->csio);
1664696db222SKenneth D. Merry 		}
166576babe50SJustin T. Gibbs 
166676babe50SJustin T. Gibbs 		if (error) {
1667f0d9af51SMatt Jacob 			xpt_print(periph->path,
1668f0d9af51SMatt Jacob 			    "chgetparams: error getting device "
1669696db222SKenneth D. Merry 			    "capabilities page\n");
1670696db222SKenneth D. Merry 			xpt_release_ccb(ccb);
16710dd50e9bSScott Long 			free(mode_buffer, M_SCSICH);
167276babe50SJustin T. Gibbs 			return(error);
167376babe50SJustin T. Gibbs 		}
1674696db222SKenneth D. Merry 	}
167576babe50SJustin T. Gibbs 
1676696db222SKenneth D. Merry 	xpt_release_ccb(ccb);
1677696db222SKenneth D. Merry 
1678696db222SKenneth D. Merry 	cap = (struct page_device_capabilities *)
1679696db222SKenneth D. Merry 		find_mode_page_6((struct scsi_mode_header_6 *)mode_buffer);
168076babe50SJustin T. Gibbs 
168176babe50SJustin T. Gibbs 	bzero(softc->sc_movemask, sizeof(softc->sc_movemask));
168276babe50SJustin T. Gibbs 	bzero(softc->sc_exchangemask, sizeof(softc->sc_exchangemask));
168356824e13SPoul-Henning Kamp 	moves = cap->move_from;
168456824e13SPoul-Henning Kamp 	exchanges = cap->exchange_with;
168556824e13SPoul-Henning Kamp 	for (from = CHET_MT; from <= CHET_MAX; ++from) {
168676babe50SJustin T. Gibbs 		softc->sc_movemask[from] = moves[from];
168776babe50SJustin T. Gibbs 		softc->sc_exchangemask[from] = exchanges[from];
168876babe50SJustin T. Gibbs 	}
168976babe50SJustin T. Gibbs 
16900dd50e9bSScott Long 	free(mode_buffer, M_SCSICH);
1691696db222SKenneth D. Merry 
169276babe50SJustin T. Gibbs 	return(error);
169376babe50SJustin T. Gibbs }
169476babe50SJustin T. Gibbs 
169521b6ee96SKenneth D. Merry static int
chscsiversion(struct cam_periph * periph)169621b6ee96SKenneth D. Merry chscsiversion(struct cam_periph *periph)
169721b6ee96SKenneth D. Merry {
169821b6ee96SKenneth D. Merry 	struct scsi_inquiry_data *inq_data;
169921b6ee96SKenneth D. Merry 	struct ccb_getdev *cgd;
170021b6ee96SKenneth D. Merry 	int dev_scsi_version;
170121b6ee96SKenneth D. Merry 
1702227d67aaSAlexander Motin 	cam_periph_assert(periph, MA_OWNED);
170321b6ee96SKenneth D. Merry 	if ((cgd = (struct ccb_getdev *)xpt_alloc_ccb_nowait()) == NULL)
170421b6ee96SKenneth D. Merry 		return (-1);
170521b6ee96SKenneth D. Merry 	/*
170621b6ee96SKenneth D. Merry 	 * Get the device information.
170721b6ee96SKenneth D. Merry 	 */
170821b6ee96SKenneth D. Merry 	xpt_setup_ccb(&cgd->ccb_h,
170921b6ee96SKenneth D. Merry 		      periph->path,
171021b6ee96SKenneth D. Merry 		      CAM_PRIORITY_NORMAL);
171121b6ee96SKenneth D. Merry 	cgd->ccb_h.func_code = XPT_GDEV_TYPE;
171221b6ee96SKenneth D. Merry 	xpt_action((union ccb *)cgd);
171321b6ee96SKenneth D. Merry 
171421b6ee96SKenneth D. Merry 	if (cgd->ccb_h.status != CAM_REQ_CMP) {
171521b6ee96SKenneth D. Merry 		xpt_free_ccb((union ccb *)cgd);
171621b6ee96SKenneth D. Merry 		return -1;
171721b6ee96SKenneth D. Merry 	}
171821b6ee96SKenneth D. Merry 
171921b6ee96SKenneth D. Merry 	inq_data = &cgd->inq_data;
172021b6ee96SKenneth D. Merry 	dev_scsi_version = inq_data->version;
172121b6ee96SKenneth D. Merry 	xpt_free_ccb((union ccb *)cgd);
172221b6ee96SKenneth D. Merry 
172321b6ee96SKenneth D. Merry 	return dev_scsi_version;
172421b6ee96SKenneth D. Merry }
172521b6ee96SKenneth D. Merry 
172676babe50SJustin T. Gibbs void
scsi_move_medium(struct ccb_scsiio * csio,uint32_t retries,void (* cbfcnp)(struct cam_periph *,union ccb *),uint8_t tag_action,uint32_t tea,uint32_t src,uint32_t dst,int invert,uint8_t sense_len,uint32_t timeout)1727*7c5d20a6SWarner Losh scsi_move_medium(struct ccb_scsiio *csio, uint32_t retries,
172876babe50SJustin T. Gibbs 		 void (*cbfcnp)(struct cam_periph *, union ccb *),
1729*7c5d20a6SWarner Losh 		 uint8_t tag_action, uint32_t tea, uint32_t src,
1730*7c5d20a6SWarner Losh 		 uint32_t dst, int invert, uint8_t sense_len,
1731*7c5d20a6SWarner Losh 		 uint32_t timeout)
173276babe50SJustin T. Gibbs {
173376babe50SJustin T. Gibbs 	struct scsi_move_medium *scsi_cmd;
173476babe50SJustin T. Gibbs 
173576babe50SJustin T. Gibbs 	scsi_cmd = (struct scsi_move_medium *)&csio->cdb_io.cdb_bytes;
173676babe50SJustin T. Gibbs 	bzero(scsi_cmd, sizeof(*scsi_cmd));
173776babe50SJustin T. Gibbs 
173876babe50SJustin T. Gibbs 	scsi_cmd->opcode = MOVE_MEDIUM;
173976babe50SJustin T. Gibbs 
174076babe50SJustin T. Gibbs 	scsi_ulto2b(tea, scsi_cmd->tea);
174176babe50SJustin T. Gibbs 	scsi_ulto2b(src, scsi_cmd->src);
174276babe50SJustin T. Gibbs 	scsi_ulto2b(dst, scsi_cmd->dst);
174376babe50SJustin T. Gibbs 
174476babe50SJustin T. Gibbs 	if (invert)
174576babe50SJustin T. Gibbs 		scsi_cmd->invert |= MOVE_MEDIUM_INVERT;
174676babe50SJustin T. Gibbs 
174776babe50SJustin T. Gibbs 	cam_fill_csio(csio,
174876babe50SJustin T. Gibbs 		      retries,
174976babe50SJustin T. Gibbs 		      cbfcnp,
175076babe50SJustin T. Gibbs 		      /*flags*/ CAM_DIR_NONE,
175176babe50SJustin T. Gibbs 		      tag_action,
175276babe50SJustin T. Gibbs 		      /*data_ptr*/ NULL,
175376babe50SJustin T. Gibbs 		      /*dxfer_len*/ 0,
175476babe50SJustin T. Gibbs 		      sense_len,
175576babe50SJustin T. Gibbs 		      sizeof(*scsi_cmd),
175676babe50SJustin T. Gibbs 		      timeout);
175776babe50SJustin T. Gibbs }
175876babe50SJustin T. Gibbs 
175976babe50SJustin T. Gibbs void
scsi_exchange_medium(struct ccb_scsiio * csio,uint32_t retries,void (* cbfcnp)(struct cam_periph *,union ccb *),uint8_t tag_action,uint32_t tea,uint32_t src,uint32_t dst1,uint32_t dst2,int invert1,int invert2,uint8_t sense_len,uint32_t timeout)1760*7c5d20a6SWarner Losh scsi_exchange_medium(struct ccb_scsiio *csio, uint32_t retries,
176176babe50SJustin T. Gibbs 		     void (*cbfcnp)(struct cam_periph *, union ccb *),
1762*7c5d20a6SWarner Losh 		     uint8_t tag_action, uint32_t tea, uint32_t src,
1763*7c5d20a6SWarner Losh 		     uint32_t dst1, uint32_t dst2, int invert1,
1764*7c5d20a6SWarner Losh 		     int invert2, uint8_t sense_len, uint32_t timeout)
176576babe50SJustin T. Gibbs {
176676babe50SJustin T. Gibbs 	struct scsi_exchange_medium *scsi_cmd;
176776babe50SJustin T. Gibbs 
176876babe50SJustin T. Gibbs 	scsi_cmd = (struct scsi_exchange_medium *)&csio->cdb_io.cdb_bytes;
176976babe50SJustin T. Gibbs 	bzero(scsi_cmd, sizeof(*scsi_cmd));
177076babe50SJustin T. Gibbs 
177176babe50SJustin T. Gibbs 	scsi_cmd->opcode = EXCHANGE_MEDIUM;
177276babe50SJustin T. Gibbs 
177376babe50SJustin T. Gibbs 	scsi_ulto2b(tea, scsi_cmd->tea);
177476babe50SJustin T. Gibbs 	scsi_ulto2b(src, scsi_cmd->src);
177576babe50SJustin T. Gibbs 	scsi_ulto2b(dst1, scsi_cmd->fdst);
177676babe50SJustin T. Gibbs 	scsi_ulto2b(dst2, scsi_cmd->sdst);
177776babe50SJustin T. Gibbs 
177876babe50SJustin T. Gibbs 	if (invert1)
177976babe50SJustin T. Gibbs 		scsi_cmd->invert |= EXCHANGE_MEDIUM_INV1;
178076babe50SJustin T. Gibbs 
178176babe50SJustin T. Gibbs 	if (invert2)
178276babe50SJustin T. Gibbs 		scsi_cmd->invert |= EXCHANGE_MEDIUM_INV2;
178376babe50SJustin T. Gibbs 
178476babe50SJustin T. Gibbs 	cam_fill_csio(csio,
178576babe50SJustin T. Gibbs 		      retries,
178676babe50SJustin T. Gibbs 		      cbfcnp,
178776babe50SJustin T. Gibbs 		      /*flags*/ CAM_DIR_NONE,
178876babe50SJustin T. Gibbs 		      tag_action,
178976babe50SJustin T. Gibbs 		      /*data_ptr*/ NULL,
179076babe50SJustin T. Gibbs 		      /*dxfer_len*/ 0,
179176babe50SJustin T. Gibbs 		      sense_len,
179276babe50SJustin T. Gibbs 		      sizeof(*scsi_cmd),
179376babe50SJustin T. Gibbs 		      timeout);
179476babe50SJustin T. Gibbs }
179576babe50SJustin T. Gibbs 
179676babe50SJustin T. Gibbs void
scsi_position_to_element(struct ccb_scsiio * csio,uint32_t retries,void (* cbfcnp)(struct cam_periph *,union ccb *),uint8_t tag_action,uint32_t tea,uint32_t dst,int invert,uint8_t sense_len,uint32_t timeout)1797*7c5d20a6SWarner Losh scsi_position_to_element(struct ccb_scsiio *csio, uint32_t retries,
179876babe50SJustin T. Gibbs 			 void (*cbfcnp)(struct cam_periph *, union ccb *),
1799*7c5d20a6SWarner Losh 			 uint8_t tag_action, uint32_t tea, uint32_t dst,
1800*7c5d20a6SWarner Losh 			 int invert, uint8_t sense_len, uint32_t timeout)
180176babe50SJustin T. Gibbs {
180276babe50SJustin T. Gibbs 	struct scsi_position_to_element *scsi_cmd;
180376babe50SJustin T. Gibbs 
180476babe50SJustin T. Gibbs 	scsi_cmd = (struct scsi_position_to_element *)&csio->cdb_io.cdb_bytes;
180576babe50SJustin T. Gibbs 	bzero(scsi_cmd, sizeof(*scsi_cmd));
180676babe50SJustin T. Gibbs 
180776babe50SJustin T. Gibbs 	scsi_cmd->opcode = POSITION_TO_ELEMENT;
180876babe50SJustin T. Gibbs 
180976babe50SJustin T. Gibbs 	scsi_ulto2b(tea, scsi_cmd->tea);
181076babe50SJustin T. Gibbs 	scsi_ulto2b(dst, scsi_cmd->dst);
181176babe50SJustin T. Gibbs 
181276babe50SJustin T. Gibbs 	if (invert)
181376babe50SJustin T. Gibbs 		scsi_cmd->invert |= POSITION_TO_ELEMENT_INVERT;
181476babe50SJustin T. Gibbs 
181576babe50SJustin T. Gibbs 	cam_fill_csio(csio,
181676babe50SJustin T. Gibbs 		      retries,
181776babe50SJustin T. Gibbs 		      cbfcnp,
181876babe50SJustin T. Gibbs 		      /*flags*/ CAM_DIR_NONE,
181976babe50SJustin T. Gibbs 		      tag_action,
182076babe50SJustin T. Gibbs 		      /*data_ptr*/ NULL,
182176babe50SJustin T. Gibbs 		      /*dxfer_len*/ 0,
182276babe50SJustin T. Gibbs 		      sense_len,
182376babe50SJustin T. Gibbs 		      sizeof(*scsi_cmd),
182476babe50SJustin T. Gibbs 		      timeout);
182576babe50SJustin T. Gibbs }
182676babe50SJustin T. Gibbs 
182776babe50SJustin T. Gibbs void
scsi_read_element_status(struct ccb_scsiio * csio,uint32_t retries,void (* cbfcnp)(struct cam_periph *,union ccb *),uint8_t tag_action,int voltag,uint32_t sea,int curdata,int dvcid,uint32_t count,uint8_t * data_ptr,uint32_t dxfer_len,uint8_t sense_len,uint32_t timeout)1828*7c5d20a6SWarner Losh scsi_read_element_status(struct ccb_scsiio *csio, uint32_t retries,
182976babe50SJustin T. Gibbs 			 void (*cbfcnp)(struct cam_periph *, union ccb *),
1830*7c5d20a6SWarner Losh 			 uint8_t tag_action, int voltag, uint32_t sea,
183121b6ee96SKenneth D. Merry 			 int curdata, int dvcid,
1832*7c5d20a6SWarner Losh 			 uint32_t count, uint8_t *data_ptr,
1833*7c5d20a6SWarner Losh 			 uint32_t dxfer_len, uint8_t sense_len,
1834*7c5d20a6SWarner Losh 			 uint32_t timeout)
183576babe50SJustin T. Gibbs {
183676babe50SJustin T. Gibbs 	struct scsi_read_element_status *scsi_cmd;
183776babe50SJustin T. Gibbs 
183876babe50SJustin T. Gibbs 	scsi_cmd = (struct scsi_read_element_status *)&csio->cdb_io.cdb_bytes;
183976babe50SJustin T. Gibbs 	bzero(scsi_cmd, sizeof(*scsi_cmd));
184076babe50SJustin T. Gibbs 
184176babe50SJustin T. Gibbs 	scsi_cmd->opcode = READ_ELEMENT_STATUS;
184276babe50SJustin T. Gibbs 
184376babe50SJustin T. Gibbs 	scsi_ulto2b(sea, scsi_cmd->sea);
184476babe50SJustin T. Gibbs 	scsi_ulto2b(count, scsi_cmd->count);
184576babe50SJustin T. Gibbs 	scsi_ulto3b(dxfer_len, scsi_cmd->len);
184621b6ee96SKenneth D. Merry 	if (dvcid)
184721b6ee96SKenneth D. Merry 		scsi_cmd->flags |= READ_ELEMENT_STATUS_DVCID;
184821b6ee96SKenneth D. Merry 	if (curdata)
184921b6ee96SKenneth D. Merry 		scsi_cmd->flags |= READ_ELEMENT_STATUS_CURDATA;
185076babe50SJustin T. Gibbs 
185176babe50SJustin T. Gibbs 	if (voltag)
185276babe50SJustin T. Gibbs 		scsi_cmd->byte2 |= READ_ELEMENT_STATUS_VOLTAG;
185376babe50SJustin T. Gibbs 
185476babe50SJustin T. Gibbs 	cam_fill_csio(csio,
185576babe50SJustin T. Gibbs 		      retries,
185676babe50SJustin T. Gibbs 		      cbfcnp,
185776babe50SJustin T. Gibbs 		      /*flags*/ CAM_DIR_IN,
185876babe50SJustin T. Gibbs 		      tag_action,
185976babe50SJustin T. Gibbs 		      data_ptr,
186076babe50SJustin T. Gibbs 		      dxfer_len,
186176babe50SJustin T. Gibbs 		      sense_len,
186276babe50SJustin T. Gibbs 		      sizeof(*scsi_cmd),
186376babe50SJustin T. Gibbs 		      timeout);
186476babe50SJustin T. Gibbs }
186576babe50SJustin T. Gibbs 
186676babe50SJustin T. Gibbs void
scsi_initialize_element_status(struct ccb_scsiio * csio,uint32_t retries,void (* cbfcnp)(struct cam_periph *,union ccb *),uint8_t tag_action,uint8_t sense_len,uint32_t timeout)1867*7c5d20a6SWarner Losh scsi_initialize_element_status(struct ccb_scsiio *csio, uint32_t retries,
186876babe50SJustin T. Gibbs 			       void (*cbfcnp)(struct cam_periph *, union ccb *),
1869*7c5d20a6SWarner Losh 			       uint8_t tag_action, uint8_t sense_len,
1870*7c5d20a6SWarner Losh 			       uint32_t timeout)
187176babe50SJustin T. Gibbs {
187276babe50SJustin T. Gibbs 	struct scsi_initialize_element_status *scsi_cmd;
187376babe50SJustin T. Gibbs 
187476babe50SJustin T. Gibbs 	scsi_cmd = (struct scsi_initialize_element_status *)
187576babe50SJustin T. Gibbs 		    &csio->cdb_io.cdb_bytes;
187676babe50SJustin T. Gibbs 	bzero(scsi_cmd, sizeof(*scsi_cmd));
187776babe50SJustin T. Gibbs 
187876babe50SJustin T. Gibbs 	scsi_cmd->opcode = INITIALIZE_ELEMENT_STATUS;
187976babe50SJustin T. Gibbs 
188076babe50SJustin T. Gibbs 	cam_fill_csio(csio,
188176babe50SJustin T. Gibbs 		      retries,
188276babe50SJustin T. Gibbs 		      cbfcnp,
188376babe50SJustin T. Gibbs 		      /*flags*/ CAM_DIR_NONE,
188476babe50SJustin T. Gibbs 		      tag_action,
188576babe50SJustin T. Gibbs 		      /* data_ptr */ NULL,
188676babe50SJustin T. Gibbs 		      /* dxfer_len */ 0,
188776babe50SJustin T. Gibbs 		      sense_len,
188876babe50SJustin T. Gibbs 		      sizeof(*scsi_cmd),
188976babe50SJustin T. Gibbs 		      timeout);
189076babe50SJustin T. Gibbs }
189176babe50SJustin T. Gibbs 
189276babe50SJustin T. Gibbs void
scsi_send_volume_tag(struct ccb_scsiio * csio,uint32_t retries,void (* cbfcnp)(struct cam_periph *,union ccb *),uint8_t tag_action,uint16_t element_address,uint8_t send_action_code,struct scsi_send_volume_tag_parameters * parameters,uint8_t sense_len,uint32_t timeout)1893*7c5d20a6SWarner Losh scsi_send_volume_tag(struct ccb_scsiio *csio, uint32_t retries,
189476babe50SJustin T. Gibbs 		     void (*cbfcnp)(struct cam_periph *, union ccb *),
1895*7c5d20a6SWarner Losh 		     uint8_t tag_action,
1896*7c5d20a6SWarner Losh 		     uint16_t element_address,
1897*7c5d20a6SWarner Losh 		     uint8_t send_action_code,
189876babe50SJustin T. Gibbs 		     struct scsi_send_volume_tag_parameters *parameters,
1899*7c5d20a6SWarner Losh 		     uint8_t sense_len, uint32_t timeout)
190076babe50SJustin T. Gibbs {
190176babe50SJustin T. Gibbs 	struct scsi_send_volume_tag *scsi_cmd;
190276babe50SJustin T. Gibbs 
190376babe50SJustin T. Gibbs 	scsi_cmd = (struct scsi_send_volume_tag *) &csio->cdb_io.cdb_bytes;
190476babe50SJustin T. Gibbs 	bzero(scsi_cmd, sizeof(*scsi_cmd));
190576babe50SJustin T. Gibbs 
190676babe50SJustin T. Gibbs 	scsi_cmd->opcode = SEND_VOLUME_TAG;
190776babe50SJustin T. Gibbs 	scsi_ulto2b(element_address, scsi_cmd->ea);
190876babe50SJustin T. Gibbs 	scsi_cmd->sac = send_action_code;
190976babe50SJustin T. Gibbs 	scsi_ulto2b(sizeof(*parameters), scsi_cmd->pll);
191076babe50SJustin T. Gibbs 
191176babe50SJustin T. Gibbs 	cam_fill_csio(csio,
191276babe50SJustin T. Gibbs 		      retries,
191376babe50SJustin T. Gibbs 		      cbfcnp,
191476babe50SJustin T. Gibbs 		      /*flags*/ CAM_DIR_OUT,
191576babe50SJustin T. Gibbs 		      tag_action,
1916*7c5d20a6SWarner Losh 		      /* data_ptr */ (uint8_t *) parameters,
191776babe50SJustin T. Gibbs 		      sizeof(*parameters),
191876babe50SJustin T. Gibbs 		      sense_len,
191976babe50SJustin T. Gibbs 		      sizeof(*scsi_cmd),
192076babe50SJustin T. Gibbs 		      timeout);
192176babe50SJustin T. Gibbs }
1922