SAMA5D4 Xplained Ultra Board BSP
guowenxue
2019-08-19 2e7235d10c6dbff81960282e1a1e2e798f9b8db8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/******************************************************************************
 *
 * 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
    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);
#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);
#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);
#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);
#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);
#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);
#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
 
#endif