blob: aee4880f972f48da5ce4c263637cbb17e7d34f59 [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;
Tilman Schmidt7b0c67e42014-10-03 17:03:32 +0200138 int bulk_out_epnum;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700139 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;
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 /*?*/);
Joe Perches475be4d2012-02-19 19:52:38 -0800187 /* 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);
Tilman Schmidtf99a6fd2014-12-10 13:41:55 +0100296static int send_cb(struct cardstate *cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800297
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 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800306
Tilman Schmidt784d5852006-04-10 22:55:04 -0700307 gig_dbg(DEBUG_OUTPUT, "modem_fill");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800308
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800309 if (cs->hw.usb->busy) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700310 gig_dbg(DEBUG_OUTPUT, "modem_fill: busy");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800311 return;
312 }
313
Tilman Schmidtf650dd22014-12-10 13:41:55 +0100314again:
315 if (!bcs->tx_skb) { /* no skb is being sent */
Tilman Schmidtf99a6fd2014-12-10 13:41:55 +0100316 if (cs->cmdbuf) { /* commands to send? */
Tilman Schmidtf650dd22014-12-10 13:41:55 +0100317 gig_dbg(DEBUG_OUTPUT, "modem_fill: cb");
Tilman Schmidtf99a6fd2014-12-10 13:41:55 +0100318 if (send_cb(cs) < 0) {
Tilman Schmidtf650dd22014-12-10 13:41:55 +0100319 gig_dbg(DEBUG_OUTPUT,
320 "modem_fill: send_cb failed");
321 goto again; /* no callback will be called! */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800322 }
Tilman Schmidtf650dd22014-12-10 13:41:55 +0100323 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800324 }
325
Tilman Schmidtf650dd22014-12-10 13:41:55 +0100326 /* 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 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800340}
341
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000342/*
343 * Interrupt Input URB completion routine
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800344 */
David Howells7d12e782006-10-05 14:55:46 +0100345static void gigaset_read_int_callback(struct urb *urb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800346{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000347 struct cardstate *cs = urb->context;
348 struct inbuf_t *inbuf = cs->inbuf;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800349 int status = urb->status;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800350 int r;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800351 unsigned numbytes;
352 unsigned char *src;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700353 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800354
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800355 if (!status) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800356 numbytes = urb->actual_length;
357
358 if (numbytes) {
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000359 src = cs->hw.usb->rcvbuf;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800360 if (unlikely(*src))
Tilman Schmidt784d5852006-04-10 22:55:04 -0700361 dev_warn(cs->dev,
Joe Perches475be4d2012-02-19 19:52:38 -0800362 "%s: There was no leading 0, but 0x%02x!\n",
Tilman Schmidt784d5852006-04-10 22:55:04 -0700363 __func__, (unsigned) *src);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800364 ++src; /* skip leading 0x00 */
365 --numbytes;
366 if (gigaset_fill_inbuf(inbuf, src, numbytes)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700367 gig_dbg(DEBUG_INTR, "%s-->BH", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800368 gigaset_schedule_event(inbuf->cs);
369 }
370 } else
Tilman Schmidt784d5852006-04-10 22:55:04 -0700371 gig_dbg(DEBUG_INTR, "Received zero block length");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800372 } else {
373 /* The urb might have been killed. */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800374 gig_dbg(DEBUG_ANY, "%s - nonzero status received: %d",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800375 __func__, status);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800376 if (status == -ENOENT || status == -ESHUTDOWN)
377 /* killed or endpoint shutdown: don't resubmit */
378 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800379 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700380
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800381 /* resubmit URB */
382 spin_lock_irqsave(&cs->lock, flags);
383 if (!cs->connected) {
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700384 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800385 pr_err("%s: disconnected\n", __func__);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800386 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800387 }
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800388 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);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800392}
393
394
Tilman Schmidt917f5082006-04-10 22:55:00 -0700395/* This callback routine is called when data was transmitted to the device. */
David Howells7d12e782006-10-05 14:55:46 +0100396static void gigaset_write_bulk_callback(struct urb *urb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800397{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700398 struct cardstate *cs = urb->context;
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800399 int status = urb->status;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700400 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800401
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800402 switch (status) {
403 case 0: /* normal completion */
404 break;
405 case -ENOENT: /* killed */
406 gig_dbg(DEBUG_ANY, "%s: killed", __func__);
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800407 cs->hw.usb->busy = 0;
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800408 return;
409 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700410 dev_err(cs->dev, "bulk transfer failed (status %d)\n",
Tilman Schmidtdbd98232008-02-06 01:38:23 -0800411 -status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700412 /* That's all we can do. Communication problems
Tilman Schmidt784d5852006-04-10 22:55:04 -0700413 are handled by timeouts or network protocols. */
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800414 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800415
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700416 spin_lock_irqsave(&cs->lock, flags);
417 if (!cs->connected) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800418 pr_err("%s: disconnected\n", __func__);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700419 } else {
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800420 cs->hw.usb->busy = 0;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700421 tasklet_schedule(&cs->write_tasklet);
422 }
423 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800424}
425
Tilman Schmidtf99a6fd2014-12-10 13:41:55 +0100426static int send_cb(struct cardstate *cs)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800427{
Tilman Schmidtf99a6fd2014-12-10 13:41:55 +0100428 struct cmdbuf_t *cb = cs->cmdbuf;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800429 unsigned long flags;
430 int count;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000431 int status = -ENOENT;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800432 struct usb_cardstate *ucs = cs->hw.usb;
433
434 do {
435 if (!cb->len) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800436 spin_lock_irqsave(&cs->cmdlock, flags);
437 cs->cmdbytes -= cs->curlen;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700438 gig_dbg(DEBUG_OUTPUT, "send_cb: sent %u bytes, %u left",
439 cs->curlen, cs->cmdbytes);
Tilman Schmidtf99a6fd2014-12-10 13:41:55 +0100440 cs->cmdbuf = cb->next;
441 if (cs->cmdbuf) {
442 cs->cmdbuf->prev = NULL;
443 cs->curlen = cs->cmdbuf->len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800444 } else {
445 cs->lastcmdbuf = NULL;
446 cs->curlen = 0;
447 }
448 spin_unlock_irqrestore(&cs->cmdlock, flags);
449
Tilman Schmidtf99a6fd2014-12-10 13:41:55 +0100450 if (cb->wake_tasklet)
451 tasklet_schedule(cb->wake_tasklet);
452 kfree(cb);
453
454 cb = cs->cmdbuf;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800455 }
Tilman Schmidtf99a6fd2014-12-10 13:41:55 +0100456
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800457 if (cb) {
458 count = min(cb->len, ucs->bulk_out_size);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700459 gig_dbg(DEBUG_OUTPUT, "send_cb: send %d bytes", count);
460
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800461 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700462 usb_sndbulkpipe(ucs->udev,
Tilman Schmidt7b0c67e42014-10-03 17:03:32 +0200463 ucs->bulk_out_epnum),
Tilman Schmidt784d5852006-04-10 22:55:04 -0700464 cb->buf + cb->offset, count,
465 gigaset_write_bulk_callback, cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800466
467 cb->offset += count;
468 cb->len -= count;
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800469 ucs->busy = 1;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800470
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700471 spin_lock_irqsave(&cs->lock, flags);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000472 status = cs->connected ?
473 usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC) :
474 -ENODEV;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700475 spin_unlock_irqrestore(&cs->lock, flags);
476
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800477 if (status) {
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800478 ucs->busy = 0;
Tilman Schmidt50027792008-07-23 21:28:27 -0700479 dev_err(cs->dev,
480 "could not submit urb (error %d)\n",
481 -status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700482 cb->len = 0; /* skip urb => remove cb+wakeup
483 in next loop cycle */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800484 }
485 }
Tilman Schmidt917f5082006-04-10 22:55:00 -0700486 } while (cb && status); /* next command on error */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800487
488 return status;
489}
490
Tilman Schmidt917f5082006-04-10 22:55:00 -0700491/* Send command to device. */
Tilman Schmidte3628dd2010-07-05 14:18:43 +0000492static int gigaset_write_cmd(struct cardstate *cs, struct cmdbuf_t *cb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800493{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800494 unsigned long flags;
Tilman Schmidt86f8ef22014-10-11 13:46:30 +0200495 int len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800496
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800497 gigaset_dbg_buffer(cs->mstate != MS_LOCKED ?
Joe Perches475be4d2012-02-19 19:52:38 -0800498 DEBUG_TRANSCMD : DEBUG_LOCKCMD,
Tilman Schmidte3628dd2010-07-05 14:18:43 +0000499 "CMD Transmit", cb->len, cb->buf);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800500
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;
Tilman Schmidte3628dd2010-07-05 14:18:43 +0000507 cs->curlen = cb->len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800508 }
Tilman Schmidte3628dd2010-07-05 14:18:43 +0000509 cs->cmdbytes += cb->len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800510 cs->lastcmdbuf = cb;
511 spin_unlock_irqrestore(&cs->cmdlock, flags);
512
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700513 spin_lock_irqsave(&cs->lock, flags);
Tilman Schmidt86f8ef22014-10-11 13:46:30 +0200514 len = cb->len;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700515 if (cs->connected)
516 tasklet_schedule(&cs->write_tasklet);
517 spin_unlock_irqrestore(&cs->lock, flags);
Tilman Schmidt86f8ef22014-10-11 13:46:30 +0200518 return len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800519}
520
521static int gigaset_write_room(struct cardstate *cs)
522{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800523 unsigned bytes;
524
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800525 bytes = cs->cmdbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800526 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
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000534/*
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 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800539static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6])
540{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700541 struct usb_device *udev = cs->hw.usb->udev;
542
Tilman Schmidt01371502006-04-10 22:55:11 -0700543 gigaset_dbg_buffer(DEBUG_USBREQ, "brkchars", 6, buf);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800544 memcpy(cs->hw.usb->bchars, buf, 6);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700545 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
546 0, 0, &buf, 6, 2000);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800547}
548
Tilman Schmidt81fa7b82012-04-25 13:02:20 +0000549static void gigaset_freebcshw(struct bc_state *bcs)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800550{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700551 /* unused */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800552}
553
554/* Initialize the b-channel structure */
555static int gigaset_initbcshw(struct bc_state *bcs)
556{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700557 /* unused */
558 bcs->hw.usb = NULL;
Tilman Schmidt81fa7b82012-04-25 13:02:20 +0000559 return 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800560}
561
562static void gigaset_reinitbcshw(struct bc_state *bcs)
563{
Tilman Schmidt21d36492007-05-08 20:27:03 -0700564 /* nothing to do for M10x */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800565}
566
567static void gigaset_freecshw(struct cardstate *cs)
568{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800569 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
Johan Hovold6ac38d52019-12-02 09:56:09 +0100577 cs->hw.usb = ucs = kzalloc(sizeof(struct usb_cardstate), GFP_KERNEL);
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800578 if (!ucs) {
579 pr_err("out of memory\n");
Tilman Schmidt81fa7b82012-04-25 13:02:20 +0000580 return -ENOMEM;
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800581 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800582
583 ucs->bchars[0] = 0;
584 ucs->bchars[1] = 0;
585 ucs->bchars[2] = 0;
586 ucs->bchars[3] = 0;
587 ucs->bchars[4] = 0x11;
588 ucs->bchars[5] = 0x13;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800589 tasklet_init(&cs->write_tasklet,
Joe Perches5452fee2009-11-19 09:55:53 +0000590 gigaset_modem_fill, (unsigned long) cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800591
Tilman Schmidt81fa7b82012-04-25 13:02:20 +0000592 return 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800593}
594
Tilman Schmidt917f5082006-04-10 22:55:00 -0700595/* Send data from current skb to the device. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800596static int write_modem(struct cardstate *cs)
597{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700598 int ret = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800599 int count;
600 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
601 struct usb_cardstate *ucs = cs->hw.usb;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700602 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800603
Tilman Schmidt1528b182010-02-22 13:09:52 +0000604 gig_dbg(DEBUG_OUTPUT, "len: %d...", bcs->tx_skb->len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800605
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800606 if (!bcs->tx_skb->len) {
607 dev_kfree_skb_any(bcs->tx_skb);
608 bcs->tx_skb = NULL;
609 return -EINVAL;
610 }
611
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000612 /* Copy data to bulk out buffer and transmit data */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800613 count = min(bcs->tx_skb->len, (unsigned) ucs->bulk_out_size);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300614 skb_copy_from_linear_data(bcs->tx_skb, ucs->bulk_out_buffer, count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800615 skb_pull(bcs->tx_skb, count);
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800616 ucs->busy = 1;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700617 gig_dbg(DEBUG_OUTPUT, "write_modem: send %d bytes", count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800618
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700619 spin_lock_irqsave(&cs->lock, flags);
620 if (cs->connected) {
621 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
622 usb_sndbulkpipe(ucs->udev,
Tilman Schmidt7b0c67e42014-10-03 17:03:32 +0200623 ucs->bulk_out_epnum),
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700624 ucs->bulk_out_buffer, count,
625 gigaset_write_bulk_callback, cs);
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800626 ret = usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC);
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700627 } else {
628 ret = -ENODEV;
629 }
630 spin_unlock_irqrestore(&cs->lock, flags);
631
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800632 if (ret) {
Tilman Schmidt50027792008-07-23 21:28:27 -0700633 dev_err(cs->dev, "could not submit urb (error %d)\n", -ret);
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800634 ucs->busy = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800635 }
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700636
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800637 if (!bcs->tx_skb->len) {
638 /* skb sent completely */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000639 gigaset_skb_sent(bcs, bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800640
Tilman Schmidt784d5852006-04-10 22:55:04 -0700641 gig_dbg(DEBUG_INTR, "kfree skb (Adr: %lx)!",
642 (unsigned long) bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800643 dev_kfree_skb_any(bcs->tx_skb);
644 bcs->tx_skb = NULL;
645 }
646
647 return ret;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800648}
649
650static int gigaset_probe(struct usb_interface *interface,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700651 const struct usb_device_id *id)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800652{
653 int retval;
654 struct usb_device *udev = interface_to_usbdev(interface);
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800655 struct usb_host_interface *hostif = interface->cur_altsetting;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800656 struct cardstate *cs = NULL;
657 struct usb_cardstate *ucs = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800658 struct usb_endpoint_descriptor *endpoint;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800659 int buffer_size;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800660
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800661 gig_dbg(DEBUG_ANY, "%s: Check if device matches ...", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800662
663 /* See if the device offered us matches what we can accept */
Alexey Dobriyanbfe2e932006-05-15 09:44:35 -0700664 if ((le16_to_cpu(udev->descriptor.idVendor) != USB_M105_VENDOR_ID) ||
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800665 (le16_to_cpu(udev->descriptor.idProduct) != USB_M105_PRODUCT_ID)) {
666 gig_dbg(DEBUG_ANY, "device ID (0x%x, 0x%x) not for me - skip",
667 le16_to_cpu(udev->descriptor.idVendor),
668 le16_to_cpu(udev->descriptor.idProduct));
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800669 return -ENODEV;
670 }
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800671 if (hostif->desc.bInterfaceNumber != 0) {
672 gig_dbg(DEBUG_ANY, "interface %d not for me - skip",
673 hostif->desc.bInterfaceNumber);
674 return -ENODEV;
675 }
676 if (hostif->desc.bAlternateSetting != 0) {
677 dev_notice(&udev->dev, "unsupported altsetting %d - skip",
678 hostif->desc.bAlternateSetting);
679 return -ENODEV;
680 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800681 if (hostif->desc.bInterfaceClass != 255) {
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800682 dev_notice(&udev->dev, "unsupported interface class %d - skip",
683 hostif->desc.bInterfaceClass);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800684 return -ENODEV;
685 }
686
Johan Hovold82acad82019-12-02 09:56:08 +0100687 if (hostif->desc.bNumEndpoints < 2) {
688 dev_err(&interface->dev, "missing endpoints\n");
689 return -ENODEV;
690 }
691
Tilman Schmidt784d5852006-04-10 22:55:04 -0700692 dev_info(&udev->dev, "%s: Device matched ... !\n", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800693
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400694 /* allocate memory for our device state and initialize it */
Tilman Schmidte468c042008-02-06 01:38:29 -0800695 cs = gigaset_initcs(driver, 1, 1, 0, cidmode, GIGASET_MODULENAME);
696 if (!cs)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800697 return -ENODEV;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800698 ucs = cs->hw.usb;
699
Tilman Schmidt784d5852006-04-10 22:55:04 -0700700 /* save off device structure ptrs for later use */
701 usb_get_dev(udev);
702 ucs->udev = udev;
703 ucs->interface = interface;
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700704 cs->dev = &interface->dev;
705
706 /* save address of controller structure */
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000707 usb_set_intfdata(interface, cs);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700708
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800709 endpoint = &hostif->endpoint[0].desc;
710
Johan Hovold70a7762b2019-12-02 09:56:10 +0100711 if (!usb_endpoint_is_bulk_out(endpoint)) {
712 dev_err(&interface->dev, "missing bulk-out endpoint\n");
713 retval = -ENODEV;
714 goto error;
715 }
716
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800717 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
718 ucs->bulk_out_size = buffer_size;
Tilman Schmidt7b0c67e42014-10-03 17:03:32 +0200719 ucs->bulk_out_epnum = usb_endpoint_num(endpoint);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800720 ucs->bulk_out_buffer = kmalloc(buffer_size, GFP_KERNEL);
721 if (!ucs->bulk_out_buffer) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700722 dev_err(cs->dev, "Couldn't allocate bulk_out_buffer\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800723 retval = -ENOMEM;
724 goto error;
725 }
726
Christoph Lametere94b1762006-12-06 20:33:17 -0800727 ucs->bulk_out_urb = usb_alloc_urb(0, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800728 if (!ucs->bulk_out_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700729 dev_err(cs->dev, "Couldn't allocate bulk_out_urb\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800730 retval = -ENOMEM;
731 goto error;
732 }
733
734 endpoint = &hostif->endpoint[1].desc;
735
Johan Hovold70a7762b2019-12-02 09:56:10 +0100736 if (!usb_endpoint_is_int_in(endpoint)) {
737 dev_err(&interface->dev, "missing int-in endpoint\n");
738 retval = -ENODEV;
739 goto error;
740 }
741
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800742 ucs->busy = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800743
Christoph Lametere94b1762006-12-06 20:33:17 -0800744 ucs->read_urb = usb_alloc_urb(0, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800745 if (!ucs->read_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700746 dev_err(cs->dev, "No free urbs available\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800747 retval = -ENOMEM;
748 goto error;
749 }
750 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
751 ucs->rcvbuf_size = buffer_size;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000752 ucs->rcvbuf = kmalloc(buffer_size, GFP_KERNEL);
753 if (!ucs->rcvbuf) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700754 dev_err(cs->dev, "Couldn't allocate rcvbuf\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800755 retval = -ENOMEM;
756 goto error;
757 }
758 /* Fill the interrupt urb and send it to the core */
759 usb_fill_int_urb(ucs->read_urb, udev,
Tilman Schmidt7b0c67e42014-10-03 17:03:32 +0200760 usb_rcvintpipe(udev, usb_endpoint_num(endpoint)),
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000761 ucs->rcvbuf, buffer_size,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700762 gigaset_read_int_callback,
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000763 cs, endpoint->bInterval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800764
Christoph Lametere94b1762006-12-06 20:33:17 -0800765 retval = usb_submit_urb(ucs->read_urb, GFP_KERNEL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800766 if (retval) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700767 dev_err(cs->dev, "Could not submit URB (error %d)\n", -retval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800768 goto error;
769 }
770
771 /* tell common part that the device is ready */
772 if (startmode == SM_LOCKED)
Tilman Schmidt9d4bee22008-02-06 01:38:28 -0800773 cs->mstate = MS_LOCKED;
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700774
Tilman Schmidt81fa7b82012-04-25 13:02:20 +0000775 retval = gigaset_start(cs);
776 if (retval < 0) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800777 tasklet_kill(&cs->write_tasklet);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800778 goto error;
779 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800780 return 0;
781
782error:
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100783 usb_kill_urb(ucs->read_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800784 kfree(ucs->bulk_out_buffer);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100785 usb_free_urb(ucs->bulk_out_urb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000786 kfree(ucs->rcvbuf);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100787 usb_free_urb(ucs->read_urb);
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700788 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800789 ucs->read_urb = ucs->bulk_out_urb = NULL;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000790 ucs->rcvbuf = ucs->bulk_out_buffer = NULL;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700791 usb_put_dev(ucs->udev);
792 ucs->udev = NULL;
793 ucs->interface = NULL;
Tilman Schmidte468c042008-02-06 01:38:29 -0800794 gigaset_freecs(cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800795 return retval;
796}
797
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800798static void gigaset_disconnect(struct usb_interface *interface)
799{
800 struct cardstate *cs;
801 struct usb_cardstate *ucs;
802
803 cs = usb_get_intfdata(interface);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800804 ucs = cs->hw.usb;
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800805
806 dev_info(cs->dev, "disconnecting Gigaset USB adapter\n");
807
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800808 usb_kill_urb(ucs->read_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800809
810 gigaset_stop(cs);
811
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700812 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800813 tasklet_kill(&cs->write_tasklet);
814
Tilman Schmidtc652cbd2008-02-06 01:38:24 -0800815 usb_kill_urb(ucs->bulk_out_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800816
817 kfree(ucs->bulk_out_buffer);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100818 usb_free_urb(ucs->bulk_out_urb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000819 kfree(ucs->rcvbuf);
Mariusz Kozlowskiead54fc2006-11-08 15:34:17 +0100820 usb_free_urb(ucs->read_urb);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700821 ucs->read_urb = ucs->bulk_out_urb = NULL;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000822 ucs->rcvbuf = ucs->bulk_out_buffer = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800823
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700824 usb_put_dev(ucs->udev);
825 ucs->interface = NULL;
826 ucs->udev = NULL;
827 cs->dev = NULL;
Tilman Schmidte468c042008-02-06 01:38:29 -0800828 gigaset_freecs(cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800829}
830
Tilman Schmidt1ff0a522008-02-06 01:38:27 -0800831/* gigaset_suspend
832 * This function is called before the USB connection is suspended or reset.
833 */
834static int gigaset_suspend(struct usb_interface *intf, pm_message_t message)
835{
836 struct cardstate *cs = usb_get_intfdata(intf);
837
838 /* stop activity */
839 cs->connected = 0; /* prevent rescheduling */
840 usb_kill_urb(cs->hw.usb->read_urb);
841 tasklet_kill(&cs->write_tasklet);
842 usb_kill_urb(cs->hw.usb->bulk_out_urb);
843
844 gig_dbg(DEBUG_SUSPEND, "suspend complete");
845 return 0;
846}
847
848/* gigaset_resume
849 * This function is called after the USB connection has been resumed or reset.
850 */
851static int gigaset_resume(struct usb_interface *intf)
852{
853 struct cardstate *cs = usb_get_intfdata(intf);
854 int rc;
855
856 /* resubmit interrupt URB */
857 cs->connected = 1;
858 rc = usb_submit_urb(cs->hw.usb->read_urb, GFP_KERNEL);
859 if (rc) {
860 dev_err(cs->dev, "Could not submit read URB (error %d)\n", -rc);
861 return rc;
862 }
863
864 gig_dbg(DEBUG_SUSPEND, "resume complete");
865 return 0;
866}
867
868/* gigaset_pre_reset
869 * This function is called before the USB connection is reset.
870 */
871static int gigaset_pre_reset(struct usb_interface *intf)
872{
873 /* same as suspend */
874 return gigaset_suspend(intf, PMSG_ON);
875}
876
Tilman Schmidt35dc8452007-03-29 01:20:34 -0700877static const struct gigaset_ops ops = {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800878 gigaset_write_cmd,
879 gigaset_write_room,
880 gigaset_chars_in_buffer,
881 gigaset_brkchars,
882 gigaset_init_bchannel,
883 gigaset_close_bchannel,
884 gigaset_initbcshw,
885 gigaset_freebcshw,
886 gigaset_reinitbcshw,
887 gigaset_initcshw,
888 gigaset_freecshw,
889 gigaset_set_modem_ctrl,
890 gigaset_baud_rate,
891 gigaset_set_line_ctrl,
892 gigaset_m10x_send_skb,
893 gigaset_m10x_input,
894};
895
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000896/*
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800897 * This function is called while kernel-module is loaded
898 */
899static int __init usb_gigaset_init(void)
900{
901 int result;
902
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400903 /* allocate memory for our driver state and initialize it */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000904 driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
905 GIGASET_MODULENAME, GIGASET_DEVNAME,
906 &ops, THIS_MODULE);
Tilman Schmidt81fa7b82012-04-25 13:02:20 +0000907 if (driver == NULL) {
908 result = -ENOMEM;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800909 goto error;
Tilman Schmidt81fa7b82012-04-25 13:02:20 +0000910 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800911
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800912 /* register this driver with the USB subsystem */
913 result = usb_register(&gigaset_usb_driver);
914 if (result < 0) {
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800915 pr_err("error %d registering USB driver\n", -result);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800916 goto error;
917 }
918
Tilman Schmidtc8770dc2008-12-26 01:21:29 -0800919 pr_info(DRIVER_DESC "\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800920 return 0;
921
Tilman Schmidte468c042008-02-06 01:38:29 -0800922error:
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800923 if (driver)
924 gigaset_freedriver(driver);
925 driver = NULL;
Tilman Schmidt81fa7b82012-04-25 13:02:20 +0000926 return result;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800927}
928
Tilman Schmidtb88bd952009-05-13 12:44:18 +0000929/*
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800930 * This function is called while unloading the kernel-module
931 */
932static void __exit usb_gigaset_exit(void)
933{
Tilman Schmidte468c042008-02-06 01:38:29 -0800934 int i;
935
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800936 gigaset_blockdriver(driver); /* => probe will fail
Tilman Schmidt784d5852006-04-10 22:55:04 -0700937 * => no gigaset_start any more
938 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800939
Tilman Schmidte468c042008-02-06 01:38:29 -0800940 /* stop all connected devices */
941 for (i = 0; i < driver->minors; i++)
942 gigaset_shutdown(driver->cs + i);
943
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800944 /* from now on, no isdn callback should be possible */
945
946 /* deregister this driver with the USB subsystem */
947 usb_deregister(&gigaset_usb_driver);
948 /* this will call the disconnect-callback */
949 /* from now on, no disconnect/probe callback should be running */
950
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800951 gigaset_freedriver(driver);
952 driver = NULL;
953}
954
955
956module_init(usb_gigaset_init);
957module_exit(usb_gigaset_exit);
958
959MODULE_AUTHOR(DRIVER_AUTHOR);
960MODULE_DESCRIPTION(DRIVER_DESC);
961
962MODULE_LICENSE("GPL");