blob: 78f81e8a5be6bc19e514a6e53933274cfeebc522 [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,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -0700127 .disable_hub_initiated_lpm = 1,
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800128};
129
130struct usb_cardstate {
Tilman Schmidt917f5082006-04-10 22:55:00 -0700131 struct usb_device *udev; /* usb device pointer */
132 struct usb_interface *interface; /* interface for this device */
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800133 int busy; /* bulk output in progress */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800134
Tilman Schmidt917f5082006-04-10 22:55:00 -0700135 /* Output buffer */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700136 unsigned char *bulk_out_buffer;
137 int bulk_out_size;
138 __u8 bulk_out_endpointAddr;
139 struct urb *bulk_out_urb;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800140
Tilman Schmidt917f5082006-04-10 22:55:00 -0700141 /* Input buffer */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000142 unsigned char *rcvbuf;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700143 int rcvbuf_size;
144 struct urb *read_urb;
145 __u8 int_in_endpointAddr;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800146
Tilman Schmidt784d5852006-04-10 22:55:04 -0700147 char bchars[6]; /* for request 0x19 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800148};
149
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800150static inline unsigned tiocm_to_gigaset(unsigned state)
151{
152 return ((state & TIOCM_DTR) ? 1 : 0) | ((state & TIOCM_RTS) ? 2 : 0);
153}
154
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800155static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700156 unsigned new_state)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800157{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700158 struct usb_device *udev = cs->hw.usb->udev;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800159 unsigned mask, val;
160 int r;
161
162 mask = tiocm_to_gigaset(old_state ^ new_state);
163 val = tiocm_to_gigaset(new_state);
164
Tilman Schmidt784d5852006-04-10 22:55:04 -0700165 gig_dbg(DEBUG_USBREQ, "set flags 0x%02x with mask 0x%02x", val, mask);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700166 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 7, 0x41,
167 (val & 0xff) | ((mask & 0xff) << 8), 0,
168 NULL, 0, 2000 /* timeout? */);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800169 if (r < 0)
170 return r;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800171 return 0;
172}
173
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000174/*
175 * Set M105 configuration value
176 * using undocumented device commands reverse engineered from USB traces
177 * of the Siemens Windows driver
178 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800179static int set_value(struct cardstate *cs, u8 req, u16 val)
180{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700181 struct usb_device *udev = cs->hw.usb->udev;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800182 int r, r2;
183
Tilman Schmidt784d5852006-04-10 22:55:04 -0700184 gig_dbg(DEBUG_USBREQ, "request %02x (%04x)",
185 (unsigned)req, (unsigned)val);
186 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x12, 0x41,
187 0xf /*?*/, 0, NULL, 0, 2000 /*?*/);
Joe Perches475be4d2012-02-19 19:52:38 -0800188 /* no idea what this does */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800189 if (r < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700190 dev_err(&udev->dev, "error %d on request 0x12\n", -r);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800191 return r;
192 }
193
Tilman Schmidt784d5852006-04-10 22:55:04 -0700194 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), req, 0x41,
195 val, 0, NULL, 0, 2000 /*?*/);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800196 if (r < 0)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700197 dev_err(&udev->dev, "error %d on request 0x%02x\n",
198 -r, (unsigned)req);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800199
Tilman Schmidt784d5852006-04-10 22:55:04 -0700200 r2 = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
201 0, 0, cs->hw.usb->bchars, 6, 2000 /*?*/);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800202 if (r2 < 0)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700203 dev_err(&udev->dev, "error %d on request 0x19\n", -r2);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800204
205 return r < 0 ? r : (r2 < 0 ? r2 : 0);
206}
207
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000208/*
209 * set the baud rate on the internal serial adapter
210 * using the undocumented parameter setting command
211 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800212static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
213{
214 u16 val;
215 u32 rate;
216
217 cflag &= CBAUD;
218
219 switch (cflag) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800220 case B300: rate = 300; break;
221 case B600: rate = 600; break;
222 case B1200: rate = 1200; break;
223 case B2400: rate = 2400; break;
224 case B4800: rate = 4800; break;
225 case B9600: rate = 9600; break;
226 case B19200: rate = 19200; break;
227 case B38400: rate = 38400; break;
228 case B57600: rate = 57600; break;
229 case B115200: rate = 115200; break;
230 default:
231 rate = 9600;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700232 dev_err(cs->dev, "unsupported baudrate request 0x%x,"
233 " using default of B9600\n", cflag);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800234 }
235
236 val = 0x383fff / rate + 1;
237
238 return set_value(cs, 1, val);
239}
240
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000241/*
242 * set the line format on the internal serial adapter
243 * using the undocumented parameter setting command
244 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800245static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag)
246{
247 u16 val = 0;
248
249 /* set the parity */
250 if (cflag & PARENB)
251 val |= (cflag & PARODD) ? 0x10 : 0x20;
252
253 /* set the number of data bits */
254 switch (cflag & CSIZE) {
255 case CS5:
256 val |= 5 << 8; break;
257 case CS6:
258 val |= 6 << 8; break;
259 case CS7:
260 val |= 7 << 8; break;
261 case CS8:
262 val |= 8 << 8; break;
263 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700264 dev_err(cs->dev, "CSIZE was not CS5-CS8, using default of 8\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800265 val |= 8 << 8;
266 break;
267 }
268
269 /* set the number of stop bits */
270 if (cflag & CSTOPB) {
271 if ((cflag & CSIZE) == CS5)
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000272 val |= 1; /* 1.5 stop bits */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800273 else
274 val |= 2; /* 2 stop bits */
275 }
276
277 return set_value(cs, 3, val);
278}
279
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800280
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000281/*============================================================================*/
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800282static int gigaset_init_bchannel(struct bc_state *bcs)
283{
284 /* nothing to do for M10x */
285 gigaset_bchannel_up(bcs);
286 return 0;
287}
288
289static int gigaset_close_bchannel(struct bc_state *bcs)
290{
291 /* nothing to do for M10x */
292 gigaset_bchannel_down(bcs);
293 return 0;
294}
295
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800296static int write_modem(struct cardstate *cs);
297static int send_cb(struct cardstate *cs, struct cmdbuf_t *cb);
298
299
Tilman Schmidt917f5082006-04-10 22:55:00 -0700300/* Write tasklet handler: Continue sending current skb, or send command, or
301 * start sending an skb from the send queue.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800302 */
303static void gigaset_modem_fill(unsigned long data)
304{
305 struct cardstate *cs = (struct cardstate *) data;
306 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
307 struct cmdbuf_t *cb;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800308 int again;
309
Tilman Schmidt784d5852006-04-10 22:55:04 -0700310 gig_dbg(DEBUG_OUTPUT, "modem_fill");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800311
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800312 if (cs->hw.usb->busy) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700313 gig_dbg(DEBUG_OUTPUT, "modem_fill: busy");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800314 return;
315 }
316
317 do {
318 again = 0;
319 if (!bcs->tx_skb) { /* no skb is being sent */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800320 cb = cs->cmdbuf;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800321 if (cb) { /* commands to send? */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700322 gig_dbg(DEBUG_OUTPUT, "modem_fill: cb");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800323 if (send_cb(cs, cb) < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700324 gig_dbg(DEBUG_OUTPUT,
325 "modem_fill: send_cb failed");
Tilman Schmidt917f5082006-04-10 22:55:00 -0700326 again = 1; /* no callback will be
327 called! */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800328 }
329 } else { /* skbs to send? */
330 bcs->tx_skb = skb_dequeue(&bcs->squeue);
331 if (bcs->tx_skb)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700332 gig_dbg(DEBUG_INTR,
333 "Dequeued skb (Adr: %lx)!",
334 (unsigned long) bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800335 }
336 }
337
338 if (bcs->tx_skb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700339 gig_dbg(DEBUG_OUTPUT, "modem_fill: tx_skb");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800340 if (write_modem(cs) < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700341 gig_dbg(DEBUG_OUTPUT,
342 "modem_fill: write_modem failed");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800343 again = 1; /* no callback will be called! */
344 }
345 }
346 } while (again);
347}
348
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000349/*
350 * Interrupt Input URB completion routine
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800351 */
David Howells7d12e782006-10-05 14:55:46 +0100352static void gigaset_read_int_callback(struct urb *urb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800353{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000354 struct cardstate *cs = urb->context;
355 struct inbuf_t *inbuf = cs->inbuf;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800356 int status = urb->status;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800357 int r;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800358 unsigned numbytes;
359 unsigned char *src;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700360 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800361
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800362 if (!status) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800363 numbytes = urb->actual_length;
364
365 if (numbytes) {
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000366 src = cs->hw.usb->rcvbuf;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800367 if (unlikely(*src))
Tilman Schmidt784d5852006-04-10 22:55:04 -0700368 dev_warn(cs->dev,
Joe Perches475be4d2012-02-19 19:52:38 -0800369 "%s: There was no leading 0, but 0x%02x!\n",
Tilman Schmidt784d5852006-04-10 22:55:04 -0700370 __func__, (unsigned) *src);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800371 ++src; /* skip leading 0x00 */
372 --numbytes;
373 if (gigaset_fill_inbuf(inbuf, src, numbytes)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700374 gig_dbg(DEBUG_INTR, "%s-->BH", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800375 gigaset_schedule_event(inbuf->cs);
376 }
377 } else
Tilman Schmidt784d5852006-04-10 22:55:04 -0700378 gig_dbg(DEBUG_INTR, "Received zero block length");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800379 } else {
380 /* The urb might have been killed. */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800381 gig_dbg(DEBUG_ANY, "%s - nonzero status received: %d",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800382 __func__, status);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800383 if (status == -ENOENT || status == -ESHUTDOWN)
384 /* killed or endpoint shutdown: don't resubmit */
385 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800386 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700387
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800388 /* resubmit URB */
389 spin_lock_irqsave(&cs->lock, flags);
390 if (!cs->connected) {
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700391 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800392 pr_err("%s: disconnected\n", __func__);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800393 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800394 }
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800395 r = usb_submit_urb(urb, GFP_ATOMIC);
396 spin_unlock_irqrestore(&cs->lock, flags);
397 if (r)
398 dev_err(cs->dev, "error %d resubmitting URB\n", -r);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800399}
400
401
Tilman Schmidt917f5082006-04-10 22:55:00 -0700402/* This callback routine is called when data was transmitted to the device. */
David Howells7d12e782006-10-05 14:55:46 +0100403static void gigaset_write_bulk_callback(struct urb *urb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800404{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700405 struct cardstate *cs = urb->context;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800406 int status = urb->status;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700407 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800408
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800409 switch (status) {
410 case 0: /* normal completion */
411 break;
412 case -ENOENT: /* killed */
413 gig_dbg(DEBUG_ANY, "%s: killed", __func__);
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800414 cs->hw.usb->busy = 0;
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800415 return;
416 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700417 dev_err(cs->dev, "bulk transfer failed (status %d)\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800418 -status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700419 /* That's all we can do. Communication problems
Tilman Schmidt784d5852006-04-10 22:55:04 -0700420 are handled by timeouts or network protocols. */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800421 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800422
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700423 spin_lock_irqsave(&cs->lock, flags);
424 if (!cs->connected) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800425 pr_err("%s: disconnected\n", __func__);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700426 } else {
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800427 cs->hw.usb->busy = 0;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700428 tasklet_schedule(&cs->write_tasklet);
429 }
430 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800431}
432
433static int send_cb(struct cardstate *cs, struct cmdbuf_t *cb)
434{
435 struct cmdbuf_t *tcb;
436 unsigned long flags;
437 int count;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000438 int status = -ENOENT;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800439 struct usb_cardstate *ucs = cs->hw.usb;
440
441 do {
442 if (!cb->len) {
443 tcb = cb;
444
445 spin_lock_irqsave(&cs->cmdlock, flags);
446 cs->cmdbytes -= cs->curlen;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700447 gig_dbg(DEBUG_OUTPUT, "send_cb: sent %u bytes, %u left",
448 cs->curlen, cs->cmdbytes);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800449 cs->cmdbuf = cb = cb->next;
450 if (cb) {
451 cb->prev = NULL;
452 cs->curlen = cb->len;
453 } else {
454 cs->lastcmdbuf = NULL;
455 cs->curlen = 0;
456 }
457 spin_unlock_irqrestore(&cs->cmdlock, flags);
458
459 if (tcb->wake_tasklet)
460 tasklet_schedule(tcb->wake_tasklet);
461 kfree(tcb);
462 }
463 if (cb) {
464 count = min(cb->len, ucs->bulk_out_size);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700465 gig_dbg(DEBUG_OUTPUT, "send_cb: send %d bytes", count);
466
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800467 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700468 usb_sndbulkpipe(ucs->udev,
Joe Perches475be4d2012-02-19 19:52:38 -0800469 ucs->bulk_out_endpointAddr & 0x0f),
Tilman Schmidt784d5852006-04-10 22:55:04 -0700470 cb->buf + cb->offset, count,
471 gigaset_write_bulk_callback, cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800472
473 cb->offset += count;
474 cb->len -= count;
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800475 ucs->busy = 1;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800476
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700477 spin_lock_irqsave(&cs->lock, flags);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000478 status = cs->connected ?
479 usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC) :
480 -ENODEV;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700481 spin_unlock_irqrestore(&cs->lock, flags);
482
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800483 if (status) {
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800484 ucs->busy = 0;
Tilman Schmidt50027792008-07-23 21:28:27 -0700485 dev_err(cs->dev,
486 "could not submit urb (error %d)\n",
487 -status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700488 cb->len = 0; /* skip urb => remove cb+wakeup
489 in next loop cycle */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800490 }
491 }
Tilman Schmidt917f5082006-04-10 22:55:00 -0700492 } while (cb && status); /* next command on error */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800493
494 return status;
495}
496
Tilman Schmidt917f5082006-04-10 22:55:00 -0700497/* Send command to device. */
Tilman Schmidte3628dd2010-07-05 14:18:43 +0000498static int gigaset_write_cmd(struct cardstate *cs, struct cmdbuf_t *cb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800499{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800500 unsigned long flags;
501
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800502 gigaset_dbg_buffer(cs->mstate != MS_LOCKED ?
Joe Perches475be4d2012-02-19 19:52:38 -0800503 DEBUG_TRANSCMD : DEBUG_LOCKCMD,
Tilman Schmidte3628dd2010-07-05 14:18:43 +0000504 "CMD Transmit", cb->len, cb->buf);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800505
506 spin_lock_irqsave(&cs->cmdlock, flags);
507 cb->prev = cs->lastcmdbuf;
508 if (cs->lastcmdbuf)
509 cs->lastcmdbuf->next = cb;
510 else {
511 cs->cmdbuf = cb;
Tilman Schmidte3628dd2010-07-05 14:18:43 +0000512 cs->curlen = cb->len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800513 }
Tilman Schmidte3628dd2010-07-05 14:18:43 +0000514 cs->cmdbytes += cb->len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800515 cs->lastcmdbuf = cb;
516 spin_unlock_irqrestore(&cs->cmdlock, flags);
517
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700518 spin_lock_irqsave(&cs->lock, flags);
519 if (cs->connected)
520 tasklet_schedule(&cs->write_tasklet);
521 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidte3628dd2010-07-05 14:18:43 +0000522 return cb->len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800523}
524
525static int gigaset_write_room(struct cardstate *cs)
526{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800527 unsigned bytes;
528
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800529 bytes = cs->cmdbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800530 return bytes < IF_WRITEBUF ? IF_WRITEBUF - bytes : 0;
531}
532
533static int gigaset_chars_in_buffer(struct cardstate *cs)
534{
535 return cs->cmdbytes;
536}
537
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000538/*
539 * set the break characters on the internal serial adapter
540 * using undocumented device commands reverse engineered from USB traces
541 * of the Siemens Windows driver
542 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800543static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6])
544{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700545 struct usb_device *udev = cs->hw.usb->udev;
546
Tilman Schmidt01371502006-04-10 22:55:11 -0700547 gigaset_dbg_buffer(DEBUG_USBREQ, "brkchars", 6, buf);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800548 memcpy(cs->hw.usb->bchars, buf, 6);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700549 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
550 0, 0, &buf, 6, 2000);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800551}
552
553static int gigaset_freebcshw(struct bc_state *bcs)
554{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700555 /* unused */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800556 return 1;
557}
558
559/* Initialize the b-channel structure */
560static int gigaset_initbcshw(struct bc_state *bcs)
561{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700562 /* unused */
563 bcs->hw.usb = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800564 return 1;
565}
566
567static void gigaset_reinitbcshw(struct bc_state *bcs)
568{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700569 /* nothing to do for M10x */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800570}
571
572static void gigaset_freecshw(struct cardstate *cs)
573{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800574 tasklet_kill(&cs->write_tasklet);
575 kfree(cs->hw.usb);
576}
577
578static int gigaset_initcshw(struct cardstate *cs)
579{
580 struct usb_cardstate *ucs;
581
582 cs->hw.usb = ucs =
583 kmalloc(sizeof(struct usb_cardstate), GFP_KERNEL);
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800584 if (!ucs) {
585 pr_err("out of memory\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800586 return 0;
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800587 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800588
589 ucs->bchars[0] = 0;
590 ucs->bchars[1] = 0;
591 ucs->bchars[2] = 0;
592 ucs->bchars[3] = 0;
593 ucs->bchars[4] = 0x11;
594 ucs->bchars[5] = 0x13;
595 ucs->bulk_out_buffer = NULL;
596 ucs->bulk_out_urb = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800597 ucs->read_urb = NULL;
598 tasklet_init(&cs->write_tasklet,
Joe Perches5452fee2009-11-19 09:55:53 +0000599 gigaset_modem_fill, (unsigned long) cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800600
601 return 1;
602}
603
Tilman Schmidt917f5082006-04-10 22:55:00 -0700604/* Send data from current skb to the device. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800605static int write_modem(struct cardstate *cs)
606{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700607 int ret = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800608 int count;
609 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
610 struct usb_cardstate *ucs = cs->hw.usb;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700611 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800612
Tilman Schmidt1528b182010-02-22 13:09:52 +0000613 gig_dbg(DEBUG_OUTPUT, "len: %d...", bcs->tx_skb->len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800614
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800615 if (!bcs->tx_skb->len) {
616 dev_kfree_skb_any(bcs->tx_skb);
617 bcs->tx_skb = NULL;
618 return -EINVAL;
619 }
620
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000621 /* Copy data to bulk out buffer and transmit data */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800622 count = min(bcs->tx_skb->len, (unsigned) ucs->bulk_out_size);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300623 skb_copy_from_linear_data(bcs->tx_skb, ucs->bulk_out_buffer, count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800624 skb_pull(bcs->tx_skb, count);
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800625 ucs->busy = 1;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700626 gig_dbg(DEBUG_OUTPUT, "write_modem: send %d bytes", count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800627
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700628 spin_lock_irqsave(&cs->lock, flags);
629 if (cs->connected) {
630 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
631 usb_sndbulkpipe(ucs->udev,
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000632 ucs->bulk_out_endpointAddr &
633 0x0f),
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700634 ucs->bulk_out_buffer, count,
635 gigaset_write_bulk_callback, cs);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800636 ret = usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700637 } else {
638 ret = -ENODEV;
639 }
640 spin_unlock_irqrestore(&cs->lock, flags);
641
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800642 if (ret) {
Tilman Schmidt50027792008-07-23 21:28:27 -0700643 dev_err(cs->dev, "could not submit urb (error %d)\n", -ret);
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800644 ucs->busy = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800645 }
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700646
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800647 if (!bcs->tx_skb->len) {
648 /* skb sent completely */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000649 gigaset_skb_sent(bcs, bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800650
Tilman Schmidt784d5852006-04-10 22:55:04 -0700651 gig_dbg(DEBUG_INTR, "kfree skb (Adr: %lx)!",
652 (unsigned long) bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800653 dev_kfree_skb_any(bcs->tx_skb);
654 bcs->tx_skb = NULL;
655 }
656
657 return ret;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800658}
659
660static int gigaset_probe(struct usb_interface *interface,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700661 const struct usb_device_id *id)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800662{
663 int retval;
664 struct usb_device *udev = interface_to_usbdev(interface);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800665 struct usb_host_interface *hostif = interface->cur_altsetting;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800666 struct cardstate *cs = NULL;
667 struct usb_cardstate *ucs = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800668 struct usb_endpoint_descriptor *endpoint;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800669 int buffer_size;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800670
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800671 gig_dbg(DEBUG_ANY, "%s: Check if device matches ...", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800672
673 /* See if the device offered us matches what we can accept */
Alexey Dobriyanbfe2e932006-05-15 09:44:35 -0700674 if ((le16_to_cpu(udev->descriptor.idVendor) != USB_M105_VENDOR_ID) ||
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800675 (le16_to_cpu(udev->descriptor.idProduct) != USB_M105_PRODUCT_ID)) {
676 gig_dbg(DEBUG_ANY, "device ID (0x%x, 0x%x) not for me - skip",
677 le16_to_cpu(udev->descriptor.idVendor),
678 le16_to_cpu(udev->descriptor.idProduct));
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800679 return -ENODEV;
680 }
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800681 if (hostif->desc.bInterfaceNumber != 0) {
682 gig_dbg(DEBUG_ANY, "interface %d not for me - skip",
683 hostif->desc.bInterfaceNumber);
684 return -ENODEV;
685 }
686 if (hostif->desc.bAlternateSetting != 0) {
687 dev_notice(&udev->dev, "unsupported altsetting %d - skip",
688 hostif->desc.bAlternateSetting);
689 return -ENODEV;
690 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800691 if (hostif->desc.bInterfaceClass != 255) {
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800692 dev_notice(&udev->dev, "unsupported interface class %d - skip",
693 hostif->desc.bInterfaceClass);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800694 return -ENODEV;
695 }
696
Tilman Schmidt784d5852006-04-10 22:55:04 -0700697 dev_info(&udev->dev, "%s: Device matched ... !\n", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800698
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400699 /* allocate memory for our device state and initialize it */
Tilman Schmidte468c042008-02-06 01:38:29 -0800700 cs = gigaset_initcs(driver, 1, 1, 0, cidmode, GIGASET_MODULENAME);
701 if (!cs)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800702 return -ENODEV;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800703 ucs = cs->hw.usb;
704
Tilman Schmidt784d5852006-04-10 22:55:04 -0700705 /* save off device structure ptrs for later use */
706 usb_get_dev(udev);
707 ucs->udev = udev;
708 ucs->interface = interface;
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700709 cs->dev = &interface->dev;
710
711 /* save address of controller structure */
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000712 usb_set_intfdata(interface, cs);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700713
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800714 endpoint = &hostif->endpoint[0].desc;
715
716 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
717 ucs->bulk_out_size = buffer_size;
718 ucs->bulk_out_endpointAddr = endpoint->bEndpointAddress;
719 ucs->bulk_out_buffer = kmalloc(buffer_size, GFP_KERNEL);
720 if (!ucs->bulk_out_buffer) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700721 dev_err(cs->dev, "Couldn't allocate bulk_out_buffer\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800722 retval = -ENOMEM;
723 goto error;
724 }
725
Christoph Lametere94b1762006-12-06 20:33:17 -0800726 ucs->bulk_out_urb = usb_alloc_urb(0, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800727 if (!ucs->bulk_out_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700728 dev_err(cs->dev, "Couldn't allocate bulk_out_urb\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800729 retval = -ENOMEM;
730 goto error;
731 }
732
733 endpoint = &hostif->endpoint[1].desc;
734
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800735 ucs->busy = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800736
Christoph Lametere94b1762006-12-06 20:33:17 -0800737 ucs->read_urb = usb_alloc_urb(0, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800738 if (!ucs->read_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700739 dev_err(cs->dev, "No free urbs available\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800740 retval = -ENOMEM;
741 goto error;
742 }
743 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
744 ucs->rcvbuf_size = buffer_size;
745 ucs->int_in_endpointAddr = endpoint->bEndpointAddress;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000746 ucs->rcvbuf = kmalloc(buffer_size, GFP_KERNEL);
747 if (!ucs->rcvbuf) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700748 dev_err(cs->dev, "Couldn't allocate rcvbuf\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800749 retval = -ENOMEM;
750 goto error;
751 }
752 /* Fill the interrupt urb and send it to the core */
753 usb_fill_int_urb(ucs->read_urb, udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700754 usb_rcvintpipe(udev,
755 endpoint->bEndpointAddress & 0x0f),
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000756 ucs->rcvbuf, buffer_size,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700757 gigaset_read_int_callback,
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000758 cs, endpoint->bInterval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800759
Christoph Lametere94b1762006-12-06 20:33:17 -0800760 retval = usb_submit_urb(ucs->read_urb, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800761 if (retval) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700762 dev_err(cs->dev, "Could not submit URB (error %d)\n", -retval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800763 goto error;
764 }
765
766 /* tell common part that the device is ready */
767 if (startmode == SM_LOCKED)
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800768 cs->mstate = MS_LOCKED;
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700769
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800770 if (!gigaset_start(cs)) {
771 tasklet_kill(&cs->write_tasklet);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000772 retval = -ENODEV;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800773 goto error;
774 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800775 return 0;
776
777error:
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100778 usb_kill_urb(ucs->read_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800779 kfree(ucs->bulk_out_buffer);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100780 usb_free_urb(ucs->bulk_out_urb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000781 kfree(ucs->rcvbuf);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100782 usb_free_urb(ucs->read_urb);
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700783 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800784 ucs->read_urb = ucs->bulk_out_urb = NULL;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000785 ucs->rcvbuf = ucs->bulk_out_buffer = NULL;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700786 usb_put_dev(ucs->udev);
787 ucs->udev = NULL;
788 ucs->interface = NULL;
Tilman Schmidte468c042008-02-06 01:38:29 -0800789 gigaset_freecs(cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800790 return retval;
791}
792
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800793static void gigaset_disconnect(struct usb_interface *interface)
794{
795 struct cardstate *cs;
796 struct usb_cardstate *ucs;
797
798 cs = usb_get_intfdata(interface);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800799 ucs = cs->hw.usb;
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800800
801 dev_info(cs->dev, "disconnecting Gigaset USB adapter\n");
802
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800803 usb_kill_urb(ucs->read_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800804
805 gigaset_stop(cs);
806
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700807 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800808 tasklet_kill(&cs->write_tasklet);
809
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800810 usb_kill_urb(ucs->bulk_out_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800811
812 kfree(ucs->bulk_out_buffer);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100813 usb_free_urb(ucs->bulk_out_urb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000814 kfree(ucs->rcvbuf);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100815 usb_free_urb(ucs->read_urb);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700816 ucs->read_urb = ucs->bulk_out_urb = NULL;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000817 ucs->rcvbuf = ucs->bulk_out_buffer = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800818
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700819 usb_put_dev(ucs->udev);
820 ucs->interface = NULL;
821 ucs->udev = NULL;
822 cs->dev = NULL;
Tilman Schmidte468c042008-02-06 01:38:29 -0800823 gigaset_freecs(cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800824}
825
Tilman Schmidt1ff0a522008-02-06 01:38:27 -0800826/* gigaset_suspend
827 * This function is called before the USB connection is suspended or reset.
828 */
829static int gigaset_suspend(struct usb_interface *intf, pm_message_t message)
830{
831 struct cardstate *cs = usb_get_intfdata(intf);
832
833 /* stop activity */
834 cs->connected = 0; /* prevent rescheduling */
835 usb_kill_urb(cs->hw.usb->read_urb);
836 tasklet_kill(&cs->write_tasklet);
837 usb_kill_urb(cs->hw.usb->bulk_out_urb);
838
839 gig_dbg(DEBUG_SUSPEND, "suspend complete");
840 return 0;
841}
842
843/* gigaset_resume
844 * This function is called after the USB connection has been resumed or reset.
845 */
846static int gigaset_resume(struct usb_interface *intf)
847{
848 struct cardstate *cs = usb_get_intfdata(intf);
849 int rc;
850
851 /* resubmit interrupt URB */
852 cs->connected = 1;
853 rc = usb_submit_urb(cs->hw.usb->read_urb, GFP_KERNEL);
854 if (rc) {
855 dev_err(cs->dev, "Could not submit read URB (error %d)\n", -rc);
856 return rc;
857 }
858
859 gig_dbg(DEBUG_SUSPEND, "resume complete");
860 return 0;
861}
862
863/* gigaset_pre_reset
864 * This function is called before the USB connection is reset.
865 */
866static int gigaset_pre_reset(struct usb_interface *intf)
867{
868 /* same as suspend */
869 return gigaset_suspend(intf, PMSG_ON);
870}
871
Tilman Schmidt35dc8452007-03-29 01:20:34 -0700872static const struct gigaset_ops ops = {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800873 gigaset_write_cmd,
874 gigaset_write_room,
875 gigaset_chars_in_buffer,
876 gigaset_brkchars,
877 gigaset_init_bchannel,
878 gigaset_close_bchannel,
879 gigaset_initbcshw,
880 gigaset_freebcshw,
881 gigaset_reinitbcshw,
882 gigaset_initcshw,
883 gigaset_freecshw,
884 gigaset_set_modem_ctrl,
885 gigaset_baud_rate,
886 gigaset_set_line_ctrl,
887 gigaset_m10x_send_skb,
888 gigaset_m10x_input,
889};
890
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000891/*
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800892 * This function is called while kernel-module is loaded
893 */
894static int __init usb_gigaset_init(void)
895{
896 int result;
897
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400898 /* allocate memory for our driver state and initialize it */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000899 driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
900 GIGASET_MODULENAME, GIGASET_DEVNAME,
901 &ops, THIS_MODULE);
902 if (driver == NULL)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800903 goto error;
904
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800905 /* register this driver with the USB subsystem */
906 result = usb_register(&gigaset_usb_driver);
907 if (result < 0) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800908 pr_err("error %d registering USB driver\n", -result);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800909 goto error;
910 }
911
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800912 pr_info(DRIVER_DESC "\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800913 return 0;
914
Tilman Schmidte468c042008-02-06 01:38:29 -0800915error:
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800916 if (driver)
917 gigaset_freedriver(driver);
918 driver = NULL;
919 return -1;
920}
921
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000922/*
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800923 * This function is called while unloading the kernel-module
924 */
925static void __exit usb_gigaset_exit(void)
926{
Tilman Schmidte468c042008-02-06 01:38:29 -0800927 int i;
928
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800929 gigaset_blockdriver(driver); /* => probe will fail
Tilman Schmidt784d5852006-04-10 22:55:04 -0700930 * => no gigaset_start any more
931 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800932
Tilman Schmidte468c042008-02-06 01:38:29 -0800933 /* stop all connected devices */
934 for (i = 0; i < driver->minors; i++)
935 gigaset_shutdown(driver->cs + i);
936
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800937 /* from now on, no isdn callback should be possible */
938
939 /* deregister this driver with the USB subsystem */
940 usb_deregister(&gigaset_usb_driver);
941 /* this will call the disconnect-callback */
942 /* from now on, no disconnect/probe callback should be running */
943
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800944 gigaset_freedriver(driver);
945 driver = NULL;
946}
947
948
949module_init(usb_gigaset_init);
950module_exit(usb_gigaset_exit);
951
952MODULE_AUTHOR(DRIVER_AUTHOR);
953MODULE_DESCRIPTION(DRIVER_DESC);
954
955MODULE_LICENSE("GPL");