blob: 5275887089483b6b8ff8ffdc1e9fad46ac1f81fb [file] [log] [blame]
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001/*
2 * USB driver for Gigaset 307x base via direct USB connection.
3 *
4 * Copyright (c) 2001 by Hansjoerg Lipp <hjlipp@web.de>,
5 * Tilman Schmidt <tilman@imap.cc>,
Tilman Schmidt70440cf2006-04-10 22:55:14 -07006 * Stefan Eilers.
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08007 *
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08008 * =====================================================================
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 * =====================================================================
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080014 */
15
16#include "gigaset.h"
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080017#include <linux/usb.h>
18#include <linux/module.h>
19#include <linux/moduleparam.h>
20
21/* Version Information */
Tilman Schmidt70440cf2006-04-10 22:55:14 -070022#define DRIVER_AUTHOR "Tilman Schmidt <tilman@imap.cc>, Hansjoerg Lipp <hjlipp@web.de>, Stefan Eilers"
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080023#define DRIVER_DESC "USB Driver for Gigaset 307x"
24
25
26/* Module parameters */
27
28static int startmode = SM_ISDN;
29static int cidmode = 1;
30
31module_param(startmode, int, S_IRUGO);
32module_param(cidmode, int, S_IRUGO);
33MODULE_PARM_DESC(startmode, "start in isdn4linux mode");
34MODULE_PARM_DESC(cidmode, "Call-ID mode");
35
36#define GIGASET_MINORS 1
37#define GIGASET_MINOR 16
38#define GIGASET_MODULENAME "bas_gigaset"
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080039#define GIGASET_DEVNAME "ttyGB"
40
Tilman Schmidt73a88812006-04-22 02:35:30 -070041/* length limit according to Siemens 3070usb-protokoll.doc ch. 2.1 */
42#define IF_WRITEBUF 264
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080043
Tilman Schmidt170ebf82009-03-18 23:44:23 -070044/* interrupt pipe message size according to ibid. ch. 2.2 */
45#define IP_MSGSIZE 3
46
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080047/* Values for the Gigaset 307x */
48#define USB_GIGA_VENDOR_ID 0x0681
Tilman Schmidt73a88812006-04-22 02:35:30 -070049#define USB_3070_PRODUCT_ID 0x0001
50#define USB_3075_PRODUCT_ID 0x0002
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080051#define USB_SX303_PRODUCT_ID 0x0021
52#define USB_SX353_PRODUCT_ID 0x0022
53
54/* table of devices that work with this driver */
Tilman Schmidt7891adf2009-10-25 09:30:37 +000055static const struct usb_device_id gigaset_table[] = {
Tilman Schmidt73a88812006-04-22 02:35:30 -070056 { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_3070_PRODUCT_ID) },
57 { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_3075_PRODUCT_ID) },
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080058 { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_SX303_PRODUCT_ID) },
59 { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_SX353_PRODUCT_ID) },
60 { } /* Terminating entry */
61};
62
63MODULE_DEVICE_TABLE(usb, gigaset_table);
64
Tilman Schmidt06163f82006-06-26 00:25:33 -070065/*======================= local function prototypes ==========================*/
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080066
Tilman Schmidt06163f82006-06-26 00:25:33 -070067/* function called if a new device belonging to this driver is connected */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080068static int gigaset_probe(struct usb_interface *interface,
69 const struct usb_device_id *id);
70
71/* Function will be called if the device is unplugged */
72static void gigaset_disconnect(struct usb_interface *interface);
73
Tilman Schmidt024fd292008-02-06 01:38:26 -080074/* functions called before/after suspend */
75static int gigaset_suspend(struct usb_interface *intf, pm_message_t message);
76static int gigaset_resume(struct usb_interface *intf);
77
78/* functions called before/after device reset */
79static int gigaset_pre_reset(struct usb_interface *intf);
80static int gigaset_post_reset(struct usb_interface *intf);
81
Tilman Schmidt06163f82006-06-26 00:25:33 -070082static int atread_submit(struct cardstate *, int);
Tilman Schmidt73a88812006-04-22 02:35:30 -070083static void stopurbs(struct bas_bc_state *);
Tilman Schmidt06163f82006-06-26 00:25:33 -070084static int req_submit(struct bc_state *, int, int, int);
Tilman Schmidt73a88812006-04-22 02:35:30 -070085static int atwrite_submit(struct cardstate *, unsigned char *, int);
86static int start_cbsend(struct cardstate *);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080087
Tilman Schmidt06163f82006-06-26 00:25:33 -070088/*============================================================================*/
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080089
90struct bas_cardstate {
Tilman Schmidt784d5852006-04-10 22:55:04 -070091 struct usb_device *udev; /* USB device pointer */
92 struct usb_interface *interface; /* interface for this device */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080093 unsigned char minor; /* starting minor number */
94
Tilman Schmidt784d5852006-04-10 22:55:04 -070095 struct urb *urb_ctrl; /* control pipe default URB */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080096 struct usb_ctrlrequest dr_ctrl;
97 struct timer_list timer_ctrl; /* control request timeout */
Tilman Schmidt06163f82006-06-26 00:25:33 -070098 int retry_ctrl;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -080099
100 struct timer_list timer_atrdy; /* AT command ready timeout */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700101 struct urb *urb_cmd_out; /* for sending AT commands */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800102 struct usb_ctrlrequest dr_cmd_out;
103 int retry_cmd_out;
104
Tilman Schmidt784d5852006-04-10 22:55:04 -0700105 struct urb *urb_cmd_in; /* for receiving AT replies */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800106 struct usb_ctrlrequest dr_cmd_in;
107 struct timer_list timer_cmd_in; /* receive request timeout */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700108 unsigned char *rcvbuf; /* AT reply receive buffer */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800109
Tilman Schmidt784d5852006-04-10 22:55:04 -0700110 struct urb *urb_int_in; /* URB for interrupt pipe */
Tilman Schmidt170ebf82009-03-18 23:44:23 -0700111 unsigned char *int_in_buf;
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000112 struct work_struct int_in_wq; /* for usb_clear_halt() */
113 struct timer_list timer_int_in; /* int read retry delay */
114 int retry_int_in;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800115
116 spinlock_t lock; /* locks all following */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800117 int basstate; /* bitmap (BS_*) */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800118 int pending; /* uncompleted base request */
Tilman Schmidt024fd292008-02-06 01:38:26 -0800119 wait_queue_head_t waitqueue;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800120 int rcvbuf_size; /* size of AT receive buffer */
121 /* 0: no receive in progress */
122 int retry_cmd_in; /* receive req retry count */
123};
124
125/* status of direct USB connection to 307x base (bits in basstate) */
Tilman Schmidt73a88812006-04-22 02:35:30 -0700126#define BS_ATOPEN 0x001 /* AT channel open */
127#define BS_B1OPEN 0x002 /* B channel 1 open */
128#define BS_B2OPEN 0x004 /* B channel 2 open */
129#define BS_ATREADY 0x008 /* base ready for AT command */
130#define BS_INIT 0x010 /* base has signalled INIT_OK */
131#define BS_ATTIMER 0x020 /* waiting for HD_READY_SEND_ATDATA */
132#define BS_ATRDPEND 0x040 /* urb_cmd_in in use */
133#define BS_ATWRPEND 0x080 /* urb_cmd_out in use */
Tilman Schmidt024fd292008-02-06 01:38:26 -0800134#define BS_SUSPEND 0x100 /* USB port suspended */
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000135#define BS_RESETTING 0x200 /* waiting for HD_RESET_INTERRUPT_PIPE_ACK */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800136
137
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000138static struct gigaset_driver *driver;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800139
140/* usb specific object needed to register this driver with the usb subsystem */
141static struct usb_driver gigaset_usb_driver = {
142 .name = GIGASET_MODULENAME,
143 .probe = gigaset_probe,
144 .disconnect = gigaset_disconnect,
145 .id_table = gigaset_table,
Tilman Schmidt024fd292008-02-06 01:38:26 -0800146 .suspend = gigaset_suspend,
147 .resume = gigaset_resume,
148 .reset_resume = gigaset_post_reset,
149 .pre_reset = gigaset_pre_reset,
150 .post_reset = gigaset_post_reset,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -0700151 .disable_hub_initiated_lpm = 1,
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800152};
153
Tilman Schmidt73a88812006-04-22 02:35:30 -0700154/* get message text for usb_submit_urb return code
155 */
156static char *get_usb_rcmsg(int rc)
157{
158 static char unkmsg[28];
159
160 switch (rc) {
161 case 0:
162 return "success";
163 case -ENOMEM:
164 return "out of memory";
165 case -ENODEV:
166 return "device not present";
167 case -ENOENT:
168 return "endpoint not present";
169 case -ENXIO:
170 return "URB type not supported";
171 case -EINVAL:
172 return "invalid argument";
173 case -EAGAIN:
174 return "start frame too early or too much scheduled";
175 case -EFBIG:
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000176 return "too many isoc frames requested";
Tilman Schmidt73a88812006-04-22 02:35:30 -0700177 case -EPIPE:
178 return "endpoint stalled";
179 case -EMSGSIZE:
180 return "invalid packet size";
181 case -ENOSPC:
182 return "would overcommit USB bandwidth";
183 case -ESHUTDOWN:
184 return "device shut down";
185 case -EPERM:
186 return "reject flag set";
187 case -EHOSTUNREACH:
188 return "device suspended";
189 default:
190 snprintf(unkmsg, sizeof(unkmsg), "unknown error %d", rc);
191 return unkmsg;
192 }
193}
194
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800195/* get message text for USB status code
196 */
197static char *get_usb_statmsg(int status)
198{
199 static char unkmsg[28];
200
201 switch (status) {
202 case 0:
203 return "success";
204 case -ENOENT:
Tilman Schmidt73a88812006-04-22 02:35:30 -0700205 return "unlinked (sync)";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800206 case -EINPROGRESS:
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000207 return "URB still pending";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800208 case -EPROTO:
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000209 return "bitstuff error, timeout, or unknown USB error";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800210 case -EILSEQ:
Tilman Schmidt73a88812006-04-22 02:35:30 -0700211 return "CRC mismatch, timeout, or unknown USB error";
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -0700212 case -ETIME:
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000213 return "USB response timeout";
Tilman Schmidt73a88812006-04-22 02:35:30 -0700214 case -EPIPE:
215 return "endpoint stalled";
216 case -ECOMM:
217 return "IN buffer overrun";
218 case -ENOSR:
219 return "OUT buffer underrun";
220 case -EOVERFLOW:
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000221 return "endpoint babble";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800222 case -EREMOTEIO:
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000223 return "short packet";
Tilman Schmidt73a88812006-04-22 02:35:30 -0700224 case -ENODEV:
225 return "device removed";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800226 case -EXDEV:
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000227 return "partial isoc transfer";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800228 case -EINVAL:
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000229 return "ISO madness";
Tilman Schmidt73a88812006-04-22 02:35:30 -0700230 case -ECONNRESET:
231 return "unlinked (async)";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800232 case -ESHUTDOWN:
Tilman Schmidt73a88812006-04-22 02:35:30 -0700233 return "device shut down";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800234 default:
Tilman Schmidt73a88812006-04-22 02:35:30 -0700235 snprintf(unkmsg, sizeof(unkmsg), "unknown status %d", status);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800236 return unkmsg;
237 }
238}
239
240/* usb_pipetype_str
241 * retrieve string representation of USB pipe type
242 */
243static inline char *usb_pipetype_str(int pipe)
244{
245 if (usb_pipeisoc(pipe))
246 return "Isoc";
247 if (usb_pipeint(pipe))
248 return "Int";
249 if (usb_pipecontrol(pipe))
250 return "Ctrl";
251 if (usb_pipebulk(pipe))
252 return "Bulk";
253 return "?";
254}
255
256/* dump_urb
257 * write content of URB to syslog for debugging
258 */
259static inline void dump_urb(enum debuglevel level, const char *tag,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700260 struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800261{
262#ifdef CONFIG_GIGASET_DEBUG
263 int i;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700264 gig_dbg(level, "%s urb(0x%08lx)->{", tag, (unsigned long) urb);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800265 if (urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700266 gig_dbg(level,
267 " dev=0x%08lx, pipe=%s:EP%d/DV%d:%s, "
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800268 "hcpriv=0x%08lx, transfer_flags=0x%x,",
Tilman Schmidt784d5852006-04-10 22:55:04 -0700269 (unsigned long) urb->dev,
270 usb_pipetype_str(urb->pipe),
271 usb_pipeendpoint(urb->pipe), usb_pipedevice(urb->pipe),
272 usb_pipein(urb->pipe) ? "in" : "out",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800273 (unsigned long) urb->hcpriv,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700274 urb->transfer_flags);
275 gig_dbg(level,
276 " transfer_buffer=0x%08lx[%d], actual_length=%d, "
Andrew Morton249b0612007-02-10 01:46:49 -0800277 "setup_packet=0x%08lx,",
Tilman Schmidt784d5852006-04-10 22:55:04 -0700278 (unsigned long) urb->transfer_buffer,
279 urb->transfer_buffer_length, urb->actual_length,
Andrew Morton249b0612007-02-10 01:46:49 -0800280 (unsigned long) urb->setup_packet);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700281 gig_dbg(level,
282 " start_frame=%d, number_of_packets=%d, interval=%d, "
283 "error_count=%d,",
284 urb->start_frame, urb->number_of_packets, urb->interval,
285 urb->error_count);
286 gig_dbg(level,
287 " context=0x%08lx, complete=0x%08lx, "
288 "iso_frame_desc[]={",
289 (unsigned long) urb->context,
290 (unsigned long) urb->complete);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800291 for (i = 0; i < urb->number_of_packets; i++) {
Tilman Schmidt917f5082006-04-10 22:55:00 -0700292 struct usb_iso_packet_descriptor *pifd
293 = &urb->iso_frame_desc[i];
Tilman Schmidt784d5852006-04-10 22:55:04 -0700294 gig_dbg(level,
295 " {offset=%u, length=%u, actual_length=%u, "
296 "status=%u}",
297 pifd->offset, pifd->length, pifd->actual_length,
298 pifd->status);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800299 }
300 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700301 gig_dbg(level, "}}");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800302#endif
303}
304
305/* read/set modem control bits etc. (m10x only) */
306static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700307 unsigned new_state)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800308{
309 return -EINVAL;
310}
311
312static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
313{
314 return -EINVAL;
315}
316
317static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag)
318{
319 return -EINVAL;
320}
321
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000322/* set/clear bits in base connection state, return previous state
323 */
324static inline int update_basstate(struct bas_cardstate *ucs,
325 int set, int clear)
326{
327 unsigned long flags;
328 int state;
329
330 spin_lock_irqsave(&ucs->lock, flags);
331 state = ucs->basstate;
332 ucs->basstate = (state & ~clear) | set;
333 spin_unlock_irqrestore(&ucs->lock, flags);
334 return state;
335}
336
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800337/* error_hangup
338 * hang up any existing connection because of an unrecoverable error
339 * This function may be called from any context and takes care of scheduling
340 * the necessary actions for execution outside of interrupt context.
Tilman Schmidt06163f82006-06-26 00:25:33 -0700341 * cs->lock must not be held.
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800342 * argument:
343 * B channel control structure
344 */
345static inline void error_hangup(struct bc_state *bcs)
346{
347 struct cardstate *cs = bcs->cs;
348
Tilman Schmidt1528b182010-02-22 13:09:52 +0000349 gigaset_add_event(cs, &bcs->at_state, EV_HUP, NULL, 0, NULL);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800350 gigaset_schedule_event(cs);
351}
352
353/* error_reset
354 * reset Gigaset device because of an unrecoverable error
Tilman Schmidt06163f82006-06-26 00:25:33 -0700355 * This function may be called from any context, and takes care of
Tilman Schmidt73a88812006-04-22 02:35:30 -0700356 * scheduling the necessary actions for execution outside of interrupt context.
Tilman Schmidt60798c682010-09-30 13:35:21 +0000357 * cs->hw.bas->lock must not be held.
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800358 * argument:
359 * controller state structure
360 */
361static inline void error_reset(struct cardstate *cs)
362{
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000363 /* reset interrupt pipe to recover (ignore errors) */
364 update_basstate(cs->hw.bas, BS_RESETTING, 0);
Tilman Schmidt60798c682010-09-30 13:35:21 +0000365 if (req_submit(cs->bcs, HD_RESET_INTERRUPT_PIPE, 0, BAS_TIMEOUT))
366 /* submission failed, escalate to USB port reset */
367 usb_queue_reset_device(cs->hw.bas->interface);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800368}
369
370/* check_pending
371 * check for completion of pending control request
372 * parameter:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700373 * ucs hardware specific controller state structure
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800374 */
375static void check_pending(struct bas_cardstate *ucs)
376{
377 unsigned long flags;
378
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800379 spin_lock_irqsave(&ucs->lock, flags);
380 switch (ucs->pending) {
381 case 0:
382 break;
383 case HD_OPEN_ATCHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800384 if (ucs->basstate & BS_ATOPEN)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800385 ucs->pending = 0;
386 break;
387 case HD_OPEN_B1CHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800388 if (ucs->basstate & BS_B1OPEN)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800389 ucs->pending = 0;
390 break;
391 case HD_OPEN_B2CHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800392 if (ucs->basstate & BS_B2OPEN)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800393 ucs->pending = 0;
394 break;
395 case HD_CLOSE_ATCHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800396 if (!(ucs->basstate & BS_ATOPEN))
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800397 ucs->pending = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800398 break;
399 case HD_CLOSE_B1CHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800400 if (!(ucs->basstate & BS_B1OPEN))
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800401 ucs->pending = 0;
402 break;
403 case HD_CLOSE_B2CHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800404 if (!(ucs->basstate & BS_B2OPEN))
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800405 ucs->pending = 0;
406 break;
407 case HD_DEVICE_INIT_ACK: /* no reply expected */
408 ucs->pending = 0;
409 break;
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000410 case HD_RESET_INTERRUPT_PIPE:
411 if (!(ucs->basstate & BS_RESETTING))
412 ucs->pending = 0;
413 break;
Tilman Schmidtf86936f2012-04-25 13:02:20 +0000414 /*
415 * HD_READ_ATMESSAGE and HD_WRITE_ATMESSAGE are handled separately
416 * and should never end up here
417 */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800418 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700419 dev_warn(&ucs->interface->dev,
420 "unknown pending request 0x%02x cleared\n",
421 ucs->pending);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800422 ucs->pending = 0;
423 }
424
425 if (!ucs->pending)
426 del_timer(&ucs->timer_ctrl);
427
428 spin_unlock_irqrestore(&ucs->lock, flags);
429}
430
431/* cmd_in_timeout
432 * timeout routine for command input request
433 * argument:
434 * controller state structure
435 */
436static void cmd_in_timeout(unsigned long data)
437{
438 struct cardstate *cs = (struct cardstate *) data;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700439 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidt06163f82006-06-26 00:25:33 -0700440 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800441
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800442 if (!ucs->rcvbuf_size) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700443 gig_dbg(DEBUG_USBREQ, "%s: no receive in progress", __func__);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800444 return;
445 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800446
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000447 if (ucs->retry_cmd_in++ >= BAS_RETRY) {
Tilman Schmidt06163f82006-06-26 00:25:33 -0700448 dev_err(cs->dev,
449 "control read: timeout, giving up after %d tries\n",
450 ucs->retry_cmd_in);
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000451 kfree(ucs->rcvbuf);
452 ucs->rcvbuf = NULL;
453 ucs->rcvbuf_size = 0;
454 error_reset(cs);
455 return;
Tilman Schmidt06163f82006-06-26 00:25:33 -0700456 }
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000457
458 gig_dbg(DEBUG_USBREQ, "%s: timeout, retry %d",
459 __func__, ucs->retry_cmd_in);
460 rc = atread_submit(cs, BAS_TIMEOUT);
461 if (rc < 0) {
462 kfree(ucs->rcvbuf);
463 ucs->rcvbuf = NULL;
464 ucs->rcvbuf_size = 0;
465 if (rc != -ENODEV)
466 error_reset(cs);
467 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800468}
469
Tilman Schmidt06163f82006-06-26 00:25:33 -0700470/* read_ctrl_callback
471 * USB completion handler for control pipe input
472 * called by the USB subsystem in interrupt context
473 * parameter:
474 * urb USB request block
475 * urb->context = inbuf structure for controller state
476 */
David Howells7d12e782006-10-05 14:55:46 +0100477static void read_ctrl_callback(struct urb *urb)
Tilman Schmidt06163f82006-06-26 00:25:33 -0700478{
479 struct inbuf_t *inbuf = urb->context;
480 struct cardstate *cs = inbuf->cs;
481 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800482 int status = urb->status;
Tilman Schmidt06163f82006-06-26 00:25:33 -0700483 unsigned numbytes;
484 int rc;
485
486 update_basstate(ucs, 0, BS_ATRDPEND);
Tilman Schmidt024fd292008-02-06 01:38:26 -0800487 wake_up(&ucs->waitqueue);
Tilman Schmidt06163f82006-06-26 00:25:33 -0700488 del_timer(&ucs->timer_cmd_in);
489
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800490 switch (status) {
Tilman Schmidt06163f82006-06-26 00:25:33 -0700491 case 0: /* normal completion */
492 numbytes = urb->actual_length;
493 if (unlikely(numbytes != ucs->rcvbuf_size)) {
494 dev_warn(cs->dev,
Joe Perches475be4d2012-02-19 19:52:38 -0800495 "control read: received %d chars, expected %d\n",
Tilman Schmidt06163f82006-06-26 00:25:33 -0700496 numbytes, ucs->rcvbuf_size);
497 if (numbytes > ucs->rcvbuf_size)
498 numbytes = ucs->rcvbuf_size;
499 }
500
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000501 /* copy received bytes to inbuf, notify event layer */
502 if (gigaset_fill_inbuf(inbuf, ucs->rcvbuf, numbytes)) {
503 gig_dbg(DEBUG_INTR, "%s-->BH", __func__);
504 gigaset_schedule_event(cs);
Tilman Schmidt06163f82006-06-26 00:25:33 -0700505 }
506 break;
507
508 case -ENOENT: /* cancelled */
509 case -ECONNRESET: /* cancelled (async) */
510 case -EINPROGRESS: /* pending */
511 case -ENODEV: /* device removed */
512 case -ESHUTDOWN: /* device shut down */
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000513 /* no further action necessary */
Tilman Schmidt06163f82006-06-26 00:25:33 -0700514 gig_dbg(DEBUG_USBREQ, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800515 __func__, get_usb_statmsg(status));
Tilman Schmidt06163f82006-06-26 00:25:33 -0700516 break;
517
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000518 default: /* other errors: retry */
Tilman Schmidt06163f82006-06-26 00:25:33 -0700519 if (ucs->retry_cmd_in++ < BAS_RETRY) {
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000520 gig_dbg(DEBUG_USBREQ, "%s: %s, retry %d", __func__,
521 get_usb_statmsg(status), ucs->retry_cmd_in);
Tilman Schmidt06163f82006-06-26 00:25:33 -0700522 rc = atread_submit(cs, BAS_TIMEOUT);
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000523 if (rc >= 0)
524 /* successfully resubmitted, skip freeing */
Tilman Schmidt06163f82006-06-26 00:25:33 -0700525 return;
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000526 if (rc == -ENODEV)
527 /* disconnect, no further action necessary */
528 break;
Tilman Schmidt06163f82006-06-26 00:25:33 -0700529 }
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000530 dev_err(cs->dev, "control read: %s, giving up after %d tries\n",
531 get_usb_statmsg(status), ucs->retry_cmd_in);
Tilman Schmidt06163f82006-06-26 00:25:33 -0700532 error_reset(cs);
533 }
534
Tilman Schmidtc8701a02010-09-30 13:34:40 +0000535 /* read finished, free buffer */
Tilman Schmidt06163f82006-06-26 00:25:33 -0700536 kfree(ucs->rcvbuf);
537 ucs->rcvbuf = NULL;
538 ucs->rcvbuf_size = 0;
Tilman Schmidt06163f82006-06-26 00:25:33 -0700539}
540
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800541/* atread_submit
Tilman Schmidt73a88812006-04-22 02:35:30 -0700542 * submit an HD_READ_ATMESSAGE command URB and optionally start a timeout
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800543 * parameters:
544 * cs controller state structure
545 * timeout timeout in 1/10 sec., 0: none
546 * return value:
547 * 0 on success
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800548 * -EBUSY if another request is pending
549 * any URB submission error code
550 */
551static int atread_submit(struct cardstate *cs, int timeout)
552{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700553 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidt024fd292008-02-06 01:38:26 -0800554 int basstate;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800555 int ret;
556
Tilman Schmidt784d5852006-04-10 22:55:04 -0700557 gig_dbg(DEBUG_USBREQ, "-------> HD_READ_ATMESSAGE (%d)",
558 ucs->rcvbuf_size);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800559
Tilman Schmidt024fd292008-02-06 01:38:26 -0800560 basstate = update_basstate(ucs, BS_ATRDPEND, 0);
561 if (basstate & BS_ATRDPEND) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700562 dev_err(cs->dev,
563 "could not submit HD_READ_ATMESSAGE: URB busy\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800564 return -EBUSY;
565 }
566
Tilman Schmidt024fd292008-02-06 01:38:26 -0800567 if (basstate & BS_SUSPEND) {
568 dev_notice(cs->dev,
569 "HD_READ_ATMESSAGE not submitted, "
570 "suspend in progress\n");
571 update_basstate(ucs, 0, BS_ATRDPEND);
572 /* treat like disconnect */
573 return -ENODEV;
574 }
575
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800576 ucs->dr_cmd_in.bRequestType = IN_VENDOR_REQ;
577 ucs->dr_cmd_in.bRequest = HD_READ_ATMESSAGE;
578 ucs->dr_cmd_in.wValue = 0;
579 ucs->dr_cmd_in.wIndex = 0;
580 ucs->dr_cmd_in.wLength = cpu_to_le16(ucs->rcvbuf_size);
581 usb_fill_control_urb(ucs->urb_cmd_in, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700582 usb_rcvctrlpipe(ucs->udev, 0),
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000583 (unsigned char *) &ucs->dr_cmd_in,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700584 ucs->rcvbuf, ucs->rcvbuf_size,
585 read_ctrl_callback, cs->inbuf);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800586
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000587 ret = usb_submit_urb(ucs->urb_cmd_in, GFP_ATOMIC);
588 if (ret != 0) {
Tilman Schmidt73a88812006-04-22 02:35:30 -0700589 update_basstate(ucs, 0, BS_ATRDPEND);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700590 dev_err(cs->dev, "could not submit HD_READ_ATMESSAGE: %s\n",
Tilman Schmidt06163f82006-06-26 00:25:33 -0700591 get_usb_rcmsg(ret));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800592 return ret;
593 }
594
595 if (timeout > 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700596 gig_dbg(DEBUG_USBREQ, "setting timeout of %d/10 secs", timeout);
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +0000597 mod_timer(&ucs->timer_cmd_in, jiffies + timeout * HZ / 10);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800598 }
599 return 0;
600}
601
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000602/* int_in_work
603 * workqueue routine to clear halt on interrupt in endpoint
604 */
605
606static void int_in_work(struct work_struct *work)
607{
608 struct bas_cardstate *ucs =
609 container_of(work, struct bas_cardstate, int_in_wq);
610 struct urb *urb = ucs->urb_int_in;
611 struct cardstate *cs = urb->context;
612 int rc;
613
614 /* clear halt condition */
615 rc = usb_clear_halt(ucs->udev, urb->pipe);
616 gig_dbg(DEBUG_USBREQ, "clear_halt: %s", get_usb_rcmsg(rc));
617 if (rc == 0)
618 /* success, resubmit interrupt read URB */
619 rc = usb_submit_urb(urb, GFP_ATOMIC);
620 if (rc != 0 && rc != -ENODEV) {
621 dev_err(cs->dev, "clear halt failed: %s\n", get_usb_rcmsg(rc));
622 rc = usb_lock_device_for_reset(ucs->udev, ucs->interface);
623 if (rc == 0) {
624 rc = usb_reset_device(ucs->udev);
625 usb_unlock_device(ucs->udev);
626 }
627 }
628 ucs->retry_int_in = 0;
629}
630
631/* int_in_resubmit
632 * timer routine for interrupt read delayed resubmit
633 * argument:
634 * controller state structure
635 */
636static void int_in_resubmit(unsigned long data)
637{
638 struct cardstate *cs = (struct cardstate *) data;
639 struct bas_cardstate *ucs = cs->hw.bas;
640 int rc;
641
642 if (ucs->retry_int_in++ >= BAS_RETRY) {
643 dev_err(cs->dev, "interrupt read: giving up after %d tries\n",
644 ucs->retry_int_in);
645 usb_queue_reset_device(ucs->interface);
646 return;
647 }
648
649 gig_dbg(DEBUG_USBREQ, "%s: retry %d", __func__, ucs->retry_int_in);
650 rc = usb_submit_urb(ucs->urb_int_in, GFP_ATOMIC);
651 if (rc != 0 && rc != -ENODEV) {
652 dev_err(cs->dev, "could not resubmit interrupt URB: %s\n",
653 get_usb_rcmsg(rc));
654 usb_queue_reset_device(ucs->interface);
655 }
656}
657
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800658/* read_int_callback
659 * USB completion handler for interrupt pipe input
660 * called by the USB subsystem in interrupt context
661 * parameter:
662 * urb USB request block
663 * urb->context = controller state structure
664 */
David Howells7d12e782006-10-05 14:55:46 +0100665static void read_int_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800666{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700667 struct cardstate *cs = urb->context;
668 struct bas_cardstate *ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800669 struct bc_state *bcs;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800670 int status = urb->status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800671 unsigned long flags;
Tilman Schmidt73a88812006-04-22 02:35:30 -0700672 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800673 unsigned l;
674 int channel;
675
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800676 switch (status) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800677 case 0: /* success */
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000678 ucs->retry_int_in = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800679 break;
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000680 case -EPIPE: /* endpoint stalled */
681 schedule_work(&ucs->int_in_wq);
682 /* fall through */
Tilman Schmidt73a88812006-04-22 02:35:30 -0700683 case -ENOENT: /* cancelled */
684 case -ECONNRESET: /* cancelled (async) */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800685 case -EINPROGRESS: /* pending */
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000686 case -ENODEV: /* device removed */
687 case -ESHUTDOWN: /* device shut down */
688 /* no further action necessary */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700689 gig_dbg(DEBUG_USBREQ, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800690 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800691 return;
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000692 case -EPROTO: /* protocol error or unplug */
693 case -EILSEQ:
694 case -ETIME:
695 /* resubmit after delay */
696 gig_dbg(DEBUG_USBREQ, "%s: %s",
697 __func__, get_usb_statmsg(status));
698 mod_timer(&ucs->timer_int_in, jiffies + HZ / 10);
Tilman Schmidt73a88812006-04-22 02:35:30 -0700699 return;
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000700 default: /* other errors: just resubmit */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700701 dev_warn(cs->dev, "interrupt read: %s\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800702 get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800703 goto resubmit;
704 }
705
Tilman Schmidt73a88812006-04-22 02:35:30 -0700706 /* drop incomplete packets even if the missing bytes wouldn't matter */
Tilman Schmidt170ebf82009-03-18 23:44:23 -0700707 if (unlikely(urb->actual_length < IP_MSGSIZE)) {
Tilman Schmidt73a88812006-04-22 02:35:30 -0700708 dev_warn(cs->dev, "incomplete interrupt packet (%d bytes)\n",
709 urb->actual_length);
710 goto resubmit;
711 }
712
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800713 l = (unsigned) ucs->int_in_buf[1] +
Joe Perches475be4d2012-02-19 19:52:38 -0800714 (((unsigned) ucs->int_in_buf[2]) << 8);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800715
Tilman Schmidt784d5852006-04-10 22:55:04 -0700716 gig_dbg(DEBUG_USBREQ, "<-------%d: 0x%02x (%u [0x%02x 0x%02x])",
717 urb->actual_length, (int)ucs->int_in_buf[0], l,
718 (int)ucs->int_in_buf[1], (int)ucs->int_in_buf[2]);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800719
720 channel = 0;
721
722 switch (ucs->int_in_buf[0]) {
723 case HD_DEVICE_INIT_OK:
724 update_basstate(ucs, BS_INIT, 0);
725 break;
726
727 case HD_READY_SEND_ATDATA:
728 del_timer(&ucs->timer_atrdy);
729 update_basstate(ucs, BS_ATREADY, BS_ATTIMER);
730 start_cbsend(cs);
731 break;
732
733 case HD_OPEN_B2CHANNEL_ACK:
734 ++channel;
735 case HD_OPEN_B1CHANNEL_ACK:
736 bcs = cs->bcs + channel;
737 update_basstate(ucs, BS_B1OPEN << channel, 0);
738 gigaset_bchannel_up(bcs);
739 break;
740
741 case HD_OPEN_ATCHANNEL_ACK:
742 update_basstate(ucs, BS_ATOPEN, 0);
743 start_cbsend(cs);
744 break;
745
746 case HD_CLOSE_B2CHANNEL_ACK:
747 ++channel;
748 case HD_CLOSE_B1CHANNEL_ACK:
749 bcs = cs->bcs + channel;
750 update_basstate(ucs, 0, BS_B1OPEN << channel);
751 stopurbs(bcs->hw.bas);
752 gigaset_bchannel_down(bcs);
753 break;
754
755 case HD_CLOSE_ATCHANNEL_ACK:
756 update_basstate(ucs, 0, BS_ATOPEN);
757 break;
758
759 case HD_B2_FLOW_CONTROL:
760 ++channel;
761 case HD_B1_FLOW_CONTROL:
762 bcs = cs->bcs + channel;
763 atomic_add((l - BAS_NORMFRAME) * BAS_CORRFRAMES,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700764 &bcs->hw.bas->corrbytes);
765 gig_dbg(DEBUG_ISO,
766 "Flow control (channel %d, sub %d): 0x%02x => %d",
767 channel, bcs->hw.bas->numsub, l,
768 atomic_read(&bcs->hw.bas->corrbytes));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800769 break;
770
771 case HD_RECEIVEATDATA_ACK: /* AT response ready to be received */
772 if (!l) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700773 dev_warn(cs->dev,
Joe Perches475be4d2012-02-19 19:52:38 -0800774 "HD_RECEIVEATDATA_ACK with length 0 ignored\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800775 break;
776 }
777 spin_lock_irqsave(&cs->lock, flags);
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000778 if (ucs->basstate & BS_ATRDPEND) {
779 spin_unlock_irqrestore(&cs->lock, flags);
780 dev_warn(cs->dev,
Joe Perches475be4d2012-02-19 19:52:38 -0800781 "HD_RECEIVEATDATA_ACK(%d) during HD_READ_ATMESSAGE(%d) ignored\n",
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000782 l, ucs->rcvbuf_size);
783 break;
784 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800785 if (ucs->rcvbuf_size) {
Tilman Schmidt73a88812006-04-22 02:35:30 -0700786 /* throw away previous buffer - we have no queue */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700787 dev_err(cs->dev,
Tilman Schmidt73a88812006-04-22 02:35:30 -0700788 "receive AT data overrun, %d bytes lost\n",
789 ucs->rcvbuf_size);
790 kfree(ucs->rcvbuf);
791 ucs->rcvbuf_size = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800792 }
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000793 ucs->rcvbuf = kmalloc(l, GFP_ATOMIC);
794 if (ucs->rcvbuf == NULL) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800795 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidt73a88812006-04-22 02:35:30 -0700796 dev_err(cs->dev, "out of memory receiving AT data\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800797 break;
798 }
799 ucs->rcvbuf_size = l;
800 ucs->retry_cmd_in = 0;
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000801 rc = atread_submit(cs, BAS_TIMEOUT);
802 if (rc < 0) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800803 kfree(ucs->rcvbuf);
804 ucs->rcvbuf = NULL;
805 ucs->rcvbuf_size = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800806 }
807 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidtc9c0c302010-09-30 13:35:42 +0000808 if (rc < 0 && rc != -ENODEV)
809 error_reset(cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800810 break;
811
812 case HD_RESET_INTERRUPT_PIPE_ACK:
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000813 update_basstate(ucs, 0, BS_RESETTING);
814 dev_notice(cs->dev, "interrupt pipe reset\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800815 break;
816
817 case HD_SUSPEND_END:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700818 gig_dbg(DEBUG_USBREQ, "HD_SUSPEND_END");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800819 break;
820
821 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700822 dev_warn(cs->dev,
823 "unknown Gigaset signal 0x%02x (%u) ignored\n",
824 (int) ucs->int_in_buf[0], l);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800825 }
826
827 check_pending(ucs);
Tilman Schmidt024fd292008-02-06 01:38:26 -0800828 wake_up(&ucs->waitqueue);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800829
830resubmit:
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800831 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -0700832 if (unlikely(rc != 0 && rc != -ENODEV)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700833 dev_err(cs->dev, "could not resubmit interrupt URB: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -0700834 get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800835 error_reset(cs);
836 }
837}
838
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800839/* read_iso_callback
840 * USB completion handler for B channel isochronous input
841 * called by the USB subsystem in interrupt context
842 * parameter:
843 * urb USB request block of completed request
844 * urb->context = bc_state structure
845 */
David Howells7d12e782006-10-05 14:55:46 +0100846static void read_iso_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800847{
848 struct bc_state *bcs;
849 struct bas_bc_state *ubc;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800850 int status = urb->status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800851 unsigned long flags;
852 int i, rc;
853
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800854 /* status codes not worth bothering the tasklet with */
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800855 if (unlikely(status == -ENOENT ||
856 status == -ECONNRESET ||
857 status == -EINPROGRESS ||
858 status == -ENODEV ||
859 status == -ESHUTDOWN)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700860 gig_dbg(DEBUG_ISO, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800861 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800862 return;
863 }
864
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700865 bcs = urb->context;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800866 ubc = bcs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800867
868 spin_lock_irqsave(&ubc->isoinlock, flags);
869 if (likely(ubc->isoindone == NULL)) {
870 /* pass URB to tasklet */
871 ubc->isoindone = urb;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800872 ubc->isoinstatus = status;
Tilman Schmidt368fd812009-04-05 06:39:33 +0000873 tasklet_hi_schedule(&ubc->rcvd_tasklet);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800874 } else {
875 /* tasklet still busy, drop data and resubmit URB */
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000876 gig_dbg(DEBUG_ISO, "%s: overrun", __func__);
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800877 ubc->loststatus = status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800878 for (i = 0; i < BAS_NUMFRAMES; i++) {
879 ubc->isoinlost += urb->iso_frame_desc[i].actual_length;
880 if (unlikely(urb->iso_frame_desc[i].status != 0 &&
Tilman Schmidtf86936f2012-04-25 13:02:20 +0000881 urb->iso_frame_desc[i].status != -EINPROGRESS))
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800882 ubc->loststatus = urb->iso_frame_desc[i].status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800883 urb->iso_frame_desc[i].status = 0;
884 urb->iso_frame_desc[i].actual_length = 0;
885 }
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800886 if (likely(ubc->running)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700887 /* urb->dev is clobbered by USB subsystem */
888 urb->dev = bcs->cs->hw.bas->udev;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800889 urb->transfer_flags = URB_ISO_ASAP;
890 urb->number_of_packets = BAS_NUMFRAMES;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800891 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -0700892 if (unlikely(rc != 0 && rc != -ENODEV)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700893 dev_err(bcs->cs->dev,
Joe Perches475be4d2012-02-19 19:52:38 -0800894 "could not resubmit isoc read URB: %s\n",
Tilman Schmidtbb7196d2010-09-30 13:35:52 +0000895 get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800896 dump_urb(DEBUG_ISO, "isoc read", urb);
897 error_hangup(bcs);
898 }
899 }
900 }
901 spin_unlock_irqrestore(&ubc->isoinlock, flags);
902}
903
904/* write_iso_callback
905 * USB completion handler for B channel isochronous output
906 * called by the USB subsystem in interrupt context
907 * parameter:
908 * urb USB request block of completed request
909 * urb->context = isow_urbctx_t structure
910 */
David Howells7d12e782006-10-05 14:55:46 +0100911static void write_iso_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800912{
913 struct isow_urbctx_t *ucx;
914 struct bas_bc_state *ubc;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800915 int status = urb->status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800916 unsigned long flags;
917
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800918 /* status codes not worth bothering the tasklet with */
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800919 if (unlikely(status == -ENOENT ||
920 status == -ECONNRESET ||
921 status == -EINPROGRESS ||
922 status == -ENODEV ||
923 status == -ESHUTDOWN)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700924 gig_dbg(DEBUG_ISO, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800925 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800926 return;
927 }
928
929 /* pass URB context to tasklet */
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700930 ucx = urb->context;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800931 ubc = ucx->bcs->hw.bas;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800932 ucx->status = status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800933
934 spin_lock_irqsave(&ubc->isooutlock, flags);
935 ubc->isooutovfl = ubc->isooutdone;
936 ubc->isooutdone = ucx;
937 spin_unlock_irqrestore(&ubc->isooutlock, flags);
Tilman Schmidt368fd812009-04-05 06:39:33 +0000938 tasklet_hi_schedule(&ubc->sent_tasklet);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800939}
940
941/* starturbs
942 * prepare and submit USB request blocks for isochronous input and output
943 * argument:
944 * B channel control structure
945 * return value:
946 * 0 on success
947 * < 0 on error (no URBs submitted)
948 */
949static int starturbs(struct bc_state *bcs)
950{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700951 struct bas_bc_state *ubc = bcs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800952 struct urb *urb;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800953 int j, k;
954 int rc;
955
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800956 /* initialize L2 reception */
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000957 if (bcs->proto2 == L2_HDLC)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800958 bcs->inputstate |= INS_flag_hunt;
959
960 /* submit all isochronous input URBs */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800961 ubc->running = 1;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800962 for (k = 0; k < BAS_INURBS; k++) {
963 urb = ubc->isoinurbs[k];
964 if (!urb) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800965 rc = -EFAULT;
966 goto error;
967 }
968
969 urb->dev = bcs->cs->hw.bas->udev;
970 urb->pipe = usb_rcvisocpipe(urb->dev, 3 + 2 * bcs->channel);
971 urb->transfer_flags = URB_ISO_ASAP;
972 urb->transfer_buffer = ubc->isoinbuf + k * BAS_INBUFSIZE;
973 urb->transfer_buffer_length = BAS_INBUFSIZE;
974 urb->number_of_packets = BAS_NUMFRAMES;
975 urb->interval = BAS_FRAMETIME;
976 urb->complete = read_iso_callback;
977 urb->context = bcs;
978 for (j = 0; j < BAS_NUMFRAMES; j++) {
979 urb->iso_frame_desc[j].offset = j * BAS_MAXFRAME;
980 urb->iso_frame_desc[j].length = BAS_MAXFRAME;
981 urb->iso_frame_desc[j].status = 0;
982 urb->iso_frame_desc[j].actual_length = 0;
983 }
984
985 dump_urb(DEBUG_ISO, "Initial isoc read", urb);
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000986 rc = usb_submit_urb(urb, GFP_ATOMIC);
987 if (rc != 0)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800988 goto error;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800989 }
990
991 /* initialize L2 transmission */
992 gigaset_isowbuf_init(ubc->isooutbuf, PPP_FLAG);
993
994 /* set up isochronous output URBs for flag idling */
995 for (k = 0; k < BAS_OUTURBS; ++k) {
996 urb = ubc->isoouturbs[k].urb;
997 if (!urb) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800998 rc = -EFAULT;
999 goto error;
1000 }
1001 urb->dev = bcs->cs->hw.bas->udev;
1002 urb->pipe = usb_sndisocpipe(urb->dev, 4 + 2 * bcs->channel);
1003 urb->transfer_flags = URB_ISO_ASAP;
1004 urb->transfer_buffer = ubc->isooutbuf->data;
1005 urb->transfer_buffer_length = sizeof(ubc->isooutbuf->data);
1006 urb->number_of_packets = BAS_NUMFRAMES;
1007 urb->interval = BAS_FRAMETIME;
1008 urb->complete = write_iso_callback;
1009 urb->context = &ubc->isoouturbs[k];
1010 for (j = 0; j < BAS_NUMFRAMES; ++j) {
1011 urb->iso_frame_desc[j].offset = BAS_OUTBUFSIZE;
1012 urb->iso_frame_desc[j].length = BAS_NORMFRAME;
1013 urb->iso_frame_desc[j].status = 0;
1014 urb->iso_frame_desc[j].actual_length = 0;
1015 }
1016 ubc->isoouturbs[k].limit = -1;
1017 }
1018
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001019 /* keep one URB free, submit the others */
Joe Perches475be4d2012-02-19 19:52:38 -08001020 for (k = 0; k < BAS_OUTURBS - 1; ++k) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001021 dump_urb(DEBUG_ISO, "Initial isoc write", urb);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001022 rc = usb_submit_urb(ubc->isoouturbs[k].urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001023 if (rc != 0)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001024 goto error;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001025 }
1026 dump_urb(DEBUG_ISO, "Initial isoc write (free)", urb);
Joe Perches475be4d2012-02-19 19:52:38 -08001027 ubc->isooutfree = &ubc->isoouturbs[BAS_OUTURBS - 1];
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001028 ubc->isooutdone = ubc->isooutovfl = NULL;
1029 return 0;
Joe Perches475be4d2012-02-19 19:52:38 -08001030error:
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001031 stopurbs(ubc);
1032 return rc;
1033}
1034
1035/* stopurbs
1036 * cancel the USB request blocks for isochronous input and output
1037 * errors are silently ignored
1038 * argument:
1039 * B channel control structure
1040 */
1041static void stopurbs(struct bas_bc_state *ubc)
1042{
1043 int k, rc;
1044
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001045 ubc->running = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001046
1047 for (k = 0; k < BAS_INURBS; ++k) {
1048 rc = usb_unlink_urb(ubc->isoinurbs[k]);
Tilman Schmidt784d5852006-04-10 22:55:04 -07001049 gig_dbg(DEBUG_ISO,
Tilman Schmidt73a88812006-04-22 02:35:30 -07001050 "%s: isoc input URB %d unlinked, result = %s",
1051 __func__, k, get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001052 }
1053
1054 for (k = 0; k < BAS_OUTURBS; ++k) {
1055 rc = usb_unlink_urb(ubc->isoouturbs[k].urb);
Tilman Schmidt784d5852006-04-10 22:55:04 -07001056 gig_dbg(DEBUG_ISO,
Tilman Schmidt73a88812006-04-22 02:35:30 -07001057 "%s: isoc output URB %d unlinked, result = %s",
1058 __func__, k, get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001059 }
1060}
1061
1062/* Isochronous Write - Bottom Half */
1063/* =============================== */
1064
1065/* submit_iso_write_urb
1066 * fill and submit the next isochronous write URB
1067 * parameters:
Tilman Schmidt73a88812006-04-22 02:35:30 -07001068 * ucx context structure containing URB
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001069 * return value:
1070 * number of frames submitted in URB
1071 * 0 if URB not submitted because no data available (isooutbuf busy)
1072 * error code < 0 on error
1073 */
1074static int submit_iso_write_urb(struct isow_urbctx_t *ucx)
1075{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001076 struct urb *urb = ucx->urb;
1077 struct bas_bc_state *ubc = ucx->bcs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001078 struct usb_iso_packet_descriptor *ifd;
1079 int corrbytes, nframe, rc;
1080
Tilman Schmidt784d5852006-04-10 22:55:04 -07001081 /* urb->dev is clobbered by USB subsystem */
1082 urb->dev = ucx->bcs->cs->hw.bas->udev;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001083 urb->transfer_flags = URB_ISO_ASAP;
1084 urb->transfer_buffer = ubc->isooutbuf->data;
1085 urb->transfer_buffer_length = sizeof(ubc->isooutbuf->data);
1086
1087 for (nframe = 0; nframe < BAS_NUMFRAMES; nframe++) {
1088 ifd = &urb->iso_frame_desc[nframe];
1089
1090 /* compute frame length according to flow control */
1091 ifd->length = BAS_NORMFRAME;
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001092 corrbytes = atomic_read(&ubc->corrbytes);
1093 if (corrbytes != 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001094 gig_dbg(DEBUG_ISO, "%s: corrbytes=%d",
1095 __func__, corrbytes);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001096 if (corrbytes > BAS_HIGHFRAME - BAS_NORMFRAME)
1097 corrbytes = BAS_HIGHFRAME - BAS_NORMFRAME;
1098 else if (corrbytes < BAS_LOWFRAME - BAS_NORMFRAME)
1099 corrbytes = BAS_LOWFRAME - BAS_NORMFRAME;
1100 ifd->length += corrbytes;
1101 atomic_add(-corrbytes, &ubc->corrbytes);
1102 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001103
1104 /* retrieve block of data to send */
Tilman Schmidt5f09c4c2008-07-23 21:28:27 -07001105 rc = gigaset_isowbuf_getbytes(ubc->isooutbuf, ifd->length);
1106 if (rc < 0) {
1107 if (rc == -EBUSY) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001108 gig_dbg(DEBUG_ISO,
1109 "%s: buffer busy at frame %d",
1110 __func__, nframe);
1111 /* tasklet will be restarted from
Tilman Schmidt088ec0c2009-10-06 12:19:07 +00001112 gigaset_isoc_send_skb() */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001113 } else {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001114 dev_err(ucx->bcs->cs->dev,
1115 "%s: buffer error %d at frame %d\n",
Tilman Schmidt5f09c4c2008-07-23 21:28:27 -07001116 __func__, rc, nframe);
1117 return rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001118 }
1119 break;
1120 }
Tilman Schmidt5f09c4c2008-07-23 21:28:27 -07001121 ifd->offset = rc;
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001122 ucx->limit = ubc->isooutbuf->nextread;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001123 ifd->status = 0;
1124 ifd->actual_length = 0;
1125 }
Tilman Schmidt73a88812006-04-22 02:35:30 -07001126 if (unlikely(nframe == 0))
1127 return 0; /* no data to send */
1128 urb->number_of_packets = nframe;
Tilman Schmidt69049cc2006-04-10 22:55:16 -07001129
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001130 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001131 if (unlikely(rc)) {
1132 if (rc == -ENODEV)
1133 /* device removed - give up silently */
1134 gig_dbg(DEBUG_ISO, "%s: disconnected", __func__);
1135 else
Tilman Schmidt784d5852006-04-10 22:55:04 -07001136 dev_err(ucx->bcs->cs->dev,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001137 "could not submit isoc write URB: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001138 get_usb_rcmsg(rc));
1139 return rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001140 }
Tilman Schmidt73a88812006-04-22 02:35:30 -07001141 ++ubc->numsub;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001142 return nframe;
1143}
1144
1145/* write_iso_tasklet
1146 * tasklet scheduled when an isochronous output URB from the Gigaset device
1147 * has completed
1148 * parameter:
1149 * data B channel state structure
1150 */
1151static void write_iso_tasklet(unsigned long data)
1152{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001153 struct bc_state *bcs = (struct bc_state *) data;
1154 struct bas_bc_state *ubc = bcs->hw.bas;
1155 struct cardstate *cs = bcs->cs;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001156 struct isow_urbctx_t *done, *next, *ovfl;
1157 struct urb *urb;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001158 int status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001159 struct usb_iso_packet_descriptor *ifd;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001160 unsigned long flags;
1161 int i;
1162 struct sk_buff *skb;
1163 int len;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001164 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001165
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001166 /* loop while completed URBs arrive in time */
1167 for (;;) {
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001168 if (unlikely(!(ubc->running))) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001169 gig_dbg(DEBUG_ISO, "%s: not running", __func__);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001170 return;
1171 }
1172
1173 /* retrieve completed URBs */
1174 spin_lock_irqsave(&ubc->isooutlock, flags);
1175 done = ubc->isooutdone;
1176 ubc->isooutdone = NULL;
1177 ovfl = ubc->isooutovfl;
1178 ubc->isooutovfl = NULL;
1179 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1180 if (ovfl) {
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001181 dev_err(cs->dev, "isoc write underrun\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001182 error_hangup(bcs);
1183 break;
1184 }
1185 if (!done)
1186 break;
1187
1188 /* submit free URB if available */
1189 spin_lock_irqsave(&ubc->isooutlock, flags);
1190 next = ubc->isooutfree;
1191 ubc->isooutfree = NULL;
1192 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1193 if (next) {
Tilman Schmidt73a88812006-04-22 02:35:30 -07001194 rc = submit_iso_write_urb(next);
1195 if (unlikely(rc <= 0 && rc != -ENODEV)) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001196 /* could not submit URB, put it back */
1197 spin_lock_irqsave(&ubc->isooutlock, flags);
1198 if (ubc->isooutfree == NULL) {
1199 ubc->isooutfree = next;
1200 next = NULL;
1201 }
1202 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1203 if (next) {
1204 /* couldn't put it back */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001205 dev_err(cs->dev,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001206 "losing isoc write URB\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001207 error_hangup(bcs);
1208 }
1209 }
1210 }
1211
1212 /* process completed URB */
1213 urb = done->urb;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001214 status = done->status;
1215 switch (status) {
Tilman Schmidt73a88812006-04-22 02:35:30 -07001216 case -EXDEV: /* partial completion */
1217 gig_dbg(DEBUG_ISO, "%s: URB partially completed",
1218 __func__);
1219 /* fall through - what's the difference anyway? */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001220 case 0: /* normal completion */
Tilman Schmidt73a88812006-04-22 02:35:30 -07001221 /* inspect individual frames
1222 * assumptions (for lack of documentation):
1223 * - actual_length bytes of first frame in error are
Tilman Schmidt917f5082006-04-10 22:55:00 -07001224 * successfully sent
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001225 * - all following frames are not sent at all
1226 */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001227 for (i = 0; i < BAS_NUMFRAMES; i++) {
1228 ifd = &urb->iso_frame_desc[i];
1229 if (ifd->status ||
1230 ifd->actual_length != ifd->length) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001231 dev_warn(cs->dev,
Joe Perches475be4d2012-02-19 19:52:38 -08001232 "isoc write: frame %d[%d/%d]: %s\n",
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001233 i, ifd->actual_length,
1234 ifd->length,
1235 get_usb_statmsg(ifd->status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001236 break;
1237 }
1238 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001239 break;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001240 case -EPIPE: /* stall - probably underrun */
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001241 dev_err(cs->dev, "isoc write: stalled\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001242 error_hangup(bcs);
1243 break;
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001244 default: /* other errors */
1245 dev_warn(cs->dev, "isoc write: %s\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001246 get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001247 }
1248
1249 /* mark the write buffer area covered by this URB as free */
1250 if (done->limit >= 0)
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001251 ubc->isooutbuf->read = done->limit;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001252
1253 /* mark URB as free */
1254 spin_lock_irqsave(&ubc->isooutlock, flags);
1255 next = ubc->isooutfree;
1256 ubc->isooutfree = done;
1257 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1258 if (next) {
1259 /* only one URB still active - resubmit one */
Tilman Schmidt73a88812006-04-22 02:35:30 -07001260 rc = submit_iso_write_urb(next);
1261 if (unlikely(rc <= 0 && rc != -ENODEV)) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001262 /* couldn't submit */
1263 error_hangup(bcs);
1264 }
1265 }
1266 }
1267
1268 /* process queued SKBs */
1269 while ((skb = skb_dequeue(&bcs->squeue))) {
1270 /* copy to output buffer, doing L2 encapsulation */
1271 len = skb->len;
1272 if (gigaset_isoc_buildframe(bcs, skb->data, len) == -EAGAIN) {
1273 /* insufficient buffer space, push back onto queue */
1274 skb_queue_head(&bcs->squeue, skb);
Tilman Schmidt784d5852006-04-10 22:55:04 -07001275 gig_dbg(DEBUG_ISO, "%s: skb requeued, qlen=%d",
1276 __func__, skb_queue_len(&bcs->squeue));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001277 break;
1278 }
1279 skb_pull(skb, len);
1280 gigaset_skb_sent(bcs, skb);
1281 dev_kfree_skb_any(skb);
1282 }
1283}
1284
1285/* Isochronous Read - Bottom Half */
1286/* ============================== */
1287
1288/* read_iso_tasklet
1289 * tasklet scheduled when an isochronous input URB from the Gigaset device
1290 * has completed
1291 * parameter:
1292 * data B channel state structure
1293 */
1294static void read_iso_tasklet(unsigned long data)
1295{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001296 struct bc_state *bcs = (struct bc_state *) data;
1297 struct bas_bc_state *ubc = bcs->hw.bas;
1298 struct cardstate *cs = bcs->cs;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001299 struct urb *urb;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001300 int status;
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001301 struct usb_iso_packet_descriptor *ifd;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001302 char *rcvbuf;
1303 unsigned long flags;
1304 int totleft, numbytes, offset, frame, rc;
1305
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001306 /* loop while more completed URBs arrive in the meantime */
1307 for (;;) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001308 /* retrieve URB */
1309 spin_lock_irqsave(&ubc->isoinlock, flags);
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001310 urb = ubc->isoindone;
1311 if (!urb) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001312 spin_unlock_irqrestore(&ubc->isoinlock, flags);
1313 return;
1314 }
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001315 status = ubc->isoinstatus;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001316 ubc->isoindone = NULL;
1317 if (unlikely(ubc->loststatus != -EINPROGRESS)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001318 dev_warn(cs->dev,
Joe Perches475be4d2012-02-19 19:52:38 -08001319 "isoc read overrun, URB dropped (status: %s, %d bytes)\n",
Tilman Schmidt784d5852006-04-10 22:55:04 -07001320 get_usb_statmsg(ubc->loststatus),
1321 ubc->isoinlost);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001322 ubc->loststatus = -EINPROGRESS;
1323 }
1324 spin_unlock_irqrestore(&ubc->isoinlock, flags);
1325
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001326 if (unlikely(!(ubc->running))) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001327 gig_dbg(DEBUG_ISO,
1328 "%s: channel not running, "
1329 "dropped URB with status: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001330 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001331 return;
1332 }
1333
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001334 switch (status) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001335 case 0: /* normal completion */
1336 break;
Tilman Schmidt917f5082006-04-10 22:55:00 -07001337 case -EXDEV: /* inspect individual frames
1338 (we do that anyway) */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001339 gig_dbg(DEBUG_ISO, "%s: URB partially completed",
1340 __func__);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001341 break;
1342 case -ENOENT:
1343 case -ECONNRESET:
Tilman Schmidt73a88812006-04-22 02:35:30 -07001344 case -EINPROGRESS:
1345 gig_dbg(DEBUG_ISO, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001346 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001347 continue; /* -> skip */
1348 case -EPIPE:
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001349 dev_err(cs->dev, "isoc read: stalled\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001350 error_hangup(bcs);
1351 continue; /* -> skip */
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001352 default: /* other error */
1353 dev_warn(cs->dev, "isoc read: %s\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001354 get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001355 goto error;
1356 }
1357
1358 rcvbuf = urb->transfer_buffer;
1359 totleft = urb->actual_length;
1360 for (frame = 0; totleft > 0 && frame < BAS_NUMFRAMES; frame++) {
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001361 ifd = &urb->iso_frame_desc[frame];
1362 numbytes = ifd->actual_length;
1363 switch (ifd->status) {
1364 case 0: /* success */
1365 break;
1366 case -EPROTO: /* protocol error or unplug */
1367 case -EILSEQ:
1368 case -ETIME:
1369 /* probably just disconnected, ignore */
1370 gig_dbg(DEBUG_ISO,
1371 "isoc read: frame %d[%d]: %s\n",
1372 frame, numbytes,
1373 get_usb_statmsg(ifd->status));
1374 break;
1375 default: /* other error */
1376 /* report, assume transferred bytes are ok */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001377 dev_warn(cs->dev,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001378 "isoc read: frame %d[%d]: %s\n",
Tilman Schmidteb4459f2009-10-06 12:18:36 +00001379 frame, numbytes,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001380 get_usb_statmsg(ifd->status));
1381 }
Tilman Schmidteb4459f2009-10-06 12:18:36 +00001382 if (unlikely(numbytes > BAS_MAXFRAME))
Tilman Schmidt784d5852006-04-10 22:55:04 -07001383 dev_warn(cs->dev,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001384 "isoc read: frame %d[%d]: %s\n",
1385 frame, numbytes,
1386 "exceeds max frame size");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001387 if (unlikely(numbytes > totleft)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001388 dev_warn(cs->dev,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001389 "isoc read: frame %d[%d]: %s\n",
1390 frame, numbytes,
1391 "exceeds total transfer length");
Tilman Schmidteb4459f2009-10-06 12:18:36 +00001392 numbytes = totleft;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001393 }
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001394 offset = ifd->offset;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001395 if (unlikely(offset + numbytes > BAS_INBUFSIZE)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001396 dev_warn(cs->dev,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001397 "isoc read: frame %d[%d]: %s\n",
1398 frame, numbytes,
1399 "exceeds end of buffer");
Tilman Schmidteb4459f2009-10-06 12:18:36 +00001400 numbytes = BAS_INBUFSIZE - offset;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001401 }
1402 gigaset_isoc_receive(rcvbuf + offset, numbytes, bcs);
1403 totleft -= numbytes;
1404 }
1405 if (unlikely(totleft > 0))
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001406 dev_warn(cs->dev, "isoc read: %d data bytes missing\n",
Tilman Schmidt784d5852006-04-10 22:55:04 -07001407 totleft);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001408
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001409error:
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001410 /* URB processed, resubmit */
1411 for (frame = 0; frame < BAS_NUMFRAMES; frame++) {
1412 urb->iso_frame_desc[frame].status = 0;
1413 urb->iso_frame_desc[frame].actual_length = 0;
1414 }
Tilman Schmidt784d5852006-04-10 22:55:04 -07001415 /* urb->dev is clobbered by USB subsystem */
1416 urb->dev = bcs->cs->hw.bas->udev;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001417 urb->transfer_flags = URB_ISO_ASAP;
1418 urb->number_of_packets = BAS_NUMFRAMES;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001419 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001420 if (unlikely(rc != 0 && rc != -ENODEV)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001421 dev_err(cs->dev,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001422 "could not resubmit isoc read URB: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001423 get_usb_rcmsg(rc));
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001424 dump_urb(DEBUG_ISO, "resubmit isoc read", urb);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001425 error_hangup(bcs);
1426 }
1427 }
1428}
1429
1430/* Channel Operations */
1431/* ================== */
1432
1433/* req_timeout
1434 * timeout routine for control output request
1435 * argument:
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001436 * controller state structure
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001437 */
1438static void req_timeout(unsigned long data)
1439{
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001440 struct cardstate *cs = (struct cardstate *) data;
1441 struct bas_cardstate *ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001442 int pending;
1443 unsigned long flags;
1444
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001445 check_pending(ucs);
1446
1447 spin_lock_irqsave(&ucs->lock, flags);
1448 pending = ucs->pending;
1449 ucs->pending = 0;
1450 spin_unlock_irqrestore(&ucs->lock, flags);
1451
1452 switch (pending) {
1453 case 0: /* no pending request */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001454 gig_dbg(DEBUG_USBREQ, "%s: no request pending", __func__);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001455 break;
1456
1457 case HD_OPEN_ATCHANNEL:
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001458 dev_err(cs->dev, "timeout opening AT channel\n");
1459 error_reset(cs);
1460 break;
1461
1462 case HD_OPEN_B1CHANNEL:
1463 dev_err(cs->dev, "timeout opening channel 1\n");
1464 error_hangup(&cs->bcs[0]);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001465 break;
1466
1467 case HD_OPEN_B2CHANNEL:
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001468 dev_err(cs->dev, "timeout opening channel 2\n");
1469 error_hangup(&cs->bcs[1]);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001470 break;
1471
1472 case HD_CLOSE_ATCHANNEL:
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001473 dev_err(cs->dev, "timeout closing AT channel\n");
1474 error_reset(cs);
1475 break;
1476
1477 case HD_CLOSE_B1CHANNEL:
1478 dev_err(cs->dev, "timeout closing channel 1\n");
1479 error_reset(cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001480 break;
1481
1482 case HD_CLOSE_B2CHANNEL:
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001483 dev_err(cs->dev, "timeout closing channel 2\n");
1484 error_reset(cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001485 break;
1486
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001487 case HD_RESET_INTERRUPT_PIPE:
1488 /* error recovery escalation */
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001489 dev_err(cs->dev,
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001490 "reset interrupt pipe timeout, attempting USB reset\n");
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001491 usb_queue_reset_device(ucs->interface);
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001492 break;
1493
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001494 default:
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001495 dev_warn(cs->dev, "request 0x%02x timed out, clearing\n",
Tilman Schmidt784d5852006-04-10 22:55:04 -07001496 pending);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001497 }
Tilman Schmidt024fd292008-02-06 01:38:26 -08001498
1499 wake_up(&ucs->waitqueue);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001500}
1501
1502/* write_ctrl_callback
1503 * USB completion handler for control pipe output
1504 * called by the USB subsystem in interrupt context
1505 * parameter:
1506 * urb USB request block of completed request
1507 * urb->context = hardware specific controller state structure
1508 */
David Howells7d12e782006-10-05 14:55:46 +01001509static void write_ctrl_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001510{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001511 struct bas_cardstate *ucs = urb->context;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001512 int status = urb->status;
Tilman Schmidt06163f82006-06-26 00:25:33 -07001513 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001514 unsigned long flags;
1515
Tilman Schmidt06163f82006-06-26 00:25:33 -07001516 /* check status */
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001517 switch (status) {
Tilman Schmidt06163f82006-06-26 00:25:33 -07001518 case 0: /* normal completion */
1519 spin_lock_irqsave(&ucs->lock, flags);
1520 switch (ucs->pending) {
1521 case HD_DEVICE_INIT_ACK: /* no reply expected */
1522 del_timer(&ucs->timer_ctrl);
1523 ucs->pending = 0;
1524 break;
1525 }
1526 spin_unlock_irqrestore(&ucs->lock, flags);
1527 return;
1528
1529 case -ENOENT: /* cancelled */
1530 case -ECONNRESET: /* cancelled (async) */
1531 case -EINPROGRESS: /* pending */
1532 case -ENODEV: /* device removed */
1533 case -ESHUTDOWN: /* device shut down */
1534 /* ignore silently */
1535 gig_dbg(DEBUG_USBREQ, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001536 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001537 break;
Tilman Schmidt06163f82006-06-26 00:25:33 -07001538
1539 default: /* any failure */
Tilman Schmidt024fd292008-02-06 01:38:26 -08001540 /* don't retry if suspend requested */
1541 if (++ucs->retry_ctrl > BAS_RETRY ||
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001542 (ucs->basstate & BS_SUSPEND)) {
Tilman Schmidt06163f82006-06-26 00:25:33 -07001543 dev_err(&ucs->interface->dev,
1544 "control request 0x%02x failed: %s\n",
1545 ucs->dr_ctrl.bRequest,
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001546 get_usb_statmsg(status));
Tilman Schmidt06163f82006-06-26 00:25:33 -07001547 break; /* give up */
1548 }
1549 dev_notice(&ucs->interface->dev,
1550 "control request 0x%02x: %s, retry %d\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001551 ucs->dr_ctrl.bRequest, get_usb_statmsg(status),
Tilman Schmidt06163f82006-06-26 00:25:33 -07001552 ucs->retry_ctrl);
1553 /* urb->dev is clobbered by USB subsystem */
1554 urb->dev = ucs->udev;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001555 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt06163f82006-06-26 00:25:33 -07001556 if (unlikely(rc)) {
1557 dev_err(&ucs->interface->dev,
1558 "could not resubmit request 0x%02x: %s\n",
1559 ucs->dr_ctrl.bRequest, get_usb_rcmsg(rc));
1560 break;
1561 }
1562 /* resubmitted */
1563 return;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001564 }
Tilman Schmidt06163f82006-06-26 00:25:33 -07001565
1566 /* failed, clear pending request */
1567 spin_lock_irqsave(&ucs->lock, flags);
1568 del_timer(&ucs->timer_ctrl);
1569 ucs->pending = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001570 spin_unlock_irqrestore(&ucs->lock, flags);
Tilman Schmidt024fd292008-02-06 01:38:26 -08001571 wake_up(&ucs->waitqueue);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001572}
1573
1574/* req_submit
1575 * submit a control output request without message buffer to the Gigaset base
1576 * and optionally start a timeout
1577 * parameters:
1578 * bcs B channel control structure
1579 * req control request code (HD_*)
1580 * val control request parameter value (set to 0 if unused)
1581 * timeout timeout in seconds (0: no timeout)
1582 * return value:
1583 * 0 on success
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001584 * -EBUSY if another request is pending
1585 * any URB submission error code
1586 */
1587static int req_submit(struct bc_state *bcs, int req, int val, int timeout)
1588{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001589 struct bas_cardstate *ucs = bcs->cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001590 int ret;
1591 unsigned long flags;
1592
Tilman Schmidt784d5852006-04-10 22:55:04 -07001593 gig_dbg(DEBUG_USBREQ, "-------> 0x%02x (%d)", req, val);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001594
1595 spin_lock_irqsave(&ucs->lock, flags);
1596 if (ucs->pending) {
1597 spin_unlock_irqrestore(&ucs->lock, flags);
Tilman Schmidt784d5852006-04-10 22:55:04 -07001598 dev_err(bcs->cs->dev,
1599 "submission of request 0x%02x failed: "
1600 "request 0x%02x still pending\n",
1601 req, ucs->pending);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001602 return -EBUSY;
1603 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001604
1605 ucs->dr_ctrl.bRequestType = OUT_VENDOR_REQ;
1606 ucs->dr_ctrl.bRequest = req;
1607 ucs->dr_ctrl.wValue = cpu_to_le16(val);
1608 ucs->dr_ctrl.wIndex = 0;
1609 ucs->dr_ctrl.wLength = 0;
1610 usb_fill_control_urb(ucs->urb_ctrl, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -07001611 usb_sndctrlpipe(ucs->udev, 0),
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001612 (unsigned char *) &ucs->dr_ctrl, NULL, 0,
Tilman Schmidt784d5852006-04-10 22:55:04 -07001613 write_ctrl_callback, ucs);
Tilman Schmidt06163f82006-06-26 00:25:33 -07001614 ucs->retry_ctrl = 0;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001615 ret = usb_submit_urb(ucs->urb_ctrl, GFP_ATOMIC);
Tilman Schmidt06163f82006-06-26 00:25:33 -07001616 if (unlikely(ret)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001617 dev_err(bcs->cs->dev, "could not submit request 0x%02x: %s\n",
Tilman Schmidt06163f82006-06-26 00:25:33 -07001618 req, get_usb_rcmsg(ret));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001619 spin_unlock_irqrestore(&ucs->lock, flags);
1620 return ret;
1621 }
1622 ucs->pending = req;
1623
1624 if (timeout > 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001625 gig_dbg(DEBUG_USBREQ, "setting timeout of %d/10 secs", timeout);
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001626 mod_timer(&ucs->timer_ctrl, jiffies + timeout * HZ / 10);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001627 }
1628
1629 spin_unlock_irqrestore(&ucs->lock, flags);
1630 return 0;
1631}
1632
1633/* gigaset_init_bchannel
1634 * called by common.c to connect a B channel
1635 * initialize isochronous I/O and tell the Gigaset base to open the channel
1636 * argument:
1637 * B channel control structure
1638 * return value:
1639 * 0 on success, error code < 0 on error
1640 */
1641static int gigaset_init_bchannel(struct bc_state *bcs)
1642{
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001643 struct cardstate *cs = bcs->cs;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001644 int req, ret;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001645 unsigned long flags;
1646
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001647 spin_lock_irqsave(&cs->lock, flags);
1648 if (unlikely(!cs->connected)) {
Tilman Schmidt73a88812006-04-22 02:35:30 -07001649 gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001650 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001651 return -ENODEV;
1652 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001653
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001654 if (cs->hw.bas->basstate & BS_SUSPEND) {
Tilman Schmidt024fd292008-02-06 01:38:26 -08001655 dev_notice(cs->dev,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001656 "not starting isoc I/O, suspend in progress\n");
Tilman Schmidt024fd292008-02-06 01:38:26 -08001657 spin_unlock_irqrestore(&cs->lock, flags);
1658 return -EHOSTUNREACH;
1659 }
1660
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001661 ret = starturbs(bcs);
1662 if (ret < 0) {
Tilman Schmidtb33ffa52010-09-30 13:34:30 +00001663 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001664 dev_err(cs->dev,
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00001665 "could not start isoc I/O for channel B%d: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001666 bcs->channel + 1,
1667 ret == -EFAULT ? "null URB" : get_usb_rcmsg(ret));
1668 if (ret != -ENODEV)
1669 error_hangup(bcs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001670 return ret;
1671 }
1672
1673 req = bcs->channel ? HD_OPEN_B2CHANNEL : HD_OPEN_B1CHANNEL;
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001674 ret = req_submit(bcs, req, 0, BAS_TIMEOUT);
1675 if (ret < 0) {
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001676 dev_err(cs->dev, "could not open channel B%d\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001677 bcs->channel + 1);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001678 stopurbs(bcs->hw.bas);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001679 }
Tilman Schmidt73a88812006-04-22 02:35:30 -07001680
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001681 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidtb33ffa52010-09-30 13:34:30 +00001682 if (ret < 0 && ret != -ENODEV)
1683 error_hangup(bcs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001684 return ret;
1685}
1686
1687/* gigaset_close_bchannel
1688 * called by common.c to disconnect a B channel
1689 * tell the Gigaset base to close the channel
1690 * stopping isochronous I/O and LL notification will be done when the
1691 * acknowledgement for the close arrives
1692 * argument:
1693 * B channel control structure
1694 * return value:
1695 * 0 on success, error code < 0 on error
1696 */
1697static int gigaset_close_bchannel(struct bc_state *bcs)
1698{
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001699 struct cardstate *cs = bcs->cs;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001700 int req, ret;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001701 unsigned long flags;
1702
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001703 spin_lock_irqsave(&cs->lock, flags);
1704 if (unlikely(!cs->connected)) {
1705 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001706 gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__);
1707 return -ENODEV;
1708 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001709
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001710 if (!(cs->hw.bas->basstate & (bcs->channel ? BS_B2OPEN : BS_B1OPEN))) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001711 /* channel not running: just signal common.c */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001712 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001713 gigaset_bchannel_down(bcs);
1714 return 0;
1715 }
1716
Tilman Schmidt73a88812006-04-22 02:35:30 -07001717 /* channel running: tell device to close it */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001718 req = bcs->channel ? HD_CLOSE_B2CHANNEL : HD_CLOSE_B1CHANNEL;
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001719 ret = req_submit(bcs, req, 0, BAS_TIMEOUT);
1720 if (ret < 0)
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001721 dev_err(cs->dev, "closing channel B%d failed\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001722 bcs->channel + 1);
1723
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001724 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001725 return ret;
1726}
1727
1728/* Device Operations */
1729/* ================= */
1730
1731/* complete_cb
1732 * unqueue first command buffer from queue, waking any sleepers
1733 * must be called with cs->cmdlock held
1734 * parameter:
1735 * cs controller state structure
1736 */
1737static void complete_cb(struct cardstate *cs)
1738{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001739 struct cmdbuf_t *cb = cs->cmdbuf;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001740
1741 /* unqueue completed buffer */
1742 cs->cmdbytes -= cs->curlen;
Tilman Schmidt1528b182010-02-22 13:09:52 +00001743 gig_dbg(DEBUG_OUTPUT, "write_command: sent %u bytes, %u left",
Tilman Schmidt784d5852006-04-10 22:55:04 -07001744 cs->curlen, cs->cmdbytes);
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001745 if (cb->next != NULL) {
1746 cs->cmdbuf = cb->next;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001747 cs->cmdbuf->prev = NULL;
1748 cs->curlen = cs->cmdbuf->len;
1749 } else {
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001750 cs->cmdbuf = NULL;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001751 cs->lastcmdbuf = NULL;
1752 cs->curlen = 0;
1753 }
1754
1755 if (cb->wake_tasklet)
1756 tasklet_schedule(cb->wake_tasklet);
1757
1758 kfree(cb);
1759}
1760
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001761/* write_command_callback
1762 * USB completion handler for AT command transmission
1763 * called by the USB subsystem in interrupt context
1764 * parameter:
1765 * urb USB request block of completed request
1766 * urb->context = controller state structure
1767 */
David Howells7d12e782006-10-05 14:55:46 +01001768static void write_command_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001769{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001770 struct cardstate *cs = urb->context;
1771 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001772 int status = urb->status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001773 unsigned long flags;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001774
Tilman Schmidt73a88812006-04-22 02:35:30 -07001775 update_basstate(ucs, 0, BS_ATWRPEND);
Tilman Schmidt024fd292008-02-06 01:38:26 -08001776 wake_up(&ucs->waitqueue);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001777
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001778 /* check status */
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001779 switch (status) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001780 case 0: /* normal completion */
1781 break;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001782 case -ENOENT: /* cancelled */
1783 case -ECONNRESET: /* cancelled (async) */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001784 case -EINPROGRESS: /* pending */
Tilman Schmidt73a88812006-04-22 02:35:30 -07001785 case -ENODEV: /* device removed */
1786 case -ESHUTDOWN: /* device shut down */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001787 /* ignore silently */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001788 gig_dbg(DEBUG_USBREQ, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001789 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001790 return;
1791 default: /* any failure */
1792 if (++ucs->retry_cmd_out > BAS_RETRY) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001793 dev_warn(cs->dev,
1794 "command write: %s, "
1795 "giving up after %d retries\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001796 get_usb_statmsg(status),
Tilman Schmidt784d5852006-04-10 22:55:04 -07001797 ucs->retry_cmd_out);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001798 break;
1799 }
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001800 if (ucs->basstate & BS_SUSPEND) {
Tilman Schmidt024fd292008-02-06 01:38:26 -08001801 dev_warn(cs->dev,
1802 "command write: %s, "
1803 "won't retry - suspend requested\n",
1804 get_usb_statmsg(status));
1805 break;
1806 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001807 if (cs->cmdbuf == NULL) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001808 dev_warn(cs->dev,
1809 "command write: %s, "
1810 "cannot retry - cmdbuf gone\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001811 get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001812 break;
1813 }
Tilman Schmidt784d5852006-04-10 22:55:04 -07001814 dev_notice(cs->dev, "command write: %s, retry %d\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001815 get_usb_statmsg(status), ucs->retry_cmd_out);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001816 if (atwrite_submit(cs, cs->cmdbuf->buf, cs->cmdbuf->len) >= 0)
1817 /* resubmitted - bypass regular exit block */
1818 return;
1819 /* command send failed, assume base still waiting */
1820 update_basstate(ucs, BS_ATREADY, 0);
1821 }
1822
1823 spin_lock_irqsave(&cs->cmdlock, flags);
1824 if (cs->cmdbuf != NULL)
1825 complete_cb(cs);
1826 spin_unlock_irqrestore(&cs->cmdlock, flags);
1827}
1828
1829/* atrdy_timeout
1830 * timeout routine for AT command transmission
1831 * argument:
1832 * controller state structure
1833 */
1834static void atrdy_timeout(unsigned long data)
1835{
1836 struct cardstate *cs = (struct cardstate *) data;
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001837 struct bas_cardstate *ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001838
Tilman Schmidt784d5852006-04-10 22:55:04 -07001839 dev_warn(cs->dev, "timeout waiting for HD_READY_SEND_ATDATA\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001840
1841 /* fake the missing signal - what else can I do? */
1842 update_basstate(ucs, BS_ATREADY, BS_ATTIMER);
1843 start_cbsend(cs);
1844}
1845
1846/* atwrite_submit
1847 * submit an HD_WRITE_ATMESSAGE command URB
1848 * parameters:
1849 * cs controller state structure
1850 * buf buffer containing command to send
1851 * len length of command to send
1852 * return value:
1853 * 0 on success
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001854 * -EBUSY if another request is pending
1855 * any URB submission error code
1856 */
1857static int atwrite_submit(struct cardstate *cs, unsigned char *buf, int len)
1858{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001859 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001860 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001861
Tilman Schmidt784d5852006-04-10 22:55:04 -07001862 gig_dbg(DEBUG_USBREQ, "-------> HD_WRITE_ATMESSAGE (%d)", len);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001863
Tilman Schmidt73a88812006-04-22 02:35:30 -07001864 if (update_basstate(ucs, BS_ATWRPEND, 0) & BS_ATWRPEND) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001865 dev_err(cs->dev,
1866 "could not submit HD_WRITE_ATMESSAGE: URB busy\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001867 return -EBUSY;
1868 }
1869
1870 ucs->dr_cmd_out.bRequestType = OUT_VENDOR_REQ;
1871 ucs->dr_cmd_out.bRequest = HD_WRITE_ATMESSAGE;
1872 ucs->dr_cmd_out.wValue = 0;
1873 ucs->dr_cmd_out.wIndex = 0;
1874 ucs->dr_cmd_out.wLength = cpu_to_le16(len);
1875 usb_fill_control_urb(ucs->urb_cmd_out, ucs->udev,
1876 usb_sndctrlpipe(ucs->udev, 0),
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001877 (unsigned char *) &ucs->dr_cmd_out, buf, len,
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001878 write_command_callback, cs);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001879 rc = usb_submit_urb(ucs->urb_cmd_out, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001880 if (unlikely(rc)) {
1881 update_basstate(ucs, 0, BS_ATWRPEND);
Tilman Schmidt784d5852006-04-10 22:55:04 -07001882 dev_err(cs->dev, "could not submit HD_WRITE_ATMESSAGE: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001883 get_usb_rcmsg(rc));
1884 return rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001885 }
1886
Tilman Schmidt73a88812006-04-22 02:35:30 -07001887 /* submitted successfully, start timeout if necessary */
1888 if (!(update_basstate(ucs, BS_ATTIMER, BS_ATREADY) & BS_ATTIMER)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001889 gig_dbg(DEBUG_OUTPUT, "setting ATREADY timeout of %d/10 secs",
1890 ATRDY_TIMEOUT);
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00001891 mod_timer(&ucs->timer_atrdy, jiffies + ATRDY_TIMEOUT * HZ / 10);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001892 }
1893 return 0;
1894}
1895
1896/* start_cbsend
1897 * start transmission of AT command queue if necessary
1898 * parameter:
1899 * cs controller state structure
1900 * return value:
1901 * 0 on success
1902 * error code < 0 on error
1903 */
1904static int start_cbsend(struct cardstate *cs)
1905{
1906 struct cmdbuf_t *cb;
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001907 struct bas_cardstate *ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001908 unsigned long flags;
1909 int rc;
1910 int retval = 0;
1911
Tilman Schmidt024fd292008-02-06 01:38:26 -08001912 /* check if suspend requested */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001913 if (ucs->basstate & BS_SUSPEND) {
Tilman Schmidt1528b182010-02-22 13:09:52 +00001914 gig_dbg(DEBUG_OUTPUT, "suspending");
Tilman Schmidt024fd292008-02-06 01:38:26 -08001915 return -EHOSTUNREACH;
1916 }
1917
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001918 /* check if AT channel is open */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001919 if (!(ucs->basstate & BS_ATOPEN)) {
Tilman Schmidt1528b182010-02-22 13:09:52 +00001920 gig_dbg(DEBUG_OUTPUT, "AT channel not open");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001921 rc = req_submit(cs->bcs, HD_OPEN_ATCHANNEL, 0, BAS_TIMEOUT);
1922 if (rc < 0) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001923 /* flush command queue */
1924 spin_lock_irqsave(&cs->cmdlock, flags);
1925 while (cs->cmdbuf != NULL)
1926 complete_cb(cs);
1927 spin_unlock_irqrestore(&cs->cmdlock, flags);
1928 }
1929 return rc;
1930 }
1931
1932 /* try to send first command in queue */
1933 spin_lock_irqsave(&cs->cmdlock, flags);
1934
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001935 while ((cb = cs->cmdbuf) != NULL && (ucs->basstate & BS_ATREADY)) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001936 ucs->retry_cmd_out = 0;
1937 rc = atwrite_submit(cs, cb->buf, cb->len);
1938 if (unlikely(rc)) {
1939 retval = rc;
1940 complete_cb(cs);
1941 }
1942 }
1943
1944 spin_unlock_irqrestore(&cs->cmdlock, flags);
1945 return retval;
1946}
1947
1948/* gigaset_write_cmd
1949 * This function is called by the device independent part of the driver
1950 * to transmit an AT command string to the Gigaset device.
1951 * It encapsulates the device specific method for transmission over the
1952 * direct USB connection to the base.
1953 * The command string is added to the queue of commands to send, and
1954 * USB transmission is started if necessary.
1955 * parameters:
1956 * cs controller state structure
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001957 * cb command buffer structure
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001958 * return value:
1959 * number of bytes queued on success
1960 * error code < 0 on error
1961 */
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001962static int gigaset_write_cmd(struct cardstate *cs, struct cmdbuf_t *cb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001963{
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001964 unsigned long flags;
Tilman Schmidt39f07222006-12-13 00:33:52 -08001965 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001966
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001967 gigaset_dbg_buffer(cs->mstate != MS_LOCKED ?
Joe Perches475be4d2012-02-19 19:52:38 -08001968 DEBUG_TRANSCMD : DEBUG_LOCKCMD,
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001969 "CMD Transmit", cb->len, cb->buf);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001970
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001971 /* translate "+++" escape sequence sent as a single separate command
1972 * into "close AT channel" command for error recovery
1973 * The next command will reopen the AT channel automatically.
1974 */
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001975 if (cb->len == 3 && !memcmp(cb->buf, "+++", 3)) {
Tilman Schmidt4cb5e422010-09-30 13:35:31 +00001976 /* If an HD_RECEIVEATDATA_ACK message remains unhandled
1977 * because of an error, the base never sends another one.
1978 * The response channel is thus effectively blocked.
1979 * Closing and reopening the AT channel does *not* clear
1980 * this condition.
1981 * As a stopgap measure, submit a zero-length AT read
1982 * before closing the AT channel. This has the undocumented
1983 * effect of triggering a new HD_RECEIVEATDATA_ACK message
1984 * from the base if necessary.
1985 * The subsequent AT channel close then discards any pending
1986 * messages.
1987 */
1988 spin_lock_irqsave(&cs->lock, flags);
1989 if (!(cs->hw.bas->basstate & BS_ATRDPEND)) {
1990 kfree(cs->hw.bas->rcvbuf);
1991 cs->hw.bas->rcvbuf = NULL;
1992 cs->hw.bas->rcvbuf_size = 0;
1993 cs->hw.bas->retry_cmd_in = 0;
1994 atread_submit(cs, 0);
1995 }
1996 spin_unlock_irqrestore(&cs->lock, flags);
1997
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001998 rc = req_submit(cs->bcs, HD_CLOSE_ATCHANNEL, 0, BAS_TIMEOUT);
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001999 if (cb->wake_tasklet)
2000 tasklet_schedule(cb->wake_tasklet);
Dan Carpenter8bcfbd02010-08-05 22:21:26 +00002001 if (!rc)
2002 rc = cb->len;
2003 kfree(cb);
2004 return rc;
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00002005 }
2006
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002007 spin_lock_irqsave(&cs->cmdlock, flags);
2008 cb->prev = cs->lastcmdbuf;
2009 if (cs->lastcmdbuf)
2010 cs->lastcmdbuf->next = cb;
2011 else {
2012 cs->cmdbuf = cb;
Tilman Schmidte3628dd2010-07-05 14:18:43 +00002013 cs->curlen = cb->len;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002014 }
Tilman Schmidte3628dd2010-07-05 14:18:43 +00002015 cs->cmdbytes += cb->len;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002016 cs->lastcmdbuf = cb;
2017 spin_unlock_irqrestore(&cs->cmdlock, flags);
2018
Tilman Schmidt73a88812006-04-22 02:35:30 -07002019 spin_lock_irqsave(&cs->lock, flags);
2020 if (unlikely(!cs->connected)) {
2021 spin_unlock_irqrestore(&cs->lock, flags);
2022 gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__);
Tilman Schmidt39f07222006-12-13 00:33:52 -08002023 /* flush command queue */
2024 spin_lock_irqsave(&cs->cmdlock, flags);
2025 while (cs->cmdbuf != NULL)
2026 complete_cb(cs);
2027 spin_unlock_irqrestore(&cs->cmdlock, flags);
Tilman Schmidt73a88812006-04-22 02:35:30 -07002028 return -ENODEV;
2029 }
Tilman Schmidt39f07222006-12-13 00:33:52 -08002030 rc = start_cbsend(cs);
Tilman Schmidt73a88812006-04-22 02:35:30 -07002031 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidte3628dd2010-07-05 14:18:43 +00002032 return rc < 0 ? rc : cb->len;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002033}
2034
2035/* gigaset_write_room
2036 * tty_driver.write_room interface routine
Tilman Schmidt917f5082006-04-10 22:55:00 -07002037 * return number of characters the driver will accept to be written via
2038 * gigaset_write_cmd
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002039 * parameter:
2040 * controller state structure
2041 * return value:
2042 * number of characters
2043 */
2044static int gigaset_write_room(struct cardstate *cs)
2045{
2046 return IF_WRITEBUF;
2047}
2048
2049/* gigaset_chars_in_buffer
2050 * tty_driver.chars_in_buffer interface routine
2051 * return number of characters waiting to be sent
2052 * parameter:
2053 * controller state structure
2054 * return value:
2055 * number of characters
2056 */
2057static int gigaset_chars_in_buffer(struct cardstate *cs)
2058{
Tilman Schmidt4d1ff582007-10-16 01:27:50 -07002059 return cs->cmdbytes;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002060}
2061
2062/* gigaset_brkchars
2063 * implementation of ioctl(GIGASET_BRKCHARS)
2064 * parameter:
2065 * controller state structure
2066 * return value:
2067 * -EINVAL (unimplemented function)
2068 */
2069static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6])
2070{
2071 return -EINVAL;
2072}
2073
2074
2075/* Device Initialization/Shutdown */
2076/* ============================== */
2077
2078/* Free hardware dependent part of the B channel structure
2079 * parameter:
2080 * bcs B channel structure
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002081 */
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002082static void gigaset_freebcshw(struct bc_state *bcs)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002083{
Tilman Schmidt73a88812006-04-22 02:35:30 -07002084 struct bas_bc_state *ubc = bcs->hw.bas;
2085 int i;
2086
2087 if (!ubc)
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002088 return;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002089
Tilman Schmidt73a88812006-04-22 02:35:30 -07002090 /* kill URBs and tasklets before freeing - better safe than sorry */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002091 ubc->running = 0;
Tilman Schmidtbb7196d2010-09-30 13:35:52 +00002092 gig_dbg(DEBUG_INIT, "%s: killing isoc URBs", __func__);
Tilman Schmidt39f07222006-12-13 00:33:52 -08002093 for (i = 0; i < BAS_OUTURBS; ++i) {
2094 usb_kill_urb(ubc->isoouturbs[i].urb);
2095 usb_free_urb(ubc->isoouturbs[i].urb);
2096 }
2097 for (i = 0; i < BAS_INURBS; ++i) {
2098 usb_kill_urb(ubc->isoinurbs[i]);
2099 usb_free_urb(ubc->isoinurbs[i]);
2100 }
Tilman Schmidt73a88812006-04-22 02:35:30 -07002101 tasklet_kill(&ubc->sent_tasklet);
2102 tasklet_kill(&ubc->rcvd_tasklet);
2103 kfree(ubc->isooutbuf);
2104 kfree(ubc);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002105 bcs->hw.bas = NULL;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002106}
2107
2108/* Initialize hardware dependent part of the B channel structure
2109 * parameter:
2110 * bcs B channel structure
2111 * return value:
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002112 * 0 on success, error code < 0 on failure
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002113 */
2114static int gigaset_initbcshw(struct bc_state *bcs)
2115{
2116 int i;
2117 struct bas_bc_state *ubc;
2118
2119 bcs->hw.bas = ubc = kmalloc(sizeof(struct bas_bc_state), GFP_KERNEL);
2120 if (!ubc) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002121 pr_err("out of memory\n");
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002122 return -ENOMEM;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002123 }
2124
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002125 ubc->running = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002126 atomic_set(&ubc->corrbytes, 0);
2127 spin_lock_init(&ubc->isooutlock);
2128 for (i = 0; i < BAS_OUTURBS; ++i) {
2129 ubc->isoouturbs[i].urb = NULL;
2130 ubc->isoouturbs[i].bcs = bcs;
2131 }
2132 ubc->isooutdone = ubc->isooutfree = ubc->isooutovfl = NULL;
2133 ubc->numsub = 0;
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002134 ubc->isooutbuf = kmalloc(sizeof(struct isowbuf_t), GFP_KERNEL);
2135 if (!ubc->isooutbuf) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002136 pr_err("out of memory\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002137 kfree(ubc);
2138 bcs->hw.bas = NULL;
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002139 return -ENOMEM;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002140 }
2141 tasklet_init(&ubc->sent_tasklet,
Joe Perches5452fee2009-11-19 09:55:53 +00002142 write_iso_tasklet, (unsigned long) bcs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002143
2144 spin_lock_init(&ubc->isoinlock);
2145 for (i = 0; i < BAS_INURBS; ++i)
2146 ubc->isoinurbs[i] = NULL;
2147 ubc->isoindone = NULL;
2148 ubc->loststatus = -EINPROGRESS;
2149 ubc->isoinlost = 0;
2150 ubc->seqlen = 0;
2151 ubc->inbyte = 0;
2152 ubc->inbits = 0;
2153 ubc->goodbytes = 0;
2154 ubc->alignerrs = 0;
2155 ubc->fcserrs = 0;
2156 ubc->frameerrs = 0;
2157 ubc->giants = 0;
2158 ubc->runts = 0;
2159 ubc->aborts = 0;
2160 ubc->shared0s = 0;
2161 ubc->stolen0s = 0;
2162 tasklet_init(&ubc->rcvd_tasklet,
Joe Perches5452fee2009-11-19 09:55:53 +00002163 read_iso_tasklet, (unsigned long) bcs);
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002164 return 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002165}
2166
2167static void gigaset_reinitbcshw(struct bc_state *bcs)
2168{
2169 struct bas_bc_state *ubc = bcs->hw.bas;
2170
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002171 bcs->hw.bas->running = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002172 atomic_set(&bcs->hw.bas->corrbytes, 0);
2173 bcs->hw.bas->numsub = 0;
2174 spin_lock_init(&ubc->isooutlock);
2175 spin_lock_init(&ubc->isoinlock);
2176 ubc->loststatus = -EINPROGRESS;
2177}
2178
2179static void gigaset_freecshw(struct cardstate *cs)
2180{
Tilman Schmidt73a88812006-04-22 02:35:30 -07002181 /* timers, URBs and rcvbuf are disposed of in disconnect */
Tilman Schmidt170ebf82009-03-18 23:44:23 -07002182 kfree(cs->hw.bas->int_in_buf);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002183 kfree(cs->hw.bas);
Tilman Schmidt73a88812006-04-22 02:35:30 -07002184 cs->hw.bas = NULL;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002185}
2186
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002187/* Initialize hardware dependent part of the cardstate structure
2188 * parameter:
2189 * cs cardstate structure
2190 * return value:
2191 * 0 on success, error code < 0 on failure
2192 */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002193static int gigaset_initcshw(struct cardstate *cs)
2194{
2195 struct bas_cardstate *ucs;
2196
2197 cs->hw.bas = ucs = kmalloc(sizeof *ucs, GFP_KERNEL);
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002198 if (!ucs) {
2199 pr_err("out of memory\n");
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002200 return -ENOMEM;
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002201 }
Tilman Schmidt170ebf82009-03-18 23:44:23 -07002202 ucs->int_in_buf = kmalloc(IP_MSGSIZE, GFP_KERNEL);
2203 if (!ucs->int_in_buf) {
2204 kfree(ucs);
2205 pr_err("out of memory\n");
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002206 return -ENOMEM;
Tilman Schmidt170ebf82009-03-18 23:44:23 -07002207 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002208
2209 ucs->urb_cmd_in = NULL;
2210 ucs->urb_cmd_out = NULL;
2211 ucs->rcvbuf = NULL;
2212 ucs->rcvbuf_size = 0;
2213
2214 spin_lock_init(&ucs->lock);
2215 ucs->pending = 0;
2216
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002217 ucs->basstate = 0;
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00002218 setup_timer(&ucs->timer_ctrl, req_timeout, (unsigned long) cs);
2219 setup_timer(&ucs->timer_atrdy, atrdy_timeout, (unsigned long) cs);
2220 setup_timer(&ucs->timer_cmd_in, cmd_in_timeout, (unsigned long) cs);
Tilman Schmidtc9c0c302010-09-30 13:35:42 +00002221 setup_timer(&ucs->timer_int_in, int_in_resubmit, (unsigned long) cs);
Tilman Schmidt024fd292008-02-06 01:38:26 -08002222 init_waitqueue_head(&ucs->waitqueue);
Tilman Schmidtc9c0c302010-09-30 13:35:42 +00002223 INIT_WORK(&ucs->int_in_wq, int_in_work);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002224
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002225 return 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002226}
2227
2228/* freeurbs
2229 * unlink and deallocate all URBs unconditionally
2230 * caller must make sure that no commands are still in progress
2231 * parameter:
2232 * cs controller state structure
2233 */
2234static void freeurbs(struct cardstate *cs)
2235{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07002236 struct bas_cardstate *ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002237 struct bas_bc_state *ubc;
2238 int i, j;
2239
Tilman Schmidt39f07222006-12-13 00:33:52 -08002240 gig_dbg(DEBUG_INIT, "%s: killing URBs", __func__);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08002241 for (j = 0; j < BAS_CHANNELS; ++j) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002242 ubc = cs->bcs[j].hw.bas;
Tilman Schmidt39f07222006-12-13 00:33:52 -08002243 for (i = 0; i < BAS_OUTURBS; ++i) {
2244 usb_kill_urb(ubc->isoouturbs[i].urb);
2245 usb_free_urb(ubc->isoouturbs[i].urb);
2246 ubc->isoouturbs[i].urb = NULL;
2247 }
2248 for (i = 0; i < BAS_INURBS; ++i) {
2249 usb_kill_urb(ubc->isoinurbs[i]);
2250 usb_free_urb(ubc->isoinurbs[i]);
2251 ubc->isoinurbs[i] = NULL;
2252 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002253 }
Tilman Schmidt39f07222006-12-13 00:33:52 -08002254 usb_kill_urb(ucs->urb_int_in);
2255 usb_free_urb(ucs->urb_int_in);
2256 ucs->urb_int_in = NULL;
2257 usb_kill_urb(ucs->urb_cmd_out);
2258 usb_free_urb(ucs->urb_cmd_out);
2259 ucs->urb_cmd_out = NULL;
2260 usb_kill_urb(ucs->urb_cmd_in);
2261 usb_free_urb(ucs->urb_cmd_in);
2262 ucs->urb_cmd_in = NULL;
2263 usb_kill_urb(ucs->urb_ctrl);
2264 usb_free_urb(ucs->urb_ctrl);
2265 ucs->urb_ctrl = NULL;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002266}
2267
2268/* gigaset_probe
2269 * This function is called when a new USB device is connected.
2270 * It checks whether the new device is handled by this driver.
2271 */
2272static int gigaset_probe(struct usb_interface *interface,
2273 const struct usb_device_id *id)
2274{
2275 struct usb_host_interface *hostif;
2276 struct usb_device *udev = interface_to_usbdev(interface);
2277 struct cardstate *cs = NULL;
2278 struct bas_cardstate *ucs = NULL;
2279 struct bas_bc_state *ubc;
2280 struct usb_endpoint_descriptor *endpoint;
2281 int i, j;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002282 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002283
Tilman Schmidt1528b182010-02-22 13:09:52 +00002284 gig_dbg(DEBUG_INIT,
Tilman Schmidt784d5852006-04-10 22:55:04 -07002285 "%s: Check if device matches .. (Vendor: 0x%x, Product: 0x%x)",
2286 __func__, le16_to_cpu(udev->descriptor.idVendor),
2287 le16_to_cpu(udev->descriptor.idProduct));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002288
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002289 /* set required alternate setting */
2290 hostif = interface->cur_altsetting;
2291 if (hostif->desc.bAlternateSetting != 3) {
Tilman Schmidt1528b182010-02-22 13:09:52 +00002292 gig_dbg(DEBUG_INIT,
Tilman Schmidt784d5852006-04-10 22:55:04 -07002293 "%s: wrong alternate setting %d - trying to switch",
2294 __func__, hostif->desc.bAlternateSetting);
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002295 if (usb_set_interface(udev, hostif->desc.bInterfaceNumber, 3)
2296 < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07002297 dev_warn(&udev->dev, "usb_set_interface failed, "
2298 "device %d interface %d altsetting %d\n",
2299 udev->devnum, hostif->desc.bInterfaceNumber,
2300 hostif->desc.bAlternateSetting);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002301 return -ENODEV;
2302 }
2303 hostif = interface->cur_altsetting;
2304 }
2305
2306 /* Reject application specific interfaces
2307 */
2308 if (hostif->desc.bInterfaceClass != 255) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07002309 dev_warn(&udev->dev, "%s: bInterfaceClass == %d\n",
2310 __func__, hostif->desc.bInterfaceClass);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002311 return -ENODEV;
2312 }
2313
Tilman Schmidt784d5852006-04-10 22:55:04 -07002314 dev_info(&udev->dev,
2315 "%s: Device matched (Vendor: 0x%x, Product: 0x%x)\n",
2316 __func__, le16_to_cpu(udev->descriptor.idVendor),
2317 le16_to_cpu(udev->descriptor.idProduct));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002318
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002319 /* allocate memory for our device state and initialize it */
Tilman Schmidte468c042008-02-06 01:38:29 -08002320 cs = gigaset_initcs(driver, BAS_CHANNELS, 0, 0, cidmode,
2321 GIGASET_MODULENAME);
2322 if (!cs)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002323 return -ENODEV;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002324 ucs = cs->hw.bas;
Tilman Schmidt784d5852006-04-10 22:55:04 -07002325
2326 /* save off device structure ptrs for later use */
2327 usb_get_dev(udev);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002328 ucs->udev = udev;
2329 ucs->interface = interface;
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002330 cs->dev = &interface->dev;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002331
2332 /* allocate URBs:
2333 * - one for the interrupt pipe
2334 * - three for the different uses of the default control pipe
2335 * - three for each isochronous pipe
2336 */
Christoph Lametere94b1762006-12-06 20:33:17 -08002337 if (!(ucs->urb_int_in = usb_alloc_urb(0, GFP_KERNEL)) ||
2338 !(ucs->urb_cmd_in = usb_alloc_urb(0, GFP_KERNEL)) ||
2339 !(ucs->urb_cmd_out = usb_alloc_urb(0, GFP_KERNEL)) ||
2340 !(ucs->urb_ctrl = usb_alloc_urb(0, GFP_KERNEL)))
Tilman Schmidt73a88812006-04-22 02:35:30 -07002341 goto allocerr;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002342
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08002343 for (j = 0; j < BAS_CHANNELS; ++j) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002344 ubc = cs->bcs[j].hw.bas;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002345 for (i = 0; i < BAS_OUTURBS; ++i)
2346 if (!(ubc->isoouturbs[i].urb =
Christoph Lametere94b1762006-12-06 20:33:17 -08002347 usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL)))
Tilman Schmidt73a88812006-04-22 02:35:30 -07002348 goto allocerr;
2349 for (i = 0; i < BAS_INURBS; ++i)
2350 if (!(ubc->isoinurbs[i] =
Christoph Lametere94b1762006-12-06 20:33:17 -08002351 usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL)))
Tilman Schmidt73a88812006-04-22 02:35:30 -07002352 goto allocerr;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002353 }
2354
2355 ucs->rcvbuf = NULL;
2356 ucs->rcvbuf_size = 0;
2357
2358 /* Fill the interrupt urb and send it to the core */
2359 endpoint = &hostif->endpoint[0].desc;
2360 usb_fill_int_urb(ucs->urb_int_in, udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -07002361 usb_rcvintpipe(udev,
2362 (endpoint->bEndpointAddress) & 0x0f),
Tilman Schmidt170ebf82009-03-18 23:44:23 -07002363 ucs->int_in_buf, IP_MSGSIZE, read_int_callback, cs,
Tilman Schmidt784d5852006-04-10 22:55:04 -07002364 endpoint->bInterval);
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002365 rc = usb_submit_urb(ucs->urb_int_in, GFP_KERNEL);
2366 if (rc != 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07002367 dev_err(cs->dev, "could not submit interrupt URB: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07002368 get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002369 goto error;
2370 }
Tilman Schmidtc9c0c302010-09-30 13:35:42 +00002371 ucs->retry_int_in = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002372
2373 /* tell the device that the driver is ready */
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002374 rc = req_submit(cs->bcs, HD_DEVICE_INIT_ACK, 0, 0);
2375 if (rc != 0)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002376 goto error;
2377
2378 /* tell common part that the device is ready */
2379 if (startmode == SM_LOCKED)
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002380 cs->mstate = MS_LOCKED;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002381
2382 /* save address of controller structure */
2383 usb_set_intfdata(interface, cs);
2384
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002385 rc = gigaset_start(cs);
2386 if (rc < 0)
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002387 goto error;
2388
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002389 return 0;
2390
Tilman Schmidt73a88812006-04-22 02:35:30 -07002391allocerr:
2392 dev_err(cs->dev, "could not allocate URBs\n");
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002393 rc = -ENOMEM;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002394error:
2395 freeurbs(cs);
Tilman Schmidt69049cc2006-04-10 22:55:16 -07002396 usb_set_intfdata(interface, NULL);
Tilman Schmidte468c042008-02-06 01:38:29 -08002397 gigaset_freecs(cs);
Tilman Schmidt81fa7b82012-04-25 13:02:20 +00002398 return rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002399}
2400
2401/* gigaset_disconnect
2402 * This function is called when the Gigaset base is unplugged.
2403 */
2404static void gigaset_disconnect(struct usb_interface *interface)
2405{
2406 struct cardstate *cs;
2407 struct bas_cardstate *ucs;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002408 int j;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002409
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002410 cs = usb_get_intfdata(interface);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002411
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002412 ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002413
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002414 dev_info(cs->dev, "disconnecting Gigaset base\n");
Tilman Schmidt73a88812006-04-22 02:35:30 -07002415
2416 /* mark base as not ready, all channels disconnected */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002417 ucs->basstate = 0;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002418
2419 /* tell LL all channels are down */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08002420 for (j = 0; j < BAS_CHANNELS; ++j)
Tilman Schmidt73a88812006-04-22 02:35:30 -07002421 gigaset_bchannel_down(cs->bcs + j);
2422
2423 /* stop driver (common part) */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002424 gigaset_stop(cs);
Tilman Schmidt73a88812006-04-22 02:35:30 -07002425
Tilman Schmidtc9c0c302010-09-30 13:35:42 +00002426 /* stop delayed work and URBs, free ressources */
Tilman Schmidt73a88812006-04-22 02:35:30 -07002427 del_timer_sync(&ucs->timer_ctrl);
2428 del_timer_sync(&ucs->timer_atrdy);
2429 del_timer_sync(&ucs->timer_cmd_in);
Tilman Schmidtc9c0c302010-09-30 13:35:42 +00002430 del_timer_sync(&ucs->timer_int_in);
2431 cancel_work_sync(&ucs->int_in_wq);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002432 freeurbs(cs);
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002433 usb_set_intfdata(interface, NULL);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002434 kfree(ucs->rcvbuf);
2435 ucs->rcvbuf = NULL;
2436 ucs->rcvbuf_size = 0;
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002437 usb_put_dev(ucs->udev);
2438 ucs->interface = NULL;
2439 ucs->udev = NULL;
2440 cs->dev = NULL;
Tilman Schmidte468c042008-02-06 01:38:29 -08002441 gigaset_freecs(cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002442}
2443
Tilman Schmidt024fd292008-02-06 01:38:26 -08002444/* gigaset_suspend
2445 * This function is called before the USB connection is suspended.
2446 */
2447static int gigaset_suspend(struct usb_interface *intf, pm_message_t message)
2448{
2449 struct cardstate *cs = usb_get_intfdata(intf);
2450 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidt024fd292008-02-06 01:38:26 -08002451 int rc;
2452
2453 /* set suspend flag; this stops AT command/response traffic */
2454 if (update_basstate(ucs, BS_SUSPEND, 0) & BS_SUSPEND) {
2455 gig_dbg(DEBUG_SUSPEND, "already suspended");
2456 return 0;
2457 }
2458
2459 /* wait a bit for blocking conditions to go away */
2460 rc = wait_event_timeout(ucs->waitqueue,
Joe Perches475be4d2012-02-19 19:52:38 -08002461 !(ucs->basstate &
2462 (BS_B1OPEN | BS_B2OPEN | BS_ATRDPEND | BS_ATWRPEND)),
2463 BAS_TIMEOUT * HZ / 10);
Tilman Schmidt024fd292008-02-06 01:38:26 -08002464 gig_dbg(DEBUG_SUSPEND, "wait_event_timeout() -> %d", rc);
2465
2466 /* check for conditions preventing suspend */
Joe Perches475be4d2012-02-19 19:52:38 -08002467 if (ucs->basstate & (BS_B1OPEN | BS_B2OPEN | BS_ATRDPEND | BS_ATWRPEND)) {
Tilman Schmidt024fd292008-02-06 01:38:26 -08002468 dev_warn(cs->dev, "cannot suspend:\n");
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002469 if (ucs->basstate & BS_B1OPEN)
Tilman Schmidt024fd292008-02-06 01:38:26 -08002470 dev_warn(cs->dev, " B channel 1 open\n");
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002471 if (ucs->basstate & BS_B2OPEN)
Tilman Schmidt024fd292008-02-06 01:38:26 -08002472 dev_warn(cs->dev, " B channel 2 open\n");
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002473 if (ucs->basstate & BS_ATRDPEND)
Tilman Schmidt024fd292008-02-06 01:38:26 -08002474 dev_warn(cs->dev, " receiving AT reply\n");
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002475 if (ucs->basstate & BS_ATWRPEND)
Tilman Schmidt024fd292008-02-06 01:38:26 -08002476 dev_warn(cs->dev, " sending AT command\n");
2477 update_basstate(ucs, 0, BS_SUSPEND);
2478 return -EBUSY;
2479 }
2480
2481 /* close AT channel if open */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002482 if (ucs->basstate & BS_ATOPEN) {
Tilman Schmidt024fd292008-02-06 01:38:26 -08002483 gig_dbg(DEBUG_SUSPEND, "closing AT channel");
2484 rc = req_submit(cs->bcs, HD_CLOSE_ATCHANNEL, 0, 0);
2485 if (rc) {
2486 update_basstate(ucs, 0, BS_SUSPEND);
2487 return rc;
2488 }
2489 wait_event_timeout(ucs->waitqueue, !ucs->pending,
Joe Perches475be4d2012-02-19 19:52:38 -08002490 BAS_TIMEOUT * HZ / 10);
Tilman Schmidt024fd292008-02-06 01:38:26 -08002491 /* in case of timeout, proceed anyway */
2492 }
2493
Tilman Schmidtc9c0c302010-09-30 13:35:42 +00002494 /* kill all URBs and delayed work that might still be pending */
Tilman Schmidt024fd292008-02-06 01:38:26 -08002495 usb_kill_urb(ucs->urb_ctrl);
2496 usb_kill_urb(ucs->urb_int_in);
2497 del_timer_sync(&ucs->timer_ctrl);
Tilman Schmidt1d5a9ed2010-09-30 13:35:11 +00002498 del_timer_sync(&ucs->timer_atrdy);
2499 del_timer_sync(&ucs->timer_cmd_in);
Tilman Schmidtc9c0c302010-09-30 13:35:42 +00002500 del_timer_sync(&ucs->timer_int_in);
2501 cancel_work_sync(&ucs->int_in_wq);
Tilman Schmidt024fd292008-02-06 01:38:26 -08002502
2503 gig_dbg(DEBUG_SUSPEND, "suspend complete");
2504 return 0;
2505}
2506
2507/* gigaset_resume
2508 * This function is called after the USB connection has been resumed.
2509 */
2510static int gigaset_resume(struct usb_interface *intf)
2511{
2512 struct cardstate *cs = usb_get_intfdata(intf);
2513 struct bas_cardstate *ucs = cs->hw.bas;
2514 int rc;
2515
2516 /* resubmit interrupt URB for spontaneous messages from base */
2517 rc = usb_submit_urb(ucs->urb_int_in, GFP_KERNEL);
2518 if (rc) {
2519 dev_err(cs->dev, "could not resubmit interrupt URB: %s\n",
2520 get_usb_rcmsg(rc));
2521 return rc;
2522 }
Tilman Schmidtc9c0c302010-09-30 13:35:42 +00002523 ucs->retry_int_in = 0;
Tilman Schmidt024fd292008-02-06 01:38:26 -08002524
2525 /* clear suspend flag to reallow activity */
2526 update_basstate(ucs, 0, BS_SUSPEND);
2527
2528 gig_dbg(DEBUG_SUSPEND, "resume complete");
2529 return 0;
2530}
2531
2532/* gigaset_pre_reset
2533 * This function is called before the USB connection is reset.
2534 */
2535static int gigaset_pre_reset(struct usb_interface *intf)
2536{
2537 /* handle just like suspend */
2538 return gigaset_suspend(intf, PMSG_ON);
2539}
2540
2541/* gigaset_post_reset
2542 * This function is called after the USB connection has been reset.
2543 */
2544static int gigaset_post_reset(struct usb_interface *intf)
2545{
2546 /* FIXME: send HD_DEVICE_INIT_ACK? */
2547
2548 /* resume operations */
2549 return gigaset_resume(intf);
2550}
2551
2552
Tilman Schmidt35dc8452007-03-29 01:20:34 -07002553static const struct gigaset_ops gigops = {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002554 gigaset_write_cmd,
2555 gigaset_write_room,
2556 gigaset_chars_in_buffer,
2557 gigaset_brkchars,
2558 gigaset_init_bchannel,
2559 gigaset_close_bchannel,
2560 gigaset_initbcshw,
2561 gigaset_freebcshw,
2562 gigaset_reinitbcshw,
2563 gigaset_initcshw,
2564 gigaset_freecshw,
2565 gigaset_set_modem_ctrl,
2566 gigaset_baud_rate,
2567 gigaset_set_line_ctrl,
2568 gigaset_isoc_send_skb,
2569 gigaset_isoc_input,
2570};
2571
2572/* bas_gigaset_init
2573 * This function is called after the kernel module is loaded.
2574 */
2575static int __init bas_gigaset_init(void)
2576{
2577 int result;
2578
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002579 /* allocate memory for our driver state and initialize it */
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002580 driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
2581 GIGASET_MODULENAME, GIGASET_DEVNAME,
2582 &gigops, THIS_MODULE);
2583 if (driver == NULL)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002584 goto error;
2585
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002586 /* register this driver with the USB subsystem */
2587 result = usb_register(&gigaset_usb_driver);
2588 if (result < 0) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002589 pr_err("error %d registering USB driver\n", -result);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002590 goto error;
2591 }
2592
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002593 pr_info(DRIVER_DESC "\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002594 return 0;
2595
Tilman Schmidte468c042008-02-06 01:38:29 -08002596error:
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002597 if (driver)
2598 gigaset_freedriver(driver);
2599 driver = NULL;
2600 return -1;
2601}
2602
2603/* bas_gigaset_exit
2604 * This function is called before the kernel module is unloaded.
2605 */
2606static void __exit bas_gigaset_exit(void)
2607{
Tilman Schmidte468c042008-02-06 01:38:29 -08002608 struct bas_cardstate *ucs;
2609 int i;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002610
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002611 gigaset_blockdriver(driver); /* => probe will fail
Tilman Schmidt784d5852006-04-10 22:55:04 -07002612 * => no gigaset_start any more
2613 */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002614
Tilman Schmidte468c042008-02-06 01:38:29 -08002615 /* stop all connected devices */
2616 for (i = 0; i < driver->minors; i++) {
2617 if (gigaset_shutdown(driver->cs + i) < 0)
2618 continue; /* no device */
2619 /* from now on, no isdn callback should be possible */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002620
Tilman Schmidte468c042008-02-06 01:38:29 -08002621 /* close all still open channels */
2622 ucs = driver->cs[i].hw.bas;
2623 if (ucs->basstate & BS_B1OPEN) {
2624 gig_dbg(DEBUG_INIT, "closing B1 channel");
2625 usb_control_msg(ucs->udev,
2626 usb_sndctrlpipe(ucs->udev, 0),
2627 HD_CLOSE_B1CHANNEL, OUT_VENDOR_REQ,
2628 0, 0, NULL, 0, BAS_TIMEOUT);
2629 }
2630 if (ucs->basstate & BS_B2OPEN) {
2631 gig_dbg(DEBUG_INIT, "closing B2 channel");
2632 usb_control_msg(ucs->udev,
2633 usb_sndctrlpipe(ucs->udev, 0),
2634 HD_CLOSE_B2CHANNEL, OUT_VENDOR_REQ,
2635 0, 0, NULL, 0, BAS_TIMEOUT);
2636 }
2637 if (ucs->basstate & BS_ATOPEN) {
2638 gig_dbg(DEBUG_INIT, "closing AT channel");
2639 usb_control_msg(ucs->udev,
2640 usb_sndctrlpipe(ucs->udev, 0),
2641 HD_CLOSE_ATCHANNEL, OUT_VENDOR_REQ,
2642 0, 0, NULL, 0, BAS_TIMEOUT);
2643 }
2644 ucs->basstate = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002645 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002646
2647 /* deregister this driver with the USB subsystem */
2648 usb_deregister(&gigaset_usb_driver);
2649 /* this will call the disconnect-callback */
2650 /* from now on, no disconnect/probe callback should be running */
2651
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002652 gigaset_freedriver(driver);
2653 driver = NULL;
2654}
2655
2656
2657module_init(bas_gigaset_init);
2658module_exit(bas_gigaset_exit);
2659
2660MODULE_AUTHOR(DRIVER_AUTHOR);
2661MODULE_DESCRIPTION(DRIVER_DESC);
2662MODULE_LICENSE("GPL");