2 * Copyright (c) 2010-2011 Atheros Communications Inc.
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #define MAJOR_VERSION_REQ 1
21 #define MINOR_VERSION_REQ 3
23 #define IS_AR7010_DEVICE(_v) (((_v) == AR9280_USB) || ((_v) == AR9287_USB))
25 #define AR9271_FIRMWARE 0x501000
26 #define AR9271_FIRMWARE_TEXT 0x903000
27 #define AR7010_FIRMWARE_TEXT 0x906000
29 #define FIRMWARE_DOWNLOAD 0x30
30 #define FIRMWARE_DOWNLOAD_COMP 0x31
32 #define ATH_USB_RX_STREAM_MODE_TAG 0x4e00
33 #define ATH_USB_TX_STREAM_MODE_TAG 0x697e
35 /* FIXME: Verify these numbers (with Windows) */
36 #define MAX_TX_URB_NUM 8
37 #define MAX_TX_BUF_NUM 256
38 #define MAX_TX_BUF_SIZE 32768
39 #define MAX_TX_AGGR_NUM 20
41 #define MAX_RX_URB_NUM 8
42 #define MAX_RX_BUF_SIZE 16384
43 #define MAX_PKT_NUM_IN_TRANSFER 10
45 #define MAX_REG_OUT_URB_NUM 1
46 #define MAX_REG_IN_URB_NUM 64
48 #define MAX_REG_IN_BUF_SIZE 64
50 /* USB Endpoint definition */
51 #define USB_WLAN_TX_PIPE 1
52 #define USB_WLAN_RX_PIPE 2
53 #define USB_REG_IN_PIPE 3
54 #define USB_REG_OUT_PIPE 4
56 #define HIF_USB_MAX_RXPIPES 2
57 #define HIF_USB_MAX_TXPIPES 4
64 struct sk_buff_head skb_queue
;
65 struct hif_device_usb
*hif_dev
;
66 struct list_head list
;
69 #define HIF_USB_TX_STOP BIT(0)
70 #define HIF_USB_TX_FLUSH BIT(1)
76 struct sk_buff_head tx_skb_queue
;
77 struct list_head tx_buf
;
78 struct list_head tx_pending
;
84 struct hif_device_usb
*hif_dev
;
87 #define HIF_USB_START BIT(0)
88 #define HIF_USB_READY BIT(1)
90 struct hif_device_usb
{
91 struct usb_device
*udev
;
92 struct usb_interface
*interface
;
93 const struct usb_device_id
*usb_device_id
;
96 struct completion fw_done
;
97 struct htc_target
*htc_handle
;
99 struct usb_anchor regout_submitted
;
100 struct usb_anchor rx_submitted
;
101 struct usb_anchor reg_in_submitted
;
102 struct usb_anchor mgmt_submitted
;
103 struct sk_buff
*remain_skb
;
110 u8 flags
; /* HIF_USB_* */
113 int ath9k_hif_usb_init(void);
114 void ath9k_hif_usb_exit(void);
116 #endif /* HTC_USB_H */