recv_osdep.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. #ifndef __RECV_OSDEP_H_
  21. #define __RECV_OSDEP_H_
  22. extern sint _rtw_init_recv_priv(struct recv_priv *precvpriv, _adapter *padapter);
  23. extern void _rtw_free_recv_priv(struct recv_priv *precvpriv);
  24. extern s32 rtw_recv_entry(union recv_frame *precv_frame);
  25. extern int rtw_recv_indicatepkt(_adapter *adapter, union recv_frame *precv_frame);
  26. extern void rtw_recv_returnpacket(IN _nic_hdl cnxt, IN _pkt *preturnedpkt);
  27. extern int rtw_recv_monitor(_adapter *padapter, union recv_frame *precv_frame);
  28. extern void rtw_hostapd_mlme_rx(_adapter *padapter, union recv_frame *precv_frame);
  29. struct sta_info;
  30. extern void rtw_handle_tkip_mic_err(_adapter *padapter, struct sta_info *sta, u8 bgroup);
  31. int rtw_os_recv_resource_init(struct recv_priv *precvpriv, _adapter *padapter);
  32. int rtw_os_recv_resource_alloc(_adapter *padapter, union recv_frame *precvframe);
  33. void rtw_os_recv_resource_free(struct recv_priv *precvpriv);
  34. int rtw_os_alloc_recvframe(_adapter *padapter, union recv_frame *precvframe, u8 *pdata, _pkt *pskb);
  35. int rtw_os_recvframe_duplicate_skb(_adapter *padapter, union recv_frame *pcloneframe, _pkt *pskb);
  36. void rtw_os_free_recvframe(union recv_frame *precvframe);
  37. int rtw_os_recvbuf_resource_alloc(_adapter *padapter, struct recv_buf *precvbuf);
  38. int rtw_os_recvbuf_resource_free(_adapter *padapter, struct recv_buf *precvbuf);
  39. _pkt *rtw_os_alloc_msdu_pkt(union recv_frame *prframe, u16 nSubframe_Length, u8 *pdata);
  40. void rtw_os_recv_indicate_pkt(_adapter *padapter, _pkt *pkt, struct rx_pkt_attrib *pattrib);
  41. void rtw_os_read_port(_adapter *padapter, struct recv_buf *precvbuf);
  42. #ifdef PLATFORM_LINUX
  43. #ifdef CONFIG_RTW_NAPI
  44. #include <linux/netdevice.h> /* struct napi_struct */
  45. int rtw_recv_napi_poll(struct napi_struct *, int budget);
  46. #endif /* CONFIG_RTW_NAPI */
  47. #endif /* PLATFORM_LINUX */
  48. #endif /* */