blob: d18cb2f0fb41965323b76e6a6927a9f5b6d7837b [file] [log] [blame]
Forest Bond92b96792009-06-13 07:38:31 -04001/*
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
Forest Bond92b96792009-06-13 07:38:31 -040041#include "int.h"
Forest Bond92b96792009-06-13 07:38:31 -040042#include "rxtx.h"
Forest Bond92b96792009-06-13 07:38:31 -040043#include "dpc.h"
Forest Bond92b96792009-06-13 07:38:31 -040044#include "control.h"
Forest Bond92b96792009-06-13 07:38:31 -040045#include "desc.h"
Forest Bond92b96792009-06-13 07:38:31 -040046#include "device.h"
Forest Bond92b96792009-06-13 07:38:31 -040047
Forest Bond92b96792009-06-13 07:38:31 -040048//endpoint def
49//endpoint 0: control
50//endpoint 1: interrupt
51//endpoint 2: read bulk
52//endpoint 3: write bulk
53
Forest Bond92b96792009-06-13 07:38:31 -040054//static int msglevel =MSG_LEVEL_DEBUG;
55static int msglevel =MSG_LEVEL_INFO;
56
Forest Bond92b96792009-06-13 07:38:31 -040057#define USB_CTL_WAIT 500 //ms
58
59#ifndef URB_ASYNC_UNLINK
60#define URB_ASYNC_UNLINK 0
61#endif
62
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +000063static void s_nsInterruptUsbIoCompleteRead(struct urb *urb);
64static void s_nsBulkInUsbIoCompleteRead(struct urb *urb);
65static void s_nsBulkOutIoCompleteWrite(struct urb *urb);
66static void s_nsControlInUsbIoCompleteRead(struct urb *urb);
67static void s_nsControlInUsbIoCompleteWrite(struct urb *urb);
Forest Bond92b96792009-06-13 07:38:31 -040068
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +000069int PIPEnsControlOutAsyn(struct vnt_private *pDevice, u8 byRequest,
70 u16 wValue, u16 wIndex, u16 wLength, u8 *pbyBuffer)
Forest Bond92b96792009-06-13 07:38:31 -040071{
Andres More6487c492010-08-02 20:51:57 -030072 int ntStatus;
Forest Bond92b96792009-06-13 07:38:31 -040073
Andres More731047f2010-08-05 22:17:20 -030074 if (pDevice->Flags & fMP_DISCONNECTED)
Forest Bond92b96792009-06-13 07:38:31 -040075 return STATUS_FAILURE;
76
Andres More731047f2010-08-05 22:17:20 -030077 if (pDevice->Flags & fMP_CONTROL_WRITES)
Forest Bond92b96792009-06-13 07:38:31 -040078 return STATUS_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -040079
80 if (in_interrupt()) {
81 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"in_interrupt return ..byRequest %x\n", byRequest);
82 return STATUS_FAILURE;
83 }
84
85 ntStatus = usb_control_msg(
86 pDevice->usb,
87 usb_sndctrlpipe(pDevice->usb , 0),
88 byRequest,
89 0x40, // RequestType
90 wValue,
91 wIndex,
Andres More8611a292010-05-01 14:25:00 -030092 (void *) pbyBuffer,
Forest Bond92b96792009-06-13 07:38:31 -040093 wLength,
94 HZ
95 );
96 if (ntStatus >= 0) {
97 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"usb_sndctrlpipe ntStatus= %d\n", ntStatus);
98 ntStatus = 0;
99 } else {
100 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"usb_sndctrlpipe fail, ntStatus= %d\n", ntStatus);
101 }
102
103 return ntStatus;
104}
105
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000106int PIPEnsControlOut(struct vnt_private *pDevice, u8 byRequest, u16 wValue,
107 u16 wIndex, u16 wLength, u8 *pbyBuffer)
Forest Bond92b96792009-06-13 07:38:31 -0400108{
Andres More6487c492010-08-02 20:51:57 -0300109 int ntStatus = 0;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000110 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400111
Andres More731047f2010-08-05 22:17:20 -0300112 if (pDevice->Flags & fMP_DISCONNECTED)
Forest Bond92b96792009-06-13 07:38:31 -0400113 return STATUS_FAILURE;
114
Andres More731047f2010-08-05 22:17:20 -0300115 if (pDevice->Flags & fMP_CONTROL_WRITES)
Forest Bond92b96792009-06-13 07:38:31 -0400116 return STATUS_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -0400117
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000118 if (pDevice->Flags & fMP_CONTROL_READS)
119 return STATUS_FAILURE;
120
Malcolm Priestleye1feda12013-10-14 19:44:13 +0100121 if (pDevice->pControlURB->hcpriv)
122 return STATUS_FAILURE;
123
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000124 MP_SET_FLAG(pDevice, fMP_CONTROL_WRITES);
125
Forest Bond92b96792009-06-13 07:38:31 -0400126 pDevice->sUsbCtlRequest.bRequestType = 0x40;
127 pDevice->sUsbCtlRequest.bRequest = byRequest;
128 pDevice->sUsbCtlRequest.wValue = cpu_to_le16p(&wValue);
129 pDevice->sUsbCtlRequest.wIndex = cpu_to_le16p(&wIndex);
130 pDevice->sUsbCtlRequest.wLength = cpu_to_le16p(&wLength);
131 pDevice->pControlURB->transfer_flags |= URB_ASYNC_UNLINK;
132 pDevice->pControlURB->actual_length = 0;
133 // Notice, pbyBuffer limited point to variable buffer, can't be constant.
134 usb_fill_control_urb(pDevice->pControlURB, pDevice->usb,
135 usb_sndctrlpipe(pDevice->usb , 0), (char *) &pDevice->sUsbCtlRequest,
136 pbyBuffer, wLength, s_nsControlInUsbIoCompleteWrite, pDevice);
137
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700138 ntStatus = usb_submit_urb(pDevice->pControlURB, GFP_ATOMIC);
139 if (ntStatus != 0) {
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000140 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
141 "control send request submission failed: %d\n",
142 ntStatus);
143 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
Forest Bond92b96792009-06-13 07:38:31 -0400144 return STATUS_FAILURE;
145 }
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000146
Forest Bond92b96792009-06-13 07:38:31 -0400147 spin_unlock_irq(&pDevice->lock);
148 for (ii = 0; ii <= USB_CTL_WAIT; ii ++) {
Andres More731047f2010-08-05 22:17:20 -0300149
150 if (pDevice->Flags & fMP_CONTROL_WRITES)
151 mdelay(1);
Forest Bond92b96792009-06-13 07:38:31 -0400152 else
Andres More731047f2010-08-05 22:17:20 -0300153 break;
154
Forest Bond92b96792009-06-13 07:38:31 -0400155 if (ii >= USB_CTL_WAIT) {
Andres More731047f2010-08-05 22:17:20 -0300156 DBG_PRT(MSG_LEVEL_DEBUG,
157 KERN_INFO "control send request submission timeout\n");
Forest Bond92b96792009-06-13 07:38:31 -0400158 spin_lock_irq(&pDevice->lock);
159 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
160 return STATUS_FAILURE;
161 }
162 }
163 spin_lock_irq(&pDevice->lock);
164
165 return STATUS_SUCCESS;
166}
167
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000168int PIPEnsControlIn(struct vnt_private *pDevice, u8 byRequest, u16 wValue,
169 u16 wIndex, u16 wLength, u8 *pbyBuffer)
Forest Bond92b96792009-06-13 07:38:31 -0400170{
Andres More6487c492010-08-02 20:51:57 -0300171 int ntStatus = 0;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000172 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400173
Andres More731047f2010-08-05 22:17:20 -0300174 if (pDevice->Flags & fMP_DISCONNECTED)
Forest Bond92b96792009-06-13 07:38:31 -0400175 return STATUS_FAILURE;
176
Andres More731047f2010-08-05 22:17:20 -0300177 if (pDevice->Flags & fMP_CONTROL_READS)
178 return STATUS_FAILURE;
179
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000180 if (pDevice->Flags & fMP_CONTROL_WRITES)
181 return STATUS_FAILURE;
182
Malcolm Priestleye1feda12013-10-14 19:44:13 +0100183 if (pDevice->pControlURB->hcpriv)
184 return STATUS_FAILURE;
185
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000186 MP_SET_FLAG(pDevice, fMP_CONTROL_READS);
187
Forest Bond92b96792009-06-13 07:38:31 -0400188 pDevice->sUsbCtlRequest.bRequestType = 0xC0;
189 pDevice->sUsbCtlRequest.bRequest = byRequest;
190 pDevice->sUsbCtlRequest.wValue = cpu_to_le16p(&wValue);
191 pDevice->sUsbCtlRequest.wIndex = cpu_to_le16p(&wIndex);
192 pDevice->sUsbCtlRequest.wLength = cpu_to_le16p(&wLength);
193 pDevice->pControlURB->transfer_flags |= URB_ASYNC_UNLINK;
194 pDevice->pControlURB->actual_length = 0;
195 usb_fill_control_urb(pDevice->pControlURB, pDevice->usb,
196 usb_rcvctrlpipe(pDevice->usb , 0), (char *) &pDevice->sUsbCtlRequest,
197 pbyBuffer, wLength, s_nsControlInUsbIoCompleteRead, pDevice);
198
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700199 ntStatus = usb_submit_urb(pDevice->pControlURB, GFP_ATOMIC);
200 if (ntStatus != 0) {
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000201 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
202 "control request submission failed: %d\n", ntStatus);
203 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
204 return STATUS_FAILURE;
205 }
Forest Bond92b96792009-06-13 07:38:31 -0400206
207 spin_unlock_irq(&pDevice->lock);
208 for (ii = 0; ii <= USB_CTL_WAIT; ii ++) {
Andres More731047f2010-08-05 22:17:20 -0300209
210 if (pDevice->Flags & fMP_CONTROL_READS)
211 mdelay(1);
212 else
213 break;
214
215 if (ii >= USB_CTL_WAIT) {
216 DBG_PRT(MSG_LEVEL_DEBUG,
217 KERN_INFO "control rcv request submission timeout\n");
Forest Bond92b96792009-06-13 07:38:31 -0400218 spin_lock_irq(&pDevice->lock);
219 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
220 return STATUS_FAILURE;
221 }
222 }
223 spin_lock_irq(&pDevice->lock);
224
225 return ntStatus;
226}
227
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000228static void s_nsControlInUsbIoCompleteWrite(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400229{
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000230 struct vnt_private *pDevice = (struct vnt_private *)urb->context;
Forest Bond92b96792009-06-13 07:38:31 -0400231
232 pDevice = urb->context;
233 switch (urb->status) {
234 case 0:
235 break;
236 case -EINPROGRESS:
237 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl write urb status EINPROGRESS%d\n", urb->status);
238 break;
239 case -ENOENT:
240 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl write urb status ENOENT %d\n", urb->status);
241 break;
242 default:
243 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl write urb status %d\n", urb->status);
244 }
245
246 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
247}
248
Forest Bond92b96792009-06-13 07:38:31 -0400249/*
250 * Description:
251 * Complete function of usb Control callback
252 *
253 * Parameters:
254 * In:
255 * pDevice - Pointer to the adapter
256 *
257 * Out:
258 * none
259 *
260 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
261 *
262 */
Forest Bond92b96792009-06-13 07:38:31 -0400263
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000264static void s_nsControlInUsbIoCompleteRead(struct urb *urb)
265{
266 struct vnt_private *pDevice = (struct vnt_private *)urb->context;
267
Forest Bond92b96792009-06-13 07:38:31 -0400268 switch (urb->status) {
269 case 0:
270 break;
271 case -EINPROGRESS:
272 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl read urb status EINPROGRESS%d\n", urb->status);
273 break;
274 case -ENOENT:
275 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl read urb status = ENOENT %d\n", urb->status);
276 break;
277 default:
278 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl read urb status %d\n", urb->status);
279 }
280
281 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
282}
283
Forest Bond92b96792009-06-13 07:38:31 -0400284/*
285 * Description:
286 * Allocates an usb interrupt in irp and calls USBD.
287 *
288 * Parameters:
289 * In:
290 * pDevice - Pointer to the adapter
291 * Out:
292 * none
293 *
294 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
295 *
296 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000297
298int PIPEnsInterruptRead(struct vnt_private *pDevice)
Forest Bond92b96792009-06-13 07:38:31 -0400299{
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000300 int ntStatus = STATUS_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -0400301
302 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsStartInterruptUsbRead()\n");
303
Andres More4e9b5e22013-02-12 20:36:30 -0500304 if(pDevice->intBuf.bInUse == true){
Forest Bond92b96792009-06-13 07:38:31 -0400305 return (STATUS_FAILURE);
306 }
Andres More4e9b5e22013-02-12 20:36:30 -0500307 pDevice->intBuf.bInUse = true;
Andres Moree269fc22013-02-12 20:36:29 -0500308// pDevice->bEventAvailable = false;
Forest Bond92b96792009-06-13 07:38:31 -0400309 pDevice->ulIntInPosted++;
310
311 //
312 // Now that we have created the urb, we will send a
313 // request to the USB device object.
314 //
Forest Bond92b96792009-06-13 07:38:31 -0400315 pDevice->pInterruptURB->interval = pDevice->int_interval;
Forest Bond92b96792009-06-13 07:38:31 -0400316
317usb_fill_bulk_urb(pDevice->pInterruptURB,
318 pDevice->usb,
319 usb_rcvbulkpipe(pDevice->usb, 1),
Andres More8611a292010-05-01 14:25:00 -0300320 (void *) pDevice->intBuf.pDataBuf,
Forest Bond92b96792009-06-13 07:38:31 -0400321 MAX_INTERRUPT_SIZE,
322 s_nsInterruptUsbIoCompleteRead,
323 pDevice);
Forest Bond92b96792009-06-13 07:38:31 -0400324
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700325 ntStatus = usb_submit_urb(pDevice->pInterruptURB, GFP_ATOMIC);
326 if (ntStatus != 0) {
Forest Bond92b96792009-06-13 07:38:31 -0400327 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Submit int URB failed %d\n", ntStatus);
328 }
329
Forest Bond92b96792009-06-13 07:38:31 -0400330 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"<----s_nsStartInterruptUsbRead Return(%x)\n",ntStatus);
331 return ntStatus;
332}
333
Forest Bond92b96792009-06-13 07:38:31 -0400334/*
335 * Description:
336 * Complete function of usb interrupt in irp.
337 *
338 * Parameters:
339 * In:
340 * pDevice - Pointer to the adapter
341 *
342 * Out:
343 * none
344 *
345 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
346 *
347 */
Forest Bond92b96792009-06-13 07:38:31 -0400348
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000349static void s_nsInterruptUsbIoCompleteRead(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400350{
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000351 struct vnt_private *pDevice = (struct vnt_private *)urb->context;
352 int ntStatus;
Forest Bond92b96792009-06-13 07:38:31 -0400353
354 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsInterruptUsbIoCompleteRead\n");
355 //
356 // The context given to IoSetCompletionRoutine is the receive buffer object
357 //
Forest Bond92b96792009-06-13 07:38:31 -0400358
359 //
360 // We have a number of cases:
361 // 1) The USB read timed out and we received no data.
362 // 2) The USB read timed out and we received some data.
363 // 3) The USB read was successful and fully filled our irp buffer.
364 // 4) The irp was cancelled.
365 // 5) Some other failure from the USB device object.
366 //
Malcolm Priestleyc98fbf92014-02-17 21:16:20 +0000367 switch (urb->status) {
368 case 0:
369 case -ETIMEDOUT:
370 break;
371 case -ECONNRESET:
372 case -ENOENT:
373 case -ESHUTDOWN:
374 pDevice->intBuf.bInUse = false;
375 return;
376 default:
377 break;
378 }
379
Forest Bond92b96792009-06-13 07:38:31 -0400380 ntStatus = urb->status;
381
382 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_nsInterruptUsbIoCompleteRead Status %d\n", ntStatus);
383
384 // if we were not successful, we need to free the int buffer for future use right here
385 // otherwise interrupt data handler will free int buffer after it handle it.
386 if (( ntStatus != STATUS_SUCCESS )) {
387 pDevice->ulBulkInError++;
Andres Moree269fc22013-02-12 20:36:29 -0500388 pDevice->intBuf.bInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -0400389
390// if (ntStatus == USBD_STATUS_CRC) {
391// pDevice->ulIntInContCRCError++;
392// }
393
394// if (ntStatus == STATUS_NOT_CONNECTED )
395// {
Andres More4e9b5e22013-02-12 20:36:30 -0500396 pDevice->fKillEventPollingThread = true;
Forest Bond92b96792009-06-13 07:38:31 -0400397// }
398 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"IntUSBIoCompleteControl STATUS = %d\n", ntStatus );
Andres Morecc856e62010-05-17 21:34:01 -0300399 } else {
400 pDevice->ulIntInBytesRead += (unsigned long) urb->actual_length;
401 pDevice->ulIntInContCRCError = 0;
Andres More4e9b5e22013-02-12 20:36:30 -0500402 pDevice->bEventAvailable = true;
Andres Morecc856e62010-05-17 21:34:01 -0300403 INTnsProcessData(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -0400404 }
405
Andres More4e9b5e22013-02-12 20:36:30 -0500406 if (pDevice->fKillEventPollingThread != true) {
Forest Bond92b96792009-06-13 07:38:31 -0400407 usb_fill_bulk_urb(pDevice->pInterruptURB,
408 pDevice->usb,
409 usb_rcvbulkpipe(pDevice->usb, 1),
Andres More8611a292010-05-01 14:25:00 -0300410 (void *) pDevice->intBuf.pDataBuf,
Forest Bond92b96792009-06-13 07:38:31 -0400411 MAX_INTERRUPT_SIZE,
412 s_nsInterruptUsbIoCompleteRead,
413 pDevice);
414
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700415 ntStatus = usb_submit_urb(pDevice->pInterruptURB, GFP_ATOMIC);
Malcolm Priestley247b4b62014-02-17 21:12:51 +0000416 if (ntStatus) {
417 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
418 "Submit int URB failed %d\n", ntStatus);
419 } else {
420 pDevice->intBuf.bInUse = true;
421 }
Forest Bond92b96792009-06-13 07:38:31 -0400422 }
423 //
424 // We return STATUS_MORE_PROCESSING_REQUIRED so that the completion
425 // routine (IofCompleteRequest) will stop working on the irp.
426 //
427 return ;
428}
429
430/*
431 * Description:
432 * Allocates an usb BulkIn irp and calls USBD.
433 *
434 * Parameters:
435 * In:
436 * pDevice - Pointer to the adapter
437 * Out:
438 * none
439 *
440 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
441 *
442 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000443
Malcolm Priestley115cac22013-08-28 21:12:35 +0100444int PIPEnsBulkInUsbRead(struct vnt_private *pDevice, struct vnt_rcb *pRCB)
Forest Bond92b96792009-06-13 07:38:31 -0400445{
Andres More6487c492010-08-02 20:51:57 -0300446 int ntStatus = 0;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000447 struct urb *pUrb;
Forest Bond92b96792009-06-13 07:38:31 -0400448
Forest Bond92b96792009-06-13 07:38:31 -0400449 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsStartBulkInUsbRead\n");
450
Andres More731047f2010-08-05 22:17:20 -0300451 if (pDevice->Flags & fMP_DISCONNECTED)
Forest Bond92b96792009-06-13 07:38:31 -0400452 return STATUS_FAILURE;
453
454 pDevice->ulBulkInPosted++;
455
Forest Bond92b96792009-06-13 07:38:31 -0400456 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),
Andres More8611a292010-05-01 14:25:00 -0300469 (void *) (pRCB->skb->data),
Forest Bond92b96792009-06-13 07:38:31 -0400470 MAX_TOTAL_SIZE_WITH_ALL_HEADERS,
471 s_nsBulkInUsbIoCompleteRead,
472 pRCB);
473
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700474 ntStatus = usb_submit_urb(pUrb, GFP_ATOMIC);
475 if (ntStatus != 0) {
Forest Bond92b96792009-06-13 07:38:31 -0400476 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Submit Rx URB failed %d\n", ntStatus);
477 return STATUS_FAILURE ;
478 }
479 pRCB->Ref = 1;
Andres More4e9b5e22013-02-12 20:36:30 -0500480 pRCB->bBoolInUse= true;
Forest Bond92b96792009-06-13 07:38:31 -0400481
482 return ntStatus;
483}
484
Forest Bond92b96792009-06-13 07:38:31 -0400485/*
486 * Description:
487 * Complete function of usb BulkIn irp.
488 *
489 * Parameters:
490 * In:
491 * pDevice - Pointer to the adapter
492 *
493 * Out:
494 * none
495 *
496 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
497 *
498 */
Forest Bond92b96792009-06-13 07:38:31 -0400499
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000500static void s_nsBulkInUsbIoCompleteRead(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400501{
Malcolm Priestley115cac22013-08-28 21:12:35 +0100502 struct vnt_rcb *pRCB = (struct vnt_rcb *)urb->context;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000503 struct vnt_private *pDevice = pRCB->pDevice;
504 unsigned long bytesRead;
Andres Moree269fc22013-02-12 20:36:29 -0500505 int bIndicateReceive = false;
506 int bReAllocSkb = false;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000507 int status;
Forest Bond92b96792009-06-13 07:38:31 -0400508
509 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsBulkInUsbIoCompleteRead\n");
510 status = urb->status;
511 bytesRead = urb->actual_length;
512
513 if (status) {
514 pDevice->ulBulkInError++;
515 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"BULK In failed %d\n", status);
Forest Bond92b96792009-06-13 07:38:31 -0400516//todo...xxxxxx
517// if (status == USBD_STATUS_CRC) {
518// pDevice->ulBulkInContCRCError++;
519// }
520// if (status == STATUS_DEVICE_NOT_CONNECTED )
521// {
522// MP_SET_FLAG(pDevice, fMP_DISCONNECTED);
523// }
524 } else {
Malcolm Priestley87c62982012-11-04 16:18:56 +0000525 if (bytesRead)
Andres More4e9b5e22013-02-12 20:36:30 -0500526 bIndicateReceive = true;
Forest Bond92b96792009-06-13 07:38:31 -0400527 pDevice->ulBulkInContCRCError = 0;
528 pDevice->ulBulkInBytesRead += bytesRead;
Forest Bond92b96792009-06-13 07:38:31 -0400529 }
530
Forest Bond92b96792009-06-13 07:38:31 -0400531 if (bIndicateReceive) {
532 spin_lock(&pDevice->lock);
Andres More4e9b5e22013-02-12 20:36:30 -0500533 if (RXbBulkInProcessData(pDevice, pRCB, bytesRead) == true)
534 bReAllocSkb = true;
Forest Bond92b96792009-06-13 07:38:31 -0400535 spin_unlock(&pDevice->lock);
536 }
537 pRCB->Ref--;
538 if (pRCB->Ref == 0)
539 {
540 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"RxvFreeNormal %d \n",pDevice->NumRecvFreeList);
541 spin_lock(&pDevice->lock);
542 RXvFreeRCB(pRCB, bReAllocSkb);
543 spin_unlock(&pDevice->lock);
544 }
545
Forest Bond92b96792009-06-13 07:38:31 -0400546 return;
547}
548
549/*
550 * Description:
551 * Allocates an usb BulkOut irp and calls USBD.
552 *
553 * Parameters:
554 * In:
555 * pDevice - Pointer to the adapter
556 * Out:
557 * none
558 *
559 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
560 *
561 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000562
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +0100563int PIPEnsSendBulkOut(struct vnt_private *pDevice,
564 struct vnt_usb_send_context *pContext)
Forest Bond92b96792009-06-13 07:38:31 -0400565{
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000566 int status;
567 struct urb *pUrb;
Forest Bond92b96792009-06-13 07:38:31 -0400568
Andres Moree269fc22013-02-12 20:36:29 -0500569 pDevice->bPWBitOn = false;
Forest Bond92b96792009-06-13 07:38:31 -0400570
571/*
572 if (pDevice->pPendingBulkOutContext != NULL) {
573 pDevice->NumContextsQueued++;
574 EnqueueContext(pDevice->FirstTxContextQueue, pDevice->LastTxContextQueue, pContext);
575 status = STATUS_PENDING;
576 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Send pending!\n");
577 return status;
578 }
579*/
580
581 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_nsSendBulkOut\n");
582
Andres More731047f2010-08-05 22:17:20 -0300583 if (MP_IS_READY(pDevice) && (pDevice->Flags & fMP_POST_WRITES)) {
Forest Bond92b96792009-06-13 07:38:31 -0400584
585 pUrb = pContext->pUrb;
586 pDevice->ulBulkOutPosted++;
587// pDevice->pPendingBulkOutContext = pContext;
588 usb_fill_bulk_urb(
589 pUrb,
590 pDevice->usb,
Andres More8611a292010-05-01 14:25:00 -0300591 usb_sndbulkpipe(pDevice->usb, 3),
592 (void *) &(pContext->Data[0]),
Forest Bond92b96792009-06-13 07:38:31 -0400593 pContext->uBufLen,
594 s_nsBulkOutIoCompleteWrite,
595 pContext);
596
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700597 status = usb_submit_urb(pUrb, GFP_ATOMIC);
598 if (status != 0)
Forest Bond92b96792009-06-13 07:38:31 -0400599 {
600 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Submit Tx URB failed %d\n", status);
Andres Moree269fc22013-02-12 20:36:29 -0500601 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -0400602 return STATUS_FAILURE;
603 }
604 return STATUS_PENDING;
605 }
606 else {
Andres Moree269fc22013-02-12 20:36:29 -0500607 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -0400608 return STATUS_RESOURCES;
609 }
610}
611
612/*
613 * Description: s_nsBulkOutIoCompleteWrite
614 * 1a) Indicate to the protocol the status of the write.
615 * 1b) Return ownership of the packet to the protocol.
616 *
617 * 2) If any more packets are queue for sending, send another packet
618 * to USBD.
619 * If the attempt to send the packet to the driver fails,
620 * return ownership of the packet to the protocol and
621 * try another packet (until one succeeds).
622 *
623 * Parameters:
624 * In:
625 * pdoUsbDevObj - pointer to the USB device object which
626 * completed the irp
627 * pIrp - the irp which was completed by the
628 * device object
629 * pContext - the context given to IoSetCompletionRoutine
630 * before calling IoCallDriver on the irp
631 * The pContext is a pointer to the USB device object.
632 * Out:
633 * none
634 *
635 * Return Value: STATUS_MORE_PROCESSING_REQUIRED - allows the completion routine
636 * (IofCompleteRequest) to stop working on the irp.
637 *
638 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000639
640static void s_nsBulkOutIoCompleteWrite(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400641{
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000642 struct vnt_private *pDevice;
643 int status;
644 CONTEXT_TYPE ContextType;
645 unsigned long ulBufLen;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +0100646 struct vnt_usb_send_context *pContext;
Forest Bond92b96792009-06-13 07:38:31 -0400647
Forest Bond92b96792009-06-13 07:38:31 -0400648 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsBulkOutIoCompleteWrite\n");
649 //
650 // The context given to IoSetCompletionRoutine is an USB_CONTEXT struct
651 //
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +0100652 pContext = (struct vnt_usb_send_context *)urb->context;
Forest Bond92b96792009-06-13 07:38:31 -0400653
654 pDevice = pContext->pDevice;
655 ContextType = pContext->Type;
656 ulBufLen = pContext->uBufLen;
657
658 if (!netif_device_present(pDevice->dev))
659 return;
660
661 //
662 // Perform various IRP, URB, and buffer 'sanity checks'
663 //
664
665 status = urb->status;
Forest Bond92b96792009-06-13 07:38:31 -0400666
667 if(status == STATUS_SUCCESS) {
668 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Write %d bytes\n",(int)ulBufLen);
669 pDevice->ulBulkOutBytesWrite += ulBufLen;
670 pDevice->ulBulkOutContCRCError = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400671 } else {
672 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"BULK Out failed %d\n", status);
673 pDevice->ulBulkOutError++;
674 }
675
676// pDevice->ulCheckForHangCount = 0;
677// pDevice->pPendingBulkOutContext = NULL;
678
679 if ( CONTEXT_DATA_PACKET == ContextType ) {
680 // Indicate to the protocol the status of the sent packet and return
681 // ownership of the packet.
682 if (pContext->pPacket != NULL) {
683 dev_kfree_skb_irq(pContext->pPacket);
684 pContext->pPacket = NULL;
685 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"tx %d bytes\n",(int)ulBufLen);
686 }
687
688 pDevice->dev->trans_start = jiffies;
689
Forest Bond92b96792009-06-13 07:38:31 -0400690 if (status == STATUS_SUCCESS) {
691 pDevice->packetsSent++;
692 }
693 else {
694 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Send USB error! [%08xh]\n", status);
695 pDevice->packetsSentDropped++;
696 }
697
698 }
Andres More4e9b5e22013-02-12 20:36:30 -0500699 if (pDevice->bLinkPass == true) {
Forest Bond92b96792009-06-13 07:38:31 -0400700 if (netif_queue_stopped(pDevice->dev))
701 netif_wake_queue(pDevice->dev);
702 }
Andres Moree269fc22013-02-12 20:36:29 -0500703 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -0400704
705 return;
706}