1 /******************************************************************************
2 * usbatm.h - Generic USB xDSL driver core
4 * Copyright (C) 2001, Alcatel
5 * Copyright (C) 2003, Duncan Sands, SolNegro, Josep Comas
6 * Copyright (C) 2004, David Woodhouse
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)
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
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.
22 ******************************************************************************/
27 #include <asm/semaphore.h>
28 #include <linux/atm.h>
29 #include <linux/atmdev.h>
30 #include <linux/completion.h>
31 #include <linux/device.h>
32 #include <linux/kernel.h>
33 #include <linux/kref.h>
34 #include <linux/list.h>
35 #include <linux/stringify.h>
36 #include <linux/usb.h>
43 #define UDSL_ASSERT(x) BUG_ON(!(x))
45 #define UDSL_ASSERT(x) do { if (!(x)) warn("failed assertion '%s' at line %d", __stringify(x), __LINE__); } while(0)
48 #define usb_err(instance, format, arg...) \
49 dev_err(&(instance)->usb_intf->dev , format , ## arg)
50 #define usb_info(instance, format, arg...) \
51 dev_info(&(instance)->usb_intf->dev , format , ## arg)
52 #define usb_warn(instance, format, arg...) \
53 dev_warn(&(instance)->usb_intf->dev , format , ## arg)
55 #define usb_dbg(instance, format, arg...) \
56 dev_printk(KERN_DEBUG , &(instance)->usb_intf->dev , format , ## arg)
58 #define usb_dbg(instance, format, arg...) \
62 /* FIXME: move to dev_* once ATM is driver model aware */
63 #define atm_printk(level, instance, format, arg...) \
64 printk(level "ATM dev %d: " format , \
65 (instance)->atm_dev->number , ## arg)
67 #define atm_err(instance, format, arg...) \
68 atm_printk(KERN_ERR, instance , format , ## arg)
69 #define atm_info(instance, format, arg...) \
70 atm_printk(KERN_INFO, instance , format , ## arg)
71 #define atm_warn(instance, format, arg...) \
72 atm_printk(KERN_WARNING, instance , format , ## arg)
74 #define atm_dbg(instance, format, arg...) \
75 atm_printk(KERN_DEBUG, instance , format , ## arg)
76 #define atm_rldbg(instance, format, arg...) \
77 if (printk_ratelimit()) \
78 atm_printk(KERN_DEBUG, instance , format , ## arg)
80 #define atm_dbg(instance, format, arg...) \
82 #define atm_rldbg(instance, format, arg...) \
87 /* flags, set by mini-driver in bind() */
89 #define UDSL_SKIP_HEAVY_INIT (1<<0)
97 * Assuming all methods exist and succeed, they are called in this order:
99 * bind, heavy_init, atm_start, ..., atm_stop, unbind
102 struct usbatm_driver
{
103 const char *driver_name
;
105 /* init device ... can sleep, or cause probe() failure */
106 int (*bind
) (struct usbatm_data
*, struct usb_interface
*,
107 const struct usb_device_id
*id
);
109 /* additional device initialization that is too slow to be done in probe() */
110 int (*heavy_init
) (struct usbatm_data
*, struct usb_interface
*);
112 /* cleanup device ... can sleep, but can't fail */
113 void (*unbind
) (struct usbatm_data
*, struct usb_interface
*);
115 /* init ATM device ... can sleep, or cause ATM initialization failure */
116 int (*atm_start
) (struct usbatm_data
*, struct atm_dev
*);
118 /* cleanup ATM device ... can sleep, but can't fail */
119 void (*atm_stop
) (struct usbatm_data
*, struct atm_dev
*);
121 int in
; /* rx endpoint */
122 int out
; /* tx endpoint */
128 extern int usbatm_usb_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
,
129 struct usbatm_driver
*driver
);
130 extern void usbatm_usb_disconnect(struct usb_interface
*intf
);
133 struct usbatm_channel
{
134 int endpoint
; /* usb pipe */
135 unsigned int stride
; /* ATM cell size + padding */
136 unsigned int buf_size
; /* urb buffer size */
138 struct list_head list
;
139 struct tasklet_struct tasklet
;
140 struct timer_list delay
;
141 struct usbatm_data
*usbatm
;
144 /* main driver data */
152 struct usbatm_driver
*driver
;
154 char driver_name
[16];
155 unsigned int flags
; /* set by mini-driver in bind() */
158 struct usb_device
*usb_dev
;
159 struct usb_interface
*usb_intf
;
160 char description
[64];
163 struct atm_dev
*atm_dev
;
165 /********************************
166 * private fields - do not use *
167 ********************************/
169 struct kref refcount
;
170 struct semaphore serialize
;
175 struct completion thread_started
;
176 struct completion thread_exited
;
179 struct list_head vcc_list
;
181 struct usbatm_channel rx_channel
;
182 struct usbatm_channel tx_channel
;
184 struct sk_buff_head sndqueue
;
185 struct sk_buff
*current_skb
; /* being emptied */
190 #endif /* _USBATM_H_ */