xref: /dragonfly/sys/dev/disk/sili/sili_cam.c (revision e7d467f4)
1 /*
2  * (MPSAFE)
3  *
4  * Copyright (c) 2009 The DragonFly Project.  All rights reserved.
5  *
6  * This code is derived from software contributed to The DragonFly Project
7  * by Matthew Dillon <dillon@backplane.com>
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  * 3. Neither the name of The DragonFly Project nor the names of its
20  *    contributors may be used to endorse or promote products derived
21  *    from this software without specific, prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
27  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
31  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *
37  * Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
38  *
39  * Permission to use, copy, modify, and distribute this software for any
40  * purpose with or without fee is hereby granted, provided that the above
41  * copyright notice and this permission notice appear in all copies.
42  *
43  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
44  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
45  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
46  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
47  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
48  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
49  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
50  *
51  * $OpenBSD: atascsi.c,v 1.64 2009/02/16 21:19:06 miod Exp $
52  */
53 /*
54  * Implement each SATA port as its own SCSI bus on CAM.  This way we can
55  * implement future port multiplier features as individual devices on the
56  * bus.
57  *
58  * Much of the cdb<->xa conversion code was taken from OpenBSD, the rest
59  * was written natively for DragonFly.
60  */
61 
62 #include "sili.h"
63 
64 static void sili_xpt_action(struct cam_sim *sim, union ccb *ccb);
65 static void sili_xpt_poll(struct cam_sim *sim);
66 static void sili_xpt_scsi_disk_io(struct sili_port *ap,
67 			struct ata_port *at, union ccb *ccb);
68 static void sili_xpt_scsi_atapi_io(struct sili_port *ap,
69 			struct ata_port *at, union ccb *ccb);
70 static void sili_xpt_page_inquiry(struct sili_port *ap,
71 			struct ata_port *at, union ccb *ccb);
72 
73 static void sili_ata_complete_disk_rw(struct ata_xfer *xa);
74 static void sili_ata_complete_disk_synchronize_cache(struct ata_xfer *xa);
75 static void sili_atapi_complete_cmd(struct ata_xfer *xa);
76 static void sili_ata_dummy_sense(struct scsi_sense_data *sense_data);
77 static void sili_ata_atapi_sense(struct ata_fis_d2h *rfis,
78 		     struct scsi_sense_data *sense_data);
79 
80 static int sili_cam_probe_disk(struct sili_port *ap, struct ata_port *at);
81 static int sili_cam_probe_atapi(struct sili_port *ap, struct ata_port *at);
82 static void sili_ata_dummy_done(struct ata_xfer *xa);
83 static void ata_fix_identify(struct ata_identify *id);
84 static int sili_set_xfer(struct sili_port *ap, struct ata_port *atx);
85 static void sili_cam_rescan(struct sili_port *ap);
86 static void sili_strip_string(const char **basep, int *lenp);
87 
88 int
89 sili_cam_attach(struct sili_port *ap)
90 {
91 	struct cam_devq *devq;
92 	struct cam_sim *sim;
93 	int error;
94 	int unit;
95 
96 	/*
97 	 * We want at least one ccb to be available for error processing
98 	 * so don't let CAM use more then ncmds - 1.
99 	 */
100 	unit = device_get_unit(ap->ap_sc->sc_dev);
101 	if (ap->ap_sc->sc_ncmds > 1)
102 		devq = cam_simq_alloc(ap->ap_sc->sc_ncmds - 1);
103 	else
104 		devq = cam_simq_alloc(ap->ap_sc->sc_ncmds);
105 	if (devq == NULL) {
106 		return (ENOMEM);
107 	}
108 
109 	/*
110 	 * Give the devq enough room to run with 32 max_dev_transactions,
111 	 * but set the overall max tags to 1 until NCQ is negotiated.
112 	 */
113 	sim = cam_sim_alloc(sili_xpt_action, sili_xpt_poll, "sili",
114 			   (void *)ap, unit, &ap->ap_sim_lock,
115 			   32, 1, devq);
116 	cam_simq_release(devq);
117 	if (sim == NULL) {
118 		return (ENOMEM);
119 	}
120 	ap->ap_sim = sim;
121 	sili_os_unlock_port(ap);
122 	lockmgr(&ap->ap_sim_lock, LK_EXCLUSIVE);
123 	error = xpt_bus_register(ap->ap_sim, ap->ap_num);
124 	lockmgr(&ap->ap_sim_lock, LK_RELEASE);
125 	sili_os_lock_port(ap);
126 	if (error != CAM_SUCCESS) {
127 		sili_cam_detach(ap);
128 		return (EINVAL);
129 	}
130 	ap->ap_flags |= AP_F_BUS_REGISTERED;
131 
132 	if (ap->ap_probe == ATA_PROBE_NEED_IDENT)
133 		error = sili_cam_probe(ap, NULL);
134 	else
135 		error = 0;
136 	if (error) {
137 		sili_cam_detach(ap);
138 		return (EIO);
139 	}
140 	ap->ap_flags |= AP_F_CAM_ATTACHED;
141 
142 	return(0);
143 }
144 
145 /*
146  * The state of the port has changed.
147  *
148  * If atx is NULL the physical port has changed state.
149  * If atx is non-NULL a particular target behind a PM has changed state.
150  *
151  * If found is -1 the target state must be queued to a non-interrupt context.
152  * (only works with at == NULL).
153  *
154  * If found is 0 the target was removed.
155  * If found is 1 the target was inserted.
156  */
157 void
158 sili_cam_changed(struct sili_port *ap, struct ata_port *atx, int found)
159 {
160 	struct cam_path *tmppath;
161 	int status;
162 	int target;
163 
164 	target = atx ? atx->at_target : CAM_TARGET_WILDCARD;
165 
166 	if (ap->ap_sim == NULL)
167 		return;
168 	if (found == CAM_TARGET_WILDCARD) {
169 		status = xpt_create_path(&tmppath, NULL,
170 					 cam_sim_path(ap->ap_sim),
171 					 target, CAM_LUN_WILDCARD);
172 		if (status != CAM_REQ_CMP)
173 			return;
174 		sili_cam_rescan(ap);
175 	} else {
176 		status = xpt_create_path(&tmppath, NULL,
177 					 cam_sim_path(ap->ap_sim),
178 					 target,
179 					 CAM_LUN_WILDCARD);
180 		if (status != CAM_REQ_CMP)
181 			return;
182 #if 0
183 		/*
184 		 * This confuses CAM
185 		 */
186 		if (found)
187 			xpt_async(AC_FOUND_DEVICE, tmppath, NULL);
188 		else
189 			xpt_async(AC_LOST_DEVICE, tmppath, NULL);
190 #endif
191 	}
192 	xpt_free_path(tmppath);
193 }
194 
195 void
196 sili_cam_detach(struct sili_port *ap)
197 {
198 	int error __debugvar;
199 
200 	if ((ap->ap_flags & AP_F_CAM_ATTACHED) == 0)
201 		return;
202 	lockmgr(&ap->ap_sim_lock, LK_EXCLUSIVE);
203 	if (ap->ap_sim) {
204 		xpt_freeze_simq(ap->ap_sim, 1);
205 	}
206 	if (ap->ap_flags & AP_F_BUS_REGISTERED) {
207 		error = xpt_bus_deregister(cam_sim_path(ap->ap_sim));
208 		KKASSERT(error == CAM_REQ_CMP);
209 		ap->ap_flags &= ~AP_F_BUS_REGISTERED;
210 	}
211 	if (ap->ap_sim) {
212 		cam_sim_free(ap->ap_sim);
213 		ap->ap_sim = NULL;
214 	}
215 	lockmgr(&ap->ap_sim_lock, LK_RELEASE);
216 	ap->ap_flags &= ~AP_F_CAM_ATTACHED;
217 }
218 
219 /*
220  * Once the SILI port has been attached we need to probe for a device or
221  * devices on the port and setup various options.
222  *
223  * If at is NULL we are probing the direct-attached device on the port,
224  * which may or may not be a port multiplier.
225  */
226 int
227 sili_cam_probe(struct sili_port *ap, struct ata_port *atx)
228 {
229 	struct ata_port	*at;
230 	struct ata_xfer	*xa;
231 	u_int64_t	capacity;
232 	u_int64_t	capacity_bytes;
233 	int		model_len;
234 	int		firmware_len;
235 	int		serial_len;
236 	int		error;
237 	int		devncqdepth;
238 	int		i;
239 	const char	*model_id;
240 	const char	*firmware_id;
241 	const char	*serial_id;
242 	const char	*wcstr;
243 	const char	*rastr;
244 	const char	*scstr;
245 	const char	*type;
246 
247 	error = EIO;
248 
249 	/*
250 	 * Delayed CAM attachment for initial probe, sim may be NULL
251 	 */
252 	if (ap->ap_sim == NULL)
253 		return(0);
254 
255 	/*
256 	 * A NULL atx indicates a probe of the directly connected device.
257 	 * A non-NULL atx indicates a device connected via a port multiplier.
258 	 * We need to preserve atx for calls to sili_ata_get_xfer().
259 	 *
260 	 * at is always non-NULL.  For directly connected devices we supply
261 	 * an (at) pointing to target 0.
262 	 */
263 	if (atx == NULL) {
264 		at = ap->ap_ata;	/* direct attached - device 0 */
265 		if (ap->ap_type == ATA_PORT_T_PM) {
266 			kprintf("%s: Found Port Multiplier\n",
267 				ATANAME(ap, atx));
268 			return (0);
269 		}
270 		at->at_type = ap->ap_type;
271 	} else {
272 		at = atx;
273 		if (atx->at_type == ATA_PORT_T_PM) {
274 			kprintf("%s: Bogus device, reducing port count to %d\n",
275 				ATANAME(ap, atx), atx->at_target);
276 			if (ap->ap_pmcount > atx->at_target)
277 				ap->ap_pmcount = atx->at_target;
278 			goto err;
279 		}
280 	}
281 	if (ap->ap_type == ATA_PORT_T_NONE)
282 		goto err;
283 	if (at->at_type == ATA_PORT_T_NONE)
284 		goto err;
285 
286 	/*
287 	 * Issue identify, saving the result
288 	 */
289 	xa = sili_ata_get_xfer(ap, atx);
290 	xa->complete = sili_ata_dummy_done;
291 	xa->data = &at->at_identify;
292 	xa->datalen = sizeof(at->at_identify);
293 	xa->flags = ATA_F_READ | ATA_F_PIO | ATA_F_POLL;
294 	xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target;
295 
296 	switch(at->at_type) {
297 	case ATA_PORT_T_DISK:
298 		xa->fis->command = ATA_C_IDENTIFY;
299 		type = "DISK";
300 		break;
301 	case ATA_PORT_T_ATAPI:
302 		xa->fis->command = ATA_C_ATAPI_IDENTIFY;
303 		xa->flags |= ATA_F_AUTOSENSE;
304 		type = "ATAPI";
305 		break;
306 	default:
307 		xa->fis->command = ATA_C_ATAPI_IDENTIFY;
308 		type = "UNKNOWN(ATAPI?)";
309 		break;
310 	}
311 	xa->fis->features = 0;
312 	xa->fis->device = 0;
313 	xa->timeout = 1000;
314 
315 	if (sili_ata_cmd(xa) != ATA_S_COMPLETE) {
316 		kprintf("%s: Detected %s device but unable to IDENTIFY\n",
317 			ATANAME(ap, atx), type);
318 		sili_ata_put_xfer(xa);
319 		goto err;
320 	}
321 	sili_ata_put_xfer(xa);
322 
323 	ata_fix_identify(&at->at_identify);
324 
325 	/*
326 	 * Read capacity using SATA probe info.
327 	 */
328 	if (le16toh(at->at_identify.cmdset83) & 0x0400) {
329 		/* LBA48 feature set supported */
330 		capacity = 0;
331 		for (i = 3; i >= 0; --i) {
332 			capacity <<= 16;
333 			capacity +=
334 			    le16toh(at->at_identify.addrsecxt[i]);
335 		}
336 	} else {
337 		capacity = le16toh(at->at_identify.addrsec[1]);
338 		capacity <<= 16;
339 		capacity += le16toh(at->at_identify.addrsec[0]);
340 	}
341 	at->at_capacity = capacity;
342 	if (atx == NULL)
343 		ap->ap_probe = ATA_PROBE_GOOD;
344 
345 	capacity_bytes = capacity * 512;
346 
347 	/*
348 	 * Negotiate NCQ, throw away any ata_xfer's beyond the negotiated
349 	 * number of slots and limit the number of CAM ccb's to one less
350 	 * so we always have a slot available for recovery.
351 	 *
352 	 * NCQ is not used if ap_ncqdepth is 1 or the host controller does
353 	 * not support it, and in that case the driver can handle extra
354 	 * ccb's.
355 	 *
356 	 * NCQ is currently used only with direct-attached disks.  It is
357 	 * not used with port multipliers or direct-attached ATAPI devices.
358 	 *
359 	 * Remember at least one extra CCB needs to be reserved for the
360 	 * error ccb.
361 	 */
362 	if ((ap->ap_sc->sc_flags & SILI_F_NCQ) &&
363 	    at->at_type == ATA_PORT_T_DISK &&
364 	    (le16toh(at->at_identify.satacap) & (1 << 8))) {
365 		at->at_ncqdepth = (le16toh(at->at_identify.qdepth) & 0x1F) + 1;
366 		devncqdepth = at->at_ncqdepth;
367 		if (at->at_ncqdepth > ap->ap_sc->sc_ncmds)
368 			at->at_ncqdepth = ap->ap_sc->sc_ncmds;
369 		if (at->at_ncqdepth > 1) {
370 			for (i = 0; i < ap->ap_sc->sc_ncmds; ++i) {
371 				xa = sili_ata_get_xfer(ap, atx);
372 				if (xa->tag < at->at_ncqdepth) {
373 					xa->state = ATA_S_COMPLETE;
374 					sili_ata_put_xfer(xa);
375 				}
376 			}
377 			if (at->at_ncqdepth >= ap->ap_sc->sc_ncmds) {
378 				cam_sim_set_max_tags(ap->ap_sim,
379 						     at->at_ncqdepth - 1);
380 			}
381 		}
382 	} else {
383 		devncqdepth = 0;
384 	}
385 
386 	/*
387 	 * Make the model string a bit more presentable
388 	 */
389 	for (model_len = 40; model_len; --model_len) {
390 		if (at->at_identify.model[model_len-1] == ' ')
391 			continue;
392 		if (at->at_identify.model[model_len-1] == 0)
393 			continue;
394 		break;
395 	}
396 
397 	model_len = sizeof(at->at_identify.model);
398 	model_id = at->at_identify.model;
399 	sili_strip_string(&model_id, &model_len);
400 
401 	firmware_len = sizeof(at->at_identify.firmware);
402 	firmware_id = at->at_identify.firmware;
403 	sili_strip_string(&firmware_id, &firmware_len);
404 
405 	serial_len = sizeof(at->at_identify.serial);
406 	serial_id = at->at_identify.serial;
407 	sili_strip_string(&serial_id, &serial_len);
408 
409 	/*
410 	 * Generate informatiive strings.
411 	 *
412 	 * NOTE: We do not automatically set write caching, lookahead,
413 	 *	 or the security state for ATAPI devices.
414 	 */
415 	if (at->at_identify.cmdset82 & ATA_IDENTIFY_WRITECACHE) {
416 		if (at->at_identify.features85 & ATA_IDENTIFY_WRITECACHE)
417 			wcstr = "enabled";
418 		else if (at->at_type == ATA_PORT_T_ATAPI)
419 			wcstr = "disabled";
420 		else
421 			wcstr = "enabling";
422 	} else {
423 		    wcstr = "notsupp";
424 	}
425 
426 	if (at->at_identify.cmdset82 & ATA_IDENTIFY_LOOKAHEAD) {
427 		if (at->at_identify.features85 & ATA_IDENTIFY_LOOKAHEAD)
428 			rastr = "enabled";
429 		else if (at->at_type == ATA_PORT_T_ATAPI)
430 			rastr = "disabled";
431 		else
432 			rastr = "enabling";
433 	} else {
434 		    rastr = "notsupp";
435 	}
436 
437 	if (at->at_identify.cmdset82 & ATA_IDENTIFY_SECURITY) {
438 		if (at->at_identify.securestatus & ATA_SECURE_FROZEN)
439 			scstr = "frozen";
440 		else if (at->at_type == ATA_PORT_T_ATAPI)
441 			scstr = "unfrozen";
442 		else if (SiliNoFeatures & (1 << ap->ap_num))
443 			scstr = "<disabled>";
444 		else
445 			scstr = "freezing";
446 	} else {
447 		    scstr = "notsupp";
448 	}
449 
450 	kprintf("%s: Found %s \"%*.*s %*.*s\" serial=\"%*.*s\"\n"
451 		"%s: tags=%d/%d satacap=%04x satafea=%04x NCQ=%s "
452 		"capacity=%lld.%02dMB\n",
453 
454 		ATANAME(ap, atx),
455 		type,
456 		model_len, model_len, model_id,
457 		firmware_len, firmware_len, firmware_id,
458 		serial_len, serial_len, serial_id,
459 
460 		ATANAME(ap, atx),
461 		devncqdepth, ap->ap_sc->sc_ncmds,
462 		at->at_identify.satacap,
463 		at->at_identify.satafsup,
464 		(at->at_ncqdepth > 1 ? "YES" : "NO"),
465 		(long long)capacity_bytes / (1024 * 1024),
466 		(int)(capacity_bytes % (1024 * 1024)) * 100 / (1024 * 1024)
467 	);
468 	kprintf("%s: f85=%04x f86=%04x f87=%04x WC=%s RA=%s SEC=%s\n",
469 		ATANAME(ap, atx),
470 		at->at_identify.features85,
471 		at->at_identify.features86,
472 		at->at_identify.features87,
473 		wcstr,
474 		rastr,
475 		scstr
476 	);
477 
478 	/*
479 	 * Additional type-specific probing
480 	 */
481 	switch(at->at_type) {
482 	case ATA_PORT_T_DISK:
483 		error = sili_cam_probe_disk(ap, atx);
484 		break;
485 	case ATA_PORT_T_ATAPI:
486 		error = sili_cam_probe_atapi(ap, atx);
487 		break;
488 	default:
489 		error = EIO;
490 		break;
491 	}
492 err:
493 	if (error) {
494 		at->at_probe = ATA_PROBE_FAILED;
495 		if (atx == NULL)
496 			ap->ap_probe = at->at_probe;
497 	} else {
498 		at->at_probe = ATA_PROBE_GOOD;
499 		if (atx == NULL)
500 			ap->ap_probe = at->at_probe;
501 	}
502 	return (error);
503 }
504 
505 /*
506  * DISK-specific probe after initial ident
507  */
508 static int
509 sili_cam_probe_disk(struct sili_port *ap, struct ata_port *atx)
510 {
511 	struct ata_port *at;
512 	struct ata_xfer	*xa;
513 
514 	at = atx ? atx : ap->ap_ata;
515 
516 	/*
517 	 * Set dummy xfer mode
518 	 */
519 	sili_set_xfer(ap, atx);
520 
521 	/*
522 	 * Enable write cache if supported
523 	 *
524 	 * NOTE: "WD My Book" external disk devices have a very poor
525 	 *	 daughter board between the the ESATA and the HD.  Sending
526 	 *	 any ATA_C_SET_FEATURES commands will break the hardware port
527 	 *	 with a fatal protocol error.  However, this device also
528 	 *	 indicates that WRITECACHE is already on and READAHEAD is
529 	 *	 not supported so we avoid the issue.
530 	 */
531 	if ((at->at_identify.cmdset82 & ATA_IDENTIFY_WRITECACHE) &&
532 	    (at->at_identify.features85 & ATA_IDENTIFY_WRITECACHE) == 0) {
533 		xa = sili_ata_get_xfer(ap, atx);
534 		xa->complete = sili_ata_dummy_done;
535 		xa->fis->command = ATA_C_SET_FEATURES;
536 		/*xa->fis->features = ATA_SF_WRITECACHE_EN;*/
537 		xa->fis->features = ATA_SF_LOOKAHEAD_EN;
538 		xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target;
539 		xa->fis->device = 0;
540 		xa->flags = ATA_F_READ | ATA_F_PIO | ATA_F_POLL;
541 		xa->timeout = 1000;
542 		xa->datalen = 0;
543 		if (sili_ata_cmd(xa) == ATA_S_COMPLETE)
544 			at->at_features |= ATA_PORT_F_WCACHE;
545 		else
546 			kprintf("%s: Unable to enable write-caching\n",
547 				ATANAME(ap, atx));
548 		sili_ata_put_xfer(xa);
549 	}
550 
551 	/*
552 	 * Enable readahead if supported
553 	 */
554 	if ((at->at_identify.cmdset82 & ATA_IDENTIFY_LOOKAHEAD) &&
555 	    (at->at_identify.features85 & ATA_IDENTIFY_LOOKAHEAD) == 0) {
556 		xa = sili_ata_get_xfer(ap, atx);
557 		xa->complete = sili_ata_dummy_done;
558 		xa->fis->command = ATA_C_SET_FEATURES;
559 		xa->fis->features = ATA_SF_LOOKAHEAD_EN;
560 		xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target;
561 		xa->fis->device = 0;
562 		xa->flags = ATA_F_READ | ATA_F_PIO | ATA_F_POLL;
563 		xa->timeout = 1000;
564 		xa->datalen = 0;
565 		if (sili_ata_cmd(xa) == ATA_S_COMPLETE)
566 			at->at_features |= ATA_PORT_F_RAHEAD;
567 		else
568 			kprintf("%s: Unable to enable read-ahead\n",
569 				ATANAME(ap, atx));
570 		sili_ata_put_xfer(xa);
571 	}
572 
573 	/*
574 	 * FREEZE LOCK the device so malicious users can't lock it on us.
575 	 * As there is no harm in issuing this to devices that don't
576 	 * support the security feature set we just send it, and don't bother
577 	 * checking if the device sends a command abort to tell us it doesn't
578 	 * support it
579 	 */
580 	if ((at->at_identify.cmdset82 & ATA_IDENTIFY_SECURITY) &&
581 	    (at->at_identify.securestatus & ATA_SECURE_FROZEN) == 0 &&
582 	    (SiliNoFeatures & (1 << ap->ap_num)) == 0) {
583 		xa = sili_ata_get_xfer(ap, atx);
584 		xa->complete = sili_ata_dummy_done;
585 		xa->fis->command = ATA_C_SEC_FREEZE_LOCK;
586 		xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target;
587 		xa->flags = ATA_F_READ | ATA_F_PIO | ATA_F_POLL;
588 		xa->timeout = 1000;
589 		xa->datalen = 0;
590 		if (sili_ata_cmd(xa) == ATA_S_COMPLETE)
591 			at->at_features |= ATA_PORT_F_FRZLCK;
592 		else
593 			kprintf("%s: Unable to set security freeze\n",
594 				ATANAME(ap, atx));
595 		sili_ata_put_xfer(xa);
596 	}
597 
598 	return (0);
599 }
600 
601 /*
602  * ATAPI-specific probe after initial ident
603  */
604 static int
605 sili_cam_probe_atapi(struct sili_port *ap, struct ata_port *atx)
606 {
607 	sili_set_xfer(ap, atx);
608 	return(0);
609 }
610 
611 /*
612  * Setting the transfer mode is irrelevant for the SATA transport
613  * but some (atapi) devices seem to need it anyway.  In addition
614  * if we are running through a SATA->PATA converter for some reason
615  * beyond my comprehension we might have to set the mode.
616  *
617  * We only support DMA modes for SATA attached devices, so don't bother
618  * with legacy modes.
619  */
620 static int
621 sili_set_xfer(struct sili_port *ap, struct ata_port *atx)
622 {
623 	struct ata_port *at;
624 	struct ata_xfer	*xa;
625 	u_int16_t mode;
626 	u_int16_t mask;
627 
628 	at = atx ? atx : ap->ap_ata;
629 
630 	/*
631 	 * Figure out the supported UDMA mode.  Ignore other legacy modes.
632 	 */
633 	mask = le16toh(at->at_identify.ultradma);
634 	if ((mask & 0xFF) == 0 || mask == 0xFFFF)
635 		return(0);
636 	mask &= 0xFF;
637 	mode = 0x4F;
638 	while ((mask & 0x8000) == 0) {
639 		mask <<= 1;
640 		--mode;
641 	}
642 
643 	/*
644 	 * SATA atapi devices often still report a dma mode, even though
645 	 * it is irrelevant for SATA transport.  It is also possible that
646 	 * we are running through a SATA->PATA converter and seeing the
647 	 * PATA dma mode.
648 	 *
649 	 * In this case the device may require a (dummy) SETXFER to be
650 	 * sent before it will work properly.
651 	 */
652 	xa = sili_ata_get_xfer(ap, atx);
653 	xa->complete = sili_ata_dummy_done;
654 	xa->fis->command = ATA_C_SET_FEATURES;
655 	xa->fis->features = ATA_SF_SETXFER;
656 	xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target;
657 	xa->fis->sector_count = mode;
658 	xa->flags = ATA_F_PIO | ATA_F_POLL;
659 	xa->timeout = 1000;
660 	xa->datalen = 0;
661 	if (sili_ata_cmd(xa) != ATA_S_COMPLETE) {
662 		kprintf("%s: Unable to set dummy xfer mode \n",
663 			ATANAME(ap, atx));
664 	} else if (bootverbose) {
665 		kprintf("%s: Set dummy xfer mode to %02x\n",
666 			ATANAME(ap, atx), mode);
667 	}
668 	sili_ata_put_xfer(xa);
669 	return(0);
670 }
671 
672 /*
673  * Fix byte ordering so buffers can be accessed as
674  * strings.
675  */
676 static void
677 ata_fix_identify(struct ata_identify *id)
678 {
679 	u_int16_t	*swap;
680 	int		i;
681 
682 	swap = (u_int16_t *)id->serial;
683 	for (i = 0; i < sizeof(id->serial) / sizeof(u_int16_t); i++)
684 		swap[i] = bswap16(swap[i]);
685 
686 	swap = (u_int16_t *)id->firmware;
687 	for (i = 0; i < sizeof(id->firmware) / sizeof(u_int16_t); i++)
688 		swap[i] = bswap16(swap[i]);
689 
690 	swap = (u_int16_t *)id->model;
691 	for (i = 0; i < sizeof(id->model) / sizeof(u_int16_t); i++)
692 		swap[i] = bswap16(swap[i]);
693 }
694 
695 /*
696  * Dummy done callback for xa.
697  */
698 static void
699 sili_ata_dummy_done(struct ata_xfer *xa)
700 {
701 }
702 
703 /*
704  * Use an engineering request to initiate a target scan for devices
705  * behind a port multiplier.
706  *
707  * An asynchronous bus scan is used to avoid reentrancy issues.
708  */
709 static void
710 sili_cam_rescan_callback(struct cam_periph *periph, union ccb *ccb)
711 {
712 	struct sili_port *ap = ccb->ccb_h.sim_priv.entries[0].ptr;
713 
714 	if (ccb->ccb_h.func_code == XPT_SCAN_BUS) {
715 		ap->ap_flags &= ~AP_F_SCAN_RUNNING;
716 		if (ap->ap_flags & AP_F_SCAN_REQUESTED) {
717 			ap->ap_flags &= ~AP_F_SCAN_REQUESTED;
718 			sili_cam_rescan(ap);
719 		}
720 		ap->ap_flags |= AP_F_SCAN_COMPLETED;
721 		wakeup(&ap->ap_flags);
722 	}
723 	xpt_free_ccb(ccb);
724 }
725 
726 static void
727 sili_cam_rescan(struct sili_port *ap)
728 {
729 	struct cam_path *path;
730 	union ccb *ccb;
731 	int status;
732 	int i;
733 
734 	if (ap->ap_flags & AP_F_SCAN_RUNNING) {
735 		ap->ap_flags |= AP_F_SCAN_REQUESTED;
736 		return;
737 	}
738 	ap->ap_flags |= AP_F_SCAN_RUNNING;
739 	for (i = 0; i < SILI_MAX_PMPORTS; ++i) {
740 		ap->ap_ata[i].at_features |= ATA_PORT_F_RESCAN;
741 	}
742 
743 	status = xpt_create_path(&path, xpt_periph, cam_sim_path(ap->ap_sim),
744 				 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD);
745 	if (status != CAM_REQ_CMP)
746 		return;
747 
748 	ccb = xpt_alloc_ccb();
749 	xpt_setup_ccb(&ccb->ccb_h, path, 5);	/* 5 = low priority */
750 	ccb->ccb_h.func_code = XPT_ENG_EXEC;
751 	ccb->ccb_h.cbfcnp = sili_cam_rescan_callback;
752 	ccb->ccb_h.sim_priv.entries[0].ptr = ap;
753 	ccb->crcn.flags = CAM_FLAG_NONE;
754 	xpt_action_async(ccb);
755 }
756 
757 static void
758 sili_xpt_rescan(struct sili_port *ap)
759 {
760 	struct cam_path *path;
761 	union ccb *ccb;
762 	int status;
763 
764 	status = xpt_create_path(&path, xpt_periph, cam_sim_path(ap->ap_sim),
765 				 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD);
766 	if (status != CAM_REQ_CMP)
767 		return;
768 
769 	ccb = xpt_alloc_ccb();
770 	xpt_setup_ccb(&ccb->ccb_h, path, 5);	/* 5 = low priority */
771 	ccb->ccb_h.func_code = XPT_SCAN_BUS;
772 	ccb->ccb_h.cbfcnp = sili_cam_rescan_callback;
773 	ccb->ccb_h.sim_priv.entries[0].ptr = ap;
774 	ccb->crcn.flags = CAM_FLAG_NONE;
775 	xpt_action_async(ccb);
776 }
777 
778 /*
779  * Action function - dispatch command
780  */
781 static
782 void
783 sili_xpt_action(struct cam_sim *sim, union ccb *ccb)
784 {
785 	struct sili_port *ap;
786 	struct ata_port	 *at, *atx;
787 	struct ccb_hdr *ccbh;
788 
789 	/* XXX lock */
790 	ap = cam_sim_softc(sim);
791 	at = ap->ap_ata;
792 	atx = NULL;
793 	KKASSERT(ap != NULL);
794 	ccbh = &ccb->ccb_h;
795 
796 	/*
797 	 * Early failure checks.  These checks do not apply to XPT_PATH_INQ,
798 	 * otherwise the bus rescan will not remove the dead devices when
799 	 * unplugging a PM.
800 	 *
801 	 * For non-wildcards we have one target (0) and one lun (0),
802 	 * unless we have a port multiplier.
803 	 *
804 	 * A wildcard target indicates only the general bus is being
805 	 * probed.
806 	 *
807 	 * Calculate at and atx.  at is always non-NULL.  atx is only
808 	 * NULL for direct-attached devices.  It will be non-NULL for
809 	 * devices behind a port multiplier.
810 	 *
811 	 * XXX What do we do with a LUN wildcard?
812 	 */
813 	if (ccbh->target_id != CAM_TARGET_WILDCARD &&
814 	    ccbh->func_code != XPT_PATH_INQ) {
815 		if (ap->ap_type == ATA_PORT_T_NONE) {
816 			ccbh->status = CAM_DEV_NOT_THERE;
817 			xpt_done(ccb);
818 			return;
819 		}
820 		if (ccbh->target_id < 0 || ccbh->target_id >= ap->ap_pmcount) {
821 			ccbh->status = CAM_DEV_NOT_THERE;
822 			xpt_done(ccb);
823 			return;
824 		}
825 		at += ccbh->target_id;
826 		if (ap->ap_type == ATA_PORT_T_PM)
827 			atx = at;
828 
829 		if (ccbh->target_lun != CAM_LUN_WILDCARD && ccbh->target_lun) {
830 			ccbh->status = CAM_DEV_NOT_THERE;
831 			xpt_done(ccb);
832 			return;
833 		}
834 	}
835 
836 	/*
837 	 * Switch on the meta XPT command
838 	 */
839 	switch(ccbh->func_code) {
840 	case XPT_ENG_EXEC:
841 		/*
842 		 * This routine is called after a port multiplier has been
843 		 * probed.
844 		 */
845 		ccbh->status = CAM_REQ_CMP;
846 		sili_os_lock_port(ap);
847 		sili_port_state_machine(ap, 0);
848 		sili_os_unlock_port(ap);
849 		xpt_done(ccb);
850 		sili_xpt_rescan(ap);
851 		break;
852 	case XPT_PATH_INQ:
853 		/*
854 		 * This command always succeeds, otherwise the bus scan
855 		 * will not detach dead devices.
856 		 */
857 		ccb->cpi.version_num = 1;
858 		ccb->cpi.hba_inquiry = 0;
859 		ccb->cpi.target_sprt = 0;
860 		ccb->cpi.hba_misc = PIM_SEQSCAN;
861 		ccb->cpi.hba_eng_cnt = 0;
862 		bzero(ccb->cpi.vuhba_flags, sizeof(ccb->cpi.vuhba_flags));
863 		ccb->cpi.max_target = SILI_MAX_PMPORTS - 1;
864 		ccb->cpi.max_lun = 0;
865 		ccb->cpi.async_flags = 0;
866 		ccb->cpi.hpath_id = 0;
867 		ccb->cpi.initiator_id = SILI_MAX_PMPORTS - 1;
868 		ccb->cpi.unit_number = cam_sim_unit(sim);
869 		ccb->cpi.bus_id = cam_sim_bus(sim);
870 		ccb->cpi.base_transfer_speed = 150000;
871 		ccb->cpi.transport = XPORT_SATA;
872 		ccb->cpi.transport_version = 1;
873 		ccb->cpi.protocol = PROTO_SCSI;
874 		ccb->cpi.protocol_version = SCSI_REV_2;
875 
876 		ccbh->status = CAM_REQ_CMP;
877 		if (ccbh->target_id == CAM_TARGET_WILDCARD) {
878 			sili_os_lock_port(ap);
879 			sili_port_state_machine(ap, 0);
880 			sili_os_unlock_port(ap);
881 		} else {
882 			switch(sili_pread(ap, SILI_PREG_SSTS) &
883 			       SILI_PREG_SSTS_SPD) {
884 			case SILI_PREG_SSTS_SPD_GEN1:
885 				ccb->cpi.base_transfer_speed = 150000;
886 				break;
887 			case SILI_PREG_SSTS_SPD_GEN2:
888 				ccb->cpi.base_transfer_speed = 300000;
889 				break;
890 			default:
891 				/* unknown */
892 				ccb->cpi.base_transfer_speed = 1000;
893 				break;
894 			}
895 #if 0
896 			if (ap->ap_type == ATA_PORT_T_NONE)
897 				ccbh->status = CAM_DEV_NOT_THERE;
898 #endif
899 		}
900 		xpt_done(ccb);
901 		break;
902 	case XPT_RESET_DEV:
903 		sili_os_lock_port(ap);
904 		if (ap->ap_type == ATA_PORT_T_NONE) {
905 			ccbh->status = CAM_DEV_NOT_THERE;
906 		} else {
907 			sili_port_reset(ap, atx, 0);
908 			ccbh->status = CAM_REQ_CMP;
909 		}
910 		sili_os_unlock_port(ap);
911 		xpt_done(ccb);
912 		break;
913 	case XPT_RESET_BUS:
914 		sili_os_lock_port(ap);
915 		sili_port_reset(ap, NULL, 1);
916 		sili_os_unlock_port(ap);
917 		ccbh->status = CAM_REQ_CMP;
918 		xpt_done(ccb);
919 		break;
920 	case XPT_SET_TRAN_SETTINGS:
921 		ccbh->status = CAM_FUNC_NOTAVAIL;
922 		xpt_done(ccb);
923 		break;
924 	case XPT_GET_TRAN_SETTINGS:
925 		ccb->cts.protocol = PROTO_SCSI;
926 		ccb->cts.protocol_version = SCSI_REV_2;
927 		ccb->cts.transport = XPORT_SATA;
928 		ccb->cts.transport_version = XPORT_VERSION_UNSPECIFIED;
929 		ccb->cts.proto_specific.valid = 0;
930 		ccb->cts.xport_specific.valid = 0;
931 		ccbh->status = CAM_REQ_CMP;
932 		xpt_done(ccb);
933 		break;
934 	case XPT_CALC_GEOMETRY:
935 		cam_calc_geometry(&ccb->ccg, 1);
936 		xpt_done(ccb);
937 		break;
938 	case XPT_SCSI_IO:
939 		/*
940 		 * Our parallel startup code might have only probed through
941 		 * to the IDENT, so do the last step if necessary.
942 		 */
943 		if (at->at_probe == ATA_PROBE_NEED_IDENT)
944 			sili_cam_probe(ap, atx);
945 		if (at->at_probe != ATA_PROBE_GOOD) {
946 			ccbh->status = CAM_DEV_NOT_THERE;
947 			xpt_done(ccb);
948 			break;
949 		}
950 		switch(at->at_type) {
951 		case ATA_PORT_T_DISK:
952 			sili_xpt_scsi_disk_io(ap, atx, ccb);
953 			break;
954 		case ATA_PORT_T_ATAPI:
955 			sili_xpt_scsi_atapi_io(ap, atx, ccb);
956 			break;
957 		default:
958 			ccbh->status = CAM_REQ_INVALID;
959 			xpt_done(ccb);
960 			break;
961 		}
962 		break;
963 	default:
964 		ccbh->status = CAM_REQ_INVALID;
965 		xpt_done(ccb);
966 		break;
967 	}
968 }
969 
970 /*
971  * Poll function.
972  *
973  * Generally this function gets called heavily when interrupts might be
974  * non-operational, during a halt/reboot or panic.
975  */
976 static
977 void
978 sili_xpt_poll(struct cam_sim *sim)
979 {
980 	struct sili_port *ap;
981 
982 	ap = cam_sim_softc(sim);
983 	crit_enter();
984 	sili_os_lock_port(ap);
985 	sili_port_intr(ap, 1);
986 	sili_os_unlock_port(ap);
987 	crit_exit();
988 }
989 
990 /*
991  * Convert the SCSI command in ccb to an ata_xfer command in xa
992  * for ATA_PORT_T_DISK operations.  Set the completion function
993  * to convert the response back, then dispatch to the OpenBSD SILI
994  * layer.
995  *
996  * SILI DISK commands only support a limited command set, and we
997  * fake additional commands to make it play nice with the CAM subsystem.
998  */
999 static
1000 void
1001 sili_xpt_scsi_disk_io(struct sili_port *ap, struct ata_port *atx,
1002 		      union ccb *ccb)
1003 {
1004 	struct ccb_hdr *ccbh;
1005 	struct ccb_scsiio *csio;
1006 	struct ata_xfer *xa;
1007 	struct ata_port	*at;
1008 	struct ata_fis_h2d *fis;
1009 	struct ata_pass_12 *atp12;
1010 	struct ata_pass_16 *atp16;
1011 	scsi_cdb_t cdb;
1012 	union scsi_data *rdata;
1013 	int rdata_len;
1014 	u_int64_t capacity;
1015 	u_int64_t lba;
1016 	u_int32_t count;
1017 
1018 	ccbh = &ccb->csio.ccb_h;
1019 	csio = &ccb->csio;
1020 	at = atx ? atx : &ap->ap_ata[0];
1021 
1022 	/*
1023 	 * XXX not passing NULL at for direct attach!
1024 	 */
1025 	xa = sili_ata_get_xfer(ap, atx);
1026 	rdata = (void *)csio->data_ptr;
1027 	rdata_len = csio->dxfer_len;
1028 
1029 	/*
1030 	 * Build the FIS or process the csio to completion.
1031 	 */
1032 	cdb = (void *)((ccbh->flags & CAM_CDB_POINTER) ?
1033 			csio->cdb_io.cdb_ptr : csio->cdb_io.cdb_bytes);
1034 
1035 	switch(cdb->generic.opcode) {
1036 	case REQUEST_SENSE:
1037 		/*
1038 		 * Auto-sense everything, so explicit sense requests
1039 		 * return no-sense.
1040 		 */
1041 		ccbh->status = CAM_SCSI_STATUS_ERROR;
1042 		break;
1043 	case INQUIRY:
1044 		/*
1045 		 * Inquiry supported features
1046 		 *
1047 		 * [opcode, byte2, page_code, length, control]
1048 		 */
1049 		if (cdb->inquiry.byte2 & SI_EVPD) {
1050 			sili_xpt_page_inquiry(ap, at, ccb);
1051 		} else {
1052 			bzero(rdata, rdata_len);
1053 			if (rdata_len < SHORT_INQUIRY_LENGTH) {
1054 				ccbh->status = CAM_CCB_LEN_ERR;
1055 				break;
1056 			}
1057 			if (rdata_len > sizeof(rdata->inquiry_data))
1058 				rdata_len = sizeof(rdata->inquiry_data);
1059 			rdata->inquiry_data.device = T_DIRECT;
1060 			rdata->inquiry_data.version = SCSI_REV_SPC2;
1061 			rdata->inquiry_data.response_format = 2;
1062 			rdata->inquiry_data.additional_length = 32;
1063 			bcopy("SATA    ", rdata->inquiry_data.vendor, 8);
1064 			bcopy(at->at_identify.model,
1065 			      rdata->inquiry_data.product,
1066 			      sizeof(rdata->inquiry_data.product));
1067 			bcopy(at->at_identify.firmware,
1068 			      rdata->inquiry_data.revision,
1069 			      sizeof(rdata->inquiry_data.revision));
1070 			ccbh->status = CAM_REQ_CMP;
1071 		}
1072 		break;
1073 	case READ_CAPACITY_16:
1074 		if (cdb->read_capacity_16.service_action != SRC16_SERVICE_ACTION) {
1075 			ccbh->status = CAM_REQ_INVALID;
1076 			break;
1077 		}
1078 		if (rdata_len < sizeof(rdata->read_capacity_data_16)) {
1079 			ccbh->status = CAM_CCB_LEN_ERR;
1080 			break;
1081 		}
1082 		/* fall through */
1083 	case READ_CAPACITY:
1084 		if (rdata_len < sizeof(rdata->read_capacity_data)) {
1085 			ccbh->status = CAM_CCB_LEN_ERR;
1086 			break;
1087 		}
1088 
1089 		capacity = at->at_capacity;
1090 
1091 		bzero(rdata, rdata_len);
1092 		if (cdb->generic.opcode == READ_CAPACITY) {
1093 			rdata_len = sizeof(rdata->read_capacity_data);
1094 			if (capacity > 0xFFFFFFFFU) {
1095 				/*
1096 				 * Set capacity to 0 so maxsector winds up
1097 				 * being 0xffffffff in CAM in order to trigger
1098 				 * DA_STATE_PROBE2.
1099 				 */
1100 				capacity = 0;
1101 			}
1102 			bzero(&rdata->read_capacity_data, rdata_len);
1103 			scsi_ulto4b((u_int32_t)capacity - 1,
1104 				    rdata->read_capacity_data.addr);
1105 			scsi_ulto4b(512, rdata->read_capacity_data.length);
1106 		} else {
1107 			rdata_len = sizeof(rdata->read_capacity_data_16);
1108 			bzero(&rdata->read_capacity_data_16, rdata_len);
1109 			scsi_u64to8b(capacity - 1,
1110 				     rdata->read_capacity_data_16.addr);
1111 			scsi_ulto4b(512, rdata->read_capacity_data_16.length);
1112 		}
1113 		ccbh->status = CAM_REQ_CMP;
1114 		break;
1115 	case SYNCHRONIZE_CACHE:
1116 		/*
1117 		 * Synchronize cache.  Specification says this can take
1118 		 * greater then 30 seconds so give it at least 45.
1119 		 */
1120 		fis = xa->fis;
1121 		fis->flags = ATA_H2D_FLAGS_CMD;
1122 		fis->command = ATA_C_FLUSH_CACHE;
1123 		fis->device = 0;
1124 		if (xa->timeout < 45000)
1125 			xa->timeout = 45000;
1126 		xa->datalen = 0;
1127 		xa->flags = ATA_F_READ;
1128 		xa->complete = sili_ata_complete_disk_synchronize_cache;
1129 		break;
1130 	case TEST_UNIT_READY:
1131 	case START_STOP_UNIT:
1132 	case PREVENT_ALLOW:
1133 		/*
1134 		 * Just silently return success
1135 		 */
1136 		ccbh->status = CAM_REQ_CMP;
1137 		rdata_len = 0;
1138 		break;
1139 	case ATA_PASS_12:
1140 		atp12 = &cdb->ata_pass_12;
1141 		fis = xa->fis;
1142 		/*
1143 		 * Figure out the flags to be used, depending on the
1144 		 * direction of the CAM request.
1145 		 */
1146 		switch (ccbh->flags & CAM_DIR_MASK) {
1147 		case CAM_DIR_IN:
1148 			xa->flags = ATA_F_READ;
1149 			break;
1150 		case CAM_DIR_OUT:
1151 			xa->flags = ATA_F_WRITE;
1152 			break;
1153 		default:
1154 			xa->flags = 0;
1155 		}
1156 		xa->flags |= ATA_F_POLL | ATA_F_EXCLUSIVE;
1157 		xa->data = csio->data_ptr;
1158 		xa->datalen = csio->dxfer_len;
1159 		xa->complete = sili_ata_complete_disk_rw;
1160 		xa->timeout = ccbh->timeout;
1161 
1162 		/*
1163 		 * Populate the fis from the information we received through CAM
1164 		 * ATA passthrough.
1165 		 */
1166 		fis->flags = ATA_H2D_FLAGS_CMD;	/* maybe also atp12->flags ? */
1167 		fis->features = atp12->features;
1168 		fis->sector_count = atp12->sector_count;
1169 		fis->lba_low = atp12->lba_low;
1170 		fis->lba_mid = atp12->lba_mid;
1171 		fis->lba_high = atp12->lba_high;
1172 		fis->device = atp12->device;	/* maybe always 0? */
1173 		fis->command = atp12->command;
1174 		fis->control = atp12->control;
1175 
1176 		/*
1177 		 * Mark as in progress so it is sent to the device.
1178 		 */
1179 		ccbh->status = CAM_REQ_INPROG;
1180 		break;
1181 	case ATA_PASS_16:
1182 		atp16 = &cdb->ata_pass_16;
1183 		fis = xa->fis;
1184 		/*
1185 		 * Figure out the flags to be used, depending on the direction of the
1186 		 * CAM request.
1187 		 */
1188 		switch (ccbh->flags & CAM_DIR_MASK) {
1189 		case CAM_DIR_IN:
1190 			xa->flags = ATA_F_READ;
1191 			break;
1192 		case CAM_DIR_OUT:
1193 			xa->flags = ATA_F_WRITE;
1194 			break;
1195 		default:
1196 			xa->flags = 0;
1197 		}
1198 		xa->flags |= ATA_F_POLL | ATA_F_EXCLUSIVE;
1199 		xa->data = csio->data_ptr;
1200 		xa->datalen = csio->dxfer_len;
1201 		xa->complete = sili_ata_complete_disk_rw;
1202 		xa->timeout = ccbh->timeout;
1203 
1204 		/*
1205 		 * Populate the fis from the information we received through CAM
1206 		 * ATA passthrough.
1207 		 */
1208 		fis->flags = ATA_H2D_FLAGS_CMD;	/* maybe also atp16->flags ? */
1209 		fis->features = atp16->features;
1210 		fis->features_exp = atp16->features_ext;
1211 		fis->sector_count = atp16->sector_count;
1212 		fis->sector_count_exp = atp16->sector_count_ext;
1213 		fis->lba_low = atp16->lba_low;
1214 		fis->lba_low_exp = atp16->lba_low_ext;
1215 		fis->lba_mid = atp16->lba_mid;
1216 		fis->lba_mid_exp = atp16->lba_mid_ext;
1217 		fis->lba_high = atp16->lba_high;
1218 		fis->lba_mid_exp = atp16->lba_mid_ext;
1219 		fis->device = atp16->device;	/* maybe always 0? */
1220 		fis->command = atp16->command;
1221 
1222 		/*
1223 		 * Mark as in progress so it is sent to the device.
1224 		 */
1225 		ccbh->status = CAM_REQ_INPROG;
1226 		break;
1227 	default:
1228 		switch(cdb->generic.opcode) {
1229 		case READ_6:
1230 			lba = scsi_3btoul(cdb->rw_6.addr) & 0x1FFFFF;
1231 			count = cdb->rw_6.length ? cdb->rw_6.length : 0x100;
1232 			xa->flags = ATA_F_READ;
1233 			break;
1234 		case READ_10:
1235 			lba = scsi_4btoul(cdb->rw_10.addr);
1236 			count = scsi_2btoul(cdb->rw_10.length);
1237 			xa->flags = ATA_F_READ;
1238 			break;
1239 		case READ_12:
1240 			lba = scsi_4btoul(cdb->rw_12.addr);
1241 			count = scsi_4btoul(cdb->rw_12.length);
1242 			xa->flags = ATA_F_READ;
1243 			break;
1244 		case READ_16:
1245 			lba = scsi_8btou64(cdb->rw_16.addr);
1246 			count = scsi_4btoul(cdb->rw_16.length);
1247 			xa->flags = ATA_F_READ;
1248 			break;
1249 		case WRITE_6:
1250 			lba = scsi_3btoul(cdb->rw_6.addr) & 0x1FFFFF;
1251 			count = cdb->rw_6.length ? cdb->rw_6.length : 0x100;
1252 			xa->flags = ATA_F_WRITE;
1253 			break;
1254 		case WRITE_10:
1255 			lba = scsi_4btoul(cdb->rw_10.addr);
1256 			count = scsi_2btoul(cdb->rw_10.length);
1257 			xa->flags = ATA_F_WRITE;
1258 			break;
1259 		case WRITE_12:
1260 			lba = scsi_4btoul(cdb->rw_12.addr);
1261 			count = scsi_4btoul(cdb->rw_12.length);
1262 			xa->flags = ATA_F_WRITE;
1263 			break;
1264 		case WRITE_16:
1265 			lba = scsi_8btou64(cdb->rw_16.addr);
1266 			count = scsi_4btoul(cdb->rw_16.length);
1267 			xa->flags = ATA_F_WRITE;
1268 			break;
1269 		default:
1270 			ccbh->status = CAM_REQ_INVALID;
1271 			break;
1272 		}
1273 		if (ccbh->status != CAM_REQ_INPROG)
1274 			break;
1275 
1276 		fis = xa->fis;
1277 		fis->flags = ATA_H2D_FLAGS_CMD;
1278 		fis->lba_low = (u_int8_t)lba;
1279 		fis->lba_mid = (u_int8_t)(lba >> 8);
1280 		fis->lba_high = (u_int8_t)(lba >> 16);
1281 		fis->device = ATA_H2D_DEVICE_LBA;
1282 
1283 		/*
1284 		 * NCQ only for direct-attached disks, do not currently
1285 		 * try to use NCQ with port multipliers.
1286 		 *
1287 		 * XXX fixme SII chip can do NCQ w/ port multipliers.
1288 		 */
1289 		if (at->at_ncqdepth > 1 &&
1290 		    at->at_type == ATA_PORT_T_DISK &&
1291 		    (ap->ap_sc->sc_flags & SILI_F_NCQ) &&
1292 		    (ccbh->flags & CAM_POLLED) == 0) {
1293 			/*
1294 			 * Use NCQ - always uses 48 bit addressing
1295 			 */
1296 			xa->flags |= ATA_F_NCQ;
1297 			fis->command = (xa->flags & ATA_F_WRITE) ?
1298 					ATA_C_WRITE_FPDMA : ATA_C_READ_FPDMA;
1299 			fis->lba_low_exp = (u_int8_t)(lba >> 24);
1300 			fis->lba_mid_exp = (u_int8_t)(lba >> 32);
1301 			fis->lba_high_exp = (u_int8_t)(lba >> 40);
1302 			fis->sector_count = xa->tag << 3;
1303 			fis->features = (u_int8_t)count;
1304 			fis->features_exp = (u_int8_t)(count >> 8);
1305 		} else if (count > 0x100 || lba > 0x0FFFFFFFU) {
1306 			/*
1307 			 * Use LBA48
1308 			 */
1309 			fis->command = (xa->flags & ATA_F_WRITE) ?
1310 					ATA_C_WRITEDMA_EXT : ATA_C_READDMA_EXT;
1311 			fis->lba_low_exp = (u_int8_t)(lba >> 24);
1312 			fis->lba_mid_exp = (u_int8_t)(lba >> 32);
1313 			fis->lba_high_exp = (u_int8_t)(lba >> 40);
1314 			fis->sector_count = (u_int8_t)count;
1315 			fis->sector_count_exp = (u_int8_t)(count >> 8);
1316 		} else {
1317 			/*
1318 			 * Use LBA
1319 			 *
1320 			 * NOTE: 256 sectors is supported, stored as 0.
1321 			 */
1322 			fis->command = (xa->flags & ATA_F_WRITE) ?
1323 					ATA_C_WRITEDMA : ATA_C_READDMA;
1324 			fis->device |= (u_int8_t)(lba >> 24) & 0x0F;
1325 			fis->sector_count = (u_int8_t)count;
1326 		}
1327 
1328 		xa->data = csio->data_ptr;
1329 		xa->datalen = csio->dxfer_len;
1330 		xa->complete = sili_ata_complete_disk_rw;
1331 		xa->timeout = ccbh->timeout;	/* milliseconds */
1332 		if (ccbh->flags & CAM_POLLED)
1333 			xa->flags |= ATA_F_POLL;
1334 		break;
1335 	}
1336 
1337 	/*
1338 	 * If the request is still in progress the xa and FIS have
1339 	 * been set up (except for the PM target), and must be dispatched.
1340 	 * Otherwise the request was completed.
1341 	 */
1342 	if (ccbh->status == CAM_REQ_INPROG) {
1343 		KKASSERT(xa->complete != NULL);
1344 		xa->atascsi_private = ccb;
1345 		ccb->ccb_h.sim_priv.entries[0].ptr = ap;
1346 		sili_os_lock_port(ap);
1347 		xa->fis->flags |= at->at_target;
1348 		sili_ata_cmd(xa);
1349 		sili_os_unlock_port(ap);
1350 	} else {
1351 		sili_ata_put_xfer(xa);
1352 		xpt_done(ccb);
1353 	}
1354 }
1355 
1356 /*
1357  * Convert the SCSI command in ccb to an ata_xfer command in xa
1358  * for ATA_PORT_T_ATAPI operations.  Set the completion function
1359  * to convert the response back, then dispatch to the OpenBSD SILI
1360  * layer.
1361  */
1362 static
1363 void
1364 sili_xpt_scsi_atapi_io(struct sili_port *ap, struct ata_port *atx,
1365 			union ccb *ccb)
1366 {
1367 	struct ccb_hdr *ccbh;
1368 	struct ccb_scsiio *csio;
1369 	struct ata_xfer *xa;
1370 	struct ata_fis_h2d *fis;
1371 	scsi_cdb_t cdbs;
1372 	scsi_cdb_t cdbd;
1373 	int flags;
1374 	struct ata_port	*at;
1375 
1376 	ccbh = &ccb->csio.ccb_h;
1377 	csio = &ccb->csio;
1378 	at = atx ? atx : &ap->ap_ata[0];
1379 
1380 	switch (ccbh->flags & CAM_DIR_MASK) {
1381 	case CAM_DIR_IN:
1382 		flags = ATA_F_PACKET | ATA_F_READ;
1383 		break;
1384 	case CAM_DIR_OUT:
1385 		flags = ATA_F_PACKET | ATA_F_WRITE;
1386 		break;
1387 	case CAM_DIR_NONE:
1388 		flags = ATA_F_PACKET;
1389 		break;
1390 	default:
1391 		ccbh->status = CAM_REQ_INVALID;
1392 		xpt_done(ccb);
1393 		return;
1394 		/* NOT REACHED */
1395 	}
1396 
1397 	/*
1398 	 * Special handling to get the rfis back into host memory while
1399 	 * still allowing the chip to run commands in parallel to
1400 	 * ATAPI devices behind a PM.
1401 	 */
1402 	flags |= ATA_F_AUTOSENSE;
1403 
1404 	/*
1405 	 * The command has to fit in the packet command buffer.
1406 	 */
1407 	if (csio->cdb_len < 6 || csio->cdb_len > 16) {
1408 		ccbh->status = CAM_CCB_LEN_ERR;
1409 		xpt_done(ccb);
1410 		return;
1411 	}
1412 
1413 	/*
1414 	 * Initialize the XA and FIS.  It is unclear how much of
1415 	 * this has to mimic the equivalent ATA command.
1416 	 *
1417 	 * XXX not passing NULL at for direct attach!
1418 	 */
1419 	xa = sili_ata_get_xfer(ap, atx);
1420 	fis = xa->fis;
1421 
1422 	fis->flags = ATA_H2D_FLAGS_CMD | at->at_target;
1423 	fis->command = ATA_C_PACKET;
1424 	fis->device = ATA_H2D_DEVICE_LBA;
1425 	fis->sector_count = xa->tag << 3;
1426 	if (flags & (ATA_F_READ | ATA_F_WRITE)) {
1427 		if (flags & ATA_F_WRITE) {
1428 			fis->features = ATA_H2D_FEATURES_DMA |
1429 					ATA_H2D_FEATURES_DIR_WRITE;
1430 		} else {
1431 			fis->features = ATA_H2D_FEATURES_DMA |
1432 					ATA_H2D_FEATURES_DIR_READ;
1433 		}
1434 	} else {
1435 		fis->lba_mid = 0;
1436 		fis->lba_high = 0;
1437 	}
1438 	fis->control = ATA_FIS_CONTROL_4BIT;
1439 
1440 	xa->flags = flags;
1441 	xa->data = csio->data_ptr;
1442 	xa->datalen = csio->dxfer_len;
1443 	xa->timeout = ccbh->timeout;	/* milliseconds */
1444 
1445 	if (ccbh->flags & CAM_POLLED)
1446 		xa->flags |= ATA_F_POLL;
1447 
1448 	/*
1449 	 * Copy the cdb to the packetcmd buffer in the FIS using a
1450 	 * convenient pointer in the xa.
1451 	 */
1452 	cdbs = (void *)((ccbh->flags & CAM_CDB_POINTER) ?
1453 			csio->cdb_io.cdb_ptr : csio->cdb_io.cdb_bytes);
1454 	bcopy(cdbs, xa->packetcmd, csio->cdb_len);
1455 
1456 #if 0
1457 	kprintf("opcode %d cdb_len %d dxfer_len %d\n",
1458 		cdbs->generic.opcode,
1459 		csio->cdb_len, csio->dxfer_len);
1460 #endif
1461 
1462 	/*
1463 	 * Some ATAPI commands do not actually follow the SCSI standard.
1464 	 */
1465 	cdbd = (void *)xa->packetcmd;
1466 
1467 	switch(cdbd->generic.opcode) {
1468 	case REQUEST_SENSE:
1469 		/*
1470 		 * Force SENSE requests to the ATAPI sense length.
1471 		 *
1472 		 * It is unclear if this is needed or not.
1473 		 */
1474 		if (cdbd->sense.length == SSD_FULL_SIZE) {
1475 			kprintf("%s: Shortening sense request\n",
1476 				PORTNAME(ap));
1477 			cdbd->sense.length = offsetof(struct scsi_sense_data,
1478 						      extra_bytes[0]);
1479 		}
1480 		break;
1481 	case INQUIRY:
1482 		/*
1483 		 * Some ATAPI devices can't handle long inquiry lengths,
1484 		 * don't ask me why.  Truncate the inquiry length.
1485 		 */
1486 		if (cdbd->inquiry.page_code == 0 &&
1487 		    cdbd->inquiry.length > SHORT_INQUIRY_LENGTH) {
1488 			cdbd->inquiry.length = SHORT_INQUIRY_LENGTH;
1489 		}
1490 		break;
1491 	case READ_6:
1492 	case WRITE_6:
1493 		/*
1494 		 * Convert *_6 to *_10 commands.  Most ATAPI devices
1495 		 * cannot handle the SCSI READ_6 and WRITE_6 commands.
1496 		 */
1497 		cdbd->rw_10.opcode |= 0x20;
1498 		cdbd->rw_10.byte2 = 0;
1499 		cdbd->rw_10.addr[0] = cdbs->rw_6.addr[0] & 0x1F;
1500 		cdbd->rw_10.addr[1] = cdbs->rw_6.addr[1];
1501 		cdbd->rw_10.addr[2] = cdbs->rw_6.addr[2];
1502 		cdbd->rw_10.addr[3] = 0;
1503 		cdbd->rw_10.reserved = 0;
1504 		cdbd->rw_10.length[0] = 0;
1505 		cdbd->rw_10.length[1] = cdbs->rw_6.length;
1506 		cdbd->rw_10.control = cdbs->rw_6.control;
1507 		break;
1508 	default:
1509 		break;
1510 	}
1511 
1512 	/*
1513 	 * And dispatch
1514 	 */
1515 	xa->complete = sili_atapi_complete_cmd;
1516 	xa->atascsi_private = ccb;
1517 	ccb->ccb_h.sim_priv.entries[0].ptr = ap;
1518 	sili_os_lock_port(ap);
1519 	sili_ata_cmd(xa);
1520 	sili_os_unlock_port(ap);
1521 }
1522 
1523 /*
1524  * Simulate page inquiries for disk attachments.
1525  */
1526 static
1527 void
1528 sili_xpt_page_inquiry(struct sili_port *ap, struct ata_port *at, union ccb *ccb)
1529 {
1530 	union {
1531 		struct scsi_vpd_supported_page_list	list;
1532 		struct scsi_vpd_unit_serial_number	serno;
1533 		struct scsi_vpd_unit_devid		devid;
1534 		char					buf[256];
1535 	} *page;
1536 	scsi_cdb_t cdb;
1537 	int i;
1538 	int j;
1539 	int len;
1540 
1541 	page = kmalloc(sizeof(*page), M_DEVBUF, M_WAITOK | M_ZERO);
1542 
1543 	cdb = (void *)((ccb->ccb_h.flags & CAM_CDB_POINTER) ?
1544 			ccb->csio.cdb_io.cdb_ptr : ccb->csio.cdb_io.cdb_bytes);
1545 
1546 	switch(cdb->inquiry.page_code) {
1547 	case SVPD_SUPPORTED_PAGE_LIST:
1548 		i = 0;
1549 		page->list.device = T_DIRECT;
1550 		page->list.page_code = SVPD_SUPPORTED_PAGE_LIST;
1551 		page->list.list[i++] = SVPD_SUPPORTED_PAGE_LIST;
1552 		page->list.list[i++] = SVPD_UNIT_SERIAL_NUMBER;
1553 		page->list.list[i++] = SVPD_UNIT_DEVID;
1554 		page->list.length = i;
1555 		len = offsetof(struct scsi_vpd_supported_page_list, list[3]);
1556 		break;
1557 	case SVPD_UNIT_SERIAL_NUMBER:
1558 		i = 0;
1559 		j = sizeof(at->at_identify.serial);
1560 		for (i = 0; i < j && at->at_identify.serial[i] == ' '; ++i)
1561 			;
1562 		while (j > i && at->at_identify.serial[j-1] == ' ')
1563 			--j;
1564 		page->serno.device = T_DIRECT;
1565 		page->serno.page_code = SVPD_UNIT_SERIAL_NUMBER;
1566 		page->serno.length = j - i;
1567 		bcopy(at->at_identify.serial + i,
1568 		      page->serno.serial_num, j - i);
1569 		len = offsetof(struct scsi_vpd_unit_serial_number,
1570 			       serial_num[j-i]);
1571 		break;
1572 	case SVPD_UNIT_DEVID:
1573 		/* fall through for now */
1574 	default:
1575 		ccb->ccb_h.status = CAM_FUNC_NOTAVAIL;
1576 		len = 0;
1577 		break;
1578 	}
1579 	if (ccb->ccb_h.status == CAM_REQ_INPROG) {
1580 		if (len <= ccb->csio.dxfer_len) {
1581 			ccb->ccb_h.status = CAM_REQ_CMP;
1582 			bzero(ccb->csio.data_ptr, ccb->csio.dxfer_len);
1583 			bcopy(page, ccb->csio.data_ptr, len);
1584 			ccb->csio.resid = ccb->csio.dxfer_len - len;
1585 		} else {
1586 			ccb->ccb_h.status = CAM_CCB_LEN_ERR;
1587 		}
1588 	}
1589 	kfree(page, M_DEVBUF);
1590 }
1591 
1592 /*
1593  * Completion function for ATA_PORT_T_DISK cache synchronization.
1594  */
1595 static
1596 void
1597 sili_ata_complete_disk_synchronize_cache(struct ata_xfer *xa)
1598 {
1599 	union ccb *ccb = xa->atascsi_private;
1600 	struct ccb_hdr *ccbh = &ccb->ccb_h;
1601 	struct sili_port *ap = ccb->ccb_h.sim_priv.entries[0].ptr;
1602 
1603 	switch(xa->state) {
1604 	case ATA_S_COMPLETE:
1605 		ccbh->status = CAM_REQ_CMP;
1606 		ccb->csio.scsi_status = SCSI_STATUS_OK;
1607 		break;
1608 	case ATA_S_ERROR:
1609 		kprintf("%s: synchronize_cache: error\n",
1610 			ATANAME(ap, xa->at));
1611 		ccbh->status = CAM_SCSI_STATUS_ERROR | CAM_AUTOSNS_VALID;
1612 		ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND;
1613 		sili_ata_dummy_sense(&ccb->csio.sense_data);
1614 		break;
1615 	case ATA_S_TIMEOUT:
1616 		kprintf("%s: synchronize_cache: timeout\n",
1617 			ATANAME(ap, xa->at));
1618 		ccbh->status = CAM_CMD_TIMEOUT;
1619 		break;
1620 	default:
1621 		kprintf("%s: synchronize_cache: unknown state %d\n",
1622 			ATANAME(ap, xa->at), xa->state);
1623 		ccbh->status = CAM_REQ_CMP_ERR;
1624 		break;
1625 	}
1626 	sili_ata_put_xfer(xa);
1627 	/*sili_os_unlock_port(ap);*/
1628 	xpt_done(ccb);
1629 	/*sili_os_lock_port(ap);*/
1630 }
1631 
1632 /*
1633  * Completion function for ATA_PORT_T_DISK I/O
1634  */
1635 static
1636 void
1637 sili_ata_complete_disk_rw(struct ata_xfer *xa)
1638 {
1639 	union ccb *ccb = xa->atascsi_private;
1640 	struct ccb_hdr *ccbh = &ccb->ccb_h;
1641 	struct sili_port *ap = ccb->ccb_h.sim_priv.entries[0].ptr;
1642 
1643 	switch(xa->state) {
1644 	case ATA_S_COMPLETE:
1645 		ccbh->status = CAM_REQ_CMP;
1646 		ccb->csio.scsi_status = SCSI_STATUS_OK;
1647 		break;
1648 	case ATA_S_ERROR:
1649 		kprintf("%s: disk_rw: error\n", ATANAME(ap, xa->at));
1650 		ccbh->status = CAM_SCSI_STATUS_ERROR | CAM_AUTOSNS_VALID;
1651 		ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND;
1652 		sili_ata_dummy_sense(&ccb->csio.sense_data);
1653 		break;
1654 	case ATA_S_TIMEOUT:
1655 		kprintf("%s: disk_rw: timeout\n", ATANAME(ap, xa->at));
1656 		ccbh->status = CAM_CMD_TIMEOUT;
1657 		ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND;
1658 		sili_ata_dummy_sense(&ccb->csio.sense_data);
1659 		break;
1660 	default:
1661 		kprintf("%s: disk_rw: unknown state %d\n",
1662 			ATANAME(ap, xa->at), xa->state);
1663 		ccbh->status = CAM_REQ_CMP_ERR;
1664 		break;
1665 	}
1666 	ccb->csio.resid = xa->resid;
1667 	sili_ata_put_xfer(xa);
1668 	/*sili_os_unlock_port(ap);*/
1669 	xpt_done(ccb);
1670 	/*sili_os_lock_port(ap);*/
1671 }
1672 
1673 /*
1674  * Completion function for ATA_PORT_T_ATAPI I/O
1675  *
1676  * Sense data is returned in the rfis.
1677  */
1678 static
1679 void
1680 sili_atapi_complete_cmd(struct ata_xfer *xa)
1681 {
1682 	union ccb *ccb = xa->atascsi_private;
1683 	struct ccb_hdr *ccbh = &ccb->ccb_h;
1684 	struct sili_port *ap = ccb->ccb_h.sim_priv.entries[0].ptr;
1685 	scsi_cdb_t cdb;
1686 
1687 	cdb = (void *)((ccb->ccb_h.flags & CAM_CDB_POINTER) ?
1688 			ccb->csio.cdb_io.cdb_ptr : ccb->csio.cdb_io.cdb_bytes);
1689 
1690 	switch(xa->state) {
1691 	case ATA_S_COMPLETE:
1692 		ccbh->status = CAM_REQ_CMP;
1693 		ccb->csio.scsi_status = SCSI_STATUS_OK;
1694 		break;
1695 	case ATA_S_ERROR:
1696 		ccbh->status = CAM_SCSI_STATUS_ERROR;
1697 		ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND;
1698 		sili_ata_atapi_sense(xa->rfis, &ccb->csio.sense_data);
1699 		break;
1700 	case ATA_S_TIMEOUT:
1701 		kprintf("%s: cmd %d: timeout\n",
1702 			PORTNAME(ap), cdb->generic.opcode);
1703 		ccbh->status = CAM_CMD_TIMEOUT;
1704 		ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND;
1705 		sili_ata_dummy_sense(&ccb->csio.sense_data);
1706 		break;
1707 	default:
1708 		kprintf("%s: cmd %d: unknown state %d\n",
1709 			PORTNAME(ap), cdb->generic.opcode, xa->state);
1710 		ccbh->status = CAM_REQ_CMP_ERR;
1711 		break;
1712 	}
1713 	ccb->csio.resid = xa->resid;
1714 	sili_ata_put_xfer(xa);
1715 	/*sili_os_unlock_port(ap);*/
1716 	xpt_done(ccb);
1717 	/*sili_os_lock_port(ap);*/
1718 }
1719 
1720 /*
1721  * Construct dummy sense data for errors on DISKs
1722  */
1723 static
1724 void
1725 sili_ata_dummy_sense(struct scsi_sense_data *sense_data)
1726 {
1727 	sense_data->error_code = SSD_ERRCODE_VALID | SSD_CURRENT_ERROR;
1728 	sense_data->segment = 0;
1729 	sense_data->flags = SSD_KEY_MEDIUM_ERROR;
1730 	sense_data->info[0] = 0;
1731 	sense_data->info[1] = 0;
1732 	sense_data->info[2] = 0;
1733 	sense_data->info[3] = 0;
1734 	sense_data->extra_len = 0;
1735 }
1736 
1737 /*
1738  * Construct atapi sense data for errors on ATAPI
1739  *
1740  * The ATAPI sense data is stored in the passed rfis and must be converted
1741  * to SCSI sense data.
1742  */
1743 static
1744 void
1745 sili_ata_atapi_sense(struct ata_fis_d2h *rfis,
1746 		     struct scsi_sense_data *sense_data)
1747 {
1748 	sense_data->error_code = SSD_ERRCODE_VALID | SSD_CURRENT_ERROR;
1749 	sense_data->segment = 0;
1750 	sense_data->flags = (rfis->error & 0xF0) >> 4;
1751 	if (rfis->error & 0x04)
1752 		sense_data->flags |= SSD_KEY_ILLEGAL_REQUEST;
1753 	if (rfis->error & 0x02)
1754 		sense_data->flags |= SSD_EOM;
1755 	if (rfis->error & 0x01)
1756 		sense_data->flags |= SSD_ILI;
1757 	sense_data->info[0] = 0;
1758 	sense_data->info[1] = 0;
1759 	sense_data->info[2] = 0;
1760 	sense_data->info[3] = 0;
1761 	sense_data->extra_len = 0;
1762 }
1763 
1764 static
1765 void
1766 sili_strip_string(const char **basep, int *lenp)
1767 {
1768 	const char *base = *basep;
1769 	int len = *lenp;
1770 
1771 	while (len && (*base == 0 || *base == ' ')) {
1772 		--len;
1773 		++base;
1774 	}
1775 	while (len && (base[len-1] == 0 || base[len-1] == ' '))
1776 		--len;
1777 	*basep = base;
1778 	*lenp = len;
1779 }
1780