xref: /freebsd/sys/cam/ata/ata_xpt.c (revision 4ed925457ab06e83238a5db33e89ccc94b99a713)
1 /*-
2  * Copyright (c) 2009 Alexander Motin <mav@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer,
10  *    without modification, immediately at the beginning of the file.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include <sys/param.h>
31 #include <sys/bus.h>
32 #include <sys/endian.h>
33 #include <sys/systm.h>
34 #include <sys/types.h>
35 #include <sys/malloc.h>
36 #include <sys/kernel.h>
37 #include <sys/time.h>
38 #include <sys/conf.h>
39 #include <sys/fcntl.h>
40 #include <sys/interrupt.h>
41 #include <sys/sbuf.h>
42 
43 #include <sys/lock.h>
44 #include <sys/mutex.h>
45 #include <sys/sysctl.h>
46 
47 #ifdef PC98
48 #include <pc98/pc98/pc98_machdep.h>	/* geometry translation */
49 #endif
50 
51 #include <cam/cam.h>
52 #include <cam/cam_ccb.h>
53 #include <cam/cam_queue.h>
54 #include <cam/cam_periph.h>
55 #include <cam/cam_sim.h>
56 #include <cam/cam_xpt.h>
57 #include <cam/cam_xpt_sim.h>
58 #include <cam/cam_xpt_periph.h>
59 #include <cam/cam_xpt_internal.h>
60 #include <cam/cam_debug.h>
61 
62 #include <cam/scsi/scsi_all.h>
63 #include <cam/scsi/scsi_message.h>
64 #include <cam/ata/ata_all.h>
65 #include <machine/stdarg.h>	/* for xpt_print below */
66 #include "opt_cam.h"
67 
68 struct ata_quirk_entry {
69 	struct scsi_inquiry_pattern inq_pat;
70 	u_int8_t quirks;
71 #define	CAM_QUIRK_MAXTAGS	0x01
72 	u_int maxtags;
73 };
74 
75 static periph_init_t probe_periph_init;
76 
77 static struct periph_driver probe_driver =
78 {
79 	probe_periph_init, "aprobe",
80 	TAILQ_HEAD_INITIALIZER(probe_driver.units), /* generation */ 0,
81 	CAM_PERIPH_DRV_EARLY
82 };
83 
84 PERIPHDRIVER_DECLARE(aprobe, probe_driver);
85 
86 typedef enum {
87 	PROBE_RESET,
88 	PROBE_IDENTIFY,
89 	PROBE_SPINUP,
90 	PROBE_SETMODE,
91 	PROBE_SET_MULTI,
92 	PROBE_INQUIRY,
93 	PROBE_FULL_INQUIRY,
94 	PROBE_PM_PID,
95 	PROBE_PM_PRV,
96 	PROBE_INVALID
97 } probe_action;
98 
99 static char *probe_action_text[] = {
100 	"PROBE_RESET",
101 	"PROBE_IDENTIFY",
102 	"PROBE_SPINUP",
103 	"PROBE_SETMODE",
104 	"PROBE_SET_MULTI",
105 	"PROBE_INQUIRY",
106 	"PROBE_FULL_INQUIRY",
107 	"PROBE_PM_PID",
108 	"PROBE_PM_PRV",
109 	"PROBE_INVALID"
110 };
111 
112 #define PROBE_SET_ACTION(softc, newaction)	\
113 do {									\
114 	char **text;							\
115 	text = probe_action_text;					\
116 	CAM_DEBUG((softc)->periph->path, CAM_DEBUG_INFO,		\
117 	    ("Probe %s to %s\n", text[(softc)->action],			\
118 	    text[(newaction)]));					\
119 	(softc)->action = (newaction);					\
120 } while(0)
121 
122 typedef enum {
123 	PROBE_NO_ANNOUNCE	= 0x04
124 } probe_flags;
125 
126 typedef struct {
127 	TAILQ_HEAD(, ccb_hdr) request_ccbs;
128 	struct ata_params	ident_data;
129 	probe_action	action;
130 	probe_flags	flags;
131 	uint32_t	pm_pid;
132 	uint32_t	pm_prv;
133 	int		restart;
134 	int		spinup;
135 	struct cam_periph *periph;
136 } probe_softc;
137 
138 static struct ata_quirk_entry ata_quirk_table[] =
139 {
140 	{
141 		/* Default tagged queuing parameters for all devices */
142 		{
143 		  T_ANY, SIP_MEDIA_REMOVABLE|SIP_MEDIA_FIXED,
144 		  /*vendor*/"*", /*product*/"*", /*revision*/"*"
145 		},
146 		/*quirks*/0, /*maxtags*/0
147 	},
148 };
149 
150 static const int ata_quirk_table_size =
151 	sizeof(ata_quirk_table) / sizeof(*ata_quirk_table);
152 
153 static cam_status	proberegister(struct cam_periph *periph,
154 				      void *arg);
155 static void	 probeschedule(struct cam_periph *probe_periph);
156 static void	 probestart(struct cam_periph *periph, union ccb *start_ccb);
157 //static void	 proberequestdefaultnegotiation(struct cam_periph *periph);
158 //static int       proberequestbackoff(struct cam_periph *periph,
159 //				     struct cam_ed *device);
160 static void	 probedone(struct cam_periph *periph, union ccb *done_ccb);
161 static void	 probecleanup(struct cam_periph *periph);
162 static void	 ata_find_quirk(struct cam_ed *device);
163 static void	 ata_scan_bus(struct cam_periph *periph, union ccb *ccb);
164 static void	 ata_scan_lun(struct cam_periph *periph,
165 			       struct cam_path *path, cam_flags flags,
166 			       union ccb *ccb);
167 static void	 xptscandone(struct cam_periph *periph, union ccb *done_ccb);
168 static struct cam_ed *
169 		 ata_alloc_device(struct cam_eb *bus, struct cam_et *target,
170 				   lun_id_t lun_id);
171 static void	 ata_device_transport(struct cam_path *path);
172 static void	 ata_set_transfer_settings(struct ccb_trans_settings *cts,
173 					    struct cam_ed *device,
174 					    int async_update);
175 static void	 ata_dev_async(u_int32_t async_code,
176 				struct cam_eb *bus,
177 				struct cam_et *target,
178 				struct cam_ed *device,
179 				void *async_arg);
180 static void	 ata_action(union ccb *start_ccb);
181 
182 static struct xpt_xport ata_xport = {
183 	.alloc_device = ata_alloc_device,
184 	.action = ata_action,
185 	.async = ata_dev_async,
186 };
187 
188 struct xpt_xport *
189 ata_get_xport(void)
190 {
191 	return (&ata_xport);
192 }
193 
194 static void
195 probe_periph_init()
196 {
197 }
198 
199 static cam_status
200 proberegister(struct cam_periph *periph, void *arg)
201 {
202 	union ccb *request_ccb;	/* CCB representing the probe request */
203 	cam_status status;
204 	probe_softc *softc;
205 
206 	request_ccb = (union ccb *)arg;
207 	if (periph == NULL) {
208 		printf("proberegister: periph was NULL!!\n");
209 		return(CAM_REQ_CMP_ERR);
210 	}
211 
212 	if (request_ccb == NULL) {
213 		printf("proberegister: no probe CCB, "
214 		       "can't register device\n");
215 		return(CAM_REQ_CMP_ERR);
216 	}
217 
218 	softc = (probe_softc *)malloc(sizeof(*softc), M_CAMXPT, M_ZERO | M_NOWAIT);
219 
220 	if (softc == NULL) {
221 		printf("proberegister: Unable to probe new device. "
222 		       "Unable to allocate softc\n");
223 		return(CAM_REQ_CMP_ERR);
224 	}
225 	TAILQ_INIT(&softc->request_ccbs);
226 	TAILQ_INSERT_TAIL(&softc->request_ccbs, &request_ccb->ccb_h,
227 			  periph_links.tqe);
228 	softc->flags = 0;
229 	periph->softc = softc;
230 	softc->periph = periph;
231 	softc->action = PROBE_INVALID;
232 	status = cam_periph_acquire(periph);
233 	if (status != CAM_REQ_CMP) {
234 		return (status);
235 	}
236 	/*
237 	 * Ensure nobody slip in until probe finish.
238 	 */
239 	cam_freeze_devq_arg(periph->path,
240 	    RELSIM_RELEASE_RUNLEVEL, CAM_RL_XPT + 1);
241 	probeschedule(periph);
242 	return(CAM_REQ_CMP);
243 }
244 
245 static void
246 probeschedule(struct cam_periph *periph)
247 {
248 	union ccb *ccb;
249 	probe_softc *softc;
250 
251 	softc = (probe_softc *)periph->softc;
252 	ccb = (union ccb *)TAILQ_FIRST(&softc->request_ccbs);
253 
254 	if ((periph->path->device->flags & CAM_DEV_UNCONFIGURED) ||
255 	    periph->path->device->protocol == PROTO_SATAPM)
256 		PROBE_SET_ACTION(softc, PROBE_RESET);
257 	else
258 		PROBE_SET_ACTION(softc, PROBE_IDENTIFY);
259 
260 	if (ccb->crcn.flags & CAM_EXPECT_INQ_CHANGE)
261 		softc->flags |= PROBE_NO_ANNOUNCE;
262 	else
263 		softc->flags &= ~PROBE_NO_ANNOUNCE;
264 
265 	xpt_schedule(periph, CAM_PRIORITY_XPT);
266 }
267 
268 static void
269 probestart(struct cam_periph *periph, union ccb *start_ccb)
270 {
271 	struct ccb_trans_settings cts;
272 	struct ccb_ataio *ataio;
273 	struct ccb_scsiio *csio;
274 	probe_softc *softc;
275 	struct cam_path *path;
276 	struct ata_params *ident_buf;
277 
278 	CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_TRACE, ("probestart\n"));
279 
280 	softc = (probe_softc *)periph->softc;
281 	path = start_ccb->ccb_h.path;
282 	ataio = &start_ccb->ataio;
283 	csio = &start_ccb->csio;
284 	ident_buf = &periph->path->device->ident_data;
285 
286 	if (softc->restart) {
287 		softc->restart = 0;
288 		if ((path->device->flags & CAM_DEV_UNCONFIGURED) ||
289 		    path->device->protocol == PROTO_SATAPM)
290 			softc->action = PROBE_RESET;
291 		else
292 			softc->action = PROBE_IDENTIFY;
293 	}
294 	switch (softc->action) {
295 	case PROBE_RESET:
296 		cam_fill_ataio(ataio,
297 		      0,
298 		      probedone,
299 		      /*flags*/CAM_DIR_NONE,
300 		      0,
301 		      /*data_ptr*/NULL,
302 		      /*dxfer_len*/0,
303 		      15 * 1000);
304 		ata_reset_cmd(ataio);
305 		break;
306 	case PROBE_IDENTIFY:
307 		cam_fill_ataio(ataio,
308 		      1,
309 		      probedone,
310 		      /*flags*/CAM_DIR_IN,
311 		      0,
312 		      /*data_ptr*/(u_int8_t *)&softc->ident_data,
313 		      /*dxfer_len*/sizeof(softc->ident_data),
314 		      30 * 1000);
315 		if (periph->path->device->protocol == PROTO_ATA)
316 			ata_28bit_cmd(ataio, ATA_ATA_IDENTIFY, 0, 0, 0);
317 		else
318 			ata_28bit_cmd(ataio, ATA_ATAPI_IDENTIFY, 0, 0, 0);
319 		break;
320 	case PROBE_SPINUP:
321 		if (bootverbose)
322 			xpt_print(path, "Spinning up device\n");
323 		cam_fill_ataio(ataio,
324 		      1,
325 		      probedone,
326 		      /*flags*/CAM_DIR_NONE | CAM_HIGH_POWER,
327 		      0,
328 		      /*data_ptr*/NULL,
329 		      /*dxfer_len*/0,
330 		      30 * 1000);
331 		ata_28bit_cmd(ataio, ATA_SETFEATURES, ATA_SF_PUIS_SPINUP, 0, 0);
332 		break;
333 	case PROBE_SETMODE:
334 	{
335 		int mode, wantmode;
336 
337 		mode = 0;
338 		/* Fetch user modes from SIM. */
339 		bzero(&cts, sizeof(cts));
340 		xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
341 		cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
342 		cts.type = CTS_TYPE_USER_SETTINGS;
343 		xpt_action((union ccb *)&cts);
344 		if (path->device->transport == XPORT_ATA) {
345 			if (cts.xport_specific.ata.valid & CTS_ATA_VALID_MODE)
346 				mode = cts.xport_specific.ata.mode;
347 		} else {
348 			if (cts.xport_specific.sata.valid & CTS_SATA_VALID_MODE)
349 				mode = cts.xport_specific.sata.mode;
350 		}
351 negotiate:
352 		/* Honor device capabilities. */
353 		wantmode = mode = ata_max_mode(ident_buf, mode);
354 		/* Report modes to SIM. */
355 		bzero(&cts, sizeof(cts));
356 		xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
357 		cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
358 		cts.type = CTS_TYPE_CURRENT_SETTINGS;
359 		if (path->device->transport == XPORT_ATA) {
360 			cts.xport_specific.ata.mode = mode;
361 			cts.xport_specific.ata.valid = CTS_ATA_VALID_MODE;
362 		} else {
363 			cts.xport_specific.sata.mode = mode;
364 			cts.xport_specific.sata.valid = CTS_SATA_VALID_MODE;
365 		}
366 		xpt_action((union ccb *)&cts);
367 		/* Fetch current modes from SIM. */
368 		bzero(&cts, sizeof(cts));
369 		xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
370 		cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
371 		cts.type = CTS_TYPE_CURRENT_SETTINGS;
372 		xpt_action((union ccb *)&cts);
373 		if (path->device->transport == XPORT_ATA) {
374 			if (cts.xport_specific.ata.valid & CTS_ATA_VALID_MODE)
375 				mode = cts.xport_specific.ata.mode;
376 		} else {
377 			if (cts.xport_specific.ata.valid & CTS_SATA_VALID_MODE)
378 				mode = cts.xport_specific.sata.mode;
379 		}
380 		/* If SIM disagree - renegotiate. */
381 		if (mode != wantmode)
382 			goto negotiate;
383 		cam_fill_ataio(ataio,
384 		      1,
385 		      probedone,
386 		      /*flags*/CAM_DIR_NONE,
387 		      0,
388 		      /*data_ptr*/NULL,
389 		      /*dxfer_len*/0,
390 		      30 * 1000);
391 		ata_28bit_cmd(ataio, ATA_SETFEATURES, ATA_SF_SETXFER, 0, mode);
392 		break;
393 	}
394 	case PROBE_SET_MULTI:
395 	{
396 		u_int sectors, bytecount;
397 
398 		bytecount = 8192;	/* SATA maximum */
399 		/* Fetch user bytecount from SIM. */
400 		bzero(&cts, sizeof(cts));
401 		xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
402 		cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
403 		cts.type = CTS_TYPE_USER_SETTINGS;
404 		xpt_action((union ccb *)&cts);
405 		if (path->device->transport == XPORT_ATA) {
406 			if (cts.xport_specific.ata.valid & CTS_ATA_VALID_BYTECOUNT)
407 				bytecount = cts.xport_specific.ata.bytecount;
408 		} else {
409 			if (cts.xport_specific.sata.valid & CTS_SATA_VALID_BYTECOUNT)
410 				bytecount = cts.xport_specific.sata.bytecount;
411 		}
412 		/* Honor device capabilities. */
413 		sectors = max(1, min(ident_buf->sectors_intr & 0xff,
414 		    bytecount / ata_logical_sector_size(ident_buf)));
415 		/* Report bytecount to SIM. */
416 		bzero(&cts, sizeof(cts));
417 		xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
418 		cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
419 		cts.type = CTS_TYPE_CURRENT_SETTINGS;
420 		if (path->device->transport == XPORT_ATA) {
421 			cts.xport_specific.ata.bytecount = sectors *
422 			    ata_logical_sector_size(ident_buf);
423 			cts.xport_specific.ata.valid = CTS_ATA_VALID_BYTECOUNT;
424 		} else {
425 			cts.xport_specific.sata.bytecount = sectors *
426 			    ata_logical_sector_size(ident_buf);
427 			cts.xport_specific.sata.valid = CTS_SATA_VALID_BYTECOUNT;
428 		}
429 		xpt_action((union ccb *)&cts);
430 		/* Fetch current bytecount from SIM. */
431 		bzero(&cts, sizeof(cts));
432 		xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
433 		cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
434 		cts.type = CTS_TYPE_CURRENT_SETTINGS;
435 		xpt_action((union ccb *)&cts);
436 		if (path->device->transport == XPORT_ATA) {
437 			if (cts.xport_specific.ata.valid & CTS_ATA_VALID_BYTECOUNT)
438 				bytecount = cts.xport_specific.ata.bytecount;
439 		} else {
440 			if (cts.xport_specific.sata.valid & CTS_SATA_VALID_BYTECOUNT)
441 				bytecount = cts.xport_specific.sata.bytecount;
442 		}
443 		sectors = bytecount / ata_logical_sector_size(ident_buf);
444 
445 		cam_fill_ataio(ataio,
446 		    1,
447 		    probedone,
448 		    CAM_DIR_NONE,
449 		    0,
450 		    NULL,
451 		    0,
452 		    30*1000);
453 		ata_28bit_cmd(ataio, ATA_SET_MULTI, 0, 0, sectors);
454 		break;
455 	}
456 	case PROBE_INQUIRY:
457 	{
458 		u_int bytecount;
459 
460 		bytecount = 8192;	/* SATA maximum */
461 		/* Fetch user bytecount from SIM. */
462 		bzero(&cts, sizeof(cts));
463 		xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
464 		cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
465 		cts.type = CTS_TYPE_USER_SETTINGS;
466 		xpt_action((union ccb *)&cts);
467 		if (path->device->transport == XPORT_ATA) {
468 			if (cts.xport_specific.ata.valid & CTS_ATA_VALID_BYTECOUNT)
469 				bytecount = cts.xport_specific.ata.bytecount;
470 		} else {
471 			if (cts.xport_specific.sata.valid & CTS_SATA_VALID_BYTECOUNT)
472 				bytecount = cts.xport_specific.sata.bytecount;
473 		}
474 		/* Honor device capabilities. */
475 		bytecount &= ~1;
476 		bytecount = max(2, min(65534, bytecount));
477 		if (ident_buf->satacapabilities != 0x0000 &&
478 		    ident_buf->satacapabilities != 0xffff) {
479 			bytecount = min(8192, bytecount);
480 		}
481 		/* Report bytecount to SIM. */
482 		bzero(&cts, sizeof(cts));
483 		xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
484 		cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
485 		cts.type = CTS_TYPE_CURRENT_SETTINGS;
486 		if (path->device->transport == XPORT_ATA) {
487 			cts.xport_specific.ata.bytecount = bytecount;
488 			cts.xport_specific.ata.valid = CTS_ATA_VALID_BYTECOUNT;
489 		} else {
490 			cts.xport_specific.sata.bytecount = bytecount;
491 			cts.xport_specific.sata.valid = CTS_SATA_VALID_BYTECOUNT;
492 		}
493 		xpt_action((union ccb *)&cts);
494 		/* FALLTHROUGH */
495 	}
496 	case PROBE_FULL_INQUIRY:
497 	{
498 		u_int inquiry_len;
499 		struct scsi_inquiry_data *inq_buf =
500 		    &periph->path->device->inq_data;
501 
502 		if (softc->action == PROBE_INQUIRY)
503 			inquiry_len = SHORT_INQUIRY_LENGTH;
504 		else
505 			inquiry_len = SID_ADDITIONAL_LENGTH(inq_buf);
506 		/*
507 		 * Some parallel SCSI devices fail to send an
508 		 * ignore wide residue message when dealing with
509 		 * odd length inquiry requests.  Round up to be
510 		 * safe.
511 		 */
512 		inquiry_len = roundup2(inquiry_len, 2);
513 		scsi_inquiry(csio,
514 			     /*retries*/1,
515 			     probedone,
516 			     MSG_SIMPLE_Q_TAG,
517 			     (u_int8_t *)inq_buf,
518 			     inquiry_len,
519 			     /*evpd*/FALSE,
520 			     /*page_code*/0,
521 			     SSD_MIN_SIZE,
522 			     /*timeout*/60 * 1000);
523 		break;
524 	}
525 	case PROBE_PM_PID:
526 		cam_fill_ataio(ataio,
527 		      1,
528 		      probedone,
529 		      /*flags*/CAM_DIR_NONE,
530 		      0,
531 		      /*data_ptr*/NULL,
532 		      /*dxfer_len*/0,
533 		      10 * 1000);
534 		ata_pm_read_cmd(ataio, 0, 15);
535 		break;
536 	case PROBE_PM_PRV:
537 		cam_fill_ataio(ataio,
538 		      1,
539 		      probedone,
540 		      /*flags*/CAM_DIR_NONE,
541 		      0,
542 		      /*data_ptr*/NULL,
543 		      /*dxfer_len*/0,
544 		      10 * 1000);
545 		ata_pm_read_cmd(ataio, 1, 15);
546 		break;
547 	case PROBE_INVALID:
548 		CAM_DEBUG(path, CAM_DEBUG_INFO,
549 		    ("probestart: invalid action state\n"));
550 	default:
551 		break;
552 	}
553 	xpt_action(start_ccb);
554 }
555 #if 0
556 static void
557 proberequestdefaultnegotiation(struct cam_periph *periph)
558 {
559 	struct ccb_trans_settings cts;
560 
561 	xpt_setup_ccb(&cts.ccb_h, periph->path, CAM_PRIORITY_NONE);
562 	cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
563 	cts.type = CTS_TYPE_USER_SETTINGS;
564 	xpt_action((union ccb *)&cts);
565 	if ((cts.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
566 		return;
567 	}
568 	cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
569 	cts.type = CTS_TYPE_CURRENT_SETTINGS;
570 	xpt_action((union ccb *)&cts);
571 }
572 
573 /*
574  * Backoff Negotiation Code- only pertinent for SPI devices.
575  */
576 static int
577 proberequestbackoff(struct cam_periph *periph, struct cam_ed *device)
578 {
579 	struct ccb_trans_settings cts;
580 	struct ccb_trans_settings_spi *spi;
581 
582 	memset(&cts, 0, sizeof (cts));
583 	xpt_setup_ccb(&cts.ccb_h, periph->path, CAM_PRIORITY_NONE);
584 	cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
585 	cts.type = CTS_TYPE_CURRENT_SETTINGS;
586 	xpt_action((union ccb *)&cts);
587 	if ((cts.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
588 		if (bootverbose) {
589 			xpt_print(periph->path,
590 			    "failed to get current device settings\n");
591 		}
592 		return (0);
593 	}
594 	if (cts.transport != XPORT_SPI) {
595 		if (bootverbose) {
596 			xpt_print(periph->path, "not SPI transport\n");
597 		}
598 		return (0);
599 	}
600 	spi = &cts.xport_specific.spi;
601 
602 	/*
603 	 * We cannot renegotiate sync rate if we don't have one.
604 	 */
605 	if ((spi->valid & CTS_SPI_VALID_SYNC_RATE) == 0) {
606 		if (bootverbose) {
607 			xpt_print(periph->path, "no sync rate known\n");
608 		}
609 		return (0);
610 	}
611 
612 	/*
613 	 * We'll assert that we don't have to touch PPR options- the
614 	 * SIM will see what we do with period and offset and adjust
615 	 * the PPR options as appropriate.
616 	 */
617 
618 	/*
619 	 * A sync rate with unknown or zero offset is nonsensical.
620 	 * A sync period of zero means Async.
621 	 */
622 	if ((spi->valid & CTS_SPI_VALID_SYNC_OFFSET) == 0
623 	 || spi->sync_offset == 0 || spi->sync_period == 0) {
624 		if (bootverbose) {
625 			xpt_print(periph->path, "no sync rate available\n");
626 		}
627 		return (0);
628 	}
629 
630 	if (device->flags & CAM_DEV_DV_HIT_BOTTOM) {
631 		CAM_DEBUG(periph->path, CAM_DEBUG_INFO,
632 		    ("hit async: giving up on DV\n"));
633 		return (0);
634 	}
635 
636 
637 	/*
638 	 * Jump sync_period up by one, but stop at 5MHz and fall back to Async.
639 	 * We don't try to remember 'last' settings to see if the SIM actually
640 	 * gets into the speed we want to set. We check on the SIM telling
641 	 * us that a requested speed is bad, but otherwise don't try and
642 	 * check the speed due to the asynchronous and handshake nature
643 	 * of speed setting.
644 	 */
645 	spi->valid = CTS_SPI_VALID_SYNC_RATE | CTS_SPI_VALID_SYNC_OFFSET;
646 	for (;;) {
647 		spi->sync_period++;
648 		if (spi->sync_period >= 0xf) {
649 			spi->sync_period = 0;
650 			spi->sync_offset = 0;
651 			CAM_DEBUG(periph->path, CAM_DEBUG_INFO,
652 			    ("setting to async for DV\n"));
653 			/*
654 			 * Once we hit async, we don't want to try
655 			 * any more settings.
656 			 */
657 			device->flags |= CAM_DEV_DV_HIT_BOTTOM;
658 		} else if (bootverbose) {
659 			CAM_DEBUG(periph->path, CAM_DEBUG_INFO,
660 			    ("DV: period 0x%x\n", spi->sync_period));
661 			printf("setting period to 0x%x\n", spi->sync_period);
662 		}
663 		cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
664 		cts.type = CTS_TYPE_CURRENT_SETTINGS;
665 		xpt_action((union ccb *)&cts);
666 		if ((cts.ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
667 			break;
668 		}
669 		CAM_DEBUG(periph->path, CAM_DEBUG_INFO,
670 		    ("DV: failed to set period 0x%x\n", spi->sync_period));
671 		if (spi->sync_period == 0) {
672 			return (0);
673 		}
674 	}
675 	return (1);
676 }
677 #endif
678 static void
679 probedone(struct cam_periph *periph, union ccb *done_ccb)
680 {
681 	struct ccb_trans_settings cts;
682 	struct ata_params *ident_buf;
683 	probe_softc *softc;
684 	struct cam_path *path;
685 	u_int32_t  priority;
686 	int found = 1;
687 
688 	CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_TRACE, ("probedone\n"));
689 
690 	softc = (probe_softc *)periph->softc;
691 	path = done_ccb->ccb_h.path;
692 	priority = done_ccb->ccb_h.pinfo.priority;
693 	ident_buf = &path->device->ident_data;
694 
695 	if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
696 device_fail:	if ((!softc->restart) &&
697 		    cam_periph_error(done_ccb, 0, 0, NULL) == ERESTART) {
698 			return;
699 		} else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) {
700 			/* Don't wedge the queue */
701 			xpt_release_devq(done_ccb->ccb_h.path, /*count*/1,
702 					 /*run_queue*/TRUE);
703 		}
704 		/* Old PIO2 devices may not support mode setting. */
705 		if (softc->action == PROBE_SETMODE &&
706 		    ata_max_pmode(ident_buf) <= ATA_PIO2 &&
707 		    (ident_buf->capabilities1 & ATA_SUPPORT_IORDY) == 0)
708 			goto noerror;
709 		/*
710 		 * If we get to this point, we got an error status back
711 		 * from the inquiry and the error status doesn't require
712 		 * automatically retrying the command.  Therefore, the
713 		 * inquiry failed.  If we had inquiry information before
714 		 * for this device, but this latest inquiry command failed,
715 		 * the device has probably gone away.  If this device isn't
716 		 * already marked unconfigured, notify the peripheral
717 		 * drivers that this device is no more.
718 		 */
719 		if ((path->device->flags & CAM_DEV_UNCONFIGURED) == 0)
720 			xpt_async(AC_LOST_DEVICE, path, NULL);
721 		found = 0;
722 		goto done;
723 	}
724 noerror:
725 	if (softc->restart)
726 		goto done;
727 	switch (softc->action) {
728 	case PROBE_RESET:
729 	{
730 		int sign = (done_ccb->ataio.res.lba_high << 8) +
731 		    done_ccb->ataio.res.lba_mid;
732 		if (bootverbose)
733 			xpt_print(path, "SIGNATURE: %04x\n", sign);
734 		if (sign == 0x0000 &&
735 		    done_ccb->ccb_h.target_id != 15) {
736 			path->device->protocol = PROTO_ATA;
737 			PROBE_SET_ACTION(softc, PROBE_IDENTIFY);
738 		} else if (sign == 0x9669 &&
739 		    done_ccb->ccb_h.target_id == 15) {
740 			/* Report SIM that PM is present. */
741 			bzero(&cts, sizeof(cts));
742 			xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
743 			cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
744 			cts.type = CTS_TYPE_CURRENT_SETTINGS;
745 			cts.xport_specific.sata.pm_present = 1;
746 			cts.xport_specific.sata.valid = CTS_SATA_VALID_PM;
747 			xpt_action((union ccb *)&cts);
748 			path->device->protocol = PROTO_SATAPM;
749 			PROBE_SET_ACTION(softc, PROBE_PM_PID);
750 		} else if (sign == 0xeb14 &&
751 		    done_ccb->ccb_h.target_id != 15) {
752 			path->device->protocol = PROTO_SCSI;
753 			PROBE_SET_ACTION(softc, PROBE_IDENTIFY);
754 		} else {
755 			if (done_ccb->ccb_h.target_id != 15) {
756 				xpt_print(path,
757 				    "Unexpected signature 0x%04x\n", sign);
758 			}
759 			goto device_fail;
760 		}
761 		xpt_release_ccb(done_ccb);
762 		xpt_schedule(periph, priority);
763 		return;
764 	}
765 	case PROBE_IDENTIFY:
766 	{
767 		int16_t *ptr;
768 
769 		ident_buf = &softc->ident_data;
770 		for (ptr = (int16_t *)ident_buf;
771 		     ptr < (int16_t *)ident_buf + sizeof(struct ata_params)/2; ptr++) {
772 			*ptr = le16toh(*ptr);
773 		}
774 		if (strncmp(ident_buf->model, "FX", 2) &&
775 		    strncmp(ident_buf->model, "NEC", 3) &&
776 		    strncmp(ident_buf->model, "Pioneer", 7) &&
777 		    strncmp(ident_buf->model, "SHARP", 5)) {
778 			ata_bswap(ident_buf->model, sizeof(ident_buf->model));
779 			ata_bswap(ident_buf->revision, sizeof(ident_buf->revision));
780 			ata_bswap(ident_buf->serial, sizeof(ident_buf->serial));
781 		}
782 		ata_btrim(ident_buf->model, sizeof(ident_buf->model));
783 		ata_bpack(ident_buf->model, ident_buf->model, sizeof(ident_buf->model));
784 		ata_btrim(ident_buf->revision, sizeof(ident_buf->revision));
785 		ata_bpack(ident_buf->revision, ident_buf->revision, sizeof(ident_buf->revision));
786 		ata_btrim(ident_buf->serial, sizeof(ident_buf->serial));
787 		ata_bpack(ident_buf->serial, ident_buf->serial, sizeof(ident_buf->serial));
788 		/* Device may need spin-up before IDENTIFY become valid. */
789 		if ((ident_buf->config & ATA_RESP_INCOMPLETE) ||
790 		    ((ident_buf->support.command2 & ATA_SUPPORT_STANDBY) &&
791 		     (ident_buf->enabled.command2 & ATA_SUPPORT_STANDBY) &&
792 		     (ident_buf->support.command2 & ATA_SUPPORT_SPINUP) &&
793 		      softc->spinup == 0)) {
794 			PROBE_SET_ACTION(softc, PROBE_SPINUP);
795 			xpt_release_ccb(done_ccb);
796 			xpt_schedule(periph, priority);
797 			return;
798 		}
799 		ident_buf = &path->device->ident_data;
800 		if ((periph->path->device->flags & CAM_DEV_UNCONFIGURED) == 0) {
801 			/* Check that it is the same device. */
802 			if (bcmp(softc->ident_data.model, ident_buf->model,
803 			     sizeof(ident_buf->model)) ||
804 			    bcmp(softc->ident_data.revision, ident_buf->revision,
805 			     sizeof(ident_buf->revision)) ||
806 			    bcmp(softc->ident_data.serial, ident_buf->serial,
807 			     sizeof(ident_buf->serial))) {
808 				/* Device changed. */
809 				xpt_async(AC_LOST_DEVICE, path, NULL);
810 			} else
811 				bcopy(&softc->ident_data, ident_buf, sizeof(struct ata_params));
812 		} else {
813 			bcopy(&softc->ident_data, ident_buf, sizeof(struct ata_params));
814 			/* Clean up from previous instance of this device */
815 			if (path->device->serial_num != NULL) {
816 				free(path->device->serial_num, M_CAMXPT);
817 				path->device->serial_num = NULL;
818 				path->device->serial_num_len = 0;
819 			}
820 			path->device->serial_num =
821 				(u_int8_t *)malloc((sizeof(ident_buf->serial) + 1),
822 					   M_CAMXPT, M_NOWAIT);
823 			if (path->device->serial_num != NULL) {
824 				bcopy(ident_buf->serial,
825 				      path->device->serial_num,
826 				      sizeof(ident_buf->serial));
827 				path->device->serial_num[sizeof(ident_buf->serial)]
828 				    = '\0';
829 				path->device->serial_num_len =
830 				    strlen(path->device->serial_num);
831 			}
832 
833 			path->device->flags |= CAM_DEV_IDENTIFY_DATA_VALID;
834 		}
835 		if (ident_buf->satacapabilities & ATA_SUPPORT_NCQ) {
836 			path->device->mintags = path->device->maxtags =
837 			    ATA_QUEUE_LEN(ident_buf->queue) + 1;
838 		}
839 		ata_find_quirk(path->device);
840 		if (path->device->mintags != 0 &&
841 		    path->bus->sim->max_tagged_dev_openings != 0) {
842 			/* Report SIM which tags are allowed. */
843 			bzero(&cts, sizeof(cts));
844 			xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
845 			cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
846 			cts.type = CTS_TYPE_CURRENT_SETTINGS;
847 			cts.xport_specific.sata.tags = path->device->maxtags;
848 			cts.xport_specific.sata.valid = CTS_SATA_VALID_TAGS;
849 			xpt_action((union ccb *)&cts);
850 			/* Reconfigure queues for tagged queueing. */
851 			xpt_start_tags(path);
852 		}
853 		ata_device_transport(path);
854 		PROBE_SET_ACTION(softc, PROBE_SETMODE);
855 		xpt_release_ccb(done_ccb);
856 		xpt_schedule(periph, priority);
857 		return;
858 	}
859 	case PROBE_SPINUP:
860 		if (bootverbose)
861 			xpt_print(path, "Spin-up done\n");
862 		softc->spinup = 1;
863 		PROBE_SET_ACTION(softc, PROBE_IDENTIFY);
864 		xpt_release_ccb(done_ccb);
865 		xpt_schedule(periph, priority);
866 		return;
867 	case PROBE_SETMODE:
868 		if (path->device->protocol == PROTO_ATA) {
869 			PROBE_SET_ACTION(softc, PROBE_SET_MULTI);
870 		} else {
871 			PROBE_SET_ACTION(softc, PROBE_INQUIRY);
872 		}
873 		xpt_release_ccb(done_ccb);
874 		xpt_schedule(periph, priority);
875 		return;
876 	case PROBE_SET_MULTI:
877 		if (periph->path->device->flags & CAM_DEV_UNCONFIGURED) {
878 			path->device->flags &= ~CAM_DEV_UNCONFIGURED;
879 			xpt_acquire_device(path->device);
880 			done_ccb->ccb_h.func_code = XPT_GDEV_TYPE;
881 			xpt_action(done_ccb);
882 			xpt_async(AC_FOUND_DEVICE, done_ccb->ccb_h.path,
883 			    done_ccb);
884 		}
885 		break;
886 	case PROBE_INQUIRY:
887 	case PROBE_FULL_INQUIRY:
888 	{
889 		struct scsi_inquiry_data *inq_buf;
890 		u_int8_t periph_qual, len;
891 
892 		path->device->flags |= CAM_DEV_INQUIRY_DATA_VALID;
893 		inq_buf = &path->device->inq_data;
894 
895 		periph_qual = SID_QUAL(inq_buf);
896 
897 		if (periph_qual != SID_QUAL_LU_CONNECTED)
898 			break;
899 
900 		/*
901 		 * We conservatively request only
902 		 * SHORT_INQUIRY_LEN bytes of inquiry
903 		 * information during our first try
904 		 * at sending an INQUIRY. If the device
905 		 * has more information to give,
906 		 * perform a second request specifying
907 		 * the amount of information the device
908 		 * is willing to give.
909 		 */
910 		len = inq_buf->additional_length
911 		    + offsetof(struct scsi_inquiry_data, additional_length) + 1;
912 		if (softc->action == PROBE_INQUIRY
913 		    && len > SHORT_INQUIRY_LENGTH) {
914 			PROBE_SET_ACTION(softc, PROBE_FULL_INQUIRY);
915 			xpt_release_ccb(done_ccb);
916 			xpt_schedule(periph, priority);
917 			return;
918 		}
919 
920 		ata_device_transport(path);
921 		if (periph->path->device->flags & CAM_DEV_UNCONFIGURED) {
922 			path->device->flags &= ~CAM_DEV_UNCONFIGURED;
923 			xpt_acquire_device(path->device);
924 			done_ccb->ccb_h.func_code = XPT_GDEV_TYPE;
925 			xpt_action(done_ccb);
926 			xpt_async(AC_FOUND_DEVICE, done_ccb->ccb_h.path, done_ccb);
927 		}
928 		break;
929 	}
930 	case PROBE_PM_PID:
931 		if ((path->device->flags & CAM_DEV_IDENTIFY_DATA_VALID) == 0)
932 			bzero(ident_buf, sizeof(*ident_buf));
933 		softc->pm_pid = (done_ccb->ataio.res.lba_high << 24) +
934 		    (done_ccb->ataio.res.lba_mid << 16) +
935 		    (done_ccb->ataio.res.lba_low << 8) +
936 		    done_ccb->ataio.res.sector_count;
937 		((uint32_t *)ident_buf)[0] = softc->pm_pid;
938 		snprintf(ident_buf->model, sizeof(ident_buf->model),
939 		    "Port Multiplier %08x", softc->pm_pid);
940 		PROBE_SET_ACTION(softc, PROBE_PM_PRV);
941 		xpt_release_ccb(done_ccb);
942 		xpt_schedule(periph, priority);
943 		return;
944 	case PROBE_PM_PRV:
945 		softc->pm_prv = (done_ccb->ataio.res.lba_high << 24) +
946 		    (done_ccb->ataio.res.lba_mid << 16) +
947 		    (done_ccb->ataio.res.lba_low << 8) +
948 		    done_ccb->ataio.res.sector_count;
949 		((uint32_t *)ident_buf)[1] = softc->pm_prv;
950 		snprintf(ident_buf->revision, sizeof(ident_buf->revision),
951 		    "%04x", softc->pm_prv);
952 		path->device->flags |= CAM_DEV_IDENTIFY_DATA_VALID;
953 		if (periph->path->device->flags & CAM_DEV_UNCONFIGURED) {
954 			path->device->flags &= ~CAM_DEV_UNCONFIGURED;
955 			xpt_acquire_device(path->device);
956 			done_ccb->ccb_h.func_code = XPT_GDEV_TYPE;
957 			xpt_action(done_ccb);
958 			xpt_async(AC_FOUND_DEVICE, done_ccb->ccb_h.path,
959 			    done_ccb);
960 		} else {
961 			done_ccb->ccb_h.func_code = XPT_GDEV_TYPE;
962 			xpt_action(done_ccb);
963 			xpt_async(AC_SCSI_AEN, done_ccb->ccb_h.path, done_ccb);
964 		}
965 		break;
966 	case PROBE_INVALID:
967 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_INFO,
968 		    ("probedone: invalid action state\n"));
969 	default:
970 		break;
971 	}
972 done:
973 	if (softc->restart) {
974 		softc->restart = 0;
975 		xpt_release_ccb(done_ccb);
976 		probeschedule(periph);
977 		return;
978 	}
979 	xpt_release_ccb(done_ccb);
980 	while ((done_ccb = (union ccb *)TAILQ_FIRST(&softc->request_ccbs))) {
981 		TAILQ_REMOVE(&softc->request_ccbs,
982 		    &done_ccb->ccb_h, periph_links.tqe);
983 		done_ccb->ccb_h.status = found ? CAM_REQ_CMP : CAM_REQ_CMP_ERR;
984 		xpt_done(done_ccb);
985 	}
986 	cam_release_devq(periph->path,
987 	    RELSIM_RELEASE_RUNLEVEL, 0, CAM_RL_XPT + 1, FALSE);
988 	cam_periph_invalidate(periph);
989 	cam_periph_release_locked(periph);
990 }
991 
992 static void
993 probecleanup(struct cam_periph *periph)
994 {
995 	free(periph->softc, M_CAMXPT);
996 }
997 
998 static void
999 ata_find_quirk(struct cam_ed *device)
1000 {
1001 	struct ata_quirk_entry *quirk;
1002 	caddr_t	match;
1003 
1004 	match = cam_quirkmatch((caddr_t)&device->ident_data,
1005 			       (caddr_t)ata_quirk_table,
1006 			       ata_quirk_table_size,
1007 			       sizeof(*ata_quirk_table), ata_identify_match);
1008 
1009 	if (match == NULL)
1010 		panic("xpt_find_quirk: device didn't match wildcard entry!!");
1011 
1012 	quirk = (struct ata_quirk_entry *)match;
1013 	device->quirk = quirk;
1014 	if (quirk->quirks & CAM_QUIRK_MAXTAGS)
1015 		device->mintags = device->maxtags = quirk->maxtags;
1016 }
1017 
1018 typedef struct {
1019 	union	ccb *request_ccb;
1020 	struct 	ccb_pathinq *cpi;
1021 	int	counter;
1022 } ata_scan_bus_info;
1023 
1024 /*
1025  * To start a scan, request_ccb is an XPT_SCAN_BUS ccb.
1026  * As the scan progresses, xpt_scan_bus is used as the
1027  * callback on completion function.
1028  */
1029 static void
1030 ata_scan_bus(struct cam_periph *periph, union ccb *request_ccb)
1031 {
1032 	struct	cam_path *path;
1033 	ata_scan_bus_info *scan_info;
1034 	union	ccb *work_ccb, *reset_ccb;
1035 	cam_status status;
1036 
1037 	CAM_DEBUG(request_ccb->ccb_h.path, CAM_DEBUG_TRACE,
1038 		  ("xpt_scan_bus\n"));
1039 	switch (request_ccb->ccb_h.func_code) {
1040 	case XPT_SCAN_BUS:
1041 		/* Find out the characteristics of the bus */
1042 		work_ccb = xpt_alloc_ccb_nowait();
1043 		if (work_ccb == NULL) {
1044 			request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
1045 			xpt_done(request_ccb);
1046 			return;
1047 		}
1048 		xpt_setup_ccb(&work_ccb->ccb_h, request_ccb->ccb_h.path,
1049 			      request_ccb->ccb_h.pinfo.priority);
1050 		work_ccb->ccb_h.func_code = XPT_PATH_INQ;
1051 		xpt_action(work_ccb);
1052 		if (work_ccb->ccb_h.status != CAM_REQ_CMP) {
1053 			request_ccb->ccb_h.status = work_ccb->ccb_h.status;
1054 			xpt_free_ccb(work_ccb);
1055 			xpt_done(request_ccb);
1056 			return;
1057 		}
1058 
1059 		/* We may need to reset bus first, if we haven't done it yet. */
1060 		if ((work_ccb->cpi.hba_inquiry &
1061 		    (PI_WIDE_32|PI_WIDE_16|PI_SDTR_ABLE)) &&
1062 		    !(work_ccb->cpi.hba_misc & PIM_NOBUSRESET) &&
1063 		    !timevalisset(&request_ccb->ccb_h.path->bus->last_reset)) {
1064 			reset_ccb = xpt_alloc_ccb_nowait();
1065 			xpt_setup_ccb(&reset_ccb->ccb_h, request_ccb->ccb_h.path,
1066 			      CAM_PRIORITY_NONE);
1067 			reset_ccb->ccb_h.func_code = XPT_RESET_BUS;
1068 			xpt_action(reset_ccb);
1069 			if (reset_ccb->ccb_h.status != CAM_REQ_CMP) {
1070 				request_ccb->ccb_h.status = reset_ccb->ccb_h.status;
1071 				xpt_free_ccb(reset_ccb);
1072 				xpt_free_ccb(work_ccb);
1073 				xpt_done(request_ccb);
1074 				return;
1075 			}
1076 			xpt_free_ccb(reset_ccb);
1077 		}
1078 
1079 		/* Save some state for use while we probe for devices */
1080 		scan_info = (ata_scan_bus_info *)
1081 		    malloc(sizeof(ata_scan_bus_info), M_CAMXPT, M_NOWAIT);
1082 		if (scan_info == NULL) {
1083 			request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
1084 			xpt_done(request_ccb);
1085 			return;
1086 		}
1087 		scan_info->request_ccb = request_ccb;
1088 		scan_info->cpi = &work_ccb->cpi;
1089 		/* If PM supported, probe it first. */
1090 		if (scan_info->cpi->hba_inquiry & PI_SATAPM)
1091 			scan_info->counter = scan_info->cpi->max_target;
1092 		else
1093 			scan_info->counter = 0;
1094 
1095 		work_ccb = xpt_alloc_ccb_nowait();
1096 		if (work_ccb == NULL) {
1097 			free(scan_info, M_CAMXPT);
1098 			request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
1099 			xpt_done(request_ccb);
1100 			break;
1101 		}
1102 		goto scan_next;
1103 	case XPT_SCAN_LUN:
1104 		work_ccb = request_ccb;
1105 		/* Reuse the same CCB to query if a device was really found */
1106 		scan_info = (ata_scan_bus_info *)work_ccb->ccb_h.ppriv_ptr0;
1107 		/* Free the current request path- we're done with it. */
1108 		xpt_free_path(work_ccb->ccb_h.path);
1109 		/* If there is PMP... */
1110 		if ((scan_info->cpi->hba_inquiry & PI_SATAPM) &&
1111 		    (scan_info->counter == scan_info->cpi->max_target)) {
1112 			if (work_ccb->ccb_h.status == CAM_REQ_CMP) {
1113 				/* everything else willbe probed by it */
1114 				goto done;
1115 			} else {
1116 				struct ccb_trans_settings cts;
1117 
1118 				/* Report SIM that PM is absent. */
1119 				bzero(&cts, sizeof(cts));
1120 				xpt_setup_ccb(&cts.ccb_h,
1121 				    scan_info->request_ccb->ccb_h.path, 1);
1122 				cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
1123 				cts.type = CTS_TYPE_CURRENT_SETTINGS;
1124 				cts.xport_specific.sata.pm_present = 0;
1125 				cts.xport_specific.sata.valid = CTS_SATA_VALID_PM;
1126 				xpt_action((union ccb *)&cts);
1127 			}
1128 		}
1129 		if (scan_info->counter ==
1130 		    ((scan_info->cpi->hba_inquiry & PI_SATAPM) ?
1131 		    0 : scan_info->cpi->max_target)) {
1132 done:
1133 			xpt_free_ccb(work_ccb);
1134 			xpt_free_ccb((union ccb *)scan_info->cpi);
1135 			request_ccb = scan_info->request_ccb;
1136 			free(scan_info, M_CAMXPT);
1137 			request_ccb->ccb_h.status = CAM_REQ_CMP;
1138 			xpt_done(request_ccb);
1139 			break;
1140 		}
1141 		/* Take next device. Wrap from max (PMP) to 0. */
1142 		scan_info->counter = (scan_info->counter + 1 ) %
1143 		    (scan_info->cpi->max_target + 1);
1144 scan_next:
1145 		status = xpt_create_path(&path, xpt_periph,
1146 		    scan_info->request_ccb->ccb_h.path_id,
1147 		    scan_info->counter, 0);
1148 		if (status != CAM_REQ_CMP) {
1149 			printf("xpt_scan_bus: xpt_create_path failed"
1150 			    " with status %#x, bus scan halted\n",
1151 			    status);
1152 			xpt_free_ccb(work_ccb);
1153 			xpt_free_ccb((union ccb *)scan_info->cpi);
1154 			request_ccb = scan_info->request_ccb;
1155 			free(scan_info, M_CAMXPT);
1156 			request_ccb->ccb_h.status = status;
1157 			xpt_done(request_ccb);
1158 			break;
1159 		}
1160 		xpt_setup_ccb(&work_ccb->ccb_h, path,
1161 		    scan_info->request_ccb->ccb_h.pinfo.priority);
1162 		work_ccb->ccb_h.func_code = XPT_SCAN_LUN;
1163 		work_ccb->ccb_h.cbfcnp = ata_scan_bus;
1164 		work_ccb->ccb_h.ppriv_ptr0 = scan_info;
1165 		work_ccb->crcn.flags = scan_info->request_ccb->crcn.flags;
1166 		xpt_action(work_ccb);
1167 		break;
1168 	default:
1169 		break;
1170 	}
1171 }
1172 
1173 static void
1174 ata_scan_lun(struct cam_periph *periph, struct cam_path *path,
1175 	     cam_flags flags, union ccb *request_ccb)
1176 {
1177 	struct ccb_pathinq cpi;
1178 	cam_status status;
1179 	struct cam_path *new_path;
1180 	struct cam_periph *old_periph;
1181 
1182 	CAM_DEBUG(path, CAM_DEBUG_TRACE, ("xpt_scan_lun\n"));
1183 
1184 	xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NONE);
1185 	cpi.ccb_h.func_code = XPT_PATH_INQ;
1186 	xpt_action((union ccb *)&cpi);
1187 
1188 	if (cpi.ccb_h.status != CAM_REQ_CMP) {
1189 		if (request_ccb != NULL) {
1190 			request_ccb->ccb_h.status = cpi.ccb_h.status;
1191 			xpt_done(request_ccb);
1192 		}
1193 		return;
1194 	}
1195 
1196 	if (request_ccb == NULL) {
1197 		request_ccb = malloc(sizeof(union ccb), M_CAMXPT, M_NOWAIT);
1198 		if (request_ccb == NULL) {
1199 			xpt_print(path, "xpt_scan_lun: can't allocate CCB, "
1200 			    "can't continue\n");
1201 			return;
1202 		}
1203 		new_path = malloc(sizeof(*new_path), M_CAMXPT, M_NOWAIT);
1204 		if (new_path == NULL) {
1205 			xpt_print(path, "xpt_scan_lun: can't allocate path, "
1206 			    "can't continue\n");
1207 			free(request_ccb, M_CAMXPT);
1208 			return;
1209 		}
1210 		status = xpt_compile_path(new_path, xpt_periph,
1211 					  path->bus->path_id,
1212 					  path->target->target_id,
1213 					  path->device->lun_id);
1214 
1215 		if (status != CAM_REQ_CMP) {
1216 			xpt_print(path, "xpt_scan_lun: can't compile path, "
1217 			    "can't continue\n");
1218 			free(request_ccb, M_CAMXPT);
1219 			free(new_path, M_CAMXPT);
1220 			return;
1221 		}
1222 		xpt_setup_ccb(&request_ccb->ccb_h, new_path, CAM_PRIORITY_XPT);
1223 		request_ccb->ccb_h.cbfcnp = xptscandone;
1224 		request_ccb->ccb_h.func_code = XPT_SCAN_LUN;
1225 		request_ccb->crcn.flags = flags;
1226 	}
1227 
1228 	if ((old_periph = cam_periph_find(path, "aprobe")) != NULL) {
1229 		probe_softc *softc;
1230 
1231 		softc = (probe_softc *)old_periph->softc;
1232 		TAILQ_INSERT_TAIL(&softc->request_ccbs, &request_ccb->ccb_h,
1233 				  periph_links.tqe);
1234 		softc->restart = 1;
1235 	} else {
1236 		status = cam_periph_alloc(proberegister, NULL, probecleanup,
1237 					  probestart, "aprobe",
1238 					  CAM_PERIPH_BIO,
1239 					  request_ccb->ccb_h.path, NULL, 0,
1240 					  request_ccb);
1241 
1242 		if (status != CAM_REQ_CMP) {
1243 			xpt_print(path, "xpt_scan_lun: cam_alloc_periph "
1244 			    "returned an error, can't continue probe\n");
1245 			request_ccb->ccb_h.status = status;
1246 			xpt_done(request_ccb);
1247 		}
1248 	}
1249 }
1250 
1251 static void
1252 xptscandone(struct cam_periph *periph, union ccb *done_ccb)
1253 {
1254 	xpt_release_path(done_ccb->ccb_h.path);
1255 	free(done_ccb->ccb_h.path, M_CAMXPT);
1256 	free(done_ccb, M_CAMXPT);
1257 }
1258 
1259 static struct cam_ed *
1260 ata_alloc_device(struct cam_eb *bus, struct cam_et *target, lun_id_t lun_id)
1261 {
1262 	struct cam_path path;
1263 	struct ata_quirk_entry *quirk;
1264 	struct cam_ed *device;
1265 	struct cam_ed *cur_device;
1266 
1267 	device = xpt_alloc_device(bus, target, lun_id);
1268 	if (device == NULL)
1269 		return (NULL);
1270 
1271 	/*
1272 	 * Take the default quirk entry until we have inquiry
1273 	 * data and can determine a better quirk to use.
1274 	 */
1275 	quirk = &ata_quirk_table[ata_quirk_table_size - 1];
1276 	device->quirk = (void *)quirk;
1277 	device->mintags = 0;
1278 	device->maxtags = 0;
1279 	bzero(&device->inq_data, sizeof(device->inq_data));
1280 	device->inq_flags = 0;
1281 	device->queue_flags = 0;
1282 	device->serial_num = NULL;
1283 	device->serial_num_len = 0;
1284 
1285 	/*
1286 	 * XXX should be limited by number of CCBs this bus can
1287 	 * do.
1288 	 */
1289 	bus->sim->max_ccbs += device->ccbq.devq_openings;
1290 	/* Insertion sort into our target's device list */
1291 	cur_device = TAILQ_FIRST(&target->ed_entries);
1292 	while (cur_device != NULL && cur_device->lun_id < lun_id)
1293 		cur_device = TAILQ_NEXT(cur_device, links);
1294 	if (cur_device != NULL) {
1295 		TAILQ_INSERT_BEFORE(cur_device, device, links);
1296 	} else {
1297 		TAILQ_INSERT_TAIL(&target->ed_entries, device, links);
1298 	}
1299 	target->generation++;
1300 	if (lun_id != CAM_LUN_WILDCARD) {
1301 		xpt_compile_path(&path,
1302 				 NULL,
1303 				 bus->path_id,
1304 				 target->target_id,
1305 				 lun_id);
1306 		ata_device_transport(&path);
1307 		xpt_release_path(&path);
1308 	}
1309 
1310 	return (device);
1311 }
1312 
1313 static void
1314 ata_device_transport(struct cam_path *path)
1315 {
1316 	struct ccb_pathinq cpi;
1317 	struct ccb_trans_settings cts;
1318 	struct scsi_inquiry_data *inq_buf = NULL;
1319 	struct ata_params *ident_buf = NULL;
1320 
1321 	/* Get transport information from the SIM */
1322 	xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NONE);
1323 	cpi.ccb_h.func_code = XPT_PATH_INQ;
1324 	xpt_action((union ccb *)&cpi);
1325 
1326 	path->device->transport = cpi.transport;
1327 	if ((path->device->flags & CAM_DEV_INQUIRY_DATA_VALID) != 0)
1328 		inq_buf = &path->device->inq_data;
1329 	if ((path->device->flags & CAM_DEV_IDENTIFY_DATA_VALID) != 0)
1330 		ident_buf = &path->device->ident_data;
1331 	if (path->device->protocol == PROTO_ATA) {
1332 		path->device->protocol_version = ident_buf ?
1333 		    ata_version(ident_buf->version_major) : cpi.protocol_version;
1334 	} else if (path->device->protocol == PROTO_SCSI) {
1335 		path->device->protocol_version = inq_buf ?
1336 		    SID_ANSI_REV(inq_buf) : cpi.protocol_version;
1337 	}
1338 	path->device->transport_version = ident_buf ?
1339 	    ata_version(ident_buf->version_major) : cpi.transport_version;
1340 
1341 	/* Tell the controller what we think */
1342 	xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE);
1343 	cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
1344 	cts.type = CTS_TYPE_CURRENT_SETTINGS;
1345 	cts.transport = path->device->transport;
1346 	cts.transport_version = path->device->transport_version;
1347 	cts.protocol = path->device->protocol;
1348 	cts.protocol_version = path->device->protocol_version;
1349 	cts.proto_specific.valid = 0;
1350 	if (ident_buf) {
1351 		if (path->device->transport == XPORT_ATA) {
1352 			cts.xport_specific.ata.atapi =
1353 			    ((ident_buf->config & ATA_PROTO_MASK) == ATA_PROTO_ATAPI_16) ? 16 :
1354 			    ((ident_buf->config & ATA_PROTO_MASK) == ATA_PROTO_ATAPI_12) ? 12 : 0;
1355 			cts.xport_specific.ata.valid = CTS_ATA_VALID_ATAPI;
1356 		} else {
1357 			cts.xport_specific.sata.atapi =
1358 			    ((ident_buf->config & ATA_PROTO_MASK) == ATA_PROTO_ATAPI_16) ? 16 :
1359 			    ((ident_buf->config & ATA_PROTO_MASK) == ATA_PROTO_ATAPI_12) ? 12 : 0;
1360 			cts.xport_specific.sata.valid = CTS_SATA_VALID_ATAPI;
1361 		}
1362 	} else
1363 		cts.xport_specific.valid = 0;
1364 	xpt_action((union ccb *)&cts);
1365 }
1366 
1367 static void
1368 ata_action(union ccb *start_ccb)
1369 {
1370 
1371 	switch (start_ccb->ccb_h.func_code) {
1372 	case XPT_SET_TRAN_SETTINGS:
1373 	{
1374 		ata_set_transfer_settings(&start_ccb->cts,
1375 					   start_ccb->ccb_h.path->device,
1376 					   /*async_update*/FALSE);
1377 		break;
1378 	}
1379 	case XPT_SCAN_BUS:
1380 		ata_scan_bus(start_ccb->ccb_h.path->periph, start_ccb);
1381 		break;
1382 	case XPT_SCAN_LUN:
1383 		ata_scan_lun(start_ccb->ccb_h.path->periph,
1384 			      start_ccb->ccb_h.path, start_ccb->crcn.flags,
1385 			      start_ccb);
1386 		break;
1387 	case XPT_GET_TRAN_SETTINGS:
1388 	{
1389 		struct cam_sim *sim;
1390 
1391 		sim = start_ccb->ccb_h.path->bus->sim;
1392 		(*(sim->sim_action))(sim, start_ccb);
1393 		break;
1394 	}
1395 	case XPT_SCSI_IO:
1396 	{
1397 		struct cam_ed *device;
1398 		u_int	maxlen = 0;
1399 
1400 		device = start_ccb->ccb_h.path->device;
1401 		if (device->protocol == PROTO_SCSI &&
1402 		    (device->flags & CAM_DEV_IDENTIFY_DATA_VALID)) {
1403 			uint16_t p =
1404 			    device->ident_data.config & ATA_PROTO_MASK;
1405 
1406 			maxlen = (p == ATA_PROTO_ATAPI_16) ? 16 :
1407 			    (p == ATA_PROTO_ATAPI_12) ? 12 : 0;
1408 		}
1409 		if (start_ccb->csio.cdb_len > maxlen) {
1410 			start_ccb->ccb_h.status = CAM_REQ_INVALID;
1411 			xpt_done(start_ccb);
1412 			break;
1413 		}
1414 		/* FALLTHROUGH */
1415 	}
1416 	default:
1417 		xpt_action_default(start_ccb);
1418 		break;
1419 	}
1420 }
1421 
1422 static void
1423 ata_set_transfer_settings(struct ccb_trans_settings *cts, struct cam_ed *device,
1424 			   int async_update)
1425 {
1426 	struct	ccb_pathinq cpi;
1427 	struct	ccb_trans_settings cur_cts;
1428 	struct	ccb_trans_settings_scsi *scsi;
1429 	struct	ccb_trans_settings_scsi *cur_scsi;
1430 	struct	cam_sim *sim;
1431 	struct	scsi_inquiry_data *inq_data;
1432 
1433 	if (device == NULL) {
1434 		cts->ccb_h.status = CAM_PATH_INVALID;
1435 		xpt_done((union ccb *)cts);
1436 		return;
1437 	}
1438 
1439 	if (cts->protocol == PROTO_UNKNOWN
1440 	 || cts->protocol == PROTO_UNSPECIFIED) {
1441 		cts->protocol = device->protocol;
1442 		cts->protocol_version = device->protocol_version;
1443 	}
1444 
1445 	if (cts->protocol_version == PROTO_VERSION_UNKNOWN
1446 	 || cts->protocol_version == PROTO_VERSION_UNSPECIFIED)
1447 		cts->protocol_version = device->protocol_version;
1448 
1449 	if (cts->protocol != device->protocol) {
1450 		xpt_print(cts->ccb_h.path, "Uninitialized Protocol %x:%x?\n",
1451 		       cts->protocol, device->protocol);
1452 		cts->protocol = device->protocol;
1453 	}
1454 
1455 	if (cts->protocol_version > device->protocol_version) {
1456 		if (bootverbose) {
1457 			xpt_print(cts->ccb_h.path, "Down reving Protocol "
1458 			    "Version from %d to %d?\n", cts->protocol_version,
1459 			    device->protocol_version);
1460 		}
1461 		cts->protocol_version = device->protocol_version;
1462 	}
1463 
1464 	if (cts->transport == XPORT_UNKNOWN
1465 	 || cts->transport == XPORT_UNSPECIFIED) {
1466 		cts->transport = device->transport;
1467 		cts->transport_version = device->transport_version;
1468 	}
1469 
1470 	if (cts->transport_version == XPORT_VERSION_UNKNOWN
1471 	 || cts->transport_version == XPORT_VERSION_UNSPECIFIED)
1472 		cts->transport_version = device->transport_version;
1473 
1474 	if (cts->transport != device->transport) {
1475 		xpt_print(cts->ccb_h.path, "Uninitialized Transport %x:%x?\n",
1476 		    cts->transport, device->transport);
1477 		cts->transport = device->transport;
1478 	}
1479 
1480 	if (cts->transport_version > device->transport_version) {
1481 		if (bootverbose) {
1482 			xpt_print(cts->ccb_h.path, "Down reving Transport "
1483 			    "Version from %d to %d?\n", cts->transport_version,
1484 			    device->transport_version);
1485 		}
1486 		cts->transport_version = device->transport_version;
1487 	}
1488 
1489 	sim = cts->ccb_h.path->bus->sim;
1490 
1491 	/*
1492 	 * Nothing more of interest to do unless
1493 	 * this is a device connected via the
1494 	 * SCSI protocol.
1495 	 */
1496 	if (cts->protocol != PROTO_SCSI) {
1497 		if (async_update == FALSE)
1498 			(*(sim->sim_action))(sim, (union ccb *)cts);
1499 		return;
1500 	}
1501 
1502 	inq_data = &device->inq_data;
1503 	scsi = &cts->proto_specific.scsi;
1504 	xpt_setup_ccb(&cpi.ccb_h, cts->ccb_h.path, CAM_PRIORITY_NONE);
1505 	cpi.ccb_h.func_code = XPT_PATH_INQ;
1506 	xpt_action((union ccb *)&cpi);
1507 
1508 	/* SCSI specific sanity checking */
1509 	if ((cpi.hba_inquiry & PI_TAG_ABLE) == 0
1510 	 || (INQ_DATA_TQ_ENABLED(inq_data)) == 0
1511 	 || (device->queue_flags & SCP_QUEUE_DQUE) != 0
1512 	 || (device->mintags == 0)) {
1513 		/*
1514 		 * Can't tag on hardware that doesn't support tags,
1515 		 * doesn't have it enabled, or has broken tag support.
1516 		 */
1517 		scsi->flags &= ~CTS_SCSI_FLAGS_TAG_ENB;
1518 	}
1519 
1520 	if (async_update == FALSE) {
1521 		/*
1522 		 * Perform sanity checking against what the
1523 		 * controller and device can do.
1524 		 */
1525 		xpt_setup_ccb(&cur_cts.ccb_h, cts->ccb_h.path, CAM_PRIORITY_NONE);
1526 		cur_cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
1527 		cur_cts.type = cts->type;
1528 		xpt_action((union ccb *)&cur_cts);
1529 		if ((cur_cts.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1530 			return;
1531 		}
1532 		cur_scsi = &cur_cts.proto_specific.scsi;
1533 		if ((scsi->valid & CTS_SCSI_VALID_TQ) == 0) {
1534 			scsi->flags &= ~CTS_SCSI_FLAGS_TAG_ENB;
1535 			scsi->flags |= cur_scsi->flags & CTS_SCSI_FLAGS_TAG_ENB;
1536 		}
1537 		if ((cur_scsi->valid & CTS_SCSI_VALID_TQ) == 0)
1538 			scsi->flags &= ~CTS_SCSI_FLAGS_TAG_ENB;
1539 	}
1540 
1541 	if (cts->type == CTS_TYPE_CURRENT_SETTINGS
1542 	 && (scsi->valid & CTS_SCSI_VALID_TQ) != 0) {
1543 		int device_tagenb;
1544 
1545 		/*
1546 		 * If we are transitioning from tags to no-tags or
1547 		 * vice-versa, we need to carefully freeze and restart
1548 		 * the queue so that we don't overlap tagged and non-tagged
1549 		 * commands.  We also temporarily stop tags if there is
1550 		 * a change in transfer negotiation settings to allow
1551 		 * "tag-less" negotiation.
1552 		 */
1553 		if ((device->flags & CAM_DEV_TAG_AFTER_COUNT) != 0
1554 		 || (device->inq_flags & SID_CmdQue) != 0)
1555 			device_tagenb = TRUE;
1556 		else
1557 			device_tagenb = FALSE;
1558 
1559 		if (((scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0
1560 		  && device_tagenb == FALSE)
1561 		 || ((scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) == 0
1562 		  && device_tagenb == TRUE)) {
1563 
1564 			if ((scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0) {
1565 				/*
1566 				 * Delay change to use tags until after a
1567 				 * few commands have gone to this device so
1568 				 * the controller has time to perform transfer
1569 				 * negotiations without tagged messages getting
1570 				 * in the way.
1571 				 */
1572 				device->tag_delay_count = CAM_TAG_DELAY_COUNT;
1573 				device->flags |= CAM_DEV_TAG_AFTER_COUNT;
1574 			} else {
1575 				xpt_stop_tags(cts->ccb_h.path);
1576 			}
1577 		}
1578 	}
1579 	if (async_update == FALSE)
1580 		(*(sim->sim_action))(sim, (union ccb *)cts);
1581 }
1582 
1583 /*
1584  * Handle any per-device event notifications that require action by the XPT.
1585  */
1586 static void
1587 ata_dev_async(u_int32_t async_code, struct cam_eb *bus, struct cam_et *target,
1588 	      struct cam_ed *device, void *async_arg)
1589 {
1590 	cam_status status;
1591 	struct cam_path newpath;
1592 
1593 	/*
1594 	 * We only need to handle events for real devices.
1595 	 */
1596 	if (target->target_id == CAM_TARGET_WILDCARD
1597 	 || device->lun_id == CAM_LUN_WILDCARD)
1598 		return;
1599 
1600 	/*
1601 	 * We need our own path with wildcards expanded to
1602 	 * handle certain types of events.
1603 	 */
1604 	if ((async_code == AC_SENT_BDR)
1605 	 || (async_code == AC_BUS_RESET)
1606 	 || (async_code == AC_INQ_CHANGED))
1607 		status = xpt_compile_path(&newpath, NULL,
1608 					  bus->path_id,
1609 					  target->target_id,
1610 					  device->lun_id);
1611 	else
1612 		status = CAM_REQ_CMP_ERR;
1613 
1614 	if (status == CAM_REQ_CMP) {
1615 		if (async_code == AC_INQ_CHANGED) {
1616 			/*
1617 			 * We've sent a start unit command, or
1618 			 * something similar to a device that
1619 			 * may have caused its inquiry data to
1620 			 * change. So we re-scan the device to
1621 			 * refresh the inquiry data for it.
1622 			 */
1623 			ata_scan_lun(newpath.periph, &newpath,
1624 				     CAM_EXPECT_INQ_CHANGE, NULL);
1625 		} else {
1626 			/* We need to reinitialize device after reset. */
1627 			ata_scan_lun(newpath.periph, &newpath,
1628 				     0, NULL);
1629 		}
1630 		xpt_release_path(&newpath);
1631 	} else if (async_code == AC_LOST_DEVICE &&
1632 	    (device->flags & CAM_DEV_UNCONFIGURED) == 0) {
1633 		device->flags |= CAM_DEV_UNCONFIGURED;
1634 		xpt_release_device(device);
1635 	} else if (async_code == AC_TRANSFER_NEG) {
1636 		struct ccb_trans_settings *settings;
1637 
1638 		settings = (struct ccb_trans_settings *)async_arg;
1639 		ata_set_transfer_settings(settings, device,
1640 					  /*async_update*/TRUE);
1641 	}
1642 }
1643 
1644