staging: r8188eu: introduce new include dir for RTL8188eu driver
[linux-2.6-microblaze.git] / drivers / staging / r8188eu / include / osdep_intf.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17  *
18  *
19  ******************************************************************************/
20
21 #ifndef __OSDEP_INTF_H_
22 #define __OSDEP_INTF_H_
23
24 #include <osdep_service.h>
25 #include <drv_types.h>
26
27 struct intf_priv {
28         u8 *intf_dev;
29         u32     max_iosz;       /* USB2.0: 128, USB1.1: 64, SDIO:64 */
30         u32     max_xmitsz; /* USB2.0: unlimited, SDIO:512 */
31         u32     max_recvsz; /* USB2.0: unlimited, SDIO:512 */
32
33         u8 *io_rwmem;
34         u8 *allocated_io_rwmem;
35         u32     io_wsz; /* unit: 4bytes */
36         u32     io_rsz;/* unit: 4bytes */
37         u8 intf_status;
38
39         void (*_bus_io)(u8 *priv);
40
41 /*
42 Under Sync. IRP (SDIO/USB)
43 A protection mechanism is necessary for the io_rwmem(read/write protocol)
44
45 Under Async. IRP (SDIO/USB)
46 The protection mechanism is through the pending queue.
47 */
48         struct mutex ioctl_mutex;
49         /*  when in USB, IO is through interrupt in/out endpoints */
50         struct usb_device       *udev;
51         struct urb *piorw_urb;
52         u8 io_irp_cnt;
53         u8 bio_irp_pending;
54         struct semaphore  io_retevt;
55         struct timer_list io_timer;
56         u8 bio_irp_timeout;
57         u8 bio_timer_cancel;
58 };
59
60 u8 rtw_init_drv_sw(struct adapter *padapter);
61 u8 rtw_free_drv_sw(struct adapter *padapter);
62 u8 rtw_reset_drv_sw(struct adapter *padapter);
63
64 u32 rtw_start_drv_threads(struct adapter *padapter);
65 void rtw_stop_drv_threads (struct adapter *padapter);
66 void rtw_cancel_all_timer(struct adapter *padapter);
67
68 int rtw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
69
70 int rtw_init_netdev_name(struct net_device *pnetdev, const char *ifname);
71 struct net_device *rtw_init_netdev(struct adapter *padapter);
72 u16 rtw_recv_select_queue(struct sk_buff *skb);
73 void rtw_proc_init_one(struct net_device *dev);
74 void rtw_proc_remove_one(struct net_device *dev);
75
76 void rtw_ips_dev_unload(struct adapter *padapter);
77
78 int rtw_ips_pwr_up(struct adapter *padapter);
79 void rtw_ips_pwr_down(struct adapter *padapter);
80 int rtw_hw_suspend(struct adapter *padapter);
81 int rtw_hw_resume(struct adapter *padapter);
82
83 #endif  /* _OSDEP_INTF_H_ */