blob: 2dab5313913bb035cd435415e1dad2e2b04003d6 [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;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800112
113 spinlock_t lock; /* locks all following */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800114 int basstate; /* bitmap (BS_*) */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800115 int pending; /* uncompleted base request */
Tilman Schmidt024fd292008-02-06 01:38:26 -0800116 wait_queue_head_t waitqueue;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800117 int rcvbuf_size; /* size of AT receive buffer */
118 /* 0: no receive in progress */
119 int retry_cmd_in; /* receive req retry count */
120};
121
122/* status of direct USB connection to 307x base (bits in basstate) */
Tilman Schmidt73a88812006-04-22 02:35:30 -0700123#define BS_ATOPEN 0x001 /* AT channel open */
124#define BS_B1OPEN 0x002 /* B channel 1 open */
125#define BS_B2OPEN 0x004 /* B channel 2 open */
126#define BS_ATREADY 0x008 /* base ready for AT command */
127#define BS_INIT 0x010 /* base has signalled INIT_OK */
128#define BS_ATTIMER 0x020 /* waiting for HD_READY_SEND_ATDATA */
129#define BS_ATRDPEND 0x040 /* urb_cmd_in in use */
130#define BS_ATWRPEND 0x080 /* urb_cmd_out in use */
Tilman Schmidt024fd292008-02-06 01:38:26 -0800131#define BS_SUSPEND 0x100 /* USB port suspended */
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000132#define BS_RESETTING 0x200 /* waiting for HD_RESET_INTERRUPT_PIPE_ACK */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800133
134
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000135static struct gigaset_driver *driver;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800136
137/* usb specific object needed to register this driver with the usb subsystem */
138static struct usb_driver gigaset_usb_driver = {
139 .name = GIGASET_MODULENAME,
140 .probe = gigaset_probe,
141 .disconnect = gigaset_disconnect,
142 .id_table = gigaset_table,
Tilman Schmidt024fd292008-02-06 01:38:26 -0800143 .suspend = gigaset_suspend,
144 .resume = gigaset_resume,
145 .reset_resume = gigaset_post_reset,
146 .pre_reset = gigaset_pre_reset,
147 .post_reset = gigaset_post_reset,
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800148};
149
Tilman Schmidt73a88812006-04-22 02:35:30 -0700150/* get message text for usb_submit_urb return code
151 */
152static char *get_usb_rcmsg(int rc)
153{
154 static char unkmsg[28];
155
156 switch (rc) {
157 case 0:
158 return "success";
159 case -ENOMEM:
160 return "out of memory";
161 case -ENODEV:
162 return "device not present";
163 case -ENOENT:
164 return "endpoint not present";
165 case -ENXIO:
166 return "URB type not supported";
167 case -EINVAL:
168 return "invalid argument";
169 case -EAGAIN:
170 return "start frame too early or too much scheduled";
171 case -EFBIG:
172 return "too many isochronous frames requested";
173 case -EPIPE:
174 return "endpoint stalled";
175 case -EMSGSIZE:
176 return "invalid packet size";
177 case -ENOSPC:
178 return "would overcommit USB bandwidth";
179 case -ESHUTDOWN:
180 return "device shut down";
181 case -EPERM:
182 return "reject flag set";
183 case -EHOSTUNREACH:
184 return "device suspended";
185 default:
186 snprintf(unkmsg, sizeof(unkmsg), "unknown error %d", rc);
187 return unkmsg;
188 }
189}
190
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800191/* get message text for USB status code
192 */
193static char *get_usb_statmsg(int status)
194{
195 static char unkmsg[28];
196
197 switch (status) {
198 case 0:
199 return "success";
200 case -ENOENT:
Tilman Schmidt73a88812006-04-22 02:35:30 -0700201 return "unlinked (sync)";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800202 case -EINPROGRESS:
203 return "pending";
204 case -EPROTO:
Tilman Schmidt73a88812006-04-22 02:35:30 -0700205 return "bit stuffing error, timeout, or unknown USB error";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800206 case -EILSEQ:
Tilman Schmidt73a88812006-04-22 02:35:30 -0700207 return "CRC mismatch, timeout, or unknown USB error";
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -0700208 case -ETIME:
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800209 return "timed out";
Tilman Schmidt73a88812006-04-22 02:35:30 -0700210 case -EPIPE:
211 return "endpoint stalled";
212 case -ECOMM:
213 return "IN buffer overrun";
214 case -ENOSR:
215 return "OUT buffer underrun";
216 case -EOVERFLOW:
217 return "too much data";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800218 case -EREMOTEIO:
219 return "short packet detected";
Tilman Schmidt73a88812006-04-22 02:35:30 -0700220 case -ENODEV:
221 return "device removed";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800222 case -EXDEV:
223 return "partial isochronous transfer";
224 case -EINVAL:
225 return "invalid argument";
Tilman Schmidt73a88812006-04-22 02:35:30 -0700226 case -ECONNRESET:
227 return "unlinked (async)";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800228 case -ESHUTDOWN:
Tilman Schmidt73a88812006-04-22 02:35:30 -0700229 return "device shut down";
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800230 default:
Tilman Schmidt73a88812006-04-22 02:35:30 -0700231 snprintf(unkmsg, sizeof(unkmsg), "unknown status %d", status);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800232 return unkmsg;
233 }
234}
235
236/* usb_pipetype_str
237 * retrieve string representation of USB pipe type
238 */
239static inline char *usb_pipetype_str(int pipe)
240{
241 if (usb_pipeisoc(pipe))
242 return "Isoc";
243 if (usb_pipeint(pipe))
244 return "Int";
245 if (usb_pipecontrol(pipe))
246 return "Ctrl";
247 if (usb_pipebulk(pipe))
248 return "Bulk";
249 return "?";
250}
251
252/* dump_urb
253 * write content of URB to syslog for debugging
254 */
255static inline void dump_urb(enum debuglevel level, const char *tag,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700256 struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800257{
258#ifdef CONFIG_GIGASET_DEBUG
259 int i;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700260 gig_dbg(level, "%s urb(0x%08lx)->{", tag, (unsigned long) urb);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800261 if (urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700262 gig_dbg(level,
263 " dev=0x%08lx, pipe=%s:EP%d/DV%d:%s, "
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800264 "hcpriv=0x%08lx, transfer_flags=0x%x,",
Tilman Schmidt784d5852006-04-10 22:55:04 -0700265 (unsigned long) urb->dev,
266 usb_pipetype_str(urb->pipe),
267 usb_pipeendpoint(urb->pipe), usb_pipedevice(urb->pipe),
268 usb_pipein(urb->pipe) ? "in" : "out",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800269 (unsigned long) urb->hcpriv,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700270 urb->transfer_flags);
271 gig_dbg(level,
272 " transfer_buffer=0x%08lx[%d], actual_length=%d, "
Andrew Morton249b0612007-02-10 01:46:49 -0800273 "setup_packet=0x%08lx,",
Tilman Schmidt784d5852006-04-10 22:55:04 -0700274 (unsigned long) urb->transfer_buffer,
275 urb->transfer_buffer_length, urb->actual_length,
Andrew Morton249b0612007-02-10 01:46:49 -0800276 (unsigned long) urb->setup_packet);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700277 gig_dbg(level,
278 " start_frame=%d, number_of_packets=%d, interval=%d, "
279 "error_count=%d,",
280 urb->start_frame, urb->number_of_packets, urb->interval,
281 urb->error_count);
282 gig_dbg(level,
283 " context=0x%08lx, complete=0x%08lx, "
284 "iso_frame_desc[]={",
285 (unsigned long) urb->context,
286 (unsigned long) urb->complete);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800287 for (i = 0; i < urb->number_of_packets; i++) {
Tilman Schmidt917f5082006-04-10 22:55:00 -0700288 struct usb_iso_packet_descriptor *pifd
289 = &urb->iso_frame_desc[i];
Tilman Schmidt784d5852006-04-10 22:55:04 -0700290 gig_dbg(level,
291 " {offset=%u, length=%u, actual_length=%u, "
292 "status=%u}",
293 pifd->offset, pifd->length, pifd->actual_length,
294 pifd->status);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800295 }
296 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700297 gig_dbg(level, "}}");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800298#endif
299}
300
301/* read/set modem control bits etc. (m10x only) */
302static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700303 unsigned new_state)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800304{
305 return -EINVAL;
306}
307
308static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
309{
310 return -EINVAL;
311}
312
313static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag)
314{
315 return -EINVAL;
316}
317
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000318/* set/clear bits in base connection state, return previous state
319 */
320static inline int update_basstate(struct bas_cardstate *ucs,
321 int set, int clear)
322{
323 unsigned long flags;
324 int state;
325
326 spin_lock_irqsave(&ucs->lock, flags);
327 state = ucs->basstate;
328 ucs->basstate = (state & ~clear) | set;
329 spin_unlock_irqrestore(&ucs->lock, flags);
330 return state;
331}
332
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800333/* error_hangup
334 * hang up any existing connection because of an unrecoverable error
335 * This function may be called from any context and takes care of scheduling
336 * the necessary actions for execution outside of interrupt context.
Tilman Schmidt06163f82006-06-26 00:25:33 -0700337 * cs->lock must not be held.
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800338 * argument:
339 * B channel control structure
340 */
341static inline void error_hangup(struct bc_state *bcs)
342{
343 struct cardstate *cs = bcs->cs;
344
Tilman Schmidt1528b182010-02-22 13:09:52 +0000345 gigaset_add_event(cs, &bcs->at_state, EV_HUP, NULL, 0, NULL);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800346 gigaset_schedule_event(cs);
347}
348
349/* error_reset
350 * reset Gigaset device because of an unrecoverable error
Tilman Schmidt06163f82006-06-26 00:25:33 -0700351 * This function may be called from any context, and takes care of
Tilman Schmidt73a88812006-04-22 02:35:30 -0700352 * scheduling the necessary actions for execution outside of interrupt context.
Tilman Schmidt06163f82006-06-26 00:25:33 -0700353 * cs->lock must not be held.
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800354 * argument:
355 * controller state structure
356 */
357static inline void error_reset(struct cardstate *cs)
358{
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000359 /* reset interrupt pipe to recover (ignore errors) */
360 update_basstate(cs->hw.bas, BS_RESETTING, 0);
361 req_submit(cs->bcs, HD_RESET_INTERRUPT_PIPE, 0, BAS_TIMEOUT);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800362}
363
364/* check_pending
365 * check for completion of pending control request
366 * parameter:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700367 * ucs hardware specific controller state structure
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800368 */
369static void check_pending(struct bas_cardstate *ucs)
370{
371 unsigned long flags;
372
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800373 spin_lock_irqsave(&ucs->lock, flags);
374 switch (ucs->pending) {
375 case 0:
376 break;
377 case HD_OPEN_ATCHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800378 if (ucs->basstate & BS_ATOPEN)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800379 ucs->pending = 0;
380 break;
381 case HD_OPEN_B1CHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800382 if (ucs->basstate & BS_B1OPEN)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800383 ucs->pending = 0;
384 break;
385 case HD_OPEN_B2CHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800386 if (ucs->basstate & BS_B2OPEN)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800387 ucs->pending = 0;
388 break;
389 case HD_CLOSE_ATCHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800390 if (!(ucs->basstate & BS_ATOPEN))
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800391 ucs->pending = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800392 break;
393 case HD_CLOSE_B1CHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800394 if (!(ucs->basstate & BS_B1OPEN))
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800395 ucs->pending = 0;
396 break;
397 case HD_CLOSE_B2CHANNEL:
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800398 if (!(ucs->basstate & BS_B2OPEN))
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800399 ucs->pending = 0;
400 break;
401 case HD_DEVICE_INIT_ACK: /* no reply expected */
402 ucs->pending = 0;
403 break;
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000404 case HD_RESET_INTERRUPT_PIPE:
405 if (!(ucs->basstate & BS_RESETTING))
406 ucs->pending = 0;
407 break;
408 /*
409 * HD_READ_ATMESSAGE and HD_WRITE_ATMESSAGE are handled separately
410 * and should never end up here
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800411 */
412 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700413 dev_warn(&ucs->interface->dev,
414 "unknown pending request 0x%02x cleared\n",
415 ucs->pending);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800416 ucs->pending = 0;
417 }
418
419 if (!ucs->pending)
420 del_timer(&ucs->timer_ctrl);
421
422 spin_unlock_irqrestore(&ucs->lock, flags);
423}
424
425/* cmd_in_timeout
426 * timeout routine for command input request
427 * argument:
428 * controller state structure
429 */
430static void cmd_in_timeout(unsigned long data)
431{
432 struct cardstate *cs = (struct cardstate *) data;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700433 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidt06163f82006-06-26 00:25:33 -0700434 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800435
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800436 if (!ucs->rcvbuf_size) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700437 gig_dbg(DEBUG_USBREQ, "%s: no receive in progress", __func__);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800438 return;
439 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800440
Tilman Schmidt06163f82006-06-26 00:25:33 -0700441 if (ucs->retry_cmd_in++ < BAS_RETRY) {
442 dev_notice(cs->dev, "control read: timeout, retry %d\n",
443 ucs->retry_cmd_in);
444 rc = atread_submit(cs, BAS_TIMEOUT);
445 if (rc >= 0 || rc == -ENODEV)
446 /* resubmitted or disconnected */
447 /* - bypass regular exit block */
448 return;
449 } else {
450 dev_err(cs->dev,
451 "control read: timeout, giving up after %d tries\n",
452 ucs->retry_cmd_in);
453 }
454 kfree(ucs->rcvbuf);
455 ucs->rcvbuf = NULL;
456 ucs->rcvbuf_size = 0;
457 error_reset(cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800458}
459
Tilman Schmidt06163f82006-06-26 00:25:33 -0700460/* read_ctrl_callback
461 * USB completion handler for control pipe input
462 * called by the USB subsystem in interrupt context
463 * parameter:
464 * urb USB request block
465 * urb->context = inbuf structure for controller state
466 */
David Howells7d12e782006-10-05 14:55:46 +0100467static void read_ctrl_callback(struct urb *urb)
Tilman Schmidt06163f82006-06-26 00:25:33 -0700468{
469 struct inbuf_t *inbuf = urb->context;
470 struct cardstate *cs = inbuf->cs;
471 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800472 int status = urb->status;
Tilman Schmidt06163f82006-06-26 00:25:33 -0700473 int have_data = 0;
474 unsigned numbytes;
475 int rc;
476
477 update_basstate(ucs, 0, BS_ATRDPEND);
Tilman Schmidt024fd292008-02-06 01:38:26 -0800478 wake_up(&ucs->waitqueue);
Tilman Schmidt06163f82006-06-26 00:25:33 -0700479
480 if (!ucs->rcvbuf_size) {
481 dev_warn(cs->dev, "%s: no receive in progress\n", __func__);
482 return;
483 }
484
485 del_timer(&ucs->timer_cmd_in);
486
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800487 switch (status) {
Tilman Schmidt06163f82006-06-26 00:25:33 -0700488 case 0: /* normal completion */
489 numbytes = urb->actual_length;
490 if (unlikely(numbytes != ucs->rcvbuf_size)) {
491 dev_warn(cs->dev,
492 "control read: received %d chars, expected %d\n",
493 numbytes, ucs->rcvbuf_size);
494 if (numbytes > ucs->rcvbuf_size)
495 numbytes = ucs->rcvbuf_size;
496 }
497
498 /* copy received bytes to inbuf */
499 have_data = gigaset_fill_inbuf(inbuf, ucs->rcvbuf, numbytes);
500
501 if (unlikely(numbytes < ucs->rcvbuf_size)) {
502 /* incomplete - resubmit for remaining bytes */
503 ucs->rcvbuf_size -= numbytes;
504 ucs->retry_cmd_in = 0;
505 rc = atread_submit(cs, BAS_TIMEOUT);
506 if (rc >= 0 || rc == -ENODEV)
507 /* resubmitted or disconnected */
508 /* - bypass regular exit block */
509 return;
510 error_reset(cs);
511 }
512 break;
513
514 case -ENOENT: /* cancelled */
515 case -ECONNRESET: /* cancelled (async) */
516 case -EINPROGRESS: /* pending */
517 case -ENODEV: /* device removed */
518 case -ESHUTDOWN: /* device shut down */
519 /* no action necessary */
520 gig_dbg(DEBUG_USBREQ, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800521 __func__, get_usb_statmsg(status));
Tilman Schmidt06163f82006-06-26 00:25:33 -0700522 break;
523
524 default: /* severe trouble */
525 dev_warn(cs->dev, "control read: %s\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800526 get_usb_statmsg(status));
Tilman Schmidt06163f82006-06-26 00:25:33 -0700527 if (ucs->retry_cmd_in++ < BAS_RETRY) {
528 dev_notice(cs->dev, "control read: retry %d\n",
529 ucs->retry_cmd_in);
530 rc = atread_submit(cs, BAS_TIMEOUT);
531 if (rc >= 0 || rc == -ENODEV)
532 /* resubmitted or disconnected */
533 /* - bypass regular exit block */
534 return;
535 } else {
536 dev_err(cs->dev,
537 "control read: giving up after %d tries\n",
538 ucs->retry_cmd_in);
539 }
540 error_reset(cs);
541 }
542
543 kfree(ucs->rcvbuf);
544 ucs->rcvbuf = NULL;
545 ucs->rcvbuf_size = 0;
546 if (have_data) {
547 gig_dbg(DEBUG_INTR, "%s-->BH", __func__);
548 gigaset_schedule_event(cs);
549 }
550}
551
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800552/* atread_submit
Tilman Schmidt73a88812006-04-22 02:35:30 -0700553 * submit an HD_READ_ATMESSAGE command URB and optionally start a timeout
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800554 * parameters:
555 * cs controller state structure
556 * timeout timeout in 1/10 sec., 0: none
557 * return value:
558 * 0 on success
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800559 * -EBUSY if another request is pending
560 * any URB submission error code
561 */
562static int atread_submit(struct cardstate *cs, int timeout)
563{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700564 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidt024fd292008-02-06 01:38:26 -0800565 int basstate;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800566 int ret;
567
Tilman Schmidt784d5852006-04-10 22:55:04 -0700568 gig_dbg(DEBUG_USBREQ, "-------> HD_READ_ATMESSAGE (%d)",
569 ucs->rcvbuf_size);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800570
Tilman Schmidt024fd292008-02-06 01:38:26 -0800571 basstate = update_basstate(ucs, BS_ATRDPEND, 0);
572 if (basstate & BS_ATRDPEND) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700573 dev_err(cs->dev,
574 "could not submit HD_READ_ATMESSAGE: URB busy\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800575 return -EBUSY;
576 }
577
Tilman Schmidt024fd292008-02-06 01:38:26 -0800578 if (basstate & BS_SUSPEND) {
579 dev_notice(cs->dev,
580 "HD_READ_ATMESSAGE not submitted, "
581 "suspend in progress\n");
582 update_basstate(ucs, 0, BS_ATRDPEND);
583 /* treat like disconnect */
584 return -ENODEV;
585 }
586
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800587 ucs->dr_cmd_in.bRequestType = IN_VENDOR_REQ;
588 ucs->dr_cmd_in.bRequest = HD_READ_ATMESSAGE;
589 ucs->dr_cmd_in.wValue = 0;
590 ucs->dr_cmd_in.wIndex = 0;
591 ucs->dr_cmd_in.wLength = cpu_to_le16(ucs->rcvbuf_size);
592 usb_fill_control_urb(ucs->urb_cmd_in, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700593 usb_rcvctrlpipe(ucs->udev, 0),
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000594 (unsigned char *) &ucs->dr_cmd_in,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700595 ucs->rcvbuf, ucs->rcvbuf_size,
596 read_ctrl_callback, cs->inbuf);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800597
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000598 ret = usb_submit_urb(ucs->urb_cmd_in, GFP_ATOMIC);
599 if (ret != 0) {
Tilman Schmidt73a88812006-04-22 02:35:30 -0700600 update_basstate(ucs, 0, BS_ATRDPEND);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700601 dev_err(cs->dev, "could not submit HD_READ_ATMESSAGE: %s\n",
Tilman Schmidt06163f82006-06-26 00:25:33 -0700602 get_usb_rcmsg(ret));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800603 return ret;
604 }
605
606 if (timeout > 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700607 gig_dbg(DEBUG_USBREQ, "setting timeout of %d/10 secs", timeout);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800608 ucs->timer_cmd_in.expires = jiffies + timeout * HZ / 10;
609 ucs->timer_cmd_in.data = (unsigned long) cs;
610 ucs->timer_cmd_in.function = cmd_in_timeout;
611 add_timer(&ucs->timer_cmd_in);
612 }
613 return 0;
614}
615
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800616/* read_int_callback
617 * USB completion handler for interrupt pipe input
618 * called by the USB subsystem in interrupt context
619 * parameter:
620 * urb USB request block
621 * urb->context = controller state structure
622 */
David Howells7d12e782006-10-05 14:55:46 +0100623static void read_int_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800624{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700625 struct cardstate *cs = urb->context;
626 struct bas_cardstate *ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800627 struct bc_state *bcs;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800628 int status = urb->status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800629 unsigned long flags;
Tilman Schmidt73a88812006-04-22 02:35:30 -0700630 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800631 unsigned l;
632 int channel;
633
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800634 switch (status) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800635 case 0: /* success */
636 break;
Tilman Schmidt73a88812006-04-22 02:35:30 -0700637 case -ENOENT: /* cancelled */
638 case -ECONNRESET: /* cancelled (async) */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800639 case -EINPROGRESS: /* pending */
640 /* ignore silently */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700641 gig_dbg(DEBUG_USBREQ, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800642 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800643 return;
Tilman Schmidt73a88812006-04-22 02:35:30 -0700644 case -ENODEV: /* device removed */
645 case -ESHUTDOWN: /* device shut down */
Tilman Schmidt73a88812006-04-22 02:35:30 -0700646 gig_dbg(DEBUG_USBREQ, "%s: device disconnected", __func__);
647 return;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800648 default: /* severe trouble */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700649 dev_warn(cs->dev, "interrupt read: %s\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800650 get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800651 goto resubmit;
652 }
653
Tilman Schmidt73a88812006-04-22 02:35:30 -0700654 /* drop incomplete packets even if the missing bytes wouldn't matter */
Tilman Schmidt170ebf82009-03-18 23:44:23 -0700655 if (unlikely(urb->actual_length < IP_MSGSIZE)) {
Tilman Schmidt73a88812006-04-22 02:35:30 -0700656 dev_warn(cs->dev, "incomplete interrupt packet (%d bytes)\n",
657 urb->actual_length);
658 goto resubmit;
659 }
660
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800661 l = (unsigned) ucs->int_in_buf[1] +
662 (((unsigned) ucs->int_in_buf[2]) << 8);
663
Tilman Schmidt784d5852006-04-10 22:55:04 -0700664 gig_dbg(DEBUG_USBREQ, "<-------%d: 0x%02x (%u [0x%02x 0x%02x])",
665 urb->actual_length, (int)ucs->int_in_buf[0], l,
666 (int)ucs->int_in_buf[1], (int)ucs->int_in_buf[2]);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800667
668 channel = 0;
669
670 switch (ucs->int_in_buf[0]) {
671 case HD_DEVICE_INIT_OK:
672 update_basstate(ucs, BS_INIT, 0);
673 break;
674
675 case HD_READY_SEND_ATDATA:
676 del_timer(&ucs->timer_atrdy);
677 update_basstate(ucs, BS_ATREADY, BS_ATTIMER);
678 start_cbsend(cs);
679 break;
680
681 case HD_OPEN_B2CHANNEL_ACK:
682 ++channel;
683 case HD_OPEN_B1CHANNEL_ACK:
684 bcs = cs->bcs + channel;
685 update_basstate(ucs, BS_B1OPEN << channel, 0);
686 gigaset_bchannel_up(bcs);
687 break;
688
689 case HD_OPEN_ATCHANNEL_ACK:
690 update_basstate(ucs, BS_ATOPEN, 0);
691 start_cbsend(cs);
692 break;
693
694 case HD_CLOSE_B2CHANNEL_ACK:
695 ++channel;
696 case HD_CLOSE_B1CHANNEL_ACK:
697 bcs = cs->bcs + channel;
698 update_basstate(ucs, 0, BS_B1OPEN << channel);
699 stopurbs(bcs->hw.bas);
700 gigaset_bchannel_down(bcs);
701 break;
702
703 case HD_CLOSE_ATCHANNEL_ACK:
704 update_basstate(ucs, 0, BS_ATOPEN);
705 break;
706
707 case HD_B2_FLOW_CONTROL:
708 ++channel;
709 case HD_B1_FLOW_CONTROL:
710 bcs = cs->bcs + channel;
711 atomic_add((l - BAS_NORMFRAME) * BAS_CORRFRAMES,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700712 &bcs->hw.bas->corrbytes);
713 gig_dbg(DEBUG_ISO,
714 "Flow control (channel %d, sub %d): 0x%02x => %d",
715 channel, bcs->hw.bas->numsub, l,
716 atomic_read(&bcs->hw.bas->corrbytes));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800717 break;
718
719 case HD_RECEIVEATDATA_ACK: /* AT response ready to be received */
720 if (!l) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700721 dev_warn(cs->dev,
722 "HD_RECEIVEATDATA_ACK with length 0 ignored\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800723 break;
724 }
725 spin_lock_irqsave(&cs->lock, flags);
726 if (ucs->rcvbuf_size) {
Tilman Schmidt73a88812006-04-22 02:35:30 -0700727 /* throw away previous buffer - we have no queue */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700728 dev_err(cs->dev,
Tilman Schmidt73a88812006-04-22 02:35:30 -0700729 "receive AT data overrun, %d bytes lost\n",
730 ucs->rcvbuf_size);
731 kfree(ucs->rcvbuf);
732 ucs->rcvbuf_size = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800733 }
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000734 ucs->rcvbuf = kmalloc(l, GFP_ATOMIC);
735 if (ucs->rcvbuf == NULL) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800736 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidt73a88812006-04-22 02:35:30 -0700737 dev_err(cs->dev, "out of memory receiving AT data\n");
738 error_reset(cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800739 break;
740 }
741 ucs->rcvbuf_size = l;
742 ucs->retry_cmd_in = 0;
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000743 rc = atread_submit(cs, BAS_TIMEOUT);
744 if (rc < 0) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800745 kfree(ucs->rcvbuf);
746 ucs->rcvbuf = NULL;
747 ucs->rcvbuf_size = 0;
Tilman Schmidt06163f82006-06-26 00:25:33 -0700748 if (rc != -ENODEV) {
Tilman Schmidt06163f82006-06-26 00:25:33 -0700749 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidt73a88812006-04-22 02:35:30 -0700750 error_reset(cs);
Tilman Schmidt06163f82006-06-26 00:25:33 -0700751 break;
752 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800753 }
754 spin_unlock_irqrestore(&cs->lock, flags);
755 break;
756
757 case HD_RESET_INTERRUPT_PIPE_ACK:
Tilman Schmidtb5f581d2009-10-06 12:18:51 +0000758 update_basstate(ucs, 0, BS_RESETTING);
759 dev_notice(cs->dev, "interrupt pipe reset\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800760 break;
761
762 case HD_SUSPEND_END:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700763 gig_dbg(DEBUG_USBREQ, "HD_SUSPEND_END");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800764 break;
765
766 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700767 dev_warn(cs->dev,
768 "unknown Gigaset signal 0x%02x (%u) ignored\n",
769 (int) ucs->int_in_buf[0], l);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800770 }
771
772 check_pending(ucs);
Tilman Schmidt024fd292008-02-06 01:38:26 -0800773 wake_up(&ucs->waitqueue);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800774
775resubmit:
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800776 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -0700777 if (unlikely(rc != 0 && rc != -ENODEV)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700778 dev_err(cs->dev, "could not resubmit interrupt URB: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -0700779 get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800780 error_reset(cs);
781 }
782}
783
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800784/* read_iso_callback
785 * USB completion handler for B channel isochronous input
786 * called by the USB subsystem in interrupt context
787 * parameter:
788 * urb USB request block of completed request
789 * urb->context = bc_state structure
790 */
David Howells7d12e782006-10-05 14:55:46 +0100791static void read_iso_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800792{
793 struct bc_state *bcs;
794 struct bas_bc_state *ubc;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800795 int status = urb->status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800796 unsigned long flags;
797 int i, rc;
798
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800799 /* status codes not worth bothering the tasklet with */
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800800 if (unlikely(status == -ENOENT ||
801 status == -ECONNRESET ||
802 status == -EINPROGRESS ||
803 status == -ENODEV ||
804 status == -ESHUTDOWN)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700805 gig_dbg(DEBUG_ISO, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800806 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800807 return;
808 }
809
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700810 bcs = urb->context;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800811 ubc = bcs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800812
813 spin_lock_irqsave(&ubc->isoinlock, flags);
814 if (likely(ubc->isoindone == NULL)) {
815 /* pass URB to tasklet */
816 ubc->isoindone = urb;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800817 ubc->isoinstatus = status;
Tilman Schmidt368fd812009-04-05 06:39:33 +0000818 tasklet_hi_schedule(&ubc->rcvd_tasklet);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800819 } else {
820 /* tasklet still busy, drop data and resubmit URB */
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800821 ubc->loststatus = status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800822 for (i = 0; i < BAS_NUMFRAMES; i++) {
823 ubc->isoinlost += urb->iso_frame_desc[i].actual_length;
824 if (unlikely(urb->iso_frame_desc[i].status != 0 &&
Tilman Schmidt73a88812006-04-22 02:35:30 -0700825 urb->iso_frame_desc[i].status !=
826 -EINPROGRESS))
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800827 ubc->loststatus = urb->iso_frame_desc[i].status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800828 urb->iso_frame_desc[i].status = 0;
829 urb->iso_frame_desc[i].actual_length = 0;
830 }
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800831 if (likely(ubc->running)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700832 /* urb->dev is clobbered by USB subsystem */
833 urb->dev = bcs->cs->hw.bas->udev;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800834 urb->transfer_flags = URB_ISO_ASAP;
835 urb->number_of_packets = BAS_NUMFRAMES;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700836 gig_dbg(DEBUG_ISO, "%s: isoc read overrun/resubmit",
837 __func__);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800838 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -0700839 if (unlikely(rc != 0 && rc != -ENODEV)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700840 dev_err(bcs->cs->dev,
841 "could not resubmit isochronous read "
Tilman Schmidt73a88812006-04-22 02:35:30 -0700842 "URB: %s\n", get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800843 dump_urb(DEBUG_ISO, "isoc read", urb);
844 error_hangup(bcs);
845 }
846 }
847 }
848 spin_unlock_irqrestore(&ubc->isoinlock, flags);
849}
850
851/* write_iso_callback
852 * USB completion handler for B channel isochronous output
853 * called by the USB subsystem in interrupt context
854 * parameter:
855 * urb USB request block of completed request
856 * urb->context = isow_urbctx_t structure
857 */
David Howells7d12e782006-10-05 14:55:46 +0100858static void write_iso_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800859{
860 struct isow_urbctx_t *ucx;
861 struct bas_bc_state *ubc;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800862 int status = urb->status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800863 unsigned long flags;
864
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800865 /* status codes not worth bothering the tasklet with */
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800866 if (unlikely(status == -ENOENT ||
867 status == -ECONNRESET ||
868 status == -EINPROGRESS ||
869 status == -ENODEV ||
870 status == -ESHUTDOWN)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700871 gig_dbg(DEBUG_ISO, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800872 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800873 return;
874 }
875
876 /* pass URB context to tasklet */
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700877 ucx = urb->context;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800878 ubc = ucx->bcs->hw.bas;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800879 ucx->status = status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800880
881 spin_lock_irqsave(&ubc->isooutlock, flags);
882 ubc->isooutovfl = ubc->isooutdone;
883 ubc->isooutdone = ucx;
884 spin_unlock_irqrestore(&ubc->isooutlock, flags);
Tilman Schmidt368fd812009-04-05 06:39:33 +0000885 tasklet_hi_schedule(&ubc->sent_tasklet);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800886}
887
888/* starturbs
889 * prepare and submit USB request blocks for isochronous input and output
890 * argument:
891 * B channel control structure
892 * return value:
893 * 0 on success
894 * < 0 on error (no URBs submitted)
895 */
896static int starturbs(struct bc_state *bcs)
897{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700898 struct bas_bc_state *ubc = bcs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800899 struct urb *urb;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800900 int j, k;
901 int rc;
902
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800903 /* initialize L2 reception */
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000904 if (bcs->proto2 == L2_HDLC)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800905 bcs->inputstate |= INS_flag_hunt;
906
907 /* submit all isochronous input URBs */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800908 ubc->running = 1;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800909 for (k = 0; k < BAS_INURBS; k++) {
910 urb = ubc->isoinurbs[k];
911 if (!urb) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800912 rc = -EFAULT;
913 goto error;
914 }
915
916 urb->dev = bcs->cs->hw.bas->udev;
917 urb->pipe = usb_rcvisocpipe(urb->dev, 3 + 2 * bcs->channel);
918 urb->transfer_flags = URB_ISO_ASAP;
919 urb->transfer_buffer = ubc->isoinbuf + k * BAS_INBUFSIZE;
920 urb->transfer_buffer_length = BAS_INBUFSIZE;
921 urb->number_of_packets = BAS_NUMFRAMES;
922 urb->interval = BAS_FRAMETIME;
923 urb->complete = read_iso_callback;
924 urb->context = bcs;
925 for (j = 0; j < BAS_NUMFRAMES; j++) {
926 urb->iso_frame_desc[j].offset = j * BAS_MAXFRAME;
927 urb->iso_frame_desc[j].length = BAS_MAXFRAME;
928 urb->iso_frame_desc[j].status = 0;
929 urb->iso_frame_desc[j].actual_length = 0;
930 }
931
932 dump_urb(DEBUG_ISO, "Initial isoc read", urb);
Tilman Schmidt7891adf2009-10-25 09:30:37 +0000933 rc = usb_submit_urb(urb, GFP_ATOMIC);
934 if (rc != 0)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800935 goto error;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800936 }
937
938 /* initialize L2 transmission */
939 gigaset_isowbuf_init(ubc->isooutbuf, PPP_FLAG);
940
941 /* set up isochronous output URBs for flag idling */
942 for (k = 0; k < BAS_OUTURBS; ++k) {
943 urb = ubc->isoouturbs[k].urb;
944 if (!urb) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800945 rc = -EFAULT;
946 goto error;
947 }
948 urb->dev = bcs->cs->hw.bas->udev;
949 urb->pipe = usb_sndisocpipe(urb->dev, 4 + 2 * bcs->channel);
950 urb->transfer_flags = URB_ISO_ASAP;
951 urb->transfer_buffer = ubc->isooutbuf->data;
952 urb->transfer_buffer_length = sizeof(ubc->isooutbuf->data);
953 urb->number_of_packets = BAS_NUMFRAMES;
954 urb->interval = BAS_FRAMETIME;
955 urb->complete = write_iso_callback;
956 urb->context = &ubc->isoouturbs[k];
957 for (j = 0; j < BAS_NUMFRAMES; ++j) {
958 urb->iso_frame_desc[j].offset = BAS_OUTBUFSIZE;
959 urb->iso_frame_desc[j].length = BAS_NORMFRAME;
960 urb->iso_frame_desc[j].status = 0;
961 urb->iso_frame_desc[j].actual_length = 0;
962 }
963 ubc->isoouturbs[k].limit = -1;
964 }
965
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800966 /* keep one URB free, submit the others */
967 for (k = 0; k < BAS_OUTURBS-1; ++k) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800968 dump_urb(DEBUG_ISO, "Initial isoc write", urb);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800969 rc = usb_submit_urb(ubc->isoouturbs[k].urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -0700970 if (rc != 0)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800971 goto error;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800972 }
973 dump_urb(DEBUG_ISO, "Initial isoc write (free)", urb);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800974 ubc->isooutfree = &ubc->isoouturbs[BAS_OUTURBS-1];
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800975 ubc->isooutdone = ubc->isooutovfl = NULL;
976 return 0;
977 error:
978 stopurbs(ubc);
979 return rc;
980}
981
982/* stopurbs
983 * cancel the USB request blocks for isochronous input and output
984 * errors are silently ignored
985 * argument:
986 * B channel control structure
987 */
988static void stopurbs(struct bas_bc_state *ubc)
989{
990 int k, rc;
991
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800992 ubc->running = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800993
994 for (k = 0; k < BAS_INURBS; ++k) {
995 rc = usb_unlink_urb(ubc->isoinurbs[k]);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700996 gig_dbg(DEBUG_ISO,
Tilman Schmidt73a88812006-04-22 02:35:30 -0700997 "%s: isoc input URB %d unlinked, result = %s",
998 __func__, k, get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -0800999 }
1000
1001 for (k = 0; k < BAS_OUTURBS; ++k) {
1002 rc = usb_unlink_urb(ubc->isoouturbs[k].urb);
Tilman Schmidt784d5852006-04-10 22:55:04 -07001003 gig_dbg(DEBUG_ISO,
Tilman Schmidt73a88812006-04-22 02:35:30 -07001004 "%s: isoc output URB %d unlinked, result = %s",
1005 __func__, k, get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001006 }
1007}
1008
1009/* Isochronous Write - Bottom Half */
1010/* =============================== */
1011
1012/* submit_iso_write_urb
1013 * fill and submit the next isochronous write URB
1014 * parameters:
Tilman Schmidt73a88812006-04-22 02:35:30 -07001015 * ucx context structure containing URB
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001016 * return value:
1017 * number of frames submitted in URB
1018 * 0 if URB not submitted because no data available (isooutbuf busy)
1019 * error code < 0 on error
1020 */
1021static int submit_iso_write_urb(struct isow_urbctx_t *ucx)
1022{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001023 struct urb *urb = ucx->urb;
1024 struct bas_bc_state *ubc = ucx->bcs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001025 struct usb_iso_packet_descriptor *ifd;
1026 int corrbytes, nframe, rc;
1027
Tilman Schmidt784d5852006-04-10 22:55:04 -07001028 /* urb->dev is clobbered by USB subsystem */
1029 urb->dev = ucx->bcs->cs->hw.bas->udev;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001030 urb->transfer_flags = URB_ISO_ASAP;
1031 urb->transfer_buffer = ubc->isooutbuf->data;
1032 urb->transfer_buffer_length = sizeof(ubc->isooutbuf->data);
1033
1034 for (nframe = 0; nframe < BAS_NUMFRAMES; nframe++) {
1035 ifd = &urb->iso_frame_desc[nframe];
1036
1037 /* compute frame length according to flow control */
1038 ifd->length = BAS_NORMFRAME;
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001039 corrbytes = atomic_read(&ubc->corrbytes);
1040 if (corrbytes != 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001041 gig_dbg(DEBUG_ISO, "%s: corrbytes=%d",
1042 __func__, corrbytes);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001043 if (corrbytes > BAS_HIGHFRAME - BAS_NORMFRAME)
1044 corrbytes = BAS_HIGHFRAME - BAS_NORMFRAME;
1045 else if (corrbytes < BAS_LOWFRAME - BAS_NORMFRAME)
1046 corrbytes = BAS_LOWFRAME - BAS_NORMFRAME;
1047 ifd->length += corrbytes;
1048 atomic_add(-corrbytes, &ubc->corrbytes);
1049 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001050
1051 /* retrieve block of data to send */
Tilman Schmidt5f09c4c2008-07-23 21:28:27 -07001052 rc = gigaset_isowbuf_getbytes(ubc->isooutbuf, ifd->length);
1053 if (rc < 0) {
1054 if (rc == -EBUSY) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001055 gig_dbg(DEBUG_ISO,
1056 "%s: buffer busy at frame %d",
1057 __func__, nframe);
1058 /* tasklet will be restarted from
Tilman Schmidt088ec0c2009-10-06 12:19:07 +00001059 gigaset_isoc_send_skb() */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001060 } else {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001061 dev_err(ucx->bcs->cs->dev,
1062 "%s: buffer error %d at frame %d\n",
Tilman Schmidt5f09c4c2008-07-23 21:28:27 -07001063 __func__, rc, nframe);
1064 return rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001065 }
1066 break;
1067 }
Tilman Schmidt5f09c4c2008-07-23 21:28:27 -07001068 ifd->offset = rc;
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001069 ucx->limit = ubc->isooutbuf->nextread;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001070 ifd->status = 0;
1071 ifd->actual_length = 0;
1072 }
Tilman Schmidt73a88812006-04-22 02:35:30 -07001073 if (unlikely(nframe == 0))
1074 return 0; /* no data to send */
1075 urb->number_of_packets = nframe;
Tilman Schmidt69049cc2006-04-10 22:55:16 -07001076
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001077 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001078 if (unlikely(rc)) {
1079 if (rc == -ENODEV)
1080 /* device removed - give up silently */
1081 gig_dbg(DEBUG_ISO, "%s: disconnected", __func__);
1082 else
Tilman Schmidt784d5852006-04-10 22:55:04 -07001083 dev_err(ucx->bcs->cs->dev,
1084 "could not submit isochronous write URB: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001085 get_usb_rcmsg(rc));
1086 return rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001087 }
Tilman Schmidt73a88812006-04-22 02:35:30 -07001088 ++ubc->numsub;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001089 return nframe;
1090}
1091
1092/* write_iso_tasklet
1093 * tasklet scheduled when an isochronous output URB from the Gigaset device
1094 * has completed
1095 * parameter:
1096 * data B channel state structure
1097 */
1098static void write_iso_tasklet(unsigned long data)
1099{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001100 struct bc_state *bcs = (struct bc_state *) data;
1101 struct bas_bc_state *ubc = bcs->hw.bas;
1102 struct cardstate *cs = bcs->cs;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001103 struct isow_urbctx_t *done, *next, *ovfl;
1104 struct urb *urb;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001105 int status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001106 struct usb_iso_packet_descriptor *ifd;
1107 int offset;
1108 unsigned long flags;
1109 int i;
1110 struct sk_buff *skb;
1111 int len;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001112 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001113
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001114 /* loop while completed URBs arrive in time */
1115 for (;;) {
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001116 if (unlikely(!(ubc->running))) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001117 gig_dbg(DEBUG_ISO, "%s: not running", __func__);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001118 return;
1119 }
1120
1121 /* retrieve completed URBs */
1122 spin_lock_irqsave(&ubc->isooutlock, flags);
1123 done = ubc->isooutdone;
1124 ubc->isooutdone = NULL;
1125 ovfl = ubc->isooutovfl;
1126 ubc->isooutovfl = NULL;
1127 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1128 if (ovfl) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001129 dev_err(cs->dev, "isochronous write buffer underrun\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001130 error_hangup(bcs);
1131 break;
1132 }
1133 if (!done)
1134 break;
1135
1136 /* submit free URB if available */
1137 spin_lock_irqsave(&ubc->isooutlock, flags);
1138 next = ubc->isooutfree;
1139 ubc->isooutfree = NULL;
1140 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1141 if (next) {
Tilman Schmidt73a88812006-04-22 02:35:30 -07001142 rc = submit_iso_write_urb(next);
1143 if (unlikely(rc <= 0 && rc != -ENODEV)) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001144 /* could not submit URB, put it back */
1145 spin_lock_irqsave(&ubc->isooutlock, flags);
1146 if (ubc->isooutfree == NULL) {
1147 ubc->isooutfree = next;
1148 next = NULL;
1149 }
1150 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1151 if (next) {
1152 /* couldn't put it back */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001153 dev_err(cs->dev,
1154 "losing isochronous write URB\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001155 error_hangup(bcs);
1156 }
1157 }
1158 }
1159
1160 /* process completed URB */
1161 urb = done->urb;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001162 status = done->status;
1163 switch (status) {
Tilman Schmidt73a88812006-04-22 02:35:30 -07001164 case -EXDEV: /* partial completion */
1165 gig_dbg(DEBUG_ISO, "%s: URB partially completed",
1166 __func__);
1167 /* fall through - what's the difference anyway? */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001168 case 0: /* normal completion */
Tilman Schmidt73a88812006-04-22 02:35:30 -07001169 /* inspect individual frames
1170 * assumptions (for lack of documentation):
1171 * - actual_length bytes of first frame in error are
Tilman Schmidt917f5082006-04-10 22:55:00 -07001172 * successfully sent
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001173 * - all following frames are not sent at all
1174 */
Tilman Schmidt73a88812006-04-22 02:35:30 -07001175 offset = done->limit; /* default (no error) */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001176 for (i = 0; i < BAS_NUMFRAMES; i++) {
1177 ifd = &urb->iso_frame_desc[i];
1178 if (ifd->status ||
1179 ifd->actual_length != ifd->length) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001180 dev_warn(cs->dev,
1181 "isochronous write: frame %d: %s, "
1182 "only %d of %d bytes sent\n",
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001183 i, get_usb_statmsg(ifd->status),
1184 ifd->actual_length, ifd->length);
1185 offset = (ifd->offset +
Tilman Schmidt784d5852006-04-10 22:55:04 -07001186 ifd->actual_length)
1187 % BAS_OUTBUFSIZE;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001188 break;
1189 }
1190 }
1191#ifdef CONFIG_GIGASET_DEBUG
1192 /* check assumption on remaining frames */
1193 for (; i < BAS_NUMFRAMES; i++) {
1194 ifd = &urb->iso_frame_desc[i];
1195 if (ifd->status != -EINPROGRESS
1196 || ifd->actual_length != 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001197 dev_warn(cs->dev,
1198 "isochronous write: frame %d: %s, "
1199 "%d of %d bytes sent\n",
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001200 i, get_usb_statmsg(ifd->status),
1201 ifd->actual_length, ifd->length);
1202 offset = (ifd->offset +
Tilman Schmidt784d5852006-04-10 22:55:04 -07001203 ifd->actual_length)
1204 % BAS_OUTBUFSIZE;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001205 break;
1206 }
1207 }
1208#endif
1209 break;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001210 case -EPIPE: /* stall - probably underrun */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001211 dev_err(cs->dev, "isochronous write stalled\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001212 error_hangup(bcs);
1213 break;
1214 default: /* severe trouble */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001215 dev_warn(cs->dev, "isochronous write: %s\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001216 get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001217 }
1218
1219 /* mark the write buffer area covered by this URB as free */
1220 if (done->limit >= 0)
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001221 ubc->isooutbuf->read = done->limit;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001222
1223 /* mark URB as free */
1224 spin_lock_irqsave(&ubc->isooutlock, flags);
1225 next = ubc->isooutfree;
1226 ubc->isooutfree = done;
1227 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1228 if (next) {
1229 /* only one URB still active - resubmit one */
Tilman Schmidt73a88812006-04-22 02:35:30 -07001230 rc = submit_iso_write_urb(next);
1231 if (unlikely(rc <= 0 && rc != -ENODEV)) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001232 /* couldn't submit */
1233 error_hangup(bcs);
1234 }
1235 }
1236 }
1237
1238 /* process queued SKBs */
1239 while ((skb = skb_dequeue(&bcs->squeue))) {
1240 /* copy to output buffer, doing L2 encapsulation */
1241 len = skb->len;
1242 if (gigaset_isoc_buildframe(bcs, skb->data, len) == -EAGAIN) {
1243 /* insufficient buffer space, push back onto queue */
1244 skb_queue_head(&bcs->squeue, skb);
Tilman Schmidt784d5852006-04-10 22:55:04 -07001245 gig_dbg(DEBUG_ISO, "%s: skb requeued, qlen=%d",
1246 __func__, skb_queue_len(&bcs->squeue));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001247 break;
1248 }
1249 skb_pull(skb, len);
1250 gigaset_skb_sent(bcs, skb);
1251 dev_kfree_skb_any(skb);
1252 }
1253}
1254
1255/* Isochronous Read - Bottom Half */
1256/* ============================== */
1257
1258/* read_iso_tasklet
1259 * tasklet scheduled when an isochronous input URB from the Gigaset device
1260 * has completed
1261 * parameter:
1262 * data B channel state structure
1263 */
1264static void read_iso_tasklet(unsigned long data)
1265{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001266 struct bc_state *bcs = (struct bc_state *) data;
1267 struct bas_bc_state *ubc = bcs->hw.bas;
1268 struct cardstate *cs = bcs->cs;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001269 struct urb *urb;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001270 int status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001271 char *rcvbuf;
1272 unsigned long flags;
1273 int totleft, numbytes, offset, frame, rc;
1274
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001275 /* loop while more completed URBs arrive in the meantime */
1276 for (;;) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001277 /* retrieve URB */
1278 spin_lock_irqsave(&ubc->isoinlock, flags);
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001279 urb = ubc->isoindone;
1280 if (!urb) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001281 spin_unlock_irqrestore(&ubc->isoinlock, flags);
1282 return;
1283 }
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001284 status = ubc->isoinstatus;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001285 ubc->isoindone = NULL;
1286 if (unlikely(ubc->loststatus != -EINPROGRESS)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001287 dev_warn(cs->dev,
1288 "isochronous read overrun, "
1289 "dropped URB with status: %s, %d bytes lost\n",
1290 get_usb_statmsg(ubc->loststatus),
1291 ubc->isoinlost);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001292 ubc->loststatus = -EINPROGRESS;
1293 }
1294 spin_unlock_irqrestore(&ubc->isoinlock, flags);
1295
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001296 if (unlikely(!(ubc->running))) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001297 gig_dbg(DEBUG_ISO,
1298 "%s: channel not running, "
1299 "dropped URB with status: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001300 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001301 return;
1302 }
1303
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001304 switch (status) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001305 case 0: /* normal completion */
1306 break;
Tilman Schmidt917f5082006-04-10 22:55:00 -07001307 case -EXDEV: /* inspect individual frames
1308 (we do that anyway) */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001309 gig_dbg(DEBUG_ISO, "%s: URB partially completed",
1310 __func__);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001311 break;
1312 case -ENOENT:
1313 case -ECONNRESET:
Tilman Schmidt73a88812006-04-22 02:35:30 -07001314 case -EINPROGRESS:
1315 gig_dbg(DEBUG_ISO, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001316 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001317 continue; /* -> skip */
1318 case -EPIPE:
Tilman Schmidt784d5852006-04-10 22:55:04 -07001319 dev_err(cs->dev, "isochronous read stalled\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001320 error_hangup(bcs);
1321 continue; /* -> skip */
1322 default: /* severe trouble */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001323 dev_warn(cs->dev, "isochronous read: %s\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001324 get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001325 goto error;
1326 }
1327
1328 rcvbuf = urb->transfer_buffer;
1329 totleft = urb->actual_length;
1330 for (frame = 0; totleft > 0 && frame < BAS_NUMFRAMES; frame++) {
Tilman Schmidteb4459f2009-10-06 12:18:36 +00001331 numbytes = urb->iso_frame_desc[frame].actual_length;
1332 if (unlikely(urb->iso_frame_desc[frame].status))
Tilman Schmidt784d5852006-04-10 22:55:04 -07001333 dev_warn(cs->dev,
Tilman Schmidteb4459f2009-10-06 12:18:36 +00001334 "isochronous read: frame %d[%d]: %s\n",
1335 frame, numbytes,
Tilman Schmidt784d5852006-04-10 22:55:04 -07001336 get_usb_statmsg(
1337 urb->iso_frame_desc[frame].status));
Tilman Schmidteb4459f2009-10-06 12:18:36 +00001338 if (unlikely(numbytes > BAS_MAXFRAME))
Tilman Schmidt784d5852006-04-10 22:55:04 -07001339 dev_warn(cs->dev,
1340 "isochronous read: frame %d: "
1341 "numbytes (%d) > BAS_MAXFRAME\n",
1342 frame, numbytes);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001343 if (unlikely(numbytes > totleft)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001344 dev_warn(cs->dev,
1345 "isochronous read: frame %d: "
1346 "numbytes (%d) > totleft (%d)\n",
1347 frame, numbytes, totleft);
Tilman Schmidteb4459f2009-10-06 12:18:36 +00001348 numbytes = totleft;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001349 }
1350 offset = urb->iso_frame_desc[frame].offset;
1351 if (unlikely(offset + numbytes > BAS_INBUFSIZE)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001352 dev_warn(cs->dev,
1353 "isochronous read: frame %d: "
1354 "offset (%d) + numbytes (%d) "
1355 "> BAS_INBUFSIZE\n",
1356 frame, offset, numbytes);
Tilman Schmidteb4459f2009-10-06 12:18:36 +00001357 numbytes = BAS_INBUFSIZE - offset;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001358 }
1359 gigaset_isoc_receive(rcvbuf + offset, numbytes, bcs);
1360 totleft -= numbytes;
1361 }
1362 if (unlikely(totleft > 0))
Tilman Schmidt784d5852006-04-10 22:55:04 -07001363 dev_warn(cs->dev,
1364 "isochronous read: %d data bytes missing\n",
1365 totleft);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001366
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001367error:
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001368 /* URB processed, resubmit */
1369 for (frame = 0; frame < BAS_NUMFRAMES; frame++) {
1370 urb->iso_frame_desc[frame].status = 0;
1371 urb->iso_frame_desc[frame].actual_length = 0;
1372 }
Tilman Schmidt784d5852006-04-10 22:55:04 -07001373 /* urb->dev is clobbered by USB subsystem */
1374 urb->dev = bcs->cs->hw.bas->udev;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001375 urb->transfer_flags = URB_ISO_ASAP;
1376 urb->number_of_packets = BAS_NUMFRAMES;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001377 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001378 if (unlikely(rc != 0 && rc != -ENODEV)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001379 dev_err(cs->dev,
1380 "could not resubmit isochronous read URB: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001381 get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001382 dump_urb(DEBUG_ISO, "resubmit iso read", urb);
1383 error_hangup(bcs);
1384 }
1385 }
1386}
1387
1388/* Channel Operations */
1389/* ================== */
1390
1391/* req_timeout
1392 * timeout routine for control output request
1393 * argument:
1394 * B channel control structure
1395 */
1396static void req_timeout(unsigned long data)
1397{
1398 struct bc_state *bcs = (struct bc_state *) data;
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001399 struct bas_cardstate *ucs = bcs->cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001400 int pending;
1401 unsigned long flags;
1402
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001403 check_pending(ucs);
1404
1405 spin_lock_irqsave(&ucs->lock, flags);
1406 pending = ucs->pending;
1407 ucs->pending = 0;
1408 spin_unlock_irqrestore(&ucs->lock, flags);
1409
1410 switch (pending) {
1411 case 0: /* no pending request */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001412 gig_dbg(DEBUG_USBREQ, "%s: no request pending", __func__);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001413 break;
1414
1415 case HD_OPEN_ATCHANNEL:
Tilman Schmidt784d5852006-04-10 22:55:04 -07001416 dev_err(bcs->cs->dev, "timeout opening AT channel\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001417 error_reset(bcs->cs);
1418 break;
1419
1420 case HD_OPEN_B2CHANNEL:
1421 case HD_OPEN_B1CHANNEL:
Tilman Schmidt784d5852006-04-10 22:55:04 -07001422 dev_err(bcs->cs->dev, "timeout opening channel %d\n",
1423 bcs->channel + 1);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001424 error_hangup(bcs);
1425 break;
1426
1427 case HD_CLOSE_ATCHANNEL:
Tilman Schmidt784d5852006-04-10 22:55:04 -07001428 dev_err(bcs->cs->dev, "timeout closing AT channel\n");
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001429 error_reset(bcs->cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001430 break;
1431
1432 case HD_CLOSE_B2CHANNEL:
1433 case HD_CLOSE_B1CHANNEL:
Tilman Schmidt784d5852006-04-10 22:55:04 -07001434 dev_err(bcs->cs->dev, "timeout closing channel %d\n",
1435 bcs->channel + 1);
Tilman Schmidt06163f82006-06-26 00:25:33 -07001436 error_reset(bcs->cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001437 break;
1438
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001439 case HD_RESET_INTERRUPT_PIPE:
1440 /* error recovery escalation */
1441 dev_err(bcs->cs->dev,
1442 "reset interrupt pipe timeout, attempting USB reset\n");
1443 usb_queue_reset_device(bcs->cs->hw.bas->interface);
1444 break;
1445
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001446 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -07001447 dev_warn(bcs->cs->dev, "request 0x%02x timed out, clearing\n",
1448 pending);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001449 }
Tilman Schmidt024fd292008-02-06 01:38:26 -08001450
1451 wake_up(&ucs->waitqueue);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001452}
1453
1454/* write_ctrl_callback
1455 * USB completion handler for control pipe output
1456 * called by the USB subsystem in interrupt context
1457 * parameter:
1458 * urb USB request block of completed request
1459 * urb->context = hardware specific controller state structure
1460 */
David Howells7d12e782006-10-05 14:55:46 +01001461static void write_ctrl_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001462{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001463 struct bas_cardstate *ucs = urb->context;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001464 int status = urb->status;
Tilman Schmidt06163f82006-06-26 00:25:33 -07001465 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001466 unsigned long flags;
1467
Tilman Schmidt06163f82006-06-26 00:25:33 -07001468 /* check status */
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001469 switch (status) {
Tilman Schmidt06163f82006-06-26 00:25:33 -07001470 case 0: /* normal completion */
1471 spin_lock_irqsave(&ucs->lock, flags);
1472 switch (ucs->pending) {
1473 case HD_DEVICE_INIT_ACK: /* no reply expected */
1474 del_timer(&ucs->timer_ctrl);
1475 ucs->pending = 0;
1476 break;
1477 }
1478 spin_unlock_irqrestore(&ucs->lock, flags);
1479 return;
1480
1481 case -ENOENT: /* cancelled */
1482 case -ECONNRESET: /* cancelled (async) */
1483 case -EINPROGRESS: /* pending */
1484 case -ENODEV: /* device removed */
1485 case -ESHUTDOWN: /* device shut down */
1486 /* ignore silently */
1487 gig_dbg(DEBUG_USBREQ, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001488 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001489 break;
Tilman Schmidt06163f82006-06-26 00:25:33 -07001490
1491 default: /* any failure */
Tilman Schmidt024fd292008-02-06 01:38:26 -08001492 /* don't retry if suspend requested */
1493 if (++ucs->retry_ctrl > BAS_RETRY ||
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001494 (ucs->basstate & BS_SUSPEND)) {
Tilman Schmidt06163f82006-06-26 00:25:33 -07001495 dev_err(&ucs->interface->dev,
1496 "control request 0x%02x failed: %s\n",
1497 ucs->dr_ctrl.bRequest,
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001498 get_usb_statmsg(status));
Tilman Schmidt06163f82006-06-26 00:25:33 -07001499 break; /* give up */
1500 }
1501 dev_notice(&ucs->interface->dev,
1502 "control request 0x%02x: %s, retry %d\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001503 ucs->dr_ctrl.bRequest, get_usb_statmsg(status),
Tilman Schmidt06163f82006-06-26 00:25:33 -07001504 ucs->retry_ctrl);
1505 /* urb->dev is clobbered by USB subsystem */
1506 urb->dev = ucs->udev;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001507 rc = usb_submit_urb(urb, GFP_ATOMIC);
Tilman Schmidt06163f82006-06-26 00:25:33 -07001508 if (unlikely(rc)) {
1509 dev_err(&ucs->interface->dev,
1510 "could not resubmit request 0x%02x: %s\n",
1511 ucs->dr_ctrl.bRequest, get_usb_rcmsg(rc));
1512 break;
1513 }
1514 /* resubmitted */
1515 return;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001516 }
Tilman Schmidt06163f82006-06-26 00:25:33 -07001517
1518 /* failed, clear pending request */
1519 spin_lock_irqsave(&ucs->lock, flags);
1520 del_timer(&ucs->timer_ctrl);
1521 ucs->pending = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001522 spin_unlock_irqrestore(&ucs->lock, flags);
Tilman Schmidt024fd292008-02-06 01:38:26 -08001523 wake_up(&ucs->waitqueue);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001524}
1525
1526/* req_submit
1527 * submit a control output request without message buffer to the Gigaset base
1528 * and optionally start a timeout
1529 * parameters:
1530 * bcs B channel control structure
1531 * req control request code (HD_*)
1532 * val control request parameter value (set to 0 if unused)
1533 * timeout timeout in seconds (0: no timeout)
1534 * return value:
1535 * 0 on success
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001536 * -EBUSY if another request is pending
1537 * any URB submission error code
1538 */
1539static int req_submit(struct bc_state *bcs, int req, int val, int timeout)
1540{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001541 struct bas_cardstate *ucs = bcs->cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001542 int ret;
1543 unsigned long flags;
1544
Tilman Schmidt784d5852006-04-10 22:55:04 -07001545 gig_dbg(DEBUG_USBREQ, "-------> 0x%02x (%d)", req, val);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001546
1547 spin_lock_irqsave(&ucs->lock, flags);
1548 if (ucs->pending) {
1549 spin_unlock_irqrestore(&ucs->lock, flags);
Tilman Schmidt784d5852006-04-10 22:55:04 -07001550 dev_err(bcs->cs->dev,
1551 "submission of request 0x%02x failed: "
1552 "request 0x%02x still pending\n",
1553 req, ucs->pending);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001554 return -EBUSY;
1555 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001556
1557 ucs->dr_ctrl.bRequestType = OUT_VENDOR_REQ;
1558 ucs->dr_ctrl.bRequest = req;
1559 ucs->dr_ctrl.wValue = cpu_to_le16(val);
1560 ucs->dr_ctrl.wIndex = 0;
1561 ucs->dr_ctrl.wLength = 0;
1562 usb_fill_control_urb(ucs->urb_ctrl, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -07001563 usb_sndctrlpipe(ucs->udev, 0),
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001564 (unsigned char *) &ucs->dr_ctrl, NULL, 0,
Tilman Schmidt784d5852006-04-10 22:55:04 -07001565 write_ctrl_callback, ucs);
Tilman Schmidt06163f82006-06-26 00:25:33 -07001566 ucs->retry_ctrl = 0;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001567 ret = usb_submit_urb(ucs->urb_ctrl, GFP_ATOMIC);
Tilman Schmidt06163f82006-06-26 00:25:33 -07001568 if (unlikely(ret)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001569 dev_err(bcs->cs->dev, "could not submit request 0x%02x: %s\n",
Tilman Schmidt06163f82006-06-26 00:25:33 -07001570 req, get_usb_rcmsg(ret));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001571 spin_unlock_irqrestore(&ucs->lock, flags);
1572 return ret;
1573 }
1574 ucs->pending = req;
1575
1576 if (timeout > 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001577 gig_dbg(DEBUG_USBREQ, "setting timeout of %d/10 secs", timeout);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001578 ucs->timer_ctrl.expires = jiffies + timeout * HZ / 10;
1579 ucs->timer_ctrl.data = (unsigned long) bcs;
1580 ucs->timer_ctrl.function = req_timeout;
1581 add_timer(&ucs->timer_ctrl);
1582 }
1583
1584 spin_unlock_irqrestore(&ucs->lock, flags);
1585 return 0;
1586}
1587
1588/* gigaset_init_bchannel
1589 * called by common.c to connect a B channel
1590 * initialize isochronous I/O and tell the Gigaset base to open the channel
1591 * argument:
1592 * B channel control structure
1593 * return value:
1594 * 0 on success, error code < 0 on error
1595 */
1596static int gigaset_init_bchannel(struct bc_state *bcs)
1597{
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001598 struct cardstate *cs = bcs->cs;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001599 int req, ret;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001600 unsigned long flags;
1601
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001602 spin_lock_irqsave(&cs->lock, flags);
1603 if (unlikely(!cs->connected)) {
Tilman Schmidt73a88812006-04-22 02:35:30 -07001604 gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001605 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001606 return -ENODEV;
1607 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001608
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001609 if (cs->hw.bas->basstate & BS_SUSPEND) {
Tilman Schmidt024fd292008-02-06 01:38:26 -08001610 dev_notice(cs->dev,
1611 "not starting isochronous I/O, "
1612 "suspend in progress\n");
1613 spin_unlock_irqrestore(&cs->lock, flags);
1614 return -EHOSTUNREACH;
1615 }
1616
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001617 ret = starturbs(bcs);
1618 if (ret < 0) {
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001619 dev_err(cs->dev,
Tilman Schmidt73a88812006-04-22 02:35:30 -07001620 "could not start isochronous I/O for channel B%d: %s\n",
1621 bcs->channel + 1,
1622 ret == -EFAULT ? "null URB" : get_usb_rcmsg(ret));
1623 if (ret != -ENODEV)
1624 error_hangup(bcs);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001625 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001626 return ret;
1627 }
1628
1629 req = bcs->channel ? HD_OPEN_B2CHANNEL : HD_OPEN_B1CHANNEL;
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001630 ret = req_submit(bcs, req, 0, BAS_TIMEOUT);
1631 if (ret < 0) {
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001632 dev_err(cs->dev, "could not open channel B%d\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001633 bcs->channel + 1);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001634 stopurbs(bcs->hw.bas);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001635 if (ret != -ENODEV)
1636 error_hangup(bcs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001637 }
Tilman Schmidt73a88812006-04-22 02:35:30 -07001638
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001639 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001640 return ret;
1641}
1642
1643/* gigaset_close_bchannel
1644 * called by common.c to disconnect a B channel
1645 * tell the Gigaset base to close the channel
1646 * stopping isochronous I/O and LL notification will be done when the
1647 * acknowledgement for the close arrives
1648 * argument:
1649 * B channel control structure
1650 * return value:
1651 * 0 on success, error code < 0 on error
1652 */
1653static int gigaset_close_bchannel(struct bc_state *bcs)
1654{
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001655 struct cardstate *cs = bcs->cs;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001656 int req, ret;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001657 unsigned long flags;
1658
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001659 spin_lock_irqsave(&cs->lock, flags);
1660 if (unlikely(!cs->connected)) {
1661 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001662 gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__);
1663 return -ENODEV;
1664 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001665
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001666 if (!(cs->hw.bas->basstate & (bcs->channel ? BS_B2OPEN : BS_B1OPEN))) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001667 /* channel not running: just signal common.c */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001668 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001669 gigaset_bchannel_down(bcs);
1670 return 0;
1671 }
1672
Tilman Schmidt73a88812006-04-22 02:35:30 -07001673 /* channel running: tell device to close it */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001674 req = bcs->channel ? HD_CLOSE_B2CHANNEL : HD_CLOSE_B1CHANNEL;
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001675 ret = req_submit(bcs, req, 0, BAS_TIMEOUT);
1676 if (ret < 0)
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001677 dev_err(cs->dev, "closing channel B%d failed\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001678 bcs->channel + 1);
1679
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08001680 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001681 return ret;
1682}
1683
1684/* Device Operations */
1685/* ================= */
1686
1687/* complete_cb
1688 * unqueue first command buffer from queue, waking any sleepers
1689 * must be called with cs->cmdlock held
1690 * parameter:
1691 * cs controller state structure
1692 */
1693static void complete_cb(struct cardstate *cs)
1694{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001695 struct cmdbuf_t *cb = cs->cmdbuf;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001696
1697 /* unqueue completed buffer */
1698 cs->cmdbytes -= cs->curlen;
Tilman Schmidt1528b182010-02-22 13:09:52 +00001699 gig_dbg(DEBUG_OUTPUT, "write_command: sent %u bytes, %u left",
Tilman Schmidt784d5852006-04-10 22:55:04 -07001700 cs->curlen, cs->cmdbytes);
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001701 if (cb->next != NULL) {
1702 cs->cmdbuf = cb->next;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001703 cs->cmdbuf->prev = NULL;
1704 cs->curlen = cs->cmdbuf->len;
1705 } else {
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001706 cs->cmdbuf = NULL;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001707 cs->lastcmdbuf = NULL;
1708 cs->curlen = 0;
1709 }
1710
1711 if (cb->wake_tasklet)
1712 tasklet_schedule(cb->wake_tasklet);
1713
1714 kfree(cb);
1715}
1716
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001717/* write_command_callback
1718 * USB completion handler for AT command transmission
1719 * called by the USB subsystem in interrupt context
1720 * parameter:
1721 * urb USB request block of completed request
1722 * urb->context = controller state structure
1723 */
David Howells7d12e782006-10-05 14:55:46 +01001724static void write_command_callback(struct urb *urb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001725{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001726 struct cardstate *cs = urb->context;
1727 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001728 int status = urb->status;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001729 unsigned long flags;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001730
Tilman Schmidt73a88812006-04-22 02:35:30 -07001731 update_basstate(ucs, 0, BS_ATWRPEND);
Tilman Schmidt024fd292008-02-06 01:38:26 -08001732 wake_up(&ucs->waitqueue);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001733
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001734 /* check status */
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001735 switch (status) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001736 case 0: /* normal completion */
1737 break;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001738 case -ENOENT: /* cancelled */
1739 case -ECONNRESET: /* cancelled (async) */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001740 case -EINPROGRESS: /* pending */
Tilman Schmidt73a88812006-04-22 02:35:30 -07001741 case -ENODEV: /* device removed */
1742 case -ESHUTDOWN: /* device shut down */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001743 /* ignore silently */
Tilman Schmidt784d5852006-04-10 22:55:04 -07001744 gig_dbg(DEBUG_USBREQ, "%s: %s",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001745 __func__, get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001746 return;
1747 default: /* any failure */
1748 if (++ucs->retry_cmd_out > BAS_RETRY) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001749 dev_warn(cs->dev,
1750 "command write: %s, "
1751 "giving up after %d retries\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001752 get_usb_statmsg(status),
Tilman Schmidt784d5852006-04-10 22:55:04 -07001753 ucs->retry_cmd_out);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001754 break;
1755 }
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001756 if (ucs->basstate & BS_SUSPEND) {
Tilman Schmidt024fd292008-02-06 01:38:26 -08001757 dev_warn(cs->dev,
1758 "command write: %s, "
1759 "won't retry - suspend requested\n",
1760 get_usb_statmsg(status));
1761 break;
1762 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001763 if (cs->cmdbuf == NULL) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001764 dev_warn(cs->dev,
1765 "command write: %s, "
1766 "cannot retry - cmdbuf gone\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001767 get_usb_statmsg(status));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001768 break;
1769 }
Tilman Schmidt784d5852006-04-10 22:55:04 -07001770 dev_notice(cs->dev, "command write: %s, retry %d\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -08001771 get_usb_statmsg(status), ucs->retry_cmd_out);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001772 if (atwrite_submit(cs, cs->cmdbuf->buf, cs->cmdbuf->len) >= 0)
1773 /* resubmitted - bypass regular exit block */
1774 return;
1775 /* command send failed, assume base still waiting */
1776 update_basstate(ucs, BS_ATREADY, 0);
1777 }
1778
1779 spin_lock_irqsave(&cs->cmdlock, flags);
1780 if (cs->cmdbuf != NULL)
1781 complete_cb(cs);
1782 spin_unlock_irqrestore(&cs->cmdlock, flags);
1783}
1784
1785/* atrdy_timeout
1786 * timeout routine for AT command transmission
1787 * argument:
1788 * controller state structure
1789 */
1790static void atrdy_timeout(unsigned long data)
1791{
1792 struct cardstate *cs = (struct cardstate *) data;
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001793 struct bas_cardstate *ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001794
Tilman Schmidt784d5852006-04-10 22:55:04 -07001795 dev_warn(cs->dev, "timeout waiting for HD_READY_SEND_ATDATA\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001796
1797 /* fake the missing signal - what else can I do? */
1798 update_basstate(ucs, BS_ATREADY, BS_ATTIMER);
1799 start_cbsend(cs);
1800}
1801
1802/* atwrite_submit
1803 * submit an HD_WRITE_ATMESSAGE command URB
1804 * parameters:
1805 * cs controller state structure
1806 * buf buffer containing command to send
1807 * len length of command to send
1808 * return value:
1809 * 0 on success
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001810 * -EBUSY if another request is pending
1811 * any URB submission error code
1812 */
1813static int atwrite_submit(struct cardstate *cs, unsigned char *buf, int len)
1814{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001815 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidt73a88812006-04-22 02:35:30 -07001816 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001817
Tilman Schmidt784d5852006-04-10 22:55:04 -07001818 gig_dbg(DEBUG_USBREQ, "-------> HD_WRITE_ATMESSAGE (%d)", len);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001819
Tilman Schmidt73a88812006-04-22 02:35:30 -07001820 if (update_basstate(ucs, BS_ATWRPEND, 0) & BS_ATWRPEND) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001821 dev_err(cs->dev,
1822 "could not submit HD_WRITE_ATMESSAGE: URB busy\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001823 return -EBUSY;
1824 }
1825
1826 ucs->dr_cmd_out.bRequestType = OUT_VENDOR_REQ;
1827 ucs->dr_cmd_out.bRequest = HD_WRITE_ATMESSAGE;
1828 ucs->dr_cmd_out.wValue = 0;
1829 ucs->dr_cmd_out.wIndex = 0;
1830 ucs->dr_cmd_out.wLength = cpu_to_le16(len);
1831 usb_fill_control_urb(ucs->urb_cmd_out, ucs->udev,
1832 usb_sndctrlpipe(ucs->udev, 0),
Tilman Schmidt7891adf2009-10-25 09:30:37 +00001833 (unsigned char *) &ucs->dr_cmd_out, buf, len,
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001834 write_command_callback, cs);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001835 rc = usb_submit_urb(ucs->urb_cmd_out, GFP_ATOMIC);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001836 if (unlikely(rc)) {
1837 update_basstate(ucs, 0, BS_ATWRPEND);
Tilman Schmidt784d5852006-04-10 22:55:04 -07001838 dev_err(cs->dev, "could not submit HD_WRITE_ATMESSAGE: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07001839 get_usb_rcmsg(rc));
1840 return rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001841 }
1842
Tilman Schmidt73a88812006-04-22 02:35:30 -07001843 /* submitted successfully, start timeout if necessary */
1844 if (!(update_basstate(ucs, BS_ATTIMER, BS_ATREADY) & BS_ATTIMER)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07001845 gig_dbg(DEBUG_OUTPUT, "setting ATREADY timeout of %d/10 secs",
1846 ATRDY_TIMEOUT);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001847 ucs->timer_atrdy.expires = jiffies + ATRDY_TIMEOUT * HZ / 10;
1848 ucs->timer_atrdy.data = (unsigned long) cs;
1849 ucs->timer_atrdy.function = atrdy_timeout;
1850 add_timer(&ucs->timer_atrdy);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001851 }
1852 return 0;
1853}
1854
1855/* start_cbsend
1856 * start transmission of AT command queue if necessary
1857 * parameter:
1858 * cs controller state structure
1859 * return value:
1860 * 0 on success
1861 * error code < 0 on error
1862 */
1863static int start_cbsend(struct cardstate *cs)
1864{
1865 struct cmdbuf_t *cb;
Tilman Schmidtd48c7782006-04-10 22:55:08 -07001866 struct bas_cardstate *ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001867 unsigned long flags;
1868 int rc;
1869 int retval = 0;
1870
Tilman Schmidt024fd292008-02-06 01:38:26 -08001871 /* check if suspend requested */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001872 if (ucs->basstate & BS_SUSPEND) {
Tilman Schmidt1528b182010-02-22 13:09:52 +00001873 gig_dbg(DEBUG_OUTPUT, "suspending");
Tilman Schmidt024fd292008-02-06 01:38:26 -08001874 return -EHOSTUNREACH;
1875 }
1876
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001877 /* check if AT channel is open */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001878 if (!(ucs->basstate & BS_ATOPEN)) {
Tilman Schmidt1528b182010-02-22 13:09:52 +00001879 gig_dbg(DEBUG_OUTPUT, "AT channel not open");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001880 rc = req_submit(cs->bcs, HD_OPEN_ATCHANNEL, 0, BAS_TIMEOUT);
1881 if (rc < 0) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001882 /* flush command queue */
1883 spin_lock_irqsave(&cs->cmdlock, flags);
1884 while (cs->cmdbuf != NULL)
1885 complete_cb(cs);
1886 spin_unlock_irqrestore(&cs->cmdlock, flags);
1887 }
1888 return rc;
1889 }
1890
1891 /* try to send first command in queue */
1892 spin_lock_irqsave(&cs->cmdlock, flags);
1893
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001894 while ((cb = cs->cmdbuf) != NULL && (ucs->basstate & BS_ATREADY)) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001895 ucs->retry_cmd_out = 0;
1896 rc = atwrite_submit(cs, cb->buf, cb->len);
1897 if (unlikely(rc)) {
1898 retval = rc;
1899 complete_cb(cs);
1900 }
1901 }
1902
1903 spin_unlock_irqrestore(&cs->cmdlock, flags);
1904 return retval;
1905}
1906
1907/* gigaset_write_cmd
1908 * This function is called by the device independent part of the driver
1909 * to transmit an AT command string to the Gigaset device.
1910 * It encapsulates the device specific method for transmission over the
1911 * direct USB connection to the base.
1912 * The command string is added to the queue of commands to send, and
1913 * USB transmission is started if necessary.
1914 * parameters:
1915 * cs controller state structure
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001916 * cb command buffer structure
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001917 * return value:
1918 * number of bytes queued on success
1919 * error code < 0 on error
1920 */
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001921static int gigaset_write_cmd(struct cardstate *cs, struct cmdbuf_t *cb)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001922{
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001923 unsigned long flags;
Tilman Schmidt39f07222006-12-13 00:33:52 -08001924 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001925
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08001926 gigaset_dbg_buffer(cs->mstate != MS_LOCKED ?
Tilman Schmidt784d5852006-04-10 22:55:04 -07001927 DEBUG_TRANSCMD : DEBUG_LOCKCMD,
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001928 "CMD Transmit", cb->len, cb->buf);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001929
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001930 /* translate "+++" escape sequence sent as a single separate command
1931 * into "close AT channel" command for error recovery
1932 * The next command will reopen the AT channel automatically.
1933 */
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001934 if (cb->len == 3 && !memcmp(cb->buf, "+++", 3)) {
1935 kfree(cb);
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001936 rc = req_submit(cs->bcs, HD_CLOSE_ATCHANNEL, 0, BAS_TIMEOUT);
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001937 if (cb->wake_tasklet)
1938 tasklet_schedule(cb->wake_tasklet);
1939 return rc < 0 ? rc : cb->len;
Tilman Schmidtb5f581d2009-10-06 12:18:51 +00001940 }
1941
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001942 spin_lock_irqsave(&cs->cmdlock, flags);
1943 cb->prev = cs->lastcmdbuf;
1944 if (cs->lastcmdbuf)
1945 cs->lastcmdbuf->next = cb;
1946 else {
1947 cs->cmdbuf = cb;
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001948 cs->curlen = cb->len;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001949 }
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001950 cs->cmdbytes += cb->len;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001951 cs->lastcmdbuf = cb;
1952 spin_unlock_irqrestore(&cs->cmdlock, flags);
1953
Tilman Schmidt73a88812006-04-22 02:35:30 -07001954 spin_lock_irqsave(&cs->lock, flags);
1955 if (unlikely(!cs->connected)) {
1956 spin_unlock_irqrestore(&cs->lock, flags);
1957 gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__);
Tilman Schmidt39f07222006-12-13 00:33:52 -08001958 /* flush command queue */
1959 spin_lock_irqsave(&cs->cmdlock, flags);
1960 while (cs->cmdbuf != NULL)
1961 complete_cb(cs);
1962 spin_unlock_irqrestore(&cs->cmdlock, flags);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001963 return -ENODEV;
1964 }
Tilman Schmidt39f07222006-12-13 00:33:52 -08001965 rc = start_cbsend(cs);
Tilman Schmidt73a88812006-04-22 02:35:30 -07001966 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidte3628dd2010-07-05 14:18:43 +00001967 return rc < 0 ? rc : cb->len;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001968}
1969
1970/* gigaset_write_room
1971 * tty_driver.write_room interface routine
Tilman Schmidt917f5082006-04-10 22:55:00 -07001972 * return number of characters the driver will accept to be written via
1973 * gigaset_write_cmd
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001974 * parameter:
1975 * controller state structure
1976 * return value:
1977 * number of characters
1978 */
1979static int gigaset_write_room(struct cardstate *cs)
1980{
1981 return IF_WRITEBUF;
1982}
1983
1984/* gigaset_chars_in_buffer
1985 * tty_driver.chars_in_buffer interface routine
1986 * return number of characters waiting to be sent
1987 * parameter:
1988 * controller state structure
1989 * return value:
1990 * number of characters
1991 */
1992static int gigaset_chars_in_buffer(struct cardstate *cs)
1993{
Tilman Schmidt4d1ff582007-10-16 01:27:50 -07001994 return cs->cmdbytes;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08001995}
1996
1997/* gigaset_brkchars
1998 * implementation of ioctl(GIGASET_BRKCHARS)
1999 * parameter:
2000 * controller state structure
2001 * return value:
2002 * -EINVAL (unimplemented function)
2003 */
2004static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6])
2005{
2006 return -EINVAL;
2007}
2008
2009
2010/* Device Initialization/Shutdown */
2011/* ============================== */
2012
2013/* Free hardware dependent part of the B channel structure
2014 * parameter:
2015 * bcs B channel structure
2016 * return value:
2017 * !=0 on success
2018 */
2019static int gigaset_freebcshw(struct bc_state *bcs)
2020{
Tilman Schmidt73a88812006-04-22 02:35:30 -07002021 struct bas_bc_state *ubc = bcs->hw.bas;
2022 int i;
2023
2024 if (!ubc)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002025 return 0;
2026
Tilman Schmidt73a88812006-04-22 02:35:30 -07002027 /* kill URBs and tasklets before freeing - better safe than sorry */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002028 ubc->running = 0;
Tilman Schmidt39f07222006-12-13 00:33:52 -08002029 gig_dbg(DEBUG_INIT, "%s: killing iso URBs", __func__);
2030 for (i = 0; i < BAS_OUTURBS; ++i) {
2031 usb_kill_urb(ubc->isoouturbs[i].urb);
2032 usb_free_urb(ubc->isoouturbs[i].urb);
2033 }
2034 for (i = 0; i < BAS_INURBS; ++i) {
2035 usb_kill_urb(ubc->isoinurbs[i]);
2036 usb_free_urb(ubc->isoinurbs[i]);
2037 }
Tilman Schmidt73a88812006-04-22 02:35:30 -07002038 tasklet_kill(&ubc->sent_tasklet);
2039 tasklet_kill(&ubc->rcvd_tasklet);
2040 kfree(ubc->isooutbuf);
2041 kfree(ubc);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002042 bcs->hw.bas = NULL;
2043 return 1;
2044}
2045
2046/* Initialize hardware dependent part of the B channel structure
2047 * parameter:
2048 * bcs B channel structure
2049 * return value:
2050 * !=0 on success
2051 */
2052static int gigaset_initbcshw(struct bc_state *bcs)
2053{
2054 int i;
2055 struct bas_bc_state *ubc;
2056
2057 bcs->hw.bas = ubc = kmalloc(sizeof(struct bas_bc_state), GFP_KERNEL);
2058 if (!ubc) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002059 pr_err("out of memory\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002060 return 0;
2061 }
2062
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002063 ubc->running = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002064 atomic_set(&ubc->corrbytes, 0);
2065 spin_lock_init(&ubc->isooutlock);
2066 for (i = 0; i < BAS_OUTURBS; ++i) {
2067 ubc->isoouturbs[i].urb = NULL;
2068 ubc->isoouturbs[i].bcs = bcs;
2069 }
2070 ubc->isooutdone = ubc->isooutfree = ubc->isooutovfl = NULL;
2071 ubc->numsub = 0;
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002072 ubc->isooutbuf = kmalloc(sizeof(struct isowbuf_t), GFP_KERNEL);
2073 if (!ubc->isooutbuf) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002074 pr_err("out of memory\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002075 kfree(ubc);
2076 bcs->hw.bas = NULL;
2077 return 0;
2078 }
2079 tasklet_init(&ubc->sent_tasklet,
Joe Perches5452fee2009-11-19 09:55:53 +00002080 write_iso_tasklet, (unsigned long) bcs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002081
2082 spin_lock_init(&ubc->isoinlock);
2083 for (i = 0; i < BAS_INURBS; ++i)
2084 ubc->isoinurbs[i] = NULL;
2085 ubc->isoindone = NULL;
2086 ubc->loststatus = -EINPROGRESS;
2087 ubc->isoinlost = 0;
2088 ubc->seqlen = 0;
2089 ubc->inbyte = 0;
2090 ubc->inbits = 0;
2091 ubc->goodbytes = 0;
2092 ubc->alignerrs = 0;
2093 ubc->fcserrs = 0;
2094 ubc->frameerrs = 0;
2095 ubc->giants = 0;
2096 ubc->runts = 0;
2097 ubc->aborts = 0;
2098 ubc->shared0s = 0;
2099 ubc->stolen0s = 0;
2100 tasklet_init(&ubc->rcvd_tasklet,
Joe Perches5452fee2009-11-19 09:55:53 +00002101 read_iso_tasklet, (unsigned long) bcs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002102 return 1;
2103}
2104
2105static void gigaset_reinitbcshw(struct bc_state *bcs)
2106{
2107 struct bas_bc_state *ubc = bcs->hw.bas;
2108
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002109 bcs->hw.bas->running = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002110 atomic_set(&bcs->hw.bas->corrbytes, 0);
2111 bcs->hw.bas->numsub = 0;
2112 spin_lock_init(&ubc->isooutlock);
2113 spin_lock_init(&ubc->isoinlock);
2114 ubc->loststatus = -EINPROGRESS;
2115}
2116
2117static void gigaset_freecshw(struct cardstate *cs)
2118{
Tilman Schmidt73a88812006-04-22 02:35:30 -07002119 /* timers, URBs and rcvbuf are disposed of in disconnect */
Tilman Schmidt170ebf82009-03-18 23:44:23 -07002120 kfree(cs->hw.bas->int_in_buf);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002121 kfree(cs->hw.bas);
Tilman Schmidt73a88812006-04-22 02:35:30 -07002122 cs->hw.bas = NULL;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002123}
2124
2125static int gigaset_initcshw(struct cardstate *cs)
2126{
2127 struct bas_cardstate *ucs;
2128
2129 cs->hw.bas = ucs = kmalloc(sizeof *ucs, GFP_KERNEL);
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002130 if (!ucs) {
2131 pr_err("out of memory\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002132 return 0;
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002133 }
Tilman Schmidt170ebf82009-03-18 23:44:23 -07002134 ucs->int_in_buf = kmalloc(IP_MSGSIZE, GFP_KERNEL);
2135 if (!ucs->int_in_buf) {
2136 kfree(ucs);
2137 pr_err("out of memory\n");
2138 return 0;
2139 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002140
2141 ucs->urb_cmd_in = NULL;
2142 ucs->urb_cmd_out = NULL;
2143 ucs->rcvbuf = NULL;
2144 ucs->rcvbuf_size = 0;
2145
2146 spin_lock_init(&ucs->lock);
2147 ucs->pending = 0;
2148
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002149 ucs->basstate = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002150 init_timer(&ucs->timer_ctrl);
2151 init_timer(&ucs->timer_atrdy);
2152 init_timer(&ucs->timer_cmd_in);
Tilman Schmidt024fd292008-02-06 01:38:26 -08002153 init_waitqueue_head(&ucs->waitqueue);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002154
2155 return 1;
2156}
2157
2158/* freeurbs
2159 * unlink and deallocate all URBs unconditionally
2160 * caller must make sure that no commands are still in progress
2161 * parameter:
2162 * cs controller state structure
2163 */
2164static void freeurbs(struct cardstate *cs)
2165{
Tilman Schmidtd48c7782006-04-10 22:55:08 -07002166 struct bas_cardstate *ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002167 struct bas_bc_state *ubc;
2168 int i, j;
2169
Tilman Schmidt39f07222006-12-13 00:33:52 -08002170 gig_dbg(DEBUG_INIT, "%s: killing URBs", __func__);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08002171 for (j = 0; j < BAS_CHANNELS; ++j) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002172 ubc = cs->bcs[j].hw.bas;
Tilman Schmidt39f07222006-12-13 00:33:52 -08002173 for (i = 0; i < BAS_OUTURBS; ++i) {
2174 usb_kill_urb(ubc->isoouturbs[i].urb);
2175 usb_free_urb(ubc->isoouturbs[i].urb);
2176 ubc->isoouturbs[i].urb = NULL;
2177 }
2178 for (i = 0; i < BAS_INURBS; ++i) {
2179 usb_kill_urb(ubc->isoinurbs[i]);
2180 usb_free_urb(ubc->isoinurbs[i]);
2181 ubc->isoinurbs[i] = NULL;
2182 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002183 }
Tilman Schmidt39f07222006-12-13 00:33:52 -08002184 usb_kill_urb(ucs->urb_int_in);
2185 usb_free_urb(ucs->urb_int_in);
2186 ucs->urb_int_in = NULL;
2187 usb_kill_urb(ucs->urb_cmd_out);
2188 usb_free_urb(ucs->urb_cmd_out);
2189 ucs->urb_cmd_out = NULL;
2190 usb_kill_urb(ucs->urb_cmd_in);
2191 usb_free_urb(ucs->urb_cmd_in);
2192 ucs->urb_cmd_in = NULL;
2193 usb_kill_urb(ucs->urb_ctrl);
2194 usb_free_urb(ucs->urb_ctrl);
2195 ucs->urb_ctrl = NULL;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002196}
2197
2198/* gigaset_probe
2199 * This function is called when a new USB device is connected.
2200 * It checks whether the new device is handled by this driver.
2201 */
2202static int gigaset_probe(struct usb_interface *interface,
2203 const struct usb_device_id *id)
2204{
2205 struct usb_host_interface *hostif;
2206 struct usb_device *udev = interface_to_usbdev(interface);
2207 struct cardstate *cs = NULL;
2208 struct bas_cardstate *ucs = NULL;
2209 struct bas_bc_state *ubc;
2210 struct usb_endpoint_descriptor *endpoint;
2211 int i, j;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002212 int rc;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002213
Tilman Schmidt1528b182010-02-22 13:09:52 +00002214 gig_dbg(DEBUG_INIT,
Tilman Schmidt784d5852006-04-10 22:55:04 -07002215 "%s: Check if device matches .. (Vendor: 0x%x, Product: 0x%x)",
2216 __func__, le16_to_cpu(udev->descriptor.idVendor),
2217 le16_to_cpu(udev->descriptor.idProduct));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002218
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002219 /* set required alternate setting */
2220 hostif = interface->cur_altsetting;
2221 if (hostif->desc.bAlternateSetting != 3) {
Tilman Schmidt1528b182010-02-22 13:09:52 +00002222 gig_dbg(DEBUG_INIT,
Tilman Schmidt784d5852006-04-10 22:55:04 -07002223 "%s: wrong alternate setting %d - trying to switch",
2224 __func__, hostif->desc.bAlternateSetting);
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002225 if (usb_set_interface(udev, hostif->desc.bInterfaceNumber, 3)
2226 < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07002227 dev_warn(&udev->dev, "usb_set_interface failed, "
2228 "device %d interface %d altsetting %d\n",
2229 udev->devnum, hostif->desc.bInterfaceNumber,
2230 hostif->desc.bAlternateSetting);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002231 return -ENODEV;
2232 }
2233 hostif = interface->cur_altsetting;
2234 }
2235
2236 /* Reject application specific interfaces
2237 */
2238 if (hostif->desc.bInterfaceClass != 255) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07002239 dev_warn(&udev->dev, "%s: bInterfaceClass == %d\n",
2240 __func__, hostif->desc.bInterfaceClass);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002241 return -ENODEV;
2242 }
2243
Tilman Schmidt784d5852006-04-10 22:55:04 -07002244 dev_info(&udev->dev,
2245 "%s: Device matched (Vendor: 0x%x, Product: 0x%x)\n",
2246 __func__, le16_to_cpu(udev->descriptor.idVendor),
2247 le16_to_cpu(udev->descriptor.idProduct));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002248
Tilman Schmidte468c042008-02-06 01:38:29 -08002249 /* allocate memory for our device state and intialize it */
2250 cs = gigaset_initcs(driver, BAS_CHANNELS, 0, 0, cidmode,
2251 GIGASET_MODULENAME);
2252 if (!cs)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002253 return -ENODEV;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002254 ucs = cs->hw.bas;
Tilman Schmidt784d5852006-04-10 22:55:04 -07002255
2256 /* save off device structure ptrs for later use */
2257 usb_get_dev(udev);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002258 ucs->udev = udev;
2259 ucs->interface = interface;
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002260 cs->dev = &interface->dev;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002261
2262 /* allocate URBs:
2263 * - one for the interrupt pipe
2264 * - three for the different uses of the default control pipe
2265 * - three for each isochronous pipe
2266 */
Christoph Lametere94b1762006-12-06 20:33:17 -08002267 if (!(ucs->urb_int_in = usb_alloc_urb(0, GFP_KERNEL)) ||
2268 !(ucs->urb_cmd_in = usb_alloc_urb(0, GFP_KERNEL)) ||
2269 !(ucs->urb_cmd_out = usb_alloc_urb(0, GFP_KERNEL)) ||
2270 !(ucs->urb_ctrl = usb_alloc_urb(0, GFP_KERNEL)))
Tilman Schmidt73a88812006-04-22 02:35:30 -07002271 goto allocerr;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002272
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08002273 for (j = 0; j < BAS_CHANNELS; ++j) {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002274 ubc = cs->bcs[j].hw.bas;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002275 for (i = 0; i < BAS_OUTURBS; ++i)
2276 if (!(ubc->isoouturbs[i].urb =
Christoph Lametere94b1762006-12-06 20:33:17 -08002277 usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL)))
Tilman Schmidt73a88812006-04-22 02:35:30 -07002278 goto allocerr;
2279 for (i = 0; i < BAS_INURBS; ++i)
2280 if (!(ubc->isoinurbs[i] =
Christoph Lametere94b1762006-12-06 20:33:17 -08002281 usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL)))
Tilman Schmidt73a88812006-04-22 02:35:30 -07002282 goto allocerr;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002283 }
2284
2285 ucs->rcvbuf = NULL;
2286 ucs->rcvbuf_size = 0;
2287
2288 /* Fill the interrupt urb and send it to the core */
2289 endpoint = &hostif->endpoint[0].desc;
2290 usb_fill_int_urb(ucs->urb_int_in, udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -07002291 usb_rcvintpipe(udev,
2292 (endpoint->bEndpointAddress) & 0x0f),
Tilman Schmidt170ebf82009-03-18 23:44:23 -07002293 ucs->int_in_buf, IP_MSGSIZE, read_int_callback, cs,
Tilman Schmidt784d5852006-04-10 22:55:04 -07002294 endpoint->bInterval);
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002295 rc = usb_submit_urb(ucs->urb_int_in, GFP_KERNEL);
2296 if (rc != 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -07002297 dev_err(cs->dev, "could not submit interrupt URB: %s\n",
Tilman Schmidt73a88812006-04-22 02:35:30 -07002298 get_usb_rcmsg(rc));
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002299 goto error;
2300 }
2301
2302 /* tell the device that the driver is ready */
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002303 rc = req_submit(cs->bcs, HD_DEVICE_INIT_ACK, 0, 0);
2304 if (rc != 0)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002305 goto error;
2306
2307 /* tell common part that the device is ready */
2308 if (startmode == SM_LOCKED)
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002309 cs->mstate = MS_LOCKED;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002310
2311 /* save address of controller structure */
2312 usb_set_intfdata(interface, cs);
2313
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002314 if (!gigaset_start(cs))
2315 goto error;
2316
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002317 return 0;
2318
Tilman Schmidt73a88812006-04-22 02:35:30 -07002319allocerr:
2320 dev_err(cs->dev, "could not allocate URBs\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002321error:
2322 freeurbs(cs);
Tilman Schmidt69049cc2006-04-10 22:55:16 -07002323 usb_set_intfdata(interface, NULL);
Tilman Schmidte468c042008-02-06 01:38:29 -08002324 gigaset_freecs(cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002325 return -ENODEV;
2326}
2327
2328/* gigaset_disconnect
2329 * This function is called when the Gigaset base is unplugged.
2330 */
2331static void gigaset_disconnect(struct usb_interface *interface)
2332{
2333 struct cardstate *cs;
2334 struct bas_cardstate *ucs;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002335 int j;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002336
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002337 cs = usb_get_intfdata(interface);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002338
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002339 ucs = cs->hw.bas;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002340
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002341 dev_info(cs->dev, "disconnecting Gigaset base\n");
Tilman Schmidt73a88812006-04-22 02:35:30 -07002342
2343 /* mark base as not ready, all channels disconnected */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002344 ucs->basstate = 0;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002345
2346 /* tell LL all channels are down */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -08002347 for (j = 0; j < BAS_CHANNELS; ++j)
Tilman Schmidt73a88812006-04-22 02:35:30 -07002348 gigaset_bchannel_down(cs->bcs + j);
2349
2350 /* stop driver (common part) */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002351 gigaset_stop(cs);
Tilman Schmidt73a88812006-04-22 02:35:30 -07002352
2353 /* stop timers and URBs, free ressources */
2354 del_timer_sync(&ucs->timer_ctrl);
2355 del_timer_sync(&ucs->timer_atrdy);
2356 del_timer_sync(&ucs->timer_cmd_in);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002357 freeurbs(cs);
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002358 usb_set_intfdata(interface, NULL);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002359 kfree(ucs->rcvbuf);
2360 ucs->rcvbuf = NULL;
2361 ucs->rcvbuf_size = 0;
Tilman Schmidtb1d47462006-04-10 22:55:07 -07002362 usb_put_dev(ucs->udev);
2363 ucs->interface = NULL;
2364 ucs->udev = NULL;
2365 cs->dev = NULL;
Tilman Schmidte468c042008-02-06 01:38:29 -08002366 gigaset_freecs(cs);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002367}
2368
Tilman Schmidt024fd292008-02-06 01:38:26 -08002369/* gigaset_suspend
2370 * This function is called before the USB connection is suspended.
2371 */
2372static int gigaset_suspend(struct usb_interface *intf, pm_message_t message)
2373{
2374 struct cardstate *cs = usb_get_intfdata(intf);
2375 struct bas_cardstate *ucs = cs->hw.bas;
Tilman Schmidt024fd292008-02-06 01:38:26 -08002376 int rc;
2377
2378 /* set suspend flag; this stops AT command/response traffic */
2379 if (update_basstate(ucs, BS_SUSPEND, 0) & BS_SUSPEND) {
2380 gig_dbg(DEBUG_SUSPEND, "already suspended");
2381 return 0;
2382 }
2383
2384 /* wait a bit for blocking conditions to go away */
2385 rc = wait_event_timeout(ucs->waitqueue,
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002386 !(ucs->basstate &
Tilman Schmidt024fd292008-02-06 01:38:26 -08002387 (BS_B1OPEN|BS_B2OPEN|BS_ATRDPEND|BS_ATWRPEND)),
2388 BAS_TIMEOUT*HZ/10);
2389 gig_dbg(DEBUG_SUSPEND, "wait_event_timeout() -> %d", rc);
2390
2391 /* check for conditions preventing suspend */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002392 if (ucs->basstate & (BS_B1OPEN|BS_B2OPEN|BS_ATRDPEND|BS_ATWRPEND)) {
Tilman Schmidt024fd292008-02-06 01:38:26 -08002393 dev_warn(cs->dev, "cannot suspend:\n");
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002394 if (ucs->basstate & BS_B1OPEN)
Tilman Schmidt024fd292008-02-06 01:38:26 -08002395 dev_warn(cs->dev, " B channel 1 open\n");
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002396 if (ucs->basstate & BS_B2OPEN)
Tilman Schmidt024fd292008-02-06 01:38:26 -08002397 dev_warn(cs->dev, " B channel 2 open\n");
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002398 if (ucs->basstate & BS_ATRDPEND)
Tilman Schmidt024fd292008-02-06 01:38:26 -08002399 dev_warn(cs->dev, " receiving AT reply\n");
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002400 if (ucs->basstate & BS_ATWRPEND)
Tilman Schmidt024fd292008-02-06 01:38:26 -08002401 dev_warn(cs->dev, " sending AT command\n");
2402 update_basstate(ucs, 0, BS_SUSPEND);
2403 return -EBUSY;
2404 }
2405
2406 /* close AT channel if open */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -08002407 if (ucs->basstate & BS_ATOPEN) {
Tilman Schmidt024fd292008-02-06 01:38:26 -08002408 gig_dbg(DEBUG_SUSPEND, "closing AT channel");
2409 rc = req_submit(cs->bcs, HD_CLOSE_ATCHANNEL, 0, 0);
2410 if (rc) {
2411 update_basstate(ucs, 0, BS_SUSPEND);
2412 return rc;
2413 }
2414 wait_event_timeout(ucs->waitqueue, !ucs->pending,
2415 BAS_TIMEOUT*HZ/10);
2416 /* in case of timeout, proceed anyway */
2417 }
2418
2419 /* kill all URBs and timers that might still be pending */
2420 usb_kill_urb(ucs->urb_ctrl);
2421 usb_kill_urb(ucs->urb_int_in);
2422 del_timer_sync(&ucs->timer_ctrl);
2423
2424 gig_dbg(DEBUG_SUSPEND, "suspend complete");
2425 return 0;
2426}
2427
2428/* gigaset_resume
2429 * This function is called after the USB connection has been resumed.
2430 */
2431static int gigaset_resume(struct usb_interface *intf)
2432{
2433 struct cardstate *cs = usb_get_intfdata(intf);
2434 struct bas_cardstate *ucs = cs->hw.bas;
2435 int rc;
2436
2437 /* resubmit interrupt URB for spontaneous messages from base */
2438 rc = usb_submit_urb(ucs->urb_int_in, GFP_KERNEL);
2439 if (rc) {
2440 dev_err(cs->dev, "could not resubmit interrupt URB: %s\n",
2441 get_usb_rcmsg(rc));
2442 return rc;
2443 }
2444
2445 /* clear suspend flag to reallow activity */
2446 update_basstate(ucs, 0, BS_SUSPEND);
2447
2448 gig_dbg(DEBUG_SUSPEND, "resume complete");
2449 return 0;
2450}
2451
2452/* gigaset_pre_reset
2453 * This function is called before the USB connection is reset.
2454 */
2455static int gigaset_pre_reset(struct usb_interface *intf)
2456{
2457 /* handle just like suspend */
2458 return gigaset_suspend(intf, PMSG_ON);
2459}
2460
2461/* gigaset_post_reset
2462 * This function is called after the USB connection has been reset.
2463 */
2464static int gigaset_post_reset(struct usb_interface *intf)
2465{
2466 /* FIXME: send HD_DEVICE_INIT_ACK? */
2467
2468 /* resume operations */
2469 return gigaset_resume(intf);
2470}
2471
2472
Tilman Schmidt35dc8452007-03-29 01:20:34 -07002473static const struct gigaset_ops gigops = {
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002474 gigaset_write_cmd,
2475 gigaset_write_room,
2476 gigaset_chars_in_buffer,
2477 gigaset_brkchars,
2478 gigaset_init_bchannel,
2479 gigaset_close_bchannel,
2480 gigaset_initbcshw,
2481 gigaset_freebcshw,
2482 gigaset_reinitbcshw,
2483 gigaset_initcshw,
2484 gigaset_freecshw,
2485 gigaset_set_modem_ctrl,
2486 gigaset_baud_rate,
2487 gigaset_set_line_ctrl,
2488 gigaset_isoc_send_skb,
2489 gigaset_isoc_input,
2490};
2491
2492/* bas_gigaset_init
2493 * This function is called after the kernel module is loaded.
2494 */
2495static int __init bas_gigaset_init(void)
2496{
2497 int result;
2498
2499 /* allocate memory for our driver state and intialize it */
Tilman Schmidt7891adf2009-10-25 09:30:37 +00002500 driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
2501 GIGASET_MODULENAME, GIGASET_DEVNAME,
2502 &gigops, THIS_MODULE);
2503 if (driver == NULL)
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002504 goto error;
2505
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002506 /* register this driver with the USB subsystem */
2507 result = usb_register(&gigaset_usb_driver);
2508 if (result < 0) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002509 pr_err("error %d registering USB driver\n", -result);
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002510 goto error;
2511 }
2512
Tilman Schmidtc8770dc2008-12-26 01:21:29 -08002513 pr_info(DRIVER_DESC "\n");
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002514 return 0;
2515
Tilman Schmidte468c042008-02-06 01:38:29 -08002516error:
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002517 if (driver)
2518 gigaset_freedriver(driver);
2519 driver = NULL;
2520 return -1;
2521}
2522
2523/* bas_gigaset_exit
2524 * This function is called before the kernel module is unloaded.
2525 */
2526static void __exit bas_gigaset_exit(void)
2527{
Tilman Schmidte468c042008-02-06 01:38:29 -08002528 struct bas_cardstate *ucs;
2529 int i;
Tilman Schmidt73a88812006-04-22 02:35:30 -07002530
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002531 gigaset_blockdriver(driver); /* => probe will fail
Tilman Schmidt784d5852006-04-10 22:55:04 -07002532 * => no gigaset_start any more
2533 */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002534
Tilman Schmidte468c042008-02-06 01:38:29 -08002535 /* stop all connected devices */
2536 for (i = 0; i < driver->minors; i++) {
2537 if (gigaset_shutdown(driver->cs + i) < 0)
2538 continue; /* no device */
2539 /* from now on, no isdn callback should be possible */
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002540
Tilman Schmidte468c042008-02-06 01:38:29 -08002541 /* close all still open channels */
2542 ucs = driver->cs[i].hw.bas;
2543 if (ucs->basstate & BS_B1OPEN) {
2544 gig_dbg(DEBUG_INIT, "closing B1 channel");
2545 usb_control_msg(ucs->udev,
2546 usb_sndctrlpipe(ucs->udev, 0),
2547 HD_CLOSE_B1CHANNEL, OUT_VENDOR_REQ,
2548 0, 0, NULL, 0, BAS_TIMEOUT);
2549 }
2550 if (ucs->basstate & BS_B2OPEN) {
2551 gig_dbg(DEBUG_INIT, "closing B2 channel");
2552 usb_control_msg(ucs->udev,
2553 usb_sndctrlpipe(ucs->udev, 0),
2554 HD_CLOSE_B2CHANNEL, OUT_VENDOR_REQ,
2555 0, 0, NULL, 0, BAS_TIMEOUT);
2556 }
2557 if (ucs->basstate & BS_ATOPEN) {
2558 gig_dbg(DEBUG_INIT, "closing AT channel");
2559 usb_control_msg(ucs->udev,
2560 usb_sndctrlpipe(ucs->udev, 0),
2561 HD_CLOSE_ATCHANNEL, OUT_VENDOR_REQ,
2562 0, 0, NULL, 0, BAS_TIMEOUT);
2563 }
2564 ucs->basstate = 0;
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002565 }
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002566
2567 /* deregister this driver with the USB subsystem */
2568 usb_deregister(&gigaset_usb_driver);
2569 /* this will call the disconnect-callback */
2570 /* from now on, no disconnect/probe callback should be running */
2571
Hansjoerg Lippcf7776d2006-03-26 01:38:34 -08002572 gigaset_freedriver(driver);
2573 driver = NULL;
2574}
2575
2576
2577module_init(bas_gigaset_init);
2578module_exit(bas_gigaset_exit);
2579
2580MODULE_AUTHOR(DRIVER_AUTHOR);
2581MODULE_DESCRIPTION(DRIVER_DESC);
2582MODULE_LICENSE("GPL");