recv_osdep.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007 - 2017 Realtek Corporation.
  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. extern sint _rtw_init_recv_priv(struct recv_priv *precvpriv, _adapter *padapter);
  18. extern void _rtw_free_recv_priv(struct recv_priv *precvpriv);
  19. extern s32 rtw_recv_entry(union recv_frame *precv_frame);
  20. void rtw_rframe_set_os_pkt(union recv_frame *rframe);
  21. extern int rtw_recv_indicatepkt(_adapter *adapter, union recv_frame *precv_frame);
  22. extern void rtw_recv_returnpacket(IN _nic_hdl cnxt, IN _pkt *preturnedpkt);
  23. extern int rtw_recv_monitor(_adapter *padapter, union recv_frame *precv_frame);
  24. #ifdef CONFIG_HOSTAPD_MLME
  25. extern void rtw_hostapd_mlme_rx(_adapter *padapter, union recv_frame *precv_frame);
  26. #endif
  27. struct sta_info;
  28. extern void rtw_handle_tkip_mic_err(_adapter *padapter, struct sta_info *sta, u8 bgroup);
  29. int rtw_os_recv_resource_init(struct recv_priv *precvpriv, _adapter *padapter);
  30. int rtw_os_recv_resource_alloc(_adapter *padapter, union recv_frame *precvframe);
  31. void rtw_os_recv_resource_free(struct recv_priv *precvpriv);
  32. int rtw_os_alloc_recvframe(_adapter *padapter, union recv_frame *precvframe, u8 *pdata, _pkt *pskb);
  33. int rtw_os_recvframe_duplicate_skb(_adapter *padapter, union recv_frame *pcloneframe, _pkt *pskb);
  34. void rtw_os_free_recvframe(union recv_frame *precvframe);
  35. int rtw_os_recvbuf_resource_alloc(_adapter *padapter, struct recv_buf *precvbuf);
  36. int rtw_os_recvbuf_resource_free(_adapter *padapter, struct recv_buf *precvbuf);
  37. _pkt *rtw_os_alloc_msdu_pkt(union recv_frame *prframe, const u8 *da, const u8 *sa, u8 *msdu ,u16 msdu_len);
  38. void rtw_os_recv_indicate_pkt(_adapter *padapter, _pkt *pkt, union recv_frame *rframe);
  39. void rtw_os_read_port(_adapter *padapter, struct recv_buf *precvbuf);
  40. #ifdef PLATFORM_LINUX
  41. #ifdef CONFIG_RTW_NAPI
  42. #include <linux/netdevice.h> /* struct napi_struct */
  43. int rtw_recv_napi_poll(struct napi_struct *, int budget);
  44. #ifdef CONFIG_RTW_NAPI_DYNAMIC
  45. void dynamic_napi_th_chk (_adapter *adapter);
  46. #endif /* CONFIG_RTW_NAPI_DYNAMIC */
  47. #endif /* CONFIG_RTW_NAPI */
  48. #endif /* PLATFORM_LINUX */
  49. #endif /* */