2 * Copyright (c) 2012 GCT Semiconductor, Inc. All rights reserved.
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
17 #include <linux/types.h>
18 #include <linux/usb.h>
19 #include <linux/list.h>
21 #define B_DIFF_DL_DRV (1<<4)
22 #define B_DOWNLOAD (1 << 5)
23 #define MAX_NR_SDU_BUF 64
26 struct list_head list
;
27 #if defined(CONFIG_WIMAX_GDM72XX_USB_PM) || defined(CONFIG_WIMAX_GDM72XX_K_MODE)
28 struct list_head p_list
;
30 struct tx_cxt
*tx_cxt
;
35 void (*callback
)(void *cb_data
);
40 struct list_head free_list
;
41 struct list_head sdu_list
;
42 struct list_head hci_list
;
43 #if defined(CONFIG_WIMAX_GDM72XX_USB_PM) || defined(CONFIG_WIMAX_GDM72XX_K_MODE)
44 struct list_head pending_list
;
51 struct list_head list
;
52 struct rx_cxt
*rx_cxt
;
57 void (*callback
)(void *cb_data
, void *data
, int len
);
62 struct list_head free_list
;
63 struct list_head used_list
;
68 struct usb_device
*usbdev
;
69 #ifdef CONFIG_WIMAX_GDM72XX_USB_PM
70 struct work_struct pm_ws
;
72 struct usb_interface
*intf
;
74 #ifdef CONFIG_WIMAX_GDM72XX_K_MODE
76 struct list_head list
;
85 #endif /* __GDM_USB_H__ */