xref: /linux/drivers/staging/rtl8723bs/include/recv_osdep.h (revision fcc8487d477a3452a1d0ccbdd4c5e0e1e3cb8bed)
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  ******************************************************************************/
15 #ifndef __RECV_OSDEP_H_
16 #define __RECV_OSDEP_H_
17 
18 
19 extern sint _rtw_init_recv_priv(struct recv_priv *precvpriv, struct adapter *padapter);
20 extern void _rtw_free_recv_priv (struct recv_priv *precvpriv);
21 
22 
23 extern s32  rtw_recv_entry(union recv_frame *precv_frame);
24 extern int rtw_recv_indicatepkt(struct adapter *adapter, union recv_frame *precv_frame);
25 extern void rtw_recv_returnpacket(_nic_hdl cnxt, _pkt *preturnedpkt);
26 
27 extern void rtw_handle_tkip_mic_err(struct adapter *padapter, u8 bgroup);
28 
29 int	rtw_init_recv_priv(struct recv_priv *precvpriv, struct adapter *padapter);
30 void rtw_free_recv_priv (struct recv_priv *precvpriv);
31 
32 
33 int rtw_os_recv_resource_alloc(struct adapter *padapter, union recv_frame *precvframe);
34 void rtw_os_recv_resource_free(struct recv_priv *precvpriv);
35 
36 
37 void rtw_os_free_recvframe(union recv_frame *precvframe);
38 
39 
40 int rtw_os_recvbuf_resource_free(struct adapter *padapter, struct recv_buf *precvbuf);
41 
42 _pkt *rtw_os_alloc_msdu_pkt(union recv_frame *prframe, u16 nSubframe_Length, u8 *pdata);
43 void rtw_os_recv_indicate_pkt(struct adapter *padapter, _pkt *pkt, struct rx_pkt_attrib *pattrib);
44 
45 void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl);
46 
47 
48 #endif /*  */
49