2015-08-18 19:03:09 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of version 2 of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
|
|
|
*
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
#ifndef __PCI_OPS_H_
|
|
|
|
#define __PCI_OPS_H_
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_RTL8188E
|
2017-05-11 18:47:23 +00:00
|
|
|
u32 rtl8188ee_init_desc_ring(_adapter *padapter);
|
|
|
|
u32 rtl8188ee_free_desc_ring(_adapter *padapter);
|
|
|
|
void rtl8188ee_reset_desc_ring(_adapter *padapter);
|
2015-08-18 19:03:09 +00:00
|
|
|
int rtl8188ee_interrupt(PADAPTER Adapter);
|
|
|
|
void rtl8188ee_xmit_tasklet(void *priv);
|
|
|
|
void rtl8188ee_recv_tasklet(void *priv);
|
|
|
|
void rtl8188ee_prepare_bcn_tasklet(void *priv);
|
|
|
|
void rtl8188ee_set_intf_ops(struct _io_ops *pops);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_RTL8812A) || defined(CONFIG_RTL8821A)
|
2017-05-11 18:47:23 +00:00
|
|
|
u32 rtl8812ae_init_desc_ring(_adapter *padapter);
|
|
|
|
u32 rtl8812ae_free_desc_ring(_adapter *padapter);
|
|
|
|
void rtl8812ae_reset_desc_ring(_adapter *padapter);
|
2015-08-18 19:03:09 +00:00
|
|
|
int rtl8812ae_interrupt(PADAPTER Adapter);
|
|
|
|
void rtl8812ae_xmit_tasklet(void *priv);
|
|
|
|
void rtl8812ae_recv_tasklet(void *priv);
|
|
|
|
void rtl8812ae_prepare_bcn_tasklet(void *priv);
|
|
|
|
void rtl8812ae_set_intf_ops(struct _io_ops *pops);
|
|
|
|
#endif
|
|
|
|
|
2017-05-11 18:35:20 +00:00
|
|
|
#ifdef CONFIG_RTL8192E
|
2017-05-11 18:47:23 +00:00
|
|
|
u32 rtl8192ee_init_desc_ring(_adapter *padapter);
|
|
|
|
u32 rtl8192ee_free_desc_ring(_adapter *padapter);
|
|
|
|
void rtl8192ee_reset_desc_ring(_adapter *padapter);
|
2017-05-11 18:35:20 +00:00
|
|
|
void rtl8192ee_recv_tasklet(void *priv);
|
|
|
|
void rtl8192ee_prepare_bcn_tasklet(void *priv);
|
|
|
|
int rtl8192ee_interrupt(PADAPTER Adapter);
|
|
|
|
void rtl8192ee_set_intf_ops(struct _io_ops *pops);
|
|
|
|
#endif
|
|
|
|
|
2015-08-18 19:03:09 +00:00
|
|
|
#ifdef CONFIG_RTL8723B
|
2017-05-11 18:47:23 +00:00
|
|
|
u32 rtl8723be_init_desc_ring(_adapter *padapter);
|
|
|
|
u32 rtl8723be_free_desc_ring(_adapter *padapter);
|
|
|
|
void rtl8723be_reset_desc_ring(_adapter *padapter);
|
2015-08-18 19:03:09 +00:00
|
|
|
int rtl8723be_interrupt(PADAPTER Adapter);
|
|
|
|
void rtl8723be_recv_tasklet(void *priv);
|
|
|
|
void rtl8723be_prepare_bcn_tasklet(void *priv);
|
|
|
|
void rtl8723be_set_intf_ops(struct _io_ops *pops);
|
|
|
|
#endif
|
|
|
|
|
2017-05-11 18:47:23 +00:00
|
|
|
#ifdef CONFIG_RTL8814A
|
|
|
|
u32 rtl8814ae_init_desc_ring(_adapter *padapter);
|
|
|
|
u32 rtl8814ae_free_desc_ring(_adapter *padapter);
|
|
|
|
void rtl8814ae_reset_desc_ring(_adapter *padapter);
|
|
|
|
int rtl8814ae_interrupt(PADAPTER Adapter);
|
|
|
|
void rtl8814ae_xmit_tasklet(void *priv);
|
|
|
|
void rtl8814ae_recv_tasklet(void *priv);
|
|
|
|
void rtl8814ae_prepare_bcn_tasklet(void *priv);
|
|
|
|
void rtl8814ae_set_intf_ops(struct _io_ops *pops);
|
|
|
|
#endif
|
|
|
|
|
2015-08-18 19:03:09 +00:00
|
|
|
#endif
|
|
|
|
|