1 /******************************************************************************
2 * usb_atm.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 ******************************************************************************/
24 #include <linux/config.h>
25 #include <linux/list.h>
26 #include <linux/kref.h>
27 #include <linux/atm.h>
28 #include <linux/atmdev.h>
29 #include <asm/semaphore.h>
36 #if !defined (DEBUG) && defined (CONFIG_USB_DEBUG)
40 #include <linux/usb.h>
43 #define UDSL_ASSERT(x) BUG_ON(!(x))
45 #define UDSL_ASSERT(x) do { if (!(x)) warn("failed assertion '" #x "' at line %d", __LINE__); } while(0)
48 #define UDSL_MAX_RCV_URBS 4
49 #define UDSL_MAX_SND_URBS 4
50 #define UDSL_MAX_RCV_BUFS 8
51 #define UDSL_MAX_SND_BUFS 8
52 #define UDSL_MAX_RCV_BUF_SIZE 1024 /* ATM cells */
53 #define UDSL_MAX_SND_BUF_SIZE 1024 /* ATM cells */
54 #define UDSL_DEFAULT_RCV_URBS 2
55 #define UDSL_DEFAULT_SND_URBS 2
56 #define UDSL_DEFAULT_RCV_BUFS 4
57 #define UDSL_DEFAULT_SND_BUFS 4
58 #define UDSL_DEFAULT_RCV_BUF_SIZE 64 /* ATM cells */
59 #define UDSL_DEFAULT_SND_BUF_SIZE 64 /* ATM cells */
61 #define ATM_CELL_HEADER (ATM_CELL_SIZE - ATM_CELL_PAYLOAD)
62 #define UDSL_NUM_CELLS(x) (((x) + ATM_AAL5_TRAILER + ATM_CELL_PAYLOAD - 1) / ATM_CELL_PAYLOAD)
66 struct udsl_receive_buffer
{
67 struct list_head list
;
69 unsigned int filled_cells
;
72 struct udsl_receiver
{
73 struct list_head list
;
74 struct udsl_receive_buffer
*buffer
;
76 struct udsl_instance_data
*instance
;
79 struct udsl_vcc_data
{
81 struct list_head list
;
86 /* raw cell reassembly */
92 struct udsl_send_buffer
{
93 struct list_head list
;
95 unsigned char *free_start
;
96 unsigned int free_cells
;
100 struct list_head list
;
101 struct udsl_send_buffer
*buffer
;
103 struct udsl_instance_data
*instance
;
106 struct udsl_control
{
107 struct atm_skb_data atm_data
;
108 unsigned int num_cells
;
109 unsigned int num_entire
;
110 unsigned int pdu_padding
;
111 unsigned char aal5_trailer
[ATM_AAL5_TRAILER
];
114 #define UDSL_SKB(x) ((struct udsl_control *)(x)->cb)
116 /* main driver data */
120 UDSL_LOADING_FIRMWARE
,
124 struct udsl_instance_data
{
125 struct kref refcount
;
126 struct semaphore serialize
;
128 /* USB device part */
129 struct usb_device
*usb_dev
;
130 char description
[64];
134 const char *driver_name
;
136 /* ATM device part */
137 struct atm_dev
*atm_dev
;
138 struct list_head vcc_list
;
141 int (*firmware_wait
) (struct udsl_instance_data
*);
142 enum udsl_status status
;
143 wait_queue_head_t firmware_waiters
;
146 struct udsl_receiver receivers
[UDSL_MAX_RCV_URBS
];
147 struct udsl_receive_buffer receive_buffers
[UDSL_MAX_RCV_BUFS
];
149 spinlock_t receive_lock
;
150 struct list_head spare_receivers
;
151 struct list_head filled_receive_buffers
;
153 struct tasklet_struct receive_tasklet
;
154 struct list_head spare_receive_buffers
;
157 struct udsl_sender senders
[UDSL_MAX_SND_URBS
];
158 struct udsl_send_buffer send_buffers
[UDSL_MAX_SND_BUFS
];
160 struct sk_buff_head sndqueue
;
162 spinlock_t send_lock
;
163 struct list_head spare_senders
;
164 struct list_head spare_send_buffers
;
166 struct tasklet_struct send_tasklet
;
167 struct sk_buff
*current_skb
; /* being emptied */
168 struct udsl_send_buffer
*current_buffer
; /* being filled */
169 struct list_head filled_send_buffers
;
172 extern int udsl_instance_setup(struct usb_device
*dev
,
173 struct udsl_instance_data
*instance
);
174 extern void udsl_instance_disconnect(struct udsl_instance_data
*instance
);
175 extern void udsl_get_instance(struct udsl_instance_data
*instance
);
176 extern void udsl_put_instance(struct udsl_instance_data
*instance
);