1*4882a593Smuzhiyun /****************************************************************************** 2*4882a593Smuzhiyun * 3*4882a593Smuzhiyun * Copyright(c) 2007 - 2017 Realtek Corporation. 4*4882a593Smuzhiyun * 5*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or modify it 6*4882a593Smuzhiyun * under the terms of version 2 of the GNU General Public License as 7*4882a593Smuzhiyun * published by the Free Software Foundation. 8*4882a593Smuzhiyun * 9*4882a593Smuzhiyun * This program is distributed in the hope that it will be useful, but WITHOUT 10*4882a593Smuzhiyun * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11*4882a593Smuzhiyun * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12*4882a593Smuzhiyun * more details. 13*4882a593Smuzhiyun * 14*4882a593Smuzhiyun *****************************************************************************/ 15*4882a593Smuzhiyun #ifndef __RECV_OSDEP_H_ 16*4882a593Smuzhiyun #define __RECV_OSDEP_H_ 17*4882a593Smuzhiyun 18*4882a593Smuzhiyun 19*4882a593Smuzhiyun extern sint _rtw_init_recv_priv(struct recv_priv *precvpriv, _adapter *padapter); 20*4882a593Smuzhiyun extern void _rtw_free_recv_priv(struct recv_priv *precvpriv); 21*4882a593Smuzhiyun 22*4882a593Smuzhiyun 23*4882a593Smuzhiyun extern s32 rtw_recv_entry(union recv_frame *precv_frame); 24*4882a593Smuzhiyun void rtw_rframe_set_os_pkt(union recv_frame *rframe); 25*4882a593Smuzhiyun extern int rtw_recv_indicatepkt(_adapter *adapter, union recv_frame *precv_frame); 26*4882a593Smuzhiyun extern void rtw_recv_returnpacket(_nic_hdl cnxt, _pkt *preturnedpkt); 27*4882a593Smuzhiyun 28*4882a593Smuzhiyun #ifdef CONFIG_WIFI_MONITOR 29*4882a593Smuzhiyun extern int rtw_recv_monitor(_adapter *padapter, union recv_frame *precv_frame); 30*4882a593Smuzhiyun #endif /* CONFIG_WIFI_MONITOR */ 31*4882a593Smuzhiyun 32*4882a593Smuzhiyun #ifdef CONFIG_HOSTAPD_MLME 33*4882a593Smuzhiyun extern void rtw_hostapd_mlme_rx(_adapter *padapter, union recv_frame *precv_frame); 34*4882a593Smuzhiyun #endif 35*4882a593Smuzhiyun 36*4882a593Smuzhiyun struct sta_info; 37*4882a593Smuzhiyun extern void rtw_handle_tkip_mic_err(_adapter *padapter, struct sta_info *sta, u8 bgroup); 38*4882a593Smuzhiyun 39*4882a593Smuzhiyun 40*4882a593Smuzhiyun int rtw_os_recv_resource_init(struct recv_priv *precvpriv, _adapter *padapter); 41*4882a593Smuzhiyun int rtw_os_recv_resource_alloc(_adapter *padapter, union recv_frame *precvframe); 42*4882a593Smuzhiyun void rtw_os_recv_resource_free(struct recv_priv *precvpriv); 43*4882a593Smuzhiyun 44*4882a593Smuzhiyun 45*4882a593Smuzhiyun int rtw_os_alloc_recvframe(_adapter *padapter, union recv_frame *precvframe, u8 *pdata, _pkt *pskb); 46*4882a593Smuzhiyun int rtw_os_recvframe_duplicate_skb(_adapter *padapter, union recv_frame *pcloneframe, _pkt *pskb); 47*4882a593Smuzhiyun void rtw_os_free_recvframe(union recv_frame *precvframe); 48*4882a593Smuzhiyun 49*4882a593Smuzhiyun 50*4882a593Smuzhiyun int rtw_os_recvbuf_resource_alloc(_adapter *padapter, struct recv_buf *precvbuf, u32 size); 51*4882a593Smuzhiyun int rtw_os_recvbuf_resource_free(_adapter *padapter, struct recv_buf *precvbuf); 52*4882a593Smuzhiyun 53*4882a593Smuzhiyun _pkt *rtw_os_alloc_msdu_pkt(union recv_frame *prframe, const u8 *da, const u8 *sa 54*4882a593Smuzhiyun , u8 *msdu ,u16 msdu_len, enum rtw_rx_llc_hdl llc_hdl); 55*4882a593Smuzhiyun void rtw_os_recv_indicate_pkt(_adapter *padapter, _pkt *pkt, union recv_frame *rframe); 56*4882a593Smuzhiyun 57*4882a593Smuzhiyun void rtw_os_read_port(_adapter *padapter, struct recv_buf *precvbuf); 58*4882a593Smuzhiyun 59*4882a593Smuzhiyun #ifdef PLATFORM_LINUX 60*4882a593Smuzhiyun #ifdef CONFIG_RTW_NAPI 61*4882a593Smuzhiyun #include <linux/netdevice.h> /* struct napi_struct */ 62*4882a593Smuzhiyun 63*4882a593Smuzhiyun int rtw_recv_napi_poll(struct napi_struct *, int budget); 64*4882a593Smuzhiyun #ifdef CONFIG_RTW_NAPI_DYNAMIC 65*4882a593Smuzhiyun void dynamic_napi_th_chk (_adapter *adapter); 66*4882a593Smuzhiyun #endif /* CONFIG_RTW_NAPI_DYNAMIC */ 67*4882a593Smuzhiyun #endif /* CONFIG_RTW_NAPI */ 68*4882a593Smuzhiyun #endif /* PLATFORM_LINUX */ 69*4882a593Smuzhiyun 70*4882a593Smuzhiyun void rtw_rx_dbg_monitor_ip_statistic(_adapter *padapter, _pkt *pkt); 71*4882a593Smuzhiyun 72*4882a593Smuzhiyun #endif /* */ 73