2 * Copyright (c) 2009 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
37 * Permission to use, copy, modify, and distribute this software for any
38 * purpose with or without fee is hereby granted, provided that the above
39 * copyright notice and this permission notice appear in all copies.
41 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
42 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
43 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
44 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
45 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
46 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
47 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
49 * $OpenBSD: atascsi.c,v 1.64 2009/02/16 21:19:06 miod Exp $
53 * Implement each SATA port as its own SCSI bus on CAM. This way we can
54 * implement future port multiplier features as individual devices on the
57 * Much of the cdb<->xa conversion code was taken from OpenBSD, the rest
58 * was written natively for DragonFly.
63 const char *ScsiTypeArray
[32] = {
98 static void ahci_xpt_action(struct cam_sim
*sim
, union ccb
*ccb
);
99 static void ahci_xpt_poll(struct cam_sim
*sim
);
100 static void ahci_xpt_scsi_disk_io(struct ahci_port
*ap
,
101 struct ata_port
*at
, union ccb
*ccb
);
102 static void ahci_xpt_scsi_atapi_io(struct ahci_port
*ap
,
103 struct ata_port
*at
, union ccb
*ccb
);
105 static void ahci_ata_complete_disk_rw(struct ata_xfer
*xa
);
106 static void ahci_ata_complete_disk_synchronize_cache(struct ata_xfer
*xa
);
107 static void ahci_atapi_complete_cmd(struct ata_xfer
*xa
);
108 static void ahci_ata_dummy_sense(struct scsi_sense_data
*sense_data
);
109 static void ahci_ata_atapi_sense(struct ata_fis_d2h
*rfis
,
110 struct scsi_sense_data
*sense_data
);
112 static int ahci_cam_probe_disk(struct ahci_port
*ap
, struct ata_port
*at
);
113 static int ahci_cam_probe_atapi(struct ahci_port
*ap
, struct ata_port
*at
);
114 static void ahci_ata_dummy_done(struct ata_xfer
*xa
);
115 static void ata_fix_identify(struct ata_identify
*id
);
116 static void ahci_cam_rescan(struct ahci_port
*ap
);
119 ahci_cam_attach(struct ahci_port
*ap
)
121 struct cam_devq
*devq
;
127 * We want at least one ccb to be available for error processing
128 * so don't let CAM use more then ncmds - 1.
130 unit
= device_get_unit(ap
->ap_sc
->sc_dev
);
131 if (ap
->ap_sc
->sc_ncmds
> 1)
132 devq
= cam_simq_alloc(ap
->ap_sc
->sc_ncmds
- 1);
134 devq
= cam_simq_alloc(ap
->ap_sc
->sc_ncmds
);
138 sim
= cam_sim_alloc(ahci_xpt_action
, ahci_xpt_poll
, "ahci",
139 (void *)ap
, unit
, &sim_mplock
, 1, 1, devq
);
140 cam_simq_release(devq
);
145 ahci_os_unlock_port(ap
);
146 error
= xpt_bus_register(ap
->ap_sim
, ap
->ap_num
);
147 ahci_os_lock_port(ap
);
148 if (error
!= CAM_SUCCESS
) {
152 ap
->ap_flags
|= AP_F_BUS_REGISTERED
;
154 error
= ahci_cam_probe(ap
, NULL
);
159 ap
->ap_flags
|= AP_F_CAM_ATTACHED
;
165 * The state of the port has changed.
167 * If at is NULL the physical port has changed state.
168 * If at is non-NULL a particular target behind a PM has changed state.
170 * If found is -1 the target state must be queued to a non-interrupt context.
171 * (only works with at == NULL).
173 * If found is 0 the target was removed.
174 * If found is 1 the target was inserted.
177 ahci_cam_changed(struct ahci_port
*ap
, struct ata_port
*atx
, int found
)
179 struct cam_path
*tmppath
;
183 target
= atx
? atx
->at_target
: CAM_TARGET_WILDCARD
;
185 if (ap
->ap_sim
== NULL
)
187 if (found
== CAM_TARGET_WILDCARD
) {
188 status
= xpt_create_path(&tmppath
, NULL
,
189 cam_sim_path(ap
->ap_sim
),
190 target
, CAM_LUN_WILDCARD
);
191 if (status
!= CAM_REQ_CMP
)
195 status
= xpt_create_path(&tmppath
, NULL
,
196 cam_sim_path(ap
->ap_sim
),
199 if (status
!= CAM_REQ_CMP
)
206 xpt_async(AC_FOUND_DEVICE
, tmppath
, NULL
);
208 xpt_async(AC_LOST_DEVICE
, tmppath
, NULL
);
211 xpt_free_path(tmppath
);
215 ahci_cam_detach(struct ahci_port
*ap
)
219 if ((ap
->ap_flags
& AP_F_CAM_ATTACHED
) == 0)
223 xpt_freeze_simq(ap
->ap_sim
, 1);
225 if (ap
->ap_flags
& AP_F_BUS_REGISTERED
) {
226 error
= xpt_bus_deregister(cam_sim_path(ap
->ap_sim
));
227 KKASSERT(error
== CAM_REQ_CMP
);
228 ap
->ap_flags
&= ~AP_F_BUS_REGISTERED
;
231 cam_sim_free(ap
->ap_sim
);
235 ap
->ap_flags
&= ~AP_F_CAM_ATTACHED
;
239 * Once the AHCI port has been attached we need to probe for a device or
240 * devices on the port and setup various options.
242 * If at is NULL we are probing the direct-attached device on the port,
243 * which may or may not be a port multiplier.
246 ahci_cam_probe(struct ahci_port
*ap
, struct ata_port
*atx
)
251 u_int64_t capacity_bytes
;
264 * Delayed CAM attachment for initial probe, sim may be NULL
266 if (ap
->ap_sim
== NULL
)
270 * A NULL atx indicates a probe of the directly connected device.
271 * A non-NULL atx indicates a device connected via a port multiplier.
272 * We need to preserve atx for calls to ahci_ata_get_xfer().
274 * at is always non-NULL. For directly connected devices we supply
275 * an (at) pointing to target 0.
278 at
= ap
->ap_ata
; /* direct attached - device 0 */
279 if (ap
->ap_type
== ATA_PORT_T_PM
) {
280 kprintf("%s: Found Port Multiplier\n",
284 at
->at_type
= ap
->ap_type
;
287 if (atx
->at_type
== ATA_PORT_T_PM
) {
288 kprintf("%s: Bogus device, reducing port count to %d\n",
289 ATANAME(ap
, atx
), atx
->at_target
);
290 if (ap
->ap_pmcount
> atx
->at_target
)
291 ap
->ap_pmcount
= atx
->at_target
;
295 if (ap
->ap_type
== ATA_PORT_T_NONE
)
297 if (at
->at_type
== ATA_PORT_T_NONE
)
301 * Issue identify, saving the result
303 xa
= ahci_ata_get_xfer(ap
, atx
);
304 xa
->complete
= ahci_ata_dummy_done
;
305 xa
->data
= &at
->at_identify
;
306 xa
->datalen
= sizeof(at
->at_identify
);
307 xa
->fis
->flags
= ATA_H2D_FLAGS_CMD
| at
->at_target
;
309 switch(at
->at_type
) {
310 case ATA_PORT_T_DISK
:
311 xa
->fis
->command
= ATA_C_IDENTIFY
;
314 case ATA_PORT_T_ATAPI
:
315 xa
->fis
->command
= ATA_C_ATAPI_IDENTIFY
;
319 xa
->fis
->command
= ATA_C_ATAPI_IDENTIFY
;
320 type
= "UNKNOWN(ATAPI?)";
323 xa
->fis
->features
= 0;
325 xa
->flags
= ATA_F_READ
| ATA_F_PIO
| ATA_F_POLL
;
328 if (ahci_ata_cmd(xa
) != ATA_S_COMPLETE
) {
329 kprintf("%s: Detected %s device but unable to IDENTIFY\n",
330 ATANAME(ap
, atx
), type
);
331 ahci_ata_put_xfer(xa
);
334 ahci_ata_put_xfer(xa
);
336 ata_fix_identify(&at
->at_identify
);
339 * Read capacity using SATA probe info.
341 if (le16toh(at
->at_identify
.cmdset83
) & 0x0400) {
342 /* LBA48 feature set supported */
344 for (i
= 3; i
>= 0; --i
) {
347 le16toh(at
->at_identify
.addrsecxt
[i
]);
350 capacity
= le16toh(at
->at_identify
.addrsec
[1]);
352 capacity
+= le16toh(at
->at_identify
.addrsec
[0]);
354 at
->at_capacity
= capacity
;
356 ap
->ap_probe
= ATA_PROBE_GOOD
;
358 capacity_bytes
= capacity
* 512;
361 * Negotiate NCQ, throw away any ata_xfer's beyond the negotiated
362 * number of slots and limit the number of CAM ccb's to one less
363 * so we always have a slot available for recovery.
365 * NCQ is not used if ap_ncqdepth is 1 or the host controller does
366 * not support it, and in that case the driver can handle extra
369 * NCQ is currently used only with direct-attached disks. It is
370 * not used with port multipliers or direct-attached ATAPI devices.
372 * Remember at least one extra CCB needs to be reserved for the
375 if ((ap
->ap_sc
->sc_cap
& AHCI_REG_CAP_SNCQ
) &&
376 ap
->ap_type
== ATA_PORT_T_DISK
&&
377 (le16toh(at
->at_identify
.satacap
) & (1 << 8))) {
378 at
->at_ncqdepth
= (le16toh(at
->at_identify
.qdepth
) & 0x1F) + 1;
379 devncqdepth
= at
->at_ncqdepth
;
380 if (at
->at_ncqdepth
> ap
->ap_sc
->sc_ncmds
)
381 at
->at_ncqdepth
= ap
->ap_sc
->sc_ncmds
;
382 if (at
->at_ncqdepth
> 1) {
383 for (i
= 0; i
< ap
->ap_sc
->sc_ncmds
; ++i
) {
384 xa
= ahci_ata_get_xfer(ap
, atx
);
385 if (xa
->tag
< at
->at_ncqdepth
) {
386 xa
->state
= ATA_S_COMPLETE
;
387 ahci_ata_put_xfer(xa
);
390 if (at
->at_ncqdepth
>= ap
->ap_sc
->sc_ncmds
) {
391 cam_devq_resize(ap
->ap_sim
->devq
,
392 at
->at_ncqdepth
- 1);
400 * Make the model string a bit more presentable
402 for (model_len
= 40; model_len
; --model_len
) {
403 if (at
->at_identify
.model
[model_len
-1] == ' ')
405 if (at
->at_identify
.model
[model_len
-1] == 0)
411 * Generate informatiive strings.
413 * NOTE: We do not automatically set write caching, lookahead,
414 * or the security state for ATAPI devices.
416 if (at
->at_identify
.cmdset82
& ATA_IDENTIFY_WRITECACHE
) {
417 if (at
->at_identify
.features85
& ATA_IDENTIFY_WRITECACHE
)
419 else if (at
->at_type
== ATA_PORT_T_ATAPI
)
427 if (at
->at_identify
.cmdset82
& ATA_IDENTIFY_LOOKAHEAD
) {
428 if (at
->at_identify
.features85
& ATA_IDENTIFY_LOOKAHEAD
)
430 else if (at
->at_type
== ATA_PORT_T_ATAPI
)
438 if (at
->at_identify
.cmdset82
& ATA_IDENTIFY_SECURITY
) {
439 if (at
->at_identify
.securestatus
& ATA_SECURE_FROZEN
)
441 else if (at
->at_type
== ATA_PORT_T_ATAPI
)
449 kprintf("%s: Found %s \"%*.*s %8.8s\" serial=\"%20.20s\"\n"
450 "%s: tags=%d/%d satacaps=%04x satafeat=%04x "
451 "capacity=%lld.%02dMB\n"
452 "%s: f85=%04x f86=%04x f87=%04x WC=%s RA=%s SEC=%s\n",
455 model_len
, model_len
,
456 at
->at_identify
.model
,
457 at
->at_identify
.firmware
,
458 at
->at_identify
.serial
,
461 devncqdepth
, ap
->ap_sc
->sc_ncmds
,
462 at
->at_identify
.satacap
,
463 at
->at_identify
.satafsup
,
464 (long long)capacity_bytes
/ (1024 * 1024),
465 (int)(capacity_bytes
% (1024 * 1024)) * 100 / (1024 * 1024),
468 at
->at_identify
.features85
,
469 at
->at_identify
.features86
,
470 at
->at_identify
.features87
,
477 * Additional type-specific probing
479 switch(at
->at_type
) {
480 case ATA_PORT_T_DISK
:
481 error
= ahci_cam_probe_disk(ap
, atx
);
483 case ATA_PORT_T_ATAPI
:
484 error
= ahci_cam_probe_atapi(ap
, atx
);
492 at
->at_probe
= ATA_PROBE_FAILED
;
494 ap
->ap_probe
= at
->at_probe
;
496 at
->at_probe
= ATA_PROBE_GOOD
;
498 ap
->ap_probe
= at
->at_probe
;
504 * DISK-specific probe after initial ident
507 ahci_cam_probe_disk(struct ahci_port
*ap
, struct ata_port
*atx
)
512 at
= atx
? atx
: ap
->ap_ata
;
515 * Enable write cache if supported
517 * NOTE: "WD My Book" external disk devices have a very poor
518 * daughter board between the the ESATA and the HD. Sending
519 * any ATA_C_SET_FEATURES commands will break the hardware port
520 * with a fatal protocol error. However, this device also
521 * indicates that WRITECACHE is already on and READAHEAD is
522 * not supported so we avoid the issue.
524 if ((at
->at_identify
.cmdset82
& ATA_IDENTIFY_WRITECACHE
) &&
525 (at
->at_identify
.features85
& ATA_IDENTIFY_WRITECACHE
) == 0) {
526 xa
= ahci_ata_get_xfer(ap
, atx
);
527 xa
->complete
= ahci_ata_dummy_done
;
528 xa
->fis
->command
= ATA_C_SET_FEATURES
;
529 /*xa->fis->features = ATA_SF_WRITECACHE_EN;*/
530 xa
->fis
->features
= ATA_SF_LOOKAHEAD_EN
;
531 xa
->fis
->flags
= ATA_H2D_FLAGS_CMD
| at
->at_target
;
533 xa
->flags
= ATA_F_READ
| ATA_F_PIO
| ATA_F_POLL
;
536 if (ahci_ata_cmd(xa
) == ATA_S_COMPLETE
)
537 at
->at_features
|= ATA_PORT_F_WCACHE
;
538 ahci_ata_put_xfer(xa
);
542 * Enable readahead if supported
544 if ((at
->at_identify
.cmdset82
& ATA_IDENTIFY_LOOKAHEAD
) &&
545 (at
->at_identify
.features85
& ATA_IDENTIFY_LOOKAHEAD
) == 0) {
546 xa
= ahci_ata_get_xfer(ap
, atx
);
547 xa
->complete
= ahci_ata_dummy_done
;
548 xa
->fis
->command
= ATA_C_SET_FEATURES
;
549 xa
->fis
->features
= ATA_SF_LOOKAHEAD_EN
;
550 xa
->fis
->flags
= ATA_H2D_FLAGS_CMD
| at
->at_target
;
552 xa
->flags
= ATA_F_READ
| ATA_F_PIO
| ATA_F_POLL
;
555 if (ahci_ata_cmd(xa
) == ATA_S_COMPLETE
)
556 at
->at_features
|= ATA_PORT_F_RAHEAD
;
557 ahci_ata_put_xfer(xa
);
561 * FREEZE LOCK the device so malicious users can't lock it on us.
562 * As there is no harm in issuing this to devices that don't
563 * support the security feature set we just send it, and don't bother
564 * checking if the device sends a command abort to tell us it doesn't
567 if ((at
->at_identify
.cmdset82
& ATA_IDENTIFY_SECURITY
) &&
568 (at
->at_identify
.securestatus
& ATA_SECURE_FROZEN
) == 0) {
569 xa
= ahci_ata_get_xfer(ap
, atx
);
570 xa
->complete
= ahci_ata_dummy_done
;
571 xa
->fis
->command
= ATA_C_SEC_FREEZE_LOCK
;
572 xa
->fis
->flags
= ATA_H2D_FLAGS_CMD
| at
->at_target
;
573 xa
->flags
= ATA_F_READ
| ATA_F_PIO
| ATA_F_POLL
;
576 if (ahci_ata_cmd(xa
) == ATA_S_COMPLETE
)
577 at
->at_features
|= ATA_PORT_F_FRZLCK
;
578 ahci_ata_put_xfer(xa
);
585 * ATAPI-specific probe after initial ident
588 ahci_cam_probe_atapi(struct ahci_port
*ap
, struct ata_port
*atx
)
594 * Fix byte ordering so buffers can be accessed as
598 ata_fix_identify(struct ata_identify
*id
)
603 swap
= (u_int16_t
*)id
->serial
;
604 for (i
= 0; i
< sizeof(id
->serial
) / sizeof(u_int16_t
); i
++)
605 swap
[i
] = bswap16(swap
[i
]);
607 swap
= (u_int16_t
*)id
->firmware
;
608 for (i
= 0; i
< sizeof(id
->firmware
) / sizeof(u_int16_t
); i
++)
609 swap
[i
] = bswap16(swap
[i
]);
611 swap
= (u_int16_t
*)id
->model
;
612 for (i
= 0; i
< sizeof(id
->model
) / sizeof(u_int16_t
); i
++)
613 swap
[i
] = bswap16(swap
[i
]);
617 * Dummy done callback for xa.
620 ahci_ata_dummy_done(struct ata_xfer
*xa
)
625 * Use an engineering request to initiate a target scan for devices
626 * behind a port multiplier.
628 * An asynchronous bus scan is used to avoid reentrancy issues.
631 ahci_cam_rescan_callback(struct cam_periph
*periph
, union ccb
*ccb
)
633 struct ahci_port
*ap
= ccb
->ccb_h
.sim_priv
.entries
[0].ptr
;
635 if (ccb
->ccb_h
.func_code
== XPT_SCAN_BUS
) {
636 ap
->ap_flags
&= ~AP_F_SCAN_RUNNING
;
637 if (ap
->ap_flags
& AP_F_SCAN_REQUESTED
) {
638 ap
->ap_flags
&= ~AP_F_SCAN_REQUESTED
;
641 ap
->ap_flags
|= AP_F_SCAN_COMPLETED
;
642 wakeup(&ap
->ap_flags
);
648 ahci_cam_rescan(struct ahci_port
*ap
)
650 struct cam_path
*path
;
655 if (ap
->ap_flags
& AP_F_SCAN_RUNNING
) {
656 ap
->ap_flags
|= AP_F_SCAN_REQUESTED
;
659 ap
->ap_flags
|= AP_F_SCAN_RUNNING
;
660 for (i
= 0; i
< AHCI_MAX_PMPORTS
; ++i
) {
661 ap
->ap_ata
[i
].at_features
|= ATA_PORT_F_RESCAN
;
664 status
= xpt_create_path(&path
, xpt_periph
, cam_sim_path(ap
->ap_sim
),
665 CAM_TARGET_WILDCARD
, CAM_LUN_WILDCARD
);
666 if (status
!= CAM_REQ_CMP
)
669 ccb
= xpt_alloc_ccb();
670 xpt_setup_ccb(&ccb
->ccb_h
, path
, 5); /* 5 = low priority */
671 ccb
->ccb_h
.func_code
= XPT_ENG_EXEC
;
672 ccb
->ccb_h
.cbfcnp
= ahci_cam_rescan_callback
;
673 ccb
->ccb_h
.sim_priv
.entries
[0].ptr
= ap
;
674 ccb
->crcn
.flags
= CAM_FLAG_NONE
;
675 xpt_action_async(ccb
);
679 ahci_xpt_rescan(struct ahci_port
*ap
)
681 struct cam_path
*path
;
685 status
= xpt_create_path(&path
, xpt_periph
, cam_sim_path(ap
->ap_sim
),
686 CAM_TARGET_WILDCARD
, CAM_LUN_WILDCARD
);
687 if (status
!= CAM_REQ_CMP
)
690 ccb
= xpt_alloc_ccb();
691 xpt_setup_ccb(&ccb
->ccb_h
, path
, 5); /* 5 = low priority */
692 ccb
->ccb_h
.func_code
= XPT_SCAN_BUS
;
693 ccb
->ccb_h
.cbfcnp
= ahci_cam_rescan_callback
;
694 ccb
->ccb_h
.sim_priv
.entries
[0].ptr
= ap
;
695 ccb
->crcn
.flags
= CAM_FLAG_NONE
;
696 xpt_action_async(ccb
);
700 * Action function - dispatch command
704 ahci_xpt_action(struct cam_sim
*sim
, union ccb
*ccb
)
706 struct ahci_port
*ap
;
707 struct ata_port
*at
, *atx
;
708 struct ccb_hdr
*ccbh
;
712 ap
= cam_sim_softc(sim
);
715 KKASSERT(ap
!= NULL
);
717 unit
= cam_sim_unit(sim
);
720 * Early failure checks. These checks do not apply to XPT_PATH_INQ,
721 * otherwise the bus rescan will not remove the dead devices when
724 * For non-wildcards we have one target (0) and one lun (0),
725 * unless we have a port multiplier.
727 * A wildcard target indicates only the general bus is being
730 * Calculate at and atx. at is always non-NULL. atx is only
731 * non-NULL for direct-attached devices. It will be NULL for
732 * devices behind a port multiplier.
734 * XXX What do we do with a LUN wildcard?
736 if (ccbh
->target_id
!= CAM_TARGET_WILDCARD
&&
737 ccbh
->func_code
!= XPT_PATH_INQ
) {
738 if (ap
->ap_type
== ATA_PORT_T_NONE
) {
739 ccbh
->status
= CAM_DEV_NOT_THERE
;
743 if (ccbh
->target_id
< 0 || ccbh
->target_id
>= ap
->ap_pmcount
) {
744 ccbh
->status
= CAM_DEV_NOT_THERE
;
748 at
+= ccbh
->target_id
;
749 if (ap
->ap_type
== ATA_PORT_T_PM
)
752 if (ccbh
->target_lun
!= CAM_LUN_WILDCARD
&& ccbh
->target_lun
) {
753 ccbh
->status
= CAM_DEV_NOT_THERE
;
760 * Switch on the meta XPT command
762 switch(ccbh
->func_code
) {
765 * This routine is called after a port multiplier has been
768 ccbh
->status
= CAM_REQ_CMP
;
769 ahci_os_lock_port(ap
);
770 ahci_port_state_machine(ap
, 0);
771 ahci_os_unlock_port(ap
);
777 * This command always succeeds, otherwise the bus scan
778 * will not detach dead devices.
780 ccb
->cpi
.version_num
= 1;
781 ccb
->cpi
.hba_inquiry
= 0;
782 ccb
->cpi
.target_sprt
= 0;
783 ccb
->cpi
.hba_misc
= PIM_SEQSCAN
;
784 ccb
->cpi
.hba_eng_cnt
= 0;
785 bzero(ccb
->cpi
.vuhba_flags
, sizeof(ccb
->cpi
.vuhba_flags
));
786 ccb
->cpi
.max_target
= AHCI_MAX_PMPORTS
;
787 ccb
->cpi
.max_lun
= 0;
788 ccb
->cpi
.async_flags
= 0;
789 ccb
->cpi
.hpath_id
= 0;
790 ccb
->cpi
.initiator_id
= AHCI_MAX_PMPORTS
- 1;
791 ccb
->cpi
.unit_number
= cam_sim_unit(sim
);
792 ccb
->cpi
.bus_id
= cam_sim_bus(sim
);
793 ccb
->cpi
.base_transfer_speed
= 150000;
794 ccb
->cpi
.transport
= XPORT_AHCI
;
795 ccb
->cpi
.transport_version
= 1;
796 ccb
->cpi
.protocol
= PROTO_SCSI
;
797 ccb
->cpi
.protocol_version
= SCSI_REV_2
;
799 ccbh
->status
= CAM_REQ_CMP
;
800 if (ccbh
->target_id
== CAM_TARGET_WILDCARD
) {
801 ahci_os_lock_port(ap
);
802 ahci_port_state_machine(ap
, 0);
803 ahci_os_unlock_port(ap
);
805 switch(ahci_pread(ap
, AHCI_PREG_SSTS
) &
806 AHCI_PREG_SSTS_SPD
) {
807 case AHCI_PREG_SSTS_SPD_GEN1
:
808 ccb
->cpi
.base_transfer_speed
= 150000;
810 case AHCI_PREG_SSTS_SPD_GEN2
:
811 ccb
->cpi
.base_transfer_speed
= 300000;
815 ccb
->cpi
.base_transfer_speed
= 1000;
819 if (ap
->ap_type
== ATA_PORT_T_NONE
)
820 ccbh
->status
= CAM_DEV_NOT_THERE
;
826 ahci_os_lock_port(ap
);
827 if (ap
->ap_type
== ATA_PORT_T_NONE
) {
828 ccbh
->status
= CAM_DEV_NOT_THERE
;
830 ahci_port_reset(ap
, atx
, 0);
831 ccbh
->status
= CAM_REQ_CMP
;
833 ahci_os_unlock_port(ap
);
837 ahci_os_lock_port(ap
);
838 ahci_port_reset(ap
, NULL
, 1);
839 ahci_os_unlock_port(ap
);
840 ccbh
->status
= CAM_REQ_CMP
;
843 case XPT_SET_TRAN_SETTINGS
:
844 ccbh
->status
= CAM_FUNC_NOTAVAIL
;
847 case XPT_GET_TRAN_SETTINGS
:
848 ccb
->cts
.protocol
= PROTO_SCSI
;
849 ccb
->cts
.protocol_version
= SCSI_REV_2
;
850 ccb
->cts
.transport
= XPORT_AHCI
;
851 ccb
->cts
.transport_version
= XPORT_VERSION_UNSPECIFIED
;
852 ccb
->cts
.proto_specific
.valid
= 0;
853 ccb
->cts
.xport_specific
.valid
= 0;
854 ccbh
->status
= CAM_REQ_CMP
;
857 case XPT_CALC_GEOMETRY
:
858 cam_calc_geometry(&ccb
->ccg
, 1);
863 * Our parallel startup code might have only probed through
864 * to the IDENT, so do the last step if necessary.
866 if (at
->at_probe
== ATA_PROBE_NEED_IDENT
)
867 ahci_cam_probe(ap
, atx
);
868 if (at
->at_probe
!= ATA_PROBE_GOOD
) {
869 ccbh
->status
= CAM_DEV_NOT_THERE
;
873 switch(at
->at_type
) {
874 case ATA_PORT_T_DISK
:
875 ahci_xpt_scsi_disk_io(ap
, atx
, ccb
);
877 case ATA_PORT_T_ATAPI
:
878 ahci_xpt_scsi_atapi_io(ap
, atx
, ccb
);
881 ccbh
->status
= CAM_REQ_INVALID
;
887 ccbh
->status
= CAM_REQ_INVALID
;
896 * Generally this function gets called heavily when interrupts might be
897 * non-operational, during a halt/reboot or panic.
901 ahci_xpt_poll(struct cam_sim
*sim
)
903 struct ahci_port
*ap
;
905 ap
= cam_sim_softc(sim
);
907 ahci_os_lock_port(ap
);
908 ahci_port_intr(ap
, 1);
909 ahci_os_unlock_port(ap
);
914 * Convert the SCSI command in ccb to an ata_xfer command in xa
915 * for ATA_PORT_T_DISK operations. Set the completion function
916 * to convert the response back, then dispatch to the OpenBSD AHCI
919 * AHCI DISK commands only support a limited command set, and we
920 * fake additional commands to make it play nice with the CAM subsystem.
924 ahci_xpt_scsi_disk_io(struct ahci_port
*ap
, struct ata_port
*atx
,
927 struct ccb_hdr
*ccbh
;
928 struct ccb_scsiio
*csio
;
931 struct ata_fis_h2d
*fis
;
933 union scsi_data
*rdata
;
939 ccbh
= &ccb
->csio
.ccb_h
;
941 at
= atx
? atx
: &ap
->ap_ata
[0];
944 * XXX not passing NULL at for direct attach!
946 xa
= ahci_ata_get_xfer(ap
, atx
);
947 rdata
= (void *)csio
->data_ptr
;
948 rdata_len
= csio
->dxfer_len
;
951 * Build the FIS or process the csio to completion.
953 cdb
= (void *)((ccbh
->flags
& CAM_CDB_POINTER
) ?
954 csio
->cdb_io
.cdb_ptr
: csio
->cdb_io
.cdb_bytes
);
956 switch(cdb
->generic
.opcode
) {
959 * Auto-sense everything, so explicit sense requests
962 ccbh
->status
= CAM_SCSI_STATUS_ERROR
;
966 * Inquiry supported features
968 * [opcode, byte2, page_code, length, control]
970 if (cdb
->inquiry
.byte2
& SI_EVPD
) {
971 switch(cdb
->inquiry
.page_code
) {
972 case SVPD_SUPPORTED_PAGE_LIST
:
973 /* XXX atascsi_disk_vpd_supported */
974 case SVPD_UNIT_SERIAL_NUMBER
:
975 /* XXX atascsi_disk_vpd_serial */
976 case SVPD_UNIT_DEVID
:
977 /* XXX atascsi_disk_vpd_ident */
979 ccbh
->status
= CAM_FUNC_NOTAVAIL
;
983 bzero(rdata
, rdata_len
);
984 if (rdata_len
< SHORT_INQUIRY_LENGTH
) {
985 ccbh
->status
= CAM_CCB_LEN_ERR
;
988 if (rdata_len
> sizeof(rdata
->inquiry_data
))
989 rdata_len
= sizeof(rdata
->inquiry_data
);
990 rdata
->inquiry_data
.device
= T_DIRECT
;
991 rdata
->inquiry_data
.version
= SCSI_REV_SPC2
;
992 rdata
->inquiry_data
.response_format
= 2;
993 rdata
->inquiry_data
.additional_length
= 32;
994 bcopy("SATA ", rdata
->inquiry_data
.vendor
, 8);
995 bcopy(at
->at_identify
.model
,
996 rdata
->inquiry_data
.product
,
997 sizeof(rdata
->inquiry_data
.product
));
998 bcopy(at
->at_identify
.firmware
,
999 rdata
->inquiry_data
.revision
,
1000 sizeof(rdata
->inquiry_data
.revision
));
1001 ccbh
->status
= CAM_REQ_CMP
;
1004 case READ_CAPACITY_16
:
1005 if (cdb
->read_capacity_16
.service_action
!= SRC16_SERVICE_ACTION
) {
1006 ccbh
->status
= CAM_REQ_INVALID
;
1009 if (rdata_len
< sizeof(rdata
->read_capacity_data_16
)) {
1010 ccbh
->status
= CAM_CCB_LEN_ERR
;
1015 if (rdata_len
< sizeof(rdata
->read_capacity_data
)) {
1016 ccbh
->status
= CAM_CCB_LEN_ERR
;
1020 capacity
= at
->at_capacity
;
1022 bzero(rdata
, rdata_len
);
1023 if (cdb
->generic
.opcode
== READ_CAPACITY
) {
1024 rdata_len
= sizeof(rdata
->read_capacity_data
);
1025 if (capacity
> 0xFFFFFFFFU
)
1026 capacity
= 0xFFFFFFFFU
;
1027 bzero(&rdata
->read_capacity_data
, rdata_len
);
1028 scsi_ulto4b((u_int32_t
)capacity
- 1,
1029 rdata
->read_capacity_data
.addr
);
1030 scsi_ulto4b(512, rdata
->read_capacity_data
.length
);
1032 rdata_len
= sizeof(rdata
->read_capacity_data_16
);
1033 bzero(&rdata
->read_capacity_data_16
, rdata_len
);
1034 scsi_u64to8b(capacity
- 1,
1035 rdata
->read_capacity_data_16
.addr
);
1036 scsi_ulto4b(512, rdata
->read_capacity_data_16
.length
);
1038 ccbh
->status
= CAM_REQ_CMP
;
1040 case SYNCHRONIZE_CACHE
:
1042 * Synchronize cache. Specification says this can take
1043 * greater then 30 seconds so give it at least 45.
1046 fis
->flags
= ATA_H2D_FLAGS_CMD
;
1047 fis
->command
= ATA_C_FLUSH_CACHE
;
1049 if (xa
->timeout
< 45000)
1050 xa
->timeout
= 45000;
1052 xa
->flags
= ATA_F_READ
;
1053 xa
->complete
= ahci_ata_complete_disk_synchronize_cache
;
1055 case TEST_UNIT_READY
:
1056 case START_STOP_UNIT
:
1059 * Just silently return success
1061 ccbh
->status
= CAM_REQ_CMP
;
1067 * XXX implement pass-through
1069 ccbh
->status
= CAM_FUNC_NOTAVAIL
;
1072 switch(cdb
->generic
.opcode
) {
1074 lba
= scsi_3btoul(cdb
->rw_6
.addr
) & 0x1FFFFF;
1075 count
= cdb
->rw_6
.length
? cdb
->rw_6
.length
: 0x100;
1076 xa
->flags
= ATA_F_READ
;
1079 lba
= scsi_4btoul(cdb
->rw_10
.addr
);
1080 count
= scsi_2btoul(cdb
->rw_10
.length
);
1081 xa
->flags
= ATA_F_READ
;
1084 lba
= scsi_4btoul(cdb
->rw_12
.addr
);
1085 count
= scsi_4btoul(cdb
->rw_12
.length
);
1086 xa
->flags
= ATA_F_READ
;
1089 lba
= scsi_8btou64(cdb
->rw_16
.addr
);
1090 count
= scsi_4btoul(cdb
->rw_16
.length
);
1091 xa
->flags
= ATA_F_READ
;
1094 lba
= scsi_3btoul(cdb
->rw_6
.addr
) & 0x1FFFFF;
1095 count
= cdb
->rw_6
.length
? cdb
->rw_6
.length
: 0x100;
1096 xa
->flags
= ATA_F_WRITE
;
1099 lba
= scsi_4btoul(cdb
->rw_10
.addr
);
1100 count
= scsi_2btoul(cdb
->rw_10
.length
);
1101 xa
->flags
= ATA_F_WRITE
;
1104 lba
= scsi_4btoul(cdb
->rw_12
.addr
);
1105 count
= scsi_4btoul(cdb
->rw_12
.length
);
1106 xa
->flags
= ATA_F_WRITE
;
1109 lba
= scsi_8btou64(cdb
->rw_16
.addr
);
1110 count
= scsi_4btoul(cdb
->rw_16
.length
);
1111 xa
->flags
= ATA_F_WRITE
;
1114 ccbh
->status
= CAM_REQ_INVALID
;
1117 if (ccbh
->status
!= CAM_REQ_INPROG
)
1121 fis
->flags
= ATA_H2D_FLAGS_CMD
;
1122 fis
->lba_low
= (u_int8_t
)lba
;
1123 fis
->lba_mid
= (u_int8_t
)(lba
>> 8);
1124 fis
->lba_high
= (u_int8_t
)(lba
>> 16);
1125 fis
->device
= ATA_H2D_DEVICE_LBA
;
1128 * NCQ only for direct-attached disks, do not currently
1129 * try to use NCQ with port multipliers.
1131 if (at
->at_ncqdepth
> 1 &&
1132 ap
->ap_type
== ATA_PORT_T_DISK
&&
1133 (ap
->ap_sc
->sc_cap
& AHCI_REG_CAP_SNCQ
) &&
1134 (ccbh
->flags
& CAM_POLLED
) == 0) {
1136 * Use NCQ - always uses 48 bit addressing
1138 xa
->flags
|= ATA_F_NCQ
;
1139 fis
->command
= (xa
->flags
& ATA_F_WRITE
) ?
1140 ATA_C_WRITE_FPDMA
: ATA_C_READ_FPDMA
;
1141 fis
->lba_low_exp
= (u_int8_t
)(lba
>> 24);
1142 fis
->lba_mid_exp
= (u_int8_t
)(lba
>> 32);
1143 fis
->lba_high_exp
= (u_int8_t
)(lba
>> 40);
1144 fis
->sector_count
= xa
->tag
<< 3;
1145 fis
->features
= (u_int8_t
)count
;
1146 fis
->features_exp
= (u_int8_t
)(count
>> 8);
1147 } else if (count
> 0x100 || lba
> 0xFFFFFFFFU
) {
1151 fis
->command
= (xa
->flags
& ATA_F_WRITE
) ?
1152 ATA_C_WRITEDMA_EXT
: ATA_C_READDMA_EXT
;
1153 fis
->lba_low_exp
= (u_int8_t
)(lba
>> 24);
1154 fis
->lba_mid_exp
= (u_int8_t
)(lba
>> 32);
1155 fis
->lba_high_exp
= (u_int8_t
)(lba
>> 40);
1156 fis
->sector_count
= (u_int8_t
)count
;
1157 fis
->sector_count_exp
= (u_int8_t
)(count
>> 8);
1162 * NOTE: 256 sectors is supported, stored as 0.
1164 fis
->command
= (xa
->flags
& ATA_F_WRITE
) ?
1165 ATA_C_WRITEDMA
: ATA_C_READDMA
;
1166 fis
->device
|= (u_int8_t
)(lba
>> 24) & 0x0F;
1167 fis
->sector_count
= (u_int8_t
)count
;
1170 xa
->data
= csio
->data_ptr
;
1171 xa
->datalen
= csio
->dxfer_len
;
1172 xa
->complete
= ahci_ata_complete_disk_rw
;
1173 xa
->timeout
= ccbh
->timeout
; /* milliseconds */
1174 if (ccbh
->flags
& CAM_POLLED
)
1175 xa
->flags
|= ATA_F_POLL
;
1180 * If the request is still in progress the xa and FIS have
1181 * been set up and must be dispatched. Otherwise the request
1184 if (ccbh
->status
== CAM_REQ_INPROG
) {
1185 KKASSERT(xa
->complete
!= NULL
);
1186 xa
->atascsi_private
= ccb
;
1187 ccb
->ccb_h
.sim_priv
.entries
[0].ptr
= ap
;
1188 ahci_os_lock_port(ap
);
1189 fis
->flags
|= at
->at_target
;
1191 ahci_os_unlock_port(ap
);
1193 ahci_ata_put_xfer(xa
);
1199 * Convert the SCSI command in ccb to an ata_xfer command in xa
1200 * for ATA_PORT_T_ATAPI operations. Set the completion function
1201 * to convert the response back, then dispatch to the OpenBSD AHCI
1206 ahci_xpt_scsi_atapi_io(struct ahci_port
*ap
, struct ata_port
*atx
,
1209 struct ccb_hdr
*ccbh
;
1210 struct ccb_scsiio
*csio
;
1211 struct ata_xfer
*xa
;
1212 struct ata_fis_h2d
*fis
;
1216 struct ata_port
*at
;
1218 ccbh
= &ccb
->csio
.ccb_h
;
1220 at
= atx
? atx
: &ap
->ap_ata
[0];
1222 switch (ccbh
->flags
& CAM_DIR_MASK
) {
1224 flags
= ATA_F_PACKET
| ATA_F_READ
;
1227 flags
= ATA_F_PACKET
| ATA_F_WRITE
;
1230 flags
= ATA_F_PACKET
;
1233 ccbh
->status
= CAM_REQ_INVALID
;
1240 * The command has to fit in the packet command buffer.
1242 if (csio
->cdb_len
< 6 || csio
->cdb_len
> 16) {
1243 ccbh
->status
= CAM_CCB_LEN_ERR
;
1249 * Initialize the XA and FIS.
1251 * XXX not passing NULL at for direct attach!
1253 xa
= ahci_ata_get_xfer(ap
, atx
);
1256 fis
->flags
= ATA_H2D_FLAGS_CMD
| at
->at_target
;
1257 fis
->command
= ATA_C_PACKET
;
1259 fis
->sector_count
= xa
->tag
<< 3;
1260 fis
->features
= ATA_H2D_FEATURES_DMA
|
1261 ((flags
& ATA_F_WRITE
) ?
1262 ATA_H2D_FEATURES_DIR_WRITE
: ATA_H2D_FEATURES_DIR_READ
);
1263 fis
->lba_mid
= 0x00;
1264 fis
->lba_high
= 0x20;
1267 xa
->data
= csio
->data_ptr
;
1268 xa
->datalen
= csio
->dxfer_len
;
1269 xa
->timeout
= ccbh
->timeout
; /* milliseconds */
1271 if (ccbh
->flags
& CAM_POLLED
)
1272 xa
->flags
|= ATA_F_POLL
;
1275 * Copy the cdb to the packetcmd buffer in the FIS using a
1276 * convenient pointer in the xa.
1278 cdbs
= (void *)((ccbh
->flags
& CAM_CDB_POINTER
) ?
1279 csio
->cdb_io
.cdb_ptr
: csio
->cdb_io
.cdb_bytes
);
1280 bcopy(cdbs
, xa
->packetcmd
, csio
->cdb_len
);
1283 kprintf("opcode %d cdb_len %d dxfer_len %d\n",
1284 cdbs
->generic
.opcode
,
1285 csio
->cdb_len
, csio
->dxfer_len
);
1289 * Some ATAPI commands do not actually follow the SCSI standard.
1291 cdbd
= (void *)xa
->packetcmd
;
1293 switch(cdbd
->generic
.opcode
) {
1296 * Some ATAPI devices can't handle SI_EVPD being set
1297 * for a basic inquiry (page_code == 0).
1299 * Some ATAPI devices can't handle long inquiry lengths,
1300 * don't ask me why. Truncate the inquiry length.
1302 if ((cdbd
->inquiry
.byte2
& SI_EVPD
) &&
1303 cdbd
->inquiry
.page_code
== 0) {
1304 cdbd
->inquiry
.byte2
&= ~SI_EVPD
;
1306 if (cdbd
->inquiry
.page_code
== 0 &&
1307 cdbd
->inquiry
.length
> SHORT_INQUIRY_LENGTH
) {
1308 cdbd
->inquiry
.length
= SHORT_INQUIRY_LENGTH
;
1314 * Convert *_6 to *_10 commands. Most ATAPI devices
1315 * cannot handle the SCSI READ_6 and WRITE_6 commands.
1317 cdbd
->rw_10
.opcode
|= 0x20;
1318 cdbd
->rw_10
.byte2
= 0;
1319 cdbd
->rw_10
.addr
[0] = cdbs
->rw_6
.addr
[0] & 0x1F;
1320 cdbd
->rw_10
.addr
[1] = cdbs
->rw_6
.addr
[1];
1321 cdbd
->rw_10
.addr
[2] = cdbs
->rw_6
.addr
[2];
1322 cdbd
->rw_10
.addr
[3] = 0;
1323 cdbd
->rw_10
.reserved
= 0;
1324 cdbd
->rw_10
.length
[0] = 0;
1325 cdbd
->rw_10
.length
[1] = cdbs
->rw_6
.length
;
1326 cdbd
->rw_10
.control
= cdbs
->rw_6
.control
;
1335 xa
->complete
= ahci_atapi_complete_cmd
;
1336 xa
->atascsi_private
= ccb
;
1337 ccb
->ccb_h
.sim_priv
.entries
[0].ptr
= ap
;
1342 * Completion function for ATA_PORT_T_DISK cache synchronization.
1346 ahci_ata_complete_disk_synchronize_cache(struct ata_xfer
*xa
)
1348 union ccb
*ccb
= xa
->atascsi_private
;
1349 struct ccb_hdr
*ccbh
= &ccb
->ccb_h
;
1350 struct ahci_port
*ap
= ccb
->ccb_h
.sim_priv
.entries
[0].ptr
;
1353 case ATA_S_COMPLETE
:
1354 ccbh
->status
= CAM_REQ_CMP
;
1355 ccb
->csio
.scsi_status
= SCSI_STATUS_OK
;
1358 kprintf("%s: synchronize_cache: error\n",
1359 ATANAME(ap
, xa
->at
));
1360 ccbh
->status
= CAM_SCSI_STATUS_ERROR
| CAM_AUTOSNS_VALID
;
1361 ccb
->csio
.scsi_status
= SCSI_STATUS_CHECK_COND
;
1362 ahci_ata_dummy_sense(&ccb
->csio
.sense_data
);
1365 kprintf("%s: synchronize_cache: timeout\n",
1366 ATANAME(ap
, xa
->at
));
1367 ccbh
->status
= CAM_CMD_TIMEOUT
;
1370 kprintf("%s: synchronize_cache: unknown state %d\n",
1371 ATANAME(ap
, xa
->at
), xa
->state
);
1372 ccbh
->status
= CAM_REQ_CMP_ERR
;
1375 ahci_ata_put_xfer(xa
);
1376 ahci_os_unlock_port(ap
);
1378 ahci_os_lock_port(ap
);
1382 * Completion function for ATA_PORT_T_DISK I/O
1386 ahci_ata_complete_disk_rw(struct ata_xfer
*xa
)
1388 union ccb
*ccb
= xa
->atascsi_private
;
1389 struct ccb_hdr
*ccbh
= &ccb
->ccb_h
;
1390 struct ahci_port
*ap
= ccb
->ccb_h
.sim_priv
.entries
[0].ptr
;
1393 case ATA_S_COMPLETE
:
1394 ccbh
->status
= CAM_REQ_CMP
;
1395 ccb
->csio
.scsi_status
= SCSI_STATUS_OK
;
1398 kprintf("%s: disk_rw: error\n", ATANAME(ap
, xa
->at
));
1399 ccbh
->status
= CAM_SCSI_STATUS_ERROR
| CAM_AUTOSNS_VALID
;
1400 ccb
->csio
.scsi_status
= SCSI_STATUS_CHECK_COND
;
1401 ahci_ata_dummy_sense(&ccb
->csio
.sense_data
);
1404 kprintf("%s: disk_rw: timeout\n", ATANAME(ap
, xa
->at
));
1405 ccbh
->status
= CAM_CMD_TIMEOUT
;
1408 kprintf("%s: disk_rw: unknown state %d\n",
1409 ATANAME(ap
, xa
->at
), xa
->state
);
1410 ccbh
->status
= CAM_REQ_CMP_ERR
;
1413 ccb
->csio
.resid
= xa
->resid
;
1414 ahci_ata_put_xfer(xa
);
1415 ahci_os_unlock_port(ap
);
1417 ahci_os_lock_port(ap
);
1421 * Completion function for ATA_PORT_T_ATAPI I/O
1423 * Sense data is returned in the rfis.
1427 ahci_atapi_complete_cmd(struct ata_xfer
*xa
)
1429 union ccb
*ccb
= xa
->atascsi_private
;
1430 struct ccb_hdr
*ccbh
= &ccb
->ccb_h
;
1431 struct ahci_port
*ap
= ccb
->ccb_h
.sim_priv
.entries
[0].ptr
;
1434 cdb
= (void *)((ccb
->ccb_h
.flags
& CAM_CDB_POINTER
) ?
1435 ccb
->csio
.cdb_io
.cdb_ptr
: ccb
->csio
.cdb_io
.cdb_bytes
);
1438 case ATA_S_COMPLETE
:
1439 ccbh
->status
= CAM_REQ_CMP
;
1440 ccb
->csio
.scsi_status
= SCSI_STATUS_OK
;
1443 kprintf("%s: cmd %d: error\n",
1444 PORTNAME(ap
), cdb
->generic
.opcode
);
1445 ccbh
->status
= CAM_SCSI_STATUS_ERROR
;
1446 ccb
->csio
.scsi_status
= SCSI_STATUS_CHECK_COND
;
1447 ahci_ata_atapi_sense(&xa
->rfis
, &ccb
->csio
.sense_data
);
1450 kprintf("%s: cmd %d: timeout\n",
1451 PORTNAME(ap
), cdb
->generic
.opcode
);
1452 ccbh
->status
= CAM_CMD_TIMEOUT
;
1455 kprintf("%s: cmd %d: unknown state %d\n",
1456 PORTNAME(ap
), cdb
->generic
.opcode
, xa
->state
);
1457 ccbh
->status
= CAM_REQ_CMP_ERR
;
1460 ccb
->csio
.resid
= xa
->resid
;
1461 ahci_ata_put_xfer(xa
);
1462 ahci_os_unlock_port(ap
);
1464 ahci_os_lock_port(ap
);
1468 * Construct dummy sense data for errors on DISKs
1472 ahci_ata_dummy_sense(struct scsi_sense_data
*sense_data
)
1474 sense_data
->error_code
= SSD_ERRCODE_VALID
| SSD_CURRENT_ERROR
;
1475 sense_data
->segment
= 0;
1476 sense_data
->flags
= SSD_KEY_MEDIUM_ERROR
;
1477 sense_data
->info
[0] = 0;
1478 sense_data
->info
[1] = 0;
1479 sense_data
->info
[2] = 0;
1480 sense_data
->info
[3] = 0;
1481 sense_data
->extra_len
= 0;
1485 * Construct atapi sense data for errors on ATAPI
1487 * The ATAPI sense data is stored in the passed rfis and must be converted
1488 * to SCSI sense data.
1492 ahci_ata_atapi_sense(struct ata_fis_d2h
*rfis
,
1493 struct scsi_sense_data
*sense_data
)
1495 sense_data
->error_code
= SSD_ERRCODE_VALID
| SSD_CURRENT_ERROR
;
1496 sense_data
->segment
= 0;
1497 sense_data
->flags
= (rfis
->error
& 0xF0) >> 4;
1498 if (rfis
->error
& 0x04)
1499 sense_data
->flags
|= SSD_KEY_ILLEGAL_REQUEST
;
1500 if (rfis
->error
& 0x02)
1501 sense_data
->flags
|= SSD_EOM
;
1502 if (rfis
->error
& 0x01)
1503 sense_data
->flags
|= SSD_ILI
;
1504 sense_data
->info
[0] = 0;
1505 sense_data
->info
[1] = 0;
1506 sense_data
->info
[2] = 0;
1507 sense_data
->info
[3] = 0;
1508 sense_data
->extra_len
= 0;