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>,
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 * =====================================================================
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 */
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 */
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
;
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];
164 return "out of memory";
166 return "device not present";
168 return "endpoint not present";
170 return "URB type not supported";
172 return "invalid argument";
174 return "start frame too early or too much scheduled";
176 return "too many isochronous frames requested";
178 return "endpoint stalled";
180 return "invalid packet size";
182 return "would overcommit USB bandwidth";
184 return "device shut down";
186 return "reject flag set";
188 return "device suspended";
190 snprintf(unkmsg
, sizeof(unkmsg
), "unknown error %d", rc
);
195 /* get message text for USB status code
197 static char *get_usb_statmsg(int status
)
199 static char unkmsg
[28];
205 return "unlinked (sync)";
209 return "bit stuffing error, timeout, or unknown USB error";
211 return "CRC mismatch, timeout, or unknown USB error";
215 return "endpoint stalled";
217 return "IN buffer overrun";
219 return "OUT buffer underrun";
221 return "too much data";
223 return "short packet detected";
225 return "device removed";
227 return "partial isochronous transfer";
229 return "invalid argument";
231 return "unlinked (async)";
233 return "device shut down";
235 snprintf(unkmsg
, sizeof(unkmsg
), "unknown status %d", status
);
241 * retrieve string representation of USB pipe type
243 static inline char *usb_pipetype_str(int pipe
)
245 if (usb_pipeisoc(pipe
))
247 if (usb_pipeint(pipe
))
249 if (usb_pipecontrol(pipe
))
251 if (usb_pipebulk(pipe
))
257 * write content of URB to syslog for debugging
259 static inline void dump_urb(enum debuglevel level
, const char *tag
,
262 #ifdef CONFIG_GIGASET_DEBUG
264 gig_dbg(level
, "%s urb(0x%08lx)->{", tag
, (unsigned long) urb
);
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
);
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
);
282 " start_frame=%d, number_of_packets=%d, interval=%d, "
284 urb
->start_frame
, urb
->number_of_packets
, urb
->interval
,
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
];
295 " {offset=%u, length=%u, actual_length=%u, "
297 pifd
->offset
, pifd
->length
, pifd
->actual_length
,
301 gig_dbg(level
, "}}");
305 /* read/set modem control bits etc. (m10x only) */
306 static int gigaset_set_modem_ctrl(struct cardstate
*cs
, unsigned old_state
,
312 static int gigaset_baud_rate(struct cardstate
*cs
, unsigned cflag
)
317 static int gigaset_set_line_ctrl(struct cardstate
*cs
, unsigned cflag
)
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.
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
);
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.
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
358 "unrecoverable error - please disconnect Gigaset base to reset\n");
362 * check for completion of pending control request
364 * ucs hardware specific controller state structure
366 static void check_pending(struct bas_cardstate
*ucs
)
370 spin_lock_irqsave(&ucs
->lock
, flags
);
371 switch (ucs
->pending
) {
374 case HD_OPEN_ATCHANNEL
:
375 if (ucs
->basstate
& BS_ATOPEN
)
378 case HD_OPEN_B1CHANNEL
:
379 if (ucs
->basstate
& BS_B1OPEN
)
382 case HD_OPEN_B2CHANNEL
:
383 if (ucs
->basstate
& BS_B2OPEN
)
386 case HD_CLOSE_ATCHANNEL
:
387 if (!(ucs
->basstate
& BS_ATOPEN
))
390 case HD_CLOSE_B1CHANNEL
:
391 if (!(ucs
->basstate
& BS_B1OPEN
))
394 case HD_CLOSE_B2CHANNEL
:
395 if (!(ucs
->basstate
& BS_B2OPEN
))
398 case HD_DEVICE_INIT_ACK
: /* no reply expected */
401 /* HD_READ_ATMESSAGE, HD_WRITE_ATMESSAGE, HD_RESET_INTERRUPTPIPE
402 * are handled separately and should never end up here
405 dev_warn(&ucs
->interface
->dev
,
406 "unknown pending request 0x%02x cleared\n",
412 del_timer(&ucs
->timer_ctrl
);
414 spin_unlock_irqrestore(&ucs
->lock
, flags
);
418 * timeout routine for command input request
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
;
428 if (!ucs
->rcvbuf_size
) {
429 gig_dbg(DEBUG_USBREQ
, "%s: no receive in progress", __func__
);
433 if (ucs
->retry_cmd_in
++ < BAS_RETRY
) {
434 dev_notice(cs
->dev
, "control read: timeout, retry %d\n",
436 rc
= atread_submit(cs
, BAS_TIMEOUT
);
437 if (rc
>= 0 || rc
== -ENODEV
)
438 /* resubmitted or disconnected */
439 /* - bypass regular exit block */
443 "control read: timeout, giving up after %d tries\n",
448 ucs
->rcvbuf_size
= 0;
452 /* set/clear bits in base connection state, return previous state
454 inline static int update_basstate(struct bas_cardstate
*ucs
,
460 spin_lock_irqsave(&ucs
->lock
, flags
);
461 state
= ucs
->basstate
;
462 ucs
->basstate
= (state
& ~clear
) | set
;
463 spin_unlock_irqrestore(&ucs
->lock
, flags
);
467 /* read_ctrl_callback
468 * USB completion handler for control pipe input
469 * called by the USB subsystem in interrupt context
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
;
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__
);
492 del_timer(&ucs
->timer_cmd_in
);
495 case 0: /* normal completion */
496 numbytes
= urb
->actual_length
;
497 if (unlikely(numbytes
!= ucs
->rcvbuf_size
)) {
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 */
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
));
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",
537 rc
= atread_submit(cs
, BAS_TIMEOUT
);
538 if (rc
>= 0 || rc
== -ENODEV
)
539 /* resubmitted or disconnected */
540 /* - bypass regular exit block */
544 "control read: giving up after %d tries\n",
552 ucs
->rcvbuf_size
= 0;
554 gig_dbg(DEBUG_INTR
, "%s-->BH", __func__
);
555 gigaset_schedule_event(cs
);
560 * submit an HD_READ_ATMESSAGE command URB and optionally start a timeout
562 * cs controller state structure
563 * timeout timeout in 1/10 sec., 0: none
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
;
575 gig_dbg(DEBUG_USBREQ
, "-------> HD_READ_ATMESSAGE (%d)",
578 basstate
= update_basstate(ucs
, BS_ATRDPEND
, 0);
579 if (basstate
& BS_ATRDPEND
) {
581 "could not submit HD_READ_ATMESSAGE: URB busy\n");
585 if (basstate
& BS_SUSPEND
) {
587 "HD_READ_ATMESSAGE not submitted, "
588 "suspend in progress\n");
589 update_basstate(ucs
, 0, BS_ATRDPEND
);
590 /* treat like disconnect */
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",
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
);
623 * USB completion handler for interrupt pipe input
624 * called by the USB subsystem in interrupt context
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
;
641 case 0: /* success */
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
));
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__
);
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?
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",
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]);
678 switch (ucs
->int_in_buf
[0]) {
679 case HD_DEVICE_INIT_OK
:
680 update_basstate(ucs
, BS_INIT
, 0);
683 case HD_READY_SEND_ATDATA
:
684 del_timer(&ucs
->timer_atrdy
);
685 update_basstate(ucs
, BS_ATREADY
, BS_ATTIMER
);
689 case HD_OPEN_B2CHANNEL_ACK
:
691 case HD_OPEN_B1CHANNEL_ACK
:
692 bcs
= cs
->bcs
+ channel
;
693 update_basstate(ucs
, BS_B1OPEN
<< channel
, 0);
694 gigaset_bchannel_up(bcs
);
697 case HD_OPEN_ATCHANNEL_ACK
:
698 update_basstate(ucs
, BS_ATOPEN
, 0);
702 case HD_CLOSE_B2CHANNEL_ACK
:
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
);
711 case HD_CLOSE_ATCHANNEL_ACK
:
712 update_basstate(ucs
, 0, BS_ATOPEN
);
715 case HD_B2_FLOW_CONTROL
:
717 case HD_B1_FLOW_CONTROL
:
718 bcs
= cs
->bcs
+ channel
;
719 atomic_add((l
- BAS_NORMFRAME
) * BAS_CORRFRAMES
,
720 &bcs
->hw
.bas
->corrbytes
);
722 "Flow control (channel %d, sub %d): 0x%02x => %d",
723 channel
, bcs
->hw
.bas
->numsub
, l
,
724 atomic_read(&bcs
->hw
.bas
->corrbytes
));
727 case HD_RECEIVEATDATA_ACK
: /* AT response ready to be received */
730 "HD_RECEIVEATDATA_ACK with length 0 ignored\n");
733 spin_lock_irqsave(&cs
->lock
, flags
);
734 if (ucs
->rcvbuf_size
) {
735 /* throw away previous buffer - we have no queue */
737 "receive AT data overrun, %d bytes lost\n",
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");
748 ucs
->rcvbuf_size
= l
;
749 ucs
->retry_cmd_in
= 0;
750 if ((rc
= atread_submit(cs
, BAS_TIMEOUT
)) < 0) {
753 ucs
->rcvbuf_size
= 0;
755 //FIXME corrective action?
756 spin_unlock_irqrestore(&cs
->lock
, flags
);
761 spin_unlock_irqrestore(&cs
->lock
, flags
);
764 case HD_RESET_INTERRUPT_PIPE_ACK
:
765 gig_dbg(DEBUG_USBREQ
, "HD_RESET_INTERRUPT_PIPE_ACK");
769 gig_dbg(DEBUG_USBREQ
, "HD_SUSPEND_END");
774 "unknown Gigaset signal 0x%02x (%u) ignored\n",
775 (int) ucs
->int_in_buf
[0], l
);
779 wake_up(&ucs
->waitqueue
);
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",
791 * USB completion handler for B channel isochronous input
792 * called by the USB subsystem in interrupt context
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
;
805 /* status codes not worth bothering the tasklet with */
806 if (unlikely(status
== -ENOENT
||
807 status
== -ECONNRESET
||
808 status
== -EINPROGRESS
||
810 status
== -ESHUTDOWN
)) {
811 gig_dbg(DEBUG_ISO
, "%s: %s",
812 __func__
, get_usb_statmsg(status
));
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
);
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
!=
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",
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
);
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
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
;
871 /* status codes not worth bothering the tasklet with */
872 if (unlikely(status
== -ENOENT
||
873 status
== -ECONNRESET
||
874 status
== -EINPROGRESS
||
876 status
== -ESHUTDOWN
)) {
877 gig_dbg(DEBUG_ISO
, "%s: %s",
878 __func__
, get_usb_statmsg(status
));
882 /* pass URB context to tasklet */
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
);
895 * prepare and submit USB request blocks for isochronous input and output
897 * B channel control structure
900 * < 0 on error (no URBs submitted)
902 static int starturbs(struct bc_state
*bcs
)
904 struct bas_bc_state
*ubc
= bcs
->hw
.bas
;
909 /* initialize L2 reception */
910 if (bcs
->proto2
== ISDN_PROTO_L2_HDLC
)
911 bcs
->inputstate
|= INS_flag_hunt
;
913 /* submit all isochronous input URBs */
915 for (k
= 0; k
< BAS_INURBS
; k
++) {
916 urb
= ubc
->isoinurbs
[k
];
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
;
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)
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
;
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
);
978 dump_urb(DEBUG_ISO
, "Initial isoc write (free)", urb
);
979 ubc
->isooutfree
= &ubc
->isoouturbs
[BAS_OUTURBS
-1];
980 ubc
->isooutdone
= ubc
->isooutovfl
= NULL
;
988 * cancel the USB request blocks for isochronous input and output
989 * errors are silently ignored
991 * B channel control structure
993 static void stopurbs(struct bas_bc_state
*ubc
)
999 for (k
= 0; k
< BAS_INURBS
; ++k
) {
1000 rc
= usb_unlink_urb(ubc
->isoinurbs
[k
]);
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
);
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
1020 * ucx context structure containing URB
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
);
1060 "%s: buffer busy at frame %d",
1062 /* tasklet will be restarted from
1063 gigaset_send_skb() */
1065 dev_err(ucx
->bcs
->cs
->dev
,
1066 "%s: buffer error %d at frame %d\n",
1067 __func__
, rc
, nframe
);
1073 ucx
->limit
= ubc
->isooutbuf
->nextread
;
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
);
1084 /* device removed - give up silently */
1085 gig_dbg(DEBUG_ISO
, "%s: disconnected", __func__
);
1087 dev_err(ucx
->bcs
->cs
->dev
,
1088 "could not submit isochronous write URB: %s\n",
1096 /* write_iso_tasklet
1097 * tasklet scheduled when an isochronous output URB from the Gigaset device
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
;
1110 struct usb_iso_packet_descriptor
*ifd
;
1112 unsigned long flags
;
1114 struct sk_buff
*skb
;
1118 /* loop while completed URBs arrive in time */
1120 if (unlikely(!(ubc
->running
))) {
1121 gig_dbg(DEBUG_ISO
, "%s: not running", __func__
);
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
);
1133 dev_err(cs
->dev
, "isochronous write buffer underrun\n");
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
);
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
;
1154 spin_unlock_irqrestore(&ubc
->isooutlock
, flags
);
1156 /* couldn't put it back */
1158 "losing isochronous write URB\n");
1164 /* process completed URB */
1166 status
= done
->status
;
1168 case -EXDEV
: /* partial completion */
1169 gig_dbg(DEBUG_ISO
, "%s: URB partially completed",
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
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
];
1183 ifd
->actual_length
!= ifd
->length
) {
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
+
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) {
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
+
1214 case -EPIPE
: /* stall - probably underrun */
1215 dev_err(cs
->dev
, "isochronous write stalled\n");
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
);
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 */
1242 /* process queued SKBs */
1243 while ((skb
= skb_dequeue(&bcs
->squeue
))) {
1244 /* copy to output buffer, doing L2 encapsulation */
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
));
1254 gigaset_skb_sent(bcs
, skb
);
1255 dev_kfree_skb_any(skb
);
1259 /* Isochronous Read - Bottom Half */
1260 /* ============================== */
1263 * tasklet scheduled when an isochronous input URB from the Gigaset device
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
;
1276 unsigned long flags
;
1277 int totleft
, numbytes
, offset
, frame
, rc
;
1279 /* loop while more completed URBs arrive in the meantime */
1282 spin_lock_irqsave(&ubc
->isoinlock
, flags
);
1283 if (!(urb
= ubc
->isoindone
)) {
1284 spin_unlock_irqrestore(&ubc
->isoinlock
, flags
);
1287 status
= ubc
->isoinstatus
;
1288 ubc
->isoindone
= NULL
;
1289 if (unlikely(ubc
->loststatus
!= -EINPROGRESS
)) {
1291 "isochronous read overrun, "
1292 "dropped URB with status: %s, %d bytes lost\n",
1293 get_usb_statmsg(ubc
->loststatus
),
1295 ubc
->loststatus
= -EINPROGRESS
;
1297 spin_unlock_irqrestore(&ubc
->isoinlock
, flags
);
1299 if (unlikely(!(ubc
->running
))) {
1301 "%s: channel not running, "
1302 "dropped URB with status: %s",
1303 __func__
, get_usb_statmsg(status
));
1308 case 0: /* normal completion */
1310 case -EXDEV
: /* inspect individual frames
1311 (we do that anyway) */
1312 gig_dbg(DEBUG_ISO
, "%s: URB partially completed",
1318 gig_dbg(DEBUG_ISO
, "%s: %s",
1319 __func__
, get_usb_statmsg(status
));
1320 continue; /* -> skip */
1322 dev_err(cs
->dev
, "isochronous read stalled\n");
1324 continue; /* -> skip */
1325 default: /* severe trouble */
1326 dev_warn(cs
->dev
, "isochronous read: %s\n",
1327 get_usb_statmsg(status
));
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
)) {
1336 "isochronous read: frame %d: %s\n",
1339 urb
->iso_frame_desc
[frame
].status
));
1342 numbytes
= urb
->iso_frame_desc
[frame
].actual_length
;
1343 if (unlikely(numbytes
> BAS_MAXFRAME
)) {
1345 "isochronous read: frame %d: "
1346 "numbytes (%d) > BAS_MAXFRAME\n",
1350 if (unlikely(numbytes
> totleft
)) {
1352 "isochronous read: frame %d: "
1353 "numbytes (%d) > totleft (%d)\n",
1354 frame
, numbytes
, totleft
);
1357 offset
= urb
->iso_frame_desc
[frame
].offset
;
1358 if (unlikely(offset
+ numbytes
> BAS_INBUFSIZE
)) {
1360 "isochronous read: frame %d: "
1361 "offset (%d) + numbytes (%d) "
1362 "> BAS_INBUFSIZE\n",
1363 frame
, offset
, numbytes
);
1366 gigaset_isoc_receive(rcvbuf
+ offset
, numbytes
, bcs
);
1367 totleft
-= numbytes
;
1369 if (unlikely(totleft
> 0))
1371 "isochronous read: %d data bytes missing\n",
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
)) {
1387 "could not resubmit isochronous read URB: %s\n",
1389 dump_urb(DEBUG_ISO
, "resubmit iso read", urb
);
1395 /* Channel Operations */
1396 /* ================== */
1399 * timeout routine for control output request
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
;
1408 unsigned long flags
;
1412 spin_lock_irqsave(&ucs
->lock
, flags
);
1413 pending
= ucs
->pending
;
1415 spin_unlock_irqrestore(&ucs
->lock
, flags
);
1418 case 0: /* no pending request */
1419 gig_dbg(DEBUG_USBREQ
, "%s: no request pending", __func__
);
1422 case HD_OPEN_ATCHANNEL
:
1423 dev_err(bcs
->cs
->dev
, "timeout opening AT channel\n");
1424 error_reset(bcs
->cs
);
1427 case HD_OPEN_B2CHANNEL
:
1428 case HD_OPEN_B1CHANNEL
:
1429 dev_err(bcs
->cs
->dev
, "timeout opening channel %d\n",
1434 case HD_CLOSE_ATCHANNEL
:
1435 dev_err(bcs
->cs
->dev
, "timeout closing AT channel\n");
1438 case HD_CLOSE_B2CHANNEL
:
1439 case HD_CLOSE_B1CHANNEL
:
1440 dev_err(bcs
->cs
->dev
, "timeout closing channel %d\n",
1442 error_reset(bcs
->cs
);
1446 dev_warn(bcs
->cs
->dev
, "request 0x%02x timed out, clearing\n",
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
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
;
1465 unsigned long flags
;
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
);
1477 spin_unlock_irqrestore(&ucs
->lock
, flags
);
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
));
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
),
1504 /* urb->dev is clobbered by USB subsystem */
1505 urb
->dev
= ucs
->udev
;
1506 rc
= usb_submit_urb(urb
, GFP_ATOMIC
);
1508 dev_err(&ucs
->interface
->dev
,
1509 "could not resubmit request 0x%02x: %s\n",
1510 ucs
->dr_ctrl
.bRequest
, get_usb_rcmsg(rc
));
1517 /* failed, clear pending request */
1518 spin_lock_irqsave(&ucs
->lock
, flags
);
1519 del_timer(&ucs
->timer_ctrl
);
1521 spin_unlock_irqrestore(&ucs
->lock
, flags
);
1522 wake_up(&ucs
->waitqueue
);
1526 * submit a control output request without message buffer to the Gigaset base
1527 * and optionally start a timeout
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)
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
;
1542 unsigned long flags
;
1544 gig_dbg(DEBUG_USBREQ
, "-------> 0x%02x (%d)", req
, val
);
1546 spin_lock_irqsave(&ucs
->lock
, flags
);
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",
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
);
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
);
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
1591 * B channel control structure
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
;
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
);
1608 if (cs
->hw
.bas
->basstate
& BS_SUSPEND
) {
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) {
1618 "could not start isochronous I/O for channel B%d: %s\n",
1620 ret
== -EFAULT
? "null URB" : get_usb_rcmsg(ret
));
1623 spin_unlock_irqrestore(&cs
->lock
, flags
);
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",
1631 stopurbs(bcs
->hw
.bas
);
1636 spin_unlock_irqrestore(&cs
->lock
, flags
);
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
1646 * B channel control structure
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
;
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__
);
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
);
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",
1676 spin_unlock_irqrestore(&cs
->lock
, flags
);
1680 /* Device Operations */
1681 /* ================= */
1684 * unqueue first command buffer from queue, waking any sleepers
1685 * must be called with cs->cmdlock held
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
;
1702 cs
->lastcmdbuf
= NULL
;
1706 if (cb
->wake_tasklet
)
1707 tasklet_schedule(cb
->wake_tasklet
);
1712 /* write_command_callback
1713 * USB completion handler for AT command transmission
1714 * called by the USB subsystem in interrupt context
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
);
1731 case 0: /* normal completion */
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
));
1742 default: /* any failure */
1743 if (++ucs
->retry_cmd_out
> BAS_RETRY
) {
1745 "command write: %s, "
1746 "giving up after %d retries\n",
1747 get_usb_statmsg(status
),
1748 ucs
->retry_cmd_out
);
1751 if (ucs
->basstate
& BS_SUSPEND
) {
1753 "command write: %s, "
1754 "won't retry - suspend requested\n",
1755 get_usb_statmsg(status
));
1758 if (cs
->cmdbuf
== NULL
) {
1760 "command write: %s, "
1761 "cannot retry - cmdbuf gone\n",
1762 get_usb_statmsg(status
));
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 */
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
)
1777 spin_unlock_irqrestore(&cs
->cmdlock
, flags
);
1781 * timeout routine for AT command transmission
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
);
1798 * submit an HD_WRITE_ATMESSAGE command URB
1800 * cs controller state structure
1801 * buf buffer containing command to send
1802 * len length of command to send
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
;
1813 gig_dbg(DEBUG_USBREQ
, "-------> HD_WRITE_ATMESSAGE (%d)", len
);
1815 if (update_basstate(ucs
, BS_ATWRPEND
, 0) & BS_ATWRPEND
) {
1817 "could not submit HD_WRITE_ATMESSAGE: URB busy\n");
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
);
1832 update_basstate(ucs
, 0, BS_ATWRPEND
);
1833 dev_err(cs
->dev
, "could not submit HD_WRITE_ATMESSAGE: %s\n",
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",
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
);
1851 * start transmission of AT command queue if necessary
1853 * cs controller state structure
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
;
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
);
1877 /* flush command queue */
1878 spin_lock_irqsave(&cs
->cmdlock
, flags
);
1879 while (cs
->cmdbuf
!= NULL
)
1881 spin_unlock_irqrestore(&cs
->cmdlock
, flags
);
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
);
1898 spin_unlock_irqrestore(&cs
->cmdlock
, flags
);
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.
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
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
;
1927 gigaset_dbg_buffer(cs
->mstate
!= MS_LOCKED
?
1928 DEBUG_TRANSCMD
: DEBUG_LOCKCMD
,
1929 "CMD Transmit", len
, buf
);
1937 if (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__
);
1945 memcpy(cb
->buf
, buf
, len
);
1949 cb
->wake_tasklet
= wake_tasklet
;
1951 spin_lock_irqsave(&cs
->cmdlock
, flags
);
1952 cb
->prev
= cs
->lastcmdbuf
;
1954 cs
->lastcmdbuf
->next
= cb
;
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
)
1971 spin_unlock_irqrestore(&cs
->cmdlock
, flags
);
1974 rc
= start_cbsend(cs
);
1975 spin_unlock_irqrestore(&cs
->lock
, flags
);
1976 return rc
< 0 ? rc
: len
;
1978 notqueued
: /* request handled without queuing */
1980 tasklet_schedule(wake_tasklet
);
1984 /* gigaset_write_room
1985 * tty_driver.write_room interface routine
1986 * return number of characters the driver will accept to be written via
1989 * controller state structure
1991 * number of characters
1993 static int gigaset_write_room(struct cardstate
*cs
)
1998 /* gigaset_chars_in_buffer
1999 * tty_driver.chars_in_buffer interface routine
2000 * return number of characters waiting to be sent
2002 * controller state structure
2004 * number of characters
2006 static int gigaset_chars_in_buffer(struct cardstate
*cs
)
2008 return cs
->cmdbytes
;
2012 * implementation of ioctl(GIGASET_BRKCHARS)
2014 * controller state structure
2016 * -EINVAL (unimplemented function)
2018 static int gigaset_brkchars(struct cardstate
*cs
, const unsigned char buf
[6])
2024 /* Device Initialization/Shutdown */
2025 /* ============================== */
2027 /* Free hardware dependent part of the B channel structure
2029 * bcs B channel structure
2033 static int gigaset_freebcshw(struct bc_state
*bcs
)
2035 struct bas_bc_state
*ubc
= bcs
->hw
.bas
;
2041 /* kill URBs and tasklets before freeing - better safe than sorry */
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
);
2060 /* Initialize hardware dependent part of the B channel structure
2062 * bcs B channel structure
2066 static int gigaset_initbcshw(struct bc_state
*bcs
)
2069 struct bas_bc_state
*ubc
;
2071 bcs
->hw
.bas
= ubc
= kmalloc(sizeof(struct bas_bc_state
), GFP_KERNEL
);
2073 pr_err("out of memory\n");
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
;
2086 if (!(ubc
->isooutbuf
= kmalloc(sizeof(struct isowbuf_t
), GFP_KERNEL
))) {
2087 pr_err("out of memory\n");
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
;
2113 tasklet_init(&ubc
->rcvd_tasklet
,
2114 &read_iso_tasklet
, (unsigned long) bcs
);
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
);
2138 static int gigaset_initcshw(struct cardstate
*cs
)
2140 struct bas_cardstate
*ucs
;
2142 cs
->hw
.bas
= ucs
= kmalloc(sizeof *ucs
, GFP_KERNEL
);
2144 pr_err("out of memory\n");
2147 ucs
->int_in_buf
= kmalloc(IP_MSGSIZE
, GFP_KERNEL
);
2148 if (!ucs
->int_in_buf
) {
2150 pr_err("out of memory\n");
2154 ucs
->urb_cmd_in
= NULL
;
2155 ucs
->urb_cmd_out
= NULL
;
2157 ucs
->rcvbuf_size
= 0;
2159 spin_lock_init(&ucs
->lock
);
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
);
2172 * unlink and deallocate all URBs unconditionally
2173 * caller must make sure that no commands are still in progress
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
;
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
;
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
;
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) {
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
);
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
);
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
);
2268 /* save off device structure ptrs for later use */
2271 ucs
->interface
= interface
;
2272 cs
->dev
= &interface
->dev
;
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
)))
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
)))
2291 for (i
= 0; i
< BAS_INURBS
; ++i
)
2292 if (!(ubc
->isoinurbs
[i
] =
2293 usb_alloc_urb(BAS_NUMFRAMES
, GFP_KERNEL
)))
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",
2313 /* tell the device that the driver is ready */
2314 if ((rc
= req_submit(cs
->bcs
, HD_DEVICE_INIT_ACK
, 0, 0)) != 0)
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
))
2330 dev_err(cs
->dev
, "could not allocate URBs\n");
2333 usb_set_intfdata(interface
, NULL
);
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
;
2347 cs
= usb_get_intfdata(interface
);
2351 dev_info(cs
->dev
, "disconnecting Gigaset base\n");
2353 /* mark base as not ready, all channels disconnected */
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) */
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
);
2368 usb_set_intfdata(interface
, NULL
);
2371 ucs
->rcvbuf_size
= 0;
2372 usb_put_dev(ucs
->udev
);
2373 ucs
->interface
= NULL
;
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
;
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");
2394 /* wait a bit for blocking conditions to go away */
2395 rc
= wait_event_timeout(ucs
->waitqueue
,
2397 (BS_B1OPEN
|BS_B2OPEN
|BS_ATRDPEND
|BS_ATWRPEND
)),
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
);
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);
2421 update_basstate(ucs
, 0, BS_SUSPEND
);
2424 wait_event_timeout(ucs
->waitqueue
, !ucs
->pending
,
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");
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
;
2447 /* resubmit interrupt URB for spontaneous messages from base */
2448 rc
= usb_submit_urb(ucs
->urb_int_in
, GFP_KERNEL
);
2450 dev_err(cs
->dev
, "could not resubmit interrupt URB: %s\n",
2455 /* clear suspend flag to reallow activity */
2456 update_basstate(ucs
, 0, BS_SUSPEND
);
2458 gig_dbg(DEBUG_SUSPEND
, "resume complete");
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
= {
2486 gigaset_chars_in_buffer
,
2488 gigaset_init_bchannel
,
2489 gigaset_close_bchannel
,
2492 gigaset_reinitbcshw
,
2495 gigaset_set_modem_ctrl
,
2497 gigaset_set_line_ctrl
,
2498 gigaset_isoc_send_skb
,
2503 * This function is called after the kernel module is loaded.
2505 static int __init
bas_gigaset_init(void)
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
)
2515 /* register this driver with the USB subsystem */
2516 result
= usb_register(&gigaset_usb_driver
);
2518 pr_err("error %d registering USB driver\n", -result
);
2522 pr_info(DRIVER_DESC
"\n");
2527 gigaset_freedriver(driver
);
2533 * This function is called before the kernel module is unloaded.
2535 static void __exit
bas_gigaset_exit(void)
2537 struct bas_cardstate
*ucs
;
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
);
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
);
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");