Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph...
[deliverable/linux.git] / drivers / net / wireless / zd1211rw / zd_usb.h
CommitLineData
66bb42fd
DD
1/* ZD1211 USB-WLAN driver for Linux
2 *
3 * Copyright (C) 2005-2007 Ulrich Kunitz <kune@deine-taler.de>
4 * Copyright (C) 2006-2007 Daniel Drake <dsd@gentoo.org>
e85d0918
DD
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#ifndef _ZD_USB_H
22#define _ZD_USB_H
23
24#include <linux/completion.h>
25#include <linux/netdevice.h>
26#include <linux/spinlock.h>
27#include <linux/skbuff.h>
28#include <linux/usb.h>
29
30#include "zd_def.h"
e85d0918 31
459c51ad
DD
32#define ZD_USB_TX_HIGH 5
33#define ZD_USB_TX_LOW 2
34
a0fd751f
JK
35#define ZD_TX_TIMEOUT (HZ * 5)
36#define ZD_TX_WATCHDOG_INTERVAL round_jiffies_relative(HZ)
1f6ccccc 37#define ZD_RX_IDLE_INTERVAL round_jiffies_relative(30 * HZ)
a0fd751f 38
e85d0918
DD
39enum devicetype {
40 DEVICE_ZD1211 = 0,
41 DEVICE_ZD1211B = 1,
a1030e92 42 DEVICE_INSTALLER = 2,
e85d0918
DD
43};
44
45enum endpoints {
46 EP_CTRL = 0,
47 EP_DATA_OUT = 1,
48 EP_DATA_IN = 2,
49 EP_INT_IN = 3,
50 EP_REGS_OUT = 4,
51};
52
53enum {
54 USB_MAX_TRANSFER_SIZE = 4096, /* bytes */
55 /* FIXME: The original driver uses this value. We have to check,
56 * whether the MAX_TRANSFER_SIZE is sufficient and this needs only be
57 * used if one combined frame is split over two USB transactions.
58 */
59 USB_MAX_RX_SIZE = 4800, /* bytes */
60 USB_MAX_IOWRITE16_COUNT = 15,
61 USB_MAX_IOWRITE32_COUNT = USB_MAX_IOWRITE16_COUNT/2,
62 USB_MAX_IOREAD16_COUNT = 15,
63 USB_MAX_IOREAD32_COUNT = USB_MAX_IOREAD16_COUNT/2,
64 USB_MIN_RFWRITE_BIT_COUNT = 16,
65 USB_MAX_RFWRITE_BIT_COUNT = 28,
66 USB_MAX_EP_INT_BUFFER = 64,
67 USB_ZD1211B_BCD_DEVICE = 0x4810,
68};
69
70enum control_requests {
71 USB_REQ_WRITE_REGS = 0x21,
72 USB_REQ_READ_REGS = 0x22,
73 USB_REQ_WRITE_RF = 0x23,
74 USB_REQ_PROG_FLASH = 0x24,
75 USB_REQ_EEPROM_START = 0x0128, /* ? request is a byte */
76 USB_REQ_EEPROM_MID = 0x28,
77 USB_REQ_EEPROM_END = 0x0228, /* ? request is a byte */
78 USB_REQ_FIRMWARE_DOWNLOAD = 0x30,
79 USB_REQ_FIRMWARE_CONFIRM = 0x31,
80 USB_REQ_FIRMWARE_READ_DATA = 0x32,
81};
82
83struct usb_req_read_regs {
84 __le16 id;
85 __le16 addr[0];
ba2d3587 86} __packed;
e85d0918
DD
87
88struct reg_data {
89 __le16 addr;
90 __le16 value;
ba2d3587 91} __packed;
e85d0918
DD
92
93struct usb_req_write_regs {
94 __le16 id;
95 struct reg_data reg_writes[0];
ba2d3587 96} __packed;
e85d0918
DD
97
98enum {
99 RF_IF_LE = 0x02,
100 RF_CLK = 0x04,
101 RF_DATA = 0x08,
102};
103
104struct usb_req_rfwrite {
105 __le16 id;
106 __le16 value;
107 /* 1: 3683a */
108 /* 2: other (default) */
109 __le16 bits;
110 /* RF2595: 24 */
111 __le16 bit_values[0];
fbd5d17b 112 /* (ZD_CR203 & ~(RF_IF_LE | RF_CLK | RF_DATA)) | (bit ? RF_DATA : 0) */
ba2d3587 113} __packed;
e85d0918
DD
114
115/* USB interrupt */
116
117enum usb_int_id {
118 USB_INT_TYPE = 0x01,
119 USB_INT_ID_REGS = 0x90,
120 USB_INT_ID_RETRY_FAILED = 0xa0,
121};
122
123enum usb_int_flags {
124 USB_INT_READ_REGS_EN = 0x01,
125};
126
127struct usb_int_header {
128 u8 type; /* must always be 1 */
129 u8 id;
ba2d3587 130} __packed;
e85d0918
DD
131
132struct usb_int_regs {
133 struct usb_int_header hdr;
134 struct reg_data regs[0];
ba2d3587 135} __packed;
e85d0918
DD
136
137struct usb_int_retry_fail {
138 struct usb_int_header hdr;
139 u8 new_rate;
140 u8 _dummy;
141 u8 addr[ETH_ALEN];
142 u8 ibss_wakeup_dest;
ba2d3587 143} __packed;
e85d0918
DD
144
145struct read_regs_int {
146 struct completion completion;
c900eff3
JK
147 struct usb_req_read_regs *req;
148 unsigned int req_count;
e85d0918
DD
149 /* Stores the USB int structure and contains the USB address of the
150 * first requested register before request.
151 */
152 u8 buffer[USB_MAX_EP_INT_BUFFER];
153 int length;
154 __le16 cr_int_addr;
155};
156
157struct zd_ioreq16 {
158 zd_addr_t addr;
159 u16 value;
160};
161
162struct zd_ioreq32 {
163 zd_addr_t addr;
164 u32 value;
165};
166
167struct zd_usb_interrupt {
168 struct read_regs_int read_regs;
169 spinlock_t lock;
170 struct urb *urb;
4a3b0874
JK
171 void *buffer;
172 dma_addr_t buffer_dma;
e85d0918 173 int interval;
c900eff3
JK
174 atomic_t read_regs_enabled;
175 u8 read_regs_int_overridden:1;
e85d0918
DD
176};
177
178static inline struct usb_int_regs *get_read_regs(struct zd_usb_interrupt *intr)
179{
180 return (struct usb_int_regs *)intr->read_regs.buffer;
181}
182
459c51ad 183#define RX_URBS_COUNT 5
e85d0918
DD
184
185struct zd_usb_rx {
186 spinlock_t lock;
1f6ccccc
JK
187 struct mutex setup_mutex;
188 struct delayed_work idle_work;
02353573 189 struct tasklet_struct reset_timer_tasklet;
1f6ccccc 190 u8 fragment[2 * USB_MAX_RX_SIZE];
e85d0918
DD
191 unsigned int fragment_length;
192 unsigned int usb_packet_size;
193 struct urb **urbs;
194 int urbs_count;
195};
196
459c51ad
DD
197/**
198 * struct zd_usb_tx - structure used for transmitting frames
78fc800f 199 * @enabled: atomic enabled flag, indicates whether tx is enabled
459c51ad 200 * @lock: lock for transmission
78fc800f 201 * @submitted: anchor for URBs sent to device
459c51ad
DD
202 * @submitted_urbs: atomic integer that counts the URBs having sent to the
203 * device, which haven't been completed
459c51ad
DD
204 * @stopped: indicates whether higher level tx queues are stopped
205 */
e85d0918 206struct zd_usb_tx {
78fc800f 207 atomic_t enabled;
e85d0918 208 spinlock_t lock;
a0fd751f
JK
209 struct delayed_work watchdog_work;
210 struct sk_buff_head submitted_skbs;
78fc800f 211 struct usb_anchor submitted;
459c51ad 212 int submitted_urbs;
a0fd751f 213 u8 stopped:1, watchdog_enabled:1;
e85d0918
DD
214};
215
0ce34bc8
DD
216/* Contains the usb parts. The structure doesn't require a lock because intf
217 * will not be changed after initialization.
e85d0918
DD
218 */
219struct zd_usb {
220 struct zd_usb_interrupt intr;
221 struct zd_usb_rx rx;
222 struct zd_usb_tx tx;
223 struct usb_interface *intf;
eefdbec1
JK
224 struct usb_anchor submitted_cmds;
225 struct urb *urb_async_waiting;
226 int cmd_error;
9bca0c3b 227 u8 req_buf[64]; /* zd_usb_iowrite16v needs 62 bytes */
eefdbec1 228 u8 is_zd1211b:1, initialized:1, was_running:1, in_async:1;
e85d0918
DD
229};
230
231#define zd_usb_dev(usb) (&usb->intf->dev)
232
233static inline struct usb_device *zd_usb_to_usbdev(struct zd_usb *usb)
234{
235 return interface_to_usbdev(usb->intf);
236}
237
459c51ad 238static inline struct ieee80211_hw *zd_intf_to_hw(struct usb_interface *intf)
e85d0918
DD
239{
240 return usb_get_intfdata(intf);
241}
242
459c51ad 243static inline struct ieee80211_hw *zd_usb_to_hw(struct zd_usb *usb)
e85d0918 244{
459c51ad 245 return zd_intf_to_hw(usb->intf);
e85d0918
DD
246}
247
459c51ad 248void zd_usb_init(struct zd_usb *usb, struct ieee80211_hw *hw,
e85d0918
DD
249 struct usb_interface *intf);
250int zd_usb_init_hw(struct zd_usb *usb);
251void zd_usb_clear(struct zd_usb *usb);
252
253int zd_usb_scnprint_id(struct zd_usb *usb, char *buffer, size_t size);
254
a0fd751f
JK
255void zd_tx_watchdog_enable(struct zd_usb *usb);
256void zd_tx_watchdog_disable(struct zd_usb *usb);
257
e85d0918
DD
258int zd_usb_enable_int(struct zd_usb *usb);
259void zd_usb_disable_int(struct zd_usb *usb);
260
261int zd_usb_enable_rx(struct zd_usb *usb);
262void zd_usb_disable_rx(struct zd_usb *usb);
263
1f6ccccc
JK
264void zd_usb_reset_rx_idle_timer(struct zd_usb *usb);
265
459c51ad
DD
266void zd_usb_enable_tx(struct zd_usb *usb);
267void zd_usb_disable_tx(struct zd_usb *usb);
268
269int zd_usb_tx(struct zd_usb *usb, struct sk_buff *skb);
e85d0918
DD
270
271int zd_usb_ioread16v(struct zd_usb *usb, u16 *values,
272 const zd_addr_t *addresses, unsigned int count);
273
274static inline int zd_usb_ioread16(struct zd_usb *usb, u16 *value,
275 const zd_addr_t addr)
276{
2c208890 277 return zd_usb_ioread16v(usb, value, &addr, 1);
e85d0918
DD
278}
279
8662b251
JK
280void zd_usb_iowrite16v_async_start(struct zd_usb *usb);
281int zd_usb_iowrite16v_async_end(struct zd_usb *usb, unsigned int timeout);
282int zd_usb_iowrite16v_async(struct zd_usb *usb, const struct zd_ioreq16 *ioreqs,
283 unsigned int count);
e85d0918
DD
284int zd_usb_iowrite16v(struct zd_usb *usb, const struct zd_ioreq16 *ioreqs,
285 unsigned int count);
286
287int zd_usb_rfwrite(struct zd_usb *usb, u32 value, u8 bits);
288
74553aed
DD
289int zd_usb_read_fw(struct zd_usb *usb, zd_addr_t addr, u8 *data, u16 len);
290
bc5f06a8
UK
291extern struct workqueue_struct *zd_workqueue;
292
e85d0918 293#endif /* _ZD_USB_H */
This page took 0.75381 seconds and 5 git commands to generate.