blob: 1a6f91144ca02241ec080d6314f6bcfb06e570ff [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)
Iulia Manda9009dd12014-03-13 01:35:40 +0200108 __releases(&pDevice->lock)
109 __acquires(&pDevice->lock)
Forest Bond92b96792009-06-13 07:38:31 -0400110{
Andres More6487c492010-08-02 20:51:57 -0300111 int ntStatus = 0;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000112 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400113
Andres More731047f2010-08-05 22:17:20 -0300114 if (pDevice->Flags & fMP_DISCONNECTED)
Forest Bond92b96792009-06-13 07:38:31 -0400115 return STATUS_FAILURE;
116
Andres More731047f2010-08-05 22:17:20 -0300117 if (pDevice->Flags & fMP_CONTROL_WRITES)
Forest Bond92b96792009-06-13 07:38:31 -0400118 return STATUS_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -0400119
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000120 if (pDevice->Flags & fMP_CONTROL_READS)
121 return STATUS_FAILURE;
122
Malcolm Priestleye1feda12013-10-14 19:44:13 +0100123 if (pDevice->pControlURB->hcpriv)
124 return STATUS_FAILURE;
125
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000126 MP_SET_FLAG(pDevice, fMP_CONTROL_WRITES);
127
Forest Bond92b96792009-06-13 07:38:31 -0400128 pDevice->sUsbCtlRequest.bRequestType = 0x40;
129 pDevice->sUsbCtlRequest.bRequest = byRequest;
130 pDevice->sUsbCtlRequest.wValue = cpu_to_le16p(&wValue);
131 pDevice->sUsbCtlRequest.wIndex = cpu_to_le16p(&wIndex);
132 pDevice->sUsbCtlRequest.wLength = cpu_to_le16p(&wLength);
133 pDevice->pControlURB->transfer_flags |= URB_ASYNC_UNLINK;
134 pDevice->pControlURB->actual_length = 0;
135 // Notice, pbyBuffer limited point to variable buffer, can't be constant.
136 usb_fill_control_urb(pDevice->pControlURB, pDevice->usb,
137 usb_sndctrlpipe(pDevice->usb , 0), (char *) &pDevice->sUsbCtlRequest,
138 pbyBuffer, wLength, s_nsControlInUsbIoCompleteWrite, pDevice);
139
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700140 ntStatus = usb_submit_urb(pDevice->pControlURB, GFP_ATOMIC);
141 if (ntStatus != 0) {
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000142 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
143 "control send request submission failed: %d\n",
144 ntStatus);
145 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
Forest Bond92b96792009-06-13 07:38:31 -0400146 return STATUS_FAILURE;
147 }
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000148
Forest Bond92b96792009-06-13 07:38:31 -0400149 spin_unlock_irq(&pDevice->lock);
150 for (ii = 0; ii <= USB_CTL_WAIT; ii ++) {
Andres More731047f2010-08-05 22:17:20 -0300151
152 if (pDevice->Flags & fMP_CONTROL_WRITES)
153 mdelay(1);
Forest Bond92b96792009-06-13 07:38:31 -0400154 else
Andres More731047f2010-08-05 22:17:20 -0300155 break;
156
Forest Bond92b96792009-06-13 07:38:31 -0400157 if (ii >= USB_CTL_WAIT) {
Andres More731047f2010-08-05 22:17:20 -0300158 DBG_PRT(MSG_LEVEL_DEBUG,
159 KERN_INFO "control send request submission timeout\n");
Forest Bond92b96792009-06-13 07:38:31 -0400160 spin_lock_irq(&pDevice->lock);
161 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
162 return STATUS_FAILURE;
163 }
164 }
165 spin_lock_irq(&pDevice->lock);
166
167 return STATUS_SUCCESS;
168}
169
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000170int PIPEnsControlIn(struct vnt_private *pDevice, u8 byRequest, u16 wValue,
171 u16 wIndex, u16 wLength, u8 *pbyBuffer)
Iulia Manda9009dd12014-03-13 01:35:40 +0200172 __releases(&pDevice->lock)
173 __acquires(&pDevice->lock)
Forest Bond92b96792009-06-13 07:38:31 -0400174{
Andres More6487c492010-08-02 20:51:57 -0300175 int ntStatus = 0;
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000176 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400177
Andres More731047f2010-08-05 22:17:20 -0300178 if (pDevice->Flags & fMP_DISCONNECTED)
Forest Bond92b96792009-06-13 07:38:31 -0400179 return STATUS_FAILURE;
180
Andres More731047f2010-08-05 22:17:20 -0300181 if (pDevice->Flags & fMP_CONTROL_READS)
182 return STATUS_FAILURE;
183
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000184 if (pDevice->Flags & fMP_CONTROL_WRITES)
185 return STATUS_FAILURE;
186
Malcolm Priestleye1feda12013-10-14 19:44:13 +0100187 if (pDevice->pControlURB->hcpriv)
188 return STATUS_FAILURE;
189
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000190 MP_SET_FLAG(pDevice, fMP_CONTROL_READS);
191
Forest Bond92b96792009-06-13 07:38:31 -0400192 pDevice->sUsbCtlRequest.bRequestType = 0xC0;
193 pDevice->sUsbCtlRequest.bRequest = byRequest;
194 pDevice->sUsbCtlRequest.wValue = cpu_to_le16p(&wValue);
195 pDevice->sUsbCtlRequest.wIndex = cpu_to_le16p(&wIndex);
196 pDevice->sUsbCtlRequest.wLength = cpu_to_le16p(&wLength);
197 pDevice->pControlURB->transfer_flags |= URB_ASYNC_UNLINK;
198 pDevice->pControlURB->actual_length = 0;
199 usb_fill_control_urb(pDevice->pControlURB, pDevice->usb,
200 usb_rcvctrlpipe(pDevice->usb , 0), (char *) &pDevice->sUsbCtlRequest,
201 pbyBuffer, wLength, s_nsControlInUsbIoCompleteRead, pDevice);
202
Joe Perchesbfbfeec2010-03-24 22:17:06 -0700203 ntStatus = usb_submit_urb(pDevice->pControlURB, GFP_ATOMIC);
204 if (ntStatus != 0) {
Malcolm Priestleyae5943d2013-01-30 20:07:29 +0000205 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
206 "control request submission failed: %d\n", ntStatus);
207 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
208 return STATUS_FAILURE;
209 }
Forest Bond92b96792009-06-13 07:38:31 -0400210
211 spin_unlock_irq(&pDevice->lock);
212 for (ii = 0; ii <= USB_CTL_WAIT; ii ++) {
Andres More731047f2010-08-05 22:17:20 -0300213
214 if (pDevice->Flags & fMP_CONTROL_READS)
215 mdelay(1);
216 else
217 break;
218
219 if (ii >= USB_CTL_WAIT) {
220 DBG_PRT(MSG_LEVEL_DEBUG,
221 KERN_INFO "control rcv request submission timeout\n");
Forest Bond92b96792009-06-13 07:38:31 -0400222 spin_lock_irq(&pDevice->lock);
223 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
224 return STATUS_FAILURE;
225 }
226 }
227 spin_lock_irq(&pDevice->lock);
228
229 return ntStatus;
230}
231
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000232static void s_nsControlInUsbIoCompleteWrite(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400233{
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000234 struct vnt_private *pDevice = (struct vnt_private *)urb->context;
Forest Bond92b96792009-06-13 07:38:31 -0400235
236 pDevice = urb->context;
237 switch (urb->status) {
238 case 0:
239 break;
240 case -EINPROGRESS:
241 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl write urb status EINPROGRESS%d\n", urb->status);
242 break;
243 case -ENOENT:
244 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl write urb status ENOENT %d\n", urb->status);
245 break;
246 default:
247 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl write urb status %d\n", urb->status);
248 }
249
250 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
251}
252
Forest Bond92b96792009-06-13 07:38:31 -0400253/*
254 * Description:
255 * Complete function of usb Control callback
256 *
257 * Parameters:
258 * In:
259 * pDevice - Pointer to the adapter
260 *
261 * Out:
262 * none
263 *
264 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
265 *
266 */
Forest Bond92b96792009-06-13 07:38:31 -0400267
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000268static void s_nsControlInUsbIoCompleteRead(struct urb *urb)
269{
270 struct vnt_private *pDevice = (struct vnt_private *)urb->context;
271
Forest Bond92b96792009-06-13 07:38:31 -0400272 switch (urb->status) {
273 case 0:
274 break;
275 case -EINPROGRESS:
276 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl read urb status EINPROGRESS%d\n", urb->status);
277 break;
278 case -ENOENT:
279 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl read urb status = ENOENT %d\n", urb->status);
280 break;
281 default:
282 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ctrl read urb status %d\n", urb->status);
283 }
284
285 MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
286}
287
Forest Bond92b96792009-06-13 07:38:31 -0400288/*
289 * Description:
290 * Allocates an usb interrupt in irp and calls USBD.
291 *
292 * Parameters:
293 * In:
294 * pDevice - Pointer to the adapter
295 * Out:
296 * none
297 *
298 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
299 *
300 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000301
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000302int PIPEnsInterruptRead(struct vnt_private *priv)
Forest Bond92b96792009-06-13 07:38:31 -0400303{
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000304 int status = STATUS_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -0400305
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000306 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
307 "---->s_nsStartInterruptUsbRead()\n");
Forest Bond92b96792009-06-13 07:38:31 -0400308
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000309 if (priv->int_buf.in_use == true)
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000310 return STATUS_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -0400311
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000312 priv->int_buf.in_use = true;
Forest Bond92b96792009-06-13 07:38:31 -0400313
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000314 usb_fill_int_urb(priv->pInterruptURB,
315 priv->usb,
Malcolm Priestleyb9d93d12014-03-16 12:34:11 +0000316 usb_rcvintpipe(priv->usb, 1),
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000317 priv->int_buf.data_buf,
Forest Bond92b96792009-06-13 07:38:31 -0400318 MAX_INTERRUPT_SIZE,
319 s_nsInterruptUsbIoCompleteRead,
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000320 priv,
321 priv->int_interval);
Forest Bond92b96792009-06-13 07:38:31 -0400322
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000323 status = usb_submit_urb(priv->pInterruptURB, GFP_ATOMIC);
324 if (status) {
Malcolm Priestley59858f52014-02-19 18:36:37 +0000325 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000326 "Submit int URB failed %d\n", status);
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000327 priv->int_buf.in_use = false;
Malcolm Priestley59858f52014-02-19 18:36:37 +0000328 }
Forest Bond92b96792009-06-13 07:38:31 -0400329
Malcolm Priestley5f38b782014-02-19 18:37:32 +0000330 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
331 "<----s_nsStartInterruptUsbRead Return(%x)\n", status);
332
333 return status;
Forest Bond92b96792009-06-13 07:38:31 -0400334}
335
Forest Bond92b96792009-06-13 07:38:31 -0400336/*
337 * Description:
338 * Complete function of usb interrupt in irp.
339 *
340 * Parameters:
341 * In:
342 * pDevice - Pointer to the adapter
343 *
344 * Out:
345 * none
346 *
347 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
348 *
349 */
Forest Bond92b96792009-06-13 07:38:31 -0400350
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000351static void s_nsInterruptUsbIoCompleteRead(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400352{
Malcolm Priestley599e4b52014-02-25 20:51:51 +0000353 struct vnt_private *priv = urb->context;
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000354 int status;
Forest Bond92b96792009-06-13 07:38:31 -0400355
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000356 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
357 "---->s_nsInterruptUsbIoCompleteRead\n");
Forest Bond92b96792009-06-13 07:38:31 -0400358
Malcolm Priestleyc98fbf92014-02-17 21:16:20 +0000359 switch (urb->status) {
360 case 0:
361 case -ETIMEDOUT:
362 break;
363 case -ECONNRESET:
364 case -ENOENT:
365 case -ESHUTDOWN:
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000366 priv->int_buf.in_use = false;
Malcolm Priestleyc98fbf92014-02-17 21:16:20 +0000367 return;
368 default:
369 break;
370 }
371
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000372 status = urb->status;
Forest Bond92b96792009-06-13 07:38:31 -0400373
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000374 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
375 "s_nsInterruptUsbIoCompleteRead Status %d\n", status);
Forest Bond92b96792009-06-13 07:38:31 -0400376
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000377 if (status != STATUS_SUCCESS) {
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000378 priv->int_buf.in_use = false;
Forest Bond92b96792009-06-13 07:38:31 -0400379
Malcolm Priestley247b4b62014-02-17 21:12:51 +0000380 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000381 "IntUSBIoCompleteControl STATUS = %d\n", status);
Malcolm Priestley247b4b62014-02-17 21:12:51 +0000382 } else {
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000383 INTnsProcessData(priv);
Malcolm Priestley247b4b62014-02-17 21:12:51 +0000384 }
Malcolm Priestley749627f2014-02-17 21:24:33 +0000385
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000386 status = usb_submit_urb(priv->pInterruptURB, GFP_ATOMIC);
387 if (status) {
388 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
389 "Submit int URB failed %d\n", status);
390 } else {
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000391 priv->int_buf.in_use = true;
Malcolm Priestleyd9ad7a92014-02-17 21:27:30 +0000392 }
393
394 return;
Forest Bond92b96792009-06-13 07:38:31 -0400395}
396
397/*
398 * Description:
399 * Allocates an usb BulkIn irp and calls USBD.
400 *
401 * Parameters:
402 * In:
403 * pDevice - Pointer to the adapter
404 * Out:
405 * none
406 *
407 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
408 *
409 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000410
Malcolm Priestley0b787d72014-02-25 20:51:50 +0000411int PIPEnsBulkInUsbRead(struct vnt_private *priv, struct vnt_rcb *rcb)
Forest Bond92b96792009-06-13 07:38:31 -0400412{
Malcolm Priestley0b787d72014-02-25 20:51:50 +0000413 int status = 0;
414 struct urb *urb;
Forest Bond92b96792009-06-13 07:38:31 -0400415
Malcolm Priestley0b787d72014-02-25 20:51:50 +0000416 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsStartBulkInUsbRead\n");
Forest Bond92b96792009-06-13 07:38:31 -0400417
Malcolm Priestley0b787d72014-02-25 20:51:50 +0000418 if (priv->Flags & fMP_DISCONNECTED)
419 return STATUS_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -0400420
Malcolm Priestley0b787d72014-02-25 20:51:50 +0000421 urb = rcb->pUrb;
422 if (rcb->skb == NULL) {
423 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"rcb->skb is null\n");
424 return status;
425 }
Forest Bond92b96792009-06-13 07:38:31 -0400426
Malcolm Priestley0b787d72014-02-25 20:51:50 +0000427 usb_fill_bulk_urb(urb,
428 priv->usb,
429 usb_rcvbulkpipe(priv->usb, 2),
430 (void *) (rcb->skb->data),
Forest Bond92b96792009-06-13 07:38:31 -0400431 MAX_TOTAL_SIZE_WITH_ALL_HEADERS,
432 s_nsBulkInUsbIoCompleteRead,
Malcolm Priestley0b787d72014-02-25 20:51:50 +0000433 rcb);
Forest Bond92b96792009-06-13 07:38:31 -0400434
Malcolm Priestley0b787d72014-02-25 20:51:50 +0000435 status = usb_submit_urb(urb, GFP_ATOMIC);
436 if (status != 0) {
437 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
438 "Submit Rx URB failed %d\n", status);
Forest Bond92b96792009-06-13 07:38:31 -0400439 return STATUS_FAILURE ;
440 }
Forest Bond92b96792009-06-13 07:38:31 -0400441
Malcolm Priestley0b787d72014-02-25 20:51:50 +0000442 rcb->Ref = 1;
443 rcb->bBoolInUse = true;
444
445 return status;
Forest Bond92b96792009-06-13 07:38:31 -0400446}
447
Forest Bond92b96792009-06-13 07:38:31 -0400448/*
449 * Description:
450 * Complete function of usb BulkIn irp.
451 *
452 * Parameters:
453 * In:
454 * pDevice - Pointer to the adapter
455 *
456 * Out:
457 * none
458 *
459 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
460 *
461 */
Forest Bond92b96792009-06-13 07:38:31 -0400462
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000463static void s_nsBulkInUsbIoCompleteRead(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400464{
Malcolm Priestley599e4b52014-02-25 20:51:51 +0000465 struct vnt_rcb *rcb = urb->context;
Malcolm Priestleyd4fa2ab2014-02-25 20:51:49 +0000466 struct vnt_private *priv = rcb->pDevice;
467 int re_alloc_skb = false;
Forest Bond92b96792009-06-13 07:38:31 -0400468
Malcolm Priestleyd4fa2ab2014-02-25 20:51:49 +0000469 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsBulkInUsbIoCompleteRead\n");
Malcolm Priestleye3a8fa12014-02-25 20:51:46 +0000470
Malcolm Priestley67638982014-02-25 20:51:48 +0000471 switch (urb->status) {
472 case 0:
Malcolm Priestley67638982014-02-25 20:51:48 +0000473 break;
474 case -ECONNRESET:
475 case -ENOENT:
476 case -ESHUTDOWN:
477 return;
478 case -ETIMEDOUT:
479 default:
Malcolm Priestley67638982014-02-25 20:51:48 +0000480 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
481 "BULK In failed %d\n", urb->status);
482 break;
483 }
Forest Bond92b96792009-06-13 07:38:31 -0400484
Malcolm Priestleyd4fa2ab2014-02-25 20:51:49 +0000485 if (urb->actual_length) {
486 spin_lock(&priv->lock);
Forest Bond92b96792009-06-13 07:38:31 -0400487
Malcolm Priestleyd4fa2ab2014-02-25 20:51:49 +0000488 if (RXbBulkInProcessData(priv, rcb, urb->actual_length) == true)
489 re_alloc_skb = true;
490
491 spin_unlock(&priv->lock);
492 }
493
494 rcb->Ref--;
495 if (rcb->Ref == 0) {
496 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"RxvFreeNormal %d\n",
497 priv->NumRecvFreeList);
498 spin_lock(&priv->lock);
499
500 RXvFreeRCB(rcb, re_alloc_skb);
501
502 spin_unlock(&priv->lock);
503 }
504
505 return;
Forest Bond92b96792009-06-13 07:38:31 -0400506}
507
508/*
509 * Description:
510 * Allocates an usb BulkOut irp and calls USBD.
511 *
512 * Parameters:
513 * In:
514 * pDevice - Pointer to the adapter
515 * Out:
516 * none
517 *
518 * Return Value: STATUS_INSUFFICIENT_RESOURCES or result of IoCallDriver
519 *
520 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000521
Malcolm Priestley3f382902014-02-25 20:51:45 +0000522int PIPEnsSendBulkOut(struct vnt_private *priv,
523 struct vnt_usb_send_context *context)
Forest Bond92b96792009-06-13 07:38:31 -0400524{
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000525 int status;
Malcolm Priestley3f382902014-02-25 20:51:45 +0000526 struct urb *urb;
Forest Bond92b96792009-06-13 07:38:31 -0400527
Malcolm Priestley3f382902014-02-25 20:51:45 +0000528 priv->bPWBitOn = false;
Forest Bond92b96792009-06-13 07:38:31 -0400529
Malcolm Priestley3f382902014-02-25 20:51:45 +0000530 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_nsSendBulkOut\n");
Forest Bond92b96792009-06-13 07:38:31 -0400531
Malcolm Priestley3f382902014-02-25 20:51:45 +0000532 if (!(MP_IS_READY(priv) && priv->Flags & fMP_POST_WRITES)) {
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100533 context->in_use = false;
Malcolm Priestley13338302014-02-25 20:51:43 +0000534 return STATUS_RESOURCES;
535 }
Forest Bond92b96792009-06-13 07:38:31 -0400536
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100537 urb = context->urb;
Forest Bond92b96792009-06-13 07:38:31 -0400538
Malcolm Priestley3f382902014-02-25 20:51:45 +0000539 usb_fill_bulk_urb(urb,
540 priv->usb,
541 usb_sndbulkpipe(priv->usb, 3),
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100542 context->data,
543 context->buf_len,
Malcolm Priestley3f382902014-02-25 20:51:45 +0000544 s_nsBulkOutIoCompleteWrite,
545 context);
546
547 status = usb_submit_urb(urb, GFP_ATOMIC);
548 if (status != 0) {
549 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
550 "Submit Tx URB failed %d\n", status);
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100551 context->in_use = false;
Malcolm Priestley3f382902014-02-25 20:51:45 +0000552 return STATUS_FAILURE;
553 }
554
555 return STATUS_PENDING;
Forest Bond92b96792009-06-13 07:38:31 -0400556}
557
558/*
559 * Description: s_nsBulkOutIoCompleteWrite
560 * 1a) Indicate to the protocol the status of the write.
561 * 1b) Return ownership of the packet to the protocol.
562 *
563 * 2) If any more packets are queue for sending, send another packet
564 * to USBD.
565 * If the attempt to send the packet to the driver fails,
566 * return ownership of the packet to the protocol and
567 * try another packet (until one succeeds).
568 *
569 * Parameters:
570 * In:
571 * pdoUsbDevObj - pointer to the USB device object which
572 * completed the irp
573 * pIrp - the irp which was completed by the
574 * device object
575 * pContext - the context given to IoSetCompletionRoutine
576 * before calling IoCallDriver on the irp
577 * The pContext is a pointer to the USB device object.
578 * Out:
579 * none
580 *
581 * Return Value: STATUS_MORE_PROCESSING_REQUIRED - allows the completion routine
582 * (IofCompleteRequest) to stop working on the irp.
583 *
584 */
Malcolm Priestleyfe5d00e2012-12-10 22:14:36 +0000585
586static void s_nsBulkOutIoCompleteWrite(struct urb *urb)
Forest Bond92b96792009-06-13 07:38:31 -0400587{
Malcolm Priestley599e4b52014-02-25 20:51:51 +0000588 struct vnt_usb_send_context *context = urb->context;
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100589 struct vnt_private *priv = context->priv;
Malcolm Priestley1450ba62014-02-19 21:56:33 +0000590 u8 context_type = context->type;
Forest Bond92b96792009-06-13 07:38:31 -0400591
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000592 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsBulkOutIoCompleteWrite\n");
Forest Bond92b96792009-06-13 07:38:31 -0400593
Malcolm Priestleye8152bf2014-02-19 21:53:35 +0000594 switch (urb->status) {
595 case 0:
Malcolm Priestleyd1b2a112014-02-27 23:06:15 +0000596 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100597 "Write %d bytes\n", context->buf_len);
Malcolm Priestleye8152bf2014-02-19 21:53:35 +0000598 break;
599 case -ECONNRESET:
600 case -ENOENT:
601 case -ESHUTDOWN:
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100602 context->in_use = false;
Malcolm Priestleye8152bf2014-02-19 21:53:35 +0000603 return;
Malcolm Priestleyd1b2a112014-02-27 23:06:15 +0000604 case -ETIMEDOUT:
Malcolm Priestleye8152bf2014-02-19 21:53:35 +0000605 default:
Malcolm Priestleyd1b2a112014-02-27 23:06:15 +0000606 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
607 "BULK Out failed %d\n", urb->status);
Malcolm Priestleye8152bf2014-02-19 21:53:35 +0000608 break;
609 }
610
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000611 if (!netif_device_present(priv->dev))
612 return;
Forest Bond92b96792009-06-13 07:38:31 -0400613
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000614 if (CONTEXT_DATA_PACKET == context_type) {
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100615 if (context->skb != NULL) {
616 dev_kfree_skb_irq(context->skb);
617 context->skb = NULL;
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000618 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100619 "tx %d bytes\n", context->buf_len);
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000620 }
Forest Bond92b96792009-06-13 07:38:31 -0400621
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000622 priv->dev->trans_start = jiffies;
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000623 }
Forest Bond92b96792009-06-13 07:38:31 -0400624
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000625 if (priv->bLinkPass == true) {
626 if (netif_queue_stopped(priv->dev))
627 netif_wake_queue(priv->dev);
628 }
629
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100630 context->in_use = false;
Malcolm Priestley21aa2122014-02-19 21:54:45 +0000631
632 return;
Forest Bond92b96792009-06-13 07:38:31 -0400633}