blob: 6ae5df5f2b6adfb4a15c741a5cc78bc7d46d0dad [file] [log] [blame]
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -08001/*
2 * USB driver for Gigaset 307x directly or using M105 Data.
3 *
4 * Copyright (c) 2001 by Stefan Eilers <Eilers.Stefan@epost.de>
5 * and Hansjoerg Lipp <hjlipp@web.de>.
6 *
7 * This driver was derived from the USB skeleton driver by
8 * Greg Kroah-Hartman <greg@kroah.com>
9 *
10 * =====================================================================
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 * =====================================================================
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080016 */
17
18#include "gigaset.h"
19
20#include <linux/errno.h>
21#include <linux/init.h>
22#include <linux/slab.h>
23#include <linux/usb.h>
24#include <linux/module.h>
25#include <linux/moduleparam.h>
26
27/* Version Information */
28#define DRIVER_AUTHOR "Hansjoerg Lipp <hjlipp@web.de>, Stefan Eilers <Eilers.Stefan@epost.de>"
29#define DRIVER_DESC "USB Driver for Gigaset 307x using M105"
30
31/* Module parameters */
32
33static int startmode = SM_ISDN;
34static int cidmode = 1;
35
36module_param(startmode, int, S_IRUGO);
37module_param(cidmode, int, S_IRUGO);
38MODULE_PARM_DESC(startmode, "start in isdn4linux mode");
39MODULE_PARM_DESC(cidmode, "Call-ID mode");
40
41#define GIGASET_MINORS 1
42#define GIGASET_MINOR 8
43#define GIGASET_MODULENAME "usb_gigaset"
44#define GIGASET_DEVFSNAME "gig/usb/"
45#define GIGASET_DEVNAME "ttyGU"
46
47#define IF_WRITEBUF 2000 //FIXME // WAKEUP_CHARS: 256
48
49/* Values for the Gigaset M105 Data */
50#define USB_M105_VENDOR_ID 0x0681
51#define USB_M105_PRODUCT_ID 0x0009
52
53/* table of devices that work with this driver */
54static struct usb_device_id gigaset_table [] = {
55 { USB_DEVICE(USB_M105_VENDOR_ID, USB_M105_PRODUCT_ID) },
56 { } /* Terminating entry */
57};
58
59MODULE_DEVICE_TABLE(usb, gigaset_table);
60
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080061/*
62 * Control requests (empty fields: 00)
63 *
64 * RT|RQ|VALUE|INDEX|LEN |DATA
65 * In:
66 * C1 08 01
67 * Get flags (1 byte). Bits: 0=dtr,1=rts,3-7:?
68 * C1 0F ll ll
69 * Get device information/status (llll: 0x200 and 0x40 seen).
70 * Real size: I only saw MIN(llll,0x64).
71 * Contents: seems to be always the same...
72 * offset 0x00: Length of this structure (0x64) (len: 1,2,3 bytes)
73 * offset 0x3c: String (16 bit chars): "MCCI USB Serial V2.0"
74 * rest: ?
75 * Out:
76 * 41 11
77 * Initialize/reset device ?
78 * 41 00 xx 00
79 * ? (xx=00 or 01; 01 on start, 00 on close)
80 * 41 07 vv mm
81 * Set/clear flags vv=value, mm=mask (see RQ 08)
82 * 41 12 xx
83 * Used before the following configuration requests are issued
84 * (with xx=0x0f). I've seen other values<0xf, though.
85 * 41 01 xx xx
86 * Set baud rate. xxxx=ceil(0x384000/rate)=trunc(0x383fff/rate)+1.
87 * 41 03 ps bb
88 * Set byte size and parity. p: 0x20=even,0x10=odd,0x00=no parity
89 * [ 0x30: m, 0x40: s ]
90 * [s: 0: 1 stop bit; 1: 1.5; 2: 2]
91 * bb: bits/byte (seen 7 and 8)
92 * 41 13 -- -- -- -- 10 00 ww 00 00 00 xx 00 00 00 yy 00 00 00 zz 00 00 00
93 * ??
94 * Initialization: 01, 40, 00, 00
95 * Open device: 00 40, 00, 00
96 * yy and zz seem to be equal, either 0x00 or 0x0a
97 * (ww,xx) pairs seen: (00,00), (00,40), (01,40), (09,80), (19,80)
98 * 41 19 -- -- -- -- 06 00 00 00 00 xx 11 13
99 * Used after every "configuration sequence" (RQ 12, RQs 01/03/13).
100 * xx is usually 0x00 but was 0x7e before starting data transfer
101 * in unimodem mode. So, this might be an array of characters that need
102 * special treatment ("commit all bufferd data"?), 11=^Q, 13=^S.
103 *
104 * Unimodem mode: use "modprobe ppp_async flag_time=0" as the device _needs_ two
105 * flags per packet.
106 */
107
108static int gigaset_probe(struct usb_interface *interface,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700109 const struct usb_device_id *id);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800110static void gigaset_disconnect(struct usb_interface *interface);
111
112static struct gigaset_driver *driver = NULL;
113static struct cardstate *cardstate = NULL;
114
115/* usb specific object needed to register this driver with the usb subsystem */
116static struct usb_driver gigaset_usb_driver = {
Tilman Schmidt917f5082006-04-10 22:55:00 -0700117 .name = GIGASET_MODULENAME,
118 .probe = gigaset_probe,
119 .disconnect = gigaset_disconnect,
120 .id_table = gigaset_table,
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800121};
122
123struct usb_cardstate {
Tilman Schmidt917f5082006-04-10 22:55:00 -0700124 struct usb_device *udev; /* usb device pointer */
125 struct usb_interface *interface; /* interface for this device */
126 atomic_t busy; /* bulk output in progress */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800127
Tilman Schmidt917f5082006-04-10 22:55:00 -0700128 /* Output buffer */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700129 unsigned char *bulk_out_buffer;
130 int bulk_out_size;
131 __u8 bulk_out_endpointAddr;
132 struct urb *bulk_out_urb;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800133
Tilman Schmidt917f5082006-04-10 22:55:00 -0700134 /* Input buffer */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700135 int rcvbuf_size;
136 struct urb *read_urb;
137 __u8 int_in_endpointAddr;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800138
Tilman Schmidt784d5852006-04-10 22:55:04 -0700139 char bchars[6]; /* for request 0x19 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800140};
141
142struct usb_bc_state {};
143
144static inline unsigned tiocm_to_gigaset(unsigned state)
145{
146 return ((state & TIOCM_DTR) ? 1 : 0) | ((state & TIOCM_RTS) ? 2 : 0);
147}
148
149#ifdef CONFIG_GIGASET_UNDOCREQ
150/* WARNING: EXPERIMENTAL! */
151static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700152 unsigned new_state)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800153{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700154 struct usb_device *udev = cs->hw.usb->udev;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800155 unsigned mask, val;
156 int r;
157
158 mask = tiocm_to_gigaset(old_state ^ new_state);
159 val = tiocm_to_gigaset(new_state);
160
Tilman Schmidt784d5852006-04-10 22:55:04 -0700161 gig_dbg(DEBUG_USBREQ, "set flags 0x%02x with mask 0x%02x", val, mask);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700162 // don't use this in an interrupt/BH
Tilman Schmidt784d5852006-04-10 22:55:04 -0700163 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 7, 0x41,
164 (val & 0xff) | ((mask & 0xff) << 8), 0,
165 NULL, 0, 2000 /* timeout? */);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800166 if (r < 0)
167 return r;
168 //..
169 return 0;
170}
171
172static int set_value(struct cardstate *cs, u8 req, u16 val)
173{
Tilman Schmidt784d5852006-04-10 22:55:04 -0700174 struct usb_device *udev = cs->hw.usb->udev;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800175 int r, r2;
176
Tilman Schmidt784d5852006-04-10 22:55:04 -0700177 gig_dbg(DEBUG_USBREQ, "request %02x (%04x)",
178 (unsigned)req, (unsigned)val);
179 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x12, 0x41,
180 0xf /*?*/, 0, NULL, 0, 2000 /*?*/);
181 /* no idea what this does */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800182 if (r < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700183 dev_err(&udev->dev, "error %d on request 0x12\n", -r);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800184 return r;
185 }
186
Tilman Schmidt784d5852006-04-10 22:55:04 -0700187 r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), req, 0x41,
188 val, 0, NULL, 0, 2000 /*?*/);
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 0x%02x\n",
191 -r, (unsigned)req);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800192
Tilman Schmidt784d5852006-04-10 22:55:04 -0700193 r2 = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x19, 0x41,
194 0, 0, cs->hw.usb->bchars, 6, 2000 /*?*/);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800195 if (r2 < 0)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700196 dev_err(&udev->dev, "error %d on request 0x19\n", -r2);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800197
198 return r < 0 ? r : (r2 < 0 ? r2 : 0);
199}
200
201/* WARNING: HIGHLY EXPERIMENTAL! */
202// don't use this in an interrupt/BH
203static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
204{
205 u16 val;
206 u32 rate;
207
208 cflag &= CBAUD;
209
210 switch (cflag) {
211 //FIXME more values?
212 case B300: rate = 300; break;
213 case B600: rate = 600; break;
214 case B1200: rate = 1200; break;
215 case B2400: rate = 2400; break;
216 case B4800: rate = 4800; break;
217 case B9600: rate = 9600; break;
218 case B19200: rate = 19200; break;
219 case B38400: rate = 38400; break;
220 case B57600: rate = 57600; break;
221 case B115200: rate = 115200; break;
222 default:
223 rate = 9600;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700224 dev_err(cs->dev, "unsupported baudrate request 0x%x,"
225 " using default of B9600\n", cflag);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800226 }
227
228 val = 0x383fff / rate + 1;
229
230 return set_value(cs, 1, val);
231}
232
233/* WARNING: HIGHLY EXPERIMENTAL! */
234// don't use this in an interrupt/BH
235static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag)
236{
237 u16 val = 0;
238
239 /* set the parity */
240 if (cflag & PARENB)
241 val |= (cflag & PARODD) ? 0x10 : 0x20;
242
243 /* set the number of data bits */
244 switch (cflag & CSIZE) {
245 case CS5:
246 val |= 5 << 8; break;
247 case CS6:
248 val |= 6 << 8; break;
249 case CS7:
250 val |= 7 << 8; break;
251 case CS8:
252 val |= 8 << 8; break;
253 default:
Tilman Schmidt784d5852006-04-10 22:55:04 -0700254 dev_err(cs->dev, "CSIZE was not CS5-CS8, using default of 8\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800255 val |= 8 << 8;
256 break;
257 }
258
259 /* set the number of stop bits */
260 if (cflag & CSTOPB) {
261 if ((cflag & CSIZE) == CS5)
262 val |= 1; /* 1.5 stop bits */ //FIXME is this okay?
263 else
264 val |= 2; /* 2 stop bits */
265 }
266
267 return set_value(cs, 3, val);
268}
269
270#else
271static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700272 unsigned new_state)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800273{
274 return -EINVAL;
275}
276
277static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag)
278{
279 return -EINVAL;
280}
281
282static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag)
283{
284 return -EINVAL;
285}
286#endif
287
288
289 /*================================================================================================================*/
290static int gigaset_init_bchannel(struct bc_state *bcs)
291{
292 /* nothing to do for M10x */
293 gigaset_bchannel_up(bcs);
294 return 0;
295}
296
297static int gigaset_close_bchannel(struct bc_state *bcs)
298{
299 /* nothing to do for M10x */
300 gigaset_bchannel_down(bcs);
301 return 0;
302}
303
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800304static int write_modem(struct cardstate *cs);
305static int send_cb(struct cardstate *cs, struct cmdbuf_t *cb);
306
307
Tilman Schmidt917f5082006-04-10 22:55:00 -0700308/* Write tasklet handler: Continue sending current skb, or send command, or
309 * start sending an skb from the send queue.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800310 */
311static void gigaset_modem_fill(unsigned long data)
312{
313 struct cardstate *cs = (struct cardstate *) data;
314 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
315 struct cmdbuf_t *cb;
316 unsigned long flags;
317 int again;
318
Tilman Schmidt784d5852006-04-10 22:55:04 -0700319 gig_dbg(DEBUG_OUTPUT, "modem_fill");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800320
321 if (atomic_read(&cs->hw.usb->busy)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700322 gig_dbg(DEBUG_OUTPUT, "modem_fill: busy");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800323 return;
324 }
325
326 do {
327 again = 0;
328 if (!bcs->tx_skb) { /* no skb is being sent */
329 spin_lock_irqsave(&cs->cmdlock, flags);
330 cb = cs->cmdbuf;
331 spin_unlock_irqrestore(&cs->cmdlock, flags);
332 if (cb) { /* commands to send? */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700333 gig_dbg(DEBUG_OUTPUT, "modem_fill: cb");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800334 if (send_cb(cs, cb) < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700335 gig_dbg(DEBUG_OUTPUT,
336 "modem_fill: send_cb failed");
Tilman Schmidt917f5082006-04-10 22:55:00 -0700337 again = 1; /* no callback will be
338 called! */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800339 }
340 } else { /* skbs to send? */
341 bcs->tx_skb = skb_dequeue(&bcs->squeue);
342 if (bcs->tx_skb)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700343 gig_dbg(DEBUG_INTR,
344 "Dequeued skb (Adr: %lx)!",
345 (unsigned long) bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800346 }
347 }
348
349 if (bcs->tx_skb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700350 gig_dbg(DEBUG_OUTPUT, "modem_fill: tx_skb");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800351 if (write_modem(cs) < 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700352 gig_dbg(DEBUG_OUTPUT,
353 "modem_fill: write_modem failed");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800354 // FIXME should we tell the LL?
355 again = 1; /* no callback will be called! */
356 }
357 }
358 } while (again);
359}
360
361/**
362 * gigaset_read_int_callback
363 *
Tilman Schmidt784d5852006-04-10 22:55:04 -0700364 * It is called if the data was received from the device.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800365 */
366static void gigaset_read_int_callback(struct urb *urb, struct pt_regs *regs)
367{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700368 struct inbuf_t *inbuf = urb->context;
369 struct cardstate *cs = inbuf->cs;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800370 int resubmit = 0;
371 int r;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800372 unsigned numbytes;
373 unsigned char *src;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800374
375 if (!atomic_read(&cs->connected)) {
376 err("%s: disconnected", __func__);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700377 return;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800378 }
379
380 if (!urb->status) {
381 numbytes = urb->actual_length;
382
383 if (numbytes) {
384 src = inbuf->rcvbuf;
385 if (unlikely(*src))
Tilman Schmidt784d5852006-04-10 22:55:04 -0700386 dev_warn(cs->dev,
387 "%s: There was no leading 0, but 0x%02x!\n",
388 __func__, (unsigned) *src);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800389 ++src; /* skip leading 0x00 */
390 --numbytes;
391 if (gigaset_fill_inbuf(inbuf, src, numbytes)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700392 gig_dbg(DEBUG_INTR, "%s-->BH", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800393 gigaset_schedule_event(inbuf->cs);
394 }
395 } else
Tilman Schmidt784d5852006-04-10 22:55:04 -0700396 gig_dbg(DEBUG_INTR, "Received zero block length");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800397 resubmit = 1;
398 } else {
399 /* The urb might have been killed. */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700400 gig_dbg(DEBUG_ANY, "%s - nonzero read bulk status received: %d",
401 __func__, urb->status);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800402 if (urb->status != -ENOENT) /* not killed */
403 resubmit = 1;
404 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700405
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800406 if (resubmit) {
407 r = usb_submit_urb(urb, SLAB_ATOMIC);
408 if (r)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700409 dev_err(cs->dev, "error %d when resubmitting urb.\n",
410 -r);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800411 }
412}
413
414
Tilman Schmidt917f5082006-04-10 22:55:00 -0700415/* This callback routine is called when data was transmitted to the device. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800416static void gigaset_write_bulk_callback(struct urb *urb, struct pt_regs *regs)
417{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700418 struct cardstate *cs = urb->context;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800419
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800420#ifdef CONFIG_GIGASET_DEBUG
421 if (!atomic_read(&cs->connected)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700422 err("%s: not connected", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800423 return;
424 }
425#endif
426 if (urb->status)
Tilman Schmidt784d5852006-04-10 22:55:04 -0700427 dev_err(cs->dev, "bulk transfer failed (status %d)\n",
428 -urb->status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700429 /* That's all we can do. Communication problems
Tilman Schmidt784d5852006-04-10 22:55:04 -0700430 are handled by timeouts or network protocols. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800431
432 atomic_set(&cs->hw.usb->busy, 0);
433 tasklet_schedule(&cs->write_tasklet);
434}
435
436static int send_cb(struct cardstate *cs, struct cmdbuf_t *cb)
437{
438 struct cmdbuf_t *tcb;
439 unsigned long flags;
440 int count;
441 int status = -ENOENT; // FIXME
442 struct usb_cardstate *ucs = cs->hw.usb;
443
444 do {
445 if (!cb->len) {
446 tcb = cb;
447
448 spin_lock_irqsave(&cs->cmdlock, flags);
449 cs->cmdbytes -= cs->curlen;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700450 gig_dbg(DEBUG_OUTPUT, "send_cb: sent %u bytes, %u left",
451 cs->curlen, cs->cmdbytes);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800452 cs->cmdbuf = cb = cb->next;
453 if (cb) {
454 cb->prev = NULL;
455 cs->curlen = cb->len;
456 } else {
457 cs->lastcmdbuf = NULL;
458 cs->curlen = 0;
459 }
460 spin_unlock_irqrestore(&cs->cmdlock, flags);
461
462 if (tcb->wake_tasklet)
463 tasklet_schedule(tcb->wake_tasklet);
464 kfree(tcb);
465 }
466 if (cb) {
467 count = min(cb->len, ucs->bulk_out_size);
468 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700469 usb_sndbulkpipe(ucs->udev,
470 ucs->bulk_out_endpointAddr & 0x0f),
471 cb->buf + cb->offset, count,
472 gigaset_write_bulk_callback, cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800473
474 cb->offset += count;
475 cb->len -= count;
476 atomic_set(&ucs->busy, 1);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700477 gig_dbg(DEBUG_OUTPUT, "send_cb: send %d bytes", count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800478
479 status = usb_submit_urb(ucs->bulk_out_urb, SLAB_ATOMIC);
480 if (status) {
481 atomic_set(&ucs->busy, 0);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700482 dev_err(cs->dev,
483 "could not submit urb (error %d)\n",
484 -status);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700485 cb->len = 0; /* skip urb => remove cb+wakeup
486 in next loop cycle */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800487 }
488 }
Tilman Schmidt917f5082006-04-10 22:55:00 -0700489 } while (cb && status); /* next command on error */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800490
491 return status;
492}
493
Tilman Schmidt917f5082006-04-10 22:55:00 -0700494/* Send command to device. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800495static int gigaset_write_cmd(struct cardstate *cs, const unsigned char *buf,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700496 int len, struct tasklet_struct *wake_tasklet)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800497{
498 struct cmdbuf_t *cb;
499 unsigned long flags;
500
501 gigaset_dbg_buffer(atomic_read(&cs->mstate) != MS_LOCKED ?
Tilman Schmidt784d5852006-04-10 22:55:04 -0700502 DEBUG_TRANSCMD : DEBUG_LOCKCMD,
Tilman Schmidt01371502006-04-10 22:55:11 -0700503 "CMD Transmit", len, buf);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800504
505 if (!atomic_read(&cs->connected)) {
506 err("%s: not connected", __func__);
507 return -ENODEV;
508 }
509
510 if (len <= 0)
511 return 0;
512
513 if (!(cb = kmalloc(sizeof(struct cmdbuf_t) + len, GFP_ATOMIC))) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700514 dev_err(cs->dev, "%s: out of memory\n", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800515 return -ENOMEM;
516 }
517
518 memcpy(cb->buf, buf, len);
519 cb->len = len;
520 cb->offset = 0;
521 cb->next = NULL;
522 cb->wake_tasklet = wake_tasklet;
523
524 spin_lock_irqsave(&cs->cmdlock, flags);
525 cb->prev = cs->lastcmdbuf;
526 if (cs->lastcmdbuf)
527 cs->lastcmdbuf->next = cb;
528 else {
529 cs->cmdbuf = cb;
530 cs->curlen = len;
531 }
532 cs->cmdbytes += len;
533 cs->lastcmdbuf = cb;
534 spin_unlock_irqrestore(&cs->cmdlock, flags);
535
536 tasklet_schedule(&cs->write_tasklet);
537 return len;
538}
539
540static int gigaset_write_room(struct cardstate *cs)
541{
542 unsigned long flags;
543 unsigned bytes;
544
545 spin_lock_irqsave(&cs->cmdlock, flags);
546 bytes = cs->cmdbytes;
547 spin_unlock_irqrestore(&cs->cmdlock, flags);
548
549 return bytes < IF_WRITEBUF ? IF_WRITEBUF - bytes : 0;
550}
551
552static int gigaset_chars_in_buffer(struct cardstate *cs)
553{
554 return cs->cmdbytes;
555}
556
557static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6])
558{
559#ifdef CONFIG_GIGASET_UNDOCREQ
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#else
567 return -EINVAL;
568#endif
569}
570
571static int gigaset_freebcshw(struct bc_state *bcs)
572{
573 if (!bcs->hw.usb)
574 return 0;
575 //FIXME
576 kfree(bcs->hw.usb);
577 return 1;
578}
579
580/* Initialize the b-channel structure */
581static int gigaset_initbcshw(struct bc_state *bcs)
582{
583 bcs->hw.usb = kmalloc(sizeof(struct usb_bc_state), GFP_KERNEL);
584 if (!bcs->hw.usb)
585 return 0;
586
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800587 return 1;
588}
589
590static void gigaset_reinitbcshw(struct bc_state *bcs)
591{
592}
593
594static void gigaset_freecshw(struct cardstate *cs)
595{
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800596 tasklet_kill(&cs->write_tasklet);
597 kfree(cs->hw.usb);
598}
599
600static int gigaset_initcshw(struct cardstate *cs)
601{
602 struct usb_cardstate *ucs;
603
604 cs->hw.usb = ucs =
605 kmalloc(sizeof(struct usb_cardstate), GFP_KERNEL);
606 if (!ucs)
607 return 0;
608
609 ucs->bchars[0] = 0;
610 ucs->bchars[1] = 0;
611 ucs->bchars[2] = 0;
612 ucs->bchars[3] = 0;
613 ucs->bchars[4] = 0x11;
614 ucs->bchars[5] = 0x13;
615 ucs->bulk_out_buffer = NULL;
616 ucs->bulk_out_urb = NULL;
617 //ucs->urb_cmd_out = NULL;
618 ucs->read_urb = NULL;
619 tasklet_init(&cs->write_tasklet,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700620 &gigaset_modem_fill, (unsigned long) cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800621
622 return 1;
623}
624
Tilman Schmidt917f5082006-04-10 22:55:00 -0700625/* Send data from current skb to the device. */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800626static int write_modem(struct cardstate *cs)
627{
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700628 int ret = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800629 int count;
630 struct bc_state *bcs = &cs->bcs[0]; /* only one channel */
631 struct usb_cardstate *ucs = cs->hw.usb;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800632
Tilman Schmidt784d5852006-04-10 22:55:04 -0700633 gig_dbg(DEBUG_WRITE, "len: %d...", bcs->tx_skb->len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800634
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800635 if (!bcs->tx_skb->len) {
636 dev_kfree_skb_any(bcs->tx_skb);
637 bcs->tx_skb = NULL;
638 return -EINVAL;
639 }
640
641 /* Copy data to bulk out buffer and // FIXME copying not necessary
642 * transmit data
643 */
644 count = min(bcs->tx_skb->len, (unsigned) ucs->bulk_out_size);
645 memcpy(ucs->bulk_out_buffer, bcs->tx_skb->data, count);
646 skb_pull(bcs->tx_skb, count);
647
648 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700649 usb_sndbulkpipe(ucs->udev,
650 ucs->bulk_out_endpointAddr & 0x0f),
651 ucs->bulk_out_buffer, count,
652 gigaset_write_bulk_callback, cs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800653 atomic_set(&ucs->busy, 1);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700654 gig_dbg(DEBUG_OUTPUT, "write_modem: send %d bytes", count);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800655
656 ret = usb_submit_urb(ucs->bulk_out_urb, SLAB_ATOMIC);
657 if (ret) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700658 dev_err(cs->dev, "could not submit urb (error %d)\n", -ret);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800659 atomic_set(&ucs->busy, 0);
660 }
661 if (!bcs->tx_skb->len) {
662 /* skb sent completely */
663 gigaset_skb_sent(bcs, bcs->tx_skb); //FIXME also, when ret<0?
664
Tilman Schmidt784d5852006-04-10 22:55:04 -0700665 gig_dbg(DEBUG_INTR, "kfree skb (Adr: %lx)!",
666 (unsigned long) bcs->tx_skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800667 dev_kfree_skb_any(bcs->tx_skb);
668 bcs->tx_skb = NULL;
669 }
670
671 return ret;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800672}
673
674static int gigaset_probe(struct usb_interface *interface,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700675 const struct usb_device_id *id)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800676{
677 int retval;
678 struct usb_device *udev = interface_to_usbdev(interface);
679 unsigned int ifnum;
680 struct usb_host_interface *hostif;
681 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;
685 int alt;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800686
Tilman Schmidt784d5852006-04-10 22:55:04 -0700687 gig_dbg(DEBUG_ANY,
688 "%s: Check if device matches .. (Vendor: 0x%x, Product: 0x%x)",
689 __func__, le16_to_cpu(udev->descriptor.idVendor),
690 le16_to_cpu(udev->descriptor.idProduct));
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800691
692 retval = -ENODEV; //FIXME
693
694 /* See if the device offered us matches what we can accept */
695 if ((le16_to_cpu(udev->descriptor.idVendor != USB_M105_VENDOR_ID)) ||
696 (le16_to_cpu(udev->descriptor.idProduct != USB_M105_PRODUCT_ID)))
697 return -ENODEV;
698
699 /* this starts to become ascii art... */
700 hostif = interface->cur_altsetting;
701 alt = hostif->desc.bAlternateSetting;
702 ifnum = hostif->desc.bInterfaceNumber; // FIXME ?
703
704 if (alt != 0 || ifnum != 0) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700705 dev_warn(&udev->dev, "ifnum %d, alt %d\n", ifnum, alt);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800706 return -ENODEV;
707 }
708
709 /* Reject application specific intefaces
710 *
711 */
712 if (hostif->desc.bInterfaceClass != 255) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700713 dev_info(&udev->dev,
714 "%s: Device matched but iface_desc[%d]->bInterfaceClass==%d!\n",
715 __func__, ifnum, hostif->desc.bInterfaceClass);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800716 return -ENODEV;
717 }
718
Tilman Schmidt784d5852006-04-10 22:55:04 -0700719 dev_info(&udev->dev, "%s: Device matched ... !\n", __func__);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800720
721 cs = gigaset_getunassignedcs(driver);
722 if (!cs) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700723 dev_warn(&udev->dev, "no free cardstate\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800724 return -ENODEV;
725 }
726 ucs = cs->hw.usb;
727
Tilman Schmidt784d5852006-04-10 22:55:04 -0700728 /* save off device structure ptrs for later use */
729 usb_get_dev(udev);
730 ucs->udev = udev;
731 ucs->interface = interface;
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700732 cs->dev = &interface->dev;
733
734 /* save address of controller structure */
735 usb_set_intfdata(interface, cs); // dev_set_drvdata(&interface->dev, cs);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700736
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800737 endpoint = &hostif->endpoint[0].desc;
738
739 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
740 ucs->bulk_out_size = buffer_size;
741 ucs->bulk_out_endpointAddr = endpoint->bEndpointAddress;
742 ucs->bulk_out_buffer = kmalloc(buffer_size, GFP_KERNEL);
743 if (!ucs->bulk_out_buffer) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700744 dev_err(cs->dev, "Couldn't allocate bulk_out_buffer\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800745 retval = -ENOMEM;
746 goto error;
747 }
748
749 ucs->bulk_out_urb = usb_alloc_urb(0, SLAB_KERNEL);
750 if (!ucs->bulk_out_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700751 dev_err(cs->dev, "Couldn't allocate bulk_out_urb\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800752 retval = -ENOMEM;
753 goto error;
754 }
755
756 endpoint = &hostif->endpoint[1].desc;
757
758 atomic_set(&ucs->busy, 0);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800759
760 ucs->read_urb = usb_alloc_urb(0, SLAB_KERNEL);
761 if (!ucs->read_urb) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700762 dev_err(cs->dev, "No free urbs available\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800763 retval = -ENOMEM;
764 goto error;
765 }
766 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
767 ucs->rcvbuf_size = buffer_size;
768 ucs->int_in_endpointAddr = endpoint->bEndpointAddress;
769 cs->inbuf[0].rcvbuf = kmalloc(buffer_size, GFP_KERNEL);
770 if (!cs->inbuf[0].rcvbuf) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700771 dev_err(cs->dev, "Couldn't allocate rcvbuf\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800772 retval = -ENOMEM;
773 goto error;
774 }
775 /* Fill the interrupt urb and send it to the core */
776 usb_fill_int_urb(ucs->read_urb, udev,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700777 usb_rcvintpipe(udev,
778 endpoint->bEndpointAddress & 0x0f),
779 cs->inbuf[0].rcvbuf, buffer_size,
780 gigaset_read_int_callback,
781 cs->inbuf + 0, endpoint->bInterval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800782
783 retval = usb_submit_urb(ucs->read_urb, SLAB_KERNEL);
784 if (retval) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700785 dev_err(cs->dev, "Could not submit URB (error %d)\n", -retval);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800786 goto error;
787 }
788
789 /* tell common part that the device is ready */
790 if (startmode == SM_LOCKED)
791 atomic_set(&cs->mstate, MS_LOCKED);
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700792
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800793 if (!gigaset_start(cs)) {
794 tasklet_kill(&cs->write_tasklet);
795 retval = -ENODEV; //FIXME
796 goto error;
797 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800798 return 0;
799
800error:
801 if (ucs->read_urb)
802 usb_kill_urb(ucs->read_urb);
803 kfree(ucs->bulk_out_buffer);
804 if (ucs->bulk_out_urb != NULL)
805 usb_free_urb(ucs->bulk_out_urb);
806 kfree(cs->inbuf[0].rcvbuf);
807 if (ucs->read_urb != NULL)
808 usb_free_urb(ucs->read_urb);
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700809 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800810 ucs->read_urb = ucs->bulk_out_urb = NULL;
811 cs->inbuf[0].rcvbuf = ucs->bulk_out_buffer = NULL;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700812 usb_put_dev(ucs->udev);
813 ucs->udev = NULL;
814 ucs->interface = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800815 gigaset_unassign(cs);
816 return retval;
817}
818
819/**
820 * skel_disconnect
821 */
822static void gigaset_disconnect(struct usb_interface *interface)
823{
824 struct cardstate *cs;
825 struct usb_cardstate *ucs;
826
827 cs = usb_get_intfdata(interface);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800828 ucs = cs->hw.usb;
829 usb_kill_urb(ucs->read_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800830
831 gigaset_stop(cs);
832
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700833 usb_set_intfdata(interface, NULL);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800834 tasklet_kill(&cs->write_tasklet);
835
Tilman Schmidt784d5852006-04-10 22:55:04 -0700836 usb_kill_urb(ucs->bulk_out_urb); /* FIXME: only if active? */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800837
838 kfree(ucs->bulk_out_buffer);
839 if (ucs->bulk_out_urb != NULL)
840 usb_free_urb(ucs->bulk_out_urb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800841 kfree(cs->inbuf[0].rcvbuf);
842 if (ucs->read_urb != NULL)
843 usb_free_urb(ucs->read_urb);
Tilman Schmidt917f5082006-04-10 22:55:00 -0700844 ucs->read_urb = ucs->bulk_out_urb = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800845 cs->inbuf[0].rcvbuf = ucs->bulk_out_buffer = NULL;
846
Tilman Schmidtb1d47462006-04-10 22:55:07 -0700847 usb_put_dev(ucs->udev);
848 ucs->interface = NULL;
849 ucs->udev = NULL;
850 cs->dev = NULL;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800851 gigaset_unassign(cs);
852}
853
854static struct gigaset_ops ops = {
855 gigaset_write_cmd,
856 gigaset_write_room,
857 gigaset_chars_in_buffer,
858 gigaset_brkchars,
859 gigaset_init_bchannel,
860 gigaset_close_bchannel,
861 gigaset_initbcshw,
862 gigaset_freebcshw,
863 gigaset_reinitbcshw,
864 gigaset_initcshw,
865 gigaset_freecshw,
866 gigaset_set_modem_ctrl,
867 gigaset_baud_rate,
868 gigaset_set_line_ctrl,
869 gigaset_m10x_send_skb,
870 gigaset_m10x_input,
871};
872
873/**
874 * usb_gigaset_init
875 * This function is called while kernel-module is loaded
876 */
877static int __init usb_gigaset_init(void)
878{
879 int result;
880
881 /* allocate memory for our driver state and intialize it */
882 if ((driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
Tilman Schmidt784d5852006-04-10 22:55:04 -0700883 GIGASET_MODULENAME, GIGASET_DEVNAME,
884 GIGASET_DEVFSNAME, &ops,
885 THIS_MODULE)) == NULL)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800886 goto error;
887
888 /* allocate memory for our device state and intialize it */
889 cardstate = gigaset_initcs(driver, 1, 1, 0, cidmode, GIGASET_MODULENAME);
890 if (!cardstate)
891 goto error;
892
893 /* register this driver with the USB subsystem */
894 result = usb_register(&gigaset_usb_driver);
895 if (result < 0) {
896 err("usb_gigaset: usb_register failed (error %d)",
897 -result);
898 goto error;
899 }
900
901 info(DRIVER_AUTHOR);
902 info(DRIVER_DESC);
903 return 0;
904
905error: if (cardstate)
906 gigaset_freecs(cardstate);
907 cardstate = NULL;
908 if (driver)
909 gigaset_freedriver(driver);
910 driver = NULL;
911 return -1;
912}
913
914
915/**
916 * usb_gigaset_exit
917 * This function is called while unloading the kernel-module
918 */
919static void __exit usb_gigaset_exit(void)
920{
921 gigaset_blockdriver(driver); /* => probe will fail
Tilman Schmidt784d5852006-04-10 22:55:04 -0700922 * => no gigaset_start any more
923 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800924
925 gigaset_shutdown(cardstate);
926 /* from now on, no isdn callback should be possible */
927
928 /* deregister this driver with the USB subsystem */
929 usb_deregister(&gigaset_usb_driver);
930 /* this will call the disconnect-callback */
931 /* from now on, no disconnect/probe callback should be running */
932
933 gigaset_freecs(cardstate);
934 cardstate = NULL;
935 gigaset_freedriver(driver);
936 driver = NULL;
937}
938
939
940module_init(usb_gigaset_init);
941module_exit(usb_gigaset_exit);
942
943MODULE_AUTHOR(DRIVER_AUTHOR);
944MODULE_DESCRIPTION(DRIVER_DESC);
945
946MODULE_LICENSE("GPL");