1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
4 <http://rt2x00.serialmonkey.com>
10 Abstract: Data structures for the rt2x00usb module.
16 #include <linux/usb.h>
18 #define to_usb_device_intf(d) \
20 struct usb_interface *intf = to_usb_interface(d); \
21 interface_to_usbdev(intf); \
25 * For USB vendor requests we need to pass a timeout time in ms, for this we
26 * use the REGISTER_TIMEOUT, however when loading firmware or read EEPROM
27 * a higher value is required. In that case we use the REGISTER_TIMEOUT_FIRMWARE
30 #define REGISTER_TIMEOUT 100
31 #define REGISTER_TIMEOUT_FIRMWARE 1000
32 #define EEPROM_TIMEOUT 2000
37 #define CSR_CACHE_SIZE 64
42 #define USB_VENDOR_REQUEST ( USB_TYPE_VENDOR | USB_RECIP_DEVICE )
43 #define USB_VENDOR_REQUEST_IN ( USB_DIR_IN | USB_VENDOR_REQUEST )
44 #define USB_VENDOR_REQUEST_OUT ( USB_DIR_OUT | USB_VENDOR_REQUEST )
47 * enum rt2x00usb_vendor_request: USB vendor commands.
49 enum rt2x00usb_vendor_request
{
57 USB_LED_CONTROL
= 10, /* RT73USB */
62 * enum rt2x00usb_mode_offset: Device modes offset.
64 enum rt2x00usb_mode_offset
{
67 USB_MODE_FUNCTION
= 3,
69 USB_MODE_SLEEP
= 7, /* RT73USB */
70 USB_MODE_FIRMWARE
= 8, /* RT73USB */
71 USB_MODE_WAKEUP
= 9, /* RT73USB */
72 USB_MODE_AUTORUN
= 17, /* RT2800USB */
76 * rt2x00usb_vendor_request - Send register command to device
77 * @rt2x00dev: Pointer to &struct rt2x00_dev
78 * @request: USB vendor command (See &enum rt2x00usb_vendor_request)
79 * @requesttype: Request type &USB_VENDOR_REQUEST_*
80 * @offset: Register offset to perform action on
81 * @value: Value to write to device
82 * @buffer: Buffer where information will be read/written to by device
83 * @buffer_length: Size of &buffer
84 * @timeout: Operation timeout
86 * This is the main function to communicate with the device,
87 * the &buffer argument _must_ either be NULL or point to
88 * a buffer allocated by kmalloc. Failure to do so can lead
89 * to unexpected behavior depending on the architecture.
91 int rt2x00usb_vendor_request(struct rt2x00_dev
*rt2x00dev
,
92 const u8 request
, const u8 requesttype
,
93 const u16 offset
, const u16 value
,
94 void *buffer
, const u16 buffer_length
,
98 * rt2x00usb_vendor_request_buff - Send register command to device (buffered)
99 * @rt2x00dev: Pointer to &struct rt2x00_dev
100 * @request: USB vendor command (See &enum rt2x00usb_vendor_request)
101 * @requesttype: Request type &USB_VENDOR_REQUEST_*
102 * @offset: Register offset to perform action on
103 * @buffer: Buffer where information will be read/written to by device
104 * @buffer_length: Size of &buffer
106 * This function will use a previously with kmalloc allocated cache
107 * to communicate with the device. The contents of the buffer pointer
108 * will be copied to this cache when writing, or read from the cache
110 * Buffers send to &rt2x00usb_vendor_request _must_ be allocated with
111 * kmalloc. Hence the reason for using a previously allocated cache
112 * which has been allocated properly.
114 int rt2x00usb_vendor_request_buff(struct rt2x00_dev
*rt2x00dev
,
115 const u8 request
, const u8 requesttype
,
116 const u16 offset
, void *buffer
,
117 const u16 buffer_length
);
120 * rt2x00usb_vendor_request_buff - Send register command to device (buffered)
121 * @rt2x00dev: Pointer to &struct rt2x00_dev
122 * @request: USB vendor command (See &enum rt2x00usb_vendor_request)
123 * @requesttype: Request type &USB_VENDOR_REQUEST_*
124 * @offset: Register offset to perform action on
125 * @buffer: Buffer where information will be read/written to by device
126 * @buffer_length: Size of &buffer
127 * @timeout: Operation timeout
129 * A version of &rt2x00usb_vendor_request_buff which must be called
130 * if the usb_cache_mutex is already held.
132 int rt2x00usb_vendor_req_buff_lock(struct rt2x00_dev
*rt2x00dev
,
133 const u8 request
, const u8 requesttype
,
134 const u16 offset
, void *buffer
,
135 const u16 buffer_length
, const int timeout
);
138 * rt2x00usb_vendor_request_sw - Send single register command to device
139 * @rt2x00dev: Pointer to &struct rt2x00_dev
140 * @request: USB vendor command (See &enum rt2x00usb_vendor_request)
141 * @offset: Register offset to perform action on
142 * @value: Value to write to device
143 * @timeout: Operation timeout
145 * Simple wrapper around rt2x00usb_vendor_request to write a single
146 * command to the device. Since we don't use the buffer argument we
147 * don't have to worry about kmalloc here.
149 static inline int rt2x00usb_vendor_request_sw(struct rt2x00_dev
*rt2x00dev
,
155 return rt2x00usb_vendor_request(rt2x00dev
, request
,
156 USB_VENDOR_REQUEST_OUT
, offset
,
157 value
, NULL
, 0, timeout
);
161 * rt2x00usb_eeprom_read - Read eeprom from device
162 * @rt2x00dev: Pointer to &struct rt2x00_dev
163 * @eeprom: Pointer to eeprom array to store the information in
164 * @length: Number of bytes to read from the eeprom
166 * Simple wrapper around rt2x00usb_vendor_request to read the eeprom
167 * from the device. Note that the eeprom argument _must_ be allocated using
168 * kmalloc for correct handling inside the kernel USB layer.
170 static inline int rt2x00usb_eeprom_read(struct rt2x00_dev
*rt2x00dev
,
171 __le16
*eeprom
, const u16 length
)
173 return rt2x00usb_vendor_request(rt2x00dev
, USB_EEPROM_READ
,
174 USB_VENDOR_REQUEST_IN
, 0, 0,
175 eeprom
, length
, EEPROM_TIMEOUT
);
179 * rt2x00usb_register_read - Read 32bit register word
180 * @rt2x00dev: Device pointer, see &struct rt2x00_dev.
181 * @offset: Register offset
183 * This function is a simple wrapper for 32bit register access
184 * through rt2x00usb_vendor_request_buff().
186 static inline u32
rt2x00usb_register_read(struct rt2x00_dev
*rt2x00dev
,
187 const unsigned int offset
)
190 rt2x00usb_vendor_request_buff(rt2x00dev
, USB_MULTI_READ
,
191 USB_VENDOR_REQUEST_IN
, offset
,
193 return le32_to_cpu(reg
);
197 * rt2x00usb_register_read_lock - Read 32bit register word
198 * @rt2x00dev: Device pointer, see &struct rt2x00_dev.
199 * @offset: Register offset
201 * This function is a simple wrapper for 32bit register access
202 * through rt2x00usb_vendor_req_buff_lock().
204 static inline u32
rt2x00usb_register_read_lock(struct rt2x00_dev
*rt2x00dev
,
205 const unsigned int offset
)
208 rt2x00usb_vendor_req_buff_lock(rt2x00dev
, USB_MULTI_READ
,
209 USB_VENDOR_REQUEST_IN
, offset
,
210 ®
, sizeof(reg
), REGISTER_TIMEOUT
);
211 return le32_to_cpu(reg
);
215 * rt2x00usb_register_multiread - Read 32bit register words
216 * @rt2x00dev: Device pointer, see &struct rt2x00_dev.
217 * @offset: Register offset
218 * @value: Pointer to where register contents should be stored
219 * @length: Length of the data
221 * This function is a simple wrapper for 32bit register access
222 * through rt2x00usb_vendor_request_buff().
224 static inline void rt2x00usb_register_multiread(struct rt2x00_dev
*rt2x00dev
,
225 const unsigned int offset
,
226 void *value
, const u32 length
)
228 rt2x00usb_vendor_request_buff(rt2x00dev
, USB_MULTI_READ
,
229 USB_VENDOR_REQUEST_IN
, offset
,
234 * rt2x00usb_register_write - Write 32bit register word
235 * @rt2x00dev: Device pointer, see &struct rt2x00_dev.
236 * @offset: Register offset
237 * @value: Data which should be written
239 * This function is a simple wrapper for 32bit register access
240 * through rt2x00usb_vendor_request_buff().
242 static inline void rt2x00usb_register_write(struct rt2x00_dev
*rt2x00dev
,
243 const unsigned int offset
,
246 __le32 reg
= cpu_to_le32(value
);
247 rt2x00usb_vendor_request_buff(rt2x00dev
, USB_MULTI_WRITE
,
248 USB_VENDOR_REQUEST_OUT
, offset
,
253 * rt2x00usb_register_write_lock - Write 32bit register word
254 * @rt2x00dev: Device pointer, see &struct rt2x00_dev.
255 * @offset: Register offset
256 * @value: Data which should be written
258 * This function is a simple wrapper for 32bit register access
259 * through rt2x00usb_vendor_req_buff_lock().
261 static inline void rt2x00usb_register_write_lock(struct rt2x00_dev
*rt2x00dev
,
262 const unsigned int offset
,
265 __le32 reg
= cpu_to_le32(value
);
266 rt2x00usb_vendor_req_buff_lock(rt2x00dev
, USB_MULTI_WRITE
,
267 USB_VENDOR_REQUEST_OUT
, offset
,
268 ®
, sizeof(reg
), REGISTER_TIMEOUT
);
272 * rt2x00usb_register_multiwrite - Write 32bit register words
273 * @rt2x00dev: Device pointer, see &struct rt2x00_dev.
274 * @offset: Register offset
275 * @value: Data which should be written
276 * @length: Length of the data
278 * This function is a simple wrapper for 32bit register access
279 * through rt2x00usb_vendor_request_buff().
281 static inline void rt2x00usb_register_multiwrite(struct rt2x00_dev
*rt2x00dev
,
282 const unsigned int offset
,
286 rt2x00usb_vendor_request_buff(rt2x00dev
, USB_MULTI_WRITE
,
287 USB_VENDOR_REQUEST_OUT
, offset
,
288 (void *)value
, length
);
292 * rt2x00usb_regbusy_read - Read from register with busy check
293 * @rt2x00dev: Device pointer, see &struct rt2x00_dev.
294 * @offset: Register offset
295 * @field: Field to check if register is busy
296 * @reg: Pointer to where register contents should be stored
298 * This function will read the given register, and checks if the
299 * register is busy. If it is, it will sleep for a couple of
300 * microseconds before reading the register again. If the register
301 * is not read after a certain timeout, this function will return
304 int rt2x00usb_regbusy_read(struct rt2x00_dev
*rt2x00dev
,
305 const unsigned int offset
,
306 const struct rt2x00_field32 field
,
310 * rt2x00usb_register_read_async - Asynchronously read 32bit register word
311 * @rt2x00dev: Device pointer, see &struct rt2x00_dev.
312 * @offset: Register offset
313 * @callback: Functon to call when read completes.
315 * Submit a control URB to read a 32bit register. This safe to
316 * be called from atomic context. The callback will be called
317 * when the URB completes. Otherwise the function is similar
318 * to rt2x00usb_register_read().
319 * When the callback function returns false, the memory will be cleaned up,
320 * when it returns true, the urb will be fired again.
322 void rt2x00usb_register_read_async(struct rt2x00_dev
*rt2x00dev
,
323 const unsigned int offset
,
324 bool (*callback
)(struct rt2x00_dev
*, int, u32
));
329 void rt2x00usb_disable_radio(struct rt2x00_dev
*rt2x00dev
);
332 * struct queue_entry_priv_usb: Per entry USB specific information
334 * @urb: Urb structure used for device communication.
336 struct queue_entry_priv_usb
{
341 * struct queue_entry_priv_usb_bcn: Per TX entry USB specific information
343 * The first section should match &struct queue_entry_priv_usb exactly.
344 * rt2500usb can use this structure to send a guardian byte when working
347 * @urb: Urb structure used for device communication.
348 * @guardian_data: Set to 0, used for sending the guardian data.
349 * @guardian_urb: Urb structure used to send the guardian data.
351 struct queue_entry_priv_usb_bcn
{
354 unsigned int guardian_data
;
355 struct urb
*guardian_urb
;
359 * rt2x00usb_kick_queue - Kick data queue
360 * @queue: Data queue to kick
362 * This will walk through all entries of the queue and push all pending
363 * frames to the hardware as a single burst.
365 void rt2x00usb_kick_queue(struct data_queue
*queue
);
368 * rt2x00usb_flush_queue - Flush data queue
369 * @queue: Data queue to stop
370 * @drop: True to drop all pending frames.
372 * This will walk through all entries of the queue and will optionally
373 * kill all URB's which were send to the device, or at least wait until
374 * they have been returned from the device..
376 void rt2x00usb_flush_queue(struct data_queue
*queue
, bool drop
);
379 * rt2x00usb_watchdog - Watchdog for USB communication
380 * @rt2x00dev: Pointer to &struct rt2x00_dev
382 * Check the health of the USB communication and determine
383 * if timeouts have occurred. If this is the case, this function
384 * will reset all communication to restore functionality again.
386 void rt2x00usb_watchdog(struct rt2x00_dev
*rt2x00dev
);
389 * Device initialization handlers.
391 void rt2x00usb_clear_entry(struct queue_entry
*entry
);
392 int rt2x00usb_initialize(struct rt2x00_dev
*rt2x00dev
);
393 void rt2x00usb_uninitialize(struct rt2x00_dev
*rt2x00dev
);
396 * USB driver handlers.
398 int rt2x00usb_probe(struct usb_interface
*usb_intf
,
399 const struct rt2x00_ops
*ops
);
400 void rt2x00usb_disconnect(struct usb_interface
*usb_intf
);
402 int rt2x00usb_suspend(struct usb_interface
*usb_intf
, pm_message_t state
);
403 int rt2x00usb_resume(struct usb_interface
*usb_intf
);
405 #define rt2x00usb_suspend NULL
406 #define rt2x00usb_resume NULL
407 #endif /* CONFIG_PM */
409 #endif /* RT2X00USB_H */