2 This is part of rtl8187 OpenSource driver.
3 Copyright (C) Andrea Merello 2004-2005 <andreamrl@tiscali.it>
4 Released under the terms of GPL (General Public Licence)
6 Parts of this driver are based on the GPL part of the
7 official realtek driver
9 Parts of this driver are based on the rtl8192 driver skeleton
10 from Patric Schenke & Andres Salomon
12 Parts of this driver are based on the Intel Pro Wireless 2100 GPL driver
14 We want to tanks the Authors of those projects and the Ndiswrapper
21 #include <linux/module.h>
22 #include <linux/kernel.h>
23 //#include <linux/config.h>
24 #include <linux/init.h>
25 #include <linux/ioport.h>
26 #include <linux/sched.h>
27 #include <linux/types.h>
28 #include <linux/slab.h>
29 #include <linux/netdevice.h>
30 //#include <linux/pci.h>
31 #include <linux/usb.h>
32 #include <linux/etherdevice.h>
33 #include <linux/delay.h>
34 #include <linux/rtnetlink.h> //for rtnl_lock()
35 #include <linux/wireless.h>
36 #include <linux/timer.h>
37 #include <linux/proc_fs.h> // Necessary because we use the proc fs
38 #include <linux/if_arp.h>
39 #include <linux/random.h>
40 #include <linux/version.h>
42 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27))
43 #include <asm/semaphore.h>
45 #include "ieee80211.h"
48 #include "r8192S_firmware.h"
50 #include "r819xU_firmware.h"
54 #define RTL819xU_MODULE_NAME "rtl819xU"
55 //added for HW security, john.0629
58 #define MAX_KEY_LEN 61
59 #define KEY_BUF_SIZE 5
61 #define BIT0 0x00000001
62 #define BIT1 0x00000002
63 #define BIT2 0x00000004
64 #define BIT3 0x00000008
65 #define BIT4 0x00000010
66 #define BIT5 0x00000020
67 #define BIT6 0x00000040
68 #define BIT7 0x00000080
69 #define BIT8 0x00000100
70 #define BIT9 0x00000200
71 #define BIT10 0x00000400
72 #define BIT11 0x00000800
73 #define BIT12 0x00001000
74 #define BIT13 0x00002000
75 #define BIT14 0x00004000
76 #define BIT15 0x00008000
77 #define BIT16 0x00010000
78 #define BIT17 0x00020000
79 #define BIT18 0x00040000
80 #define BIT19 0x00080000
81 #define BIT20 0x00100000
82 #define BIT21 0x00200000
83 #define BIT22 0x00400000
84 #define BIT23 0x00800000
85 #define BIT24 0x01000000
86 #define BIT25 0x02000000
87 #define BIT26 0x04000000
88 #define BIT27 0x08000000
89 #define BIT28 0x10000000
90 #define BIT29 0x20000000
91 #define BIT30 0x40000000
92 #define BIT31 0x80000000
95 #define Rx_Smooth_Factor 20
96 #if 0 //we need to use RT_TRACE instead DMESG as RT_TRACE will clearly show debug level wb.
97 #define DMESG(x,a...) printk(KERN_INFO RTL819xU_MODULE_NAME ": " x "\n", ## a)
98 #define DMESGW(x,a...) printk(KERN_WARNING RTL819xU_MODULE_NAME ": WW:" x "\n", ## a)
99 #define DMESGE(x,a...) printk(KERN_WARNING RTL819xU_MODULE_NAME ": EE:" x "\n", ## a)
101 #define DMESG(x,a...)
102 #define DMESGW(x,a...)
103 #define DMESGE(x,a...)
104 extern u32 rt_global_debug_component
;
105 #define RT_TRACE(component, x, args...) \
106 do { if(rt_global_debug_component & component) \
107 printk(KERN_DEBUG RTL819xU_MODULE_NAME ":" x "\n" , \
110 //----------------------------------------------------------------------
111 //// Get 8192SU Rx descriptor. Added by Roger, 2008.04.15.
112 ////----------------------------------------------------------------------
113 #define RX_DESC_SIZE 24
114 #define RX_DRV_INFO_SIZE_UNIT 8
116 #define IS_UNDER_11N_AES_MODE(_ieee) ((_ieee->pHTInfo->bCurrentHTSupport==TRUE) &&\
117 (_ieee->pairwise_key_type==KEY_TYPE_CCMP))
119 #define COMP_TRACE BIT0 // For function call tracing.
120 #define COMP_DBG BIT1 // Only for temporary debug message.
121 #define COMP_INIT BIT2 // during driver initialization / halt / reset.
124 #define COMP_RECV BIT3 // Reveive part data path.
125 #define COMP_SEND BIT4 // Send part path.
126 #define COMP_IO BIT5 // I/O Related. Added by Annie, 2006-03-02.
127 #define COMP_POWER BIT6 // 802.11 Power Save mode or System/Device Power state related.
128 #define COMP_EPROM BIT7 // 802.11 link related: join/start BSS, leave BSS.
129 #define COMP_SWBW BIT8 // For bandwidth switch.
130 #define COMP_POWER_TRACKING BIT9 //FOR 8190 TX POWER TRACKING
131 #define COMP_TURBO BIT10 // For Turbo Mode related. By Annie, 2005-10-21.
132 #define COMP_QOS BIT11 // For QoS.
133 #define COMP_RATE BIT12 // For Rate Adaptive mechanism, 2006.07.02, by rcnjko.
134 #define COMP_LPS BIT13 // For Radio Measurement.
135 #define COMP_DIG BIT14 // For DIG, 2006.09.25, by rcnjko.
136 #define COMP_PHY BIT15
137 #define COMP_CH BIT16 //channel setting debug
138 #define COMP_TXAGC BIT17 // For Tx power, 060928, by rcnjko.
139 #define COMP_HIPWR BIT18 // For High Power Mechanism, 060928, by rcnjko.
140 #define COMP_HALDM BIT19 // For HW Dynamic Mechanism, 061010, by rcnjko.
141 #define COMP_SEC BIT20 // Event handling
142 #define COMP_LED BIT21 // For LED.
143 #define COMP_RF BIT22 // For RF.
144 //1!!!!!!!!!!!!!!!!!!!!!!!!!!!
145 #define COMP_RXDESC BIT23 // Show Rx desc information for SD3 debug. Added by Annie, 2006-07-15.
146 //1//1Attention Please!!!<11n or 8190 specific code should be put below this line>
147 //1!!!!!!!!!!!!!!!!!!!!!!!!!!!
149 #define COMP_FIRMWARE BIT24 //for firmware downloading
150 #define COMP_HT BIT25 // For 802.11n HT related information. by Emily 2006-8-11
151 #define COMP_AMSDU BIT26 // For A-MSDU Debugging
153 #define COMP_SCAN BIT27
154 #define COMP_CMD BIT28
155 #define COMP_DOWN BIT29 //for rm driver module
156 #define COMP_RESET BIT30 //for silent reset
157 #define COMP_ERR BIT31 //for error out, always on
160 #define RTL819x_DEBUG
162 #define assert(expr) \
164 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
165 #expr,__FILE__,__FUNCTION__,__LINE__); \
167 //wb added to debug out data buf
168 //if you want print DATA buffer related BA, please set ieee80211_debug_level to DATA|BA
169 #define RT_DEBUG_DATA(level, data, datalen) \
170 do{ if ((rt_global_debug_component & (level)) == (level)) \
173 u8* pdata = (u8*) data; \
174 printk(KERN_DEBUG RTL819xU_MODULE_NAME ": %s()\n", __FUNCTION__); \
175 for(i=0; i<(int)(datalen); i++) \
177 printk("%2x ", pdata[i]); \
178 if ((i+1)%16 == 0) printk("\n"); \
184 #define assert(expr) do {} while (0)
185 #define RT_DEBUG_DATA(level, data, datalen) do {} while(0)
186 #endif /* RTL8169_DEBUG */
189 //2TODO: We should define 8192S firmware related macro settings here!!
190 #define RTL819X_DEFAULT_RF_TYPE RF_1T2R
191 #define RTL819X_TOTAL_RF_PATH 2
193 //#define Rtl819XFwBootArray Rtl8192UsbFwBootArray
194 //#define Rtl819XFwMainArray Rtl8192UsbFwMainArray
195 //#define Rtl819XFwDataArray Rtl8192UsbFwDataArray
197 #define Rtl819XMACPHY_Array_PG Rtl8192UsbMACPHY_Array_PG
198 #define Rtl819XMACPHY_Array Rtl8192UsbMACPHY_Array
199 #define Rtl819XPHY_REGArray Rtl8192UsbPHY_REGArray
200 #define Rtl819XPHY_REG_1T2RArray Rtl8192UsbPHY_REG_1T2RArray
201 //#define Rtl819XRadioA_Array Rtl8192UsbRadioA_Array
202 //#define Rtl819XRadioB_Array Rtl8192UsbRadioB_Array
203 #define Rtl819XRadioC_Array Rtl8192UsbRadioC_Array
204 #define Rtl819XRadioD_Array Rtl8192UsbRadioD_Array
207 #define Rtl819XFwImageArray Rtl8192SUFwImgArray
208 #define Rtl819XMAC_Array Rtl8192SUMAC_2T_Array
209 #define Rtl819XAGCTAB_Array Rtl8192SUAGCTAB_Array
210 #define Rtl819XPHY_REG_Array Rtl8192SUPHY_REG_2T2RArray
211 #define Rtl819XPHY_REG_to1T1R_Array Rtl8192SUPHY_ChangeTo_1T1RArray
212 #define Rtl819XPHY_REG_to1T2R_Array Rtl8192SUPHY_ChangeTo_1T2RArray
213 #define Rtl819XPHY_REG_to2T2R_Array Rtl8192SUPHY_ChangeTo_2T2RArray
214 #define Rtl819XPHY_REG_Array_PG Rtl8192SUPHY_REG_Array_PG
215 #define Rtl819XRadioA_Array Rtl8192SURadioA_1T_Array
216 #define Rtl819XRadioB_Array Rtl8192SURadioB_Array
217 #define Rtl819XRadioB_GM_Array Rtl8192SURadioB_GM_Array
218 #define Rtl819XRadioA_to1T_Array Rtl8192SURadioA_to1T_Array
219 #define Rtl819XRadioA_to2T_Array Rtl8192SURadioA_to2T_Array
223 // Queue Select Value in TxDesc
229 #define QSLT_BEACON 0x10
230 #define QSLT_HIGH 0x11
231 #define QSLT_MGNT 0x12
232 #define QSLT_CMD 0x13
234 #define DESC90_RATE1M 0x00
235 #define DESC90_RATE2M 0x01
236 #define DESC90_RATE5_5M 0x02
237 #define DESC90_RATE11M 0x03
238 #define DESC90_RATE6M 0x04
239 #define DESC90_RATE9M 0x05
240 #define DESC90_RATE12M 0x06
241 #define DESC90_RATE18M 0x07
242 #define DESC90_RATE24M 0x08
243 #define DESC90_RATE36M 0x09
244 #define DESC90_RATE48M 0x0a
245 #define DESC90_RATE54M 0x0b
246 #define DESC90_RATEMCS0 0x00
247 #define DESC90_RATEMCS1 0x01
248 #define DESC90_RATEMCS2 0x02
249 #define DESC90_RATEMCS3 0x03
250 #define DESC90_RATEMCS4 0x04
251 #define DESC90_RATEMCS5 0x05
252 #define DESC90_RATEMCS6 0x06
253 #define DESC90_RATEMCS7 0x07
254 #define DESC90_RATEMCS8 0x08
255 #define DESC90_RATEMCS9 0x09
256 #define DESC90_RATEMCS10 0x0a
257 #define DESC90_RATEMCS11 0x0b
258 #define DESC90_RATEMCS12 0x0c
259 #define DESC90_RATEMCS13 0x0d
260 #define DESC90_RATEMCS14 0x0e
261 #define DESC90_RATEMCS15 0x0f
262 #define DESC90_RATEMCS32 0x20
265 // CCK Rates, TxHT = 0
266 #define DESC92S_RATE1M 0x00
267 #define DESC92S_RATE2M 0x01
268 #define DESC92S_RATE5_5M 0x02
269 #define DESC92S_RATE11M 0x03
271 // OFDM Rates, TxHT = 0
272 #define DESC92S_RATE6M 0x04
273 #define DESC92S_RATE9M 0x05
274 #define DESC92S_RATE12M 0x06
275 #define DESC92S_RATE18M 0x07
276 #define DESC92S_RATE24M 0x08
277 #define DESC92S_RATE36M 0x09
278 #define DESC92S_RATE48M 0x0a
279 #define DESC92S_RATE54M 0x0b
281 // MCS Rates, TxHT = 1
282 #define DESC92S_RATEMCS0 0x0c
283 #define DESC92S_RATEMCS1 0x0d
284 #define DESC92S_RATEMCS2 0x0e
285 #define DESC92S_RATEMCS3 0x0f
286 #define DESC92S_RATEMCS4 0x10
287 #define DESC92S_RATEMCS5 0x11
288 #define DESC92S_RATEMCS6 0x12
289 #define DESC92S_RATEMCS7 0x13
290 #define DESC92S_RATEMCS8 0x14
291 #define DESC92S_RATEMCS9 0x15
292 #define DESC92S_RATEMCS10 0x16
293 #define DESC92S_RATEMCS11 0x17
294 #define DESC92S_RATEMCS12 0x18
295 #define DESC92S_RATEMCS13 0x19
296 #define DESC92S_RATEMCS14 0x1a
297 #define DESC92S_RATEMCS15 0x1b
298 #define DESC92S_RATEMCS15_SG 0x1c
299 #define DESC92S_RATEMCS32 0x20
302 #define RTL819X_DEFAULT_RF_TYPE RF_1T2R
304 #define IEEE80211_WATCH_DOG_TIME 2000
305 #define PHY_Beacon_RSSI_SLID_WIN_MAX 10
306 //for txpowertracking by amy
307 #define OFDM_Table_Length 19
308 #define CCK_Table_length 12
312 //Tx Descriptor for RLT8192SU(Normal mode)
314 typedef struct _tx_desc_819x_usb
{
318 u8 Type
:2; // Reserved for MAC header Frame Type subfield.
342 u8 PktOffset
:5; //padding_len (hw)
349 u32 RTSRC
:6; // Reserved for HW RTS Retry Count.
350 u32 DATARC
:6; // Reserved for HW DATA Retry Count.
352 u32 AllowAggregation
:1;
353 u32 BK
:1; //Aggregation break.
357 u8 NextHeadPage
;//:8;
368 u32 RaBRSRID
:3; //Rate adaptive BRSR ID.
370 u32 TxShort
:1;//for data
393 //u16 TxBuffSize;//:16;//pcie
398 }tx_desc_819x_usb
, *ptx_desc_819x_usb
;
399 typedef struct _tx_status_desc_8192s_usb
{
427 }tx_status_desc_8192s_usb
, *ptx_status_desc_8192s_usb
;
430 typedef struct _tx_desc_819x_usb
{
459 u8 ResvForPaddingLen
:7;
467 }tx_desc_819x_usb
, *ptx_desc_819x_usb
;
470 #ifdef USB_TX_DRIVER_AGGREGATION_ENABLE
471 typedef struct _tx_desc_819x_usb_aggr_subframe
{
492 }tx_desc_819x_usb_aggr_subframe
, *ptx_desc_819x_usb_aggr_subframe
;
498 //Tx Descriptor for RLT8192SU(Load FW mode)
500 typedef struct _tx_desc_cmd_819x_usb
{
509 // DWORD 1, 2, 3, 4, 5, 6 are all reserved.
518 u16 TxBuffSize
;//pcie
520 }tx_desc_cmd_819x_usb
, *ptx_desc_cmd_819x_usb
;
522 //H2C Command for RLT8192SU(Host TxCmd)
524 typedef struct _tx_h2c_desc_cmd_8192s_usb
{
549 }tx_h2c_desc_cmd_8192s_usb
, *ptx_h2c_desc_cmd_8192s_usb
;
552 typedef struct _tx_h2c_cmd_hdr_8192s_usb
{
560 }tx_h2c_cmd_hdr_8192s_usb
, *ptx_h2c_cmd_hdr_8192s_usb
;
562 typedef struct _tx_desc_cmd_819x_usb
{
586 //u32 NextDescAddress;
590 }tx_desc_cmd_819x_usb
, *ptx_desc_cmd_819x_usb
;
594 typedef struct _tx_fwinfo_819x_usb
{
601 u8 Short
:1; //Short PLCP for CCK, or short GI for 11n MCS
602 u8 TxBandwidth
:1; // This is used for HT MCS rate only.
603 u8 TxSubCarrier
:2; // This is used for legacy OFDM rate only.
605 u8 AllowAggregation
:1;
606 u8 RtsHT
:1; //Interpre RtsRate field as high throughput data rate
607 u8 RtsShort
:1; //Short PLCP for CCK, or short GI for 11n MCS
608 u8 RtsBandwidth
:1; // This is used for HT MCS rate only.
609 u8 RtsSubcarrier
:2; // This is used for legacy OFDM rate only.
611 u8 EnableCPUDur
:1; //Enable firmware to recalculate and assign packet duration
617 u32 TxAGCOffSet
:4;//TxAGCOffset:4;
621 }tx_fwinfo_819x_usb
, *ptx_fwinfo_819x_usb
;
623 typedef struct _tx_fwinfo_819x_usb
{
630 u8 Short
:1; //Short PLCP for CCK, or short GI for 11n MCS
631 u8 TxBandwidth
:1; // This is used for HT MCS rate only.
632 u8 TxSubCarrier
:2; // This is used for legacy OFDM rate only.
634 u8 AllowAggregation
:1;
635 u8 RtsHT
:1; //Interpre RtsRate field as high throughput data rate
636 u8 RtsShort
:1; //Short PLCP for CCK, or short GI for 11n MCS
637 u8 RtsBandwidth
:1; // This is used for HT MCS rate only.
638 u8 RtsSubcarrier
:2; // This is used for legacy OFDM rate only.
640 u8 EnableCPUDur
:1; //Enable firmware to recalculate and assign packet duration
645 u32 TxPerPktInfoFeedback
:1;//1 indicate Tx info gathtered by firmware and returned by Rx Cmd
652 }tx_fwinfo_819x_usb
, *ptx_fwinfo_819x_usb
;
655 typedef struct rtl8192_rx_info
{
657 struct net_device
*dev
;
662 //typedef struct _RX_DESC_STATUS_8192SU{
663 typedef struct rx_desc_819x_usb
{
698 #ifdef USB_RX_AGGREGATION_SUPPORT
699 u8 UsbAggPktNum
;//:8;
726 //}RX_DESC_STATUS_8192SU, *PRX_DESC_STATUS_8192SU;
727 }rx_desc_819x_usb
, *prx_desc_819x_usb
;
729 typedef struct rx_desc_819x_usb
{
753 }rx_desc_819x_usb
, *prx_desc_819x_usb
;
756 #ifdef USB_RX_AGGREGATION_SUPPORT
757 typedef struct _rx_desc_819x_usb_aggr_subframe
{
774 //u4Byte BufferAddress;
775 }rx_desc_819x_usb_aggr_subframe
, *prx_desc_819x_usb_aggr_subframe
;
780 // Driver info are written to the begining of the RxBuffer
782 //typedef struct _RX_DRIVER_INFO_8192S{
783 typedef struct rx_drvinfo_819x_usb
{
785 // Driver info contain PHY status and other variabel size info
786 // PHY Status content as below
812 u4Byte cfotail_2:8;*/
816 /*u4Byte cfotail_3:8;
832 u4Byte csi_current_0:8;
833 u4Byte csi_current_1:8;
834 u4Byte csi_target_0:8;*/
839 /*u4Byte csi_target_1:8;
842 u4Byte ex_intf_flag:1;
853 }rx_drvinfo_819x_usb
, *prx_drvinfo_819x_usb
;
855 typedef struct rx_drvinfo_819x_usb
{
876 }rx_drvinfo_819x_usb
, *prx_drvinfo_819x_usb
;
879 #define HWSET_MAX_SIZE_92S 128
881 #define MAX_802_11_HEADER_LENGTH 40
882 #define MAX_PKT_AGG_NUM 256
883 #define TX_PACKET_SHIFT_BYTES USB_HWDESC_HEADER_LEN
885 #define MAX_802_11_HEADER_LENGTH (40 + MAX_FIRMWARE_INFORMATION_SIZE)
886 #define MAX_PKT_AGG_NUM 64
887 #define TX_PACKET_SHIFT_BYTES (USB_HWDESC_HEADER_LEN + sizeof(tx_fwinfo_819x_usb))
890 #define MAX_DEV_ADDR_SIZE 8 /* support till 64 bit bus width OS */
891 #define MAX_FIRMWARE_INFORMATION_SIZE 32 /*2006/04/30 by Emily forRTL8190*/
892 //#define MAX_802_11_HEADER_LENGTH (40 + MAX_FIRMWARE_INFORMATION_SIZE)
893 #define ENCRYPTION_MAX_OVERHEAD 128
894 #define USB_HWDESC_HEADER_LEN sizeof(tx_desc_819x_usb)
895 //#define TX_PACKET_SHIFT_BYTES (USB_HWDESC_HEADER_LEN + sizeof(tx_fwinfo_819x_usb))
896 #define MAX_FRAGMENT_COUNT 8
898 #ifdef USB_TX_DRIVER_AGGREGATION_ENABLE
899 #define MAX_TRANSMIT_BUFFER_SIZE 32000
901 #define MAX_TRANSMIT_BUFFER_SIZE 8000
904 #define MAX_TRANSMIT_BUFFER_SIZE (1600+(MAX_802_11_HEADER_LENGTH+ENCRYPTION_MAX_OVERHEAD)*MAX_FRAGMENT_COUNT)
906 #ifdef USB_TX_DRIVER_AGGREGATION_ENABLE
907 #define TX_PACKET_DRVAGGR_SUBFRAME_SHIFT_BYTES (sizeof(tx_desc_819x_usb_aggr_subframe) + sizeof(tx_fwinfo_819x_usb))
909 #define scrclng 4 // octets for crc32 (FCS, ICV)
911 typedef enum rf_optype
913 RF_OP_By_SW_3wire
= 0,
917 /* 8190 Loopback Mode definition */
918 typedef enum _rtl819xUsb_loopback
{
919 RTL819xU_NO_LOOPBACK
= 0,
920 RTL819xU_MAC_LOOPBACK
= 1,
921 RTL819xU_DMA_LOOPBACK
= 2,
922 RTL819xU_CCK_LOOPBACK
= 3,
923 }rtl819xUsb_loopback_e
;
926 typedef enum _RT_STATUS
{
927 RT_STATUS_SUCCESS
= 0,
928 RT_STATUS_FAILURE
= 1,
929 RT_STATUS_PENDING
= 2,
930 RT_STATUS_RESOURCE
= 3
931 }RT_STATUS
,*PRT_STATUS
;
934 typedef enum _RTL8192SUSB_LOOPBACK
{
935 RTL8192SU_NO_LOOPBACK
= 0,
936 RTL8192SU_MAC_LOOPBACK
= 1,
937 RTL8192SU_DMA_LOOPBACK
= 2,
938 RTL8192SU_CCK_LOOPBACK
= 3,
939 }RTL8192SUSB_LOOPBACK_E
;
944 /* due to rtl8192 firmware */
945 typedef enum _desc_packet_type_e
{
946 DESC_PACKET_TYPE_INIT
= 0,
947 DESC_PACKET_TYPE_NORMAL
= 1,
950 typedef enum _firmware_source
{
951 FW_SOURCE_IMG_FILE
= 0,
952 FW_SOURCE_HEADER_FILE
= 1, //from header file
953 }firmware_source_e
, *pfirmware_source_e
;
955 typedef enum _firmware_status
{
956 FW_STATUS_0_INIT
= 0,
957 FW_STATUS_1_MOVE_BOOT_CODE
= 1,
958 FW_STATUS_2_MOVE_MAIN_CODE
= 2,
959 FW_STATUS_3_TURNON_CPU
= 3,
960 FW_STATUS_4_MOVE_DATA_CODE
= 4,
961 FW_STATUS_5_READY
= 5,
964 typedef struct _rt_firmare_seg_container
{
967 }fw_seg_container
, *pfw_seg_container
;
970 //--------------------------------------------------------------------------------
971 // 8192S Firmware related
972 //--------------------------------------------------------------------------------
973 typedef struct _RT_8192S_FIRMWARE_PRIV
{ //8-bytes alignment required
975 //--- LONG WORD 0 ----
979 //--- LONG WORD 1 ----
983 //--- LONG WORD 2 ----
987 //--- LONG WORD 3 ----
989 u8 Qos_En
; // QoS enable
990 u8 En40MHz
; // 40MHz BW enable
991 u8 AMSDU2AMPDU_En
; //14181 convert AMSDU to AMPDU, 0: disable
992 u8 AMPDU_En
; //111n AMPDU/AMSDU enable
994 //--- LONG WORD 4 ----
995 u8 rate_control_offload
;//FW offloads, 0: driver handles
996 u8 aggregation_offload
; // FW offloads, 0: driver handles
997 u8 beacon_offload
; //FW offloads, 0: driver handles
998 u8 MLME_offload
; // FW offloads, 0: driver handles
999 u8 hwpc_offload
; // FW offloads, 0: driver handles
1000 u8 tcp_checksum_offload
; //FW offloads, 0: driver handles
1001 u8 tcp_offload
; //FW offloads, 0: driver handles
1002 u8 ps_control_offload
; //FW offloads, 0: driver handles
1004 //--- LONG WORD 5 ----
1005 u8 WWLAN_Offload
; // FW offloads, 0: driver handles
1006 u8 MPMode
; // normal mode, 0: MP mode;
1007 u16 Version
; //0x8000 ~ 0x8FFF for FPGA version, 0x0000 ~ 0x7FFF for ASIC version,
1008 u16 Signature
; //0x12: 8712, 0x92: 8192S
1012 // u32 wireless_band; //no A-band exists in 8712
1013 }RT_8192S_FIRMWARE_PRIV
, *PRT_8192S_FIRMWARE_PRIV
;
1015 typedef struct _RT_8192S_FIRMWARE_HDR
{//8-byte alinment required
1017 //--- LONG WORD 0 ----
1019 u16 Version
; //0x8000 ~ 0x8FFF for FPGA version, 0x0000 ~ 0x7FFF for ASIC version,
1020 u32 DMEMSize
; //define the size of boot loader
1023 //--- LONG WORD 1 ----
1024 u32 IMG_IMEM_SIZE
; //define the size of FW in IMEM
1025 u32 IMG_SRAM_SIZE
; //define the size of FW in SRAM
1027 //--- LONG WORD 2 ----
1028 u32 FW_PRIV_SIZE
; //define the size of DMEM variable
1031 //--- LONG WORD 3 ----
1035 RT_8192S_FIRMWARE_PRIV FWPriv
;
1037 }RT_8192S_FIRMWARE_HDR
, *PRT_8192S_FIRMWARE_HDR
;
1039 #define RT_8192S_FIRMWARE_HDR_SIZE 80
1041 typedef enum _FIRMWARE_8192S_STATUS
{
1043 FW_STATUS_LOAD_IMEM
= 1,
1044 FW_STATUS_LOAD_EMEM
= 2,
1045 FW_STATUS_LOAD_DMEM
= 3,
1046 FW_STATUS_READY
= 4,
1047 }FIRMWARE_8192S_STATUS
;
1049 #define RTL8190_MAX_FIRMWARE_CODE_SIZE 64000 //64k
1051 typedef struct _rt_firmware
{
1052 firmware_source_e eFWSource
;
1053 PRT_8192S_FIRMWARE_HDR pFwHeader
;
1054 FIRMWARE_8192S_STATUS FWStatus
;
1059 u8 szFwTmpBuffer
[164000];
1060 u16 CmdPacketFragThresold
;
1061 //firmware_status_e firmware_status;//in 92u temp FIXLZM
1062 //u16 cmdpacket_frag_thresold;//in 92u temp FIXLZM
1063 //u8 firmware_buf[RTL8190_MAX_FIRMWARE_CODE_SIZE];//in 92u temp FIXLZM
1064 //u16 firmware_buf_size;//in 92u temp FIXLZM
1066 }rt_firmware
, *prt_firmware
;
1068 typedef struct _rt_firmware
{
1069 firmware_status_e firmware_status
;
1070 u16 cmdpacket_frag_thresold
;
1071 #define RTL8190_MAX_FIRMWARE_CODE_SIZE 64000 //64k
1072 #define MAX_FW_INIT_STEP 3
1073 u8 firmware_buf
[MAX_FW_INIT_STEP
][RTL8190_MAX_FIRMWARE_CODE_SIZE
];
1074 u16 firmware_buf_size
[MAX_FW_INIT_STEP
];
1075 }rt_firmware
, *prt_firmware
;
1077 typedef struct _rt_firmware_info_819xUsb
{
1079 }rt_firmware_info_819xUsb
, *prt_firmware_info_819xUsb
;
1083 #define MAX_RECEIVE_BUFFER_SIZE 9100 // Add this to 9100 bytes to receive A-MSDU from RT-AP
1086 /* Firmware Queue Layout */
1087 #define NUM_OF_FIRMWARE_QUEUE 10
1088 #define NUM_OF_PAGES_IN_FW 0x100
1091 #define NUM_OF_PAGE_IN_FW_QUEUE_BE 0x000
1092 #define NUM_OF_PAGE_IN_FW_QUEUE_BK 0x000
1093 #define NUM_OF_PAGE_IN_FW_QUEUE_VI 0x0ff
1094 #define NUM_OF_PAGE_IN_FW_QUEUE_VO 0x000
1095 #define NUM_OF_PAGE_IN_FW_QUEUE_HCCA 0
1096 #define NUM_OF_PAGE_IN_FW_QUEUE_CMD 0x0
1097 #define NUM_OF_PAGE_IN_FW_QUEUE_MGNT 0x00
1098 #define NUM_OF_PAGE_IN_FW_QUEUE_HIGH 0
1099 #define NUM_OF_PAGE_IN_FW_QUEUE_BCN 0x0
1100 #define NUM_OF_PAGE_IN_FW_QUEUE_PUB 0x00
1103 #define NUM_OF_PAGE_IN_FW_QUEUE_BE 0x020
1104 #define NUM_OF_PAGE_IN_FW_QUEUE_BK 0x020
1105 #define NUM_OF_PAGE_IN_FW_QUEUE_VI 0x040
1106 #define NUM_OF_PAGE_IN_FW_QUEUE_VO 0x040
1107 #define NUM_OF_PAGE_IN_FW_QUEUE_HCCA 0
1108 #define NUM_OF_PAGE_IN_FW_QUEUE_CMD 0x4
1109 #define NUM_OF_PAGE_IN_FW_QUEUE_MGNT 0x20
1110 #define NUM_OF_PAGE_IN_FW_QUEUE_HIGH 0
1111 #define NUM_OF_PAGE_IN_FW_QUEUE_BCN 0x4
1112 #define NUM_OF_PAGE_IN_FW_QUEUE_PUB 0x18
1116 #define APPLIED_RESERVED_QUEUE_IN_FW 0x80000000
1117 #define RSVD_FW_QUEUE_PAGE_BK_SHIFT 0x00
1118 #define RSVD_FW_QUEUE_PAGE_BE_SHIFT 0x08
1119 #define RSVD_FW_QUEUE_PAGE_VI_SHIFT 0x10
1120 #define RSVD_FW_QUEUE_PAGE_VO_SHIFT 0x18
1121 #define RSVD_FW_QUEUE_PAGE_MGNT_SHIFT 0x10
1122 #define RSVD_FW_QUEUE_PAGE_CMD_SHIFT 0x08
1123 #define RSVD_FW_QUEUE_PAGE_BCN_SHIFT 0x00
1124 #define RSVD_FW_QUEUE_PAGE_PUB_SHIFT 0x08
1125 //=================================================================
1126 //=================================================================
1128 #define EPROM_93c46 0
1129 #define EPROM_93c56 1
1131 #define DEFAULT_FRAG_THRESHOLD 2342U
1132 #define MIN_FRAG_THRESHOLD 256U
1133 #define DEFAULT_BEACONINTERVAL 0x64U
1134 #define DEFAULT_BEACON_ESSID "Rtl819xU"
1136 #define DEFAULT_SSID ""
1137 #define DEFAULT_RETRY_RTS 7
1138 #define DEFAULT_RETRY_DATA 7
1139 #define PRISM_HDR_SIZE 64
1141 #define PHY_RSSI_SLID_WIN_MAX 100
1144 typedef enum _WIRELESS_MODE
{
1145 WIRELESS_MODE_UNKNOWN
= 0x00,
1146 WIRELESS_MODE_A
= 0x01,
1147 WIRELESS_MODE_B
= 0x02,
1148 WIRELESS_MODE_G
= 0x04,
1149 WIRELESS_MODE_AUTO
= 0x08,
1150 WIRELESS_MODE_N_24G
= 0x10,
1151 WIRELESS_MODE_N_5G
= 0x20
1155 #define RTL_IOCTL_WPA_SUPPLICANT SIOCIWFIRSTPRIV+30
1157 typedef struct buffer
1159 struct buffer
*next
;
1164 typedef struct rtl_reg_debug
{
1170 unsigned char length
;
1172 unsigned char buf
[0xff];
1181 typedef struct tx_pendingbuf
1183 struct ieee80211_txb
*txb
;
1190 typedef struct _rt_9x_tx_rate_history
{
1193 // HT_MCS[0][]: BW=0 SG=0
1194 // HT_MCS[1][]: BW=1 SG=0
1195 // HT_MCS[2][]: BW=0 SG=1
1196 // HT_MCS[3][]: BW=1 SG=1
1198 }rt_tx_rahis_t
, *prt_tx_rahis_t
;
1199 typedef struct _RT_SMOOTH_DATA_4RF
{
1200 char elements
[4][100];//array to store values
1201 u32 index
; //index to current array to store
1202 u32 TotalNum
; //num of valid elements
1203 u32 TotalVal
[4]; //sum of valid elements
1204 }RT_SMOOTH_DATA_4RF
, *PRT_SMOOTH_DATA_4RF
;
1206 #define MAX_8192U_RX_SIZE 8192 // This maybe changed for D-cut larger aggregation size
1207 //stats seems messed up, clean it ASAP
1208 typedef struct Stats
1210 unsigned long txrdu
;
1211 // unsigned long rxrdu;
1212 //unsigned long rxnolast;
1213 //unsigned long rxnodata;
1214 // unsigned long rxreset;
1215 // unsigned long rxnopointer;
1217 unsigned long rxframgment
;
1218 unsigned long rxcmdpkt
[4]; //08/05/08 amy rx cmd element txfeedback/bcn report/cfg set/query
1219 unsigned long rxurberr
;
1220 unsigned long rxstaterr
;
1221 unsigned long received_rate_histogram
[4][32]; //0: Total, 1:OK, 2:CRC, 3:ICV, 2007 07 03 cosa
1222 unsigned long received_preamble_GI
[2][32]; //0: Long preamble/GI, 1:Short preamble/GI
1223 unsigned long rx_AMPDUsize_histogram
[5]; // level: (<4K), (4K~8K), (8K~16K), (16K~32K), (32K~64K)
1224 unsigned long rx_AMPDUnum_histogram
[5]; // level: (<5), (5~10), (10~20), (20~40), (>40)
1225 unsigned long numpacket_matchbssid
; // debug use only.
1226 unsigned long numpacket_toself
; // debug use only.
1227 unsigned long num_process_phyinfo
; // debug use only.
1228 unsigned long numqry_phystatus
;
1229 unsigned long numqry_phystatusCCK
;
1230 unsigned long numqry_phystatusHT
;
1231 unsigned long received_bwtype
[5]; //0: 20M, 1: funn40M, 2: upper20M, 3: lower20M, 4: duplicate
1232 unsigned long txnperr
;
1233 unsigned long txnpdrop
;
1234 unsigned long txresumed
;
1235 // unsigned long rxerr;
1236 // unsigned long rxoverflow;
1237 // unsigned long rxint;
1238 unsigned long txnpokint
;
1239 // unsigned long txhpokint;
1240 // unsigned long txhperr;
1241 // unsigned long ints;
1242 // unsigned long shints;
1243 unsigned long txoverflow
;
1244 // unsigned long rxdmafail;
1245 // unsigned long txbeacon;
1246 // unsigned long txbeaconerr;
1247 unsigned long txlpokint
;
1248 unsigned long txlpdrop
;
1249 unsigned long txlperr
;
1250 unsigned long txbeokint
;
1251 unsigned long txbedrop
;
1252 unsigned long txbeerr
;
1253 unsigned long txbkokint
;
1254 unsigned long txbkdrop
;
1255 unsigned long txbkerr
;
1256 unsigned long txviokint
;
1257 unsigned long txvidrop
;
1258 unsigned long txvierr
;
1259 unsigned long txvookint
;
1260 unsigned long txvodrop
;
1261 unsigned long txvoerr
;
1262 unsigned long txbeaconokint
;
1263 unsigned long txbeacondrop
;
1264 unsigned long txbeaconerr
;
1265 unsigned long txmanageokint
;
1266 unsigned long txmanagedrop
;
1267 unsigned long txmanageerr
;
1268 unsigned long txdatapkt
;
1269 unsigned long txfeedback
;
1270 unsigned long txfeedbackok
;
1272 unsigned long txoktotal
;
1273 unsigned long txokbytestotal
;
1274 unsigned long txokinperiod
;
1275 unsigned long txmulticast
;
1276 unsigned long txbytesmulticast
;
1277 unsigned long txbroadcast
;
1278 unsigned long txbytesbroadcast
;
1279 unsigned long txunicast
;
1280 unsigned long txbytesunicast
;
1282 unsigned long rxoktotal
;
1283 unsigned long rxbytesunicast
;
1284 unsigned long txfeedbackfail
;
1285 unsigned long txerrtotal
;
1286 unsigned long txerrbytestotal
;
1287 unsigned long txerrmulticast
;
1288 unsigned long txerrbroadcast
;
1289 unsigned long txerrunicast
;
1290 unsigned long txretrycount
;
1291 unsigned long txfeedbackretry
;
1292 u8 last_packet_rate
;
1293 unsigned long slide_signal_strength
[100];
1294 unsigned long slide_evm
[100];
1295 unsigned long slide_rssi_total
; // For recording sliding window's RSSI value
1296 unsigned long slide_evm_total
; // For recording sliding window's EVM value
1297 long signal_strength
; // Transformed, in dbm. Beautified signal strength for UI, not correct.
1298 long signal_quality
;
1299 long last_signal_strength_inpercent
;
1300 long recv_signal_power
; // Correct smoothed ss in Dbm, only used in driver to report real power now.
1301 u8 rx_rssi_percentage
[4];
1302 u8 rx_evm_percentage
[2];
1304 rt_tx_rahis_t txrate
;
1305 u32 Slide_Beacon_pwdb
[100]; //cosa add for beacon rssi
1306 u32 Slide_Beacon_Total
; //cosa add for beacon rssi
1307 RT_SMOOTH_DATA_4RF cck_adc_pwdb
;
1309 u32 CurrentShowTxate
;
1314 #define HAL_PRIME_CHNL_OFFSET_DONT_CARE 0
1315 #define HAL_PRIME_CHNL_OFFSET_LOWER 1
1316 #define HAL_PRIME_CHNL_OFFSET_UPPER 2
1320 typedef struct ChnlAccessSetting
{
1327 }*PCHANNEL_ACCESS_SETTING
,CHANNEL_ACCESS_SETTING
;
1329 typedef struct _BB_REGISTER_DEFINITION
{
1330 u32 rfintfs
; // set software control: // 0x870~0x877[8 bytes]
1331 u32 rfintfi
; // readback data: // 0x8e0~0x8e7[8 bytes]
1332 u32 rfintfo
; // output data: // 0x860~0x86f [16 bytes]
1333 u32 rfintfe
; // output enable: // 0x860~0x86f [16 bytes]
1334 u32 rf3wireOffset
; // LSSI data: // 0x840~0x84f [16 bytes]
1335 u32 rfLSSI_Select
; // BB Band Select: // 0x878~0x87f [8 bytes]
1336 u32 rfTxGainStage
; // Tx gain stage: // 0x80c~0x80f [4 bytes]
1337 u32 rfHSSIPara1
; // wire parameter control1 : // 0x820~0x823,0x828~0x82b, 0x830~0x833, 0x838~0x83b [16 bytes]
1338 u32 rfHSSIPara2
; // wire parameter control2 : // 0x824~0x827,0x82c~0x82f, 0x834~0x837, 0x83c~0x83f [16 bytes]
1339 u32 rfSwitchControl
; //Tx Rx antenna control : // 0x858~0x85f [16 bytes]
1340 u32 rfAGCControl1
; //AGC parameter control1 : // 0xc50~0xc53,0xc58~0xc5b, 0xc60~0xc63, 0xc68~0xc6b [16 bytes]
1341 u32 rfAGCControl2
; //AGC parameter control2 : // 0xc54~0xc57,0xc5c~0xc5f, 0xc64~0xc67, 0xc6c~0xc6f [16 bytes]
1342 u32 rfRxIQImbalance
; //OFDM Rx IQ imbalance matrix : // 0xc14~0xc17,0xc1c~0xc1f, 0xc24~0xc27, 0xc2c~0xc2f [16 bytes]
1343 u32 rfRxAFE
; //Rx IQ DC ofset and Rx digital filter, Rx DC notch filter : // 0xc10~0xc13,0xc18~0xc1b, 0xc20~0xc23, 0xc28~0xc2b [16 bytes]
1344 u32 rfTxIQImbalance
; //OFDM Tx IQ imbalance matrix // 0xc80~0xc83,0xc88~0xc8b, 0xc90~0xc93, 0xc98~0xc9b [16 bytes]
1345 u32 rfTxAFE
; //Tx IQ DC Offset and Tx DFIR type // 0xc84~0xc87,0xc8c~0xc8f, 0xc94~0xc97, 0xc9c~0xc9f [16 bytes]
1346 u32 rfLSSIReadBack
; //LSSI RF readback data // 0x8a0~0x8af [16 bytes]
1347 u32 rfLSSIReadBackPi
; //LSSI RF readback data PI mode 0x8b8-8bc for Path A and B
1348 }BB_REGISTER_DEFINITION_T
, *PBB_REGISTER_DEFINITION_T
;
1350 typedef enum _RT_RF_TYPE_819xU
{
1355 RF_6052
=4, // 4 11b/g/n RF
1357 }RT_RF_TYPE_819xU
, *PRT_RF_TYPE_819xU
;
1360 typedef enum _RF_POWER_STATE
{
1365 }RF_POWER_STATE
, *PRF_POWER_STATE
;
1368 typedef struct _rate_adaptive
1370 u8 rate_adaptive_disabled
;
1374 u32 high_rssi_thresh_for_ra
;
1375 u32 high2low_rssi_thresh_for_ra
;
1376 u8 low2high_rssi_thresh_for_ra40M
;
1377 u32 low_rssi_thresh_for_ra40M
;
1378 u8 low2high_rssi_thresh_for_ra20M
;
1379 u32 low_rssi_thresh_for_ra20M
;
1380 u32 upper_rssi_threshold_ratr
;
1381 u32 middle_rssi_threshold_ratr
;
1382 u32 low_rssi_threshold_ratr
;
1383 u32 low_rssi_threshold_ratr_40M
;
1384 u32 low_rssi_threshold_ratr_20M
;
1385 u8 ping_rssi_enable
; //cosa add for test
1386 u32 ping_rssi_ratr
; //cosa add for test
1387 u32 ping_rssi_thresh_for_ra
;//cosa add for test
1390 } rate_adaptive
, *prate_adaptive
;
1392 #define TxBBGainTableLength 37
1393 #define CCKTxBBGainTableLength 23
1395 typedef struct _txbbgain_struct
1397 long txbb_iq_amplifygain
;
1399 } txbbgain_struct
, *ptxbbgain_struct
;
1401 typedef struct _ccktxbbgain_struct
1403 //The Value is from a22 to a29 one Byte one time is much Safer
1404 u8 ccktxbb_valuearray
[8];
1405 } ccktxbbgain_struct
,*pccktxbbgain_struct
;
1408 typedef struct _init_gain
1416 } init_gain
, *pinit_gain
;
1419 typedef struct _phy_ofdm_rx_status_report_819xusb
1428 u8 csi_current_X
[2];
1433 u8 rxsc_sgien_exflg
;
1434 }phy_sts_ofdm_819xusb_t
;
1436 typedef struct _phy_cck_rx_status_report_819xusb
1438 /* For CCK rate descriptor. This is a unsigned 8:1 variable. LSB bit presend
1439 0.5. And MSB 7 bts presend a signed value. Range from -64~+63.5. */
1443 }phy_sts_cck_819xusb_t
;
1446 typedef struct _phy_ofdm_rx_status_rxsc_sgien_exintfflag
{
1451 }phy_ofdm_rx_status_rxsc_sgien_exintfflag
;
1453 typedef enum _RT_CUSTOMER_ID
1456 RT_CID_8187_ALPHA0
= 1,
1457 RT_CID_8187_SERCOMM_PS
= 2,
1458 RT_CID_8187_HW_LED
= 3,
1459 RT_CID_8187_NETGEAR
= 4,
1461 RT_CID_819x_CAMEO
= 6,
1462 RT_CID_819x_RUNTOP
= 7,
1463 RT_CID_819x_Senao
= 8,
1464 RT_CID_TOSHIBA
= 9, // Merge by Jacken, 2008/01/31.
1465 RT_CID_819x_Netcore
= 10,
1466 RT_CID_Nettronix
= 11,
1469 }RT_CUSTOMER_ID
, *PRT_CUSTOMER_ID
;
1471 //================================================================================
1472 // LED customization.
1473 //================================================================================
1475 typedef enum _LED_STRATEGY_8190
{
1476 SW_LED_MODE0
, // SW control 1 LED via GPIO0. It is default option.
1477 SW_LED_MODE1
, // SW control for PCI Express
1478 SW_LED_MODE2
, // SW control for Cameo.
1479 SW_LED_MODE3
, // SW contorl for RunTop.
1480 SW_LED_MODE4
, // SW control for Netcore
1481 HW_LED
, // HW control 2 LEDs, LED0 and LED1 (there are 4 different control modes)
1482 }LED_STRATEGY_8190
, *PLED_STRATEGY_8190
;
1484 typedef enum _RESET_TYPE
{
1485 RESET_TYPE_NORESET
= 0x00,
1486 RESET_TYPE_NORMAL
= 0x01,
1487 RESET_TYPE_SILENT
= 0x02
1490 /* The simple tx command OP code. */
1491 typedef enum _tag_TxCmd_Config_Index
{
1492 TXCMD_TXRA_HISTORY_CTRL
= 0xFF900000,
1493 TXCMD_RESET_TX_PKT_BUFF
= 0xFF900001,
1494 TXCMD_RESET_RX_PKT_BUFF
= 0xFF900002,
1495 TXCMD_SET_TX_DURATION
= 0xFF900003,
1496 TXCMD_SET_RX_RSSI
= 0xFF900004,
1497 TXCMD_SET_TX_PWR_TRACKING
= 0xFF900005,
1509 //definded by WB. Ready to fill handlers for different NIC types.
1510 //add handle here when necessary.
1513 void (* rtl819x_read_eeprom_info
)(struct net_device
*dev
);
1514 short (* rtl819x_tx
)(struct net_device
*dev
, struct sk_buff
* skb
);
1515 short (* rtl819x_tx_cmd
)(struct net_device
*dev
, struct sk_buff
*skb
);
1516 void (* rtl819x_rx_nomal
)(struct sk_buff
* skb
);
1517 void (* rtl819x_rx_cmd
)(struct sk_buff
*skb
);
1518 bool (* rtl819x_adapter_start
)(struct net_device
*dev
);
1519 void (* rtl819x_link_change
)(struct net_device
*dev
);
1520 void (* rtl819x_initial_gain
)(struct net_device
*dev
,u8 Operation
);
1521 void (* rtl819x_query_rxdesc_status
)(struct sk_buff
*skb
, struct ieee80211_rx_stats
*stats
, bool bIsRxAggrSubframe
);
1524 typedef struct r8192_priv
1526 struct rtl819x_ops
* ops
;
1527 struct usb_device
*udev
;
1528 //added for maintain info from eeprom
1532 u8 eeprom_CustomerID
;
1533 u8 eeprom_SubCustomerID
;
1534 u8 eeprom_ChannelPlan
;
1535 RT_CUSTOMER_ID CustomerID
;
1536 LED_STRATEGY_8190 LedStrategy
;
1537 u8 txqueue_to_outpipemap
[9];
1544 struct ieee80211_device
*ieee80211
;
1546 short card_8192
; /* O: rtl8192, 1:rtl8185 V B/C, 2:rtl8185 V D */
1547 u8 card_8192_version
; /* if TCR reports card V B/C this discriminates */
1548 // short phy_ver; /* meaningful for rtl8225 1:A 2:B 3:C */
1550 enum card_type
{PCI
,MINIPCI
,CARDBUS
,USB
}card_type
;
1552 short plcp_preamble_mode
;
1554 spinlock_t irq_lock
;
1555 // spinlock_t irq_th_lock;
1558 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,16))
1559 struct semaphore mutex
;
1563 spinlock_t rf_lock
; //used to lock rf write operation added by wb
1566 // short irq_enabled;
1567 // struct net_device *dev; //comment this out.
1573 // u8 chtxpwr[15]; //channels from 1 to 14, 0 not used
1574 // u8 chtxpwr_ofdm[15]; //channels from 1 to 14, 0 not used
1575 // u8 cck_txpwr_base;
1576 // u8 ofdm_txpwr_base;
1577 // u8 challow[15]; //channels from 1 to 14, 0 not used
1579 short crcmon
; //if 1 allow bad crc frame reception in monitor mode
1582 // struct timer_list scan_timer;
1583 /*short scanpending;
1585 // spinlock_t scan_lock;
1587 //u8 active_scan_num;
1588 struct semaphore wx_sem
;
1589 struct semaphore rf_sem
; //used to lock rf write operation added by wb, modified by david
1596 // short rcr_csense;
1597 u8 rf_type
; //0 means 1T2R, 1 means 2T4R
1598 RT_RF_TYPE_819xU rf_chip
;
1601 short (*rf_set_sens
)(struct net_device
*dev
,short sens
);
1602 u8 (*rf_set_chan
)(struct net_device
*dev
,u8 ch
);
1603 void (*rf_close
)(struct net_device
*dev
);
1604 void (*rf_init
)(struct net_device
*dev
);
1609 struct iw_statistics wstats
;
1610 struct proc_dir_entry
*dir_dev
;
1615 // dma_addr_t rxringdma;
1616 struct urb
**rx_urb
;
1617 struct urb
**rx_cmd_urb
;
1619 /* modified by davad for Rx process */
1620 struct sk_buff_head rx_queue
;
1621 struct sk_buff_head skb_queue
;
1622 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1623 struct tq_struct qos_activate
;
1625 struct work_struct qos_activate
;
1628 atomic_t tx_pending
[0x10];//UART_PRIORITY+1
1631 struct tasklet_struct irq_rx_tasklet
;
1632 struct urb
*rxurb_task
;
1634 //2 Tx Related variables
1635 u16 ShortRetryLimit
;
1638 u8 RegCWinMin
; // For turbo mode CW adaptive. Added by Annie, 2005-10-27.
1640 u32 LastRxDescTSFHigh
;
1641 u32 LastRxDescTSFLow
;
1644 //2 Rx Related variables
1645 u16 EarlyRxThreshold
;
1655 struct ChnlAccessSetting ChannelAccessSetting
;
1656 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0)
1657 struct work_struct reset_wq
;
1659 struct tq_struct reset_wq
;
1662 /**********************************************************/
1668 bool bCurrentRxAggrEnable
;
1669 u8 Rf_Mode
; //add for Firmware RF -R/W switch
1670 prt_firmware pFirmware
;
1671 rtl819xUsb_loopback_e LoopbackMode
;
1672 firmware_source_e firmware_source
;
1675 u16 EEPROMTxPowerDiff
;
1676 u8 EEPROMThermalMeter
;
1678 u8 EEPROMCrystalCap
;
1680 u8 EEPROMTxPowerLevelCCK
;// CCK channel 1~14
1681 u8 EEPROMTxPowerLevelCCK_V1
[3];
1682 u8 EEPROMTxPowerLevelOFDM24G
[3]; // OFDM 2.4G channel 1~14
1683 u8 EEPROMTxPowerLevelOFDM5G
[24]; // OFDM 5G
1686 bool bDmDisableProtect
;
1687 bool bIgnoreDiffRateTxPowerOffset
;
1689 #ifdef EEPROM_OLD_FORMAT_SUPPORT
1690 u8 EEPROMTxPowerLevelCCK24G
[14]; // CCK 2.4G channel 1~14
1691 //u8 EEPROMTxPowerLevelOFDM24G[14]; // OFDM 2.4G channel 1~14
1692 //u8 EEPROMTxPowerLevelOFDM5G[24]; // OFDM 5G
1694 // For EEPROM TX Power Index like 8190 series
1695 u8 EEPROMRfACCKChnl1TxPwLevel
[3]; //RF-A CCK Tx Power Level at channel 7
1696 u8 EEPROMRfAOfdmChnlTxPwLevel
[3];//RF-A CCK Tx Power Level at [0],[1],[2] = channel 1,7,13
1697 u8 EEPROMRfCCCKChnl1TxPwLevel
[3]; //RF-C CCK Tx Power Level at channel 7
1698 u8 EEPROMRfCOfdmChnlTxPwLevel
[3];//RF-C CCK Tx Power Level at [0],[1],[2] = channel 1,7,13
1700 // F92S new definition
1701 //RF-A&B CCK/OFDM Tx Power Level at three channel are [1-3] [4-9] [10-14]
1702 u8 RfCckChnlAreaTxPwr
[2][3];
1703 u8 RfOfdmChnlAreaTxPwr1T
[2][3];
1704 u8 RfOfdmChnlAreaTxPwr2T
[2][3];
1707 // Add For EEPROM Efuse switch and Efuse Shadow map Setting
1709 bool bBootFromEfuse
; // system boot form EFUSE
1710 u8 EfuseMap
[2][HWSET_MAX_SIZE_92S
];
1713 u8 EEPROMUsbPhyParam
[5];
1716 bool bBootFromEEPROM
; // system boot from EEPROM
1719 u8 EEPROMHT2T_TxPwr
[6]; // For channel 1, 7 and 13 on path A/B.
1720 u8 EEPROMTxPwrTkMode
;
1722 u8 bTXPowerDataReadFromEEPORM
;
1725 u8 EEPROMUsbEndPointNumber
;
1727 bool AutoloadFailFlag
;
1728 u8 RfTxPwrLevelCck
[2][14];
1729 u8 RfTxPwrLevelOfdm1T
[2][14];
1730 u8 RfTxPwrLevelOfdm2T
[2][14];
1731 // 2009/01/20 MH Add for new EEPROM format.
1732 u8 TxPwrHt20Diff
[2][14]; // HT 20<->40 Pwr diff
1733 u8 TxPwrLegacyHtDiff
[2][14]; // For HT<->legacy pwr diff
1734 u8 TxPwrbandEdgeHt40
[2][2]; // Band edge for HY 40MHZlow/up channel
1735 u8 TxPwrbandEdgeHt20
[2][2]; // Band edge for HY 40MHZ low/up channel
1736 u8 TxPwrbandEdgeLegacyOfdm
[2][2]; // Band edge for legacy ofdm low/up channel
1737 u8 TxPwrbandEdgeFlag
; // Band edge enable flag
1739 // L1 and L2 high power threshold.
1740 u8 MidHighPwrTHR_L1
;
1741 u8 MidHighPwrTHR_L2
;
1742 u8 TxPwrSafetyFlag
; // for Tx power safety spec
1746 BB_REGISTER_DEFINITION_T PHYRegDef
[4]; //Radio A/B/C/D
1747 // Read/write are allow for following hardware information variables
1749 u32 MCSTxPowerLevelOriginalOffset
[7];//FIXLZM
1751 u32 MCSTxPowerLevelOriginalOffset
[6];
1753 u32 CCKTxPowerLevelOriginalOffset
;
1754 u8 TxPowerLevelCCK
[14]; // CCK channel 1~14
1755 u8 TxPowerLevelOFDM24G
[14]; // OFDM 2.4G channel 1~14
1756 u8 TxPowerLevelOFDM5G
[14]; // OFDM 5G
1759 u8 AntennaTxPwDiff
[2]; // Antenna gain offset, index 0 for B, 1 for C, and 2 for D
1760 u8 CrystalCap
; // CrystalCap.
1761 u8 ThermalMeter
[2]; // ThermalMeter, index 0 for RFIC0, and 1 for RFIC1
1764 // Use to calculate PWBD.
1766 long undecorated_smoothed_pwdb
;
1769 u8 SwChnlInProgress
;
1772 u8 SetBWModeInProgress
;
1773 HT_CHANNEL_WIDTH CurrentChannelBW
;
1778 u8 nCur40MhzPrimeSC
; // Control channel sub-carrier
1779 // Joseph test for shorten RF configuration time.
1780 // We save RF reg0 in this variable to reduce RF reading.
1784 bool brfpath_rxenable
[4];
1786 bool SetRFPowerStateInProgress
;
1788 struct timer_list watch_dog_timer
;
1790 //+by amy 080515 for dynamic mechenism
1791 //Add by amy Tx Power Control for Near/Far Range 2008/05/15
1792 bool bdynamic_txpower
; //bDynamicTxPower
1793 bool bDynamicTxHighPower
; // Tx high power state
1794 bool bDynamicTxLowPower
; // Tx low power state
1795 bool bLastDTPFlag_High
;
1796 bool bLastDTPFlag_Low
;
1798 bool bstore_last_dtpflag
;
1799 bool bstart_txctrl_bydtp
; //Define to discriminate on High power State or on sitesuvey to change Tx gain index
1800 //Add by amy for Rate Adaptive
1801 rate_adaptive rate_adaptive
;
1802 //Add by amy for TX power tracking
1803 //2008/05/15 Mars OPEN/CLOSE TX POWER TRACKING
1804 txbbgain_struct txbbgain_table
[TxBBGainTableLength
];
1805 u8 EEPROMTxPowerTrackEnable
;
1806 u8 txpower_count
;//For 6 sec do tracking again
1807 bool btxpower_trackingInit
;
1810 //2007/09/10 Mars Add CCK TX Power Tracking
1811 ccktxbbgain_struct cck_txbbgain_table
[CCKTxBBGainTableLength
];
1812 ccktxbbgain_struct cck_txbbgain_ch14_table
[CCKTxBBGainTableLength
];
1813 u8 rfa_txpowertrackingindex
;
1814 u8 rfa_txpowertrackingindex_real
;
1815 u8 rfa_txpowertracking_default
;
1816 u8 rfc_txpowertrackingindex
;
1817 u8 rfc_txpowertrackingindex_real
;
1819 s8 cck_present_attentuation
;
1820 u8 cck_present_attentuation_20Mdefault
;
1821 u8 cck_present_attentuation_40Mdefault
;
1822 char cck_present_attentuation_difference
;
1823 bool btxpower_tracking
;
1825 bool btxpowerdata_readfromEEPORM
;
1827 //For Backup Initial Gain
1828 init_gain initgain_backup
;
1829 u8 DefaultInitialGain
[4];
1830 // For EDCA Turbo mode, Added by amy 080515.
1831 bool bis_any_nonbepkts
;
1832 bool bcurrent_turbo_EDCA
;
1833 bool bis_cur_rdlstate
;
1834 struct timer_list fsync_timer
;
1835 bool bfsync_processing
; // 500ms Fsync timer is active or not
1837 u32 rateCountDiffRecord
;
1838 u32 ContiuneDiffCount
;
1843 u8 framesyncMonitor
;
1844 //Added by amy 080516 for RX related
1846 u8 nrxAMPDU_aggr_num
;
1851 //by amy for reset_count
1855 u32 txpower_checkcnt
;
1856 u32 txpower_tracking_callback_cnt
;
1857 u8 thermal_read_val
[40];
1858 u8 thermal_readback_index
;
1859 u32 ccktxpower_adjustcnt_not_ch14
;
1860 u32 ccktxpower_adjustcnt_ch14
;
1861 u8 tx_fwinfo_force_subcarriermode
;
1862 u8 tx_fwinfo_force_subcarrierval
;
1863 //by amy for silent reset
1864 RESET_TYPE ResetProgress
;
1865 bool bForcedSilentReset
;
1866 bool bDisableNormalResetCheck
;
1869 int IrpPendingCount
;
1870 bool bResetInProgress
;
1872 u8 InitialGainOperateType
;
1876 //define work item by amy 080526
1877 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0)
1879 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,20)
1880 struct delayed_work update_beacon_wq
;
1881 struct delayed_work watch_dog_wq
;
1882 struct delayed_work txpower_tracking_wq
;
1883 struct delayed_work rfpath_check_wq
;
1884 struct delayed_work gpio_change_rf_wq
;
1885 struct delayed_work initialgain_operate_wq
;
1887 struct work_struct update_beacon_wq
;
1888 struct work_struct watch_dog_wq
;
1889 struct work_struct txpower_tracking_wq
;
1890 struct work_struct rfpath_check_wq
;
1891 struct work_struct gpio_change_rf_wq
;
1892 struct work_struct initialgain_operate_wq
;
1894 struct workqueue_struct
*priv_wq
;
1896 /* used for periodly scan */
1897 struct tq_struct update_beacon_wq
;
1898 struct tq_struct txpower_tracking_wq
;
1899 struct tq_struct rfpath_check_wq
;
1900 struct tq_struct watch_dog_wq
;
1901 struct tq_struct gpio_change_rf_wq
;
1902 struct tq_struct initialgain_operate_wq
;
1907 // RF and BB access related synchronization flags.
1908 bool bChangeBBInProgress
; // BaseBand RW is still in progress.
1909 bool bChangeRFInProgress
; // RF RW is still in progress.
1911 u32 CCKTxPowerAdjustCntCh14
; //debug only
1912 u32 CCKTxPowerAdjustCntNotCh14
; //debug only
1913 u32 TXPowerTrackingCallbackCnt
; //debug only
1914 u32 TxPowerCheckCnt
; //debug only
1915 u32 RFWritePageCnt
[3]; //debug only
1916 u32 RFReadPageCnt
[3]; //debug only
1917 u8 ThermalReadBackIndex
; //debug only
1918 u8 ThermalReadVal
[40]; //debug only
1920 // For HCT test, 2005.07.15, by rcnjko.
1921 // not realize true, just define it, set it 0 default, because some func use it
1924 // The current Tx Power Level
1925 u8 CurrentCckTxPwrIdx
;
1926 u8 CurrentOfdm24GTxPwrIdx
;
1928 // For pass 92S common phycfg.c compiler
1929 u8 TxPowerLevelCCK_A
[14]; // RF-A, CCK channel 1~14
1930 u8 TxPowerLevelOFDM24G_A
[14]; // RF-A, OFDM 2.4G channel 1~14
1931 u8 TxPowerLevelCCK_C
[14]; // RF-C, CCK channel 1~14
1932 u8 TxPowerLevelOFDM24G_C
[14]; // RF-C, OFDM 2.4G channel 1~14
1933 u8 LegacyHTTxPowerDiff
; // Legacy to HT rate power diff
1934 char RF_C_TxPwDiff
; // Antenna gain offset, rf-c to rf-a
1936 bool bRFSiOrPi
;//0=si, 1=pi.
1939 bool SetFwCmdInProgress
; //is set FW CMD in Progress? 92S only
1948 #ifdef USB_RX_AGGREGATION_SUPPORT
1949 bool bCurrentRxAggrEnable
;
1950 bool bForcedUsbRxAggr
;
1951 u32 ForcedUsbRxAggrInfo
;
1952 u32 LastUsbRxAggrInfoSetting
;
1953 u32 RegUsbRxAggrInfo
;
1961 // now mirging to rtl8187B
1964 LOW_PRIORITY = 0x02,
1970 BULK_PRIORITY
= 0x01,
1981 BEACON_PRIORITY
, //0x0A
1986 UART_PRIORITY
//0x0F
1999 #if 0 //defined in Qos.h
2000 //typedef u32 AC_CODING;
2001 #define AC0_BE 0 // ACI: 0x00 // Best Effort
2002 #define AC1_BK 1 // ACI: 0x01 // Background
2003 #define AC2_VI 2 // ACI: 0x10 // Video
2004 #define AC3_VO 3 // ACI: 0x11 // Voice
2005 #define AC_MAX 4 // Max: define total number; Should not to be used as a real enum.
2008 // ECWmin/ECWmax field.
2009 // Ref: WMM spec 2.2.2: WME Parameter Element, p.13.
2022 // Ref: WMM spec 2.2.2: WME Parameter Element, p.12.
2024 typedef union _ACI_AIFSN
{
2034 }ACI_AIFSN
, *PACI_AIFSN
;
2037 // AC Parameters Record Format.
2038 // Ref: WMM spec 2.2.2: WME Parameter Element, p.12.
2040 typedef union _AC_PARAM
{
2050 }AC_PARAM
, *PAC_PARAM
;
2054 struct ssid_thread
{
2055 struct net_device
*dev
;
2056 u8 name
[IW_ESSID_MAX_SIZE
+ 1];
2061 short rtl8192SU_tx_cmd(struct net_device
*dev
, struct sk_buff
*skb
);
2062 short rtl8192SU_tx(struct net_device
*dev
, struct sk_buff
* skb
);
2063 bool FirmwareDownload92S(struct net_device
*dev
);
2065 short rtl8192_tx(struct net_device
*dev
, struct sk_buff
* skb
);
2066 bool init_firmware(struct net_device
*dev
);
2069 short rtl819xU_tx_cmd(struct net_device
*dev
, struct sk_buff
*skb
);
2070 short rtl8192_tx(struct net_device
*dev
, struct sk_buff
* skb
);
2072 u32
read_cam(struct net_device
*dev
, u8 addr
);
2073 void write_cam(struct net_device
*dev
, u8 addr
, u32 data
);
2075 u8
read_nic_byte(struct net_device
*dev
, int x
);
2076 u8
read_nic_byte_E(struct net_device
*dev
, int x
);
2077 u32
read_nic_dword(struct net_device
*dev
, int x
);
2078 u16
read_nic_word(struct net_device
*dev
, int x
) ;
2079 void write_nic_byte(struct net_device
*dev
, int x
,u8 y
);
2080 void write_nic_byte_E(struct net_device
*dev
, int x
,u8 y
);
2081 void write_nic_word(struct net_device
*dev
, int x
,u16 y
);
2082 void write_nic_dword(struct net_device
*dev
, int x
,u32 y
);
2083 void force_pci_posting(struct net_device
*dev
);
2085 void rtl8192_rtx_disable(struct net_device
*);
2086 void rtl8192_rx_enable(struct net_device
*);
2087 void rtl8192_tx_enable(struct net_device
*);
2089 void rtl8192_disassociate(struct net_device
*dev
);
2090 //void fix_rx_fifo(struct net_device *dev);
2091 void rtl8185_set_rf_pins_enable(struct net_device
*dev
,u32 a
);
2093 void rtl8192_set_anaparam(struct net_device
*dev
,u32 a
);
2094 void rtl8185_set_anaparam2(struct net_device
*dev
,u32 a
);
2095 void rtl8192_update_msr(struct net_device
*dev
);
2096 int rtl8192_down(struct net_device
*dev
);
2097 int rtl8192_up(struct net_device
*dev
);
2098 void rtl8192_commit(struct net_device
*dev
);
2099 void rtl8192_set_chan(struct net_device
*dev
,short ch
);
2100 void write_phy(struct net_device
*dev
, u8 adr
, u8 data
);
2101 void write_phy_cck(struct net_device
*dev
, u8 adr
, u32 data
);
2102 void write_phy_ofdm(struct net_device
*dev
, u8 adr
, u32 data
);
2103 void rtl8185_tx_antenna(struct net_device
*dev
, u8 ant
);
2104 void rtl8192_set_rxconf(struct net_device
*dev
);
2105 //short check_nic_enough_desc(struct net_device *dev, priority_t priority);
2106 extern void rtl819xusb_beacon_tx(struct net_device
*dev
,u16 tx_rate
);
2107 void CamResetAllEntry(struct net_device
* dev
);
2108 void EnableHWSecurityConfig8192(struct net_device
*dev
);
2109 void setKey(struct net_device
*dev
, u8 EntryNo
, u8 KeyIndex
, u16 KeyType
, u8
*MacAddr
, u8 DefaultKey
, u32
*KeyContent
);
2110 short rtl8192_is_tx_queue_empty(struct net_device
*dev
);