2 * USB driver for Gigaset 307x directly or using M105 Data.
4 * Copyright (c) 2001 by Stefan Eilers
5 * and Hansjoerg Lipp <hjlipp@web.de>.
7 * This driver was derived from the USB skeleton driver by
8 * Greg Kroah-Hartman <greg@kroah.com>
10 * =====================================================================
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 * =====================================================================
20 #include <linux/errno.h>
21 #include <linux/init.h>
22 #include <linux/slab.h>
23 #include <linux/usb.h>
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
27 /* Version Information */
28 #define DRIVER_AUTHOR "Hansjoerg Lipp <hjlipp@web.de>, Stefan Eilers"
29 #define DRIVER_DESC "USB Driver for Gigaset 307x using M105"
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 8
43 #define GIGASET_MODULENAME "usb_gigaset"
44 #define GIGASET_DEVFSNAME "gig/usb/"
45 #define GIGASET_DEVNAME "ttyGU"
47 #define IF_WRITEBUF 2000 //FIXME // WAKEUP_CHARS: 256
49 /* Values for the Gigaset M105 Data */
50 #define USB_M105_VENDOR_ID 0x0681
51 #define USB_M105_PRODUCT_ID 0x0009
53 /* table of devices that work with this driver */
54 static struct usb_device_id gigaset_table
[] = {
55 { USB_DEVICE(USB_M105_VENDOR_ID
, USB_M105_PRODUCT_ID
) },
56 { } /* Terminating entry */
59 MODULE_DEVICE_TABLE(usb
, gigaset_table
);
62 * Control requests (empty fields: 00)
64 * RT|RQ|VALUE|INDEX|LEN |DATA
67 * Get flags (1 byte). Bits: 0=dtr,1=rts,3-7:?
69 * Get device information/status (llll: 0x200 and 0x40 seen).
70 * Real size: I only saw MIN(llll,0x64).
71 * Contents: seems to be always the same...
72 * offset 0x00: Length of this structure (0x64) (len: 1,2,3 bytes)
73 * offset 0x3c: String (16 bit chars): "MCCI USB Serial V2.0"
77 * Initialize/reset device ?
79 * ? (xx=00 or 01; 01 on start, 00 on close)
81 * Set/clear flags vv=value, mm=mask (see RQ 08)
83 * Used before the following configuration requests are issued
84 * (with xx=0x0f). I've seen other values<0xf, though.
86 * Set baud rate. xxxx=ceil(0x384000/rate)=trunc(0x383fff/rate)+1.
88 * Set byte size and parity. p: 0x20=even,0x10=odd,0x00=no parity
89 * [ 0x30: m, 0x40: s ]
90 * [s: 0: 1 stop bit; 1: 1.5; 2: 2]
91 * bb: bits/byte (seen 7 and 8)
92 * 41 13 -- -- -- -- 10 00 ww 00 00 00 xx 00 00 00 yy 00 00 00 zz 00 00 00
94 * Initialization: 01, 40, 00, 00
95 * Open device: 00 40, 00, 00
96 * yy and zz seem to be equal, either 0x00 or 0x0a
97 * (ww,xx) pairs seen: (00,00), (00,40), (01,40), (09,80), (19,80)
98 * 41 19 -- -- -- -- 06 00 00 00 00 xx 11 13
99 * Used after every "configuration sequence" (RQ 12, RQs 01/03/13).
100 * xx is usually 0x00 but was 0x7e before starting data transfer
101 * in unimodem mode. So, this might be an array of characters that need
102 * special treatment ("commit all bufferd data"?), 11=^Q, 13=^S.
104 * Unimodem mode: use "modprobe ppp_async flag_time=0" as the device _needs_ two
108 static int gigaset_probe(struct usb_interface
*interface
,
109 const struct usb_device_id
*id
);
110 static void gigaset_disconnect(struct usb_interface
*interface
);
112 static struct gigaset_driver
*driver
= NULL
;
113 static struct cardstate
*cardstate
= NULL
;
115 /* usb specific object needed to register this driver with the usb subsystem */
116 static struct usb_driver gigaset_usb_driver
= {
117 .name
= GIGASET_MODULENAME
,
118 .probe
= gigaset_probe
,
119 .disconnect
= gigaset_disconnect
,
120 .id_table
= gigaset_table
,
123 struct usb_cardstate
{
124 struct usb_device
*udev
; /* usb device pointer */
125 struct usb_interface
*interface
; /* interface for this device */
126 atomic_t busy
; /* bulk output in progress */
129 unsigned char *bulk_out_buffer
;
131 __u8 bulk_out_endpointAddr
;
132 struct urb
*bulk_out_urb
;
136 struct urb
*read_urb
;
137 __u8 int_in_endpointAddr
;
139 char bchars
[6]; /* for request 0x19 */
142 struct usb_bc_state
{};
144 static inline unsigned tiocm_to_gigaset(unsigned state
)
146 return ((state
& TIOCM_DTR
) ? 1 : 0) | ((state
& TIOCM_RTS
) ? 2 : 0);
149 #ifdef CONFIG_GIGASET_UNDOCREQ
150 /* WARNING: EXPERIMENTAL! */
151 static int gigaset_set_modem_ctrl(struct cardstate
*cs
, unsigned old_state
,
154 struct usb_device
*udev
= cs
->hw
.usb
->udev
;
158 mask
= tiocm_to_gigaset(old_state
^ new_state
);
159 val
= tiocm_to_gigaset(new_state
);
161 gig_dbg(DEBUG_USBREQ
, "set flags 0x%02x with mask 0x%02x", val
, mask
);
162 // don't use this in an interrupt/BH
163 r
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0), 7, 0x41,
164 (val
& 0xff) | ((mask
& 0xff) << 8), 0,
165 NULL
, 0, 2000 /* timeout? */);
172 static int set_value(struct cardstate
*cs
, u8 req
, u16 val
)
174 struct usb_device
*udev
= cs
->hw
.usb
->udev
;
177 gig_dbg(DEBUG_USBREQ
, "request %02x (%04x)",
178 (unsigned)req
, (unsigned)val
);
179 r
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0), 0x12, 0x41,
180 0xf /*?*/, 0, NULL
, 0, 2000 /*?*/);
181 /* no idea what this does */
183 dev_err(&udev
->dev
, "error %d on request 0x12\n", -r
);
187 r
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0), req
, 0x41,
188 val
, 0, NULL
, 0, 2000 /*?*/);
190 dev_err(&udev
->dev
, "error %d on request 0x%02x\n",
193 r2
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0), 0x19, 0x41,
194 0, 0, cs
->hw
.usb
->bchars
, 6, 2000 /*?*/);
196 dev_err(&udev
->dev
, "error %d on request 0x19\n", -r2
);
198 return r
< 0 ? r
: (r2
< 0 ? r2
: 0);
201 /* WARNING: HIGHLY EXPERIMENTAL! */
202 // don't use this in an interrupt/BH
203 static int gigaset_baud_rate(struct cardstate
*cs
, unsigned cflag
)
212 case B300
: rate
= 300; break;
213 case B600
: rate
= 600; break;
214 case B1200
: rate
= 1200; break;
215 case B2400
: rate
= 2400; break;
216 case B4800
: rate
= 4800; break;
217 case B9600
: rate
= 9600; break;
218 case B19200
: rate
= 19200; break;
219 case B38400
: rate
= 38400; break;
220 case B57600
: rate
= 57600; break;
221 case B115200
: rate
= 115200; break;
224 dev_err(cs
->dev
, "unsupported baudrate request 0x%x,"
225 " using default of B9600\n", cflag
);
228 val
= 0x383fff / rate
+ 1;
230 return set_value(cs
, 1, val
);
233 /* WARNING: HIGHLY EXPERIMENTAL! */
234 // don't use this in an interrupt/BH
235 static int gigaset_set_line_ctrl(struct cardstate
*cs
, unsigned cflag
)
241 val
|= (cflag
& PARODD
) ? 0x10 : 0x20;
243 /* set the number of data bits */
244 switch (cflag
& CSIZE
) {
246 val
|= 5 << 8; break;
248 val
|= 6 << 8; break;
250 val
|= 7 << 8; break;
252 val
|= 8 << 8; break;
254 dev_err(cs
->dev
, "CSIZE was not CS5-CS8, using default of 8\n");
259 /* set the number of stop bits */
260 if (cflag
& CSTOPB
) {
261 if ((cflag
& CSIZE
) == CS5
)
262 val
|= 1; /* 1.5 stop bits */ //FIXME is this okay?
264 val
|= 2; /* 2 stop bits */
267 return set_value(cs
, 3, val
);
271 static int gigaset_set_modem_ctrl(struct cardstate
*cs
, unsigned old_state
,
277 static int gigaset_set_line_ctrl(struct cardstate
*cs
, unsigned cflag
)
282 static int gigaset_baud_rate(struct cardstate
*cs
, unsigned cflag
)
289 /*================================================================================================================*/
290 static int gigaset_init_bchannel(struct bc_state
*bcs
)
292 /* nothing to do for M10x */
293 gigaset_bchannel_up(bcs
);
297 static int gigaset_close_bchannel(struct bc_state
*bcs
)
299 /* nothing to do for M10x */
300 gigaset_bchannel_down(bcs
);
304 static int write_modem(struct cardstate
*cs
);
305 static int send_cb(struct cardstate
*cs
, struct cmdbuf_t
*cb
);
308 /* Write tasklet handler: Continue sending current skb, or send command, or
309 * start sending an skb from the send queue.
311 static void gigaset_modem_fill(unsigned long data
)
313 struct cardstate
*cs
= (struct cardstate
*) data
;
314 struct bc_state
*bcs
= &cs
->bcs
[0]; /* only one channel */
319 gig_dbg(DEBUG_OUTPUT
, "modem_fill");
321 if (atomic_read(&cs
->hw
.usb
->busy
)) {
322 gig_dbg(DEBUG_OUTPUT
, "modem_fill: busy");
328 if (!bcs
->tx_skb
) { /* no skb is being sent */
329 spin_lock_irqsave(&cs
->cmdlock
, flags
);
331 spin_unlock_irqrestore(&cs
->cmdlock
, flags
);
332 if (cb
) { /* commands to send? */
333 gig_dbg(DEBUG_OUTPUT
, "modem_fill: cb");
334 if (send_cb(cs
, cb
) < 0) {
335 gig_dbg(DEBUG_OUTPUT
,
336 "modem_fill: send_cb failed");
337 again
= 1; /* no callback will be
340 } else { /* skbs to send? */
341 bcs
->tx_skb
= skb_dequeue(&bcs
->squeue
);
344 "Dequeued skb (Adr: %lx)!",
345 (unsigned long) bcs
->tx_skb
);
350 gig_dbg(DEBUG_OUTPUT
, "modem_fill: tx_skb");
351 if (write_modem(cs
) < 0) {
352 gig_dbg(DEBUG_OUTPUT
,
353 "modem_fill: write_modem failed");
354 // FIXME should we tell the LL?
355 again
= 1; /* no callback will be called! */
362 * gigaset_read_int_callback
364 * It is called if the data was received from the device.
366 static void gigaset_read_int_callback(struct urb
*urb
, struct pt_regs
*regs
)
368 struct inbuf_t
*inbuf
= urb
->context
;
369 struct cardstate
*cs
= inbuf
->cs
;
377 if (!cs
->connected
) {
378 err("%s: disconnected", __func__
); /* should never happen */
382 numbytes
= urb
->actual_length
;
388 "%s: There was no leading 0, but 0x%02x!\n",
389 __func__
, (unsigned) *src
);
390 ++src
; /* skip leading 0x00 */
392 if (gigaset_fill_inbuf(inbuf
, src
, numbytes
)) {
393 gig_dbg(DEBUG_INTR
, "%s-->BH", __func__
);
394 gigaset_schedule_event(inbuf
->cs
);
397 gig_dbg(DEBUG_INTR
, "Received zero block length");
400 /* The urb might have been killed. */
401 gig_dbg(DEBUG_ANY
, "%s - nonzero read bulk status received: %d",
402 __func__
, urb
->status
);
403 if (urb
->status
!= -ENOENT
) { /* not killed */
404 if (!cs
->connected
) {
405 err("%s: disconnected", __func__
); /* should never happen */
413 spin_lock_irqsave(&cs
->lock
, flags
);
414 r
= cs
->connected
? usb_submit_urb(urb
, SLAB_ATOMIC
) : -ENODEV
;
415 spin_unlock_irqrestore(&cs
->lock
, flags
);
417 dev_err(cs
->dev
, "error %d when resubmitting urb.\n",
423 /* This callback routine is called when data was transmitted to the device. */
424 static void gigaset_write_bulk_callback(struct urb
*urb
, struct pt_regs
*regs
)
426 struct cardstate
*cs
= urb
->context
;
430 dev_err(cs
->dev
, "bulk transfer failed (status %d)\n",
432 /* That's all we can do. Communication problems
433 are handled by timeouts or network protocols. */
435 spin_lock_irqsave(&cs
->lock
, flags
);
436 if (!cs
->connected
) {
437 err("%s: not connected", __func__
);
439 atomic_set(&cs
->hw
.usb
->busy
, 0);
440 tasklet_schedule(&cs
->write_tasklet
);
442 spin_unlock_irqrestore(&cs
->lock
, flags
);
445 static int send_cb(struct cardstate
*cs
, struct cmdbuf_t
*cb
)
447 struct cmdbuf_t
*tcb
;
450 int status
= -ENOENT
; // FIXME
451 struct usb_cardstate
*ucs
= cs
->hw
.usb
;
457 spin_lock_irqsave(&cs
->cmdlock
, flags
);
458 cs
->cmdbytes
-= cs
->curlen
;
459 gig_dbg(DEBUG_OUTPUT
, "send_cb: sent %u bytes, %u left",
460 cs
->curlen
, cs
->cmdbytes
);
461 cs
->cmdbuf
= cb
= cb
->next
;
464 cs
->curlen
= cb
->len
;
466 cs
->lastcmdbuf
= NULL
;
469 spin_unlock_irqrestore(&cs
->cmdlock
, flags
);
471 if (tcb
->wake_tasklet
)
472 tasklet_schedule(tcb
->wake_tasklet
);
476 count
= min(cb
->len
, ucs
->bulk_out_size
);
477 gig_dbg(DEBUG_OUTPUT
, "send_cb: send %d bytes", count
);
479 usb_fill_bulk_urb(ucs
->bulk_out_urb
, ucs
->udev
,
480 usb_sndbulkpipe(ucs
->udev
,
481 ucs
->bulk_out_endpointAddr
& 0x0f),
482 cb
->buf
+ cb
->offset
, count
,
483 gigaset_write_bulk_callback
, cs
);
487 atomic_set(&ucs
->busy
, 1);
489 spin_lock_irqsave(&cs
->lock
, flags
);
490 status
= cs
->connected
? usb_submit_urb(ucs
->bulk_out_urb
, SLAB_ATOMIC
) : -ENODEV
;
491 spin_unlock_irqrestore(&cs
->lock
, flags
);
494 atomic_set(&ucs
->busy
, 0);
495 err("could not submit urb (error %d)\n",
497 cb
->len
= 0; /* skip urb => remove cb+wakeup
498 in next loop cycle */
501 } while (cb
&& status
); /* next command on error */
506 /* Send command to device. */
507 static int gigaset_write_cmd(struct cardstate
*cs
, const unsigned char *buf
,
508 int len
, struct tasklet_struct
*wake_tasklet
)
513 gigaset_dbg_buffer(atomic_read(&cs
->mstate
) != MS_LOCKED
?
514 DEBUG_TRANSCMD
: DEBUG_LOCKCMD
,
515 "CMD Transmit", len
, buf
);
520 if (!(cb
= kmalloc(sizeof(struct cmdbuf_t
) + len
, GFP_ATOMIC
))) {
521 dev_err(cs
->dev
, "%s: out of memory\n", __func__
);
525 memcpy(cb
->buf
, buf
, len
);
529 cb
->wake_tasklet
= wake_tasklet
;
531 spin_lock_irqsave(&cs
->cmdlock
, flags
);
532 cb
->prev
= cs
->lastcmdbuf
;
534 cs
->lastcmdbuf
->next
= cb
;
541 spin_unlock_irqrestore(&cs
->cmdlock
, flags
);
543 spin_lock_irqsave(&cs
->lock
, flags
);
545 tasklet_schedule(&cs
->write_tasklet
);
546 spin_unlock_irqrestore(&cs
->lock
, flags
);
550 static int gigaset_write_room(struct cardstate
*cs
)
555 spin_lock_irqsave(&cs
->cmdlock
, flags
);
556 bytes
= cs
->cmdbytes
;
557 spin_unlock_irqrestore(&cs
->cmdlock
, flags
);
559 return bytes
< IF_WRITEBUF
? IF_WRITEBUF
- bytes
: 0;
562 static int gigaset_chars_in_buffer(struct cardstate
*cs
)
567 static int gigaset_brkchars(struct cardstate
*cs
, const unsigned char buf
[6])
569 #ifdef CONFIG_GIGASET_UNDOCREQ
570 struct usb_device
*udev
= cs
->hw
.usb
->udev
;
572 gigaset_dbg_buffer(DEBUG_USBREQ
, "brkchars", 6, buf
);
573 memcpy(cs
->hw
.usb
->bchars
, buf
, 6);
574 return usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0), 0x19, 0x41,
575 0, 0, &buf
, 6, 2000);
581 static int gigaset_freebcshw(struct bc_state
*bcs
)
590 /* Initialize the b-channel structure */
591 static int gigaset_initbcshw(struct bc_state
*bcs
)
593 bcs
->hw
.usb
= kmalloc(sizeof(struct usb_bc_state
), GFP_KERNEL
);
600 static void gigaset_reinitbcshw(struct bc_state
*bcs
)
604 static void gigaset_freecshw(struct cardstate
*cs
)
606 tasklet_kill(&cs
->write_tasklet
);
610 static int gigaset_initcshw(struct cardstate
*cs
)
612 struct usb_cardstate
*ucs
;
615 kmalloc(sizeof(struct usb_cardstate
), GFP_KERNEL
);
623 ucs
->bchars
[4] = 0x11;
624 ucs
->bchars
[5] = 0x13;
625 ucs
->bulk_out_buffer
= NULL
;
626 ucs
->bulk_out_urb
= NULL
;
627 //ucs->urb_cmd_out = NULL;
628 ucs
->read_urb
= NULL
;
629 tasklet_init(&cs
->write_tasklet
,
630 &gigaset_modem_fill
, (unsigned long) cs
);
635 /* Send data from current skb to the device. */
636 static int write_modem(struct cardstate
*cs
)
640 struct bc_state
*bcs
= &cs
->bcs
[0]; /* only one channel */
641 struct usb_cardstate
*ucs
= cs
->hw
.usb
;
644 gig_dbg(DEBUG_WRITE
, "len: %d...", bcs
->tx_skb
->len
);
646 if (!bcs
->tx_skb
->len
) {
647 dev_kfree_skb_any(bcs
->tx_skb
);
652 /* Copy data to bulk out buffer and // FIXME copying not necessary
655 count
= min(bcs
->tx_skb
->len
, (unsigned) ucs
->bulk_out_size
);
656 memcpy(ucs
->bulk_out_buffer
, bcs
->tx_skb
->data
, count
);
657 skb_pull(bcs
->tx_skb
, count
);
658 atomic_set(&ucs
->busy
, 1);
659 gig_dbg(DEBUG_OUTPUT
, "write_modem: send %d bytes", count
);
661 spin_lock_irqsave(&cs
->lock
, flags
);
663 usb_fill_bulk_urb(ucs
->bulk_out_urb
, ucs
->udev
,
664 usb_sndbulkpipe(ucs
->udev
,
665 ucs
->bulk_out_endpointAddr
& 0x0f),
666 ucs
->bulk_out_buffer
, count
,
667 gigaset_write_bulk_callback
, cs
);
668 ret
= usb_submit_urb(ucs
->bulk_out_urb
, SLAB_ATOMIC
);
672 spin_unlock_irqrestore(&cs
->lock
, flags
);
675 err("could not submit urb (error %d)\n", -ret
);
676 atomic_set(&ucs
->busy
, 0);
679 if (!bcs
->tx_skb
->len
) {
680 /* skb sent completely */
681 gigaset_skb_sent(bcs
, bcs
->tx_skb
); //FIXME also, when ret<0?
683 gig_dbg(DEBUG_INTR
, "kfree skb (Adr: %lx)!",
684 (unsigned long) bcs
->tx_skb
);
685 dev_kfree_skb_any(bcs
->tx_skb
);
692 static int gigaset_probe(struct usb_interface
*interface
,
693 const struct usb_device_id
*id
)
696 struct usb_device
*udev
= interface_to_usbdev(interface
);
698 struct usb_host_interface
*hostif
;
699 struct cardstate
*cs
= NULL
;
700 struct usb_cardstate
*ucs
= NULL
;
701 struct usb_endpoint_descriptor
*endpoint
;
706 "%s: Check if device matches .. (Vendor: 0x%x, Product: 0x%x)",
707 __func__
, le16_to_cpu(udev
->descriptor
.idVendor
),
708 le16_to_cpu(udev
->descriptor
.idProduct
));
710 retval
= -ENODEV
; //FIXME
712 /* See if the device offered us matches what we can accept */
713 if ((le16_to_cpu(udev
->descriptor
.idVendor
) != USB_M105_VENDOR_ID
) ||
714 (le16_to_cpu(udev
->descriptor
.idProduct
) != USB_M105_PRODUCT_ID
))
717 /* this starts to become ascii art... */
718 hostif
= interface
->cur_altsetting
;
719 alt
= hostif
->desc
.bAlternateSetting
;
720 ifnum
= hostif
->desc
.bInterfaceNumber
; // FIXME ?
722 if (alt
!= 0 || ifnum
!= 0) {
723 dev_warn(&udev
->dev
, "ifnum %d, alt %d\n", ifnum
, alt
);
727 /* Reject application specific intefaces
730 if (hostif
->desc
.bInterfaceClass
!= 255) {
732 "%s: Device matched but iface_desc[%d]->bInterfaceClass==%d!\n",
733 __func__
, ifnum
, hostif
->desc
.bInterfaceClass
);
737 dev_info(&udev
->dev
, "%s: Device matched ... !\n", __func__
);
739 cs
= gigaset_getunassignedcs(driver
);
741 dev_warn(&udev
->dev
, "no free cardstate\n");
746 /* save off device structure ptrs for later use */
749 ucs
->interface
= interface
;
750 cs
->dev
= &interface
->dev
;
752 /* save address of controller structure */
753 usb_set_intfdata(interface
, cs
); // dev_set_drvdata(&interface->dev, cs);
755 endpoint
= &hostif
->endpoint
[0].desc
;
757 buffer_size
= le16_to_cpu(endpoint
->wMaxPacketSize
);
758 ucs
->bulk_out_size
= buffer_size
;
759 ucs
->bulk_out_endpointAddr
= endpoint
->bEndpointAddress
;
760 ucs
->bulk_out_buffer
= kmalloc(buffer_size
, GFP_KERNEL
);
761 if (!ucs
->bulk_out_buffer
) {
762 dev_err(cs
->dev
, "Couldn't allocate bulk_out_buffer\n");
767 ucs
->bulk_out_urb
= usb_alloc_urb(0, SLAB_KERNEL
);
768 if (!ucs
->bulk_out_urb
) {
769 dev_err(cs
->dev
, "Couldn't allocate bulk_out_urb\n");
774 endpoint
= &hostif
->endpoint
[1].desc
;
776 atomic_set(&ucs
->busy
, 0);
778 ucs
->read_urb
= usb_alloc_urb(0, SLAB_KERNEL
);
779 if (!ucs
->read_urb
) {
780 dev_err(cs
->dev
, "No free urbs available\n");
784 buffer_size
= le16_to_cpu(endpoint
->wMaxPacketSize
);
785 ucs
->rcvbuf_size
= buffer_size
;
786 ucs
->int_in_endpointAddr
= endpoint
->bEndpointAddress
;
787 cs
->inbuf
[0].rcvbuf
= kmalloc(buffer_size
, GFP_KERNEL
);
788 if (!cs
->inbuf
[0].rcvbuf
) {
789 dev_err(cs
->dev
, "Couldn't allocate rcvbuf\n");
793 /* Fill the interrupt urb and send it to the core */
794 usb_fill_int_urb(ucs
->read_urb
, udev
,
796 endpoint
->bEndpointAddress
& 0x0f),
797 cs
->inbuf
[0].rcvbuf
, buffer_size
,
798 gigaset_read_int_callback
,
799 cs
->inbuf
+ 0, endpoint
->bInterval
);
801 retval
= usb_submit_urb(ucs
->read_urb
, SLAB_KERNEL
);
803 dev_err(cs
->dev
, "Could not submit URB (error %d)\n", -retval
);
807 /* tell common part that the device is ready */
808 if (startmode
== SM_LOCKED
)
809 atomic_set(&cs
->mstate
, MS_LOCKED
);
811 if (!gigaset_start(cs
)) {
812 tasklet_kill(&cs
->write_tasklet
);
813 retval
= -ENODEV
; //FIXME
820 usb_kill_urb(ucs
->read_urb
);
821 kfree(ucs
->bulk_out_buffer
);
822 if (ucs
->bulk_out_urb
!= NULL
)
823 usb_free_urb(ucs
->bulk_out_urb
);
824 kfree(cs
->inbuf
[0].rcvbuf
);
825 if (ucs
->read_urb
!= NULL
)
826 usb_free_urb(ucs
->read_urb
);
827 usb_set_intfdata(interface
, NULL
);
828 ucs
->read_urb
= ucs
->bulk_out_urb
= NULL
;
829 cs
->inbuf
[0].rcvbuf
= ucs
->bulk_out_buffer
= NULL
;
830 usb_put_dev(ucs
->udev
);
832 ucs
->interface
= NULL
;
833 gigaset_unassign(cs
);
837 static void gigaset_disconnect(struct usb_interface
*interface
)
839 struct cardstate
*cs
;
840 struct usb_cardstate
*ucs
;
842 cs
= usb_get_intfdata(interface
);
844 usb_kill_urb(ucs
->read_urb
);
848 usb_set_intfdata(interface
, NULL
);
849 tasklet_kill(&cs
->write_tasklet
);
851 usb_kill_urb(ucs
->bulk_out_urb
); /* FIXME: only if active? */
853 kfree(ucs
->bulk_out_buffer
);
854 if (ucs
->bulk_out_urb
!= NULL
)
855 usb_free_urb(ucs
->bulk_out_urb
);
856 kfree(cs
->inbuf
[0].rcvbuf
);
857 if (ucs
->read_urb
!= NULL
)
858 usb_free_urb(ucs
->read_urb
);
859 ucs
->read_urb
= ucs
->bulk_out_urb
= NULL
;
860 cs
->inbuf
[0].rcvbuf
= ucs
->bulk_out_buffer
= NULL
;
862 usb_put_dev(ucs
->udev
);
863 ucs
->interface
= NULL
;
866 gigaset_unassign(cs
);
869 static struct gigaset_ops ops
= {
872 gigaset_chars_in_buffer
,
874 gigaset_init_bchannel
,
875 gigaset_close_bchannel
,
881 gigaset_set_modem_ctrl
,
883 gigaset_set_line_ctrl
,
884 gigaset_m10x_send_skb
,
890 * This function is called while kernel-module is loaded
892 static int __init
usb_gigaset_init(void)
896 /* allocate memory for our driver state and intialize it */
897 if ((driver
= gigaset_initdriver(GIGASET_MINOR
, GIGASET_MINORS
,
898 GIGASET_MODULENAME
, GIGASET_DEVNAME
,
899 GIGASET_DEVFSNAME
, &ops
,
900 THIS_MODULE
)) == NULL
)
903 /* allocate memory for our device state and intialize it */
904 cardstate
= gigaset_initcs(driver
, 1, 1, 0, cidmode
, GIGASET_MODULENAME
);
908 /* register this driver with the USB subsystem */
909 result
= usb_register(&gigaset_usb_driver
);
911 err("usb_gigaset: usb_register failed (error %d)",
920 error
: if (cardstate
)
921 gigaset_freecs(cardstate
);
924 gigaset_freedriver(driver
);
932 * This function is called while unloading the kernel-module
934 static void __exit
usb_gigaset_exit(void)
936 gigaset_blockdriver(driver
); /* => probe will fail
937 * => no gigaset_start any more
940 gigaset_shutdown(cardstate
);
941 /* from now on, no isdn callback should be possible */
943 /* deregister this driver with the USB subsystem */
944 usb_deregister(&gigaset_usb_driver
);
945 /* this will call the disconnect-callback */
946 /* from now on, no disconnect/probe callback should be running */
948 gigaset_freecs(cardstate
);
950 gigaset_freedriver(driver
);
955 module_init(usb_gigaset_init
);
956 module_exit(usb_gigaset_exit
);
958 MODULE_AUTHOR(DRIVER_AUTHOR
);
959 MODULE_DESCRIPTION(DRIVER_DESC
);
961 MODULE_LICENSE("GPL");