]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/isdn/gigaset/usb-gigaset.c
Merge branch 'i2c/for-4.13' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa...
[mirror_ubuntu-artful-kernel.git] / drivers / isdn / gigaset / usb-gigaset.c
CommitLineData
07dc1f9f
HL
1/*
2 * USB driver for Gigaset 307x directly or using M105 Data.
3 *
70440cf2 4 * Copyright (c) 2001 by Stefan Eilers
07dc1f9f
HL
5 * 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 * =====================================================================
07dc1f9f
HL
16 */
17
18#include "gigaset.h"
07dc1f9f
HL
19#include <linux/usb.h>
20#include <linux/module.h>
21#include <linux/moduleparam.h>
22
23/* Version Information */
70440cf2 24#define DRIVER_AUTHOR "Hansjoerg Lipp <hjlipp@web.de>, Stefan Eilers"
07dc1f9f
HL
25#define DRIVER_DESC "USB Driver for Gigaset 307x using M105"
26
27/* Module parameters */
28
29static int startmode = SM_ISDN;
30static int cidmode = 1;
31
32module_param(startmode, int, S_IRUGO);
33module_param(cidmode, int, S_IRUGO);
34MODULE_PARM_DESC(startmode, "start in isdn4linux mode");
35MODULE_PARM_DESC(cidmode, "Call-ID mode");
36
37#define GIGASET_MINORS 1
38#define GIGASET_MINOR 8
39#define GIGASET_MODULENAME "usb_gigaset"
07dc1f9f
HL
40#define GIGASET_DEVNAME "ttyGU"
41
b3251d80
TS
42/* length limit according to Siemens 3070usb-protokoll.doc ch. 2.1 */
43#define IF_WRITEBUF 264
07dc1f9f
HL
44
45/* Values for the Gigaset M105 Data */
46#define USB_M105_VENDOR_ID 0x0681
47#define USB_M105_PRODUCT_ID 0x0009
48
49/* table of devices that work with this driver */
2032e2c2 50static const struct usb_device_id gigaset_table[] = {
07dc1f9f
HL
51 { USB_DEVICE(USB_M105_VENDOR_ID, USB_M105_PRODUCT_ID) },
52 { } /* Terminating entry */
53};
54
55MODULE_DEVICE_TABLE(usb, gigaset_table);
56
07dc1f9f
HL
57/*
58 * Control requests (empty fields: 00)
59 *
60 * RT|RQ|VALUE|INDEX|LEN |DATA
61 * In:
62 * C1 08 01
63 * Get flags (1 byte). Bits: 0=dtr,1=rts,3-7:?
64 * C1 0F ll ll
65 * Get device information/status (llll: 0x200 and 0x40 seen).
66 * Real size: I only saw MIN(llll,0x64).
67 * Contents: seems to be always the same...
68 * offset 0x00: Length of this structure (0x64) (len: 1,2,3 bytes)
69 * offset 0x3c: String (16 bit chars): "MCCI USB Serial V2.0"
70 * rest: ?
71 * Out:
72 * 41 11
73 * Initialize/reset device ?
74 * 41 00 xx 00
75 * ? (xx=00 or 01; 01 on start, 00 on close)
76 * 41 07 vv mm
77 * Set/clear flags vv=value, mm=mask (see RQ 08)
78 * 41 12 xx
79 * Used before the following configuration requests are issued
80 * (with xx=0x0f). I've seen other values<0xf, though.
81 * 41 01 xx xx
82 * Set baud rate. xxxx=ceil(0x384000/rate)=trunc(0x383fff/rate)+1.
83 * 41 03 ps bb
84 * Set byte size and parity. p: 0x20=even,0x10=odd,0x00=no parity
85 * [ 0x30: m, 0x40: s ]
86 * [s: 0: 1 stop bit; 1: 1.5; 2: 2]
87 * bb: bits/byte (seen 7 and 8)
88 * 41 13 -- -- -- -- 10 00 ww 00 00 00 xx 00 00 00 yy 00 00 00 zz 00 00 00
89 * ??
90 * Initialization: 01, 40, 00, 00
91 * Open device: 00 40, 00, 00
92 * yy and zz seem to be equal, either 0x00 or 0x0a
93 * (ww,xx) pairs seen: (00,00), (00,40), (01,40), (09,80), (19,80)
94 * 41 19 -- -- -- -- 06 00 00 00 00 xx 11 13
95 * Used after every "configuration sequence" (RQ 12, RQs 01/03/13).
96 * xx is usually 0x00 but was 0x7e before starting data transfer
2032e2c2
TS
97 * in unimodem mode. So, this might be an array of characters that
98 * need special treatment ("commit all bufferd data"?), 11=^Q, 13=^S.
07dc1f9f
HL
99 *
100 * Unimodem mode: use "modprobe ppp_async flag_time=0" as the device _needs_ two
101 * flags per packet.
102 */
103
c652cbd8 104/* functions called if a device of this driver is connected/disconnected */
07dc1f9f 105static int gigaset_probe(struct usb_interface *interface,
784d5858 106 const struct usb_device_id *id);
07dc1f9f
HL
107static void gigaset_disconnect(struct usb_interface *interface);
108
1ff0a529
TS
109/* functions called before/after suspend */
110static int gigaset_suspend(struct usb_interface *intf, pm_message_t message);
111static int gigaset_resume(struct usb_interface *intf);
112static int gigaset_pre_reset(struct usb_interface *intf);
113
2032e2c2 114static struct gigaset_driver *driver;
07dc1f9f
HL
115
116/* usb specific object needed to register this driver with the usb subsystem */
117static struct usb_driver gigaset_usb_driver = {
917f5085
TS
118 .name = GIGASET_MODULENAME,
119 .probe = gigaset_probe,
120 .disconnect = gigaset_disconnect,
121 .id_table = gigaset_table,
1ff0a529
TS
122 .suspend = gigaset_suspend,
123 .resume = gigaset_resume,
124 .reset_resume = gigaset_resume,
125 .pre_reset = gigaset_pre_reset,
126 .post_reset = gigaset_resume,
e1f12eb6 127 .disable_hub_initiated_lpm = 1,
07dc1f9f
HL
128};
129
130struct usb_cardstate {
917f5085
TS
131 struct usb_device *udev; /* usb device pointer */
132 struct usb_interface *interface; /* interface for this device */
9d4bee2b 133 int busy; /* bulk output in progress */
917f5085
TS
134
135 /* Output buffer */
784d5858
TS
136 unsigned char *bulk_out_buffer;
137 int bulk_out_size;
7b0c67e4 138 int bulk_out_epnum;
784d5858 139 struct urb *bulk_out_urb;
917f5085
TS
140
141 /* Input buffer */
2032e2c2 142 unsigned char *rcvbuf;
784d5858
TS
143 int rcvbuf_size;
144 struct urb *read_urb;
917f5085 145
784d5858 146 char bchars[6]; /* for request 0x19 */
07dc1f9f
HL
147};
148
07dc1f9f
HL
149static inline unsigned tiocm_to_gigaset(unsigned state)
150{
151 return ((state & TIOCM_DTR) ? 1 : 0) | ((state & TIOCM_RTS) ? 2 : 0);
152}
153
07dc1f9f 154static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
784d5858 155 unsigned new_state)
07dc1f9f 156{
784d5858 157 struct usb_device *udev = cs->hw.usb->udev;
07dc1f9f
HL
158 unsigned mask, val;
159 int r;
160
161 mask = tiocm_to_gigaset(old_state ^ new_state);
162 val = tiocm_to_gigaset(new_state);
163
784d5858 164 gig_dbg(DEBUG_USBREQ, "set flags 0x%02x with mask 0x%02x", val, mask);
784d5858
TS
165 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 7, 0x41,
166 (val & 0xff) | ((mask & 0xff) << 8), 0,
167 NULL, 0, 2000 /* timeout? */);
07dc1f9f
HL
168 if (r < 0)
169 return r;
07dc1f9f
HL
170 return 0;
171}
172
b88bd956
TS
173/*
174 * Set M105 configuration value
175 * using undocumented device commands reverse engineered from USB traces
176 * of the Siemens Windows driver
177 */
07dc1f9f
HL
178static int set_value(struct cardstate *cs, u8 req, u16 val)
179{
784d5858 180 struct usb_device *udev = cs->hw.usb->udev;
07dc1f9f
HL
181 int r, r2;
182
784d5858
TS
183 gig_dbg(DEBUG_USBREQ, "request %02x (%04x)",
184 (unsigned)req, (unsigned)val);
185 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x12, 0x41,
186 0xf /*?*/, 0, NULL, 0, 2000 /*?*/);
475be4d8 187 /* no idea what this does */
07dc1f9f 188 if (r < 0) {
784d5858 189 dev_err(&udev->dev, "error %d on request 0x12\n", -r);
07dc1f9f
HL
190 return r;
191 }
192
784d5858
TS
193 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), req, 0x41,
194 val, 0, NULL, 0, 2000 /*?*/);
07dc1f9f 195 if (r < 0)
784d5858
TS
196 dev_err(&udev->dev, "error %d on request 0x%02x\n",
197 -r, (unsigned)req);
07dc1f9f 198
784d5858
TS
199 r2 = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
200 0, 0, cs->hw.usb->bchars, 6, 2000 /*?*/);
07dc1f9f 201 if (r2 < 0)
784d5858 202 dev_err(&udev->dev, "error %d on request 0x19\n", -r2);
07dc1f9f
HL
203
204 return r < 0 ? r : (r2 < 0 ? r2 : 0);
205}
206
b88bd956
TS
207/*
208 * set the baud rate on the internal serial adapter
209 * using the undocumented parameter setting command
210 */
07dc1f9f
HL
211static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
212{
213 u16 val;
214 u32 rate;
215
216 cflag &= CBAUD;
217
218 switch (cflag) {
07dc1f9f
HL
219 case B300: rate = 300; break;
220 case B600: rate = 600; break;
221 case B1200: rate = 1200; break;
222 case B2400: rate = 2400; break;
223 case B4800: rate = 4800; break;
224 case B9600: rate = 9600; break;
225 case B19200: rate = 19200; break;
226 case B38400: rate = 38400; break;
227 case B57600: rate = 57600; break;
228 case B115200: rate = 115200; break;
229 default:
230 rate = 9600;
784d5858
TS
231 dev_err(cs->dev, "unsupported baudrate request 0x%x,"
232 " using default of B9600\n", cflag);
07dc1f9f
HL
233 }
234
235 val = 0x383fff / rate + 1;
236
237 return set_value(cs, 1, val);
238}
239
b88bd956
TS
240/*
241 * set the line format on the internal serial adapter
242 * using the undocumented parameter setting command
243 */
07dc1f9f
HL
244static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag)
245{
246 u16 val = 0;
247
248 /* set the parity */
249 if (cflag & PARENB)
250 val |= (cflag & PARODD) ? 0x10 : 0x20;
251
252 /* set the number of data bits */
253 switch (cflag & CSIZE) {
254 case CS5:
255 val |= 5 << 8; break;
256 case CS6:
257 val |= 6 << 8; break;
258 case CS7:
259 val |= 7 << 8; break;
260 case CS8:
261 val |= 8 << 8; break;
262 default:
784d5858 263 dev_err(cs->dev, "CSIZE was not CS5-CS8, using default of 8\n");
07dc1f9f
HL
264 val |= 8 << 8;
265 break;
266 }
267
268 /* set the number of stop bits */
269 if (cflag & CSTOPB) {
270 if ((cflag & CSIZE) == CS5)
2032e2c2 271 val |= 1; /* 1.5 stop bits */
07dc1f9f
HL
272 else
273 val |= 2; /* 2 stop bits */
274 }
275
276 return set_value(cs, 3, val);
277}
278
07dc1f9f 279
2032e2c2 280/*============================================================================*/
07dc1f9f
HL
281static int gigaset_init_bchannel(struct bc_state *bcs)
282{
283 /* nothing to do for M10x */
284 gigaset_bchannel_up(bcs);
285 return 0;
286}
287
288static int gigaset_close_bchannel(struct bc_state *bcs)
289{
290 /* nothing to do for M10x */
291 gigaset_bchannel_down(bcs);
292 return 0;
293}
294
07dc1f9f 295static int write_modem(struct cardstate *cs);
f99a6fde 296static int send_cb(struct cardstate *cs);
07dc1f9f
HL
297
298
917f5085
TS
299/* Write tasklet handler: Continue sending current skb, or send command, or
300 * start sending an skb from the send queue.
07dc1f9f
HL
301 */
302static void gigaset_modem_fill(unsigned long data)
303{
304 struct cardstate *cs = (struct cardstate *) data;
305 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
07dc1f9f 306
784d5858 307 gig_dbg(DEBUG_OUTPUT, "modem_fill");
07dc1f9f 308
9d4bee2b 309 if (cs->hw.usb->busy) {
784d5858 310 gig_dbg(DEBUG_OUTPUT, "modem_fill: busy");
07dc1f9f
HL
311 return;
312 }
313
f650dd28
TS
314again:
315 if (!bcs->tx_skb) { /* no skb is being sent */
f99a6fde 316 if (cs->cmdbuf) { /* commands to send? */
f650dd28 317 gig_dbg(DEBUG_OUTPUT, "modem_fill: cb");
f99a6fde 318 if (send_cb(cs) < 0) {
784d5858 319 gig_dbg(DEBUG_OUTPUT,
f650dd28
TS
320 "modem_fill: send_cb failed");
321 goto again; /* no callback will be called! */
07dc1f9f 322 }
f650dd28 323 return;
07dc1f9f 324 }
f650dd28
TS
325
326 /* skbs to send? */
327 bcs->tx_skb = skb_dequeue(&bcs->squeue);
328 if (!bcs->tx_skb)
329 return;
330
331 gig_dbg(DEBUG_INTR, "Dequeued skb (Adr: %lx)!",
332 (unsigned long) bcs->tx_skb);
333 }
334
335 gig_dbg(DEBUG_OUTPUT, "modem_fill: tx_skb");
336 if (write_modem(cs) < 0) {
337 gig_dbg(DEBUG_OUTPUT, "modem_fill: write_modem failed");
338 goto again; /* no callback will be called! */
339 }
07dc1f9f
HL
340}
341
b88bd956
TS
342/*
343 * Interrupt Input URB completion routine
07dc1f9f 344 */
7d12e780 345static void gigaset_read_int_callback(struct urb *urb)
07dc1f9f 346{
2032e2c2
TS
347 struct cardstate *cs = urb->context;
348 struct inbuf_t *inbuf = cs->inbuf;
dbd98231 349 int status = urb->status;
07dc1f9f 350 int r;
07dc1f9f
HL
351 unsigned numbytes;
352 unsigned char *src;
69049cc8 353 unsigned long flags;
07dc1f9f 354
dbd98231 355 if (!status) {
07dc1f9f
HL
356 numbytes = urb->actual_length;
357
358 if (numbytes) {
2032e2c2 359 src = cs->hw.usb->rcvbuf;
07dc1f9f 360 if (unlikely(*src))
784d5858 361 dev_warn(cs->dev,
475be4d8 362 "%s: There was no leading 0, but 0x%02x!\n",
784d5858 363 __func__, (unsigned) *src);
07dc1f9f
HL
364 ++src; /* skip leading 0x00 */
365 --numbytes;
366 if (gigaset_fill_inbuf(inbuf, src, numbytes)) {
784d5858 367 gig_dbg(DEBUG_INTR, "%s-->BH", __func__);
07dc1f9f
HL
368 gigaset_schedule_event(inbuf->cs);
369 }
370 } else
784d5858 371 gig_dbg(DEBUG_INTR, "Received zero block length");
07dc1f9f
HL
372 } else {
373 /* The urb might have been killed. */
c652cbd8 374 gig_dbg(DEBUG_ANY, "%s - nonzero status received: %d",
dbd98231 375 __func__, status);
c652cbd8
TS
376 if (status == -ENOENT || status == -ESHUTDOWN)
377 /* killed or endpoint shutdown: don't resubmit */
378 return;
07dc1f9f 379 }
784d5858 380
c652cbd8
TS
381 /* resubmit URB */
382 spin_lock_irqsave(&cs->lock, flags);
383 if (!cs->connected) {
69049cc8 384 spin_unlock_irqrestore(&cs->lock, flags);
c8770dca 385 pr_err("%s: disconnected\n", __func__);
c652cbd8 386 return;
07dc1f9f 387 }
c652cbd8
TS
388 r = usb_submit_urb(urb, GFP_ATOMIC);
389 spin_unlock_irqrestore(&cs->lock, flags);
390 if (r)
391 dev_err(cs->dev, "error %d resubmitting URB\n", -r);
07dc1f9f
HL
392}
393
394
917f5085 395/* This callback routine is called when data was transmitted to the device. */
7d12e780 396static void gigaset_write_bulk_callback(struct urb *urb)
07dc1f9f 397{
d48c7784 398 struct cardstate *cs = urb->context;
dbd98231 399 int status = urb->status;
69049cc8 400 unsigned long flags;
07dc1f9f 401
c652cbd8
TS
402 switch (status) {
403 case 0: /* normal completion */
404 break;
405 case -ENOENT: /* killed */
406 gig_dbg(DEBUG_ANY, "%s: killed", __func__);
9d4bee2b 407 cs->hw.usb->busy = 0;
c652cbd8
TS
408 return;
409 default:
784d5858 410 dev_err(cs->dev, "bulk transfer failed (status %d)\n",
dbd98231 411 -status);
917f5085 412 /* That's all we can do. Communication problems
784d5858 413 are handled by timeouts or network protocols. */
c652cbd8 414 }
07dc1f9f 415
69049cc8
TS
416 spin_lock_irqsave(&cs->lock, flags);
417 if (!cs->connected) {
c8770dca 418 pr_err("%s: disconnected\n", __func__);
69049cc8 419 } else {
9d4bee2b 420 cs->hw.usb->busy = 0;
69049cc8
TS
421 tasklet_schedule(&cs->write_tasklet);
422 }
423 spin_unlock_irqrestore(&cs->lock, flags);
07dc1f9f
HL
424}
425
f99a6fde 426static int send_cb(struct cardstate *cs)
07dc1f9f 427{
f99a6fde 428 struct cmdbuf_t *cb = cs->cmdbuf;
07dc1f9f
HL
429 unsigned long flags;
430 int count;
2032e2c2 431 int status = -ENOENT;
07dc1f9f
HL
432 struct usb_cardstate *ucs = cs->hw.usb;
433
434 do {
435 if (!cb->len) {
07dc1f9f
HL
436 spin_lock_irqsave(&cs->cmdlock, flags);
437 cs->cmdbytes -= cs->curlen;
784d5858
TS
438 gig_dbg(DEBUG_OUTPUT, "send_cb: sent %u bytes, %u left",
439 cs->curlen, cs->cmdbytes);
f99a6fde
TS
440 cs->cmdbuf = cb->next;
441 if (cs->cmdbuf) {
442 cs->cmdbuf->prev = NULL;
443 cs->curlen = cs->cmdbuf->len;
07dc1f9f
HL
444 } else {
445 cs->lastcmdbuf = NULL;
446 cs->curlen = 0;
447 }
448 spin_unlock_irqrestore(&cs->cmdlock, flags);
449
f99a6fde
TS
450 if (cb->wake_tasklet)
451 tasklet_schedule(cb->wake_tasklet);
452 kfree(cb);
453
454 cb = cs->cmdbuf;
07dc1f9f 455 }
f99a6fde 456
07dc1f9f
HL
457 if (cb) {
458 count = min(cb->len, ucs->bulk_out_size);
69049cc8
TS
459 gig_dbg(DEBUG_OUTPUT, "send_cb: send %d bytes", count);
460
07dc1f9f 461 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
784d5858 462 usb_sndbulkpipe(ucs->udev,
7b0c67e4 463 ucs->bulk_out_epnum),
784d5858
TS
464 cb->buf + cb->offset, count,
465 gigaset_write_bulk_callback, cs);
07dc1f9f
HL
466
467 cb->offset += count;
468 cb->len -= count;
9d4bee2b 469 ucs->busy = 1;
07dc1f9f 470
69049cc8 471 spin_lock_irqsave(&cs->lock, flags);
2032e2c2
TS
472 status = cs->connected ?
473 usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC) :
474 -ENODEV;
69049cc8
TS
475 spin_unlock_irqrestore(&cs->lock, flags);
476
07dc1f9f 477 if (status) {
9d4bee2b 478 ucs->busy = 0;
5002779d
TS
479 dev_err(cs->dev,
480 "could not submit urb (error %d)\n",
481 -status);
917f5085
TS
482 cb->len = 0; /* skip urb => remove cb+wakeup
483 in next loop cycle */
07dc1f9f
HL
484 }
485 }
917f5085 486 } while (cb && status); /* next command on error */
07dc1f9f
HL
487
488 return status;
489}
490
917f5085 491/* Send command to device. */
e3628dd1 492static int gigaset_write_cmd(struct cardstate *cs, struct cmdbuf_t *cb)
07dc1f9f 493{
07dc1f9f 494 unsigned long flags;
86f8ef2c 495 int len;
07dc1f9f 496
9d4bee2b 497 gigaset_dbg_buffer(cs->mstate != MS_LOCKED ?
475be4d8 498 DEBUG_TRANSCMD : DEBUG_LOCKCMD,
e3628dd1 499 "CMD Transmit", cb->len, cb->buf);
07dc1f9f
HL
500
501 spin_lock_irqsave(&cs->cmdlock, flags);
502 cb->prev = cs->lastcmdbuf;
503 if (cs->lastcmdbuf)
504 cs->lastcmdbuf->next = cb;
505 else {
506 cs->cmdbuf = cb;
e3628dd1 507 cs->curlen = cb->len;
07dc1f9f 508 }
e3628dd1 509 cs->cmdbytes += cb->len;
07dc1f9f
HL
510 cs->lastcmdbuf = cb;
511 spin_unlock_irqrestore(&cs->cmdlock, flags);
512
69049cc8 513 spin_lock_irqsave(&cs->lock, flags);
86f8ef2c 514 len = cb->len;
69049cc8
TS
515 if (cs->connected)
516 tasklet_schedule(&cs->write_tasklet);
517 spin_unlock_irqrestore(&cs->lock, flags);
86f8ef2c 518 return len;
07dc1f9f
HL
519}
520
521static int gigaset_write_room(struct cardstate *cs)
522{
07dc1f9f
HL
523 unsigned bytes;
524
07dc1f9f 525 bytes = cs->cmdbytes;
07dc1f9f
HL
526 return bytes < IF_WRITEBUF ? IF_WRITEBUF - bytes : 0;
527}
528
529static int gigaset_chars_in_buffer(struct cardstate *cs)
530{
531 return cs->cmdbytes;
532}
533
b88bd956
TS
534/*
535 * set the break characters on the internal serial adapter
536 * using undocumented device commands reverse engineered from USB traces
537 * of the Siemens Windows driver
538 */
07dc1f9f
HL
539static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6])
540{
784d5858
TS
541 struct usb_device *udev = cs->hw.usb->udev;
542
01371500 543 gigaset_dbg_buffer(DEBUG_USBREQ, "brkchars", 6, buf);
07dc1f9f 544 memcpy(cs->hw.usb->bchars, buf, 6);
784d5858
TS
545 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
546 0, 0, &buf, 6, 2000);
07dc1f9f
HL
547}
548
81fa7b82 549static void gigaset_freebcshw(struct bc_state *bcs)
07dc1f9f 550{
21d36495 551 /* unused */
07dc1f9f
HL
552}
553
554/* Initialize the b-channel structure */
555static int gigaset_initbcshw(struct bc_state *bcs)
556{
21d36495
TS
557 /* unused */
558 bcs->hw.usb = NULL;
81fa7b82 559 return 0;
07dc1f9f
HL
560}
561
562static void gigaset_reinitbcshw(struct bc_state *bcs)
563{
21d36495 564 /* nothing to do for M10x */
07dc1f9f
HL
565}
566
567static void gigaset_freecshw(struct cardstate *cs)
568{
07dc1f9f
HL
569 tasklet_kill(&cs->write_tasklet);
570 kfree(cs->hw.usb);
571}
572
573static int gigaset_initcshw(struct cardstate *cs)
574{
575 struct usb_cardstate *ucs;
576
577 cs->hw.usb = ucs =
578 kmalloc(sizeof(struct usb_cardstate), GFP_KERNEL);
c8770dca
TS
579 if (!ucs) {
580 pr_err("out of memory\n");
81fa7b82 581 return -ENOMEM;
c8770dca 582 }
07dc1f9f
HL
583
584 ucs->bchars[0] = 0;
585 ucs->bchars[1] = 0;
586 ucs->bchars[2] = 0;
587 ucs->bchars[3] = 0;
588 ucs->bchars[4] = 0x11;
589 ucs->bchars[5] = 0x13;
590 ucs->bulk_out_buffer = NULL;
591 ucs->bulk_out_urb = NULL;
07dc1f9f
HL
592 ucs->read_urb = NULL;
593 tasklet_init(&cs->write_tasklet,
5452fee2 594 gigaset_modem_fill, (unsigned long) cs);
07dc1f9f 595
81fa7b82 596 return 0;
07dc1f9f
HL
597}
598
917f5085 599/* Send data from current skb to the device. */
07dc1f9f
HL
600static int write_modem(struct cardstate *cs)
601{
d48c7784 602 int ret = 0;
07dc1f9f
HL
603 int count;
604 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
605 struct usb_cardstate *ucs = cs->hw.usb;
69049cc8 606 unsigned long flags;
07dc1f9f 607
1528b18f 608 gig_dbg(DEBUG_OUTPUT, "len: %d...", bcs->tx_skb->len);
07dc1f9f 609
07dc1f9f
HL
610 if (!bcs->tx_skb->len) {
611 dev_kfree_skb_any(bcs->tx_skb);
612 bcs->tx_skb = NULL;
613 return -EINVAL;
614 }
615
2032e2c2 616 /* Copy data to bulk out buffer and transmit data */
07dc1f9f 617 count = min(bcs->tx_skb->len, (unsigned) ucs->bulk_out_size);
d626f62b 618 skb_copy_from_linear_data(bcs->tx_skb, ucs->bulk_out_buffer, count);
07dc1f9f 619 skb_pull(bcs->tx_skb, count);
9d4bee2b 620 ucs->busy = 1;
784d5858 621 gig_dbg(DEBUG_OUTPUT, "write_modem: send %d bytes", count);
07dc1f9f 622
69049cc8
TS
623 spin_lock_irqsave(&cs->lock, flags);
624 if (cs->connected) {
625 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
626 usb_sndbulkpipe(ucs->udev,
7b0c67e4 627 ucs->bulk_out_epnum),
69049cc8
TS
628 ucs->bulk_out_buffer, count,
629 gigaset_write_bulk_callback, cs);
54e6ecb2 630 ret = usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC);
69049cc8
TS
631 } else {
632 ret = -ENODEV;
633 }
634 spin_unlock_irqrestore(&cs->lock, flags);
635
07dc1f9f 636 if (ret) {
5002779d 637 dev_err(cs->dev, "could not submit urb (error %d)\n", -ret);
9d4bee2b 638 ucs->busy = 0;
07dc1f9f 639 }
69049cc8 640
07dc1f9f
HL
641 if (!bcs->tx_skb->len) {
642 /* skb sent completely */
2032e2c2 643 gigaset_skb_sent(bcs, bcs->tx_skb);
07dc1f9f 644
784d5858
TS
645 gig_dbg(DEBUG_INTR, "kfree skb (Adr: %lx)!",
646 (unsigned long) bcs->tx_skb);
07dc1f9f
HL
647 dev_kfree_skb_any(bcs->tx_skb);
648 bcs->tx_skb = NULL;
649 }
650
651 return ret;
07dc1f9f
HL
652}
653
654static int gigaset_probe(struct usb_interface *interface,
784d5858 655 const struct usb_device_id *id)
07dc1f9f
HL
656{
657 int retval;
658 struct usb_device *udev = interface_to_usbdev(interface);
c652cbd8 659 struct usb_host_interface *hostif = interface->cur_altsetting;
07dc1f9f
HL
660 struct cardstate *cs = NULL;
661 struct usb_cardstate *ucs = NULL;
07dc1f9f 662 struct usb_endpoint_descriptor *endpoint;
07dc1f9f 663 int buffer_size;
07dc1f9f 664
c652cbd8 665 gig_dbg(DEBUG_ANY, "%s: Check if device matches ...", __func__);
07dc1f9f
HL
666
667 /* See if the device offered us matches what we can accept */
bfe2e934 668 if ((le16_to_cpu(udev->descriptor.idVendor) != USB_M105_VENDOR_ID) ||
c652cbd8
TS
669 (le16_to_cpu(udev->descriptor.idProduct) != USB_M105_PRODUCT_ID)) {
670 gig_dbg(DEBUG_ANY, "device ID (0x%x, 0x%x) not for me - skip",
671 le16_to_cpu(udev->descriptor.idVendor),
672 le16_to_cpu(udev->descriptor.idProduct));
07dc1f9f 673 return -ENODEV;
c652cbd8
TS
674 }
675 if (hostif->desc.bInterfaceNumber != 0) {
676 gig_dbg(DEBUG_ANY, "interface %d not for me - skip",
677 hostif->desc.bInterfaceNumber);
678 return -ENODEV;
679 }
680 if (hostif->desc.bAlternateSetting != 0) {
681 dev_notice(&udev->dev, "unsupported altsetting %d - skip",
682 hostif->desc.bAlternateSetting);
07dc1f9f
HL
683 return -ENODEV;
684 }
07dc1f9f 685 if (hostif->desc.bInterfaceClass != 255) {
c652cbd8
TS
686 dev_notice(&udev->dev, "unsupported interface class %d - skip",
687 hostif->desc.bInterfaceClass);
07dc1f9f
HL
688 return -ENODEV;
689 }
690
784d5858 691 dev_info(&udev->dev, "%s: Device matched ... !\n", __func__);
07dc1f9f 692
b595076a 693 /* allocate memory for our device state and initialize it */
e468c048
TS
694 cs = gigaset_initcs(driver, 1, 1, 0, cidmode, GIGASET_MODULENAME);
695 if (!cs)
07dc1f9f 696 return -ENODEV;
07dc1f9f
HL
697 ucs = cs->hw.usb;
698
784d5858
TS
699 /* save off device structure ptrs for later use */
700 usb_get_dev(udev);
701 ucs->udev = udev;
702 ucs->interface = interface;
b1d47464
TS
703 cs->dev = &interface->dev;
704
705 /* save address of controller structure */
b88bd956 706 usb_set_intfdata(interface, cs);
784d5858 707
07dc1f9f
HL
708 endpoint = &hostif->endpoint[0].desc;
709
710 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
711 ucs->bulk_out_size = buffer_size;
7b0c67e4 712 ucs->bulk_out_epnum = usb_endpoint_num(endpoint);
07dc1f9f
HL
713 ucs->bulk_out_buffer = kmalloc(buffer_size, GFP_KERNEL);
714 if (!ucs->bulk_out_buffer) {
784d5858 715 dev_err(cs->dev, "Couldn't allocate bulk_out_buffer\n");
07dc1f9f
HL
716 retval = -ENOMEM;
717 goto error;
718 }
719
e94b1766 720 ucs->bulk_out_urb = usb_alloc_urb(0, GFP_KERNEL);
07dc1f9f 721 if (!ucs->bulk_out_urb) {
784d5858 722 dev_err(cs->dev, "Couldn't allocate bulk_out_urb\n");
07dc1f9f
HL
723 retval = -ENOMEM;
724 goto error;
725 }
726
727 endpoint = &hostif->endpoint[1].desc;
728
9d4bee2b 729 ucs->busy = 0;
07dc1f9f 730
e94b1766 731 ucs->read_urb = usb_alloc_urb(0, GFP_KERNEL);
07dc1f9f 732 if (!ucs->read_urb) {
784d5858 733 dev_err(cs->dev, "No free urbs available\n");
07dc1f9f
HL
734 retval = -ENOMEM;
735 goto error;
736 }
737 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
738 ucs->rcvbuf_size = buffer_size;
2032e2c2
TS
739 ucs->rcvbuf = kmalloc(buffer_size, GFP_KERNEL);
740 if (!ucs->rcvbuf) {
784d5858 741 dev_err(cs->dev, "Couldn't allocate rcvbuf\n");
07dc1f9f
HL
742 retval = -ENOMEM;
743 goto error;
744 }
745 /* Fill the interrupt urb and send it to the core */
746 usb_fill_int_urb(ucs->read_urb, udev,
7b0c67e4 747 usb_rcvintpipe(udev, usb_endpoint_num(endpoint)),
2032e2c2 748 ucs->rcvbuf, buffer_size,
784d5858 749 gigaset_read_int_callback,
2032e2c2 750 cs, endpoint->bInterval);
07dc1f9f 751
e94b1766 752 retval = usb_submit_urb(ucs->read_urb, GFP_KERNEL);
07dc1f9f 753 if (retval) {
784d5858 754 dev_err(cs->dev, "Could not submit URB (error %d)\n", -retval);
07dc1f9f
HL
755 goto error;
756 }
757
758 /* tell common part that the device is ready */
759 if (startmode == SM_LOCKED)
9d4bee2b 760 cs->mstate = MS_LOCKED;
b1d47464 761
81fa7b82
TS
762 retval = gigaset_start(cs);
763 if (retval < 0) {
07dc1f9f 764 tasklet_kill(&cs->write_tasklet);
07dc1f9f
HL
765 goto error;
766 }
07dc1f9f
HL
767 return 0;
768
769error:
ead54fcd 770 usb_kill_urb(ucs->read_urb);
07dc1f9f 771 kfree(ucs->bulk_out_buffer);
ead54fcd 772 usb_free_urb(ucs->bulk_out_urb);
2032e2c2 773 kfree(ucs->rcvbuf);
ead54fcd 774 usb_free_urb(ucs->read_urb);
b1d47464 775 usb_set_intfdata(interface, NULL);
07dc1f9f 776 ucs->read_urb = ucs->bulk_out_urb = NULL;
2032e2c2 777 ucs->rcvbuf = ucs->bulk_out_buffer = NULL;
784d5858
TS
778 usb_put_dev(ucs->udev);
779 ucs->udev = NULL;
780 ucs->interface = NULL;
e468c048 781 gigaset_freecs(cs);
07dc1f9f
HL
782 return retval;
783}
784
07dc1f9f
HL
785static void gigaset_disconnect(struct usb_interface *interface)
786{
787 struct cardstate *cs;
788 struct usb_cardstate *ucs;
789
790 cs = usb_get_intfdata(interface);
07dc1f9f 791 ucs = cs->hw.usb;
c652cbd8
TS
792
793 dev_info(cs->dev, "disconnecting Gigaset USB adapter\n");
794
07dc1f9f 795 usb_kill_urb(ucs->read_urb);
07dc1f9f
HL
796
797 gigaset_stop(cs);
798
b1d47464 799 usb_set_intfdata(interface, NULL);
07dc1f9f
HL
800 tasklet_kill(&cs->write_tasklet);
801
c652cbd8 802 usb_kill_urb(ucs->bulk_out_urb);
07dc1f9f
HL
803
804 kfree(ucs->bulk_out_buffer);
ead54fcd 805 usb_free_urb(ucs->bulk_out_urb);
2032e2c2 806 kfree(ucs->rcvbuf);
ead54fcd 807 usb_free_urb(ucs->read_urb);
917f5085 808 ucs->read_urb = ucs->bulk_out_urb = NULL;
2032e2c2 809 ucs->rcvbuf = ucs->bulk_out_buffer = NULL;
07dc1f9f 810
b1d47464
TS
811 usb_put_dev(ucs->udev);
812 ucs->interface = NULL;
813 ucs->udev = NULL;
814 cs->dev = NULL;
e468c048 815 gigaset_freecs(cs);
07dc1f9f
HL
816}
817
1ff0a529
TS
818/* gigaset_suspend
819 * This function is called before the USB connection is suspended or reset.
820 */
821static int gigaset_suspend(struct usb_interface *intf, pm_message_t message)
822{
823 struct cardstate *cs = usb_get_intfdata(intf);
824
825 /* stop activity */
826 cs->connected = 0; /* prevent rescheduling */
827 usb_kill_urb(cs->hw.usb->read_urb);
828 tasklet_kill(&cs->write_tasklet);
829 usb_kill_urb(cs->hw.usb->bulk_out_urb);
830
831 gig_dbg(DEBUG_SUSPEND, "suspend complete");
832 return 0;
833}
834
835/* gigaset_resume
836 * This function is called after the USB connection has been resumed or reset.
837 */
838static int gigaset_resume(struct usb_interface *intf)
839{
840 struct cardstate *cs = usb_get_intfdata(intf);
841 int rc;
842
843 /* resubmit interrupt URB */
844 cs->connected = 1;
845 rc = usb_submit_urb(cs->hw.usb->read_urb, GFP_KERNEL);
846 if (rc) {
847 dev_err(cs->dev, "Could not submit read URB (error %d)\n", -rc);
848 return rc;
849 }
850
851 gig_dbg(DEBUG_SUSPEND, "resume complete");
852 return 0;
853}
854
855/* gigaset_pre_reset
856 * This function is called before the USB connection is reset.
857 */
858static int gigaset_pre_reset(struct usb_interface *intf)
859{
860 /* same as suspend */
861 return gigaset_suspend(intf, PMSG_ON);
862}
863
35dc8457 864static const struct gigaset_ops ops = {
47941950
KC
865 .write_cmd = gigaset_write_cmd,
866 .write_room = gigaset_write_room,
867 .chars_in_buffer = gigaset_chars_in_buffer,
868 .brkchars = gigaset_brkchars,
869 .init_bchannel = gigaset_init_bchannel,
870 .close_bchannel = gigaset_close_bchannel,
871 .initbcshw = gigaset_initbcshw,
872 .freebcshw = gigaset_freebcshw,
873 .reinitbcshw = gigaset_reinitbcshw,
874 .initcshw = gigaset_initcshw,
875 .freecshw = gigaset_freecshw,
876 .set_modem_ctrl = gigaset_set_modem_ctrl,
877 .baud_rate = gigaset_baud_rate,
878 .set_line_ctrl = gigaset_set_line_ctrl,
879 .send_skb = gigaset_m10x_send_skb,
880 .handle_input = gigaset_m10x_input,
07dc1f9f
HL
881};
882
b88bd956 883/*
07dc1f9f
HL
884 * This function is called while kernel-module is loaded
885 */
886static int __init usb_gigaset_init(void)
887{
888 int result;
889
b595076a 890 /* allocate memory for our driver state and initialize it */
2032e2c2
TS
891 driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
892 GIGASET_MODULENAME, GIGASET_DEVNAME,
893 &ops, THIS_MODULE);
81fa7b82
TS
894 if (driver == NULL) {
895 result = -ENOMEM;
07dc1f9f 896 goto error;
81fa7b82 897 }
07dc1f9f 898
07dc1f9f
HL
899 /* register this driver with the USB subsystem */
900 result = usb_register(&gigaset_usb_driver);
901 if (result < 0) {
c8770dca 902 pr_err("error %d registering USB driver\n", -result);
07dc1f9f
HL
903 goto error;
904 }
905
c8770dca 906 pr_info(DRIVER_DESC "\n");
07dc1f9f
HL
907 return 0;
908
e468c048 909error:
07dc1f9f
HL
910 if (driver)
911 gigaset_freedriver(driver);
912 driver = NULL;
81fa7b82 913 return result;
07dc1f9f
HL
914}
915
b88bd956 916/*
07dc1f9f
HL
917 * This function is called while unloading the kernel-module
918 */
919static void __exit usb_gigaset_exit(void)
920{
e468c048
TS
921 int i;
922
07dc1f9f 923 gigaset_blockdriver(driver); /* => probe will fail
784d5858
TS
924 * => no gigaset_start any more
925 */
07dc1f9f 926
e468c048
TS
927 /* stop all connected devices */
928 for (i = 0; i < driver->minors; i++)
929 gigaset_shutdown(driver->cs + i);
930
07dc1f9f
HL
931 /* from now on, no isdn callback should be possible */
932
933 /* deregister this driver with the USB subsystem */
934 usb_deregister(&gigaset_usb_driver);
935 /* this will call the disconnect-callback */
936 /* from now on, no disconnect/probe callback should be running */
937
07dc1f9f
HL
938 gigaset_freedriver(driver);
939 driver = NULL;
940}
941
942
943module_init(usb_gigaset_init);
944module_exit(usb_gigaset_exit);
945
946MODULE_AUTHOR(DRIVER_AUTHOR);
947MODULE_DESCRIPTION(DRIVER_DESC);
948
949MODULE_LICENSE("GPL");