117 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /******************************************************************************
 | |
|  *
 | |
|  * Copyright(c) 2007 - 2017 Realtek Corporation.
 | |
|  *
 | |
|  * 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.
 | |
|  *
 | |
|  *****************************************************************************/
 | |
| #ifndef __PCI_OPS_H_
 | |
| #define __PCI_OPS_H_
 | |
| 
 | |
| 
 | |
| #ifdef CONFIG_RTL8188E
 | |
| 	u32	rtl8188ee_init_desc_ring(_adapter *padapter);
 | |
| 	u32	rtl8188ee_free_desc_ring(_adapter *padapter);
 | |
| 	void	rtl8188ee_reset_desc_ring(_adapter *padapter);
 | |
| 	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);
 | |
| 	void	rtw8188ee_unmap_beacon_icf(_adapter *padapter);
 | |
| #endif
 | |
| 
 | |
| #if defined(CONFIG_RTL8812A) || defined(CONFIG_RTL8821A)
 | |
| 	u32	rtl8812ae_init_desc_ring(_adapter *padapter);
 | |
| 	u32	rtl8812ae_free_desc_ring(_adapter *padapter);
 | |
| 	void	rtl8812ae_reset_desc_ring(_adapter *padapter);
 | |
| 	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);
 | |
| 	void	rtw8812ae_unmap_beacon_icf(_adapter *padapter);
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_RTL8192E
 | |
| 	u32	rtl8192ee_init_desc_ring(_adapter *padapter);
 | |
| 	u32	rtl8192ee_free_desc_ring(_adapter *padapter);
 | |
| 	void	rtl8192ee_reset_desc_ring(_adapter *padapter);
 | |
| 	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);
 | |
| 	void	rtw8192ee_unmap_beacon_icf(_adapter *padapter);
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_RTL8192F
 | |
| 	u32	rtl8192fe_init_desc_ring(_adapter *padapter);
 | |
| 	u32	rtl8192fe_free_desc_ring(_adapter *padapter);
 | |
| 	void	rtl8192fe_reset_desc_ring(_adapter *padapter);
 | |
| 	int	rtl8192fe_interrupt(PADAPTER Adapter);
 | |
| 	void	rtl8192fe_recv_tasklet(void *priv);
 | |
| 	void	rtl8192fe_prepare_bcn_tasklet(void *priv);
 | |
| 	void	rtl8192fe_set_intf_ops(struct _io_ops	*pops);
 | |
| 	u8 check_tx_desc_resource(_adapter *padapter, int prio);
 | |
| 	void	rtl8192fe_unmap_beacon_icf(PADAPTER Adapter);
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_RTL8723B
 | |
| 	u32	rtl8723be_init_desc_ring(_adapter *padapter);
 | |
| 	u32	rtl8723be_free_desc_ring(_adapter *padapter);
 | |
| 	void	rtl8723be_reset_desc_ring(_adapter *padapter);
 | |
| 	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);
 | |
| 	void	rtl8723be_unmap_beacon_icf(PADAPTER Adapter);
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_RTL8723D
 | |
| 	u32	rtl8723de_init_desc_ring(_adapter *padapter);
 | |
| 	u32	rtl8723de_free_desc_ring(_adapter *padapter);
 | |
| 	void	rtl8723de_reset_desc_ring(_adapter *padapter);
 | |
| 	int	rtl8723de_interrupt(PADAPTER Adapter);
 | |
| 	void	rtl8723de_recv_tasklet(void *priv);
 | |
| 	void	rtl8723de_prepare_bcn_tasklet(void *priv);
 | |
| 	void	rtl8723de_set_intf_ops(struct _io_ops	*pops);
 | |
| 	u8 check_tx_desc_resource(_adapter *padapter, int prio);
 | |
| 	void 	rtl8723de_unmap_beacon_icf(PADAPTER Adapter);
 | |
| #endif
 | |
| 
 | |
| #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);
 | |
| 	void	rtl8814ae_unmap_beacon_icf(PADAPTER Adapter);
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_RTL8822B
 | |
| 	void rtl8822be_set_intf_ops(struct _io_ops *pops);
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_RTL8821C
 | |
| 	void rtl8821ce_set_intf_ops(struct _io_ops *pops);
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_RTL8822C
 | |
| 	void rtl8822ce_set_intf_ops(struct _io_ops *pops);
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_RTL8814B
 | |
| 	void rtl8814be_set_intf_ops(struct _io_ops *pops);
 | |
| #endif
 | |
| #endif
 |