add rk3288 pinctrl dts code
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rtl8723au / include / rtl8192d_recv.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
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  * You should have received a copy of the GNU General Public License along with
15  * this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17  *
18  *
19  ******************************************************************************/
20 #ifndef _RTL8192D_RECV_H_
21 #define _RTL8192D_RECV_H_
22
23 #include <drv_conf.h>
24 #include <osdep_service.h>
25 #include <drv_types.h>
26
27
28 #ifdef PLATFORM_OS_XP
29         #ifdef CONFIG_SDIO_HCI
30                 #define NR_RECVBUFF 1024//512//128
31         #else
32                 #define NR_RECVBUFF (16)
33         #endif
34 #elif defined(PLATFORM_OS_CE)
35         #ifdef CONFIG_SDIO_HCI
36                 #define NR_RECVBUFF (128)
37         #else
38                 #define NR_RECVBUFF (4)
39         #endif
40 #else
41 #ifdef CONFIG_SINGLE_RECV_BUF
42         #define NR_RECVBUFF (1)
43 #else
44         #define NR_RECVBUFF (4)
45 #endif //CONFIG_SINGLE_RECV_BUF
46         #define NR_PREALLOC_RECV_SKB (8)
47 #endif
48
49
50
51 #define RECV_BLK_SZ 512
52 #define RECV_BLK_CNT 16
53 #define RECV_BLK_TH RECV_BLK_CNT
54
55 #if defined(CONFIG_USB_HCI)
56
57 #ifdef PLATFORM_OS_CE
58 #define MAX_RECVBUF_SZ (8192+1024) // 8K+1k
59 #else
60         #ifndef CONFIG_MINIMAL_MEMORY_USAGE
61                 //#define MAX_RECVBUF_SZ (32768) // 32k
62                 //#define MAX_RECVBUF_SZ (16384) //16K
63                 //#define MAX_RECVBUF_SZ (10240) //10K
64                 #ifdef CONFIG_PLATFORM_MSTAR
65                         #define MAX_RECVBUF_SZ (8192) // 8K
66                 #else
67                 #define MAX_RECVBUF_SZ (15360) // 15k < 16k
68                 #endif
69         #else
70                 #define MAX_RECVBUF_SZ (4000) // about 4K
71         #endif
72 #endif
73
74 #elif defined(CONFIG_PCI_HCI)
75 //#ifndef CONFIG_MINIMAL_MEMORY_USAGE
76 //      #define MAX_RECVBUF_SZ (9100)
77 //#else
78         #define MAX_RECVBUF_SZ (4000) // about 4K
79 //#endif
80
81 #define RX_MPDU_QUEUE                           0
82 #define RX_CMD_QUEUE                            1
83 #define RX_MAX_QUEUE                            2
84 #endif
85
86 #define RECV_BULK_IN_ADDR               0x80
87 #define RECV_INT_IN_ADDR                0x81
88
89 #define PHY_RSSI_SLID_WIN_MAX                           100
90 #define PHY_LINKQUALITY_SLID_WIN_MAX            20
91
92 struct phy_stat
93 {
94         unsigned int phydw0;
95
96         unsigned int phydw1;
97
98         unsigned int phydw2;
99
100         unsigned int phydw3;
101
102         unsigned int phydw4;
103
104         unsigned int phydw5;
105
106         unsigned int phydw6;
107
108         unsigned int phydw7;
109 };
110
111 // Rx smooth factor
112 #define Rx_Smooth_Factor (20)
113
114 #ifdef CONFIG_USB_HCI
115 typedef struct _INTERRUPT_MSG_FORMAT_EX{
116         unsigned int C2H_MSG0;
117         unsigned int C2H_MSG1;
118         unsigned int C2H_MSG2;
119         unsigned int C2H_MSG3;
120         unsigned int HISR; // from HISR Reg0x124, read to clear
121         unsigned int HISRE;// from HISRE Reg0x12c, read to clear
122         unsigned int  MSG_EX;
123 }INTERRUPT_MSG_FORMAT_EX,*PINTERRUPT_MSG_FORMAT_EX;
124
125 void rtl8192du_init_recvbuf(_adapter *padapter, struct recv_buf *precvbuf);
126 int     rtl8192du_init_recv_priv(_adapter * padapter);
127 void    rtl8192du_free_recv_priv(_adapter * padapter);
128 #endif
129
130 #ifdef CONFIG_PCI_HCI
131 int     rtl8192de_init_recv_priv(_adapter * padapter);
132 void rtl8192de_free_recv_priv(_adapter * padapter);
133 #endif
134
135 void rtl8192d_translate_rx_signal_stuff(union recv_frame *precvframe, struct phy_stat *pphy_status);
136 void rtl8192d_query_rx_desc_status(union recv_frame *precvframe, struct recv_stat *pdesc);
137
138 #endif
139