2 * This file contains definitions for mwifiex USB interface driver.
4 * Copyright (C) 2012, Marvell International Ltd.
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
20 #ifndef _MWIFIEX_USB_H
21 #define _MWIFIEX_USB_H
23 #include <linux/usb.h>
25 #define USB8XXX_VID 0x1286
27 #define USB8797_PID_1 0x2043
28 #define USB8797_PID_2 0x2044
29 #define USB8897_PID_1 0x2045
30 #define USB8897_PID_2 0x2046
32 #define USB8XXX_FW_DNLD 1
33 #define USB8XXX_FW_READY 2
34 #define USB8XXX_FW_MAX_RETRY 3
36 #define MWIFIEX_TX_DATA_URB 6
37 #define MWIFIEX_RX_DATA_URB 6
38 #define MWIFIEX_USB_TIMEOUT 100
40 #define USB8797_DEFAULT_FW_NAME "mrvl/usb8797_uapsta.bin"
41 #define USB8897_DEFAULT_FW_NAME "mrvl/usb8897_uapsta.bin"
43 #define FW_DNLD_TX_BUF_SIZE 620
44 #define FW_DNLD_RX_BUF_SIZE 2048
45 #define FW_HAS_LAST_BLOCK 0x00000004
47 #define FW_DATA_XMIT_SIZE \
48 (sizeof(struct fw_header) + dlen + sizeof(u32))
51 struct mwifiex_adapter
*adapter
;
58 struct mwifiex_adapter
*adapter
;
59 struct usb_device
*udev
;
60 struct usb_interface
*intf
;
62 struct urb_context rx_cmd
;
63 atomic_t rx_cmd_urb_pending
;
64 struct urb_context rx_data_list
[MWIFIEX_RX_DATA_URB
];
67 atomic_t rx_data_urb_pending
;
70 atomic_t tx_data_urb_pending
;
71 atomic_t tx_cmd_urb_pending
;
72 int bulk_out_maxpktsize
;
73 struct urb_context tx_cmd
;
75 struct urb_context tx_data_list
[MWIFIEX_TX_DATA_URB
];
85 struct fw_sync_header
{
91 struct fw_header fw_hdr
;
96 /* This function is called after the card has woken up. */
98 mwifiex_pm_wakeup_card_complete(struct mwifiex_adapter
*adapter
)
103 #endif /*_MWIFIEX_USB_H */