2 * Copyright (c) 2001-2007 Thomas Quinot <thomas@cuivre.fr.eu.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
32 #include <sys/param.h>
33 #include <sys/systm.h>
35 #include <sys/kernel.h>
36 #include <sys/malloc.h>
38 #include <sys/taskqueue.h>
40 #include <sys/mutex.h>
43 #include <machine/resource.h>
44 #include <machine/bus.h>
47 #include <cam/cam_ccb.h>
48 #include <cam/cam_periph.h>
49 #include <cam/cam_sim.h>
50 #include <cam/cam_xpt_sim.h>
51 #include <cam/cam_xpt_periph.h>
52 #include <cam/cam_debug.h>
53 #include <cam/scsi/scsi_all.h>
55 #include <dev/ata/ata-all.h>
58 /* private data associated with an ATA bus */
59 struct atapi_xpt_softc
{
60 struct ata_device atapi_cam_dev
; /* must be first */
63 struct ata_channel
*ata_ch
;
64 struct cam_path
*path
;
67 #define BUS_REGISTERED 0x01
68 #define RESOURCE_SHORTAGE 0x02
69 #define DETACHING 0x04
71 TAILQ_HEAD(,atapi_hcb
) pending_hcbs
;
72 struct ata_device
*atadev
[2];
73 struct mtx state_lock
;
76 /* hardware command descriptor block */
78 struct atapi_xpt_softc
*softc
;
86 #define AUTOSENSE 0x0002
88 TAILQ_ENTRY(atapi_hcb
) chain
;
91 enum reinit_reason
{ BOOT_ATTACH
, ATTACH
, RESET
};
94 static void atapi_cam_identify(device_t
*dev
, device_t parent
);
95 static int atapi_cam_probe(device_t dev
);
96 static int atapi_cam_attach(device_t dev
);
97 static int atapi_cam_detach(device_t dev
);
98 static int atapi_cam_reinit(device_t dev
);
100 /* CAM XPT methods */
101 static void atapi_action(struct cam_sim
*, union ccb
*);
102 static void atapi_poll(struct cam_sim
*);
103 static void atapi_async(void *, u_int32_t
, struct cam_path
*, void *);
104 static void atapi_cb(struct ata_request
*);
107 static int atapi_cam_event_handler(module_t mod
, int what
, void *arg
);
109 /* internal functions */
110 static void reinit_bus(struct atapi_xpt_softc
*scp
, enum reinit_reason reason
);
111 static void setup_async_cb(struct atapi_xpt_softc
*, uint32_t);
112 static void cam_rescan_callback(struct cam_periph
*, union ccb
*);
113 static void cam_rescan(struct cam_sim
*);
114 static void free_hcb_and_ccb_done(struct atapi_hcb
*, u_int32_t
);
115 static struct atapi_hcb
*allocate_hcb(struct atapi_xpt_softc
*, int, int, union ccb
*);
116 static void free_hcb(struct atapi_hcb
*hcb
);
117 static void free_softc(struct atapi_xpt_softc
*scp
);
119 static MALLOC_DEFINE(M_ATACAM
, "ata_cam", "ATA driver CAM-XPT layer");
121 static device_method_t atapi_cam_methods
[] = {
122 DEVMETHOD(device_identify
, atapi_cam_identify
),
123 DEVMETHOD(device_probe
, atapi_cam_probe
),
124 DEVMETHOD(device_attach
, atapi_cam_attach
),
125 DEVMETHOD(device_detach
, atapi_cam_detach
),
126 DEVMETHOD(ata_reinit
, atapi_cam_reinit
),
130 static driver_t atapi_cam_driver
= {
133 sizeof(struct atapi_xpt_softc
)
136 static devclass_t atapi_cam_devclass
;
137 DRIVER_MODULE(atapicam
, ata
,
140 atapi_cam_event_handler
,
142 MODULE_VERSION(atapicam
, 1);
143 MODULE_DEPEND(atapicam
, ata
, 1, 1, 1);
144 MODULE_DEPEND(atapicam
, cam
, 1, 1, 1);
147 atapi_cam_identify(device_t
*dev
, device_t parent
)
149 struct atapi_xpt_softc
*scp
=
150 malloc (sizeof (struct atapi_xpt_softc
), M_ATACAM
, M_NOWAIT
|M_ZERO
);
154 printf ("atapi_cam_identify: out of memory");
158 /* Assume one atapicam instance per parent channel instance. */
159 child
= device_add_child(parent
, "atapicam", -1);
161 printf ("atapi_cam_identify: out of memory, can't add child");
162 free (scp
, M_ATACAM
);
165 scp
->atapi_cam_dev
.unit
= -1;
166 scp
->atapi_cam_dev
.dev
= child
;
168 device_set_softc(child
, scp
);
172 atapi_cam_probe(device_t dev
)
174 struct ata_device
*atadev
= device_get_softc (dev
);
176 KASSERT(atadev
!= NULL
, ("expect valid struct ata_device"));
177 if (atadev
->unit
< 0) {
178 device_set_desc(dev
, "ATAPI CAM Attachment");
186 atapi_cam_attach(device_t dev
)
188 struct atapi_xpt_softc
*scp
= NULL
;
189 struct cam_devq
*devq
= NULL
;
190 struct cam_sim
*sim
= NULL
;
191 struct cam_path
*path
= NULL
;
194 scp
= (struct atapi_xpt_softc
*)device_get_softc(dev
);
196 device_printf(dev
, "Cannot get softc\n");
200 mtx_init(&scp
->state_lock
, "ATAPICAM lock", NULL
, MTX_DEF
);
203 scp
->parent
= device_get_parent(dev
);
204 scp
->ata_ch
= device_get_softc(scp
->parent
);
205 TAILQ_INIT(&scp
->pending_hcbs
);
206 unit
= device_get_unit(dev
);
208 if ((devq
= cam_simq_alloc(16)) == NULL
) {
213 if ((sim
= cam_sim_alloc(atapi_action
, atapi_poll
, "ata",
214 (void *)scp
, unit
, &scp
->state_lock
, 1, 1, devq
)) == NULL
) {
220 mtx_lock(&scp
->state_lock
);
221 if (xpt_bus_register(sim
, dev
, 0) != CAM_SUCCESS
) {
223 mtx_unlock(&scp
->state_lock
);
226 scp
->flags
|= BUS_REGISTERED
;
228 if (xpt_create_path(&path
, /*periph*/ NULL
,
229 cam_sim_path(sim
), CAM_TARGET_WILDCARD
,
230 CAM_LUN_WILDCARD
) != CAM_REQ_CMP
) {
232 mtx_unlock(&scp
->state_lock
);
237 CAM_DEBUG(path
, CAM_DEBUG_TRACE
, ("Registered SIM for ata%d\n", unit
));
239 setup_async_cb(scp
, AC_LOST_DEVICE
);
240 reinit_bus(scp
, cold
? BOOT_ATTACH
: ATTACH
);
242 mtx_unlock(&scp
->state_lock
);
252 atapi_cam_detach(device_t dev
)
254 struct atapi_xpt_softc
*scp
= device_get_softc(dev
);
256 mtx_lock(&scp
->state_lock
);
257 xpt_freeze_simq(scp
->sim
, 1 /*count*/);
258 scp
->flags
|= DETACHING
;
259 mtx_unlock(&scp
->state_lock
);
265 atapi_cam_reinit(device_t dev
) {
266 struct atapi_xpt_softc
*scp
= device_get_softc(dev
);
269 * scp might be null if the bus is being reinitialised during
270 * the boot-up sequence, before the ATAPI bus is registered.
274 mtx_lock(&scp
->state_lock
);
275 reinit_bus(scp
, RESET
);
276 mtx_unlock(&scp
->state_lock
);
282 reinit_bus(struct atapi_xpt_softc
*scp
, enum reinit_reason reason
) {
283 struct ata_device
*old_atadev
[2], *atadev
;
285 int nchildren
, i
, dev_changed
;
287 if (device_get_children(scp
->parent
, &children
, &nchildren
) != 0) {
291 old_atadev
[0] = scp
->atadev
[0];
292 old_atadev
[1] = scp
->atadev
[1];
293 scp
->atadev
[0] = NULL
;
294 scp
->atadev
[1] = NULL
;
296 for (i
= 0; i
< nchildren
; i
++) {
297 /* XXX Does the child need to actually be attached yet? */
298 if (children
[i
] != NULL
) {
299 atadev
= device_get_softc(children
[i
]);
300 if ((atadev
->unit
== ATA_MASTER
) &&
301 (scp
->ata_ch
->devices
& ATA_ATAPI_MASTER
) != 0)
302 scp
->atadev
[0] = atadev
;
303 if ((atadev
->unit
== ATA_SLAVE
) &&
304 (scp
->ata_ch
->devices
& ATA_ATAPI_SLAVE
) != 0)
305 scp
->atadev
[1] = atadev
;
308 dev_changed
= (old_atadev
[0] != scp
->atadev
[0])
309 || (old_atadev
[1] != scp
->atadev
[1]);
310 free(children
, M_TEMP
);
316 xpt_async(AC_BUS_RESET
, scp
->path
, NULL
);
323 cam_rescan(scp
->sim
);
329 setup_async_cb(struct atapi_xpt_softc
*scp
, uint32_t events
)
331 struct ccb_setasync csa
;
333 xpt_setup_ccb(&csa
.ccb_h
, scp
->path
, /*priority*/ 5);
334 csa
.ccb_h
.func_code
= XPT_SASYNC_CB
;
335 csa
.event_enable
= events
;
336 csa
.callback
= &atapi_async
;
337 csa
.callback_arg
= scp
->sim
;
338 xpt_action((union ccb
*) &csa
);
342 atapi_action(struct cam_sim
*sim
, union ccb
*ccb
)
344 struct atapi_xpt_softc
*softc
= (struct atapi_xpt_softc
*)cam_sim_softc(sim
);
345 struct ccb_hdr
*ccb_h
= &ccb
->ccb_h
;
346 struct atapi_hcb
*hcb
= NULL
;
347 struct ata_request
*request
= NULL
;
348 int unit
= cam_sim_unit(sim
);
349 int bus
= cam_sim_bus(sim
);
353 switch (ccb_h
->func_code
) {
355 struct ccb_pathinq
*cpi
= &ccb
->cpi
;
356 int tid
= ccb_h
->target_id
;
358 cpi
->version_num
= 1;
359 cpi
->hba_inquiry
= 0;
360 cpi
->target_sprt
= 0;
361 cpi
->hba_misc
= PIM_NO_6_BYTE
;
362 cpi
->hba_eng_cnt
= 0;
363 bzero(cpi
->vuhba_flags
, sizeof(cpi
->vuhba_flags
));
366 cpi
->async_flags
= 0;
368 cpi
->initiator_id
= 7;
369 strncpy(cpi
->sim_vid
, "FreeBSD", sizeof(cpi
->sim_vid
));
370 strncpy(cpi
->hba_vid
, "ATAPI", sizeof(cpi
->hba_vid
));
371 strncpy(cpi
->dev_name
, cam_sim_name(sim
), sizeof cpi
->dev_name
);
372 cpi
->unit_number
= cam_sim_unit(sim
);
373 cpi
->bus_id
= cam_sim_bus(sim
);
374 cpi
->base_transfer_speed
= 3300;
375 cpi
->transport
= XPORT_ATA
;
376 cpi
->transport_version
= 2;
377 cpi
->protocol
= PROTO_SCSI
;
378 cpi
->protocol_version
= SCSI_REV_2
;
380 if (softc
->ata_ch
&& tid
!= CAM_TARGET_WILDCARD
) {
381 if (softc
->atadev
[tid
] == NULL
) {
382 ccb
->ccb_h
.status
= CAM_DEV_NOT_THERE
;
386 switch (softc
->atadev
[ccb_h
->target_id
]->mode
) {
388 cpi
->base_transfer_speed
= 5200;
391 cpi
->base_transfer_speed
= 7000;
394 cpi
->base_transfer_speed
= 11000;
399 cpi
->base_transfer_speed
= 16000;
402 cpi
->base_transfer_speed
= 33000;
405 cpi
->base_transfer_speed
= 66000;
408 cpi
->base_transfer_speed
= 100000;
411 cpi
->base_transfer_speed
= 133000;
417 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
422 case XPT_RESET_DEV
: {
423 int tid
= ccb_h
->target_id
;
425 CAM_DEBUG(ccb
->ccb_h
.path
, CAM_DEBUG_SUBTRACE
, ("dev reset\n"));
426 mtx_unlock(&softc
->state_lock
);
427 ata_controlcmd(softc
->atadev
[tid
]->dev
, ATA_DEVICE_RESET
, 0, 0, 0);
428 mtx_lock(&softc
->state_lock
);
429 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
435 CAM_DEBUG(ccb
->ccb_h
.path
, CAM_DEBUG_SUBTRACE
, ("bus reset\n"));
436 mtx_unlock(&softc
->state_lock
);
437 ata_reinit(softc
->parent
);
438 mtx_lock(&softc
->state_lock
);
439 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
443 case XPT_SET_TRAN_SETTINGS
:
444 /* ignore these, we're not doing SCSI here */
445 CAM_DEBUG(ccb
->ccb_h
.path
, CAM_DEBUG_SUBTRACE
,
446 ("SET_TRAN_SETTINGS not supported\n"));
447 ccb
->ccb_h
.status
= CAM_FUNC_NOTAVAIL
;
451 case XPT_GET_TRAN_SETTINGS
: {
452 struct ccb_trans_settings
*cts
= &ccb
->cts
;
453 cts
->protocol
= PROTO_SCSI
;
454 cts
->protocol_version
= SCSI_REV_2
;
455 cts
->transport
= XPORT_ATA
;
456 cts
->transport_version
= XPORT_VERSION_UNSPECIFIED
;
457 cts
->proto_specific
.valid
= 0;
458 cts
->xport_specific
.valid
= 0;
459 /* nothing more to do */
460 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
461 CAM_DEBUG(ccb
->ccb_h
.path
, CAM_DEBUG_SUBTRACE
, ("GET_TRAN_SETTINGS\n"));
466 case XPT_CALC_GEOMETRY
: {
467 CAM_DEBUG(ccb
->ccb_h
.path
, CAM_DEBUG_SUBTRACE
, ("CALC_GEOMETRY\n"));
468 cam_calc_geometry(&ccb
->ccg
, /*extended*/1);
474 struct ccb_scsiio
*csio
= &ccb
->csio
;
475 int tid
= ccb_h
->target_id
, lid
= ccb_h
->target_lun
;
476 int request_flags
= ATA_R_ATAPI
;
478 CAM_DEBUG(ccb_h
->path
, CAM_DEBUG_SUBTRACE
, ("XPT_SCSI_IO\n"));
480 if (softc
->flags
& DETACHING
) {
481 ccb
->ccb_h
.status
= CAM_REQ_ABORTED
;
486 if (softc
->atadev
[tid
] == NULL
) {
487 ccb
->ccb_h
.status
= CAM_DEV_NOT_THERE
;
492 /* check that this request was not aborted already */
493 if ((ccb_h
->status
& CAM_STATUS_MASK
) != CAM_REQ_INPROG
) {
494 printf("XPT_SCSI_IO received but already in progress?\n");
499 CAM_DEBUG(ccb_h
->path
, CAM_DEBUG_SUBTRACE
,
500 ("SCSI IO received for invalid lun %d\n", lid
));
503 if (csio
->cdb_len
> sizeof request
->u
.atapi
.ccb
) {
504 CAM_DEBUG(ccb_h
->path
, CAM_DEBUG_SUBTRACE
,
505 ("CAM CCB too long for ATAPI"));
508 if ((ccb_h
->flags
& CAM_SCATTER_VALID
)) {
509 /* scatter-gather not supported */
510 xpt_print_path(ccb_h
->path
);
511 printf("ATAPI/CAM does not support scatter-gather yet!\n");
515 switch (ccb_h
->flags
& CAM_DIR_MASK
) {
517 request_flags
|= ATA_R_READ
;
520 request_flags
|= ATA_R_WRITE
;
523 /* No flags need to be set */
526 device_printf(softc
->dev
, "unknown IO operation\n");
530 if ((hcb
= allocate_hcb(softc
, unit
, bus
, ccb
)) == NULL
) {
531 printf("cannot allocate ATAPI/CAM hcb\n");
534 if ((request
= ata_alloc_request()) == NULL
) {
535 printf("cannot allocate ATAPI/CAM request\n");
539 bcopy((ccb_h
->flags
& CAM_CDB_POINTER
) ?
540 csio
->cdb_io
.cdb_ptr
: csio
->cdb_io
.cdb_bytes
,
541 request
->u
.atapi
.ccb
, csio
->cdb_len
);
543 if (CAM_DEBUGGED(ccb_h
->path
, CAM_DEBUG_CDB
)) {
544 char cdb_str
[(SCSI_MAX_CDBLEN
* 3) + 1];
546 printf("atapi_action: hcb@%p: %s\n", hcb
,
547 scsi_cdb_string(request
->u
.atapi
.ccb
, cdb_str
, sizeof(cdb_str
)));
549 if (CAM_DEBUGGED(ccb_h
->path
, CAM_DEBUG_SUBTRACE
)) {
550 request_flags
|= ATA_R_DEBUG
;
554 len
= csio
->dxfer_len
;
555 buf
= csio
->data_ptr
;
557 /* some SCSI commands require special processing */
558 switch (request
->u
.atapi
.ccb
[0]) {
561 * many ATAPI devices seem to report more than
562 * SHORT_INQUIRY_LENGTH bytes of available INQUIRY
563 * information, but respond with some incorrect condition
564 * when actually asked for it, so we are going to pretend
565 * that only SHORT_INQUIRY_LENGTH are expected, anyway.
567 struct scsi_inquiry
*inq
= (struct scsi_inquiry
*) &request
->u
.atapi
.ccb
[0];
569 if (inq
->byte2
== 0 && inq
->page_code
== 0 &&
570 inq
->length
> SHORT_INQUIRY_LENGTH
) {
572 len
= inq
->length
= SHORT_INQUIRY_LENGTH
;
580 CAM_DEBUG(ccb_h
->path
, CAM_DEBUG_SUBTRACE
,
581 ("Translating %s into _10 equivalent\n",
582 (request
->u
.atapi
.ccb
[0] == READ_6
) ? "READ_6" : "WRITE_6"));
583 request
->u
.atapi
.ccb
[0] |= 0x20;
584 request
->u
.atapi
.ccb
[9] = request
->u
.atapi
.ccb
[5];
585 request
->u
.atapi
.ccb
[8] = request
->u
.atapi
.ccb
[4];
586 request
->u
.atapi
.ccb
[7] = 0;
587 request
->u
.atapi
.ccb
[6] = 0;
588 request
->u
.atapi
.ccb
[5] = request
->u
.atapi
.ccb
[3];
589 request
->u
.atapi
.ccb
[4] = request
->u
.atapi
.ccb
[2];
590 request
->u
.atapi
.ccb
[3] = request
->u
.atapi
.ccb
[1] & 0x1f;
591 request
->u
.atapi
.ccb
[2] = 0;
592 request
->u
.atapi
.ccb
[1] = 0;
603 * Enable DMA (if target supports it) for READ and WRITE commands
604 * only, as some combinations of drive, controller and chipset do
605 * not behave correctly when DMA is enabled for other commands.
607 if (softc
->atadev
[tid
]->mode
>= ATA_DMA
)
608 request_flags
|= ATA_R_DMA
;
613 if ((ccb_h
->flags
& CAM_DIR_MASK
) == CAM_DIR_IN
&& (len
& 1)) {
614 /* ATA always transfers an even number of bytes */
615 if ((buf
= hcb
->dxfer_alloc
616 = malloc(++len
, M_ATACAM
, M_NOWAIT
| M_ZERO
)) == NULL
) {
617 printf("cannot allocate ATAPI/CAM buffer\n");
621 request
->dev
= softc
->atadev
[tid
]->dev
;
622 request
->driver
= hcb
;
624 request
->bytecount
= len
;
625 request
->transfersize
= min(request
->bytecount
, 65534);
626 request
->timeout
= ccb_h
->timeout
/ 1000; /* XXX lost granularity */
627 request
->callback
= &atapi_cb
;
628 request
->flags
= request_flags
;
631 * no retries are to be performed at the ATA level; any retries
632 * will be done by CAM.
634 request
->retries
= 0;
636 TAILQ_INSERT_TAIL(&softc
->pending_hcbs
, hcb
, chain
);
637 hcb
->flags
|= QUEUED
;
638 ccb_h
->status
|= CAM_SIM_QUEUED
;
639 mtx_unlock(&softc
->state_lock
);
641 ata_queue_request(request
);
642 mtx_lock(&softc
->state_lock
);
647 CAM_DEBUG(ccb_h
->path
, CAM_DEBUG_SUBTRACE
,
648 ("unsupported function code 0x%02x\n", ccb_h
->func_code
));
656 ata_free_request(request
);
659 xpt_print_path(ccb_h
->path
);
660 printf("out of memory, freezing queue.\n");
661 softc
->flags
|= RESOURCE_SHORTAGE
;
662 xpt_freeze_simq(sim
, /*count*/ 1);
663 ccb_h
->status
= CAM_REQUEUE_REQ
;
665 mtx_unlock(&softc
->state_lock
);
669 ccb_h
->status
= CAM_REQ_INVALID
;
671 mtx_unlock(&softc
->state_lock
);
676 atapi_poll(struct cam_sim
*sim
)
678 /* do nothing - we do not actually service any interrupts */
679 printf("atapi_poll called!\n");
683 atapi_cb(struct ata_request
*request
)
685 struct atapi_xpt_softc
*scp
;
686 struct atapi_hcb
*hcb
;
687 struct ccb_scsiio
*csio
;
690 hcb
= (struct atapi_hcb
*)request
->driver
;
692 csio
= &hcb
->ccb
->csio
;
695 # define err (request->u.atapi.sense.key)
696 if (CAM_DEBUGGED(csio
->ccb_h
.path
, CAM_DEBUG_CDB
)) {
697 printf("atapi_cb: hcb@%p sense = %02x: sk = %01x%s%s%s\n",
698 hcb
, err
, err
& 0x0f,
699 (err
& 0x80) ? ", Filemark" : "",
700 (err
& 0x40) ? ", EOM" : "",
701 (err
& 0x20) ? ", ILI" : "");
702 device_printf(request
->dev
,
703 "cmd %s status %02x result %02x error %02x\n",
704 ata_cmd2str(request
),
705 request
->status
, request
->result
, request
->error
);
709 if ((hcb
->flags
& AUTOSENSE
) != 0) {
710 rc
= CAM_SCSI_STATUS_ERROR
;
711 if (request
->result
== 0) {
712 csio
->ccb_h
.status
|= CAM_AUTOSNS_VALID
;
714 } else if (request
->result
!= 0) {
715 if ((request
->flags
& ATA_R_TIMEOUT
) != 0) {
716 rc
= CAM_CMD_TIMEOUT
;
718 rc
= CAM_SCSI_STATUS_ERROR
;
719 csio
->scsi_status
= SCSI_STATUS_CHECK_COND
;
721 if ((csio
->ccb_h
.flags
& CAM_DIS_AUTOSENSE
) == 0) {
723 static const int8_t ccb
[16] = { ATAPI_REQUEST_SENSE
, 0, 0, 0,
724 sizeof(struct atapi_sense
), 0, 0, 0, 0, 0, 0,
727 bcopy (ccb
, request
->u
.atapi
.ccb
, sizeof ccb
);
728 request
->data
= (caddr_t
)&csio
->sense_data
;
729 request
->bytecount
= sizeof(struct atapi_sense
);
730 request
->transfersize
= min(request
->bytecount
, 65534);
731 request
->timeout
= csio
->ccb_h
.timeout
/ 1000;
732 request
->retries
= 2;
733 request
->flags
= ATA_R_QUIET
|ATA_R_ATAPI
|ATA_R_IMMEDIATE
;
734 hcb
->flags
|= AUTOSENSE
;
736 ata_queue_request(request
);
740 * Use auto-sense data from the ATA layer, if it has
741 * issued a REQUEST SENSE automatically and that operation
742 * returned without error.
744 if (request
->u
.atapi
.sense
.key
!= 0 && request
->error
== 0) {
745 bcopy (&request
->u
.atapi
.sense
, &csio
->sense_data
, sizeof(struct atapi_sense
));
746 csio
->ccb_h
.status
|= CAM_AUTOSNS_VALID
;
753 csio
->scsi_status
= SCSI_STATUS_OK
;
754 if (((csio
->ccb_h
.flags
& CAM_DIR_MASK
) == CAM_DIR_IN
) &&
755 hcb
->dxfer_alloc
!= NULL
)
757 bcopy(hcb
->dxfer_alloc
, csio
->data_ptr
, csio
->dxfer_len
);
761 mtx_lock(&scp
->state_lock
);
762 free_hcb_and_ccb_done(hcb
, rc
);
763 mtx_unlock(&scp
->state_lock
);
765 ata_free_request(request
);
769 free_hcb_and_ccb_done(struct atapi_hcb
*hcb
, u_int32_t status
)
771 struct atapi_xpt_softc
*softc
;
780 /* we're about to free a hcb, so the shortage has ended */
781 if (softc
->flags
& RESOURCE_SHORTAGE
) {
782 softc
->flags
&= ~RESOURCE_SHORTAGE
;
783 status
|= CAM_RELEASE_SIMQ
;
787 status
| (ccb
->ccb_h
.status
& ~(CAM_STATUS_MASK
| CAM_SIM_QUEUED
));
792 atapi_async(void *callback_arg
, u_int32_t code
,
793 struct cam_path
* path
, void *arg
)
795 struct atapi_xpt_softc
*softc
;
801 sim
= (struct cam_sim
*) callback_arg
;
802 softc
= (struct atapi_xpt_softc
*) cam_sim_softc(sim
);
805 targ
= xpt_path_target_id(path
);
806 xpt_print_path(path
);
808 printf("Lost host adapter\n");
810 printf("Lost target %d???\n", targ
);
819 cam_rescan_callback(struct cam_periph
*periph
, union ccb
*ccb
)
821 if (ccb
->ccb_h
.status
!= CAM_REQ_CMP
) {
822 CAM_DEBUG(ccb
->ccb_h
.path
, CAM_DEBUG_TRACE
,
823 ("Rescan failed, 0x%04x\n", ccb
->ccb_h
.status
));
825 CAM_DEBUG(ccb
->ccb_h
.path
, CAM_DEBUG_TRACE
,
826 ("Rescan succeeded\n"));
828 xpt_free_path(ccb
->ccb_h
.path
);
833 cam_rescan(struct cam_sim
*sim
)
835 struct cam_path
*path
;
838 ccb
= xpt_alloc_ccb_nowait();
842 if (xpt_create_path(&path
, xpt_periph
, cam_sim_path(sim
),
843 CAM_TARGET_WILDCARD
, CAM_LUN_WILDCARD
) != CAM_REQ_CMP
) {
848 CAM_DEBUG(path
, CAM_DEBUG_TRACE
, ("Rescanning ATAPI bus.\n"));
849 xpt_setup_ccb(&ccb
->ccb_h
, path
, 5/*priority (low)*/);
850 ccb
->ccb_h
.func_code
= XPT_SCAN_BUS
;
851 ccb
->ccb_h
.cbfcnp
= cam_rescan_callback
;
852 ccb
->crcn
.flags
= CAM_FLAG_NONE
;
854 /* scan is in progress now */
857 static struct atapi_hcb
*
858 allocate_hcb(struct atapi_xpt_softc
*softc
, int unit
, int bus
, union ccb
*ccb
)
860 struct atapi_hcb
*hcb
= (struct atapi_hcb
*)
861 malloc(sizeof(struct atapi_hcb
), M_ATACAM
, M_NOWAIT
| M_ZERO
);
873 free_hcb(struct atapi_hcb
*hcb
)
875 if ((hcb
->flags
& QUEUED
) != 0)
876 TAILQ_REMOVE(&hcb
->softc
->pending_hcbs
, hcb
, chain
);
877 if (hcb
->dxfer_alloc
!= NULL
)
878 free(hcb
->dxfer_alloc
, M_ATACAM
);
883 free_softc(struct atapi_xpt_softc
*scp
)
885 struct atapi_hcb
*hcb
;
888 mtx_lock(&scp
->state_lock
);
889 TAILQ_FOREACH(hcb
, &scp
->pending_hcbs
, chain
) {
890 free_hcb_and_ccb_done(hcb
, CAM_UNREC_HBA_ERROR
);
892 if (scp
->path
!= NULL
) {
893 setup_async_cb(scp
, 0);
894 xpt_free_path(scp
->path
);
896 if ((scp
->flags
& BUS_REGISTERED
) != 0) {
897 if (xpt_bus_deregister(cam_sim_path(scp
->sim
)) == CAM_REQ_CMP
)
898 scp
->flags
&= ~BUS_REGISTERED
;
900 if (scp
->sim
!= NULL
) {
901 if ((scp
->flags
& BUS_REGISTERED
) == 0)
902 cam_sim_free(scp
->sim
, /*free_devq*/TRUE
);
904 printf("Can't free %s SIM (still registered)\n",
905 cam_sim_name(scp
->sim
));
907 mtx_destroy(&scp
->state_lock
);
912 atapi_cam_event_handler(module_t mod
, int what
, void *arg
) {
918 if (devclass_get_devices(atapi_cam_devclass
, &devlist
, &devcount
)
921 if (devlist
!= NULL
) {
922 while (devlist
!= NULL
&& devcount
> 0) {
923 device_t child
= devlist
[--devcount
];
924 struct atapi_xpt_softc
*scp
= device_get_softc(child
);
926 device_delete_child(device_get_parent(child
),child
);
930 free(devlist
, M_TEMP
);