1 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
3 #include <linux/sched.h>
4 #include <linux/errno.h>
5 #include <linux/slab.h>
8 #include <scsi/scsi_eh.h>
9 #include <scsi/scsi_device.h>
13 #include "transport.h"
15 /***********************************************************************
16 * Data transfer routines
17 ***********************************************************************/
19 * usb_stor_blocking_completion()
21 static void usb_stor_blocking_completion(struct urb
*urb
)
23 struct completion
*urb_done_ptr
= urb
->context
;
25 /* pr_info("transport --- usb_stor_blocking_completion\n"); */
26 complete(urb_done_ptr
);
30 * usb_stor_msg_common()
32 static int usb_stor_msg_common(struct us_data
*us
, int timeout
)
34 struct completion urb_done
;
38 /* pr_info("transport --- usb_stor_msg_common\n"); */
39 if (test_bit(US_FLIDX_ABORTING
, &us
->dflags
))
42 init_completion(&urb_done
);
44 us
->current_urb
->context
= &urb_done
;
45 us
->current_urb
->actual_length
= 0;
46 us
->current_urb
->error_count
= 0;
47 us
->current_urb
->status
= 0;
49 us
->current_urb
->transfer_flags
= 0;
50 if (us
->current_urb
->transfer_buffer
== us
->iobuf
)
51 us
->current_urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
52 us
->current_urb
->transfer_dma
= us
->iobuf_dma
;
53 us
->current_urb
->setup_dma
= us
->cr_dma
;
55 status
= usb_submit_urb(us
->current_urb
, GFP_NOIO
);
59 set_bit(US_FLIDX_URB_ACTIVE
, &us
->dflags
);
61 if (test_bit(US_FLIDX_ABORTING
, &us
->dflags
)) {
62 if (test_and_clear_bit(US_FLIDX_URB_ACTIVE
, &us
->dflags
)) {
63 /* pr_info("-- cancelling URB\n"); */
64 usb_unlink_urb(us
->current_urb
);
68 timeleft
= wait_for_completion_interruptible_timeout(&urb_done
,
69 timeout
? : MAX_SCHEDULE_TIMEOUT
);
70 clear_bit(US_FLIDX_URB_ACTIVE
, &us
->dflags
);
73 /* pr_info("%s -- cancelling URB\n",
74 timeleft == 0 ? "Timeout" : "Signal"); */
75 usb_kill_urb(us
->current_urb
);
78 return us
->current_urb
->status
;
82 * usb_stor_control_msg()
84 int usb_stor_control_msg(struct us_data
*us
, unsigned int pipe
,
85 u8 request
, u8 requesttype
, u16 value
, u16 index
,
86 void *data
, u16 size
, int timeout
)
90 /* pr_info("transport --- usb_stor_control_msg\n"); */
92 /* fill in the devrequest structure */
93 us
->cr
->bRequestType
= requesttype
;
94 us
->cr
->bRequest
= request
;
95 us
->cr
->wValue
= cpu_to_le16(value
);
96 us
->cr
->wIndex
= cpu_to_le16(index
);
97 us
->cr
->wLength
= cpu_to_le16(size
);
99 /* fill and submit the URB */
100 usb_fill_control_urb(us
->current_urb
, us
->pusb_dev
, pipe
,
101 (unsigned char *) us
->cr
, data
, size
,
102 usb_stor_blocking_completion
, NULL
);
103 status
= usb_stor_msg_common(us
, timeout
);
105 /* return the actual length of the data transferred if no error */
107 status
= us
->current_urb
->actual_length
;
112 * usb_stor_clear_halt()
114 int usb_stor_clear_halt(struct us_data
*us
, unsigned int pipe
)
117 int endp
= usb_pipeendpoint(pipe
);
119 /* pr_info("transport --- usb_stor_clear_halt\n"); */
120 if (usb_pipein(pipe
))
123 result
= usb_stor_control_msg(us
, us
->send_ctrl_pipe
,
124 USB_REQ_CLEAR_FEATURE
, USB_RECIP_ENDPOINT
,
125 USB_ENDPOINT_HALT
, endp
,
128 /* reset the endpoint toggle */
130 /* usb_settoggle(us->pusb_dev, usb_pipeendpoint(pipe),
131 usb_pipeout(pipe), 0); */
132 usb_reset_endpoint(us
->pusb_dev
, endp
);
138 * interpret_urb_result()
140 static int interpret_urb_result(struct us_data
*us
, unsigned int pipe
,
141 unsigned int length
, int result
, unsigned int partial
)
143 /* pr_info("transport --- interpret_urb_result\n"); */
145 /* no error code; did we send all the data? */
147 if (partial
!= length
) {
148 /* pr_info("-- short transfer\n"); */
149 return USB_STOR_XFER_SHORT
;
151 /* pr_info("-- transfer complete\n"); */
152 return USB_STOR_XFER_GOOD
;
154 if (usb_pipecontrol(pipe
)) {
155 /* pr_info("-- stall on control pipe\n"); */
156 return USB_STOR_XFER_STALLED
;
158 /* pr_info("clearing endpoint halt for pipe 0x%x\n", pipe); */
159 if (usb_stor_clear_halt(us
, pipe
) < 0)
160 return USB_STOR_XFER_ERROR
;
161 return USB_STOR_XFER_STALLED
;
163 /* pr_info("-- babble\n"); */
164 return USB_STOR_XFER_LONG
;
166 /* pr_info("-- transfer cancelled\n"); */
167 return USB_STOR_XFER_ERROR
;
169 /* pr_info("-- short read transfer\n"); */
170 return USB_STOR_XFER_SHORT
;
172 /* pr_info("-- abort or disconnect in progress\n"); */
173 return USB_STOR_XFER_ERROR
;
175 /* pr_info("-- unknown error\n"); */
176 return USB_STOR_XFER_ERROR
;
181 * usb_stor_bulk_transfer_buf()
183 int usb_stor_bulk_transfer_buf(struct us_data
*us
, unsigned int pipe
,
184 void *buf
, unsigned int length
, unsigned int *act_len
)
188 /* pr_info("transport --- usb_stor_bulk_transfer_buf\n"); */
190 /* fill and submit the URB */
191 usb_fill_bulk_urb(us
->current_urb
, us
->pusb_dev
, pipe
, buf
,
192 length
, usb_stor_blocking_completion
, NULL
);
193 result
= usb_stor_msg_common(us
, 0);
195 /* store the actual length of the data transferred */
197 *act_len
= us
->current_urb
->actual_length
;
199 return interpret_urb_result(us
, pipe
, length
, result
,
200 us
->current_urb
->actual_length
);
204 * usb_stor_bulk_transfer_sglist()
206 static int usb_stor_bulk_transfer_sglist(struct us_data
*us
, unsigned int pipe
,
207 struct scatterlist
*sg
, int num_sg
, unsigned int length
,
208 unsigned int *act_len
)
212 /* pr_info("transport --- usb_stor_bulk_transfer_sglist\n"); */
213 if (test_bit(US_FLIDX_ABORTING
, &us
->dflags
))
214 return USB_STOR_XFER_ERROR
;
216 /* initialize the scatter-gather request block */
217 result
= usb_sg_init(&us
->current_sg
, us
->pusb_dev
, pipe
, 0,
218 sg
, num_sg
, length
, GFP_NOIO
);
220 /* pr_info("usb_sg_init returned %d\n", result); */
221 return USB_STOR_XFER_ERROR
;
224 /* since the block has been initialized successfully,
225 it's now okay to cancel it */
226 set_bit(US_FLIDX_SG_ACTIVE
, &us
->dflags
);
228 /* did an abort/disconnect occur during the submission? */
229 if (test_bit(US_FLIDX_ABORTING
, &us
->dflags
)) {
230 /* cancel the request, if it hasn't been cancelled already */
231 if (test_and_clear_bit(US_FLIDX_SG_ACTIVE
, &us
->dflags
)) {
232 /* pr_info("-- cancelling sg request\n"); */
233 usb_sg_cancel(&us
->current_sg
);
237 /* wait for the completion of the transfer */
238 usb_sg_wait(&us
->current_sg
);
239 clear_bit(US_FLIDX_SG_ACTIVE
, &us
->dflags
);
241 result
= us
->current_sg
.status
;
243 *act_len
= us
->current_sg
.bytes
;
245 return interpret_urb_result(us
, pipe
, length
,
246 result
, us
->current_sg
.bytes
);
250 * usb_stor_bulk_srb()
252 int usb_stor_bulk_srb(struct us_data
*us
, unsigned int pipe
,
253 struct scsi_cmnd
*srb
)
255 unsigned int partial
;
256 int result
= usb_stor_bulk_transfer_sglist(us
, pipe
, scsi_sglist(srb
),
257 scsi_sg_count(srb
), scsi_bufflen(srb
),
260 scsi_set_resid(srb
, scsi_bufflen(srb
) - partial
);
265 * usb_stor_bulk_transfer_sg()
267 int usb_stor_bulk_transfer_sg(struct us_data
*us
, unsigned int pipe
,
268 void *buf
, unsigned int length_left
, int use_sg
, int *residual
)
271 unsigned int partial
;
273 /* pr_info("transport --- usb_stor_bulk_transfer_sg\n"); */
274 /* are we scatter-gathering? */
276 /* use the usb core scatter-gather primitives */
277 result
= usb_stor_bulk_transfer_sglist(us
, pipe
,
278 (struct scatterlist
*) buf
, use_sg
,
279 length_left
, &partial
);
280 length_left
-= partial
;
282 /* no scatter-gather, just make the request */
283 result
= usb_stor_bulk_transfer_buf(us
, pipe
, buf
,
284 length_left
, &partial
);
285 length_left
-= partial
;
288 /* store the residual and return the error code */
290 *residual
= length_left
;
294 /***********************************************************************
296 ***********************************************************************/
298 * usb_stor_invoke_transport()
300 void usb_stor_invoke_transport(struct scsi_cmnd
*srb
, struct us_data
*us
)
305 /* pr_info("transport --- usb_stor_invoke_transport\n"); */
306 usb_stor_print_cmd(srb
);
307 /* send the command to the transport layer */
308 scsi_set_resid(srb
, 0);
309 result
= us
->transport(srb
, us
); /* usb_stor_Bulk_transport; */
311 /* if the command gets aborted by the higher layers,
312 we need to short-circuit all other processing */
313 if (test_bit(US_FLIDX_TIMED_OUT
, &us
->dflags
)) {
314 /* pr_info("-- command was aborted\n"); */
315 srb
->result
= DID_ABORT
<< 16;
319 /* if there is a transport error, reset and don't auto-sense */
320 if (result
== USB_STOR_TRANSPORT_ERROR
) {
321 /* pr_info("-- transport indicates error, resetting\n"); */
322 srb
->result
= DID_ERROR
<< 16;
326 /* if the transport provided its own sense data, don't auto-sense */
327 if (result
== USB_STOR_TRANSPORT_NO_SENSE
) {
328 srb
->result
= SAM_STAT_CHECK_CONDITION
;
332 srb
->result
= SAM_STAT_GOOD
;
334 /* Determine if we need to auto-sense */
337 if ((us
->protocol
== USB_PR_CB
|| us
->protocol
== USB_PR_DPCM_USB
) &&
338 srb
->sc_data_direction
!= DMA_FROM_DEVICE
) {
339 /* pr_info("-- CB transport device requiring auto-sense\n"); */
343 if (result
== USB_STOR_TRANSPORT_FAILED
) {
344 /* pr_info("-- transport indicates command failure\n"); */
348 /* Now, if we need to do the auto-sense, let's do it */
349 if (need_auto_sense
) {
351 struct scsi_eh_save ses
;
353 pr_info("Issuing auto-REQUEST_SENSE\n");
355 scsi_eh_prep_cmnd(srb
, &ses
, NULL
, 0, US_SENSE_SIZE
);
357 /* we must do the protocol translation here */
358 if (us
->subclass
== USB_SC_RBC
||
359 us
->subclass
== USB_SC_SCSI
||
360 us
->subclass
== USB_SC_CYP_ATACB
) {
365 /* issue the auto-sense command */
366 scsi_set_resid(srb
, 0);
367 temp_result
= us
->transport(us
->srb
, us
);
369 /* let's clean up right away */
370 scsi_eh_restore_cmnd(srb
, &ses
);
372 if (test_bit(US_FLIDX_TIMED_OUT
, &us
->dflags
)) {
373 /* pr_info("-- auto-sense aborted\n"); */
374 srb
->result
= DID_ABORT
<< 16;
377 if (temp_result
!= USB_STOR_TRANSPORT_GOOD
) {
378 /* pr_info("-- auto-sense failure\n"); */
379 srb
->result
= DID_ERROR
<< 16;
380 if (!(us
->fflags
& US_FL_SCM_MULT_TARG
))
385 /* set the result so the higher layers expect this data */
386 srb
->result
= SAM_STAT_CHECK_CONDITION
;
388 if (result
== USB_STOR_TRANSPORT_GOOD
&&
389 (srb
->sense_buffer
[2] & 0xaf) == 0 &&
390 srb
->sense_buffer
[12] == 0 &&
391 srb
->sense_buffer
[13] == 0) {
392 srb
->result
= SAM_STAT_GOOD
;
393 srb
->sense_buffer
[0] = 0x0;
397 /* Did we transfer less than the minimum amount required? */
398 if (srb
->result
== SAM_STAT_GOOD
&& scsi_bufflen(srb
) -
399 scsi_get_resid(srb
) < srb
->underflow
)
400 srb
->result
= (DID_ERROR
<< 16);
401 /* v02 | (SUGGEST_RETRY << 24); */
406 scsi_lock(us_to_host(us
));
407 set_bit(US_FLIDX_RESETTING
, &us
->dflags
);
408 clear_bit(US_FLIDX_ABORTING
, &us
->dflags
);
409 scsi_unlock(us_to_host(us
));
411 mutex_unlock(&us
->dev_mutex
);
412 result
= usb_stor_port_reset(us
);
413 mutex_lock(&us
->dev_mutex
);
416 scsi_lock(us_to_host(us
));
417 usb_stor_report_device_reset(us
);
418 scsi_unlock(us_to_host(us
));
419 us
->transport_reset(us
);
421 clear_bit(US_FLIDX_RESETTING
, &us
->dflags
);
425 * ENE_stor_invoke_transport()
427 void ENE_stor_invoke_transport(struct scsi_cmnd
*srb
, struct us_data
*us
)
431 /* pr_info("transport --- ENE_stor_invoke_transport\n"); */
432 usb_stor_print_cmd(srb
);
433 /* send the command to the transport layer */
434 scsi_set_resid(srb
, 0);
435 if (!(us
->SM_Status
.Ready
))
436 result
= ENE_InitMedia(us
);
438 if (us
->Power_IsResum
== true) {
439 result
= ENE_InitMedia(us
);
440 us
->Power_IsResum
= false;
443 if (us
->SM_Status
.Ready
)
444 result
= SM_SCSIIrp(us
, srb
);
446 /* if the command gets aborted by the higher layers,
447 we need to short-circuit all other processing */
448 if (test_bit(US_FLIDX_TIMED_OUT
, &us
->dflags
)) {
449 /* pr_info("-- command was aborted\n"); */
450 srb
->result
= DID_ABORT
<< 16;
454 /* if there is a transport error, reset and don't auto-sense */
455 if (result
== USB_STOR_TRANSPORT_ERROR
) {
456 /* pr_info("-- transport indicates error, resetting\n"); */
457 srb
->result
= DID_ERROR
<< 16;
461 /* if the transport provided its own sense data, don't auto-sense */
462 if (result
== USB_STOR_TRANSPORT_NO_SENSE
) {
463 srb
->result
= SAM_STAT_CHECK_CONDITION
;
467 srb
->result
= SAM_STAT_GOOD
;
468 if (result
== USB_STOR_TRANSPORT_FAILED
) {
469 /* pr_info("-- transport indicates command failure\n"); */
470 /* need_auto_sense = 1; */
471 BuildSenseBuffer(srb
, us
->SrbStatus
);
472 srb
->result
= SAM_STAT_CHECK_CONDITION
;
475 /* Did we transfer less than the minimum amount required? */
476 if (srb
->result
== SAM_STAT_GOOD
&& scsi_bufflen(srb
) -
477 scsi_get_resid(srb
) < srb
->underflow
)
478 srb
->result
= (DID_ERROR
<< 16);
479 /* v02 | (SUGGEST_RETRY << 24); */
484 scsi_lock(us_to_host(us
));
485 set_bit(US_FLIDX_RESETTING
, &us
->dflags
);
486 clear_bit(US_FLIDX_ABORTING
, &us
->dflags
);
487 scsi_unlock(us_to_host(us
));
489 mutex_unlock(&us
->dev_mutex
);
490 result
= usb_stor_port_reset(us
);
491 mutex_lock(&us
->dev_mutex
);
494 scsi_lock(us_to_host(us
));
495 usb_stor_report_device_reset(us
);
496 scsi_unlock(us_to_host(us
));
497 us
->transport_reset(us
);
499 clear_bit(US_FLIDX_RESETTING
, &us
->dflags
);
505 void BuildSenseBuffer(struct scsi_cmnd
*srb
, int SrbStatus
)
507 BYTE
*buf
= srb
->sense_buffer
;
510 pr_info("transport --- BuildSenseBuffer\n");
514 break; /* sense key = 0x02 */
517 break; /* sense key = 0x03 */
518 case SS_ILLEGAL_REQUEST
:
520 break; /* sense key = 0x05 */
528 buf
[0x02] = SrbStatus
;
534 * usb_stor_stop_transport()
536 void usb_stor_stop_transport(struct us_data
*us
)
538 /* pr_info("transport --- usb_stor_stop_transport\n"); */
540 if (test_and_clear_bit(US_FLIDX_URB_ACTIVE
, &us
->dflags
)) {
541 /* pr_info("-- cancelling URB\n"); */
542 usb_unlink_urb(us
->current_urb
);
545 if (test_and_clear_bit(US_FLIDX_SG_ACTIVE
, &us
->dflags
)) {
546 /* pr_info("-- cancelling sg request\n"); */
547 usb_sg_cancel(&us
->current_sg
);
552 * usb_stor_Bulk_max_lun()
554 int usb_stor_Bulk_max_lun(struct us_data
*us
)
558 /* pr_info("transport --- usb_stor_Bulk_max_lun\n"); */
559 /* issue the command */
561 result
= usb_stor_control_msg(us
, us
->recv_ctrl_pipe
,
563 USB_DIR_IN
| USB_TYPE_CLASS
|
565 0, us
->ifnum
, us
->iobuf
, 1, HZ
);
567 /* pr_info("GetMaxLUN command result is %d, data is %d\n",
568 result, us->iobuf[0]); */
570 /* if we have a successful request, return the result */
578 * usb_stor_Bulk_transport()
580 int usb_stor_Bulk_transport(struct scsi_cmnd
*srb
, struct us_data
*us
)
582 struct bulk_cb_wrap
*bcb
= (struct bulk_cb_wrap
*) us
->iobuf
;
583 struct bulk_cs_wrap
*bcs
= (struct bulk_cs_wrap
*) us
->iobuf
;
584 unsigned int transfer_length
= scsi_bufflen(srb
);
585 unsigned int residue
;
589 unsigned int cbwlen
= US_BULK_CB_WRAP_LEN
;
591 /* pr_info("transport --- usb_stor_Bulk_transport\n"); */
592 /* Take care of BULK32 devices; set extra byte to 0 */
593 if (unlikely(us
->fflags
& US_FL_BULK32
)) {
598 /* set up the command wrapper */
599 bcb
->Signature
= cpu_to_le32(US_BULK_CB_SIGN
);
600 bcb
->DataTransferLength
= cpu_to_le32(transfer_length
);
601 bcb
->Flags
= srb
->sc_data_direction
== DMA_FROM_DEVICE
? 1 << 7 : 0;
602 bcb
->Tag
= ++us
->tag
;
603 bcb
->Lun
= srb
->device
->lun
;
604 if (us
->fflags
& US_FL_SCM_MULT_TARG
)
605 bcb
->Lun
|= srb
->device
->id
<< 4;
606 bcb
->Length
= srb
->cmd_len
;
608 /* copy the command payload */
609 memset(bcb
->CDB
, 0, sizeof(bcb
->CDB
));
610 memcpy(bcb
->CDB
, srb
->cmnd
, bcb
->Length
);
613 /* send it to out endpoint */
614 /* pr_info("Bulk Command S 0x%x T 0x%x L %d F %d Trg %d LUN %d CL %d\n",
615 le32_to_cpu(bcb->Signature), bcb->Tag,
616 le32_to_cpu(bcb->DataTransferLength), bcb->Flags,
617 (bcb->Lun >> 4), (bcb->Lun & 0x0F),
619 result
= usb_stor_bulk_transfer_buf(us
, us
->send_bulk_pipe
,
621 /* pr_info("Bulk command transfer result=%d\n", result); */
622 if (result
!= USB_STOR_XFER_GOOD
)
623 return USB_STOR_TRANSPORT_ERROR
;
625 if (unlikely(us
->fflags
& US_FL_GO_SLOW
))
629 if (transfer_length
) {
631 if (srb
->sc_data_direction
== DMA_FROM_DEVICE
)
632 pipe
= us
->recv_bulk_pipe
;
634 pipe
= us
->send_bulk_pipe
;
636 result
= usb_stor_bulk_srb(us
, pipe
, srb
);
637 /* pr_info("Bulk data transfer result 0x%x\n", result); */
638 if (result
== USB_STOR_XFER_ERROR
)
639 return USB_STOR_TRANSPORT_ERROR
;
641 if (result
== USB_STOR_XFER_LONG
)
645 /* get CSW for device status */
646 /* pr_info("Attempting to get CSW...\n"); */
647 result
= usb_stor_bulk_transfer_buf(us
, us
->recv_bulk_pipe
, bcs
,
648 US_BULK_CS_WRAP_LEN
, &cswlen
);
650 if (result
== USB_STOR_XFER_SHORT
&& cswlen
== 0) {
651 /* pr_info("Received 0-length CSW; retrying...\n"); */
652 result
= usb_stor_bulk_transfer_buf(us
, us
->recv_bulk_pipe
, bcs
,
653 US_BULK_CS_WRAP_LEN
, &cswlen
);
656 /* did the attempt to read the CSW fail? */
657 if (result
== USB_STOR_XFER_STALLED
) {
658 /* get the status again */
659 /* pr_info("Attempting to get CSW (2nd try)...\n"); */
660 result
= usb_stor_bulk_transfer_buf(us
, us
->recv_bulk_pipe
, bcs
,
661 US_BULK_CS_WRAP_LEN
, NULL
);
664 /* if we still have a failure at this point, we're in trouble */
665 /* pr_info("Bulk status result = %d\n", result); */
666 if (result
!= USB_STOR_XFER_GOOD
)
667 return USB_STOR_TRANSPORT_ERROR
;
669 /* check bulk status */
670 residue
= le32_to_cpu(bcs
->Residue
);
671 /* pr_info("Bulk Status S 0x%x T 0x%x R %u Stat 0x%x\n",
672 le32_to_cpu(bcs->Signature),
673 bcs->Tag, residue, bcs->Status); */
674 if (!(bcs
->Tag
== us
->tag
||
675 (us
->fflags
& US_FL_BULK_IGNORE_TAG
)) ||
676 bcs
->Status
> US_BULK_STAT_PHASE
) {
677 /* pr_info("Bulk logical error\n"); */
678 return USB_STOR_TRANSPORT_ERROR
;
681 if (!us
->bcs_signature
) {
682 us
->bcs_signature
= bcs
->Signature
;
683 /* if (us->bcs_signature != cpu_to_le32(US_BULK_CS_SIGN)) */
684 /* pr_info("Learnt BCS signature 0x%08X\n",
685 le32_to_cpu(us->bcs_signature)); */
686 } else if (bcs
->Signature
!= us
->bcs_signature
) {
687 /* pr_info("Signature mismatch: got %08X, expecting %08X\n",
688 le32_to_cpu(bcs->Signature),
689 le32_to_cpu(us->bcs_signature)); */
690 return USB_STOR_TRANSPORT_ERROR
;
693 /* try to compute the actual residue, based on how much data
694 * was really transferred and what the device tells us */
695 if (residue
&& !(us
->fflags
& US_FL_IGNORE_RESIDUE
)) {
697 /* Heuristically detect devices that generate bogus residues
698 * by seeing what happens with INQUIRY and READ CAPACITY
701 if (bcs
->Status
== US_BULK_STAT_OK
&&
702 scsi_get_resid(srb
) == 0 &&
703 ((srb
->cmnd
[0] == INQUIRY
&&
704 transfer_length
== 36) ||
705 (srb
->cmnd
[0] == READ_CAPACITY
&&
706 transfer_length
== 8))) {
707 us
->fflags
|= US_FL_IGNORE_RESIDUE
;
710 residue
= min(residue
, transfer_length
);
711 scsi_set_resid(srb
, max(scsi_get_resid(srb
),
716 /* based on the status code, we report good or bad */
717 switch (bcs
->Status
) {
718 case US_BULK_STAT_OK
:
720 memcpy(srb
->sense_buffer
, usb_stor_sense_invalidCDB
,
721 sizeof(usb_stor_sense_invalidCDB
));
722 return USB_STOR_TRANSPORT_NO_SENSE
;
724 return USB_STOR_TRANSPORT_GOOD
;
726 case US_BULK_STAT_FAIL
:
727 return USB_STOR_TRANSPORT_FAILED
;
729 case US_BULK_STAT_PHASE
:
730 return USB_STOR_TRANSPORT_ERROR
;
732 return USB_STOR_TRANSPORT_ERROR
;
735 /***********************************************************************
737 ***********************************************************************/
739 * usb_stor_reset_common()
741 static int usb_stor_reset_common(struct us_data
*us
,
742 u8 request
, u8 requesttype
,
743 u16 value
, u16 index
, void *data
, u16 size
)
748 /* pr_info("transport --- usb_stor_reset_common\n"); */
749 if (test_bit(US_FLIDX_DISCONNECTING
, &us
->dflags
)) {
750 /* pr_info("No reset during disconnect\n"); */
754 result
= usb_stor_control_msg(us
, us
->send_ctrl_pipe
,
755 request
, requesttype
, value
, index
, data
, size
, 5*HZ
);
758 /* pr_info("Soft reset failed: %d\n", result); */
762 wait_event_interruptible_timeout(us
->delay_wait
,
763 test_bit(US_FLIDX_DISCONNECTING
, &us
->dflags
), HZ
*6);
765 if (test_bit(US_FLIDX_DISCONNECTING
, &us
->dflags
)) {
766 /* pr_info("Reset interrupted by disconnect\n"); */
770 /* pr_info("Soft reset: clearing bulk-in endpoint halt\n"); */
771 result
= usb_stor_clear_halt(us
, us
->recv_bulk_pipe
);
773 /* pr_info("Soft reset: clearing bulk-out endpoint halt\n"); */
774 result2
= usb_stor_clear_halt(us
, us
->send_bulk_pipe
);
776 /* return a result code based on the result of the clear-halts */
779 /* if (result < 0) */
780 /* pr_info("Soft reset failed\n"); */
782 /* pr_info("Soft reset done\n"); */
787 * usb_stor_Bulk_reset()
789 int usb_stor_Bulk_reset(struct us_data
*us
)
791 /* pr_info("transport --- usb_stor_Bulk_reset\n"); */
792 return usb_stor_reset_common(us
, US_BULK_RESET_REQUEST
,
793 USB_TYPE_CLASS
| USB_RECIP_INTERFACE
,
794 0, us
->ifnum
, NULL
, 0);
798 * usb_stor_port_reset()
800 int usb_stor_port_reset(struct us_data
*us
)
804 /* pr_info("transport --- usb_stor_port_reset\n"); */
805 result
= usb_lock_device_for_reset(us
->pusb_dev
, us
->pusb_intf
);
807 pr_info("unable to lock device for reset: %d\n", result
);
809 /* Were we disconnected while waiting for the lock? */
810 if (test_bit(US_FLIDX_DISCONNECTING
, &us
->dflags
)) {
812 /* pr_info("No reset during disconnect\n"); */
814 result
= usb_reset_device(us
->pusb_dev
);
815 /* pr_info("usb_reset_composite_device returns %d\n",
818 usb_unlock_device(us
->pusb_dev
);