ext3: Update MAINTAINERS for ext3 and JBD
[linux/fpc-iii.git] / drivers / isdn / gigaset / bas-gigaset.c
blob781c4041f7b0d1a856b2be280126d89e0adf55e2
1 /*
2 * USB driver for Gigaset 307x base via direct USB connection.
4 * Copyright (c) 2001 by Hansjoerg Lipp <hjlipp@web.de>,
5 * Tilman Schmidt <tilman@imap.cc>,
6 * Stefan Eilers.
8 * =====================================================================
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 * =====================================================================
16 #include "gigaset.h"
18 #include <linux/errno.h>
19 #include <linux/init.h>
20 #include <linux/slab.h>
21 #include <linux/timer.h>
22 #include <linux/usb.h>
23 #include <linux/module.h>
24 #include <linux/moduleparam.h>
26 /* Version Information */
27 #define DRIVER_AUTHOR "Tilman Schmidt <tilman@imap.cc>, Hansjoerg Lipp <hjlipp@web.de>, Stefan Eilers"
28 #define DRIVER_DESC "USB Driver for Gigaset 307x"
31 /* Module parameters */
33 static int startmode = SM_ISDN;
34 static int cidmode = 1;
36 module_param(startmode, int, S_IRUGO);
37 module_param(cidmode, int, S_IRUGO);
38 MODULE_PARM_DESC(startmode, "start in isdn4linux mode");
39 MODULE_PARM_DESC(cidmode, "Call-ID mode");
41 #define GIGASET_MINORS 1
42 #define GIGASET_MINOR 16
43 #define GIGASET_MODULENAME "bas_gigaset"
44 #define GIGASET_DEVNAME "ttyGB"
46 /* length limit according to Siemens 3070usb-protokoll.doc ch. 2.1 */
47 #define IF_WRITEBUF 264
49 /* interrupt pipe message size according to ibid. ch. 2.2 */
50 #define IP_MSGSIZE 3
52 /* Values for the Gigaset 307x */
53 #define USB_GIGA_VENDOR_ID 0x0681
54 #define USB_3070_PRODUCT_ID 0x0001
55 #define USB_3075_PRODUCT_ID 0x0002
56 #define USB_SX303_PRODUCT_ID 0x0021
57 #define USB_SX353_PRODUCT_ID 0x0022
59 /* table of devices that work with this driver */
60 static const struct usb_device_id gigaset_table [] = {
61 { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_3070_PRODUCT_ID) },
62 { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_3075_PRODUCT_ID) },
63 { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_SX303_PRODUCT_ID) },
64 { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_SX353_PRODUCT_ID) },
65 { } /* Terminating entry */
68 MODULE_DEVICE_TABLE(usb, gigaset_table);
70 /*======================= local function prototypes ==========================*/
72 /* function called if a new device belonging to this driver is connected */
73 static int gigaset_probe(struct usb_interface *interface,
74 const struct usb_device_id *id);
76 /* Function will be called if the device is unplugged */
77 static void gigaset_disconnect(struct usb_interface *interface);
79 /* functions called before/after suspend */
80 static int gigaset_suspend(struct usb_interface *intf, pm_message_t message);
81 static int gigaset_resume(struct usb_interface *intf);
83 /* functions called before/after device reset */
84 static int gigaset_pre_reset(struct usb_interface *intf);
85 static int gigaset_post_reset(struct usb_interface *intf);
87 static int atread_submit(struct cardstate *, int);
88 static void stopurbs(struct bas_bc_state *);
89 static int req_submit(struct bc_state *, int, int, int);
90 static int atwrite_submit(struct cardstate *, unsigned char *, int);
91 static int start_cbsend(struct cardstate *);
93 /*============================================================================*/
95 struct bas_cardstate {
96 struct usb_device *udev; /* USB device pointer */
97 struct usb_interface *interface; /* interface for this device */
98 unsigned char minor; /* starting minor number */
100 struct urb *urb_ctrl; /* control pipe default URB */
101 struct usb_ctrlrequest dr_ctrl;
102 struct timer_list timer_ctrl; /* control request timeout */
103 int retry_ctrl;
105 struct timer_list timer_atrdy; /* AT command ready timeout */
106 struct urb *urb_cmd_out; /* for sending AT commands */
107 struct usb_ctrlrequest dr_cmd_out;
108 int retry_cmd_out;
110 struct urb *urb_cmd_in; /* for receiving AT replies */
111 struct usb_ctrlrequest dr_cmd_in;
112 struct timer_list timer_cmd_in; /* receive request timeout */
113 unsigned char *rcvbuf; /* AT reply receive buffer */
115 struct urb *urb_int_in; /* URB for interrupt pipe */
116 unsigned char *int_in_buf;
118 spinlock_t lock; /* locks all following */
119 int basstate; /* bitmap (BS_*) */
120 int pending; /* uncompleted base request */
121 wait_queue_head_t waitqueue;
122 int rcvbuf_size; /* size of AT receive buffer */
123 /* 0: no receive in progress */
124 int retry_cmd_in; /* receive req retry count */
127 /* status of direct USB connection to 307x base (bits in basstate) */
128 #define BS_ATOPEN 0x001 /* AT channel open */
129 #define BS_B1OPEN 0x002 /* B channel 1 open */
130 #define BS_B2OPEN 0x004 /* B channel 2 open */
131 #define BS_ATREADY 0x008 /* base ready for AT command */
132 #define BS_INIT 0x010 /* base has signalled INIT_OK */
133 #define BS_ATTIMER 0x020 /* waiting for HD_READY_SEND_ATDATA */
134 #define BS_ATRDPEND 0x040 /* urb_cmd_in in use */
135 #define BS_ATWRPEND 0x080 /* urb_cmd_out in use */
136 #define BS_SUSPEND 0x100 /* USB port suspended */
139 static struct gigaset_driver *driver = NULL;
141 /* usb specific object needed to register this driver with the usb subsystem */
142 static struct usb_driver gigaset_usb_driver = {
143 .name = GIGASET_MODULENAME,
144 .probe = gigaset_probe,
145 .disconnect = gigaset_disconnect,
146 .id_table = gigaset_table,
147 .suspend = gigaset_suspend,
148 .resume = gigaset_resume,
149 .reset_resume = gigaset_post_reset,
150 .pre_reset = gigaset_pre_reset,
151 .post_reset = gigaset_post_reset,
154 /* get message text for usb_submit_urb return code
156 static char *get_usb_rcmsg(int rc)
158 static char unkmsg[28];
160 switch (rc) {
161 case 0:
162 return "success";
163 case -ENOMEM:
164 return "out of memory";
165 case -ENODEV:
166 return "device not present";
167 case -ENOENT:
168 return "endpoint not present";
169 case -ENXIO:
170 return "URB type not supported";
171 case -EINVAL:
172 return "invalid argument";
173 case -EAGAIN:
174 return "start frame too early or too much scheduled";
175 case -EFBIG:
176 return "too many isochronous frames requested";
177 case -EPIPE:
178 return "endpoint stalled";
179 case -EMSGSIZE:
180 return "invalid packet size";
181 case -ENOSPC:
182 return "would overcommit USB bandwidth";
183 case -ESHUTDOWN:
184 return "device shut down";
185 case -EPERM:
186 return "reject flag set";
187 case -EHOSTUNREACH:
188 return "device suspended";
189 default:
190 snprintf(unkmsg, sizeof(unkmsg), "unknown error %d", rc);
191 return unkmsg;
195 /* get message text for USB status code
197 static char *get_usb_statmsg(int status)
199 static char unkmsg[28];
201 switch (status) {
202 case 0:
203 return "success";
204 case -ENOENT:
205 return "unlinked (sync)";
206 case -EINPROGRESS:
207 return "pending";
208 case -EPROTO:
209 return "bit stuffing error, timeout, or unknown USB error";
210 case -EILSEQ:
211 return "CRC mismatch, timeout, or unknown USB error";
212 case -ETIME:
213 return "timed out";
214 case -EPIPE:
215 return "endpoint stalled";
216 case -ECOMM:
217 return "IN buffer overrun";
218 case -ENOSR:
219 return "OUT buffer underrun";
220 case -EOVERFLOW:
221 return "too much data";
222 case -EREMOTEIO:
223 return "short packet detected";
224 case -ENODEV:
225 return "device removed";
226 case -EXDEV:
227 return "partial isochronous transfer";
228 case -EINVAL:
229 return "invalid argument";
230 case -ECONNRESET:
231 return "unlinked (async)";
232 case -ESHUTDOWN:
233 return "device shut down";
234 default:
235 snprintf(unkmsg, sizeof(unkmsg), "unknown status %d", status);
236 return unkmsg;
240 /* usb_pipetype_str
241 * retrieve string representation of USB pipe type
243 static inline char *usb_pipetype_str(int pipe)
245 if (usb_pipeisoc(pipe))
246 return "Isoc";
247 if (usb_pipeint(pipe))
248 return "Int";
249 if (usb_pipecontrol(pipe))
250 return "Ctrl";
251 if (usb_pipebulk(pipe))
252 return "Bulk";
253 return "?";
256 /* dump_urb
257 * write content of URB to syslog for debugging
259 static inline void dump_urb(enum debuglevel level, const char *tag,
260 struct urb *urb)
262 #ifdef CONFIG_GIGASET_DEBUG
263 int i;
264 gig_dbg(level, "%s urb(0x%08lx)->{", tag, (unsigned long) urb);
265 if (urb) {
266 gig_dbg(level,
267 " dev=0x%08lx, pipe=%s:EP%d/DV%d:%s, "
268 "hcpriv=0x%08lx, transfer_flags=0x%x,",
269 (unsigned long) urb->dev,
270 usb_pipetype_str(urb->pipe),
271 usb_pipeendpoint(urb->pipe), usb_pipedevice(urb->pipe),
272 usb_pipein(urb->pipe) ? "in" : "out",
273 (unsigned long) urb->hcpriv,
274 urb->transfer_flags);
275 gig_dbg(level,
276 " transfer_buffer=0x%08lx[%d], actual_length=%d, "
277 "setup_packet=0x%08lx,",
278 (unsigned long) urb->transfer_buffer,
279 urb->transfer_buffer_length, urb->actual_length,
280 (unsigned long) urb->setup_packet);
281 gig_dbg(level,
282 " start_frame=%d, number_of_packets=%d, interval=%d, "
283 "error_count=%d,",
284 urb->start_frame, urb->number_of_packets, urb->interval,
285 urb->error_count);
286 gig_dbg(level,
287 " context=0x%08lx, complete=0x%08lx, "
288 "iso_frame_desc[]={",
289 (unsigned long) urb->context,
290 (unsigned long) urb->complete);
291 for (i = 0; i < urb->number_of_packets; i++) {
292 struct usb_iso_packet_descriptor *pifd
293 = &urb->iso_frame_desc[i];
294 gig_dbg(level,
295 " {offset=%u, length=%u, actual_length=%u, "
296 "status=%u}",
297 pifd->offset, pifd->length, pifd->actual_length,
298 pifd->status);
301 gig_dbg(level, "}}");
302 #endif
305 /* read/set modem control bits etc. (m10x only) */
306 static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
307 unsigned new_state)
309 return -EINVAL;
312 static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
314 return -EINVAL;
317 static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag)
319 return -EINVAL;
322 /* error_hangup
323 * hang up any existing connection because of an unrecoverable error
324 * This function may be called from any context and takes care of scheduling
325 * the necessary actions for execution outside of interrupt context.
326 * cs->lock must not be held.
327 * argument:
328 * B channel control structure
330 static inline void error_hangup(struct bc_state *bcs)
332 struct cardstate *cs = bcs->cs;
334 gig_dbg(DEBUG_ANY, "%s: scheduling HUP for channel %d",
335 __func__, bcs->channel);
337 if (!gigaset_add_event(cs, &bcs->at_state, EV_HUP, NULL, 0, NULL))
338 dev_err(cs->dev, "event queue full\n");
340 gigaset_schedule_event(cs);
343 /* error_reset
344 * reset Gigaset device because of an unrecoverable error
345 * This function may be called from any context, and takes care of
346 * scheduling the necessary actions for execution outside of interrupt context.
347 * cs->lock must not be held.
348 * argument:
349 * controller state structure
351 static inline void error_reset(struct cardstate *cs)
353 /* close AT command channel to recover (ignore errors) */
354 req_submit(cs->bcs, HD_CLOSE_ATCHANNEL, 0, BAS_TIMEOUT);
356 //FIXME try to recover without bothering the user
357 dev_err(cs->dev,
358 "unrecoverable error - please disconnect Gigaset base to reset\n");
361 /* check_pending
362 * check for completion of pending control request
363 * parameter:
364 * ucs hardware specific controller state structure
366 static void check_pending(struct bas_cardstate *ucs)
368 unsigned long flags;
370 spin_lock_irqsave(&ucs->lock, flags);
371 switch (ucs->pending) {
372 case 0:
373 break;
374 case HD_OPEN_ATCHANNEL:
375 if (ucs->basstate & BS_ATOPEN)
376 ucs->pending = 0;
377 break;
378 case HD_OPEN_B1CHANNEL:
379 if (ucs->basstate & BS_B1OPEN)
380 ucs->pending = 0;
381 break;
382 case HD_OPEN_B2CHANNEL:
383 if (ucs->basstate & BS_B2OPEN)
384 ucs->pending = 0;
385 break;
386 case HD_CLOSE_ATCHANNEL:
387 if (!(ucs->basstate & BS_ATOPEN))
388 ucs->pending = 0;
389 break;
390 case HD_CLOSE_B1CHANNEL:
391 if (!(ucs->basstate & BS_B1OPEN))
392 ucs->pending = 0;
393 break;
394 case HD_CLOSE_B2CHANNEL:
395 if (!(ucs->basstate & BS_B2OPEN))
396 ucs->pending = 0;
397 break;
398 case HD_DEVICE_INIT_ACK: /* no reply expected */
399 ucs->pending = 0;
400 break;
401 /* HD_READ_ATMESSAGE, HD_WRITE_ATMESSAGE, HD_RESET_INTERRUPTPIPE
402 * are handled separately and should never end up here
404 default:
405 dev_warn(&ucs->interface->dev,
406 "unknown pending request 0x%02x cleared\n",
407 ucs->pending);
408 ucs->pending = 0;
411 if (!ucs->pending)
412 del_timer(&ucs->timer_ctrl);
414 spin_unlock_irqrestore(&ucs->lock, flags);
417 /* cmd_in_timeout
418 * timeout routine for command input request
419 * argument:
420 * controller state structure
422 static void cmd_in_timeout(unsigned long data)
424 struct cardstate *cs = (struct cardstate *) data;
425 struct bas_cardstate *ucs = cs->hw.bas;
426 int rc;
428 if (!ucs->rcvbuf_size) {
429 gig_dbg(DEBUG_USBREQ, "%s: no receive in progress", __func__);
430 return;
433 if (ucs->retry_cmd_in++ < BAS_RETRY) {
434 dev_notice(cs->dev, "control read: timeout, retry %d\n",
435 ucs->retry_cmd_in);
436 rc = atread_submit(cs, BAS_TIMEOUT);
437 if (rc >= 0 || rc == -ENODEV)
438 /* resubmitted or disconnected */
439 /* - bypass regular exit block */
440 return;
441 } else {
442 dev_err(cs->dev,
443 "control read: timeout, giving up after %d tries\n",
444 ucs->retry_cmd_in);
446 kfree(ucs->rcvbuf);
447 ucs->rcvbuf = NULL;
448 ucs->rcvbuf_size = 0;
449 error_reset(cs);
452 /* set/clear bits in base connection state, return previous state
454 inline static int update_basstate(struct bas_cardstate *ucs,
455 int set, int clear)
457 unsigned long flags;
458 int state;
460 spin_lock_irqsave(&ucs->lock, flags);
461 state = ucs->basstate;
462 ucs->basstate = (state & ~clear) | set;
463 spin_unlock_irqrestore(&ucs->lock, flags);
464 return state;
467 /* read_ctrl_callback
468 * USB completion handler for control pipe input
469 * called by the USB subsystem in interrupt context
470 * parameter:
471 * urb USB request block
472 * urb->context = inbuf structure for controller state
474 static void read_ctrl_callback(struct urb *urb)
476 struct inbuf_t *inbuf = urb->context;
477 struct cardstate *cs = inbuf->cs;
478 struct bas_cardstate *ucs = cs->hw.bas;
479 int status = urb->status;
480 int have_data = 0;
481 unsigned numbytes;
482 int rc;
484 update_basstate(ucs, 0, BS_ATRDPEND);
485 wake_up(&ucs->waitqueue);
487 if (!ucs->rcvbuf_size) {
488 dev_warn(cs->dev, "%s: no receive in progress\n", __func__);
489 return;
492 del_timer(&ucs->timer_cmd_in);
494 switch (status) {
495 case 0: /* normal completion */
496 numbytes = urb->actual_length;
497 if (unlikely(numbytes != ucs->rcvbuf_size)) {
498 dev_warn(cs->dev,
499 "control read: received %d chars, expected %d\n",
500 numbytes, ucs->rcvbuf_size);
501 if (numbytes > ucs->rcvbuf_size)
502 numbytes = ucs->rcvbuf_size;
505 /* copy received bytes to inbuf */
506 have_data = gigaset_fill_inbuf(inbuf, ucs->rcvbuf, numbytes);
508 if (unlikely(numbytes < ucs->rcvbuf_size)) {
509 /* incomplete - resubmit for remaining bytes */
510 ucs->rcvbuf_size -= numbytes;
511 ucs->retry_cmd_in = 0;
512 rc = atread_submit(cs, BAS_TIMEOUT);
513 if (rc >= 0 || rc == -ENODEV)
514 /* resubmitted or disconnected */
515 /* - bypass regular exit block */
516 return;
517 error_reset(cs);
519 break;
521 case -ENOENT: /* cancelled */
522 case -ECONNRESET: /* cancelled (async) */
523 case -EINPROGRESS: /* pending */
524 case -ENODEV: /* device removed */
525 case -ESHUTDOWN: /* device shut down */
526 /* no action necessary */
527 gig_dbg(DEBUG_USBREQ, "%s: %s",
528 __func__, get_usb_statmsg(status));
529 break;
531 default: /* severe trouble */
532 dev_warn(cs->dev, "control read: %s\n",
533 get_usb_statmsg(status));
534 if (ucs->retry_cmd_in++ < BAS_RETRY) {
535 dev_notice(cs->dev, "control read: retry %d\n",
536 ucs->retry_cmd_in);
537 rc = atread_submit(cs, BAS_TIMEOUT);
538 if (rc >= 0 || rc == -ENODEV)
539 /* resubmitted or disconnected */
540 /* - bypass regular exit block */
541 return;
542 } else {
543 dev_err(cs->dev,
544 "control read: giving up after %d tries\n",
545 ucs->retry_cmd_in);
547 error_reset(cs);
550 kfree(ucs->rcvbuf);
551 ucs->rcvbuf = NULL;
552 ucs->rcvbuf_size = 0;
553 if (have_data) {
554 gig_dbg(DEBUG_INTR, "%s-->BH", __func__);
555 gigaset_schedule_event(cs);
559 /* atread_submit
560 * submit an HD_READ_ATMESSAGE command URB and optionally start a timeout
561 * parameters:
562 * cs controller state structure
563 * timeout timeout in 1/10 sec., 0: none
564 * return value:
565 * 0 on success
566 * -EBUSY if another request is pending
567 * any URB submission error code
569 static int atread_submit(struct cardstate *cs, int timeout)
571 struct bas_cardstate *ucs = cs->hw.bas;
572 int basstate;
573 int ret;
575 gig_dbg(DEBUG_USBREQ, "-------> HD_READ_ATMESSAGE (%d)",
576 ucs->rcvbuf_size);
578 basstate = update_basstate(ucs, BS_ATRDPEND, 0);
579 if (basstate & BS_ATRDPEND) {
580 dev_err(cs->dev,
581 "could not submit HD_READ_ATMESSAGE: URB busy\n");
582 return -EBUSY;
585 if (basstate & BS_SUSPEND) {
586 dev_notice(cs->dev,
587 "HD_READ_ATMESSAGE not submitted, "
588 "suspend in progress\n");
589 update_basstate(ucs, 0, BS_ATRDPEND);
590 /* treat like disconnect */
591 return -ENODEV;
594 ucs->dr_cmd_in.bRequestType = IN_VENDOR_REQ;
595 ucs->dr_cmd_in.bRequest = HD_READ_ATMESSAGE;
596 ucs->dr_cmd_in.wValue = 0;
597 ucs->dr_cmd_in.wIndex = 0;
598 ucs->dr_cmd_in.wLength = cpu_to_le16(ucs->rcvbuf_size);
599 usb_fill_control_urb(ucs->urb_cmd_in, ucs->udev,
600 usb_rcvctrlpipe(ucs->udev, 0),
601 (unsigned char*) & ucs->dr_cmd_in,
602 ucs->rcvbuf, ucs->rcvbuf_size,
603 read_ctrl_callback, cs->inbuf);
605 if ((ret = usb_submit_urb(ucs->urb_cmd_in, GFP_ATOMIC)) != 0) {
606 update_basstate(ucs, 0, BS_ATRDPEND);
607 dev_err(cs->dev, "could not submit HD_READ_ATMESSAGE: %s\n",
608 get_usb_rcmsg(ret));
609 return ret;
612 if (timeout > 0) {
613 gig_dbg(DEBUG_USBREQ, "setting timeout of %d/10 secs", timeout);
614 ucs->timer_cmd_in.expires = jiffies + timeout * HZ / 10;
615 ucs->timer_cmd_in.data = (unsigned long) cs;
616 ucs->timer_cmd_in.function = cmd_in_timeout;
617 add_timer(&ucs->timer_cmd_in);
619 return 0;
622 /* read_int_callback
623 * USB completion handler for interrupt pipe input
624 * called by the USB subsystem in interrupt context
625 * parameter:
626 * urb USB request block
627 * urb->context = controller state structure
629 static void read_int_callback(struct urb *urb)
631 struct cardstate *cs = urb->context;
632 struct bas_cardstate *ucs = cs->hw.bas;
633 struct bc_state *bcs;
634 int status = urb->status;
635 unsigned long flags;
636 int rc;
637 unsigned l;
638 int channel;
640 switch (status) {
641 case 0: /* success */
642 break;
643 case -ENOENT: /* cancelled */
644 case -ECONNRESET: /* cancelled (async) */
645 case -EINPROGRESS: /* pending */
646 /* ignore silently */
647 gig_dbg(DEBUG_USBREQ, "%s: %s",
648 __func__, get_usb_statmsg(status));
649 return;
650 case -ENODEV: /* device removed */
651 case -ESHUTDOWN: /* device shut down */
652 //FIXME use this as disconnect indicator?
653 gig_dbg(DEBUG_USBREQ, "%s: device disconnected", __func__);
654 return;
655 default: /* severe trouble */
656 dev_warn(cs->dev, "interrupt read: %s\n",
657 get_usb_statmsg(status));
658 //FIXME corrective action? resubmission always ok?
659 goto resubmit;
662 /* drop incomplete packets even if the missing bytes wouldn't matter */
663 if (unlikely(urb->actual_length < IP_MSGSIZE)) {
664 dev_warn(cs->dev, "incomplete interrupt packet (%d bytes)\n",
665 urb->actual_length);
666 goto resubmit;
669 l = (unsigned) ucs->int_in_buf[1] +
670 (((unsigned) ucs->int_in_buf[2]) << 8);
672 gig_dbg(DEBUG_USBREQ, "<-------%d: 0x%02x (%u [0x%02x 0x%02x])",
673 urb->actual_length, (int)ucs->int_in_buf[0], l,
674 (int)ucs->int_in_buf[1], (int)ucs->int_in_buf[2]);
676 channel = 0;
678 switch (ucs->int_in_buf[0]) {
679 case HD_DEVICE_INIT_OK:
680 update_basstate(ucs, BS_INIT, 0);
681 break;
683 case HD_READY_SEND_ATDATA:
684 del_timer(&ucs->timer_atrdy);
685 update_basstate(ucs, BS_ATREADY, BS_ATTIMER);
686 start_cbsend(cs);
687 break;
689 case HD_OPEN_B2CHANNEL_ACK:
690 ++channel;
691 case HD_OPEN_B1CHANNEL_ACK:
692 bcs = cs->bcs + channel;
693 update_basstate(ucs, BS_B1OPEN << channel, 0);
694 gigaset_bchannel_up(bcs);
695 break;
697 case HD_OPEN_ATCHANNEL_ACK:
698 update_basstate(ucs, BS_ATOPEN, 0);
699 start_cbsend(cs);
700 break;
702 case HD_CLOSE_B2CHANNEL_ACK:
703 ++channel;
704 case HD_CLOSE_B1CHANNEL_ACK:
705 bcs = cs->bcs + channel;
706 update_basstate(ucs, 0, BS_B1OPEN << channel);
707 stopurbs(bcs->hw.bas);
708 gigaset_bchannel_down(bcs);
709 break;
711 case HD_CLOSE_ATCHANNEL_ACK:
712 update_basstate(ucs, 0, BS_ATOPEN);
713 break;
715 case HD_B2_FLOW_CONTROL:
716 ++channel;
717 case HD_B1_FLOW_CONTROL:
718 bcs = cs->bcs + channel;
719 atomic_add((l - BAS_NORMFRAME) * BAS_CORRFRAMES,
720 &bcs->hw.bas->corrbytes);
721 gig_dbg(DEBUG_ISO,
722 "Flow control (channel %d, sub %d): 0x%02x => %d",
723 channel, bcs->hw.bas->numsub, l,
724 atomic_read(&bcs->hw.bas->corrbytes));
725 break;
727 case HD_RECEIVEATDATA_ACK: /* AT response ready to be received */
728 if (!l) {
729 dev_warn(cs->dev,
730 "HD_RECEIVEATDATA_ACK with length 0 ignored\n");
731 break;
733 spin_lock_irqsave(&cs->lock, flags);
734 if (ucs->rcvbuf_size) {
735 /* throw away previous buffer - we have no queue */
736 dev_err(cs->dev,
737 "receive AT data overrun, %d bytes lost\n",
738 ucs->rcvbuf_size);
739 kfree(ucs->rcvbuf);
740 ucs->rcvbuf_size = 0;
742 if ((ucs->rcvbuf = kmalloc(l, GFP_ATOMIC)) == NULL) {
743 spin_unlock_irqrestore(&cs->lock, flags);
744 dev_err(cs->dev, "out of memory receiving AT data\n");
745 error_reset(cs);
746 break;
748 ucs->rcvbuf_size = l;
749 ucs->retry_cmd_in = 0;
750 if ((rc = atread_submit(cs, BAS_TIMEOUT)) < 0) {
751 kfree(ucs->rcvbuf);
752 ucs->rcvbuf = NULL;
753 ucs->rcvbuf_size = 0;
754 if (rc != -ENODEV) {
755 //FIXME corrective action?
756 spin_unlock_irqrestore(&cs->lock, flags);
757 error_reset(cs);
758 break;
761 spin_unlock_irqrestore(&cs->lock, flags);
762 break;
764 case HD_RESET_INTERRUPT_PIPE_ACK:
765 gig_dbg(DEBUG_USBREQ, "HD_RESET_INTERRUPT_PIPE_ACK");
766 break;
768 case HD_SUSPEND_END:
769 gig_dbg(DEBUG_USBREQ, "HD_SUSPEND_END");
770 break;
772 default:
773 dev_warn(cs->dev,
774 "unknown Gigaset signal 0x%02x (%u) ignored\n",
775 (int) ucs->int_in_buf[0], l);
778 check_pending(ucs);
779 wake_up(&ucs->waitqueue);
781 resubmit:
782 rc = usb_submit_urb(urb, GFP_ATOMIC);
783 if (unlikely(rc != 0 && rc != -ENODEV)) {
784 dev_err(cs->dev, "could not resubmit interrupt URB: %s\n",
785 get_usb_rcmsg(rc));
786 error_reset(cs);
790 /* read_iso_callback
791 * USB completion handler for B channel isochronous input
792 * called by the USB subsystem in interrupt context
793 * parameter:
794 * urb USB request block of completed request
795 * urb->context = bc_state structure
797 static void read_iso_callback(struct urb *urb)
799 struct bc_state *bcs;
800 struct bas_bc_state *ubc;
801 int status = urb->status;
802 unsigned long flags;
803 int i, rc;
805 /* status codes not worth bothering the tasklet with */
806 if (unlikely(status == -ENOENT ||
807 status == -ECONNRESET ||
808 status == -EINPROGRESS ||
809 status == -ENODEV ||
810 status == -ESHUTDOWN)) {
811 gig_dbg(DEBUG_ISO, "%s: %s",
812 __func__, get_usb_statmsg(status));
813 return;
816 bcs = urb->context;
817 ubc = bcs->hw.bas;
819 spin_lock_irqsave(&ubc->isoinlock, flags);
820 if (likely(ubc->isoindone == NULL)) {
821 /* pass URB to tasklet */
822 ubc->isoindone = urb;
823 ubc->isoinstatus = status;
824 tasklet_hi_schedule(&ubc->rcvd_tasklet);
825 } else {
826 /* tasklet still busy, drop data and resubmit URB */
827 ubc->loststatus = status;
828 for (i = 0; i < BAS_NUMFRAMES; i++) {
829 ubc->isoinlost += urb->iso_frame_desc[i].actual_length;
830 if (unlikely(urb->iso_frame_desc[i].status != 0 &&
831 urb->iso_frame_desc[i].status !=
832 -EINPROGRESS))
833 ubc->loststatus = urb->iso_frame_desc[i].status;
834 urb->iso_frame_desc[i].status = 0;
835 urb->iso_frame_desc[i].actual_length = 0;
837 if (likely(ubc->running)) {
838 /* urb->dev is clobbered by USB subsystem */
839 urb->dev = bcs->cs->hw.bas->udev;
840 urb->transfer_flags = URB_ISO_ASAP;
841 urb->number_of_packets = BAS_NUMFRAMES;
842 gig_dbg(DEBUG_ISO, "%s: isoc read overrun/resubmit",
843 __func__);
844 rc = usb_submit_urb(urb, GFP_ATOMIC);
845 if (unlikely(rc != 0 && rc != -ENODEV)) {
846 dev_err(bcs->cs->dev,
847 "could not resubmit isochronous read "
848 "URB: %s\n", get_usb_rcmsg(rc));
849 dump_urb(DEBUG_ISO, "isoc read", urb);
850 error_hangup(bcs);
854 spin_unlock_irqrestore(&ubc->isoinlock, flags);
857 /* write_iso_callback
858 * USB completion handler for B channel isochronous output
859 * called by the USB subsystem in interrupt context
860 * parameter:
861 * urb USB request block of completed request
862 * urb->context = isow_urbctx_t structure
864 static void write_iso_callback(struct urb *urb)
866 struct isow_urbctx_t *ucx;
867 struct bas_bc_state *ubc;
868 int status = urb->status;
869 unsigned long flags;
871 /* status codes not worth bothering the tasklet with */
872 if (unlikely(status == -ENOENT ||
873 status == -ECONNRESET ||
874 status == -EINPROGRESS ||
875 status == -ENODEV ||
876 status == -ESHUTDOWN)) {
877 gig_dbg(DEBUG_ISO, "%s: %s",
878 __func__, get_usb_statmsg(status));
879 return;
882 /* pass URB context to tasklet */
883 ucx = urb->context;
884 ubc = ucx->bcs->hw.bas;
885 ucx->status = status;
887 spin_lock_irqsave(&ubc->isooutlock, flags);
888 ubc->isooutovfl = ubc->isooutdone;
889 ubc->isooutdone = ucx;
890 spin_unlock_irqrestore(&ubc->isooutlock, flags);
891 tasklet_hi_schedule(&ubc->sent_tasklet);
894 /* starturbs
895 * prepare and submit USB request blocks for isochronous input and output
896 * argument:
897 * B channel control structure
898 * return value:
899 * 0 on success
900 * < 0 on error (no URBs submitted)
902 static int starturbs(struct bc_state *bcs)
904 struct bas_bc_state *ubc = bcs->hw.bas;
905 struct urb *urb;
906 int j, k;
907 int rc;
909 /* initialize L2 reception */
910 if (bcs->proto2 == ISDN_PROTO_L2_HDLC)
911 bcs->inputstate |= INS_flag_hunt;
913 /* submit all isochronous input URBs */
914 ubc->running = 1;
915 for (k = 0; k < BAS_INURBS; k++) {
916 urb = ubc->isoinurbs[k];
917 if (!urb) {
918 rc = -EFAULT;
919 goto error;
922 urb->dev = bcs->cs->hw.bas->udev;
923 urb->pipe = usb_rcvisocpipe(urb->dev, 3 + 2 * bcs->channel);
924 urb->transfer_flags = URB_ISO_ASAP;
925 urb->transfer_buffer = ubc->isoinbuf + k * BAS_INBUFSIZE;
926 urb->transfer_buffer_length = BAS_INBUFSIZE;
927 urb->number_of_packets = BAS_NUMFRAMES;
928 urb->interval = BAS_FRAMETIME;
929 urb->complete = read_iso_callback;
930 urb->context = bcs;
931 for (j = 0; j < BAS_NUMFRAMES; j++) {
932 urb->iso_frame_desc[j].offset = j * BAS_MAXFRAME;
933 urb->iso_frame_desc[j].length = BAS_MAXFRAME;
934 urb->iso_frame_desc[j].status = 0;
935 urb->iso_frame_desc[j].actual_length = 0;
938 dump_urb(DEBUG_ISO, "Initial isoc read", urb);
939 if ((rc = usb_submit_urb(urb, GFP_ATOMIC)) != 0)
940 goto error;
943 /* initialize L2 transmission */
944 gigaset_isowbuf_init(ubc->isooutbuf, PPP_FLAG);
946 /* set up isochronous output URBs for flag idling */
947 for (k = 0; k < BAS_OUTURBS; ++k) {
948 urb = ubc->isoouturbs[k].urb;
949 if (!urb) {
950 rc = -EFAULT;
951 goto error;
953 urb->dev = bcs->cs->hw.bas->udev;
954 urb->pipe = usb_sndisocpipe(urb->dev, 4 + 2 * bcs->channel);
955 urb->transfer_flags = URB_ISO_ASAP;
956 urb->transfer_buffer = ubc->isooutbuf->data;
957 urb->transfer_buffer_length = sizeof(ubc->isooutbuf->data);
958 urb->number_of_packets = BAS_NUMFRAMES;
959 urb->interval = BAS_FRAMETIME;
960 urb->complete = write_iso_callback;
961 urb->context = &ubc->isoouturbs[k];
962 for (j = 0; j < BAS_NUMFRAMES; ++j) {
963 urb->iso_frame_desc[j].offset = BAS_OUTBUFSIZE;
964 urb->iso_frame_desc[j].length = BAS_NORMFRAME;
965 urb->iso_frame_desc[j].status = 0;
966 urb->iso_frame_desc[j].actual_length = 0;
968 ubc->isoouturbs[k].limit = -1;
971 /* keep one URB free, submit the others */
972 for (k = 0; k < BAS_OUTURBS-1; ++k) {
973 dump_urb(DEBUG_ISO, "Initial isoc write", urb);
974 rc = usb_submit_urb(ubc->isoouturbs[k].urb, GFP_ATOMIC);
975 if (rc != 0)
976 goto error;
978 dump_urb(DEBUG_ISO, "Initial isoc write (free)", urb);
979 ubc->isooutfree = &ubc->isoouturbs[BAS_OUTURBS-1];
980 ubc->isooutdone = ubc->isooutovfl = NULL;
981 return 0;
982 error:
983 stopurbs(ubc);
984 return rc;
987 /* stopurbs
988 * cancel the USB request blocks for isochronous input and output
989 * errors are silently ignored
990 * argument:
991 * B channel control structure
993 static void stopurbs(struct bas_bc_state *ubc)
995 int k, rc;
997 ubc->running = 0;
999 for (k = 0; k < BAS_INURBS; ++k) {
1000 rc = usb_unlink_urb(ubc->isoinurbs[k]);
1001 gig_dbg(DEBUG_ISO,
1002 "%s: isoc input URB %d unlinked, result = %s",
1003 __func__, k, get_usb_rcmsg(rc));
1006 for (k = 0; k < BAS_OUTURBS; ++k) {
1007 rc = usb_unlink_urb(ubc->isoouturbs[k].urb);
1008 gig_dbg(DEBUG_ISO,
1009 "%s: isoc output URB %d unlinked, result = %s",
1010 __func__, k, get_usb_rcmsg(rc));
1014 /* Isochronous Write - Bottom Half */
1015 /* =============================== */
1017 /* submit_iso_write_urb
1018 * fill and submit the next isochronous write URB
1019 * parameters:
1020 * ucx context structure containing URB
1021 * return value:
1022 * number of frames submitted in URB
1023 * 0 if URB not submitted because no data available (isooutbuf busy)
1024 * error code < 0 on error
1026 static int submit_iso_write_urb(struct isow_urbctx_t *ucx)
1028 struct urb *urb = ucx->urb;
1029 struct bas_bc_state *ubc = ucx->bcs->hw.bas;
1030 struct usb_iso_packet_descriptor *ifd;
1031 int corrbytes, nframe, rc;
1033 /* urb->dev is clobbered by USB subsystem */
1034 urb->dev = ucx->bcs->cs->hw.bas->udev;
1035 urb->transfer_flags = URB_ISO_ASAP;
1036 urb->transfer_buffer = ubc->isooutbuf->data;
1037 urb->transfer_buffer_length = sizeof(ubc->isooutbuf->data);
1039 for (nframe = 0; nframe < BAS_NUMFRAMES; nframe++) {
1040 ifd = &urb->iso_frame_desc[nframe];
1042 /* compute frame length according to flow control */
1043 ifd->length = BAS_NORMFRAME;
1044 if ((corrbytes = atomic_read(&ubc->corrbytes)) != 0) {
1045 gig_dbg(DEBUG_ISO, "%s: corrbytes=%d",
1046 __func__, corrbytes);
1047 if (corrbytes > BAS_HIGHFRAME - BAS_NORMFRAME)
1048 corrbytes = BAS_HIGHFRAME - BAS_NORMFRAME;
1049 else if (corrbytes < BAS_LOWFRAME - BAS_NORMFRAME)
1050 corrbytes = BAS_LOWFRAME - BAS_NORMFRAME;
1051 ifd->length += corrbytes;
1052 atomic_add(-corrbytes, &ubc->corrbytes);
1055 /* retrieve block of data to send */
1056 rc = gigaset_isowbuf_getbytes(ubc->isooutbuf, ifd->length);
1057 if (rc < 0) {
1058 if (rc == -EBUSY) {
1059 gig_dbg(DEBUG_ISO,
1060 "%s: buffer busy at frame %d",
1061 __func__, nframe);
1062 /* tasklet will be restarted from
1063 gigaset_send_skb() */
1064 } else {
1065 dev_err(ucx->bcs->cs->dev,
1066 "%s: buffer error %d at frame %d\n",
1067 __func__, rc, nframe);
1068 return rc;
1070 break;
1072 ifd->offset = rc;
1073 ucx->limit = ubc->isooutbuf->nextread;
1074 ifd->status = 0;
1075 ifd->actual_length = 0;
1077 if (unlikely(nframe == 0))
1078 return 0; /* no data to send */
1079 urb->number_of_packets = nframe;
1081 rc = usb_submit_urb(urb, GFP_ATOMIC);
1082 if (unlikely(rc)) {
1083 if (rc == -ENODEV)
1084 /* device removed - give up silently */
1085 gig_dbg(DEBUG_ISO, "%s: disconnected", __func__);
1086 else
1087 dev_err(ucx->bcs->cs->dev,
1088 "could not submit isochronous write URB: %s\n",
1089 get_usb_rcmsg(rc));
1090 return rc;
1092 ++ubc->numsub;
1093 return nframe;
1096 /* write_iso_tasklet
1097 * tasklet scheduled when an isochronous output URB from the Gigaset device
1098 * has completed
1099 * parameter:
1100 * data B channel state structure
1102 static void write_iso_tasklet(unsigned long data)
1104 struct bc_state *bcs = (struct bc_state *) data;
1105 struct bas_bc_state *ubc = bcs->hw.bas;
1106 struct cardstate *cs = bcs->cs;
1107 struct isow_urbctx_t *done, *next, *ovfl;
1108 struct urb *urb;
1109 int status;
1110 struct usb_iso_packet_descriptor *ifd;
1111 int offset;
1112 unsigned long flags;
1113 int i;
1114 struct sk_buff *skb;
1115 int len;
1116 int rc;
1118 /* loop while completed URBs arrive in time */
1119 for (;;) {
1120 if (unlikely(!(ubc->running))) {
1121 gig_dbg(DEBUG_ISO, "%s: not running", __func__);
1122 return;
1125 /* retrieve completed URBs */
1126 spin_lock_irqsave(&ubc->isooutlock, flags);
1127 done = ubc->isooutdone;
1128 ubc->isooutdone = NULL;
1129 ovfl = ubc->isooutovfl;
1130 ubc->isooutovfl = NULL;
1131 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1132 if (ovfl) {
1133 dev_err(cs->dev, "isochronous write buffer underrun\n");
1134 error_hangup(bcs);
1135 break;
1137 if (!done)
1138 break;
1140 /* submit free URB if available */
1141 spin_lock_irqsave(&ubc->isooutlock, flags);
1142 next = ubc->isooutfree;
1143 ubc->isooutfree = NULL;
1144 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1145 if (next) {
1146 rc = submit_iso_write_urb(next);
1147 if (unlikely(rc <= 0 && rc != -ENODEV)) {
1148 /* could not submit URB, put it back */
1149 spin_lock_irqsave(&ubc->isooutlock, flags);
1150 if (ubc->isooutfree == NULL) {
1151 ubc->isooutfree = next;
1152 next = NULL;
1154 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1155 if (next) {
1156 /* couldn't put it back */
1157 dev_err(cs->dev,
1158 "losing isochronous write URB\n");
1159 error_hangup(bcs);
1164 /* process completed URB */
1165 urb = done->urb;
1166 status = done->status;
1167 switch (status) {
1168 case -EXDEV: /* partial completion */
1169 gig_dbg(DEBUG_ISO, "%s: URB partially completed",
1170 __func__);
1171 /* fall through - what's the difference anyway? */
1172 case 0: /* normal completion */
1173 /* inspect individual frames
1174 * assumptions (for lack of documentation):
1175 * - actual_length bytes of first frame in error are
1176 * successfully sent
1177 * - all following frames are not sent at all
1179 offset = done->limit; /* default (no error) */
1180 for (i = 0; i < BAS_NUMFRAMES; i++) {
1181 ifd = &urb->iso_frame_desc[i];
1182 if (ifd->status ||
1183 ifd->actual_length != ifd->length) {
1184 dev_warn(cs->dev,
1185 "isochronous write: frame %d: %s, "
1186 "only %d of %d bytes sent\n",
1187 i, get_usb_statmsg(ifd->status),
1188 ifd->actual_length, ifd->length);
1189 offset = (ifd->offset +
1190 ifd->actual_length)
1191 % BAS_OUTBUFSIZE;
1192 break;
1195 #ifdef CONFIG_GIGASET_DEBUG
1196 /* check assumption on remaining frames */
1197 for (; i < BAS_NUMFRAMES; i++) {
1198 ifd = &urb->iso_frame_desc[i];
1199 if (ifd->status != -EINPROGRESS
1200 || ifd->actual_length != 0) {
1201 dev_warn(cs->dev,
1202 "isochronous write: frame %d: %s, "
1203 "%d of %d bytes sent\n",
1204 i, get_usb_statmsg(ifd->status),
1205 ifd->actual_length, ifd->length);
1206 offset = (ifd->offset +
1207 ifd->actual_length)
1208 % BAS_OUTBUFSIZE;
1209 break;
1212 #endif
1213 break;
1214 case -EPIPE: /* stall - probably underrun */
1215 dev_err(cs->dev, "isochronous write stalled\n");
1216 error_hangup(bcs);
1217 break;
1218 default: /* severe trouble */
1219 dev_warn(cs->dev, "isochronous write: %s\n",
1220 get_usb_statmsg(status));
1223 /* mark the write buffer area covered by this URB as free */
1224 if (done->limit >= 0)
1225 ubc->isooutbuf->read = done->limit;
1227 /* mark URB as free */
1228 spin_lock_irqsave(&ubc->isooutlock, flags);
1229 next = ubc->isooutfree;
1230 ubc->isooutfree = done;
1231 spin_unlock_irqrestore(&ubc->isooutlock, flags);
1232 if (next) {
1233 /* only one URB still active - resubmit one */
1234 rc = submit_iso_write_urb(next);
1235 if (unlikely(rc <= 0 && rc != -ENODEV)) {
1236 /* couldn't submit */
1237 error_hangup(bcs);
1242 /* process queued SKBs */
1243 while ((skb = skb_dequeue(&bcs->squeue))) {
1244 /* copy to output buffer, doing L2 encapsulation */
1245 len = skb->len;
1246 if (gigaset_isoc_buildframe(bcs, skb->data, len) == -EAGAIN) {
1247 /* insufficient buffer space, push back onto queue */
1248 skb_queue_head(&bcs->squeue, skb);
1249 gig_dbg(DEBUG_ISO, "%s: skb requeued, qlen=%d",
1250 __func__, skb_queue_len(&bcs->squeue));
1251 break;
1253 skb_pull(skb, len);
1254 gigaset_skb_sent(bcs, skb);
1255 dev_kfree_skb_any(skb);
1259 /* Isochronous Read - Bottom Half */
1260 /* ============================== */
1262 /* read_iso_tasklet
1263 * tasklet scheduled when an isochronous input URB from the Gigaset device
1264 * has completed
1265 * parameter:
1266 * data B channel state structure
1268 static void read_iso_tasklet(unsigned long data)
1270 struct bc_state *bcs = (struct bc_state *) data;
1271 struct bas_bc_state *ubc = bcs->hw.bas;
1272 struct cardstate *cs = bcs->cs;
1273 struct urb *urb;
1274 int status;
1275 char *rcvbuf;
1276 unsigned long flags;
1277 int totleft, numbytes, offset, frame, rc;
1279 /* loop while more completed URBs arrive in the meantime */
1280 for (;;) {
1281 /* retrieve URB */
1282 spin_lock_irqsave(&ubc->isoinlock, flags);
1283 if (!(urb = ubc->isoindone)) {
1284 spin_unlock_irqrestore(&ubc->isoinlock, flags);
1285 return;
1287 status = ubc->isoinstatus;
1288 ubc->isoindone = NULL;
1289 if (unlikely(ubc->loststatus != -EINPROGRESS)) {
1290 dev_warn(cs->dev,
1291 "isochronous read overrun, "
1292 "dropped URB with status: %s, %d bytes lost\n",
1293 get_usb_statmsg(ubc->loststatus),
1294 ubc->isoinlost);
1295 ubc->loststatus = -EINPROGRESS;
1297 spin_unlock_irqrestore(&ubc->isoinlock, flags);
1299 if (unlikely(!(ubc->running))) {
1300 gig_dbg(DEBUG_ISO,
1301 "%s: channel not running, "
1302 "dropped URB with status: %s",
1303 __func__, get_usb_statmsg(status));
1304 return;
1307 switch (status) {
1308 case 0: /* normal completion */
1309 break;
1310 case -EXDEV: /* inspect individual frames
1311 (we do that anyway) */
1312 gig_dbg(DEBUG_ISO, "%s: URB partially completed",
1313 __func__);
1314 break;
1315 case -ENOENT:
1316 case -ECONNRESET:
1317 case -EINPROGRESS:
1318 gig_dbg(DEBUG_ISO, "%s: %s",
1319 __func__, get_usb_statmsg(status));
1320 continue; /* -> skip */
1321 case -EPIPE:
1322 dev_err(cs->dev, "isochronous read stalled\n");
1323 error_hangup(bcs);
1324 continue; /* -> skip */
1325 default: /* severe trouble */
1326 dev_warn(cs->dev, "isochronous read: %s\n",
1327 get_usb_statmsg(status));
1328 goto error;
1331 rcvbuf = urb->transfer_buffer;
1332 totleft = urb->actual_length;
1333 for (frame = 0; totleft > 0 && frame < BAS_NUMFRAMES; frame++) {
1334 if (unlikely(urb->iso_frame_desc[frame].status)) {
1335 dev_warn(cs->dev,
1336 "isochronous read: frame %d: %s\n",
1337 frame,
1338 get_usb_statmsg(
1339 urb->iso_frame_desc[frame].status));
1340 break;
1342 numbytes = urb->iso_frame_desc[frame].actual_length;
1343 if (unlikely(numbytes > BAS_MAXFRAME)) {
1344 dev_warn(cs->dev,
1345 "isochronous read: frame %d: "
1346 "numbytes (%d) > BAS_MAXFRAME\n",
1347 frame, numbytes);
1348 break;
1350 if (unlikely(numbytes > totleft)) {
1351 dev_warn(cs->dev,
1352 "isochronous read: frame %d: "
1353 "numbytes (%d) > totleft (%d)\n",
1354 frame, numbytes, totleft);
1355 break;
1357 offset = urb->iso_frame_desc[frame].offset;
1358 if (unlikely(offset + numbytes > BAS_INBUFSIZE)) {
1359 dev_warn(cs->dev,
1360 "isochronous read: frame %d: "
1361 "offset (%d) + numbytes (%d) "
1362 "> BAS_INBUFSIZE\n",
1363 frame, offset, numbytes);
1364 break;
1366 gigaset_isoc_receive(rcvbuf + offset, numbytes, bcs);
1367 totleft -= numbytes;
1369 if (unlikely(totleft > 0))
1370 dev_warn(cs->dev,
1371 "isochronous read: %d data bytes missing\n",
1372 totleft);
1374 error:
1375 /* URB processed, resubmit */
1376 for (frame = 0; frame < BAS_NUMFRAMES; frame++) {
1377 urb->iso_frame_desc[frame].status = 0;
1378 urb->iso_frame_desc[frame].actual_length = 0;
1380 /* urb->dev is clobbered by USB subsystem */
1381 urb->dev = bcs->cs->hw.bas->udev;
1382 urb->transfer_flags = URB_ISO_ASAP;
1383 urb->number_of_packets = BAS_NUMFRAMES;
1384 rc = usb_submit_urb(urb, GFP_ATOMIC);
1385 if (unlikely(rc != 0 && rc != -ENODEV)) {
1386 dev_err(cs->dev,
1387 "could not resubmit isochronous read URB: %s\n",
1388 get_usb_rcmsg(rc));
1389 dump_urb(DEBUG_ISO, "resubmit iso read", urb);
1390 error_hangup(bcs);
1395 /* Channel Operations */
1396 /* ================== */
1398 /* req_timeout
1399 * timeout routine for control output request
1400 * argument:
1401 * B channel control structure
1403 static void req_timeout(unsigned long data)
1405 struct bc_state *bcs = (struct bc_state *) data;
1406 struct bas_cardstate *ucs = bcs->cs->hw.bas;
1407 int pending;
1408 unsigned long flags;
1410 check_pending(ucs);
1412 spin_lock_irqsave(&ucs->lock, flags);
1413 pending = ucs->pending;
1414 ucs->pending = 0;
1415 spin_unlock_irqrestore(&ucs->lock, flags);
1417 switch (pending) {
1418 case 0: /* no pending request */
1419 gig_dbg(DEBUG_USBREQ, "%s: no request pending", __func__);
1420 break;
1422 case HD_OPEN_ATCHANNEL:
1423 dev_err(bcs->cs->dev, "timeout opening AT channel\n");
1424 error_reset(bcs->cs);
1425 break;
1427 case HD_OPEN_B2CHANNEL:
1428 case HD_OPEN_B1CHANNEL:
1429 dev_err(bcs->cs->dev, "timeout opening channel %d\n",
1430 bcs->channel + 1);
1431 error_hangup(bcs);
1432 break;
1434 case HD_CLOSE_ATCHANNEL:
1435 dev_err(bcs->cs->dev, "timeout closing AT channel\n");
1436 break;
1438 case HD_CLOSE_B2CHANNEL:
1439 case HD_CLOSE_B1CHANNEL:
1440 dev_err(bcs->cs->dev, "timeout closing channel %d\n",
1441 bcs->channel + 1);
1442 error_reset(bcs->cs);
1443 break;
1445 default:
1446 dev_warn(bcs->cs->dev, "request 0x%02x timed out, clearing\n",
1447 pending);
1450 wake_up(&ucs->waitqueue);
1453 /* write_ctrl_callback
1454 * USB completion handler for control pipe output
1455 * called by the USB subsystem in interrupt context
1456 * parameter:
1457 * urb USB request block of completed request
1458 * urb->context = hardware specific controller state structure
1460 static void write_ctrl_callback(struct urb *urb)
1462 struct bas_cardstate *ucs = urb->context;
1463 int status = urb->status;
1464 int rc;
1465 unsigned long flags;
1467 /* check status */
1468 switch (status) {
1469 case 0: /* normal completion */
1470 spin_lock_irqsave(&ucs->lock, flags);
1471 switch (ucs->pending) {
1472 case HD_DEVICE_INIT_ACK: /* no reply expected */
1473 del_timer(&ucs->timer_ctrl);
1474 ucs->pending = 0;
1475 break;
1477 spin_unlock_irqrestore(&ucs->lock, flags);
1478 return;
1480 case -ENOENT: /* cancelled */
1481 case -ECONNRESET: /* cancelled (async) */
1482 case -EINPROGRESS: /* pending */
1483 case -ENODEV: /* device removed */
1484 case -ESHUTDOWN: /* device shut down */
1485 /* ignore silently */
1486 gig_dbg(DEBUG_USBREQ, "%s: %s",
1487 __func__, get_usb_statmsg(status));
1488 break;
1490 default: /* any failure */
1491 /* don't retry if suspend requested */
1492 if (++ucs->retry_ctrl > BAS_RETRY ||
1493 (ucs->basstate & BS_SUSPEND)) {
1494 dev_err(&ucs->interface->dev,
1495 "control request 0x%02x failed: %s\n",
1496 ucs->dr_ctrl.bRequest,
1497 get_usb_statmsg(status));
1498 break; /* give up */
1500 dev_notice(&ucs->interface->dev,
1501 "control request 0x%02x: %s, retry %d\n",
1502 ucs->dr_ctrl.bRequest, get_usb_statmsg(status),
1503 ucs->retry_ctrl);
1504 /* urb->dev is clobbered by USB subsystem */
1505 urb->dev = ucs->udev;
1506 rc = usb_submit_urb(urb, GFP_ATOMIC);
1507 if (unlikely(rc)) {
1508 dev_err(&ucs->interface->dev,
1509 "could not resubmit request 0x%02x: %s\n",
1510 ucs->dr_ctrl.bRequest, get_usb_rcmsg(rc));
1511 break;
1513 /* resubmitted */
1514 return;
1517 /* failed, clear pending request */
1518 spin_lock_irqsave(&ucs->lock, flags);
1519 del_timer(&ucs->timer_ctrl);
1520 ucs->pending = 0;
1521 spin_unlock_irqrestore(&ucs->lock, flags);
1522 wake_up(&ucs->waitqueue);
1525 /* req_submit
1526 * submit a control output request without message buffer to the Gigaset base
1527 * and optionally start a timeout
1528 * parameters:
1529 * bcs B channel control structure
1530 * req control request code (HD_*)
1531 * val control request parameter value (set to 0 if unused)
1532 * timeout timeout in seconds (0: no timeout)
1533 * return value:
1534 * 0 on success
1535 * -EBUSY if another request is pending
1536 * any URB submission error code
1538 static int req_submit(struct bc_state *bcs, int req, int val, int timeout)
1540 struct bas_cardstate *ucs = bcs->cs->hw.bas;
1541 int ret;
1542 unsigned long flags;
1544 gig_dbg(DEBUG_USBREQ, "-------> 0x%02x (%d)", req, val);
1546 spin_lock_irqsave(&ucs->lock, flags);
1547 if (ucs->pending) {
1548 spin_unlock_irqrestore(&ucs->lock, flags);
1549 dev_err(bcs->cs->dev,
1550 "submission of request 0x%02x failed: "
1551 "request 0x%02x still pending\n",
1552 req, ucs->pending);
1553 return -EBUSY;
1556 ucs->dr_ctrl.bRequestType = OUT_VENDOR_REQ;
1557 ucs->dr_ctrl.bRequest = req;
1558 ucs->dr_ctrl.wValue = cpu_to_le16(val);
1559 ucs->dr_ctrl.wIndex = 0;
1560 ucs->dr_ctrl.wLength = 0;
1561 usb_fill_control_urb(ucs->urb_ctrl, ucs->udev,
1562 usb_sndctrlpipe(ucs->udev, 0),
1563 (unsigned char*) &ucs->dr_ctrl, NULL, 0,
1564 write_ctrl_callback, ucs);
1565 ucs->retry_ctrl = 0;
1566 ret = usb_submit_urb(ucs->urb_ctrl, GFP_ATOMIC);
1567 if (unlikely(ret)) {
1568 dev_err(bcs->cs->dev, "could not submit request 0x%02x: %s\n",
1569 req, get_usb_rcmsg(ret));
1570 spin_unlock_irqrestore(&ucs->lock, flags);
1571 return ret;
1573 ucs->pending = req;
1575 if (timeout > 0) {
1576 gig_dbg(DEBUG_USBREQ, "setting timeout of %d/10 secs", timeout);
1577 ucs->timer_ctrl.expires = jiffies + timeout * HZ / 10;
1578 ucs->timer_ctrl.data = (unsigned long) bcs;
1579 ucs->timer_ctrl.function = req_timeout;
1580 add_timer(&ucs->timer_ctrl);
1583 spin_unlock_irqrestore(&ucs->lock, flags);
1584 return 0;
1587 /* gigaset_init_bchannel
1588 * called by common.c to connect a B channel
1589 * initialize isochronous I/O and tell the Gigaset base to open the channel
1590 * argument:
1591 * B channel control structure
1592 * return value:
1593 * 0 on success, error code < 0 on error
1595 static int gigaset_init_bchannel(struct bc_state *bcs)
1597 struct cardstate *cs = bcs->cs;
1598 int req, ret;
1599 unsigned long flags;
1601 spin_lock_irqsave(&cs->lock, flags);
1602 if (unlikely(!cs->connected)) {
1603 gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__);
1604 spin_unlock_irqrestore(&cs->lock, flags);
1605 return -ENODEV;
1608 if (cs->hw.bas->basstate & BS_SUSPEND) {
1609 dev_notice(cs->dev,
1610 "not starting isochronous I/O, "
1611 "suspend in progress\n");
1612 spin_unlock_irqrestore(&cs->lock, flags);
1613 return -EHOSTUNREACH;
1616 if ((ret = starturbs(bcs)) < 0) {
1617 dev_err(cs->dev,
1618 "could not start isochronous I/O for channel B%d: %s\n",
1619 bcs->channel + 1,
1620 ret == -EFAULT ? "null URB" : get_usb_rcmsg(ret));
1621 if (ret != -ENODEV)
1622 error_hangup(bcs);
1623 spin_unlock_irqrestore(&cs->lock, flags);
1624 return ret;
1627 req = bcs->channel ? HD_OPEN_B2CHANNEL : HD_OPEN_B1CHANNEL;
1628 if ((ret = req_submit(bcs, req, 0, BAS_TIMEOUT)) < 0) {
1629 dev_err(cs->dev, "could not open channel B%d\n",
1630 bcs->channel + 1);
1631 stopurbs(bcs->hw.bas);
1632 if (ret != -ENODEV)
1633 error_hangup(bcs);
1636 spin_unlock_irqrestore(&cs->lock, flags);
1637 return ret;
1640 /* gigaset_close_bchannel
1641 * called by common.c to disconnect a B channel
1642 * tell the Gigaset base to close the channel
1643 * stopping isochronous I/O and LL notification will be done when the
1644 * acknowledgement for the close arrives
1645 * argument:
1646 * B channel control structure
1647 * return value:
1648 * 0 on success, error code < 0 on error
1650 static int gigaset_close_bchannel(struct bc_state *bcs)
1652 struct cardstate *cs = bcs->cs;
1653 int req, ret;
1654 unsigned long flags;
1656 spin_lock_irqsave(&cs->lock, flags);
1657 if (unlikely(!cs->connected)) {
1658 spin_unlock_irqrestore(&cs->lock, flags);
1659 gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__);
1660 return -ENODEV;
1663 if (!(cs->hw.bas->basstate & (bcs->channel ? BS_B2OPEN : BS_B1OPEN))) {
1664 /* channel not running: just signal common.c */
1665 spin_unlock_irqrestore(&cs->lock, flags);
1666 gigaset_bchannel_down(bcs);
1667 return 0;
1670 /* channel running: tell device to close it */
1671 req = bcs->channel ? HD_CLOSE_B2CHANNEL : HD_CLOSE_B1CHANNEL;
1672 if ((ret = req_submit(bcs, req, 0, BAS_TIMEOUT)) < 0)
1673 dev_err(cs->dev, "closing channel B%d failed\n",
1674 bcs->channel + 1);
1676 spin_unlock_irqrestore(&cs->lock, flags);
1677 return ret;
1680 /* Device Operations */
1681 /* ================= */
1683 /* complete_cb
1684 * unqueue first command buffer from queue, waking any sleepers
1685 * must be called with cs->cmdlock held
1686 * parameter:
1687 * cs controller state structure
1689 static void complete_cb(struct cardstate *cs)
1691 struct cmdbuf_t *cb = cs->cmdbuf;
1693 /* unqueue completed buffer */
1694 cs->cmdbytes -= cs->curlen;
1695 gig_dbg(DEBUG_TRANSCMD|DEBUG_LOCKCMD,
1696 "write_command: sent %u bytes, %u left",
1697 cs->curlen, cs->cmdbytes);
1698 if ((cs->cmdbuf = cb->next) != NULL) {
1699 cs->cmdbuf->prev = NULL;
1700 cs->curlen = cs->cmdbuf->len;
1701 } else {
1702 cs->lastcmdbuf = NULL;
1703 cs->curlen = 0;
1706 if (cb->wake_tasklet)
1707 tasklet_schedule(cb->wake_tasklet);
1709 kfree(cb);
1712 /* write_command_callback
1713 * USB completion handler for AT command transmission
1714 * called by the USB subsystem in interrupt context
1715 * parameter:
1716 * urb USB request block of completed request
1717 * urb->context = controller state structure
1719 static void write_command_callback(struct urb *urb)
1721 struct cardstate *cs = urb->context;
1722 struct bas_cardstate *ucs = cs->hw.bas;
1723 int status = urb->status;
1724 unsigned long flags;
1726 update_basstate(ucs, 0, BS_ATWRPEND);
1727 wake_up(&ucs->waitqueue);
1729 /* check status */
1730 switch (status) {
1731 case 0: /* normal completion */
1732 break;
1733 case -ENOENT: /* cancelled */
1734 case -ECONNRESET: /* cancelled (async) */
1735 case -EINPROGRESS: /* pending */
1736 case -ENODEV: /* device removed */
1737 case -ESHUTDOWN: /* device shut down */
1738 /* ignore silently */
1739 gig_dbg(DEBUG_USBREQ, "%s: %s",
1740 __func__, get_usb_statmsg(status));
1741 return;
1742 default: /* any failure */
1743 if (++ucs->retry_cmd_out > BAS_RETRY) {
1744 dev_warn(cs->dev,
1745 "command write: %s, "
1746 "giving up after %d retries\n",
1747 get_usb_statmsg(status),
1748 ucs->retry_cmd_out);
1749 break;
1751 if (ucs->basstate & BS_SUSPEND) {
1752 dev_warn(cs->dev,
1753 "command write: %s, "
1754 "won't retry - suspend requested\n",
1755 get_usb_statmsg(status));
1756 break;
1758 if (cs->cmdbuf == NULL) {
1759 dev_warn(cs->dev,
1760 "command write: %s, "
1761 "cannot retry - cmdbuf gone\n",
1762 get_usb_statmsg(status));
1763 break;
1765 dev_notice(cs->dev, "command write: %s, retry %d\n",
1766 get_usb_statmsg(status), ucs->retry_cmd_out);
1767 if (atwrite_submit(cs, cs->cmdbuf->buf, cs->cmdbuf->len) >= 0)
1768 /* resubmitted - bypass regular exit block */
1769 return;
1770 /* command send failed, assume base still waiting */
1771 update_basstate(ucs, BS_ATREADY, 0);
1774 spin_lock_irqsave(&cs->cmdlock, flags);
1775 if (cs->cmdbuf != NULL)
1776 complete_cb(cs);
1777 spin_unlock_irqrestore(&cs->cmdlock, flags);
1780 /* atrdy_timeout
1781 * timeout routine for AT command transmission
1782 * argument:
1783 * controller state structure
1785 static void atrdy_timeout(unsigned long data)
1787 struct cardstate *cs = (struct cardstate *) data;
1788 struct bas_cardstate *ucs = cs->hw.bas;
1790 dev_warn(cs->dev, "timeout waiting for HD_READY_SEND_ATDATA\n");
1792 /* fake the missing signal - what else can I do? */
1793 update_basstate(ucs, BS_ATREADY, BS_ATTIMER);
1794 start_cbsend(cs);
1797 /* atwrite_submit
1798 * submit an HD_WRITE_ATMESSAGE command URB
1799 * parameters:
1800 * cs controller state structure
1801 * buf buffer containing command to send
1802 * len length of command to send
1803 * return value:
1804 * 0 on success
1805 * -EBUSY if another request is pending
1806 * any URB submission error code
1808 static int atwrite_submit(struct cardstate *cs, unsigned char *buf, int len)
1810 struct bas_cardstate *ucs = cs->hw.bas;
1811 int rc;
1813 gig_dbg(DEBUG_USBREQ, "-------> HD_WRITE_ATMESSAGE (%d)", len);
1815 if (update_basstate(ucs, BS_ATWRPEND, 0) & BS_ATWRPEND) {
1816 dev_err(cs->dev,
1817 "could not submit HD_WRITE_ATMESSAGE: URB busy\n");
1818 return -EBUSY;
1821 ucs->dr_cmd_out.bRequestType = OUT_VENDOR_REQ;
1822 ucs->dr_cmd_out.bRequest = HD_WRITE_ATMESSAGE;
1823 ucs->dr_cmd_out.wValue = 0;
1824 ucs->dr_cmd_out.wIndex = 0;
1825 ucs->dr_cmd_out.wLength = cpu_to_le16(len);
1826 usb_fill_control_urb(ucs->urb_cmd_out, ucs->udev,
1827 usb_sndctrlpipe(ucs->udev, 0),
1828 (unsigned char*) &ucs->dr_cmd_out, buf, len,
1829 write_command_callback, cs);
1830 rc = usb_submit_urb(ucs->urb_cmd_out, GFP_ATOMIC);
1831 if (unlikely(rc)) {
1832 update_basstate(ucs, 0, BS_ATWRPEND);
1833 dev_err(cs->dev, "could not submit HD_WRITE_ATMESSAGE: %s\n",
1834 get_usb_rcmsg(rc));
1835 return rc;
1838 /* submitted successfully, start timeout if necessary */
1839 if (!(update_basstate(ucs, BS_ATTIMER, BS_ATREADY) & BS_ATTIMER)) {
1840 gig_dbg(DEBUG_OUTPUT, "setting ATREADY timeout of %d/10 secs",
1841 ATRDY_TIMEOUT);
1842 ucs->timer_atrdy.expires = jiffies + ATRDY_TIMEOUT * HZ / 10;
1843 ucs->timer_atrdy.data = (unsigned long) cs;
1844 ucs->timer_atrdy.function = atrdy_timeout;
1845 add_timer(&ucs->timer_atrdy);
1847 return 0;
1850 /* start_cbsend
1851 * start transmission of AT command queue if necessary
1852 * parameter:
1853 * cs controller state structure
1854 * return value:
1855 * 0 on success
1856 * error code < 0 on error
1858 static int start_cbsend(struct cardstate *cs)
1860 struct cmdbuf_t *cb;
1861 struct bas_cardstate *ucs = cs->hw.bas;
1862 unsigned long flags;
1863 int rc;
1864 int retval = 0;
1866 /* check if suspend requested */
1867 if (ucs->basstate & BS_SUSPEND) {
1868 gig_dbg(DEBUG_TRANSCMD|DEBUG_LOCKCMD, "suspending");
1869 return -EHOSTUNREACH;
1872 /* check if AT channel is open */
1873 if (!(ucs->basstate & BS_ATOPEN)) {
1874 gig_dbg(DEBUG_TRANSCMD|DEBUG_LOCKCMD, "AT channel not open");
1875 rc = req_submit(cs->bcs, HD_OPEN_ATCHANNEL, 0, BAS_TIMEOUT);
1876 if (rc < 0) {
1877 /* flush command queue */
1878 spin_lock_irqsave(&cs->cmdlock, flags);
1879 while (cs->cmdbuf != NULL)
1880 complete_cb(cs);
1881 spin_unlock_irqrestore(&cs->cmdlock, flags);
1883 return rc;
1886 /* try to send first command in queue */
1887 spin_lock_irqsave(&cs->cmdlock, flags);
1889 while ((cb = cs->cmdbuf) != NULL && (ucs->basstate & BS_ATREADY)) {
1890 ucs->retry_cmd_out = 0;
1891 rc = atwrite_submit(cs, cb->buf, cb->len);
1892 if (unlikely(rc)) {
1893 retval = rc;
1894 complete_cb(cs);
1898 spin_unlock_irqrestore(&cs->cmdlock, flags);
1899 return retval;
1902 /* gigaset_write_cmd
1903 * This function is called by the device independent part of the driver
1904 * to transmit an AT command string to the Gigaset device.
1905 * It encapsulates the device specific method for transmission over the
1906 * direct USB connection to the base.
1907 * The command string is added to the queue of commands to send, and
1908 * USB transmission is started if necessary.
1909 * parameters:
1910 * cs controller state structure
1911 * buf command string to send
1912 * len number of bytes to send (max. IF_WRITEBUF)
1913 * wake_tasklet tasklet to run when transmission is completed
1914 * (NULL if none)
1915 * return value:
1916 * number of bytes queued on success
1917 * error code < 0 on error
1919 static int gigaset_write_cmd(struct cardstate *cs,
1920 const unsigned char *buf, int len,
1921 struct tasklet_struct *wake_tasklet)
1923 struct cmdbuf_t *cb;
1924 unsigned long flags;
1925 int rc;
1927 gigaset_dbg_buffer(cs->mstate != MS_LOCKED ?
1928 DEBUG_TRANSCMD : DEBUG_LOCKCMD,
1929 "CMD Transmit", len, buf);
1931 if (len <= 0) {
1932 /* nothing to do */
1933 rc = 0;
1934 goto notqueued;
1937 if (len > IF_WRITEBUF)
1938 len = IF_WRITEBUF;
1939 if (!(cb = kmalloc(sizeof(struct cmdbuf_t) + len, GFP_ATOMIC))) {
1940 dev_err(cs->dev, "%s: out of memory\n", __func__);
1941 rc = -ENOMEM;
1942 goto notqueued;
1945 memcpy(cb->buf, buf, len);
1946 cb->len = len;
1947 cb->offset = 0;
1948 cb->next = NULL;
1949 cb->wake_tasklet = wake_tasklet;
1951 spin_lock_irqsave(&cs->cmdlock, flags);
1952 cb->prev = cs->lastcmdbuf;
1953 if (cs->lastcmdbuf)
1954 cs->lastcmdbuf->next = cb;
1955 else {
1956 cs->cmdbuf = cb;
1957 cs->curlen = len;
1959 cs->cmdbytes += len;
1960 cs->lastcmdbuf = cb;
1961 spin_unlock_irqrestore(&cs->cmdlock, flags);
1963 spin_lock_irqsave(&cs->lock, flags);
1964 if (unlikely(!cs->connected)) {
1965 spin_unlock_irqrestore(&cs->lock, flags);
1966 gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__);
1967 /* flush command queue */
1968 spin_lock_irqsave(&cs->cmdlock, flags);
1969 while (cs->cmdbuf != NULL)
1970 complete_cb(cs);
1971 spin_unlock_irqrestore(&cs->cmdlock, flags);
1972 return -ENODEV;
1974 rc = start_cbsend(cs);
1975 spin_unlock_irqrestore(&cs->lock, flags);
1976 return rc < 0 ? rc : len;
1978 notqueued: /* request handled without queuing */
1979 if (wake_tasklet)
1980 tasklet_schedule(wake_tasklet);
1981 return rc;
1984 /* gigaset_write_room
1985 * tty_driver.write_room interface routine
1986 * return number of characters the driver will accept to be written via
1987 * gigaset_write_cmd
1988 * parameter:
1989 * controller state structure
1990 * return value:
1991 * number of characters
1993 static int gigaset_write_room(struct cardstate *cs)
1995 return IF_WRITEBUF;
1998 /* gigaset_chars_in_buffer
1999 * tty_driver.chars_in_buffer interface routine
2000 * return number of characters waiting to be sent
2001 * parameter:
2002 * controller state structure
2003 * return value:
2004 * number of characters
2006 static int gigaset_chars_in_buffer(struct cardstate *cs)
2008 return cs->cmdbytes;
2011 /* gigaset_brkchars
2012 * implementation of ioctl(GIGASET_BRKCHARS)
2013 * parameter:
2014 * controller state structure
2015 * return value:
2016 * -EINVAL (unimplemented function)
2018 static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6])
2020 return -EINVAL;
2024 /* Device Initialization/Shutdown */
2025 /* ============================== */
2027 /* Free hardware dependent part of the B channel structure
2028 * parameter:
2029 * bcs B channel structure
2030 * return value:
2031 * !=0 on success
2033 static int gigaset_freebcshw(struct bc_state *bcs)
2035 struct bas_bc_state *ubc = bcs->hw.bas;
2036 int i;
2038 if (!ubc)
2039 return 0;
2041 /* kill URBs and tasklets before freeing - better safe than sorry */
2042 ubc->running = 0;
2043 gig_dbg(DEBUG_INIT, "%s: killing iso URBs", __func__);
2044 for (i = 0; i < BAS_OUTURBS; ++i) {
2045 usb_kill_urb(ubc->isoouturbs[i].urb);
2046 usb_free_urb(ubc->isoouturbs[i].urb);
2048 for (i = 0; i < BAS_INURBS; ++i) {
2049 usb_kill_urb(ubc->isoinurbs[i]);
2050 usb_free_urb(ubc->isoinurbs[i]);
2052 tasklet_kill(&ubc->sent_tasklet);
2053 tasklet_kill(&ubc->rcvd_tasklet);
2054 kfree(ubc->isooutbuf);
2055 kfree(ubc);
2056 bcs->hw.bas = NULL;
2057 return 1;
2060 /* Initialize hardware dependent part of the B channel structure
2061 * parameter:
2062 * bcs B channel structure
2063 * return value:
2064 * !=0 on success
2066 static int gigaset_initbcshw(struct bc_state *bcs)
2068 int i;
2069 struct bas_bc_state *ubc;
2071 bcs->hw.bas = ubc = kmalloc(sizeof(struct bas_bc_state), GFP_KERNEL);
2072 if (!ubc) {
2073 pr_err("out of memory\n");
2074 return 0;
2077 ubc->running = 0;
2078 atomic_set(&ubc->corrbytes, 0);
2079 spin_lock_init(&ubc->isooutlock);
2080 for (i = 0; i < BAS_OUTURBS; ++i) {
2081 ubc->isoouturbs[i].urb = NULL;
2082 ubc->isoouturbs[i].bcs = bcs;
2084 ubc->isooutdone = ubc->isooutfree = ubc->isooutovfl = NULL;
2085 ubc->numsub = 0;
2086 if (!(ubc->isooutbuf = kmalloc(sizeof(struct isowbuf_t), GFP_KERNEL))) {
2087 pr_err("out of memory\n");
2088 kfree(ubc);
2089 bcs->hw.bas = NULL;
2090 return 0;
2092 tasklet_init(&ubc->sent_tasklet,
2093 &write_iso_tasklet, (unsigned long) bcs);
2095 spin_lock_init(&ubc->isoinlock);
2096 for (i = 0; i < BAS_INURBS; ++i)
2097 ubc->isoinurbs[i] = NULL;
2098 ubc->isoindone = NULL;
2099 ubc->loststatus = -EINPROGRESS;
2100 ubc->isoinlost = 0;
2101 ubc->seqlen = 0;
2102 ubc->inbyte = 0;
2103 ubc->inbits = 0;
2104 ubc->goodbytes = 0;
2105 ubc->alignerrs = 0;
2106 ubc->fcserrs = 0;
2107 ubc->frameerrs = 0;
2108 ubc->giants = 0;
2109 ubc->runts = 0;
2110 ubc->aborts = 0;
2111 ubc->shared0s = 0;
2112 ubc->stolen0s = 0;
2113 tasklet_init(&ubc->rcvd_tasklet,
2114 &read_iso_tasklet, (unsigned long) bcs);
2115 return 1;
2118 static void gigaset_reinitbcshw(struct bc_state *bcs)
2120 struct bas_bc_state *ubc = bcs->hw.bas;
2122 bcs->hw.bas->running = 0;
2123 atomic_set(&bcs->hw.bas->corrbytes, 0);
2124 bcs->hw.bas->numsub = 0;
2125 spin_lock_init(&ubc->isooutlock);
2126 spin_lock_init(&ubc->isoinlock);
2127 ubc->loststatus = -EINPROGRESS;
2130 static void gigaset_freecshw(struct cardstate *cs)
2132 /* timers, URBs and rcvbuf are disposed of in disconnect */
2133 kfree(cs->hw.bas->int_in_buf);
2134 kfree(cs->hw.bas);
2135 cs->hw.bas = NULL;
2138 static int gigaset_initcshw(struct cardstate *cs)
2140 struct bas_cardstate *ucs;
2142 cs->hw.bas = ucs = kmalloc(sizeof *ucs, GFP_KERNEL);
2143 if (!ucs) {
2144 pr_err("out of memory\n");
2145 return 0;
2147 ucs->int_in_buf = kmalloc(IP_MSGSIZE, GFP_KERNEL);
2148 if (!ucs->int_in_buf) {
2149 kfree(ucs);
2150 pr_err("out of memory\n");
2151 return 0;
2154 ucs->urb_cmd_in = NULL;
2155 ucs->urb_cmd_out = NULL;
2156 ucs->rcvbuf = NULL;
2157 ucs->rcvbuf_size = 0;
2159 spin_lock_init(&ucs->lock);
2160 ucs->pending = 0;
2162 ucs->basstate = 0;
2163 init_timer(&ucs->timer_ctrl);
2164 init_timer(&ucs->timer_atrdy);
2165 init_timer(&ucs->timer_cmd_in);
2166 init_waitqueue_head(&ucs->waitqueue);
2168 return 1;
2171 /* freeurbs
2172 * unlink and deallocate all URBs unconditionally
2173 * caller must make sure that no commands are still in progress
2174 * parameter:
2175 * cs controller state structure
2177 static void freeurbs(struct cardstate *cs)
2179 struct bas_cardstate *ucs = cs->hw.bas;
2180 struct bas_bc_state *ubc;
2181 int i, j;
2183 gig_dbg(DEBUG_INIT, "%s: killing URBs", __func__);
2184 for (j = 0; j < BAS_CHANNELS; ++j) {
2185 ubc = cs->bcs[j].hw.bas;
2186 for (i = 0; i < BAS_OUTURBS; ++i) {
2187 usb_kill_urb(ubc->isoouturbs[i].urb);
2188 usb_free_urb(ubc->isoouturbs[i].urb);
2189 ubc->isoouturbs[i].urb = NULL;
2191 for (i = 0; i < BAS_INURBS; ++i) {
2192 usb_kill_urb(ubc->isoinurbs[i]);
2193 usb_free_urb(ubc->isoinurbs[i]);
2194 ubc->isoinurbs[i] = NULL;
2197 usb_kill_urb(ucs->urb_int_in);
2198 usb_free_urb(ucs->urb_int_in);
2199 ucs->urb_int_in = NULL;
2200 usb_kill_urb(ucs->urb_cmd_out);
2201 usb_free_urb(ucs->urb_cmd_out);
2202 ucs->urb_cmd_out = NULL;
2203 usb_kill_urb(ucs->urb_cmd_in);
2204 usb_free_urb(ucs->urb_cmd_in);
2205 ucs->urb_cmd_in = NULL;
2206 usb_kill_urb(ucs->urb_ctrl);
2207 usb_free_urb(ucs->urb_ctrl);
2208 ucs->urb_ctrl = NULL;
2211 /* gigaset_probe
2212 * This function is called when a new USB device is connected.
2213 * It checks whether the new device is handled by this driver.
2215 static int gigaset_probe(struct usb_interface *interface,
2216 const struct usb_device_id *id)
2218 struct usb_host_interface *hostif;
2219 struct usb_device *udev = interface_to_usbdev(interface);
2220 struct cardstate *cs = NULL;
2221 struct bas_cardstate *ucs = NULL;
2222 struct bas_bc_state *ubc;
2223 struct usb_endpoint_descriptor *endpoint;
2224 int i, j;
2225 int rc;
2227 gig_dbg(DEBUG_ANY,
2228 "%s: Check if device matches .. (Vendor: 0x%x, Product: 0x%x)",
2229 __func__, le16_to_cpu(udev->descriptor.idVendor),
2230 le16_to_cpu(udev->descriptor.idProduct));
2232 /* set required alternate setting */
2233 hostif = interface->cur_altsetting;
2234 if (hostif->desc.bAlternateSetting != 3) {
2235 gig_dbg(DEBUG_ANY,
2236 "%s: wrong alternate setting %d - trying to switch",
2237 __func__, hostif->desc.bAlternateSetting);
2238 if (usb_set_interface(udev, hostif->desc.bInterfaceNumber, 3) < 0) {
2239 dev_warn(&udev->dev, "usb_set_interface failed, "
2240 "device %d interface %d altsetting %d\n",
2241 udev->devnum, hostif->desc.bInterfaceNumber,
2242 hostif->desc.bAlternateSetting);
2243 return -ENODEV;
2245 hostif = interface->cur_altsetting;
2248 /* Reject application specific interfaces
2250 if (hostif->desc.bInterfaceClass != 255) {
2251 dev_warn(&udev->dev, "%s: bInterfaceClass == %d\n",
2252 __func__, hostif->desc.bInterfaceClass);
2253 return -ENODEV;
2256 dev_info(&udev->dev,
2257 "%s: Device matched (Vendor: 0x%x, Product: 0x%x)\n",
2258 __func__, le16_to_cpu(udev->descriptor.idVendor),
2259 le16_to_cpu(udev->descriptor.idProduct));
2261 /* allocate memory for our device state and intialize it */
2262 cs = gigaset_initcs(driver, BAS_CHANNELS, 0, 0, cidmode,
2263 GIGASET_MODULENAME);
2264 if (!cs)
2265 return -ENODEV;
2266 ucs = cs->hw.bas;
2268 /* save off device structure ptrs for later use */
2269 usb_get_dev(udev);
2270 ucs->udev = udev;
2271 ucs->interface = interface;
2272 cs->dev = &interface->dev;
2274 /* allocate URBs:
2275 * - one for the interrupt pipe
2276 * - three for the different uses of the default control pipe
2277 * - three for each isochronous pipe
2279 if (!(ucs->urb_int_in = usb_alloc_urb(0, GFP_KERNEL)) ||
2280 !(ucs->urb_cmd_in = usb_alloc_urb(0, GFP_KERNEL)) ||
2281 !(ucs->urb_cmd_out = usb_alloc_urb(0, GFP_KERNEL)) ||
2282 !(ucs->urb_ctrl = usb_alloc_urb(0, GFP_KERNEL)))
2283 goto allocerr;
2285 for (j = 0; j < BAS_CHANNELS; ++j) {
2286 ubc = cs->bcs[j].hw.bas;
2287 for (i = 0; i < BAS_OUTURBS; ++i)
2288 if (!(ubc->isoouturbs[i].urb =
2289 usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL)))
2290 goto allocerr;
2291 for (i = 0; i < BAS_INURBS; ++i)
2292 if (!(ubc->isoinurbs[i] =
2293 usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL)))
2294 goto allocerr;
2297 ucs->rcvbuf = NULL;
2298 ucs->rcvbuf_size = 0;
2300 /* Fill the interrupt urb and send it to the core */
2301 endpoint = &hostif->endpoint[0].desc;
2302 usb_fill_int_urb(ucs->urb_int_in, udev,
2303 usb_rcvintpipe(udev,
2304 (endpoint->bEndpointAddress) & 0x0f),
2305 ucs->int_in_buf, IP_MSGSIZE, read_int_callback, cs,
2306 endpoint->bInterval);
2307 if ((rc = usb_submit_urb(ucs->urb_int_in, GFP_KERNEL)) != 0) {
2308 dev_err(cs->dev, "could not submit interrupt URB: %s\n",
2309 get_usb_rcmsg(rc));
2310 goto error;
2313 /* tell the device that the driver is ready */
2314 if ((rc = req_submit(cs->bcs, HD_DEVICE_INIT_ACK, 0, 0)) != 0)
2315 goto error;
2317 /* tell common part that the device is ready */
2318 if (startmode == SM_LOCKED)
2319 cs->mstate = MS_LOCKED;
2321 /* save address of controller structure */
2322 usb_set_intfdata(interface, cs);
2324 if (!gigaset_start(cs))
2325 goto error;
2327 return 0;
2329 allocerr:
2330 dev_err(cs->dev, "could not allocate URBs\n");
2331 error:
2332 freeurbs(cs);
2333 usb_set_intfdata(interface, NULL);
2334 gigaset_freecs(cs);
2335 return -ENODEV;
2338 /* gigaset_disconnect
2339 * This function is called when the Gigaset base is unplugged.
2341 static void gigaset_disconnect(struct usb_interface *interface)
2343 struct cardstate *cs;
2344 struct bas_cardstate *ucs;
2345 int j;
2347 cs = usb_get_intfdata(interface);
2349 ucs = cs->hw.bas;
2351 dev_info(cs->dev, "disconnecting Gigaset base\n");
2353 /* mark base as not ready, all channels disconnected */
2354 ucs->basstate = 0;
2356 /* tell LL all channels are down */
2357 for (j = 0; j < BAS_CHANNELS; ++j)
2358 gigaset_bchannel_down(cs->bcs + j);
2360 /* stop driver (common part) */
2361 gigaset_stop(cs);
2363 /* stop timers and URBs, free ressources */
2364 del_timer_sync(&ucs->timer_ctrl);
2365 del_timer_sync(&ucs->timer_atrdy);
2366 del_timer_sync(&ucs->timer_cmd_in);
2367 freeurbs(cs);
2368 usb_set_intfdata(interface, NULL);
2369 kfree(ucs->rcvbuf);
2370 ucs->rcvbuf = NULL;
2371 ucs->rcvbuf_size = 0;
2372 usb_put_dev(ucs->udev);
2373 ucs->interface = NULL;
2374 ucs->udev = NULL;
2375 cs->dev = NULL;
2376 gigaset_freecs(cs);
2379 /* gigaset_suspend
2380 * This function is called before the USB connection is suspended.
2382 static int gigaset_suspend(struct usb_interface *intf, pm_message_t message)
2384 struct cardstate *cs = usb_get_intfdata(intf);
2385 struct bas_cardstate *ucs = cs->hw.bas;
2386 int rc;
2388 /* set suspend flag; this stops AT command/response traffic */
2389 if (update_basstate(ucs, BS_SUSPEND, 0) & BS_SUSPEND) {
2390 gig_dbg(DEBUG_SUSPEND, "already suspended");
2391 return 0;
2394 /* wait a bit for blocking conditions to go away */
2395 rc = wait_event_timeout(ucs->waitqueue,
2396 !(ucs->basstate &
2397 (BS_B1OPEN|BS_B2OPEN|BS_ATRDPEND|BS_ATWRPEND)),
2398 BAS_TIMEOUT*HZ/10);
2399 gig_dbg(DEBUG_SUSPEND, "wait_event_timeout() -> %d", rc);
2401 /* check for conditions preventing suspend */
2402 if (ucs->basstate & (BS_B1OPEN|BS_B2OPEN|BS_ATRDPEND|BS_ATWRPEND)) {
2403 dev_warn(cs->dev, "cannot suspend:\n");
2404 if (ucs->basstate & BS_B1OPEN)
2405 dev_warn(cs->dev, " B channel 1 open\n");
2406 if (ucs->basstate & BS_B2OPEN)
2407 dev_warn(cs->dev, " B channel 2 open\n");
2408 if (ucs->basstate & BS_ATRDPEND)
2409 dev_warn(cs->dev, " receiving AT reply\n");
2410 if (ucs->basstate & BS_ATWRPEND)
2411 dev_warn(cs->dev, " sending AT command\n");
2412 update_basstate(ucs, 0, BS_SUSPEND);
2413 return -EBUSY;
2416 /* close AT channel if open */
2417 if (ucs->basstate & BS_ATOPEN) {
2418 gig_dbg(DEBUG_SUSPEND, "closing AT channel");
2419 rc = req_submit(cs->bcs, HD_CLOSE_ATCHANNEL, 0, 0);
2420 if (rc) {
2421 update_basstate(ucs, 0, BS_SUSPEND);
2422 return rc;
2424 wait_event_timeout(ucs->waitqueue, !ucs->pending,
2425 BAS_TIMEOUT*HZ/10);
2426 /* in case of timeout, proceed anyway */
2429 /* kill all URBs and timers that might still be pending */
2430 usb_kill_urb(ucs->urb_ctrl);
2431 usb_kill_urb(ucs->urb_int_in);
2432 del_timer_sync(&ucs->timer_ctrl);
2434 gig_dbg(DEBUG_SUSPEND, "suspend complete");
2435 return 0;
2438 /* gigaset_resume
2439 * This function is called after the USB connection has been resumed.
2441 static int gigaset_resume(struct usb_interface *intf)
2443 struct cardstate *cs = usb_get_intfdata(intf);
2444 struct bas_cardstate *ucs = cs->hw.bas;
2445 int rc;
2447 /* resubmit interrupt URB for spontaneous messages from base */
2448 rc = usb_submit_urb(ucs->urb_int_in, GFP_KERNEL);
2449 if (rc) {
2450 dev_err(cs->dev, "could not resubmit interrupt URB: %s\n",
2451 get_usb_rcmsg(rc));
2452 return rc;
2455 /* clear suspend flag to reallow activity */
2456 update_basstate(ucs, 0, BS_SUSPEND);
2458 gig_dbg(DEBUG_SUSPEND, "resume complete");
2459 return 0;
2462 /* gigaset_pre_reset
2463 * This function is called before the USB connection is reset.
2465 static int gigaset_pre_reset(struct usb_interface *intf)
2467 /* handle just like suspend */
2468 return gigaset_suspend(intf, PMSG_ON);
2471 /* gigaset_post_reset
2472 * This function is called after the USB connection has been reset.
2474 static int gigaset_post_reset(struct usb_interface *intf)
2476 /* FIXME: send HD_DEVICE_INIT_ACK? */
2478 /* resume operations */
2479 return gigaset_resume(intf);
2483 static const struct gigaset_ops gigops = {
2484 gigaset_write_cmd,
2485 gigaset_write_room,
2486 gigaset_chars_in_buffer,
2487 gigaset_brkchars,
2488 gigaset_init_bchannel,
2489 gigaset_close_bchannel,
2490 gigaset_initbcshw,
2491 gigaset_freebcshw,
2492 gigaset_reinitbcshw,
2493 gigaset_initcshw,
2494 gigaset_freecshw,
2495 gigaset_set_modem_ctrl,
2496 gigaset_baud_rate,
2497 gigaset_set_line_ctrl,
2498 gigaset_isoc_send_skb,
2499 gigaset_isoc_input,
2502 /* bas_gigaset_init
2503 * This function is called after the kernel module is loaded.
2505 static int __init bas_gigaset_init(void)
2507 int result;
2509 /* allocate memory for our driver state and intialize it */
2510 if ((driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
2511 GIGASET_MODULENAME, GIGASET_DEVNAME,
2512 &gigops, THIS_MODULE)) == NULL)
2513 goto error;
2515 /* register this driver with the USB subsystem */
2516 result = usb_register(&gigaset_usb_driver);
2517 if (result < 0) {
2518 pr_err("error %d registering USB driver\n", -result);
2519 goto error;
2522 pr_info(DRIVER_DESC "\n");
2523 return 0;
2525 error:
2526 if (driver)
2527 gigaset_freedriver(driver);
2528 driver = NULL;
2529 return -1;
2532 /* bas_gigaset_exit
2533 * This function is called before the kernel module is unloaded.
2535 static void __exit bas_gigaset_exit(void)
2537 struct bas_cardstate *ucs;
2538 int i;
2540 gigaset_blockdriver(driver); /* => probe will fail
2541 * => no gigaset_start any more
2544 /* stop all connected devices */
2545 for (i = 0; i < driver->minors; i++) {
2546 if (gigaset_shutdown(driver->cs + i) < 0)
2547 continue; /* no device */
2548 /* from now on, no isdn callback should be possible */
2550 /* close all still open channels */
2551 ucs = driver->cs[i].hw.bas;
2552 if (ucs->basstate & BS_B1OPEN) {
2553 gig_dbg(DEBUG_INIT, "closing B1 channel");
2554 usb_control_msg(ucs->udev,
2555 usb_sndctrlpipe(ucs->udev, 0),
2556 HD_CLOSE_B1CHANNEL, OUT_VENDOR_REQ,
2557 0, 0, NULL, 0, BAS_TIMEOUT);
2559 if (ucs->basstate & BS_B2OPEN) {
2560 gig_dbg(DEBUG_INIT, "closing B2 channel");
2561 usb_control_msg(ucs->udev,
2562 usb_sndctrlpipe(ucs->udev, 0),
2563 HD_CLOSE_B2CHANNEL, OUT_VENDOR_REQ,
2564 0, 0, NULL, 0, BAS_TIMEOUT);
2566 if (ucs->basstate & BS_ATOPEN) {
2567 gig_dbg(DEBUG_INIT, "closing AT channel");
2568 usb_control_msg(ucs->udev,
2569 usb_sndctrlpipe(ucs->udev, 0),
2570 HD_CLOSE_ATCHANNEL, OUT_VENDOR_REQ,
2571 0, 0, NULL, 0, BAS_TIMEOUT);
2573 ucs->basstate = 0;
2576 /* deregister this driver with the USB subsystem */
2577 usb_deregister(&gigaset_usb_driver);
2578 /* this will call the disconnect-callback */
2579 /* from now on, no disconnect/probe callback should be running */
2581 gigaset_freedriver(driver);
2582 driver = NULL;
2586 module_init(bas_gigaset_init);
2587 module_exit(bas_gigaset_exit);
2589 MODULE_AUTHOR(DRIVER_AUTHOR);
2590 MODULE_DESCRIPTION(DRIVER_DESC);
2591 MODULE_LICENSE("GPL");