blob: f65cf7db216b41370ff6c09267e40d5bc389e99f [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"
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080019#include <linux/usb.h>
20#include <linux/module.h>
21#include <linux/moduleparam.h>
22
23/* Version Information */
Tilman Schmidt70440cf2006-04-10 22:55:14 -070024#define DRIVER_AUTHOR "Hansjoerg Lipp <hjlipp@web.de>, Stefan Eilers"
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080025#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"
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080040#define GIGASET_DEVNAME "ttyGU"
41
Tilman Schmidtb3251d82010-07-05 14:18:37 +000042/* length limit according to Siemens 3070usb-protokoll.doc ch. 2.1 */
43#define IF_WRITEBUF 264
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080044
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 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000050static const struct usb_device_id gigaset_table[] = {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080051 { USB_DEVICE(USB_M105_VENDOR_ID, USB_M105_PRODUCT_ID) },
52 { } /* Terminating entry */
53};
54
55MODULE_DEVICE_TABLE(usb, gigaset_table);
56
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080057/*
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
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000097 * in unimodem mode. So, this might be an array of characters that
98 * need special treatment ("commit all bufferd data"?), 11=^Q, 13=^S.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080099 *
100 * Unimodem mode: use "modprobe ppp_async flag_time=0" as the device _needs_ two
101 * flags per packet.
102 */
103
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800104/* functions called if a device of this driver is connected/disconnected */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800105static int gigaset_probe(struct usb_interface *interface,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700106 const struct usb_device_id *id);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800107static void gigaset_disconnect(struct usb_interface *interface);
108
Tilman Schmidt1ff0a522008-02-06 01:38:27 -0800109/* 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
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000114static struct gigaset_driver *driver;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800115
116/* usb specific object needed to register this driver with the usb subsystem */
117static struct usb_driver gigaset_usb_driver = {
Tilman Schmidt917f5082006-04-10 22:55:00 -0700118 .name = GIGASET_MODULENAME,
119 .probe = gigaset_probe,
120 .disconnect = gigaset_disconnect,
121 .id_table = gigaset_table,
Tilman Schmidt1ff0a522008-02-06 01:38:27 -0800122 .suspend = gigaset_suspend,
123 .resume = gigaset_resume,
124 .reset_resume = gigaset_resume,
125 .pre_reset = gigaset_pre_reset,
126 .post_reset = gigaset_resume,
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800127};
128
129struct usb_cardstate {
Tilman Schmidt917f5082006-04-10 22:55:00 -0700130 struct usb_device *udev; /* usb device pointer */
131 struct usb_interface *interface; /* interface for this device */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800132 int busy; /* bulk output in progress */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800133
Tilman Schmidt917f5082006-04-10 22:55:00 -0700134 /* Output buffer */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700135 unsigned char *bulk_out_buffer;
136 int bulk_out_size;
137 __u8 bulk_out_endpointAddr;
138 struct urb *bulk_out_urb;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800139
Tilman Schmidt917f5082006-04-10 22:55:00 -0700140 /* Input buffer */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000141 unsigned char *rcvbuf;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700142 int rcvbuf_size;
143 struct urb *read_urb;
144 __u8 int_in_endpointAddr;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800145
Tilman Schmidt784d5852006-04-10 22:55:04 -0700146 char bchars[6]; /* for request 0x19 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800147};
148
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800149static inline unsigned tiocm_to_gigaset(unsigned state)
150{
151 return ((state & TIOCM_DTR) ? 1 : 0) | ((state & TIOCM_RTS) ? 2 : 0);
152}
153
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800154static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700155 unsigned new_state)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800156{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700157 struct usb_device *udev = cs->hw.usb->udev;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800158 unsigned mask, val;
159 int r;
160
161 mask = tiocm_to_gigaset(old_state ^ new_state);
162 val = tiocm_to_gigaset(new_state);
163
Tilman Schmidt784d5852006-04-10 22:55:04 -0700164 gig_dbg(DEBUG_USBREQ, "set flags 0x%02x with mask 0x%02x", val, mask);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700165 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 7, 0x41,
166 (val & 0xff) | ((mask & 0xff) << 8), 0,
167 NULL, 0, 2000 /* timeout? */);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800168 if (r < 0)
169 return r;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800170 return 0;
171}
172
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000173/*
174 * Set M105 configuration value
175 * using undocumented device commands reverse engineered from USB traces
176 * of the Siemens Windows driver
177 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800178static int set_value(struct cardstate *cs, u8 req, u16 val)
179{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700180 struct usb_device *udev = cs->hw.usb->udev;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800181 int r, r2;
182
Tilman Schmidt784d5852006-04-10 22:55:04 -0700183 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 /*?*/);
187 /* no idea what this does */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800188 if (r < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700189 dev_err(&udev->dev, "error %d on request 0x12\n", -r);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800190 return r;
191 }
192
Tilman Schmidt784d5852006-04-10 22:55:04 -0700193 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), req, 0x41,
194 val, 0, NULL, 0, 2000 /*?*/);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800195 if (r < 0)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700196 dev_err(&udev->dev, "error %d on request 0x%02x\n",
197 -r, (unsigned)req);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800198
Tilman Schmidt784d5852006-04-10 22:55:04 -0700199 r2 = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
200 0, 0, cs->hw.usb->bchars, 6, 2000 /*?*/);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800201 if (r2 < 0)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700202 dev_err(&udev->dev, "error %d on request 0x19\n", -r2);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800203
204 return r < 0 ? r : (r2 < 0 ? r2 : 0);
205}
206
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000207/*
208 * set the baud rate on the internal serial adapter
209 * using the undocumented parameter setting command
210 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800211static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
212{
213 u16 val;
214 u32 rate;
215
216 cflag &= CBAUD;
217
218 switch (cflag) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800219 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;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700231 dev_err(cs->dev, "unsupported baudrate request 0x%x,"
232 " using default of B9600\n", cflag);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800233 }
234
235 val = 0x383fff / rate + 1;
236
237 return set_value(cs, 1, val);
238}
239
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000240/*
241 * set the line format on the internal serial adapter
242 * using the undocumented parameter setting command
243 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800244static 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:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700263 dev_err(cs->dev, "CSIZE was not CS5-CS8, using default of 8\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800264 val |= 8 << 8;
265 break;
266 }
267
268 /* set the number of stop bits */
269 if (cflag & CSTOPB) {
270 if ((cflag & CSIZE) == CS5)
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000271 val |= 1; /* 1.5 stop bits */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800272 else
273 val |= 2; /* 2 stop bits */
274 }
275
276 return set_value(cs, 3, val);
277}
278
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800279
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000280/*============================================================================*/
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800281static 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
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800295static int write_modem(struct cardstate *cs);
296static int send_cb(struct cardstate *cs, struct cmdbuf_t *cb);
297
298
Tilman Schmidt917f5082006-04-10 22:55:00 -0700299/* Write tasklet handler: Continue sending current skb, or send command, or
300 * start sending an skb from the send queue.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800301 */
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 */
306 struct cmdbuf_t *cb;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800307 int again;
308
Tilman Schmidt784d5852006-04-10 22:55:04 -0700309 gig_dbg(DEBUG_OUTPUT, "modem_fill");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800310
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800311 if (cs->hw.usb->busy) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700312 gig_dbg(DEBUG_OUTPUT, "modem_fill: busy");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800313 return;
314 }
315
316 do {
317 again = 0;
318 if (!bcs->tx_skb) { /* no skb is being sent */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800319 cb = cs->cmdbuf;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800320 if (cb) { /* commands to send? */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700321 gig_dbg(DEBUG_OUTPUT, "modem_fill: cb");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800322 if (send_cb(cs, cb) < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700323 gig_dbg(DEBUG_OUTPUT,
324 "modem_fill: send_cb failed");
Tilman Schmidt917f5082006-04-10 22:55:00 -0700325 again = 1; /* no callback will be
326 called! */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800327 }
328 } else { /* skbs to send? */
329 bcs->tx_skb = skb_dequeue(&bcs->squeue);
330 if (bcs->tx_skb)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700331 gig_dbg(DEBUG_INTR,
332 "Dequeued skb (Adr: %lx)!",
333 (unsigned long) bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800334 }
335 }
336
337 if (bcs->tx_skb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700338 gig_dbg(DEBUG_OUTPUT, "modem_fill: tx_skb");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800339 if (write_modem(cs) < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700340 gig_dbg(DEBUG_OUTPUT,
341 "modem_fill: write_modem failed");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800342 again = 1; /* no callback will be called! */
343 }
344 }
345 } while (again);
346}
347
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000348/*
349 * Interrupt Input URB completion routine
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800350 */
David Howells7d12e782006-10-05 14:55:46 +0100351static void gigaset_read_int_callback(struct urb *urb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800352{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000353 struct cardstate *cs = urb->context;
354 struct inbuf_t *inbuf = cs->inbuf;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800355 int status = urb->status;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800356 int r;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800357 unsigned numbytes;
358 unsigned char *src;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700359 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800360
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800361 if (!status) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800362 numbytes = urb->actual_length;
363
364 if (numbytes) {
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000365 src = cs->hw.usb->rcvbuf;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800366 if (unlikely(*src))
Tilman Schmidt784d5852006-04-10 22:55:04 -0700367 dev_warn(cs->dev,
368 "%s: There was no leading 0, but 0x%02x!\n",
369 __func__, (unsigned) *src);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800370 ++src; /* skip leading 0x00 */
371 --numbytes;
372 if (gigaset_fill_inbuf(inbuf, src, numbytes)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700373 gig_dbg(DEBUG_INTR, "%s-->BH", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800374 gigaset_schedule_event(inbuf->cs);
375 }
376 } else
Tilman Schmidt784d5852006-04-10 22:55:04 -0700377 gig_dbg(DEBUG_INTR, "Received zero block length");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800378 } else {
379 /* The urb might have been killed. */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800380 gig_dbg(DEBUG_ANY, "%s - nonzero status received: %d",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800381 __func__, status);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800382 if (status == -ENOENT || status == -ESHUTDOWN)
383 /* killed or endpoint shutdown: don't resubmit */
384 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800385 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700386
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800387 /* resubmit URB */
388 spin_lock_irqsave(&cs->lock, flags);
389 if (!cs->connected) {
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700390 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800391 pr_err("%s: disconnected\n", __func__);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800392 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800393 }
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800394 r = usb_submit_urb(urb, GFP_ATOMIC);
395 spin_unlock_irqrestore(&cs->lock, flags);
396 if (r)
397 dev_err(cs->dev, "error %d resubmitting URB\n", -r);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800398}
399
400
Tilman Schmidt917f5082006-04-10 22:55:00 -0700401/* This callback routine is called when data was transmitted to the device. */
David Howells7d12e782006-10-05 14:55:46 +0100402static void gigaset_write_bulk_callback(struct urb *urb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800403{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700404 struct cardstate *cs = urb->context;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800405 int status = urb->status;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700406 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800407
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800408 switch (status) {
409 case 0: /* normal completion */
410 break;
411 case -ENOENT: /* killed */
412 gig_dbg(DEBUG_ANY, "%s: killed", __func__);
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800413 cs->hw.usb->busy = 0;
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800414 return;
415 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700416 dev_err(cs->dev, "bulk transfer failed (status %d)\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800417 -status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700418 /* That's all we can do. Communication problems
Tilman Schmidt784d5852006-04-10 22:55:04 -0700419 are handled by timeouts or network protocols. */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800420 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800421
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700422 spin_lock_irqsave(&cs->lock, flags);
423 if (!cs->connected) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800424 pr_err("%s: disconnected\n", __func__);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700425 } else {
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800426 cs->hw.usb->busy = 0;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700427 tasklet_schedule(&cs->write_tasklet);
428 }
429 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800430}
431
432static int send_cb(struct cardstate *cs, struct cmdbuf_t *cb)
433{
434 struct cmdbuf_t *tcb;
435 unsigned long flags;
436 int count;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000437 int status = -ENOENT;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800438 struct usb_cardstate *ucs = cs->hw.usb;
439
440 do {
441 if (!cb->len) {
442 tcb = cb;
443
444 spin_lock_irqsave(&cs->cmdlock, flags);
445 cs->cmdbytes -= cs->curlen;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700446 gig_dbg(DEBUG_OUTPUT, "send_cb: sent %u bytes, %u left",
447 cs->curlen, cs->cmdbytes);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800448 cs->cmdbuf = cb = cb->next;
449 if (cb) {
450 cb->prev = NULL;
451 cs->curlen = cb->len;
452 } else {
453 cs->lastcmdbuf = NULL;
454 cs->curlen = 0;
455 }
456 spin_unlock_irqrestore(&cs->cmdlock, flags);
457
458 if (tcb->wake_tasklet)
459 tasklet_schedule(tcb->wake_tasklet);
460 kfree(tcb);
461 }
462 if (cb) {
463 count = min(cb->len, ucs->bulk_out_size);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700464 gig_dbg(DEBUG_OUTPUT, "send_cb: send %d bytes", count);
465
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800466 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700467 usb_sndbulkpipe(ucs->udev,
468 ucs->bulk_out_endpointAddr & 0x0f),
469 cb->buf + cb->offset, count,
470 gigaset_write_bulk_callback, cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800471
472 cb->offset += count;
473 cb->len -= count;
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800474 ucs->busy = 1;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800475
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700476 spin_lock_irqsave(&cs->lock, flags);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000477 status = cs->connected ?
478 usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC) :
479 -ENODEV;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700480 spin_unlock_irqrestore(&cs->lock, flags);
481
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800482 if (status) {
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800483 ucs->busy = 0;
Tilman Schmidt50027792008-07-23 21:28:27 -0700484 dev_err(cs->dev,
485 "could not submit urb (error %d)\n",
486 -status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700487 cb->len = 0; /* skip urb => remove cb+wakeup
488 in next loop cycle */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800489 }
490 }
Tilman Schmidt917f5082006-04-10 22:55:00 -0700491 } while (cb && status); /* next command on error */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800492
493 return status;
494}
495
Tilman Schmidt917f5082006-04-10 22:55:00 -0700496/* Send command to device. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800497static int gigaset_write_cmd(struct cardstate *cs, const unsigned char *buf,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700498 int len, struct tasklet_struct *wake_tasklet)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800499{
500 struct cmdbuf_t *cb;
501 unsigned long flags;
502
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800503 gigaset_dbg_buffer(cs->mstate != MS_LOCKED ?
Tilman Schmidt784d5852006-04-10 22:55:04 -0700504 DEBUG_TRANSCMD : DEBUG_LOCKCMD,
Tilman Schmidt01371502006-04-10 22:55:11 -0700505 "CMD Transmit", len, buf);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800506
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800507 if (len <= 0)
508 return 0;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000509 cb = kmalloc(sizeof(struct cmdbuf_t) + len, GFP_ATOMIC);
510 if (!cb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700511 dev_err(cs->dev, "%s: out of memory\n", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800512 return -ENOMEM;
513 }
514
515 memcpy(cb->buf, buf, len);
516 cb->len = len;
517 cb->offset = 0;
518 cb->next = NULL;
519 cb->wake_tasklet = wake_tasklet;
520
521 spin_lock_irqsave(&cs->cmdlock, flags);
522 cb->prev = cs->lastcmdbuf;
523 if (cs->lastcmdbuf)
524 cs->lastcmdbuf->next = cb;
525 else {
526 cs->cmdbuf = cb;
527 cs->curlen = len;
528 }
529 cs->cmdbytes += len;
530 cs->lastcmdbuf = cb;
531 spin_unlock_irqrestore(&cs->cmdlock, flags);
532
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700533 spin_lock_irqsave(&cs->lock, flags);
534 if (cs->connected)
535 tasklet_schedule(&cs->write_tasklet);
536 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800537 return len;
538}
539
540static int gigaset_write_room(struct cardstate *cs)
541{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800542 unsigned bytes;
543
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800544 bytes = cs->cmdbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800545 return bytes < IF_WRITEBUF ? IF_WRITEBUF - bytes : 0;
546}
547
548static int gigaset_chars_in_buffer(struct cardstate *cs)
549{
550 return cs->cmdbytes;
551}
552
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000553/*
554 * set the break characters on the internal serial adapter
555 * using undocumented device commands reverse engineered from USB traces
556 * of the Siemens Windows driver
557 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800558static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6])
559{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700560 struct usb_device *udev = cs->hw.usb->udev;
561
Tilman Schmidt01371502006-04-10 22:55:11 -0700562 gigaset_dbg_buffer(DEBUG_USBREQ, "brkchars", 6, buf);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800563 memcpy(cs->hw.usb->bchars, buf, 6);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700564 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
565 0, 0, &buf, 6, 2000);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800566}
567
568static int gigaset_freebcshw(struct bc_state *bcs)
569{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700570 /* unused */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800571 return 1;
572}
573
574/* Initialize the b-channel structure */
575static int gigaset_initbcshw(struct bc_state *bcs)
576{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700577 /* unused */
578 bcs->hw.usb = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800579 return 1;
580}
581
582static void gigaset_reinitbcshw(struct bc_state *bcs)
583{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700584 /* nothing to do for M10x */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800585}
586
587static void gigaset_freecshw(struct cardstate *cs)
588{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800589 tasklet_kill(&cs->write_tasklet);
590 kfree(cs->hw.usb);
591}
592
593static int gigaset_initcshw(struct cardstate *cs)
594{
595 struct usb_cardstate *ucs;
596
597 cs->hw.usb = ucs =
598 kmalloc(sizeof(struct usb_cardstate), GFP_KERNEL);
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800599 if (!ucs) {
600 pr_err("out of memory\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800601 return 0;
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800602 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800603
604 ucs->bchars[0] = 0;
605 ucs->bchars[1] = 0;
606 ucs->bchars[2] = 0;
607 ucs->bchars[3] = 0;
608 ucs->bchars[4] = 0x11;
609 ucs->bchars[5] = 0x13;
610 ucs->bulk_out_buffer = NULL;
611 ucs->bulk_out_urb = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800612 ucs->read_urb = NULL;
613 tasklet_init(&cs->write_tasklet,
Joe Perches5452fee2009-11-19 09:55:53 +0000614 gigaset_modem_fill, (unsigned long) cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800615
616 return 1;
617}
618
Tilman Schmidt917f5082006-04-10 22:55:00 -0700619/* Send data from current skb to the device. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800620static int write_modem(struct cardstate *cs)
621{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700622 int ret = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800623 int count;
624 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
625 struct usb_cardstate *ucs = cs->hw.usb;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700626 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800627
Tilman Schmidt1528b182010-02-22 13:09:52 +0000628 gig_dbg(DEBUG_OUTPUT, "len: %d...", bcs->tx_skb->len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800629
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800630 if (!bcs->tx_skb->len) {
631 dev_kfree_skb_any(bcs->tx_skb);
632 bcs->tx_skb = NULL;
633 return -EINVAL;
634 }
635
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000636 /* Copy data to bulk out buffer and transmit data */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800637 count = min(bcs->tx_skb->len, (unsigned) ucs->bulk_out_size);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300638 skb_copy_from_linear_data(bcs->tx_skb, ucs->bulk_out_buffer, count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800639 skb_pull(bcs->tx_skb, count);
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800640 ucs->busy = 1;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700641 gig_dbg(DEBUG_OUTPUT, "write_modem: send %d bytes", count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800642
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700643 spin_lock_irqsave(&cs->lock, flags);
644 if (cs->connected) {
645 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
646 usb_sndbulkpipe(ucs->udev,
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000647 ucs->bulk_out_endpointAddr &
648 0x0f),
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700649 ucs->bulk_out_buffer, count,
650 gigaset_write_bulk_callback, cs);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800651 ret = usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700652 } else {
653 ret = -ENODEV;
654 }
655 spin_unlock_irqrestore(&cs->lock, flags);
656
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800657 if (ret) {
Tilman Schmidt50027792008-07-23 21:28:27 -0700658 dev_err(cs->dev, "could not submit urb (error %d)\n", -ret);
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800659 ucs->busy = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800660 }
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700661
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800662 if (!bcs->tx_skb->len) {
663 /* skb sent completely */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000664 gigaset_skb_sent(bcs, bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800665
Tilman Schmidt784d5852006-04-10 22:55:04 -0700666 gig_dbg(DEBUG_INTR, "kfree skb (Adr: %lx)!",
667 (unsigned long) bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800668 dev_kfree_skb_any(bcs->tx_skb);
669 bcs->tx_skb = NULL;
670 }
671
672 return ret;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800673}
674
675static int gigaset_probe(struct usb_interface *interface,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700676 const struct usb_device_id *id)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800677{
678 int retval;
679 struct usb_device *udev = interface_to_usbdev(interface);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800680 struct usb_host_interface *hostif = interface->cur_altsetting;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800681 struct cardstate *cs = NULL;
682 struct usb_cardstate *ucs = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800683 struct usb_endpoint_descriptor *endpoint;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800684 int buffer_size;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800685
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800686 gig_dbg(DEBUG_ANY, "%s: Check if device matches ...", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800687
688 /* See if the device offered us matches what we can accept */
Alexey Dobriyanbfe2e932006-05-15 09:44:35 -0700689 if ((le16_to_cpu(udev->descriptor.idVendor) != USB_M105_VENDOR_ID) ||
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800690 (le16_to_cpu(udev->descriptor.idProduct) != USB_M105_PRODUCT_ID)) {
691 gig_dbg(DEBUG_ANY, "device ID (0x%x, 0x%x) not for me - skip",
692 le16_to_cpu(udev->descriptor.idVendor),
693 le16_to_cpu(udev->descriptor.idProduct));
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800694 return -ENODEV;
695 }
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800696 if (hostif->desc.bInterfaceNumber != 0) {
697 gig_dbg(DEBUG_ANY, "interface %d not for me - skip",
698 hostif->desc.bInterfaceNumber);
699 return -ENODEV;
700 }
701 if (hostif->desc.bAlternateSetting != 0) {
702 dev_notice(&udev->dev, "unsupported altsetting %d - skip",
703 hostif->desc.bAlternateSetting);
704 return -ENODEV;
705 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800706 if (hostif->desc.bInterfaceClass != 255) {
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800707 dev_notice(&udev->dev, "unsupported interface class %d - skip",
708 hostif->desc.bInterfaceClass);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800709 return -ENODEV;
710 }
711
Tilman Schmidt784d5852006-04-10 22:55:04 -0700712 dev_info(&udev->dev, "%s: Device matched ... !\n", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800713
Tilman Schmidte468c042008-02-06 01:38:29 -0800714 /* allocate memory for our device state and intialize it */
715 cs = gigaset_initcs(driver, 1, 1, 0, cidmode, GIGASET_MODULENAME);
716 if (!cs)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800717 return -ENODEV;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800718 ucs = cs->hw.usb;
719
Tilman Schmidt784d5852006-04-10 22:55:04 -0700720 /* save off device structure ptrs for later use */
721 usb_get_dev(udev);
722 ucs->udev = udev;
723 ucs->interface = interface;
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700724 cs->dev = &interface->dev;
725
726 /* save address of controller structure */
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000727 usb_set_intfdata(interface, cs);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700728
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800729 endpoint = &hostif->endpoint[0].desc;
730
731 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
732 ucs->bulk_out_size = buffer_size;
733 ucs->bulk_out_endpointAddr = endpoint->bEndpointAddress;
734 ucs->bulk_out_buffer = kmalloc(buffer_size, GFP_KERNEL);
735 if (!ucs->bulk_out_buffer) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700736 dev_err(cs->dev, "Couldn't allocate bulk_out_buffer\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800737 retval = -ENOMEM;
738 goto error;
739 }
740
Christoph Lametere94b1762006-12-06 20:33:17 -0800741 ucs->bulk_out_urb = usb_alloc_urb(0, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800742 if (!ucs->bulk_out_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700743 dev_err(cs->dev, "Couldn't allocate bulk_out_urb\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800744 retval = -ENOMEM;
745 goto error;
746 }
747
748 endpoint = &hostif->endpoint[1].desc;
749
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800750 ucs->busy = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800751
Christoph Lametere94b1762006-12-06 20:33:17 -0800752 ucs->read_urb = usb_alloc_urb(0, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800753 if (!ucs->read_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700754 dev_err(cs->dev, "No free urbs available\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800755 retval = -ENOMEM;
756 goto error;
757 }
758 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
759 ucs->rcvbuf_size = buffer_size;
760 ucs->int_in_endpointAddr = endpoint->bEndpointAddress;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000761 ucs->rcvbuf = kmalloc(buffer_size, GFP_KERNEL);
762 if (!ucs->rcvbuf) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700763 dev_err(cs->dev, "Couldn't allocate rcvbuf\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800764 retval = -ENOMEM;
765 goto error;
766 }
767 /* Fill the interrupt urb and send it to the core */
768 usb_fill_int_urb(ucs->read_urb, udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700769 usb_rcvintpipe(udev,
770 endpoint->bEndpointAddress & 0x0f),
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000771 ucs->rcvbuf, buffer_size,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700772 gigaset_read_int_callback,
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000773 cs, endpoint->bInterval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800774
Christoph Lametere94b1762006-12-06 20:33:17 -0800775 retval = usb_submit_urb(ucs->read_urb, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800776 if (retval) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700777 dev_err(cs->dev, "Could not submit URB (error %d)\n", -retval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800778 goto error;
779 }
780
781 /* tell common part that the device is ready */
782 if (startmode == SM_LOCKED)
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800783 cs->mstate = MS_LOCKED;
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700784
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800785 if (!gigaset_start(cs)) {
786 tasklet_kill(&cs->write_tasklet);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000787 retval = -ENODEV;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800788 goto error;
789 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800790 return 0;
791
792error:
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100793 usb_kill_urb(ucs->read_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800794 kfree(ucs->bulk_out_buffer);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100795 usb_free_urb(ucs->bulk_out_urb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000796 kfree(ucs->rcvbuf);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100797 usb_free_urb(ucs->read_urb);
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700798 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800799 ucs->read_urb = ucs->bulk_out_urb = NULL;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000800 ucs->rcvbuf = ucs->bulk_out_buffer = NULL;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700801 usb_put_dev(ucs->udev);
802 ucs->udev = NULL;
803 ucs->interface = NULL;
Tilman Schmidte468c042008-02-06 01:38:29 -0800804 gigaset_freecs(cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800805 return retval;
806}
807
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800808static void gigaset_disconnect(struct usb_interface *interface)
809{
810 struct cardstate *cs;
811 struct usb_cardstate *ucs;
812
813 cs = usb_get_intfdata(interface);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800814 ucs = cs->hw.usb;
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800815
816 dev_info(cs->dev, "disconnecting Gigaset USB adapter\n");
817
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800818 usb_kill_urb(ucs->read_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800819
820 gigaset_stop(cs);
821
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700822 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800823 tasklet_kill(&cs->write_tasklet);
824
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800825 usb_kill_urb(ucs->bulk_out_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800826
827 kfree(ucs->bulk_out_buffer);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100828 usb_free_urb(ucs->bulk_out_urb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000829 kfree(ucs->rcvbuf);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100830 usb_free_urb(ucs->read_urb);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700831 ucs->read_urb = ucs->bulk_out_urb = NULL;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000832 ucs->rcvbuf = ucs->bulk_out_buffer = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800833
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700834 usb_put_dev(ucs->udev);
835 ucs->interface = NULL;
836 ucs->udev = NULL;
837 cs->dev = NULL;
Tilman Schmidte468c042008-02-06 01:38:29 -0800838 gigaset_freecs(cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800839}
840
Tilman Schmidt1ff0a522008-02-06 01:38:27 -0800841/* gigaset_suspend
842 * This function is called before the USB connection is suspended or reset.
843 */
844static int gigaset_suspend(struct usb_interface *intf, pm_message_t message)
845{
846 struct cardstate *cs = usb_get_intfdata(intf);
847
848 /* stop activity */
849 cs->connected = 0; /* prevent rescheduling */
850 usb_kill_urb(cs->hw.usb->read_urb);
851 tasklet_kill(&cs->write_tasklet);
852 usb_kill_urb(cs->hw.usb->bulk_out_urb);
853
854 gig_dbg(DEBUG_SUSPEND, "suspend complete");
855 return 0;
856}
857
858/* gigaset_resume
859 * This function is called after the USB connection has been resumed or reset.
860 */
861static int gigaset_resume(struct usb_interface *intf)
862{
863 struct cardstate *cs = usb_get_intfdata(intf);
864 int rc;
865
866 /* resubmit interrupt URB */
867 cs->connected = 1;
868 rc = usb_submit_urb(cs->hw.usb->read_urb, GFP_KERNEL);
869 if (rc) {
870 dev_err(cs->dev, "Could not submit read URB (error %d)\n", -rc);
871 return rc;
872 }
873
874 gig_dbg(DEBUG_SUSPEND, "resume complete");
875 return 0;
876}
877
878/* gigaset_pre_reset
879 * This function is called before the USB connection is reset.
880 */
881static int gigaset_pre_reset(struct usb_interface *intf)
882{
883 /* same as suspend */
884 return gigaset_suspend(intf, PMSG_ON);
885}
886
Tilman Schmidt35dc8452007-03-29 01:20:34 -0700887static const struct gigaset_ops ops = {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800888 gigaset_write_cmd,
889 gigaset_write_room,
890 gigaset_chars_in_buffer,
891 gigaset_brkchars,
892 gigaset_init_bchannel,
893 gigaset_close_bchannel,
894 gigaset_initbcshw,
895 gigaset_freebcshw,
896 gigaset_reinitbcshw,
897 gigaset_initcshw,
898 gigaset_freecshw,
899 gigaset_set_modem_ctrl,
900 gigaset_baud_rate,
901 gigaset_set_line_ctrl,
902 gigaset_m10x_send_skb,
903 gigaset_m10x_input,
904};
905
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000906/*
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800907 * This function is called while kernel-module is loaded
908 */
909static int __init usb_gigaset_init(void)
910{
911 int result;
912
913 /* allocate memory for our driver state and intialize it */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000914 driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
915 GIGASET_MODULENAME, GIGASET_DEVNAME,
916 &ops, THIS_MODULE);
917 if (driver == NULL)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800918 goto error;
919
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800920 /* register this driver with the USB subsystem */
921 result = usb_register(&gigaset_usb_driver);
922 if (result < 0) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800923 pr_err("error %d registering USB driver\n", -result);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800924 goto error;
925 }
926
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800927 pr_info(DRIVER_DESC "\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800928 return 0;
929
Tilman Schmidte468c042008-02-06 01:38:29 -0800930error:
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800931 if (driver)
932 gigaset_freedriver(driver);
933 driver = NULL;
934 return -1;
935}
936
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000937/*
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800938 * This function is called while unloading the kernel-module
939 */
940static void __exit usb_gigaset_exit(void)
941{
Tilman Schmidte468c042008-02-06 01:38:29 -0800942 int i;
943
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800944 gigaset_blockdriver(driver); /* => probe will fail
Tilman Schmidt784d5852006-04-10 22:55:04 -0700945 * => no gigaset_start any more
946 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800947
Tilman Schmidte468c042008-02-06 01:38:29 -0800948 /* stop all connected devices */
949 for (i = 0; i < driver->minors; i++)
950 gigaset_shutdown(driver->cs + i);
951
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800952 /* from now on, no isdn callback should be possible */
953
954 /* deregister this driver with the USB subsystem */
955 usb_deregister(&gigaset_usb_driver);
956 /* this will call the disconnect-callback */
957 /* from now on, no disconnect/probe callback should be running */
958
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800959 gigaset_freedriver(driver);
960 driver = NULL;
961}
962
963
964module_init(usb_gigaset_init);
965module_exit(usb_gigaset_exit);
966
967MODULE_AUTHOR(DRIVER_AUTHOR);
968MODULE_DESCRIPTION(DRIVER_DESC);
969
970MODULE_LICENSE("GPL");