]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/staging/vt6656/usbpipe.c
staging: vt6656: replace custom BOOL definition with bool
[mirror_ubuntu-bionic-kernel.git] / drivers / staging / vt6656 / usbpipe.c
CommitLineData
92b96797
FB
1/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 *
20 * File: usbpipe.c
21 *
22 * Purpose: Handle USB control endpoint
23 *
24 * Author: Warren Hsu
25 *
26 * Date: Mar. 29, 2005
27 *
28 * Functions:
29 * CONTROLnsRequestOut - Write variable length bytes to MEM/BB/MAC/EEPROM
30 * CONTROLnsRequestIn - Read variable length bytes from MEM/BB/MAC/EEPROM
31 * ControlvWriteByte - Write one byte to MEM/BB/MAC/EEPROM
32 * ControlvReadByte - Read one byte from MEM/BB/MAC/EEPROM
33 * ControlvMaskByte - Read one byte from MEM/BB/MAC/EEPROM and clear/set some bits in the same address
34 *
35 * Revision History:
36 * 04-05-2004 Jerry Chen: Initial release
37 * 11-24-2004 Warren Hsu: Add ControlvWriteByte,ControlvReadByte,ControlvMaskByte
38 *
39 */
40
92b96797 41#include "int.h"
92b96797 42#include "rxtx.h"
92b96797 43#include "dpc.h"
92b96797 44#include "control.h"
92b96797 45#include "desc.h"
92b96797 46#include "device.h"
92b96797
FB
47
48/*--------------------- Static Definitions -------------------------*/
49//endpoint def
50//endpoint 0: control
51//endpoint 1: interrupt
52//endpoint 2: read bulk
53//endpoint 3: write bulk
54
92b96797
FB
55//static int msglevel =MSG_LEVEL_DEBUG;
56static int msglevel =MSG_LEVEL_INFO;
57
58
59#define USB_CTL_WAIT 500 //ms
60
61#ifndef URB_ASYNC_UNLINK
62#define URB_ASYNC_UNLINK 0
63#endif
64
65/*--------------------- Static Classes ----------------------------*/
66
67/*--------------------- Static Variables --------------------------*/
68
69/*--------------------- Static Functions --------------------------*/
fe5d00eb
MP
70static void s_nsInterruptUsbIoCompleteRead(struct urb *urb);
71static void s_nsBulkInUsbIoCompleteRead(struct urb *urb);
72static void s_nsBulkOutIoCompleteWrite(struct urb *urb);
73static void s_nsControlInUsbIoCompleteRead(struct urb *urb);
74static void s_nsControlInUsbIoCompleteWrite(struct urb *urb);
92b96797 75
92b96797
FB
76/*--------------------- Export Variables --------------------------*/
77
78/*--------------------- Export Functions --------------------------*/
79
fe5d00eb
MP
80int PIPEnsControlOutAsyn(struct vnt_private *pDevice, u8 byRequest,
81 u16 wValue, u16 wIndex, u16 wLength, u8 *pbyBuffer)
92b96797 82{
6487c49e 83 int ntStatus;
92b96797 84
731047f9 85 if (pDevice->Flags & fMP_DISCONNECTED)
92b96797
FB
86 return STATUS_FAILURE;
87
731047f9 88 if (pDevice->Flags & fMP_CONTROL_WRITES)
92b96797 89 return STATUS_FAILURE;
92b96797
FB
90
91 if (in_interrupt()) {
92 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"in_interrupt return ..byRequest %x\n", byRequest);
93 return STATUS_FAILURE;
94 }
95
96 ntStatus = usb_control_msg(
97 pDevice->usb,
98 usb_sndctrlpipe(pDevice->usb , 0),
99 byRequest,
100 0x40, // RequestType
101 wValue,
102 wIndex,
8611a29a 103 (void *) pbyBuffer,
92b96797
FB
104 wLength,
105 HZ
106 );
107 if (ntStatus >= 0) {
108 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"usb_sndctrlpipe ntStatus= %d\n", ntStatus);
109 ntStatus = 0;
110 } else {
111 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"usb_sndctrlpipe fail, ntStatus= %d\n", ntStatus);
112 }
113
114 return ntStatus;
115}
116
fe5d00eb
MP
117int PIPEnsControlOut(struct vnt_private *pDevice, u8 byRequest, u16 wValue,
118 u16 wIndex, u16 wLength, u8 *pbyBuffer)
92b96797 119{
6487c49e 120 int ntStatus = 0;
fe5d00eb 121 int ii;
92b96797 122
731047f9 123 if (pDevice->Flags & fMP_DISCONNECTED)
92b96797
FB
124 return STATUS_FAILURE;
125
731047f9 126 if (pDevice->Flags & fMP_CONTROL_WRITES)
92b96797 127 return STATUS_FAILURE;
92b96797 128
ae5943de
MP
129 if (pDevice->Flags & fMP_CONTROL_READS)
130 return STATUS_FAILURE;
131
132 MP_SET_FLAG(pDevice, fMP_CONTROL_WRITES);
133
92b96797
FB
134 pDevice->sUsbCtlRequest.bRequestType = 0x40;
135 pDevice->sUsbCtlRequest.bRequest = byRequest;
136 pDevice->sUsbCtlRequest.wValue = cpu_to_le16p(&wValue);
137 pDevice->sUsbCtlRequest.wIndex = cpu_to_le16p(&wIndex);
138 pDevice->sUsbCtlRequest.wLength = cpu_to_le16p(&wLength);
139 pDevice->pControlURB->transfer_flags |= URB_ASYNC_UNLINK;
140 pDevice->pControlURB->actual_length = 0;
141 // Notice, pbyBuffer limited point to variable buffer, can't be constant.
142 usb_fill_control_urb(pDevice->pControlURB, pDevice->usb,
143 usb_sndctrlpipe(pDevice->usb , 0), (char *) &pDevice->sUsbCtlRequest,
144 pbyBuffer, wLength, s_nsControlInUsbIoCompleteWrite, pDevice);
145
bfbfeecc
JP
146 ntStatus = usb_submit_urb(pDevice->pControlURB, GFP_ATOMIC);
147 if (ntStatus != 0) {
ae5943de
MP
148 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
149 "control send request submission failed: %d\n",
150 ntStatus);
151 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
92b96797
FB
152 return STATUS_FAILURE;
153 }
ae5943de 154
92b96797
FB
155 spin_unlock_irq(&pDevice->lock);
156 for (ii = 0; ii <= USB_CTL_WAIT; ii ++) {
731047f9
AM
157
158 if (pDevice->Flags & fMP_CONTROL_WRITES)
159 mdelay(1);
92b96797 160 else
731047f9
AM
161 break;
162
92b96797 163 if (ii >= USB_CTL_WAIT) {
731047f9
AM
164 DBG_PRT(MSG_LEVEL_DEBUG,
165 KERN_INFO "control send request submission timeout\n");
92b96797
FB
166 spin_lock_irq(&pDevice->lock);
167 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
168 return STATUS_FAILURE;
169 }
170 }
171 spin_lock_irq(&pDevice->lock);
172
173 return STATUS_SUCCESS;
174}
175
fe5d00eb
MP
176int PIPEnsControlIn(struct vnt_private *pDevice, u8 byRequest, u16 wValue,
177 u16 wIndex, u16 wLength, u8 *pbyBuffer)
92b96797 178{
6487c49e 179 int ntStatus = 0;
fe5d00eb 180 int ii;
92b96797 181
731047f9 182 if (pDevice->Flags & fMP_DISCONNECTED)
92b96797
FB
183 return STATUS_FAILURE;
184
731047f9
AM
185 if (pDevice->Flags & fMP_CONTROL_READS)
186 return STATUS_FAILURE;
187
ae5943de
MP
188 if (pDevice->Flags & fMP_CONTROL_WRITES)
189 return STATUS_FAILURE;
190
191 MP_SET_FLAG(pDevice, fMP_CONTROL_READS);
192
92b96797
FB
193 pDevice->sUsbCtlRequest.bRequestType = 0xC0;
194 pDevice->sUsbCtlRequest.bRequest = byRequest;
195 pDevice->sUsbCtlRequest.wValue = cpu_to_le16p(&wValue);
196 pDevice->sUsbCtlRequest.wIndex = cpu_to_le16p(&wIndex);
197 pDevice->sUsbCtlRequest.wLength = cpu_to_le16p(&wLength);
198 pDevice->pControlURB->transfer_flags |= URB_ASYNC_UNLINK;
199 pDevice->pControlURB->actual_length = 0;
200 usb_fill_control_urb(pDevice->pControlURB, pDevice->usb,
201 usb_rcvctrlpipe(pDevice->usb , 0), (char *) &pDevice->sUsbCtlRequest,
202 pbyBuffer, wLength, s_nsControlInUsbIoCompleteRead, pDevice);
203
bfbfeecc
JP
204 ntStatus = usb_submit_urb(pDevice->pControlURB, GFP_ATOMIC);
205 if (ntStatus != 0) {
ae5943de
MP
206 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
207 "control request submission failed: %d\n", ntStatus);
208 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
209 return STATUS_FAILURE;
210 }
92b96797
FB
211
212 spin_unlock_irq(&pDevice->lock);
213 for (ii = 0; ii <= USB_CTL_WAIT; ii ++) {
731047f9
AM
214
215 if (pDevice->Flags & fMP_CONTROL_READS)
216 mdelay(1);
217 else
218 break;
219
220 if (ii >= USB_CTL_WAIT) {
221 DBG_PRT(MSG_LEVEL_DEBUG,
222 KERN_INFO "control rcv request submission timeout\n");
92b96797
FB
223 spin_lock_irq(&pDevice->lock);
224 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
225 return STATUS_FAILURE;
226 }
227 }
228 spin_lock_irq(&pDevice->lock);
229
230 return ntStatus;
231}
232
fe5d00eb 233static void s_nsControlInUsbIoCompleteWrite(struct urb *urb)
92b96797 234{
fe5d00eb 235 struct vnt_private *pDevice = (struct vnt_private *)urb->context;
92b96797
FB
236
237 pDevice = urb->context;
238 switch (urb->status) {
239 case 0:
240 break;
241 case -EINPROGRESS:
242 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl write urb status EINPROGRESS%d\n", urb->status);
243 break;
244 case -ENOENT:
245 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl write urb status ENOENT %d\n", urb->status);
246 break;
247 default:
248 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl write urb status %d\n", urb->status);
249 }
250
251 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
252}
253
254
255
256/*
257 * Description:
258 * Complete function of usb Control callback
259 *
260 * Parameters:
261 * In:
262 * pDevice - Pointer to the adapter
263 *
264 * Out:
265 * none
266 *
267 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
268 *
269 */
fe5d00eb
MP
270
271static void s_nsControlInUsbIoCompleteRead(struct urb *urb)
92b96797 272{
fe5d00eb 273 struct vnt_private *pDevice = (struct vnt_private *)urb->context;
92b96797 274
92b96797
FB
275 switch (urb->status) {
276 case 0:
277 break;
278 case -EINPROGRESS:
279 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl read urb status EINPROGRESS%d\n", urb->status);
280 break;
281 case -ENOENT:
282 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl read urb status = ENOENT %d\n", urb->status);
283 break;
284 default:
285 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl read urb status %d\n", urb->status);
286 }
287
288 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
289}
290
291
292
293
294/*
295 * Description:
296 * Allocates an usb interrupt in irp and calls USBD.
297 *
298 * Parameters:
299 * In:
300 * pDevice - Pointer to the adapter
301 * Out:
302 * none
303 *
304 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
305 *
306 */
fe5d00eb
MP
307
308int PIPEnsInterruptRead(struct vnt_private *pDevice)
92b96797 309{
fe5d00eb 310 int ntStatus = STATUS_FAILURE;
92b96797
FB
311
312 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsStartInterruptUsbRead()\n");
313
314 if(pDevice->intBuf.bInUse == TRUE){
315 return (STATUS_FAILURE);
316 }
317 pDevice->intBuf.bInUse = TRUE;
318// pDevice->bEventAvailable = FALSE;
319 pDevice->ulIntInPosted++;
320
321 //
322 // Now that we have created the urb, we will send a
323 // request to the USB device object.
324 //
92b96797 325 pDevice->pInterruptURB->interval = pDevice->int_interval;
92b96797
FB
326
327usb_fill_bulk_urb(pDevice->pInterruptURB,
328 pDevice->usb,
329 usb_rcvbulkpipe(pDevice->usb, 1),
8611a29a 330 (void *) pDevice->intBuf.pDataBuf,
92b96797
FB
331 MAX_INTERRUPT_SIZE,
332 s_nsInterruptUsbIoCompleteRead,
333 pDevice);
92b96797 334
bfbfeecc
JP
335 ntStatus = usb_submit_urb(pDevice->pInterruptURB, GFP_ATOMIC);
336 if (ntStatus != 0) {
92b96797
FB
337 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Submit int URB failed %d\n", ntStatus);
338 }
339
92b96797
FB
340 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"<----s_nsStartInterruptUsbRead Return(%x)\n",ntStatus);
341 return ntStatus;
342}
343
344
345/*
346 * Description:
347 * Complete function of usb interrupt in irp.
348 *
349 * Parameters:
350 * In:
351 * pDevice - Pointer to the adapter
352 *
353 * Out:
354 * none
355 *
356 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
357 *
358 */
92b96797 359
fe5d00eb 360static void s_nsInterruptUsbIoCompleteRead(struct urb *urb)
92b96797 361{
fe5d00eb
MP
362 struct vnt_private *pDevice = (struct vnt_private *)urb->context;
363 int ntStatus;
92b96797
FB
364
365 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsInterruptUsbIoCompleteRead\n");
366 //
367 // The context given to IoSetCompletionRoutine is the receive buffer object
368 //
92b96797
FB
369
370 //
371 // We have a number of cases:
372 // 1) The USB read timed out and we received no data.
373 // 2) The USB read timed out and we received some data.
374 // 3) The USB read was successful and fully filled our irp buffer.
375 // 4) The irp was cancelled.
376 // 5) Some other failure from the USB device object.
377 //
378 ntStatus = urb->status;
379
380 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_nsInterruptUsbIoCompleteRead Status %d\n", ntStatus);
381
382 // if we were not successful, we need to free the int buffer for future use right here
383 // otherwise interrupt data handler will free int buffer after it handle it.
384 if (( ntStatus != STATUS_SUCCESS )) {
385 pDevice->ulBulkInError++;
386 pDevice->intBuf.bInUse = FALSE;
387
388// if (ntStatus == USBD_STATUS_CRC) {
389// pDevice->ulIntInContCRCError++;
390// }
391
392// if (ntStatus == STATUS_NOT_CONNECTED )
393// {
394 pDevice->fKillEventPollingThread = TRUE;
395// }
396 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"IntUSBIoCompleteControl STATUS = %d\n", ntStatus );
cc856e61
AM
397 } else {
398 pDevice->ulIntInBytesRead += (unsigned long) urb->actual_length;
399 pDevice->ulIntInContCRCError = 0;
400 pDevice->bEventAvailable = TRUE;
401 INTnsProcessData(pDevice);
92b96797
FB
402 }
403
404 STAvUpdateUSBCounter(&pDevice->scStatistic.USB_InterruptStat, ntStatus);
405
406
407 if (pDevice->fKillEventPollingThread != TRUE) {
92b96797
FB
408 usb_fill_bulk_urb(pDevice->pInterruptURB,
409 pDevice->usb,
410 usb_rcvbulkpipe(pDevice->usb, 1),
8611a29a 411 (void *) pDevice->intBuf.pDataBuf,
92b96797
FB
412 MAX_INTERRUPT_SIZE,
413 s_nsInterruptUsbIoCompleteRead,
414 pDevice);
415
bfbfeecc
JP
416 ntStatus = usb_submit_urb(pDevice->pInterruptURB, GFP_ATOMIC);
417 if (ntStatus != 0) {
92b96797
FB
418 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Submit int URB failed %d\n", ntStatus);
419 }
92b96797
FB
420 }
421 //
422 // We return STATUS_MORE_PROCESSING_REQUIRED so that the completion
423 // routine (IofCompleteRequest) will stop working on the irp.
424 //
425 return ;
426}
427
428/*
429 * Description:
430 * Allocates an usb BulkIn irp and calls USBD.
431 *
432 * Parameters:
433 * In:
434 * pDevice - Pointer to the adapter
435 * Out:
436 * none
437 *
438 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
439 *
440 */
fe5d00eb
MP
441
442int PIPEnsBulkInUsbRead(struct vnt_private *pDevice, PRCB pRCB)
92b96797 443{
6487c49e 444 int ntStatus = 0;
fe5d00eb 445 struct urb *pUrb;
92b96797
FB
446
447
448 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsStartBulkInUsbRead\n");
449
731047f9 450 if (pDevice->Flags & fMP_DISCONNECTED)
92b96797
FB
451 return STATUS_FAILURE;
452
453 pDevice->ulBulkInPosted++;
454
455
456 pUrb = pRCB->pUrb;
457 //
458 // Now that we have created the urb, we will send a
459 // request to the USB device object.
460 //
461 if (pRCB->skb == NULL) {
462 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"pRCB->skb is null \n");
463 return ntStatus;
464 }
465
466 usb_fill_bulk_urb(pUrb,
467 pDevice->usb,
468 usb_rcvbulkpipe(pDevice->usb, 2),
8611a29a 469 (void *) (pRCB->skb->data),
92b96797
FB
470 MAX_TOTAL_SIZE_WITH_ALL_HEADERS,
471 s_nsBulkInUsbIoCompleteRead,
472 pRCB);
473
bfbfeecc
JP
474 ntStatus = usb_submit_urb(pUrb, GFP_ATOMIC);
475 if (ntStatus != 0) {
92b96797
FB
476 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Submit Rx URB failed %d\n", ntStatus);
477 return STATUS_FAILURE ;
478 }
479 pRCB->Ref = 1;
480 pRCB->bBoolInUse= TRUE;
481
482 return ntStatus;
483}
484
485
486
487
488/*
489 * Description:
490 * Complete function of usb BulkIn irp.
491 *
492 * Parameters:
493 * In:
494 * pDevice - Pointer to the adapter
495 *
496 * Out:
497 * none
498 *
499 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
500 *
501 */
92b96797 502
fe5d00eb 503static void s_nsBulkInUsbIoCompleteRead(struct urb *urb)
92b96797 504{
fe5d00eb
MP
505 PRCB pRCB = (PRCB)urb->context;
506 struct vnt_private *pDevice = pRCB->pDevice;
507 unsigned long bytesRead;
508 int bIndicateReceive = FALSE;
509 int bReAllocSkb = FALSE;
510 int status;
92b96797
FB
511
512 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsBulkInUsbIoCompleteRead\n");
513 status = urb->status;
514 bytesRead = urb->actual_length;
515
516 if (status) {
517 pDevice->ulBulkInError++;
518 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"BULK In failed %d\n", status);
519
92b96797 520 pDevice->scStatistic.RxFcsErrCnt ++;
92b96797
FB
521//todo...xxxxxx
522// if (status == USBD_STATUS_CRC) {
523// pDevice->ulBulkInContCRCError++;
524// }
525// if (status == STATUS_DEVICE_NOT_CONNECTED )
526// {
527// MP_SET_FLAG(pDevice, fMP_DISCONNECTED);
528// }
529 } else {
87c62985
MP
530 if (bytesRead)
531 bIndicateReceive = TRUE;
92b96797
FB
532 pDevice->ulBulkInContCRCError = 0;
533 pDevice->ulBulkInBytesRead += bytesRead;
534
92b96797 535 pDevice->scStatistic.RxOkCnt ++;
92b96797
FB
536 }
537
538
539 STAvUpdateUSBCounter(&pDevice->scStatistic.USB_BulkInStat, status);
540
541 if (bIndicateReceive) {
542 spin_lock(&pDevice->lock);
543 if (RXbBulkInProcessData(pDevice, pRCB, bytesRead) == TRUE)
544 bReAllocSkb = TRUE;
545 spin_unlock(&pDevice->lock);
546 }
547 pRCB->Ref--;
548 if (pRCB->Ref == 0)
549 {
550 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"RxvFreeNormal %d \n",pDevice->NumRecvFreeList);
551 spin_lock(&pDevice->lock);
552 RXvFreeRCB(pRCB, bReAllocSkb);
553 spin_unlock(&pDevice->lock);
554 }
555
556
557 return;
558}
559
560/*
561 * Description:
562 * Allocates an usb BulkOut irp and calls USBD.
563 *
564 * Parameters:
565 * In:
566 * pDevice - Pointer to the adapter
567 * Out:
568 * none
569 *
570 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
571 *
572 */
fe5d00eb
MP
573
574int PIPEnsSendBulkOut(struct vnt_private *pDevice, PUSB_SEND_CONTEXT pContext)
92b96797 575{
fe5d00eb
MP
576 int status;
577 struct urb *pUrb;
92b96797
FB
578
579
580
581 pDevice->bPWBitOn = FALSE;
582
583/*
584 if (pDevice->pPendingBulkOutContext != NULL) {
585 pDevice->NumContextsQueued++;
586 EnqueueContext(pDevice->FirstTxContextQueue, pDevice->LastTxContextQueue, pContext);
587 status = STATUS_PENDING;
588 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Send pending!\n");
589 return status;
590 }
591*/
592
593 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_nsSendBulkOut\n");
594
731047f9 595 if (MP_IS_READY(pDevice) && (pDevice->Flags & fMP_POST_WRITES)) {
92b96797
FB
596
597 pUrb = pContext->pUrb;
598 pDevice->ulBulkOutPosted++;
599// pDevice->pPendingBulkOutContext = pContext;
600 usb_fill_bulk_urb(
601 pUrb,
602 pDevice->usb,
8611a29a
AM
603 usb_sndbulkpipe(pDevice->usb, 3),
604 (void *) &(pContext->Data[0]),
92b96797
FB
605 pContext->uBufLen,
606 s_nsBulkOutIoCompleteWrite,
607 pContext);
608
bfbfeecc
JP
609 status = usb_submit_urb(pUrb, GFP_ATOMIC);
610 if (status != 0)
92b96797
FB
611 {
612 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Submit Tx URB failed %d\n", status);
02560efe 613 pContext->bBoolInUse = FALSE;
92b96797
FB
614 return STATUS_FAILURE;
615 }
616 return STATUS_PENDING;
617 }
618 else {
619 pContext->bBoolInUse = FALSE;
620 return STATUS_RESOURCES;
621 }
622}
623
624/*
625 * Description: s_nsBulkOutIoCompleteWrite
626 * 1a) Indicate to the protocol the status of the write.
627 * 1b) Return ownership of the packet to the protocol.
628 *
629 * 2) If any more packets are queue for sending, send another packet
630 * to USBD.
631 * If the attempt to send the packet to the driver fails,
632 * return ownership of the packet to the protocol and
633 * try another packet (until one succeeds).
634 *
635 * Parameters:
636 * In:
637 * pdoUsbDevObj - pointer to the USB device object which
638 * completed the irp
639 * pIrp - the irp which was completed by the
640 * device object
641 * pContext - the context given to IoSetCompletionRoutine
642 * before calling IoCallDriver on the irp
643 * The pContext is a pointer to the USB device object.
644 * Out:
645 * none
646 *
647 * Return Value: STATUS_MORE_PROCESSING_REQUIRED - allows the completion routine
648 * (IofCompleteRequest) to stop working on the irp.
649 *
650 */
fe5d00eb
MP
651
652static void s_nsBulkOutIoCompleteWrite(struct urb *urb)
92b96797 653{
fe5d00eb
MP
654 struct vnt_private *pDevice;
655 int status;
656 CONTEXT_TYPE ContextType;
657 unsigned long ulBufLen;
658 PUSB_SEND_CONTEXT pContext;
92b96797
FB
659
660
661 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsBulkOutIoCompleteWrite\n");
662 //
663 // The context given to IoSetCompletionRoutine is an USB_CONTEXT struct
664 //
665 pContext = (PUSB_SEND_CONTEXT) urb->context;
666 ASSERT( NULL != pContext );
667
668 pDevice = pContext->pDevice;
669 ContextType = pContext->Type;
670 ulBufLen = pContext->uBufLen;
671
672 if (!netif_device_present(pDevice->dev))
673 return;
674
675 //
676 // Perform various IRP, URB, and buffer 'sanity checks'
677 //
678
679 status = urb->status;
680 //we should have failed, succeeded, or cancelled, but NOT be pending
681 STAvUpdateUSBCounter(&pDevice->scStatistic.USB_BulkOutStat, status);
682
683 if(status == STATUS_SUCCESS) {
684 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Write %d bytes\n",(int)ulBufLen);
685 pDevice->ulBulkOutBytesWrite += ulBufLen;
686 pDevice->ulBulkOutContCRCError = 0;
feaf03d3 687 pDevice->nTxDataTimeCout = 0;
92b96797
FB
688
689 } else {
690 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"BULK Out failed %d\n", status);
691 pDevice->ulBulkOutError++;
692 }
693
694// pDevice->ulCheckForHangCount = 0;
695// pDevice->pPendingBulkOutContext = NULL;
696
697 if ( CONTEXT_DATA_PACKET == ContextType ) {
698 // Indicate to the protocol the status of the sent packet and return
699 // ownership of the packet.
700 if (pContext->pPacket != NULL) {
701 dev_kfree_skb_irq(pContext->pPacket);
702 pContext->pPacket = NULL;
703 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"tx %d bytes\n",(int)ulBufLen);
704 }
705
706 pDevice->dev->trans_start = jiffies;
707
708
709 if (status == STATUS_SUCCESS) {
710 pDevice->packetsSent++;
711 }
712 else {
713 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Send USB error! [%08xh]\n", status);
714 pDevice->packetsSentDropped++;
715 }
716
717 }
718 if (pDevice->bLinkPass == TRUE) {
719 if (netif_queue_stopped(pDevice->dev))
720 netif_wake_queue(pDevice->dev);
721 }
722 pContext->bBoolInUse = FALSE;
723
724 return;
725}