8723BU: Update 8723BU wifi driver to version v4.3.16_14189.20150519_BTCOEX2015119...
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rockchip_wlan / rtl8723bu / 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
25 struct intf_priv {
26
27         u8 *intf_dev;
28         u32     max_iosz;       //USB2.0: 128, USB1.1: 64, SDIO:64
29         u32     max_xmitsz; //USB2.0: unlimited, SDIO:512
30         u32     max_recvsz; //USB2.0: unlimited, SDIO:512
31
32         volatile u8 *io_rwmem;
33         volatile u8 *allocated_io_rwmem;
34         u32     io_wsz; //unit: 4bytes
35         u32     io_rsz;//unit: 4bytes
36         u8 intf_status;
37
38         void (*_bus_io)(u8 *priv);
39
40 /*
41 Under Sync. IRP (SDIO/USB)
42 A protection mechanism is necessary for the io_rwmem(read/write protocol)
43
44 Under Async. IRP (SDIO/USB)
45 The protection mechanism is through the pending queue.
46 */
47
48         _mutex ioctl_mutex;
49
50
51 #ifdef PLATFORM_LINUX
52         #ifdef CONFIG_USB_HCI
53         // when in USB, IO is through interrupt in/out endpoints
54         struct usb_device       *udev;
55         PURB    piorw_urb;
56         u8 io_irp_cnt;
57         u8 bio_irp_pending;
58         _sema io_retevt;
59         _timer  io_timer;
60         u8 bio_irp_timeout;
61         u8 bio_timer_cancel;
62         #endif
63 #endif
64
65 #ifdef PLATFORM_OS_XP
66         #ifdef CONFIG_SDIO_HCI
67                 // below is for io_rwmem...
68                 PMDL pmdl;
69                 PSDBUS_REQUEST_PACKET  sdrp;
70                 PSDBUS_REQUEST_PACKET  recv_sdrp;
71                 PSDBUS_REQUEST_PACKET  xmit_sdrp;
72
73                         PIRP            piorw_irp;
74
75         #endif
76         #ifdef CONFIG_USB_HCI
77                 PURB    piorw_urb;
78                 PIRP            piorw_irp;
79                 u8 io_irp_cnt;
80                 u8 bio_irp_pending;
81                 _sema io_retevt;
82         #endif
83 #endif
84
85 };
86
87
88 #ifdef CONFIG_R871X_TEST
89 int rtw_start_pseudo_adhoc(_adapter *padapter);
90 int rtw_stop_pseudo_adhoc(_adapter *padapter);
91 #endif
92
93 struct dvobj_priv *devobj_init(void);
94 void devobj_deinit(struct dvobj_priv *pdvobj);
95
96 u8 rtw_init_drv_sw(_adapter *padapter);
97 u8 rtw_free_drv_sw(_adapter *padapter);
98 u8 rtw_reset_drv_sw(_adapter *padapter);
99 void rtw_dev_unload(PADAPTER padapter);
100
101 u32 rtw_start_drv_threads(_adapter *padapter);
102 void rtw_stop_drv_threads (_adapter *padapter);
103 #if defined(CONFIG_WOWLAN) || defined(CONFIG_AP_WOWLAN)
104 void rtw_cancel_dynamic_chk_timer(_adapter *padapter);
105 #endif
106 void rtw_cancel_all_timer(_adapter *padapter);
107
108 #ifdef PLATFORM_LINUX
109 int rtw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
110
111 int rtw_init_netdev_name(struct net_device *pnetdev, const char *ifname);
112 struct net_device *rtw_init_netdev(_adapter *padapter);
113 void rtw_unregister_netdev(_adapter *adapter);
114 void rtw_unregister_netdevs(struct dvobj_priv *dvobj);
115
116 #if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,35))
117 u16 rtw_recv_select_queue(struct sk_buff *skb);
118 #endif //LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,35)
119
120 int rtw_ndev_notifier_register(void);
121 void rtw_ndev_notifier_unregister(void);
122
123 #include "../os_dep/linux/rtw_proc.h"
124
125 #ifdef CONFIG_IOCTL_CFG80211
126 #include "../os_dep/linux/ioctl_cfg80211.h"
127 #endif //CONFIG_IOCTL_CFG80211
128
129 #endif //PLATFORM_LINUX
130
131
132 #ifdef PLATFORM_FREEBSD
133 extern int rtw_ioctl(struct ifnet * ifp, u_long cmd, caddr_t data);
134 #endif
135
136 void rtw_ips_dev_unload(_adapter *padapter);
137
138 #ifdef CONFIG_IPS
139 int rtw_ips_pwr_up(_adapter *padapter);
140 void rtw_ips_pwr_down(_adapter *padapter);
141 #endif
142
143 #ifdef CONFIG_CONCURRENT_MODE
144 struct _io_ops;
145 _adapter *rtw_drv_if2_init(_adapter *primary_padapter, void (*set_intf_ops)(_adapter *primary_padapter,struct _io_ops *pops));
146 void rtw_drv_if2_free(_adapter *if2);
147 void rtw_drv_if2_stop(_adapter *if2);
148 #ifdef CONFIG_MULTI_VIR_IFACES
149 struct dvobj_priv;
150 _adapter *rtw_drv_add_vir_if(_adapter *primary_padapter, void (*set_intf_ops)(_adapter *primary_padapter,struct _io_ops *pops));
151 void rtw_drv_stop_vir_ifaces(struct dvobj_priv *dvobj);
152 void rtw_drv_free_vir_ifaces(struct dvobj_priv *dvobj);
153 #endif //CONFIG_MULTI_VIR_IFACES
154 #endif
155
156 int rtw_drv_register_netdev(_adapter *padapter);
157 void rtw_ndev_destructor(_nic_hdl ndev);
158
159 #ifdef CONFIG_ARP_KEEP_ALIVE
160 int     rtw_gw_addr_query(_adapter *padapter);
161 #endif
162
163 int rtw_suspend_common(_adapter *padapter);
164 int rtw_resume_common(_adapter *padapter);
165
166 #endif  //_OSDEP_INTF_H_
167