blob: 0ae5d20f3f342d62d74da857f1bc0c1cf4095ce4 [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
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000298int PIPEnsInterruptRead(struct vnt_private *priv)
Forest Bond92b96792009-06-13 07:38:31 -0400299{
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000300 int status = STATUS_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -0400301
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000302 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
303 "---->s_nsStartInterruptUsbRead()\n");
Forest Bond92b96792009-06-13 07:38:31 -0400304
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000305 if (priv->int_buf.in_use == true)
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000306 return STATUS_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -0400307
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000308 priv->int_buf.in_use = true;
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000309 priv->ulIntInPosted++;
Forest Bond92b96792009-06-13 07:38:31 -0400310
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000311 usb_fill_int_urb(priv->pInterruptURB,
312 priv->usb,
313 usb_rcvbulkpipe(priv->usb, 1),
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000314 priv->int_buf.data_buf,
Forest Bond92b96792009-06-13 07:38:31 -0400315 MAX_INTERRUPT_SIZE,
316 s_nsInterruptUsbIoCompleteRead,
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000317 priv,
318 priv->int_interval);
Forest Bond92b96792009-06-13 07:38:31 -0400319
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000320 status = usb_submit_urb(priv->pInterruptURB, GFP_ATOMIC);
321 if (status) {
Malcolm Priestley59858f52014-02-19 18:36:37 +0000322 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000323 "Submit int URB failed %d\n", status);
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000324 priv->int_buf.in_use = false;
Malcolm Priestley59858f52014-02-19 18:36:37 +0000325 }
Forest Bond92b96792009-06-13 07:38:31 -0400326
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000327 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
328 "<----s_nsStartInterruptUsbRead Return(%x)\n", status);
329
330 return status;
Forest Bond92b96792009-06-13 07:38:31 -0400331}
332
Forest Bond92b96792009-06-13 07:38:31 -0400333/*
334 * Description:
335 * Complete function of usb interrupt in irp.
336 *
337 * Parameters:
338 * In:
339 * pDevice - Pointer to the adapter
340 *
341 * Out:
342 * none
343 *
344 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
345 *
346 */
Forest Bond92b96792009-06-13 07:38:31 -0400347
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000348static void s_nsInterruptUsbIoCompleteRead(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400349{
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000350 struct vnt_private *priv = (struct vnt_private *)urb->context;
351 int status;
Forest Bond92b96792009-06-13 07:38:31 -0400352
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000353 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
354 "---->s_nsInterruptUsbIoCompleteRead\n");
Forest Bond92b96792009-06-13 07:38:31 -0400355
Malcolm Priestleyc98fbf92014-02-17 21:16:20 +0000356 switch (urb->status) {
357 case 0:
358 case -ETIMEDOUT:
359 break;
360 case -ECONNRESET:
361 case -ENOENT:
362 case -ESHUTDOWN:
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000363 priv->int_buf.in_use = false;
Malcolm Priestleyc98fbf92014-02-17 21:16:20 +0000364 return;
365 default:
366 break;
367 }
368
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000369 status = urb->status;
Forest Bond92b96792009-06-13 07:38:31 -0400370
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000371 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
372 "s_nsInterruptUsbIoCompleteRead Status %d\n", status);
Forest Bond92b96792009-06-13 07:38:31 -0400373
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000374 if (status != STATUS_SUCCESS) {
375 priv->ulBulkInError++;
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000376 priv->int_buf.in_use = false;
Forest Bond92b96792009-06-13 07:38:31 -0400377
Malcolm Priestley247b4b62014-02-17 21:12:51 +0000378 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000379 "IntUSBIoCompleteControl STATUS = %d\n", status);
Malcolm Priestley247b4b62014-02-17 21:12:51 +0000380 } else {
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000381 priv->ulIntInBytesRead += (unsigned long)urb->actual_length;
382 priv->ulIntInContCRCError = 0;
383 priv->bEventAvailable = true;
384 INTnsProcessData(priv);
Malcolm Priestley247b4b62014-02-17 21:12:51 +0000385 }
Malcolm Priestley749627f2014-02-17 21:24:33 +0000386
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000387 status = usb_submit_urb(priv->pInterruptURB, GFP_ATOMIC);
388 if (status) {
389 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
390 "Submit int URB failed %d\n", status);
391 } else {
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000392 priv->int_buf.in_use = true;
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000393 }
394
395 return;
Forest Bond92b96792009-06-13 07:38:31 -0400396}
397
398/*
399 * Description:
400 * Allocates an usb BulkIn irp and calls USBD.
401 *
402 * Parameters:
403 * In:
404 * pDevice - Pointer to the adapter
405 * Out:
406 * none
407 *
408 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
409 *
410 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000411
Malcolm Priestley115cac22013-08-28 21:12:35 +0100412int PIPEnsBulkInUsbRead(struct vnt_private *pDevice, struct vnt_rcb *pRCB)
Forest Bond92b96792009-06-13 07:38:31 -0400413{
Andres More6487c492010-08-02 20:51:57 -0300414 int ntStatus = 0;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000415 struct urb *pUrb;
Forest Bond92b96792009-06-13 07:38:31 -0400416
Forest Bond92b96792009-06-13 07:38:31 -0400417 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsStartBulkInUsbRead\n");
418
Andres More731047f2010-08-05 22:17:20 -0300419 if (pDevice->Flags & fMP_DISCONNECTED)
Forest Bond92b96792009-06-13 07:38:31 -0400420 return STATUS_FAILURE;
421
422 pDevice->ulBulkInPosted++;
423
Forest Bond92b96792009-06-13 07:38:31 -0400424 pUrb = pRCB->pUrb;
425 //
426 // Now that we have created the urb, we will send a
427 // request to the USB device object.
428 //
429 if (pRCB->skb == NULL) {
430 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"pRCB->skb is null \n");
431 return ntStatus;
432 }
433
434 usb_fill_bulk_urb(pUrb,
435 pDevice->usb,
436 usb_rcvbulkpipe(pDevice->usb, 2),
Andres More8611a292010-05-01 14:25:00 -0300437 (void *) (pRCB->skb->data),
Forest Bond92b96792009-06-13 07:38:31 -0400438 MAX_TOTAL_SIZE_WITH_ALL_HEADERS,
439 s_nsBulkInUsbIoCompleteRead,
440 pRCB);
441
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700442 ntStatus = usb_submit_urb(pUrb, GFP_ATOMIC);
443 if (ntStatus != 0) {
Forest Bond92b96792009-06-13 07:38:31 -0400444 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Submit Rx URB failed %d\n", ntStatus);
445 return STATUS_FAILURE ;
446 }
447 pRCB->Ref = 1;
Andres More4e9b5e22013-02-12 20:36:30 -0500448 pRCB->bBoolInUse= true;
Forest Bond92b96792009-06-13 07:38:31 -0400449
450 return ntStatus;
451}
452
Forest Bond92b96792009-06-13 07:38:31 -0400453/*
454 * Description:
455 * Complete function of usb BulkIn irp.
456 *
457 * Parameters:
458 * In:
459 * pDevice - Pointer to the adapter
460 *
461 * Out:
462 * none
463 *
464 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
465 *
466 */
Forest Bond92b96792009-06-13 07:38:31 -0400467
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000468static void s_nsBulkInUsbIoCompleteRead(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400469{
Malcolm Priestley115cac22013-08-28 21:12:35 +0100470 struct vnt_rcb *pRCB = (struct vnt_rcb *)urb->context;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000471 struct vnt_private *pDevice = pRCB->pDevice;
472 unsigned long bytesRead;
Andres Moree269fc22013-02-12 20:36:29 -0500473 int bIndicateReceive = false;
474 int bReAllocSkb = false;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000475 int status;
Forest Bond92b96792009-06-13 07:38:31 -0400476
477 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsBulkInUsbIoCompleteRead\n");
478 status = urb->status;
479 bytesRead = urb->actual_length;
480
481 if (status) {
482 pDevice->ulBulkInError++;
483 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"BULK In failed %d\n", status);
Forest Bond92b96792009-06-13 07:38:31 -0400484//todo...xxxxxx
485// if (status == USBD_STATUS_CRC) {
486// pDevice->ulBulkInContCRCError++;
487// }
488// if (status == STATUS_DEVICE_NOT_CONNECTED )
489// {
490// MP_SET_FLAG(pDevice, fMP_DISCONNECTED);
491// }
492 } else {
Malcolm Priestley87c62982012-11-04 16:18:56 +0000493 if (bytesRead)
Andres More4e9b5e22013-02-12 20:36:30 -0500494 bIndicateReceive = true;
Forest Bond92b96792009-06-13 07:38:31 -0400495 pDevice->ulBulkInContCRCError = 0;
496 pDevice->ulBulkInBytesRead += bytesRead;
Forest Bond92b96792009-06-13 07:38:31 -0400497 }
498
Forest Bond92b96792009-06-13 07:38:31 -0400499 if (bIndicateReceive) {
500 spin_lock(&pDevice->lock);
Andres More4e9b5e22013-02-12 20:36:30 -0500501 if (RXbBulkInProcessData(pDevice, pRCB, bytesRead) == true)
502 bReAllocSkb = true;
Forest Bond92b96792009-06-13 07:38:31 -0400503 spin_unlock(&pDevice->lock);
504 }
505 pRCB->Ref--;
506 if (pRCB->Ref == 0)
507 {
508 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"RxvFreeNormal %d \n",pDevice->NumRecvFreeList);
509 spin_lock(&pDevice->lock);
510 RXvFreeRCB(pRCB, bReAllocSkb);
511 spin_unlock(&pDevice->lock);
512 }
513
Forest Bond92b96792009-06-13 07:38:31 -0400514 return;
515}
516
517/*
518 * Description:
519 * Allocates an usb BulkOut irp and calls USBD.
520 *
521 * Parameters:
522 * In:
523 * pDevice - Pointer to the adapter
524 * Out:
525 * none
526 *
527 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
528 *
529 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000530
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +0100531int PIPEnsSendBulkOut(struct vnt_private *pDevice,
532 struct vnt_usb_send_context *pContext)
Forest Bond92b96792009-06-13 07:38:31 -0400533{
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000534 int status;
535 struct urb *pUrb;
Forest Bond92b96792009-06-13 07:38:31 -0400536
Andres Moree269fc22013-02-12 20:36:29 -0500537 pDevice->bPWBitOn = false;
Forest Bond92b96792009-06-13 07:38:31 -0400538
539/*
540 if (pDevice->pPendingBulkOutContext != NULL) {
541 pDevice->NumContextsQueued++;
542 EnqueueContext(pDevice->FirstTxContextQueue, pDevice->LastTxContextQueue, pContext);
543 status = STATUS_PENDING;
544 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Send pending!\n");
545 return status;
546 }
547*/
548
549 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_nsSendBulkOut\n");
550
Andres More731047f2010-08-05 22:17:20 -0300551 if (MP_IS_READY(pDevice) && (pDevice->Flags & fMP_POST_WRITES)) {
Forest Bond92b96792009-06-13 07:38:31 -0400552
553 pUrb = pContext->pUrb;
554 pDevice->ulBulkOutPosted++;
555// pDevice->pPendingBulkOutContext = pContext;
556 usb_fill_bulk_urb(
557 pUrb,
558 pDevice->usb,
Andres More8611a292010-05-01 14:25:00 -0300559 usb_sndbulkpipe(pDevice->usb, 3),
560 (void *) &(pContext->Data[0]),
Forest Bond92b96792009-06-13 07:38:31 -0400561 pContext->uBufLen,
562 s_nsBulkOutIoCompleteWrite,
563 pContext);
564
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700565 status = usb_submit_urb(pUrb, GFP_ATOMIC);
566 if (status != 0)
Forest Bond92b96792009-06-13 07:38:31 -0400567 {
568 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Submit Tx URB failed %d\n", status);
Andres Moree269fc22013-02-12 20:36:29 -0500569 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -0400570 return STATUS_FAILURE;
571 }
572 return STATUS_PENDING;
573 }
574 else {
Andres Moree269fc22013-02-12 20:36:29 -0500575 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -0400576 return STATUS_RESOURCES;
577 }
578}
579
580/*
581 * Description: s_nsBulkOutIoCompleteWrite
582 * 1a) Indicate to the protocol the status of the write.
583 * 1b) Return ownership of the packet to the protocol.
584 *
585 * 2) If any more packets are queue for sending, send another packet
586 * to USBD.
587 * If the attempt to send the packet to the driver fails,
588 * return ownership of the packet to the protocol and
589 * try another packet (until one succeeds).
590 *
591 * Parameters:
592 * In:
593 * pdoUsbDevObj - pointer to the USB device object which
594 * completed the irp
595 * pIrp - the irp which was completed by the
596 * device object
597 * pContext - the context given to IoSetCompletionRoutine
598 * before calling IoCallDriver on the irp
599 * The pContext is a pointer to the USB device object.
600 * Out:
601 * none
602 *
603 * Return Value: STATUS_MORE_PROCESSING_REQUIRED - allows the completion routine
604 * (IofCompleteRequest) to stop working on the irp.
605 *
606 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000607
608static void s_nsBulkOutIoCompleteWrite(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400609{
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000610 struct vnt_usb_send_context *context =
Malcolm Priestley1c398a32014-02-19 21:50:14 +0000611 (struct vnt_usb_send_context *)urb->context;
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000612 struct vnt_private *priv = context->pDevice;
613 CONTEXT_TYPE context_type = context->Type;
614 unsigned long buf_len = context->uBufLen;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000615 int status;
Forest Bond92b96792009-06-13 07:38:31 -0400616
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000617 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsBulkOutIoCompleteWrite\n");
Forest Bond92b96792009-06-13 07:38:31 -0400618
Malcolm Priestleye8152bf2014-02-19 21:53:35 +0000619 switch (urb->status) {
620 case 0:
621 case -ETIMEDOUT:
622 break;
623 case -ECONNRESET:
624 case -ENOENT:
625 case -ESHUTDOWN:
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000626 context->bBoolInUse = false;
Malcolm Priestleye8152bf2014-02-19 21:53:35 +0000627 return;
628 default:
629 break;
630 }
631
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000632 if (!netif_device_present(priv->dev))
633 return;
Forest Bond92b96792009-06-13 07:38:31 -0400634
Forest Bond92b96792009-06-13 07:38:31 -0400635
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000636 status = urb->status;
Forest Bond92b96792009-06-13 07:38:31 -0400637
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000638 if (status == STATUS_SUCCESS) {
639 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
640 "Write %d bytes\n", (int)buf_len);
641 priv->ulBulkOutBytesWrite += buf_len;
642 priv->ulBulkOutContCRCError = 0;
643 } else {
644 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
645 "BULK Out failed %d\n", status);
646 priv->ulBulkOutError++;
647 }
Forest Bond92b96792009-06-13 07:38:31 -0400648
Forest Bond92b96792009-06-13 07:38:31 -0400649
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000650 if (CONTEXT_DATA_PACKET == context_type) {
651 if (context->pPacket != NULL) {
652 dev_kfree_skb_irq(context->pPacket);
653 context->pPacket = NULL;
654 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
655 "tx %d bytes\n", (int)buf_len);
656 }
Forest Bond92b96792009-06-13 07:38:31 -0400657
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000658 priv->dev->trans_start = jiffies;
Forest Bond92b96792009-06-13 07:38:31 -0400659
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000660 if (status == STATUS_SUCCESS) {
661 priv->packetsSent++;
662 } else {
663 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
664 "Send USB error! [%08xh]\n", status);
665 priv->packetsSentDropped++;
666 }
Forest Bond92b96792009-06-13 07:38:31 -0400667
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000668 }
Forest Bond92b96792009-06-13 07:38:31 -0400669
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000670 if (priv->bLinkPass == true) {
671 if (netif_queue_stopped(priv->dev))
672 netif_wake_queue(priv->dev);
673 }
674
675 context->bBoolInUse = false;
676
677 return;
Forest Bond92b96792009-06-13 07:38:31 -0400678}