blob: e134e2794486b28b12abe64f06db3f22b95d649b [file] [log] [blame]
Duncan Sandsc59bba72005-05-11 20:24:03 +02001/******************************************************************************
2 * usbatm.c - Generic USB xDSL driver core
3 *
4 * Copyright (C) 2001, Alcatel
5 * Copyright (C) 2003, Duncan Sands, SolNegro, Josep Comas
6 * Copyright (C) 2004, David Woodhouse, Roman Kagan
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc., 59
20 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 *
22 ******************************************************************************/
23
24/*
25 * Written by Johan Verrept, Duncan Sands (duncan.sands@free.fr) and David Woodhouse
26 *
27 * 1.7+: - See the check-in logs
28 *
29 * 1.6: - No longer opens a connection if the firmware is not loaded
30 * - Added support for the speedtouch 330
31 * - Removed the limit on the number of devices
32 * - Module now autoloads on device plugin
33 * - Merged relevant parts of sarlib
34 * - Replaced the kernel thread with a tasklet
35 * - New packet transmission code
36 * - Changed proc file contents
37 * - Fixed all known SMP races
38 * - Many fixes and cleanups
39 * - Various fixes by Oliver Neukum (oliver@neukum.name)
40 *
41 * 1.5A: - Version for inclusion in 2.5 series kernel
42 * - Modifications by Richard Purdie (rpurdie@rpsys.net)
43 * - made compatible with kernel 2.5.6 onwards by changing
44 * usbatm_usb_send_data_context->urb to a pointer and adding code
45 * to alloc and free it
46 * - remove_wait_queue() added to usbatm_atm_processqueue_thread()
47 *
48 * 1.5: - fixed memory leak when atmsar_decode_aal5 returned NULL.
49 * (reported by stephen.robinson@zen.co.uk)
50 *
51 * 1.4: - changed the spin_lock() under interrupt to spin_lock_irqsave()
52 * - unlink all active send urbs of a vcc that is being closed.
53 *
54 * 1.3.1: - added the version number
55 *
56 * 1.3: - Added multiple send urb support
57 * - fixed memory leak and vcc->tx_inuse starvation bug
58 * when not enough memory left in vcc.
59 *
60 * 1.2: - Fixed race condition in usbatm_usb_send_data()
61 * 1.1: - Turned off packet debugging
62 *
63 */
64
65#include "usbatm.h"
66
67#include <asm/uaccess.h>
68#include <linux/crc32.h>
69#include <linux/errno.h>
70#include <linux/init.h>
71#include <linux/interrupt.h>
72#include <linux/kernel.h>
73#include <linux/module.h>
74#include <linux/moduleparam.h>
75#include <linux/proc_fs.h>
76#include <linux/sched.h>
77#include <linux/signal.h>
78#include <linux/slab.h>
79#include <linux/smp_lock.h>
80#include <linux/stat.h>
81#include <linux/timer.h>
82#include <linux/wait.h>
83
84#ifdef VERBOSE_DEBUG
85static int usbatm_print_packet(const unsigned char *data, int len);
86#define PACKETDEBUG(arg...) usbatm_print_packet (arg)
87#define vdbg(arg...) dbg (arg)
88#else
89#define PACKETDEBUG(arg...)
90#define vdbg(arg...)
91#endif
92
93#define DRIVER_AUTHOR "Johan Verrept, Duncan Sands <duncan.sands@free.fr>"
94#define DRIVER_VERSION "1.9"
95#define DRIVER_DESC "Generic USB ATM/DSL I/O, version " DRIVER_VERSION
96
97static const char usbatm_driver_name[] = "usbatm";
98
99#define UDSL_MAX_RCV_URBS 16
100#define UDSL_MAX_SND_URBS 16
101#define UDSL_MAX_RCV_BUF_SIZE 1024 /* ATM cells */
102#define UDSL_MAX_SND_BUF_SIZE 1024 /* ATM cells */
103#define UDSL_DEFAULT_RCV_URBS 4
104#define UDSL_DEFAULT_SND_URBS 4
105#define UDSL_DEFAULT_RCV_BUF_SIZE 64 /* ATM cells */
106#define UDSL_DEFAULT_SND_BUF_SIZE 64 /* ATM cells */
107
108#define ATM_CELL_HEADER (ATM_CELL_SIZE - ATM_CELL_PAYLOAD)
109
110#define THROTTLE_MSECS 100 /* delay to recover processing after urb submission fails */
111
112static unsigned int num_rcv_urbs = UDSL_DEFAULT_RCV_URBS;
113static unsigned int num_snd_urbs = UDSL_DEFAULT_SND_URBS;
114static unsigned int rcv_buf_size = UDSL_DEFAULT_RCV_BUF_SIZE;
115static unsigned int snd_buf_size = UDSL_DEFAULT_SND_BUF_SIZE;
116
117module_param(num_rcv_urbs, uint, S_IRUGO);
118MODULE_PARM_DESC(num_rcv_urbs,
119 "Number of urbs used for reception (range: 0-"
120 __MODULE_STRING(UDSL_MAX_RCV_URBS) ", default: "
121 __MODULE_STRING(UDSL_DEFAULT_RCV_URBS) ")");
122
123module_param(num_snd_urbs, uint, S_IRUGO);
124MODULE_PARM_DESC(num_snd_urbs,
125 "Number of urbs used for transmission (range: 0-"
126 __MODULE_STRING(UDSL_MAX_SND_URBS) ", default: "
127 __MODULE_STRING(UDSL_DEFAULT_SND_URBS) ")");
128
129module_param(rcv_buf_size, uint, S_IRUGO);
130MODULE_PARM_DESC(rcv_buf_size,
131 "Size of the buffers used for reception in ATM cells (range: 1-"
132 __MODULE_STRING(UDSL_MAX_RCV_BUF_SIZE) ", default: "
133 __MODULE_STRING(UDSL_DEFAULT_RCV_BUF_SIZE) ")");
134
135module_param(snd_buf_size, uint, S_IRUGO);
136MODULE_PARM_DESC(snd_buf_size,
137 "Size of the buffers used for transmission in ATM cells (range: 1-"
138 __MODULE_STRING(UDSL_MAX_SND_BUF_SIZE) ", default: "
139 __MODULE_STRING(UDSL_DEFAULT_SND_BUF_SIZE) ")");
140
141
142/* receive */
143
144struct usbatm_vcc_data {
145 /* vpi/vci lookup */
146 struct list_head list;
147 short vpi;
148 int vci;
149 struct atm_vcc *vcc;
150
151 /* raw cell reassembly */
152 struct sk_buff *sarb;
153};
154
155
156/* send */
157
158struct usbatm_control {
159 struct atm_skb_data atm;
160 u32 len;
161 u32 crc;
162};
163
164#define UDSL_SKB(x) ((struct usbatm_control *)(x)->cb)
165
166
167/* ATM */
168
169static void usbatm_atm_dev_close(struct atm_dev *dev);
170static int usbatm_atm_open(struct atm_vcc *vcc);
171static void usbatm_atm_close(struct atm_vcc *vcc);
172static int usbatm_atm_ioctl(struct atm_dev *dev, unsigned int cmd, void __user * arg);
173static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb);
174static int usbatm_atm_proc_read(struct atm_dev *atm_dev, loff_t * pos, char *page);
175
176static struct atmdev_ops usbatm_atm_devops = {
177 .dev_close = usbatm_atm_dev_close,
178 .open = usbatm_atm_open,
179 .close = usbatm_atm_close,
180 .ioctl = usbatm_atm_ioctl,
181 .send = usbatm_atm_send,
182 .proc_read = usbatm_atm_proc_read,
183 .owner = THIS_MODULE,
184};
185
186
187/***********
188** misc **
189***********/
190
191static inline unsigned int usbatm_pdu_length(unsigned int length)
192{
193 length += ATM_CELL_PAYLOAD - 1 + ATM_AAL5_TRAILER;
194 return length - length % ATM_CELL_PAYLOAD;
195}
196
197static inline void usbatm_pop(struct atm_vcc *vcc, struct sk_buff *skb)
198{
199 if (vcc->pop)
200 vcc->pop(vcc, skb);
201 else
202 dev_kfree_skb(skb);
203}
204
205
206/***********
207** urbs **
208************/
209
210static inline struct urb *usbatm_pop_urb(struct usbatm_channel *channel)
211{
212 struct urb *urb;
213
214 spin_lock_irq(&channel->lock);
215 if (list_empty(&channel->list)) {
216 spin_unlock_irq(&channel->lock);
217 return NULL;
218 }
219
220 urb = list_entry(channel->list.next, struct urb, urb_list);
221 list_del(&urb->urb_list);
222 spin_unlock_irq(&channel->lock);
223
224 return urb;
225}
226
227static inline int usbatm_submit_urb(struct urb *urb)
228{
229 struct usbatm_channel *channel = urb->context;
230 int ret;
231
232 vdbg("%s: submitting urb 0x%p, size %u",
233 __func__, urb, urb->transfer_buffer_length);
234
235 ret = usb_submit_urb(urb, GFP_ATOMIC);
236 if (ret) {
237 atm_dbg(channel->usbatm, "%s: urb 0x%p submission failed (%d)!\n",
238 __func__, urb, ret);
239
240 /* consider all errors transient and return the buffer back to the queue */
241 urb->status = -EAGAIN;
242 spin_lock_irq(&channel->lock);
243
244 /* must add to the front when sending; doesn't matter when receiving */
245 list_add(&urb->urb_list, &channel->list);
246
247 spin_unlock_irq(&channel->lock);
248
249 /* make sure the channel doesn't stall */
250 mod_timer(&channel->delay, jiffies + msecs_to_jiffies(THROTTLE_MSECS));
251 }
252
253 return ret;
254}
255
256static void usbatm_complete(struct urb *urb, struct pt_regs *regs)
257{
258 struct usbatm_channel *channel = urb->context;
259 unsigned long flags;
260
261 vdbg("%s: urb 0x%p, status %d, actual_length %d",
262 __func__, urb, urb->status, urb->actual_length);
263
264 /* usually in_interrupt(), but not always */
265 spin_lock_irqsave(&channel->lock, flags);
266
267 /* must add to the back when receiving; doesn't matter when sending */
268 list_add_tail(&urb->urb_list, &channel->list);
269
270 spin_unlock_irqrestore(&channel->lock, flags);
271
272 if (unlikely(urb->status))
273 /* throttle processing in case of an error */
274 mod_timer(&channel->delay, jiffies + msecs_to_jiffies(THROTTLE_MSECS));
275 else
276 tasklet_schedule(&channel->tasklet);
277}
278
279
280/*************
281** decode **
282*************/
283
284static inline struct usbatm_vcc_data *usbatm_find_vcc(struct usbatm_data *instance,
285 short vpi, int vci)
286{
287 struct usbatm_vcc_data *vcc;
288
289 list_for_each_entry(vcc, &instance->vcc_list, list)
290 if ((vcc->vci == vci) && (vcc->vpi == vpi))
291 return vcc;
292 return NULL;
293}
294
295static void usbatm_extract_cells(struct usbatm_data *instance,
296 unsigned char *source, unsigned int avail_data)
297{
298 struct usbatm_vcc_data *cached_vcc = NULL;
299 struct atm_vcc *vcc;
300 struct sk_buff *sarb;
301 struct usbatm_vcc_data *vcc_data;
302 unsigned int stride = instance->rx_channel.stride;
303 int vci, cached_vci = 0;
304 short vpi, cached_vpi = 0;
305 u8 pti;
306
307 for (; avail_data >= stride; avail_data -= stride, source += stride) {
308 vpi = ((source[0] & 0x0f) << 4) | (source[1] >> 4);
309 vci = ((source[1] & 0x0f) << 12) | (source[2] << 4) | (source[3] >> 4);
310 pti = ((source[3] & 0xe) >> 1);
311
312 vdbg("%s: vpi %hd, vci %d, pti %d", __func__, vpi, vci, pti);
313
314 if (cached_vcc && (vci == cached_vci) && (vpi == cached_vpi))
315 vcc_data = cached_vcc;
316 else if ((vcc_data = usbatm_find_vcc(instance, vpi, vci))) {
317 cached_vcc = vcc_data;
318 cached_vpi = vpi;
319 cached_vci = vci;
320 } else {
321 atm_dbg(instance, "%s: unknown vpi/vci (%hd/%d)!\n", __func__, vpi, vci);
322 continue;
323 }
324
325 vcc = vcc_data->vcc;
326
327 /* OAM F5 end-to-end */
328 if (pti == ATM_PTI_E2EF5) {
329 atm_warn(instance, "%s: OAM not supported (vpi %d, vci %d)!\n", __func__, vpi, vci);
330 atomic_inc(&vcc->stats->rx_err);
331 continue;
332 }
333
334 sarb = vcc_data->sarb;
335
336 if (sarb->tail + ATM_CELL_PAYLOAD > sarb->end) {
337 atm_dbg(instance, "%s: buffer overrun (sarb->len %u, vcc: 0x%p)!\n",
338 __func__, sarb->len, vcc);
339 /* discard cells already received */
340 skb_trim(sarb, 0);
341 UDSL_ASSERT(sarb->tail + ATM_CELL_PAYLOAD <= sarb->end);
342 }
343
344 memcpy(sarb->tail, source + ATM_CELL_HEADER, ATM_CELL_PAYLOAD);
345 __skb_put(sarb, ATM_CELL_PAYLOAD);
346
347 if (pti & 1) {
348 struct sk_buff *skb;
349 unsigned int length;
350 unsigned int pdu_length;
351
352 length = (source[ATM_CELL_SIZE - 6] << 8) + source[ATM_CELL_SIZE - 5];
353
354 /* guard against overflow */
355 if (length > ATM_MAX_AAL5_PDU) {
356 atm_dbg(instance, "%s: bogus length %u (vcc: 0x%p)!\n",
357 __func__, length, vcc);
358 atomic_inc(&vcc->stats->rx_err);
359 goto out;
360 }
361
362 pdu_length = usbatm_pdu_length(length);
363
364 if (sarb->len < pdu_length) {
365 atm_dbg(instance, "%s: bogus pdu_length %u (sarb->len: %u, vcc: 0x%p)!\n",
366 __func__, pdu_length, sarb->len, vcc);
367 atomic_inc(&vcc->stats->rx_err);
368 goto out;
369 }
370
371 if (crc32_be(~0, sarb->tail - pdu_length, pdu_length) != 0xc704dd7b) {
372 atm_dbg(instance, "%s: packet failed crc check (vcc: 0x%p)!\n",
373 __func__, vcc);
374 atomic_inc(&vcc->stats->rx_err);
375 goto out;
376 }
377
378 vdbg("%s: got packet (length: %u, pdu_length: %u, vcc: 0x%p)", __func__, length, pdu_length, vcc);
379
380 if (!(skb = dev_alloc_skb(length))) {
381 atm_dbg(instance, "%s: no memory for skb (length: %u)!\n", __func__, length);
382 atomic_inc(&vcc->stats->rx_drop);
383 goto out;
384 }
385
386 vdbg("%s: allocated new sk_buff (skb: 0x%p, skb->truesize: %u)", __func__, skb, skb->truesize);
387
388 if (!atm_charge(vcc, skb->truesize)) {
389 atm_dbg(instance, "%s: failed atm_charge (skb->truesize: %u)!\n", __func__, skb->truesize);
390 dev_kfree_skb(skb);
391 goto out; /* atm_charge increments rx_drop */
392 }
393
394 memcpy(skb->data, sarb->tail - pdu_length, length);
395 __skb_put(skb, length);
396
397 vdbg("%s: sending skb 0x%p, skb->len %u, skb->truesize %u",
398 __func__, skb, skb->len, skb->truesize);
399
400 PACKETDEBUG(skb->data, skb->len);
401
402 vcc->push(vcc, skb);
403
404 atomic_inc(&vcc->stats->rx);
405 out:
406 skb_trim(sarb, 0);
407 }
408 }
409}
410
411
412/*************
413** encode **
414*************/
415
416static unsigned int usbatm_write_cells(struct usbatm_data *instance,
417 struct sk_buff *skb,
418 u8 *target, unsigned int avail_space)
419{
420 struct usbatm_control *ctrl = UDSL_SKB(skb);
421 struct atm_vcc *vcc = ctrl->atm.vcc;
422 unsigned int num_written;
423 unsigned int stride = instance->tx_channel.stride;
424
425 vdbg("%s: skb->len=%d, avail_space=%u", __func__, skb->len, avail_space);
426 UDSL_ASSERT(!(avail_space % stride));
427
428 for (num_written = 0; num_written < avail_space && ctrl->len;
429 num_written += stride, target += stride) {
430 unsigned int data_len = min_t(unsigned int, skb->len, ATM_CELL_PAYLOAD);
431 unsigned int left = ATM_CELL_PAYLOAD - data_len;
432 u8 *ptr = target;
433
434 ptr[0] = vcc->vpi >> 4;
435 ptr[1] = (vcc->vpi << 4) | (vcc->vci >> 12);
436 ptr[2] = vcc->vci >> 4;
437 ptr[3] = vcc->vci << 4;
438 ptr[4] = 0xec;
439 ptr += ATM_CELL_HEADER;
440
441 memcpy(ptr, skb->data, data_len);
442 ptr += data_len;
443 __skb_pull(skb, data_len);
444
445 if(!left)
446 continue;
447
448 memset(ptr, 0, left);
449
450 if (left >= ATM_AAL5_TRAILER) { /* trailer will go in this cell */
451 u8 *trailer = target + ATM_CELL_SIZE - ATM_AAL5_TRAILER;
452 /* trailer[0] = 0; UU = 0 */
453 /* trailer[1] = 0; CPI = 0 */
454 trailer[2] = ctrl->len >> 8;
455 trailer[3] = ctrl->len;
456
457 ctrl->crc = ~ crc32_be(ctrl->crc, ptr, left - 4);
458
459 trailer[4] = ctrl->crc >> 24;
460 trailer[5] = ctrl->crc >> 16;
461 trailer[6] = ctrl->crc >> 8;
462 trailer[7] = ctrl->crc;
463
464 target[3] |= 0x2; /* adjust PTI */
465
466 ctrl->len = 0; /* tag this skb finished */
467 }
468 else
469 ctrl->crc = crc32_be(ctrl->crc, ptr, left);
470 }
471
472 return num_written;
473}
474
475
476/**************
477** receive **
478**************/
479
480static void usbatm_rx_process(unsigned long data)
481{
482 struct usbatm_data *instance = (struct usbatm_data *)data;
483 struct urb *urb;
484
485 while ((urb = usbatm_pop_urb(&instance->rx_channel))) {
486 vdbg("%s: processing urb 0x%p", __func__, urb);
487
488 if (usb_pipeisoc(urb->pipe)) {
489 int i;
490 for (i = 0; i < urb->number_of_packets; i++)
491 if (!urb->iso_frame_desc[i].status)
492 usbatm_extract_cells(instance,
493 (u8 *)urb->transfer_buffer + urb->iso_frame_desc[i].offset,
494 urb->iso_frame_desc[i].actual_length);
495 }
496 else
497 if (!urb->status)
498 usbatm_extract_cells(instance, urb->transfer_buffer, urb->actual_length);
499
500 if (usbatm_submit_urb(urb))
501 return;
502 }
503}
504
505
506/***********
507** send **
508***********/
509
510static void usbatm_tx_process(unsigned long data)
511{
512 struct usbatm_data *instance = (struct usbatm_data *)data;
513 struct sk_buff *skb = instance->current_skb;
514 struct urb *urb = NULL;
515 const unsigned int buf_size = instance->tx_channel.buf_size;
516 unsigned int num_written = 0;
517 u8 *buffer = NULL;
518
519 if (!skb)
520 skb = skb_dequeue(&instance->sndqueue);
521
522 while (skb) {
523 if (!urb) {
524 urb = usbatm_pop_urb(&instance->tx_channel);
525 if (!urb)
526 break; /* no more senders */
527 buffer = urb->transfer_buffer;
528 num_written = (urb->status == -EAGAIN) ?
529 urb->transfer_buffer_length : 0;
530 }
531
532 num_written += usbatm_write_cells(instance, skb,
533 buffer + num_written,
534 buf_size - num_written);
535
536 vdbg("%s: wrote %u bytes from skb 0x%p to urb 0x%p",
537 __func__, num_written, skb, urb);
538
539 if (!UDSL_SKB(skb)->len) {
540 struct atm_vcc *vcc = UDSL_SKB(skb)->atm.vcc;
541
542 usbatm_pop(vcc, skb);
543 atomic_inc(&vcc->stats->tx);
544
545 skb = skb_dequeue(&instance->sndqueue);
546 }
547
548 if (num_written == buf_size || (!skb && num_written)) {
549 urb->transfer_buffer_length = num_written;
550
551 if (usbatm_submit_urb(urb))
552 break;
553 urb = NULL;
554 }
555 }
556
557 instance->current_skb = skb;
558}
559
560static void usbatm_cancel_send(struct usbatm_data *instance,
561 struct atm_vcc *vcc)
562{
563 struct sk_buff *skb, *n;
564
565 atm_dbg(instance, "%s entered\n", __func__);
566 spin_lock_irq(&instance->sndqueue.lock);
567 for (skb = instance->sndqueue.next, n = skb->next;
568 skb != (struct sk_buff *)&instance->sndqueue;
569 skb = n, n = skb->next)
570 if (UDSL_SKB(skb)->atm.vcc == vcc) {
571 atm_dbg(instance, "%s: popping skb 0x%p\n", __func__, skb);
572 __skb_unlink(skb, &instance->sndqueue);
573 usbatm_pop(vcc, skb);
574 }
575 spin_unlock_irq(&instance->sndqueue.lock);
576
577 tasklet_disable(&instance->tx_channel.tasklet);
578 if ((skb = instance->current_skb) && (UDSL_SKB(skb)->atm.vcc == vcc)) {
579 atm_dbg(instance, "%s: popping current skb (0x%p)\n", __func__, skb);
580 instance->current_skb = NULL;
581 usbatm_pop(vcc, skb);
582 }
583 tasklet_enable(&instance->tx_channel.tasklet);
584 atm_dbg(instance, "%s done\n", __func__);
585}
586
587static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
588{
589 struct usbatm_data *instance = vcc->dev->dev_data;
590 struct usbatm_control *ctrl = UDSL_SKB(skb);
591 int err;
592
593 vdbg("%s called (skb 0x%p, len %u)", __func__, skb, skb->len);
594
595 if (!instance) {
596 dbg("%s: NULL data!", __func__);
597 err = -ENODEV;
598 goto fail;
599 }
600
601 if (vcc->qos.aal != ATM_AAL5) {
602 atm_dbg(instance, "%s: unsupported ATM type %d!\n", __func__, vcc->qos.aal);
603 err = -EINVAL;
604 goto fail;
605 }
606
607 if (skb->len > ATM_MAX_AAL5_PDU) {
608 atm_dbg(instance, "%s: packet too long (%d vs %d)!\n",
609 __func__, skb->len, ATM_MAX_AAL5_PDU);
610 err = -EINVAL;
611 goto fail;
612 }
613
614 PACKETDEBUG(skb->data, skb->len);
615
616 /* initialize the control block */
617 ctrl->atm.vcc = vcc;
618 ctrl->len = skb->len;
619 ctrl->crc = crc32_be(~0, skb->data, skb->len);
620
621 skb_queue_tail(&instance->sndqueue, skb);
622 tasklet_schedule(&instance->tx_channel.tasklet);
623
624 return 0;
625
626 fail:
627 usbatm_pop(vcc, skb);
628 return err;
629}
630
631
632/********************
633** bean counting **
634********************/
635
636static void usbatm_destroy_instance(struct kref *kref)
637{
638 struct usbatm_data *instance = container_of(kref, struct usbatm_data, refcount);
639
640 dbg("%s", __func__);
641
642 tasklet_kill(&instance->rx_channel.tasklet);
643 tasklet_kill(&instance->tx_channel.tasklet);
644 usb_put_dev(instance->usb_dev);
645 kfree(instance);
646}
647
648void usbatm_get_instance(struct usbatm_data *instance)
649{
650 dbg("%s", __func__);
651
652 kref_get(&instance->refcount);
653}
654
655void usbatm_put_instance(struct usbatm_data *instance)
656{
657 dbg("%s", __func__);
658
659 kref_put(&instance->refcount, usbatm_destroy_instance);
660}
661
662
663/**********
664** ATM **
665**********/
666
667static void usbatm_atm_dev_close(struct atm_dev *dev)
668{
669 struct usbatm_data *instance = dev->dev_data;
670
671 dbg("%s", __func__);
672
673 if (!instance)
674 return;
675
676 dev->dev_data = NULL;
677 usbatm_put_instance(instance); /* taken in usbatm_atm_init */
678}
679
680static int usbatm_atm_proc_read(struct atm_dev *atm_dev, loff_t * pos, char *page)
681{
682 struct usbatm_data *instance = atm_dev->dev_data;
683 int left = *pos;
684
685 if (!instance) {
686 dbg("%s: NULL instance!", __func__);
687 return -ENODEV;
688 }
689
690 if (!left--)
691 return sprintf(page, "%s\n", instance->description);
692
693 if (!left--)
694 return sprintf(page, "MAC: %02x:%02x:%02x:%02x:%02x:%02x\n",
695 atm_dev->esi[0], atm_dev->esi[1],
696 atm_dev->esi[2], atm_dev->esi[3],
697 atm_dev->esi[4], atm_dev->esi[5]);
698
699 if (!left--)
700 return sprintf(page,
701 "AAL5: tx %d ( %d err ), rx %d ( %d err, %d drop )\n",
702 atomic_read(&atm_dev->stats.aal5.tx),
703 atomic_read(&atm_dev->stats.aal5.tx_err),
704 atomic_read(&atm_dev->stats.aal5.rx),
705 atomic_read(&atm_dev->stats.aal5.rx_err),
706 atomic_read(&atm_dev->stats.aal5.rx_drop));
707
708 if (!left--)
709 switch (atm_dev->signal) {
710 case ATM_PHY_SIG_FOUND:
711 return sprintf(page, "Line up\n");
712 case ATM_PHY_SIG_LOST:
713 return sprintf(page, "Line down\n");
714 default:
715 return sprintf(page, "Line state unknown\n");
716 }
717
718 return 0;
719}
720
721static int usbatm_atm_open(struct atm_vcc *vcc)
722{
723 struct usbatm_data *instance = vcc->dev->dev_data;
724 struct usbatm_vcc_data *new = NULL;
725 int ret;
726 int vci = vcc->vci;
727 short vpi = vcc->vpi;
728
729 if (!instance) {
730 dbg("%s: NULL data!", __func__);
731 return -ENODEV;
732 }
733
734 atm_dbg(instance, "%s: vpi %hd, vci %d\n", __func__, vpi, vci);
735
736 /* only support AAL5 */
737 if ((vcc->qos.aal != ATM_AAL5) || (vcc->qos.rxtp.max_sdu < 0)
738 || (vcc->qos.rxtp.max_sdu > ATM_MAX_AAL5_PDU)) {
739 atm_dbg(instance, "%s: unsupported ATM type %d!\n", __func__, vcc->qos.aal);
740 return -EINVAL;
741 }
742
743 down(&instance->serialize); /* vs self, usbatm_atm_close */
744
745 if (usbatm_find_vcc(instance, vpi, vci)) {
746 atm_dbg(instance, "%s: %hd/%d already in use!\n", __func__, vpi, vci);
747 ret = -EADDRINUSE;
748 goto fail;
749 }
750
751 if (!(new = kmalloc(sizeof(struct usbatm_vcc_data), GFP_KERNEL))) {
752 atm_dbg(instance, "%s: no memory for vcc_data!\n", __func__);
753 ret = -ENOMEM;
754 goto fail;
755 }
756
757 memset(new, 0, sizeof(struct usbatm_vcc_data));
758 new->vcc = vcc;
759 new->vpi = vpi;
760 new->vci = vci;
761
762 new->sarb = alloc_skb(usbatm_pdu_length(vcc->qos.rxtp.max_sdu), GFP_KERNEL);
763 if (!new->sarb) {
764 atm_dbg(instance, "%s: no memory for SAR buffer!\n", __func__);
765 ret = -ENOMEM;
766 goto fail;
767 }
768
769 vcc->dev_data = new;
770
771 tasklet_disable(&instance->rx_channel.tasklet);
772 list_add(&new->list, &instance->vcc_list);
773 tasklet_enable(&instance->rx_channel.tasklet);
774
775 set_bit(ATM_VF_ADDR, &vcc->flags);
776 set_bit(ATM_VF_PARTIAL, &vcc->flags);
777 set_bit(ATM_VF_READY, &vcc->flags);
778
779 up(&instance->serialize);
780
781 atm_dbg(instance, "%s: allocated vcc data 0x%p\n", __func__, new);
782
783 return 0;
784
785fail:
786 kfree(new);
787 up(&instance->serialize);
788 return ret;
789}
790
791static void usbatm_atm_close(struct atm_vcc *vcc)
792{
793 struct usbatm_data *instance = vcc->dev->dev_data;
794 struct usbatm_vcc_data *vcc_data = vcc->dev_data;
795
796 if (!instance || !vcc_data) {
797 dbg("%s: NULL data!", __func__);
798 return;
799 }
800
801 atm_dbg(instance, "%s entered\n", __func__);
802
803 atm_dbg(instance, "%s: deallocating vcc 0x%p with vpi %d vci %d\n",
804 __func__, vcc_data, vcc_data->vpi, vcc_data->vci);
805
806 usbatm_cancel_send(instance, vcc);
807
808 down(&instance->serialize); /* vs self, usbatm_atm_open */
809
810 tasklet_disable(&instance->rx_channel.tasklet);
811 list_del(&vcc_data->list);
812 tasklet_enable(&instance->rx_channel.tasklet);
813
814 kfree_skb(vcc_data->sarb);
815 vcc_data->sarb = NULL;
816
817 kfree(vcc_data);
818 vcc->dev_data = NULL;
819
820 vcc->vpi = ATM_VPI_UNSPEC;
821 vcc->vci = ATM_VCI_UNSPEC;
822 clear_bit(ATM_VF_READY, &vcc->flags);
823 clear_bit(ATM_VF_PARTIAL, &vcc->flags);
824 clear_bit(ATM_VF_ADDR, &vcc->flags);
825
826 up(&instance->serialize);
827
828 atm_dbg(instance, "%s successful\n", __func__);
829}
830
831static int usbatm_atm_ioctl(struct atm_dev *dev, unsigned int cmd,
832 void __user * arg)
833{
834 switch (cmd) {
835 case ATM_QUERYLOOP:
836 return put_user(ATM_LM_NONE, (int __user *)arg) ? -EFAULT : 0;
837 default:
838 return -ENOIOCTLCMD;
839 }
840}
841
842static int usbatm_atm_init(struct usbatm_data *instance)
843{
844 struct atm_dev *atm_dev;
845 int ret, i;
846
847 /* ATM init */
848 atm_dev = atm_dev_register(instance->driver_name, &usbatm_atm_devops, -1, NULL);
849 if (!atm_dev) {
850 usb_dbg(instance, "%s: failed to register ATM device!\n", __func__);
851 return -1;
852 }
853
854 instance->atm_dev = atm_dev;
855
856 atm_dev->ci_range.vpi_bits = ATM_CI_MAX;
857 atm_dev->ci_range.vci_bits = ATM_CI_MAX;
858 atm_dev->signal = ATM_PHY_SIG_UNKNOWN;
859
860 /* temp init ATM device, set to 128kbit */
861 atm_dev->link_rate = 128 * 1000 / 424;
862
863 if (instance->driver->atm_start && ((ret = instance->driver->atm_start(instance, atm_dev)) < 0)) {
864 atm_dbg(instance, "%s: atm_start failed: %d!\n", __func__, ret);
865 goto fail;
866 }
867
868 /* ready for ATM callbacks */
869 usbatm_get_instance(instance); /* dropped in usbatm_atm_dev_close */
870 mb();
871 atm_dev->dev_data = instance;
872
873 /* submit all rx URBs */
874 for (i = 0; i < num_rcv_urbs; i++)
875 usbatm_submit_urb(instance->urbs[i]);
876
877 return 0;
878
879 fail:
880 instance->atm_dev = NULL;
881 shutdown_atm_dev(atm_dev); /* usbatm_atm_dev_close will eventually be called */
882 return ret;
883}
884
885
886/**********
887** USB **
888**********/
889
890static int usbatm_do_heavy_init(void *arg)
891{
892 struct usbatm_data *instance = arg;
893 int ret;
894
895 daemonize(instance->driver->driver_name);
896 allow_signal(SIGTERM);
897
898 complete(&instance->thread_started);
899
900 ret = instance->driver->heavy_init(instance, instance->usb_intf);
901
902 if (!ret)
903 ret = usbatm_atm_init(instance);
904
905 down(&instance->serialize);
906 instance->thread_pid = -1;
907 up(&instance->serialize);
908
909 complete_and_exit(&instance->thread_exited, ret);
910}
911
912static int usbatm_heavy_init(struct usbatm_data *instance)
913{
914 int ret = kernel_thread(usbatm_do_heavy_init, instance, CLONE_KERNEL);
915
916 if (ret < 0) {
917 usb_dbg(instance, "%s: failed to create kernel_thread (%d)!\n", __func__, ret);
918 return ret;
919 }
920
921 down(&instance->serialize);
922 instance->thread_pid = ret;
923 up(&instance->serialize);
924
925 wait_for_completion(&instance->thread_started);
926
927 return 0;
928}
929
930static void usbatm_tasklet_schedule(unsigned long data)
931{
932 tasklet_schedule((struct tasklet_struct *) data);
933}
934
935static inline void usbatm_init_channel(struct usbatm_channel *channel)
936{
937 spin_lock_init(&channel->lock);
938 INIT_LIST_HEAD(&channel->list);
939 channel->delay.function = usbatm_tasklet_schedule;
940 channel->delay.data = (unsigned long) &channel->tasklet;
941 init_timer(&channel->delay);
942}
943
944int usbatm_usb_probe(struct usb_interface *intf, const struct usb_device_id *id,
945 struct usbatm_driver *driver)
946{
947 struct device *dev = &intf->dev;
948 struct usb_device *usb_dev = interface_to_usbdev(intf);
949 struct usbatm_data *instance;
950 char *buf;
951 int error = -ENOMEM;
952 int i, length;
953 int need_heavy;
954
955 dev_dbg(dev, "%s: trying driver %s with vendor=0x%x, product=0x%x, ifnum %d\n",
956 __func__, driver->driver_name,
957 le16_to_cpu(usb_dev->descriptor.idVendor),
958 le16_to_cpu(usb_dev->descriptor.idProduct),
959 intf->altsetting->desc.bInterfaceNumber);
960
961 /* instance init */
962 instance = kmalloc(sizeof(*instance) + sizeof(struct urb *) * (num_rcv_urbs + num_snd_urbs),
963 GFP_KERNEL);
964 if (!instance) {
965 dev_dbg(dev, "%s: no memory for instance data!\n", __func__);
966 return -ENOMEM;
967 }
968
969 memset(instance, 0, sizeof(*instance));
970
971 /* public fields */
972
973 instance->driver = driver;
974 snprintf(instance->driver_name, sizeof(instance->driver_name), driver->driver_name);
975
976 instance->usb_dev = usb_dev;
977 instance->usb_intf = intf;
978
979 buf = instance->description;
980 length = sizeof(instance->description);
981
982 if ((i = usb_string(usb_dev, usb_dev->descriptor.iProduct, buf, length)) < 0)
983 goto bind;
984
985 buf += i;
986 length -= i;
987
988 i = scnprintf(buf, length, " (");
989 buf += i;
990 length -= i;
991
992 if (length <= 0 || (i = usb_make_path(usb_dev, buf, length)) < 0)
993 goto bind;
994
995 buf += i;
996 length -= i;
997
998 snprintf(buf, length, ")");
999
1000 bind:
1001 need_heavy = 1;
1002 if (driver->bind && (error = driver->bind(instance, intf, id, &need_heavy)) < 0) {
1003 dev_dbg(dev, "%s: bind failed: %d!\n", __func__, error);
1004 goto fail_free;
1005 }
1006
1007 /* private fields */
1008
1009 kref_init(&instance->refcount); /* dropped in usbatm_usb_disconnect */
1010 init_MUTEX(&instance->serialize);
1011
1012 instance->thread_pid = -1;
1013 init_completion(&instance->thread_started);
1014 init_completion(&instance->thread_exited);
1015
1016 INIT_LIST_HEAD(&instance->vcc_list);
1017
1018 usbatm_init_channel(&instance->rx_channel);
1019 usbatm_init_channel(&instance->tx_channel);
1020 tasklet_init(&instance->rx_channel.tasklet, usbatm_rx_process, (unsigned long)instance);
1021 tasklet_init(&instance->tx_channel.tasklet, usbatm_tx_process, (unsigned long)instance);
1022 instance->rx_channel.endpoint = usb_rcvbulkpipe(usb_dev, driver->in);
1023 instance->tx_channel.endpoint = usb_sndbulkpipe(usb_dev, driver->out);
1024 instance->rx_channel.stride = ATM_CELL_SIZE + driver->rx_padding;
1025 instance->tx_channel.stride = ATM_CELL_SIZE + driver->tx_padding;
1026 instance->rx_channel.buf_size = rcv_buf_size * instance->rx_channel.stride;
1027 instance->tx_channel.buf_size = snd_buf_size * instance->tx_channel.stride;
1028 instance->rx_channel.usbatm = instance->tx_channel.usbatm = instance;
1029
1030 skb_queue_head_init(&instance->sndqueue);
1031
1032 for (i = 0; i < num_rcv_urbs + num_snd_urbs; i++) {
1033 struct urb *urb;
1034 u8 *buffer;
1035 unsigned int iso_packets = 0, iso_size = 0;
1036 struct usbatm_channel *channel = i < num_rcv_urbs ?
1037 &instance->rx_channel : &instance->tx_channel;
1038
1039 if (usb_pipeisoc(channel->endpoint)) {
1040 /* don't expect iso out endpoints */
1041 iso_size = usb_maxpacket(instance->usb_dev, channel->endpoint, 0);
1042 iso_size -= iso_size % channel->stride; /* alignment */
1043 BUG_ON(!iso_size);
1044 iso_packets = (channel->buf_size - 1) / iso_size + 1;
1045 }
1046
1047 urb = usb_alloc_urb(iso_packets, GFP_KERNEL);
1048 if (!urb) {
1049 dev_dbg(dev, "%s: no memory for urb %d!\n", __func__, i);
1050 goto fail_unbind;
1051 }
1052
1053 buffer = kmalloc(channel->buf_size, GFP_KERNEL);
1054 if (!buffer) {
1055 dev_dbg(dev, "%s: no memory for buffer %d!\n", __func__, i);
1056 goto fail_unbind;
1057 }
1058 memset(buffer, 0, channel->buf_size);
1059
1060 usb_fill_bulk_urb(urb, instance->usb_dev, channel->endpoint,
1061 buffer, channel->buf_size, usbatm_complete, channel);
1062 if (iso_packets) {
1063 int j;
1064 urb->interval = 1;
1065 urb->transfer_flags = URB_ISO_ASAP;
1066 urb->number_of_packets = iso_packets;
1067 for (j = 0; j < iso_packets; j++) {
1068 urb->iso_frame_desc[j].offset = iso_size * j;
1069 urb->iso_frame_desc[j].length = min_t(int, iso_size,
1070 channel->buf_size - urb->iso_frame_desc[j].offset);
1071 }
1072 }
1073
1074 /* put all tx URBs on the list of spares */
1075 if (i >= num_rcv_urbs)
1076 list_add_tail(&urb->urb_list, &channel->list);
1077
1078 vdbg("%s: alloced buffer 0x%p buf size %u urb 0x%p",
1079 __func__, urb->transfer_buffer, urb->transfer_buffer_length, urb);
1080 instance->urbs[i] = urb;
1081 }
1082
1083 if (need_heavy && driver->heavy_init) {
1084 error = usbatm_heavy_init(instance);
1085 } else {
1086 complete(&instance->thread_exited); /* pretend that heavy_init was run */
1087 error = usbatm_atm_init(instance);
1088 }
1089
1090 if (error < 0)
1091 goto fail_unbind;
1092
1093 usb_get_dev(usb_dev);
1094 usb_set_intfdata(intf, instance);
1095
1096 return 0;
1097
1098 fail_unbind:
1099 if (instance->driver->unbind)
1100 instance->driver->unbind(instance, intf);
1101 fail_free:
1102 for (i = 0; i < num_rcv_urbs + num_snd_urbs; i++) {
1103 if (instance->urbs[i])
1104 kfree(instance->urbs[i]->transfer_buffer);
1105 usb_free_urb(instance->urbs[i]);
1106 }
1107
1108 kfree (instance);
1109
1110 return error;
1111}
1112EXPORT_SYMBOL_GPL(usbatm_usb_probe);
1113
1114void usbatm_usb_disconnect(struct usb_interface *intf)
1115{
1116 struct device *dev = &intf->dev;
1117 struct usbatm_data *instance = usb_get_intfdata(intf);
1118 int i;
1119
1120 dev_dbg(dev, "%s entered\n", __func__);
1121
1122 if (!instance) {
1123 dev_dbg(dev, "%s: NULL instance!\n", __func__);
1124 return;
1125 }
1126
1127 usb_set_intfdata(intf, NULL);
1128
1129 down(&instance->serialize);
1130 if (instance->thread_pid >= 0)
1131 kill_proc(instance->thread_pid, SIGTERM, 1);
1132 up(&instance->serialize);
1133
1134 wait_for_completion(&instance->thread_exited);
1135
1136 tasklet_disable(&instance->rx_channel.tasklet);
1137 tasklet_disable(&instance->tx_channel.tasklet);
1138
1139 for (i = 0; i < num_rcv_urbs + num_snd_urbs; i++)
1140 usb_kill_urb(instance->urbs[i]);
1141
1142 del_timer_sync(&instance->rx_channel.delay);
1143 del_timer_sync(&instance->tx_channel.delay);
1144
1145 if (instance->atm_dev && instance->driver->atm_stop)
1146 instance->driver->atm_stop(instance, instance->atm_dev);
1147
1148 if (instance->driver->unbind)
1149 instance->driver->unbind(instance, intf);
1150
1151 instance->driver_data = NULL;
1152
1153 /* turn usbatm_[rt]x_process into noop */
1154 /* no need to take the spinlock */
1155 INIT_LIST_HEAD(&instance->rx_channel.list);
1156 INIT_LIST_HEAD(&instance->tx_channel.list);
1157
1158 tasklet_enable(&instance->rx_channel.tasklet);
1159 tasklet_enable(&instance->tx_channel.tasklet);
1160
1161 for (i = 0; i < num_rcv_urbs + num_snd_urbs; i++) {
1162 kfree(instance->urbs[i]->transfer_buffer);
1163 usb_free_urb(instance->urbs[i]);
1164 }
1165
1166 /* ATM finalize */
1167 if (instance->atm_dev)
1168 shutdown_atm_dev(instance->atm_dev);
1169
1170 usbatm_put_instance(instance); /* taken in usbatm_usb_probe */
1171}
1172EXPORT_SYMBOL_GPL(usbatm_usb_disconnect);
1173
1174
1175/***********
1176** init **
1177***********/
1178
1179static int __init usbatm_usb_init(void)
1180{
1181 dbg("%s: driver version %s", __func__, DRIVER_VERSION);
1182
1183 if (sizeof(struct usbatm_control) > sizeof(((struct sk_buff *) 0)->cb)) {
1184 printk(KERN_ERR "%s unusable with this kernel!\n", usbatm_driver_name);
1185 return -EIO;
1186 }
1187
1188 if ((num_rcv_urbs > UDSL_MAX_RCV_URBS)
1189 || (num_snd_urbs > UDSL_MAX_SND_URBS)
1190 || (rcv_buf_size < 1)
1191 || (rcv_buf_size > UDSL_MAX_RCV_BUF_SIZE)
1192 || (snd_buf_size < 1)
1193 || (snd_buf_size > UDSL_MAX_SND_BUF_SIZE))
1194 return -EINVAL;
1195
1196 return 0;
1197}
1198module_init(usbatm_usb_init);
1199
1200static void __exit usbatm_usb_exit(void)
1201{
1202 dbg("%s", __func__);
1203}
1204module_exit(usbatm_usb_exit);
1205
1206MODULE_AUTHOR(DRIVER_AUTHOR);
1207MODULE_DESCRIPTION(DRIVER_DESC);
1208MODULE_LICENSE("GPL");
1209MODULE_VERSION(DRIVER_VERSION);
1210
1211/************
1212** debug **
1213************/
1214
1215#ifdef VERBOSE_DEBUG
1216static int usbatm_print_packet(const unsigned char *data, int len)
1217{
1218 unsigned char buffer[256];
1219 int i = 0, j = 0;
1220
1221 for (i = 0; i < len;) {
1222 buffer[0] = '\0';
1223 sprintf(buffer, "%.3d :", i);
1224 for (j = 0; (j < 16) && (i < len); j++, i++) {
1225 sprintf(buffer, "%s %2.2x", buffer, data[i]);
1226 }
1227 dbg("%s", buffer);
1228 }
1229 return i;
1230}
1231#endif