xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/include/pci_hal.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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 __PCI_HAL_H__
16*4882a593Smuzhiyun #define __PCI_HAL_H__
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun #ifdef CONFIG_RTL8188E
19*4882a593Smuzhiyun 	void rtl8188ee_set_hal_ops(_adapter *padapter);
20*4882a593Smuzhiyun #endif
21*4882a593Smuzhiyun 
22*4882a593Smuzhiyun #if defined(CONFIG_RTL8812A) || defined(CONFIG_RTL8821A)
23*4882a593Smuzhiyun 	void rtl8812ae_set_hal_ops(_adapter *padapter);
24*4882a593Smuzhiyun #endif
25*4882a593Smuzhiyun 
26*4882a593Smuzhiyun #if defined(CONFIG_RTL8192E)
27*4882a593Smuzhiyun 	void rtl8192ee_set_hal_ops(_adapter *padapter);
28*4882a593Smuzhiyun #endif
29*4882a593Smuzhiyun 
30*4882a593Smuzhiyun #if defined(CONFIG_RTL8192F)
31*4882a593Smuzhiyun 	void rtl8192fe_set_hal_ops(_adapter *padapter);
32*4882a593Smuzhiyun #endif
33*4882a593Smuzhiyun 
34*4882a593Smuzhiyun #ifdef CONFIG_RTL8723B
35*4882a593Smuzhiyun 	void rtl8723be_set_hal_ops(_adapter *padapter);
36*4882a593Smuzhiyun #endif
37*4882a593Smuzhiyun 
38*4882a593Smuzhiyun #ifdef CONFIG_RTL8723D
39*4882a593Smuzhiyun 	void rtl8723de_set_hal_ops(_adapter *padapter);
40*4882a593Smuzhiyun #endif
41*4882a593Smuzhiyun 
42*4882a593Smuzhiyun #ifdef CONFIG_RTL8814A
43*4882a593Smuzhiyun 	void rtl8814ae_set_hal_ops(_adapter *padapter);
44*4882a593Smuzhiyun #endif
45*4882a593Smuzhiyun 
46*4882a593Smuzhiyun #ifdef CONFIG_RTL8822B
47*4882a593Smuzhiyun 	void rtl8822be_set_hal_ops(PADAPTER padapter);
48*4882a593Smuzhiyun #endif
49*4882a593Smuzhiyun 
50*4882a593Smuzhiyun #ifdef CONFIG_RTL8822C
51*4882a593Smuzhiyun 	void rtl8822ce_set_hal_ops(PADAPTER padapter);
52*4882a593Smuzhiyun #endif
53*4882a593Smuzhiyun 
54*4882a593Smuzhiyun #ifdef CONFIG_RTL8814B
55*4882a593Smuzhiyun 	void rtl8814be_set_hal_ops(PADAPTER padapter);
56*4882a593Smuzhiyun #endif
57*4882a593Smuzhiyun 
58*4882a593Smuzhiyun u8 rtw_set_hal_ops(_adapter *padapter);
59*4882a593Smuzhiyun 
60*4882a593Smuzhiyun #endif /* __PCIE_HAL_H__ */
61