blob: d81c0e3f770249d1683d14b9d3c2a485ba9a2542 [file] [log] [blame]
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -08001/*
2 * USB driver for Gigaset 307x directly or using M105 Data.
3 *
Tilman Schmidt70440cf2006-04-10 22:55:14 -07004 * Copyright (c) 2001 by Stefan Eilers
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -08005 * and Hansjoerg Lipp <hjlipp@web.de>.
6 *
7 * This driver was derived from the USB skeleton driver by
8 * Greg Kroah-Hartman <greg@kroah.com>
9 *
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 * =====================================================================
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080016 */
17
18#include "gigaset.h"
19
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>
26
27/* Version Information */
Tilman Schmidt70440cf2006-04-10 22:55:14 -070028#define DRIVER_AUTHOR "Hansjoerg Lipp <hjlipp@web.de>, Stefan Eilers"
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080029#define DRIVER_DESC "USB Driver for Gigaset 307x using M105"
30
31/* Module parameters */
32
33static int startmode = SM_ISDN;
34static int cidmode = 1;
35
36module_param(startmode, int, S_IRUGO);
37module_param(cidmode, int, S_IRUGO);
38MODULE_PARM_DESC(startmode, "start in isdn4linux mode");
39MODULE_PARM_DESC(cidmode, "Call-ID mode");
40
41#define GIGASET_MINORS 1
42#define GIGASET_MINOR 8
43#define GIGASET_MODULENAME "usb_gigaset"
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080044#define GIGASET_DEVNAME "ttyGU"
45
46#define IF_WRITEBUF 2000 //FIXME // WAKEUP_CHARS: 256
47
48/* Values for the Gigaset M105 Data */
49#define USB_M105_VENDOR_ID 0x0681
50#define USB_M105_PRODUCT_ID 0x0009
51
52/* table of devices that work with this driver */
Tilman Schmidt35dc8452007-03-29 01:20:34 -070053static const struct usb_device_id gigaset_table [] = {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080054 { USB_DEVICE(USB_M105_VENDOR_ID, USB_M105_PRODUCT_ID) },
55 { } /* Terminating entry */
56};
57
58MODULE_DEVICE_TABLE(usb, gigaset_table);
59
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080060/*
61 * Control requests (empty fields: 00)
62 *
63 * RT|RQ|VALUE|INDEX|LEN |DATA
64 * In:
65 * C1 08 01
66 * Get flags (1 byte). Bits: 0=dtr,1=rts,3-7:?
67 * C1 0F ll ll
68 * Get device information/status (llll: 0x200 and 0x40 seen).
69 * Real size: I only saw MIN(llll,0x64).
70 * Contents: seems to be always the same...
71 * offset 0x00: Length of this structure (0x64) (len: 1,2,3 bytes)
72 * offset 0x3c: String (16 bit chars): "MCCI USB Serial V2.0"
73 * rest: ?
74 * Out:
75 * 41 11
76 * Initialize/reset device ?
77 * 41 00 xx 00
78 * ? (xx=00 or 01; 01 on start, 00 on close)
79 * 41 07 vv mm
80 * Set/clear flags vv=value, mm=mask (see RQ 08)
81 * 41 12 xx
82 * Used before the following configuration requests are issued
83 * (with xx=0x0f). I've seen other values<0xf, though.
84 * 41 01 xx xx
85 * Set baud rate. xxxx=ceil(0x384000/rate)=trunc(0x383fff/rate)+1.
86 * 41 03 ps bb
87 * Set byte size and parity. p: 0x20=even,0x10=odd,0x00=no parity
88 * [ 0x30: m, 0x40: s ]
89 * [s: 0: 1 stop bit; 1: 1.5; 2: 2]
90 * bb: bits/byte (seen 7 and 8)
91 * 41 13 -- -- -- -- 10 00 ww 00 00 00 xx 00 00 00 yy 00 00 00 zz 00 00 00
92 * ??
93 * Initialization: 01, 40, 00, 00
94 * Open device: 00 40, 00, 00
95 * yy and zz seem to be equal, either 0x00 or 0x0a
96 * (ww,xx) pairs seen: (00,00), (00,40), (01,40), (09,80), (19,80)
97 * 41 19 -- -- -- -- 06 00 00 00 00 xx 11 13
98 * Used after every "configuration sequence" (RQ 12, RQs 01/03/13).
99 * xx is usually 0x00 but was 0x7e before starting data transfer
100 * in unimodem mode. So, this might be an array of characters that need
101 * special treatment ("commit all bufferd data"?), 11=^Q, 13=^S.
102 *
103 * Unimodem mode: use "modprobe ppp_async flag_time=0" as the device _needs_ two
104 * flags per packet.
105 */
106
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800107/* functions called if a device of this driver is connected/disconnected */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800108static int gigaset_probe(struct usb_interface *interface,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700109 const struct usb_device_id *id);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800110static void gigaset_disconnect(struct usb_interface *interface);
111
112static struct gigaset_driver *driver = NULL;
113static struct cardstate *cardstate = NULL;
114
115/* usb specific object needed to register this driver with the usb subsystem */
116static struct usb_driver gigaset_usb_driver = {
Tilman Schmidt917f5082006-04-10 22:55:00 -0700117 .name = GIGASET_MODULENAME,
118 .probe = gigaset_probe,
119 .disconnect = gigaset_disconnect,
120 .id_table = gigaset_table,
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800121};
122
123struct usb_cardstate {
Tilman Schmidt917f5082006-04-10 22:55:00 -0700124 struct usb_device *udev; /* usb device pointer */
125 struct usb_interface *interface; /* interface for this device */
126 atomic_t busy; /* bulk output in progress */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800127
Tilman Schmidt917f5082006-04-10 22:55:00 -0700128 /* Output buffer */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700129 unsigned char *bulk_out_buffer;
130 int bulk_out_size;
131 __u8 bulk_out_endpointAddr;
132 struct urb *bulk_out_urb;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800133
Tilman Schmidt917f5082006-04-10 22:55:00 -0700134 /* Input buffer */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700135 int rcvbuf_size;
136 struct urb *read_urb;
137 __u8 int_in_endpointAddr;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800138
Tilman Schmidt784d5852006-04-10 22:55:04 -0700139 char bchars[6]; /* for request 0x19 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800140};
141
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800142static inline unsigned tiocm_to_gigaset(unsigned state)
143{
144 return ((state & TIOCM_DTR) ? 1 : 0) | ((state & TIOCM_RTS) ? 2 : 0);
145}
146
147#ifdef CONFIG_GIGASET_UNDOCREQ
148/* WARNING: EXPERIMENTAL! */
149static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700150 unsigned new_state)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800151{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700152 struct usb_device *udev = cs->hw.usb->udev;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800153 unsigned mask, val;
154 int r;
155
156 mask = tiocm_to_gigaset(old_state ^ new_state);
157 val = tiocm_to_gigaset(new_state);
158
Tilman Schmidt784d5852006-04-10 22:55:04 -0700159 gig_dbg(DEBUG_USBREQ, "set flags 0x%02x with mask 0x%02x", val, mask);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700160 // don't use this in an interrupt/BH
Tilman Schmidt784d5852006-04-10 22:55:04 -0700161 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 7, 0x41,
162 (val & 0xff) | ((mask & 0xff) << 8), 0,
163 NULL, 0, 2000 /* timeout? */);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800164 if (r < 0)
165 return r;
166 //..
167 return 0;
168}
169
170static int set_value(struct cardstate *cs, u8 req, u16 val)
171{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700172 struct usb_device *udev = cs->hw.usb->udev;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800173 int r, r2;
174
Tilman Schmidt784d5852006-04-10 22:55:04 -0700175 gig_dbg(DEBUG_USBREQ, "request %02x (%04x)",
176 (unsigned)req, (unsigned)val);
177 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x12, 0x41,
178 0xf /*?*/, 0, NULL, 0, 2000 /*?*/);
179 /* no idea what this does */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800180 if (r < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700181 dev_err(&udev->dev, "error %d on request 0x12\n", -r);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800182 return r;
183 }
184
Tilman Schmidt784d5852006-04-10 22:55:04 -0700185 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), req, 0x41,
186 val, 0, NULL, 0, 2000 /*?*/);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800187 if (r < 0)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700188 dev_err(&udev->dev, "error %d on request 0x%02x\n",
189 -r, (unsigned)req);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800190
Tilman Schmidt784d5852006-04-10 22:55:04 -0700191 r2 = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
192 0, 0, cs->hw.usb->bchars, 6, 2000 /*?*/);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800193 if (r2 < 0)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700194 dev_err(&udev->dev, "error %d on request 0x19\n", -r2);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800195
196 return r < 0 ? r : (r2 < 0 ? r2 : 0);
197}
198
199/* WARNING: HIGHLY EXPERIMENTAL! */
200// don't use this in an interrupt/BH
201static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
202{
203 u16 val;
204 u32 rate;
205
206 cflag &= CBAUD;
207
208 switch (cflag) {
209 //FIXME more values?
210 case B300: rate = 300; break;
211 case B600: rate = 600; break;
212 case B1200: rate = 1200; break;
213 case B2400: rate = 2400; break;
214 case B4800: rate = 4800; break;
215 case B9600: rate = 9600; break;
216 case B19200: rate = 19200; break;
217 case B38400: rate = 38400; break;
218 case B57600: rate = 57600; break;
219 case B115200: rate = 115200; break;
220 default:
221 rate = 9600;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700222 dev_err(cs->dev, "unsupported baudrate request 0x%x,"
223 " using default of B9600\n", cflag);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800224 }
225
226 val = 0x383fff / rate + 1;
227
228 return set_value(cs, 1, val);
229}
230
231/* WARNING: HIGHLY EXPERIMENTAL! */
232// don't use this in an interrupt/BH
233static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag)
234{
235 u16 val = 0;
236
237 /* set the parity */
238 if (cflag & PARENB)
239 val |= (cflag & PARODD) ? 0x10 : 0x20;
240
241 /* set the number of data bits */
242 switch (cflag & CSIZE) {
243 case CS5:
244 val |= 5 << 8; break;
245 case CS6:
246 val |= 6 << 8; break;
247 case CS7:
248 val |= 7 << 8; break;
249 case CS8:
250 val |= 8 << 8; break;
251 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700252 dev_err(cs->dev, "CSIZE was not CS5-CS8, using default of 8\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800253 val |= 8 << 8;
254 break;
255 }
256
257 /* set the number of stop bits */
258 if (cflag & CSTOPB) {
259 if ((cflag & CSIZE) == CS5)
260 val |= 1; /* 1.5 stop bits */ //FIXME is this okay?
261 else
262 val |= 2; /* 2 stop bits */
263 }
264
265 return set_value(cs, 3, val);
266}
267
268#else
269static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700270 unsigned new_state)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800271{
272 return -EINVAL;
273}
274
275static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag)
276{
277 return -EINVAL;
278}
279
280static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
281{
282 return -EINVAL;
283}
284#endif
285
286
287 /*================================================================================================================*/
288static int gigaset_init_bchannel(struct bc_state *bcs)
289{
290 /* nothing to do for M10x */
291 gigaset_bchannel_up(bcs);
292 return 0;
293}
294
295static int gigaset_close_bchannel(struct bc_state *bcs)
296{
297 /* nothing to do for M10x */
298 gigaset_bchannel_down(bcs);
299 return 0;
300}
301
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800302static int write_modem(struct cardstate *cs);
303static int send_cb(struct cardstate *cs, struct cmdbuf_t *cb);
304
305
Tilman Schmidt917f5082006-04-10 22:55:00 -0700306/* Write tasklet handler: Continue sending current skb, or send command, or
307 * start sending an skb from the send queue.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800308 */
309static void gigaset_modem_fill(unsigned long data)
310{
311 struct cardstate *cs = (struct cardstate *) data;
312 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
313 struct cmdbuf_t *cb;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800314 int again;
315
Tilman Schmidt784d5852006-04-10 22:55:04 -0700316 gig_dbg(DEBUG_OUTPUT, "modem_fill");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800317
318 if (atomic_read(&cs->hw.usb->busy)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700319 gig_dbg(DEBUG_OUTPUT, "modem_fill: busy");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800320 return;
321 }
322
323 do {
324 again = 0;
325 if (!bcs->tx_skb) { /* no skb is being sent */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800326 cb = cs->cmdbuf;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800327 if (cb) { /* commands to send? */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700328 gig_dbg(DEBUG_OUTPUT, "modem_fill: cb");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800329 if (send_cb(cs, cb) < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700330 gig_dbg(DEBUG_OUTPUT,
331 "modem_fill: send_cb failed");
Tilman Schmidt917f5082006-04-10 22:55:00 -0700332 again = 1; /* no callback will be
333 called! */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800334 }
335 } else { /* skbs to send? */
336 bcs->tx_skb = skb_dequeue(&bcs->squeue);
337 if (bcs->tx_skb)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700338 gig_dbg(DEBUG_INTR,
339 "Dequeued skb (Adr: %lx)!",
340 (unsigned long) bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800341 }
342 }
343
344 if (bcs->tx_skb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700345 gig_dbg(DEBUG_OUTPUT, "modem_fill: tx_skb");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800346 if (write_modem(cs) < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700347 gig_dbg(DEBUG_OUTPUT,
348 "modem_fill: write_modem failed");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800349 // FIXME should we tell the LL?
350 again = 1; /* no callback will be called! */
351 }
352 }
353 } while (again);
354}
355
356/**
357 * gigaset_read_int_callback
358 *
Tilman Schmidt784d5852006-04-10 22:55:04 -0700359 * It is called if the data was received from the device.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800360 */
David Howells7d12e782006-10-05 14:55:46 +0100361static void gigaset_read_int_callback(struct urb *urb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800362{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700363 struct inbuf_t *inbuf = urb->context;
364 struct cardstate *cs = inbuf->cs;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800365 int status = urb->status;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800366 int r;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800367 unsigned numbytes;
368 unsigned char *src;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700369 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800370
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800371 if (!status) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800372 numbytes = urb->actual_length;
373
374 if (numbytes) {
375 src = inbuf->rcvbuf;
376 if (unlikely(*src))
Tilman Schmidt784d5852006-04-10 22:55:04 -0700377 dev_warn(cs->dev,
378 "%s: There was no leading 0, but 0x%02x!\n",
379 __func__, (unsigned) *src);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800380 ++src; /* skip leading 0x00 */
381 --numbytes;
382 if (gigaset_fill_inbuf(inbuf, src, numbytes)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700383 gig_dbg(DEBUG_INTR, "%s-->BH", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800384 gigaset_schedule_event(inbuf->cs);
385 }
386 } else
Tilman Schmidt784d5852006-04-10 22:55:04 -0700387 gig_dbg(DEBUG_INTR, "Received zero block length");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800388 } else {
389 /* The urb might have been killed. */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800390 gig_dbg(DEBUG_ANY, "%s - nonzero status received: %d",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800391 __func__, status);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800392 if (status == -ENOENT || status == -ESHUTDOWN)
393 /* killed or endpoint shutdown: don't resubmit */
394 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800395 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700396
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800397 /* resubmit URB */
398 spin_lock_irqsave(&cs->lock, flags);
399 if (!cs->connected) {
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700400 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800401 err("%s: disconnected", __func__);
402 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800403 }
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800404 r = usb_submit_urb(urb, GFP_ATOMIC);
405 spin_unlock_irqrestore(&cs->lock, flags);
406 if (r)
407 dev_err(cs->dev, "error %d resubmitting URB\n", -r);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800408}
409
410
Tilman Schmidt917f5082006-04-10 22:55:00 -0700411/* This callback routine is called when data was transmitted to the device. */
David Howells7d12e782006-10-05 14:55:46 +0100412static void gigaset_write_bulk_callback(struct urb *urb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800413{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700414 struct cardstate *cs = urb->context;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800415 int status = urb->status;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700416 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800417
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800418 switch (status) {
419 case 0: /* normal completion */
420 break;
421 case -ENOENT: /* killed */
422 gig_dbg(DEBUG_ANY, "%s: killed", __func__);
423 atomic_set(&cs->hw.usb->busy, 0);
424 return;
425 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700426 dev_err(cs->dev, "bulk transfer failed (status %d)\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800427 -status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700428 /* That's all we can do. Communication problems
Tilman Schmidt784d5852006-04-10 22:55:04 -0700429 are handled by timeouts or network protocols. */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800430 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800431
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700432 spin_lock_irqsave(&cs->lock, flags);
433 if (!cs->connected) {
434 err("%s: not connected", __func__);
435 } else {
436 atomic_set(&cs->hw.usb->busy, 0);
437 tasklet_schedule(&cs->write_tasklet);
438 }
439 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800440}
441
442static int send_cb(struct cardstate *cs, struct cmdbuf_t *cb)
443{
444 struct cmdbuf_t *tcb;
445 unsigned long flags;
446 int count;
447 int status = -ENOENT; // FIXME
448 struct usb_cardstate *ucs = cs->hw.usb;
449
450 do {
451 if (!cb->len) {
452 tcb = cb;
453
454 spin_lock_irqsave(&cs->cmdlock, flags);
455 cs->cmdbytes -= cs->curlen;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700456 gig_dbg(DEBUG_OUTPUT, "send_cb: sent %u bytes, %u left",
457 cs->curlen, cs->cmdbytes);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800458 cs->cmdbuf = cb = cb->next;
459 if (cb) {
460 cb->prev = NULL;
461 cs->curlen = cb->len;
462 } else {
463 cs->lastcmdbuf = NULL;
464 cs->curlen = 0;
465 }
466 spin_unlock_irqrestore(&cs->cmdlock, flags);
467
468 if (tcb->wake_tasklet)
469 tasklet_schedule(tcb->wake_tasklet);
470 kfree(tcb);
471 }
472 if (cb) {
473 count = min(cb->len, ucs->bulk_out_size);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700474 gig_dbg(DEBUG_OUTPUT, "send_cb: send %d bytes", count);
475
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800476 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700477 usb_sndbulkpipe(ucs->udev,
478 ucs->bulk_out_endpointAddr & 0x0f),
479 cb->buf + cb->offset, count,
480 gigaset_write_bulk_callback, cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800481
482 cb->offset += count;
483 cb->len -= count;
484 atomic_set(&ucs->busy, 1);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800485
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700486 spin_lock_irqsave(&cs->lock, flags);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800487 status = cs->connected ? usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC) : -ENODEV;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700488 spin_unlock_irqrestore(&cs->lock, flags);
489
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800490 if (status) {
491 atomic_set(&ucs->busy, 0);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700492 err("could not submit urb (error %d)\n",
493 -status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700494 cb->len = 0; /* skip urb => remove cb+wakeup
495 in next loop cycle */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800496 }
497 }
Tilman Schmidt917f5082006-04-10 22:55:00 -0700498 } while (cb && status); /* next command on error */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800499
500 return status;
501}
502
Tilman Schmidt917f5082006-04-10 22:55:00 -0700503/* Send command to device. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800504static int gigaset_write_cmd(struct cardstate *cs, const unsigned char *buf,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700505 int len, struct tasklet_struct *wake_tasklet)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800506{
507 struct cmdbuf_t *cb;
508 unsigned long flags;
509
510 gigaset_dbg_buffer(atomic_read(&cs->mstate) != MS_LOCKED ?
Tilman Schmidt784d5852006-04-10 22:55:04 -0700511 DEBUG_TRANSCMD : DEBUG_LOCKCMD,
Tilman Schmidt01371502006-04-10 22:55:11 -0700512 "CMD Transmit", len, buf);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800513
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800514 if (len <= 0)
515 return 0;
516
517 if (!(cb = kmalloc(sizeof(struct cmdbuf_t) + len, GFP_ATOMIC))) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700518 dev_err(cs->dev, "%s: out of memory\n", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800519 return -ENOMEM;
520 }
521
522 memcpy(cb->buf, buf, len);
523 cb->len = len;
524 cb->offset = 0;
525 cb->next = NULL;
526 cb->wake_tasklet = wake_tasklet;
527
528 spin_lock_irqsave(&cs->cmdlock, flags);
529 cb->prev = cs->lastcmdbuf;
530 if (cs->lastcmdbuf)
531 cs->lastcmdbuf->next = cb;
532 else {
533 cs->cmdbuf = cb;
534 cs->curlen = len;
535 }
536 cs->cmdbytes += len;
537 cs->lastcmdbuf = cb;
538 spin_unlock_irqrestore(&cs->cmdlock, flags);
539
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700540 spin_lock_irqsave(&cs->lock, flags);
541 if (cs->connected)
542 tasklet_schedule(&cs->write_tasklet);
543 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800544 return len;
545}
546
547static int gigaset_write_room(struct cardstate *cs)
548{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800549 unsigned bytes;
550
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800551 bytes = cs->cmdbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800552 return bytes < IF_WRITEBUF ? IF_WRITEBUF - bytes : 0;
553}
554
555static int gigaset_chars_in_buffer(struct cardstate *cs)
556{
557 return cs->cmdbytes;
558}
559
560static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6])
561{
562#ifdef CONFIG_GIGASET_UNDOCREQ
Tilman Schmidt784d5852006-04-10 22:55:04 -0700563 struct usb_device *udev = cs->hw.usb->udev;
564
Tilman Schmidt01371502006-04-10 22:55:11 -0700565 gigaset_dbg_buffer(DEBUG_USBREQ, "brkchars", 6, buf);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800566 memcpy(cs->hw.usb->bchars, buf, 6);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700567 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
568 0, 0, &buf, 6, 2000);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800569#else
570 return -EINVAL;
571#endif
572}
573
574static int gigaset_freebcshw(struct bc_state *bcs)
575{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700576 /* unused */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800577 return 1;
578}
579
580/* Initialize the b-channel structure */
581static int gigaset_initbcshw(struct bc_state *bcs)
582{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700583 /* unused */
584 bcs->hw.usb = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800585 return 1;
586}
587
588static void gigaset_reinitbcshw(struct bc_state *bcs)
589{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700590 /* nothing to do for M10x */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800591}
592
593static void gigaset_freecshw(struct cardstate *cs)
594{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800595 tasklet_kill(&cs->write_tasklet);
596 kfree(cs->hw.usb);
597}
598
599static int gigaset_initcshw(struct cardstate *cs)
600{
601 struct usb_cardstate *ucs;
602
603 cs->hw.usb = ucs =
604 kmalloc(sizeof(struct usb_cardstate), GFP_KERNEL);
605 if (!ucs)
606 return 0;
607
608 ucs->bchars[0] = 0;
609 ucs->bchars[1] = 0;
610 ucs->bchars[2] = 0;
611 ucs->bchars[3] = 0;
612 ucs->bchars[4] = 0x11;
613 ucs->bchars[5] = 0x13;
614 ucs->bulk_out_buffer = NULL;
615 ucs->bulk_out_urb = NULL;
616 //ucs->urb_cmd_out = NULL;
617 ucs->read_urb = NULL;
618 tasklet_init(&cs->write_tasklet,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700619 &gigaset_modem_fill, (unsigned long) cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800620
621 return 1;
622}
623
Tilman Schmidt917f5082006-04-10 22:55:00 -0700624/* Send data from current skb to the device. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800625static int write_modem(struct cardstate *cs)
626{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700627 int ret = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800628 int count;
629 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
630 struct usb_cardstate *ucs = cs->hw.usb;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700631 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800632
Tilman Schmidt784d5852006-04-10 22:55:04 -0700633 gig_dbg(DEBUG_WRITE, "len: %d...", bcs->tx_skb->len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800634
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800635 if (!bcs->tx_skb->len) {
636 dev_kfree_skb_any(bcs->tx_skb);
637 bcs->tx_skb = NULL;
638 return -EINVAL;
639 }
640
641 /* Copy data to bulk out buffer and // FIXME copying not necessary
642 * transmit data
643 */
644 count = min(bcs->tx_skb->len, (unsigned) ucs->bulk_out_size);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300645 skb_copy_from_linear_data(bcs->tx_skb, ucs->bulk_out_buffer, count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800646 skb_pull(bcs->tx_skb, count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800647 atomic_set(&ucs->busy, 1);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700648 gig_dbg(DEBUG_OUTPUT, "write_modem: send %d bytes", count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800649
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700650 spin_lock_irqsave(&cs->lock, flags);
651 if (cs->connected) {
652 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
653 usb_sndbulkpipe(ucs->udev,
654 ucs->bulk_out_endpointAddr & 0x0f),
655 ucs->bulk_out_buffer, count,
656 gigaset_write_bulk_callback, cs);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800657 ret = usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700658 } else {
659 ret = -ENODEV;
660 }
661 spin_unlock_irqrestore(&cs->lock, flags);
662
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800663 if (ret) {
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700664 err("could not submit urb (error %d)\n", -ret);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800665 atomic_set(&ucs->busy, 0);
666 }
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700667
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800668 if (!bcs->tx_skb->len) {
669 /* skb sent completely */
670 gigaset_skb_sent(bcs, bcs->tx_skb); //FIXME also, when ret<0?
671
Tilman Schmidt784d5852006-04-10 22:55:04 -0700672 gig_dbg(DEBUG_INTR, "kfree skb (Adr: %lx)!",
673 (unsigned long) bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800674 dev_kfree_skb_any(bcs->tx_skb);
675 bcs->tx_skb = NULL;
676 }
677
678 return ret;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800679}
680
681static int gigaset_probe(struct usb_interface *interface,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700682 const struct usb_device_id *id)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800683{
684 int retval;
685 struct usb_device *udev = interface_to_usbdev(interface);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800686 struct usb_host_interface *hostif = interface->cur_altsetting;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800687 struct cardstate *cs = NULL;
688 struct usb_cardstate *ucs = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800689 struct usb_endpoint_descriptor *endpoint;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800690 int buffer_size;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800691
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800692 gig_dbg(DEBUG_ANY, "%s: Check if device matches ...", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800693
694 /* See if the device offered us matches what we can accept */
Alexey Dobriyanbfe2e932006-05-15 09:44:35 -0700695 if ((le16_to_cpu(udev->descriptor.idVendor) != USB_M105_VENDOR_ID) ||
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800696 (le16_to_cpu(udev->descriptor.idProduct) != USB_M105_PRODUCT_ID)) {
697 gig_dbg(DEBUG_ANY, "device ID (0x%x, 0x%x) not for me - skip",
698 le16_to_cpu(udev->descriptor.idVendor),
699 le16_to_cpu(udev->descriptor.idProduct));
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800700 return -ENODEV;
701 }
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800702 if (hostif->desc.bInterfaceNumber != 0) {
703 gig_dbg(DEBUG_ANY, "interface %d not for me - skip",
704 hostif->desc.bInterfaceNumber);
705 return -ENODEV;
706 }
707 if (hostif->desc.bAlternateSetting != 0) {
708 dev_notice(&udev->dev, "unsupported altsetting %d - skip",
709 hostif->desc.bAlternateSetting);
710 return -ENODEV;
711 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800712 if (hostif->desc.bInterfaceClass != 255) {
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800713 dev_notice(&udev->dev, "unsupported interface class %d - skip",
714 hostif->desc.bInterfaceClass);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800715 return -ENODEV;
716 }
717
Tilman Schmidt784d5852006-04-10 22:55:04 -0700718 dev_info(&udev->dev, "%s: Device matched ... !\n", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800719
720 cs = gigaset_getunassignedcs(driver);
721 if (!cs) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700722 dev_warn(&udev->dev, "no free cardstate\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800723 return -ENODEV;
724 }
725 ucs = cs->hw.usb;
726
Tilman Schmidt784d5852006-04-10 22:55:04 -0700727 /* save off device structure ptrs for later use */
728 usb_get_dev(udev);
729 ucs->udev = udev;
730 ucs->interface = interface;
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700731 cs->dev = &interface->dev;
732
733 /* save address of controller structure */
734 usb_set_intfdata(interface, cs); // dev_set_drvdata(&interface->dev, cs);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700735
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800736 endpoint = &hostif->endpoint[0].desc;
737
738 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
739 ucs->bulk_out_size = buffer_size;
740 ucs->bulk_out_endpointAddr = endpoint->bEndpointAddress;
741 ucs->bulk_out_buffer = kmalloc(buffer_size, GFP_KERNEL);
742 if (!ucs->bulk_out_buffer) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700743 dev_err(cs->dev, "Couldn't allocate bulk_out_buffer\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800744 retval = -ENOMEM;
745 goto error;
746 }
747
Christoph Lametere94b1762006-12-06 20:33:17 -0800748 ucs->bulk_out_urb = usb_alloc_urb(0, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800749 if (!ucs->bulk_out_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700750 dev_err(cs->dev, "Couldn't allocate bulk_out_urb\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800751 retval = -ENOMEM;
752 goto error;
753 }
754
755 endpoint = &hostif->endpoint[1].desc;
756
757 atomic_set(&ucs->busy, 0);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800758
Christoph Lametere94b1762006-12-06 20:33:17 -0800759 ucs->read_urb = usb_alloc_urb(0, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800760 if (!ucs->read_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700761 dev_err(cs->dev, "No free urbs available\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800762 retval = -ENOMEM;
763 goto error;
764 }
765 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
766 ucs->rcvbuf_size = buffer_size;
767 ucs->int_in_endpointAddr = endpoint->bEndpointAddress;
768 cs->inbuf[0].rcvbuf = kmalloc(buffer_size, GFP_KERNEL);
769 if (!cs->inbuf[0].rcvbuf) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700770 dev_err(cs->dev, "Couldn't allocate rcvbuf\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800771 retval = -ENOMEM;
772 goto error;
773 }
774 /* Fill the interrupt urb and send it to the core */
775 usb_fill_int_urb(ucs->read_urb, udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700776 usb_rcvintpipe(udev,
777 endpoint->bEndpointAddress & 0x0f),
778 cs->inbuf[0].rcvbuf, buffer_size,
779 gigaset_read_int_callback,
780 cs->inbuf + 0, endpoint->bInterval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800781
Christoph Lametere94b1762006-12-06 20:33:17 -0800782 retval = usb_submit_urb(ucs->read_urb, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800783 if (retval) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700784 dev_err(cs->dev, "Could not submit URB (error %d)\n", -retval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800785 goto error;
786 }
787
788 /* tell common part that the device is ready */
789 if (startmode == SM_LOCKED)
790 atomic_set(&cs->mstate, MS_LOCKED);
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700791
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800792 if (!gigaset_start(cs)) {
793 tasklet_kill(&cs->write_tasklet);
794 retval = -ENODEV; //FIXME
795 goto error;
796 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800797 return 0;
798
799error:
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100800 usb_kill_urb(ucs->read_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800801 kfree(ucs->bulk_out_buffer);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100802 usb_free_urb(ucs->bulk_out_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800803 kfree(cs->inbuf[0].rcvbuf);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100804 usb_free_urb(ucs->read_urb);
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700805 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800806 ucs->read_urb = ucs->bulk_out_urb = NULL;
807 cs->inbuf[0].rcvbuf = ucs->bulk_out_buffer = NULL;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700808 usb_put_dev(ucs->udev);
809 ucs->udev = NULL;
810 ucs->interface = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800811 gigaset_unassign(cs);
812 return retval;
813}
814
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800815static void gigaset_disconnect(struct usb_interface *interface)
816{
817 struct cardstate *cs;
818 struct usb_cardstate *ucs;
819
820 cs = usb_get_intfdata(interface);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800821 ucs = cs->hw.usb;
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800822
823 dev_info(cs->dev, "disconnecting Gigaset USB adapter\n");
824
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800825 usb_kill_urb(ucs->read_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800826
827 gigaset_stop(cs);
828
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700829 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800830 tasklet_kill(&cs->write_tasklet);
831
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800832 usb_kill_urb(ucs->bulk_out_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800833
834 kfree(ucs->bulk_out_buffer);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100835 usb_free_urb(ucs->bulk_out_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800836 kfree(cs->inbuf[0].rcvbuf);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100837 usb_free_urb(ucs->read_urb);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700838 ucs->read_urb = ucs->bulk_out_urb = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800839 cs->inbuf[0].rcvbuf = ucs->bulk_out_buffer = NULL;
840
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700841 usb_put_dev(ucs->udev);
842 ucs->interface = NULL;
843 ucs->udev = NULL;
844 cs->dev = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800845 gigaset_unassign(cs);
846}
847
Tilman Schmidt35dc8452007-03-29 01:20:34 -0700848static const struct gigaset_ops ops = {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800849 gigaset_write_cmd,
850 gigaset_write_room,
851 gigaset_chars_in_buffer,
852 gigaset_brkchars,
853 gigaset_init_bchannel,
854 gigaset_close_bchannel,
855 gigaset_initbcshw,
856 gigaset_freebcshw,
857 gigaset_reinitbcshw,
858 gigaset_initcshw,
859 gigaset_freecshw,
860 gigaset_set_modem_ctrl,
861 gigaset_baud_rate,
862 gigaset_set_line_ctrl,
863 gigaset_m10x_send_skb,
864 gigaset_m10x_input,
865};
866
867/**
868 * usb_gigaset_init
869 * This function is called while kernel-module is loaded
870 */
871static int __init usb_gigaset_init(void)
872{
873 int result;
874
875 /* allocate memory for our driver state and intialize it */
876 if ((driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700877 GIGASET_MODULENAME, GIGASET_DEVNAME,
Greg Kroah-Hartmanf4eaa372005-06-20 21:15:16 -0700878 &ops, THIS_MODULE)) == NULL)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800879 goto error;
880
881 /* allocate memory for our device state and intialize it */
882 cardstate = gigaset_initcs(driver, 1, 1, 0, cidmode, GIGASET_MODULENAME);
883 if (!cardstate)
884 goto error;
885
886 /* register this driver with the USB subsystem */
887 result = usb_register(&gigaset_usb_driver);
888 if (result < 0) {
889 err("usb_gigaset: usb_register failed (error %d)",
890 -result);
891 goto error;
892 }
893
894 info(DRIVER_AUTHOR);
895 info(DRIVER_DESC);
896 return 0;
897
898error: if (cardstate)
899 gigaset_freecs(cardstate);
900 cardstate = NULL;
901 if (driver)
902 gigaset_freedriver(driver);
903 driver = NULL;
904 return -1;
905}
906
907
908/**
909 * usb_gigaset_exit
910 * This function is called while unloading the kernel-module
911 */
912static void __exit usb_gigaset_exit(void)
913{
914 gigaset_blockdriver(driver); /* => probe will fail
Tilman Schmidt784d5852006-04-10 22:55:04 -0700915 * => no gigaset_start any more
916 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800917
918 gigaset_shutdown(cardstate);
919 /* from now on, no isdn callback should be possible */
920
921 /* deregister this driver with the USB subsystem */
922 usb_deregister(&gigaset_usb_driver);
923 /* this will call the disconnect-callback */
924 /* from now on, no disconnect/probe callback should be running */
925
926 gigaset_freecs(cardstate);
927 cardstate = NULL;
928 gigaset_freedriver(driver);
929 driver = NULL;
930}
931
932
933module_init(usb_gigaset_init);
934module_exit(usb_gigaset_exit);
935
936MODULE_AUTHOR(DRIVER_AUTHOR);
937MODULE_DESCRIPTION(DRIVER_DESC);
938
939MODULE_LICENSE("GPL");