1 /******************************************************************************
3 * Copyright(c) 2009-2010 Realtek Corporation.
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.
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
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
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
21 * Contact Information:
22 * wlanfae <wlanfae@realtek.com>
23 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
24 * Hsinchu 300, Taiwan.
26 * Larry Finger <Larry.Finger@lwfinger.net>
28 *****************************************************************************/
30 #ifndef __RTL_WIFI_H__
31 #define __RTL_WIFI_H__
33 #include <linux/sched.h>
34 #include <linux/firmware.h>
35 #include <linux/etherdevice.h>
36 #include <linux/vmalloc.h>
37 #include <linux/usb.h>
38 #include <net/mac80211.h>
39 #include <linux/completion.h>
42 #define RF_CHANGE_BY_INIT 0
43 #define RF_CHANGE_BY_IPS BIT(28)
44 #define RF_CHANGE_BY_PS BIT(29)
45 #define RF_CHANGE_BY_HW BIT(30)
46 #define RF_CHANGE_BY_SW BIT(31)
48 #define IQK_ADDA_REG_NUM 16
49 #define IQK_MAC_REG_NUM 4
51 #define MAX_KEY_LEN 61
52 #define KEY_BUF_SIZE 5
55 /*aci: 0x00 Best Effort*/
56 /*aci: 0x01 Background*/
59 /*Max: define total number.*/
65 #define QOS_QUEUE_NUM 4
66 #define RTL_MAC80211_NUM_QUEUE 5
67 #define REALTEK_USB_VENQT_MAX_BUF_SIZE 254
68 #define RTL_USB_MAX_RX_COUNT 100
69 #define QBSS_LOAD_SIZE 5
70 #define MAX_WMMELE_LENGTH 64
72 #define TOTAL_CAM_ENTRY 32
74 /*slot time for 11g. */
75 #define RTL_SLOT_TIME_9 9
76 #define RTL_SLOT_TIME_20 20
78 /*related with tcp/ip. */
80 #define ETH_P_PAE 0x888E /*Port Access Entity (IEEE 802.1X) */
81 #define ETH_P_IP 0x0800 /*Internet Protocol packet */
82 #define ETH_P_ARP 0x0806 /*Address Resolution packet */
84 #define PROTOC_TYPE_SIZE 2
86 /*related with 802.11 frame*/
87 #define MAC80211_3ADDR_LEN 24
88 #define MAC80211_4ADDR_LEN 30
90 #define CHANNEL_MAX_NUMBER (14 + 24 + 21) /* 14 is the max channel no */
91 #define CHANNEL_GROUP_MAX (3 + 9) /* ch1~3, 4~9, 10~14 = three groups */
92 #define MAX_PG_GROUP 13
93 #define CHANNEL_GROUP_MAX_2G 3
94 #define CHANNEL_GROUP_IDX_5GL 3
95 #define CHANNEL_GROUP_IDX_5GM 6
96 #define CHANNEL_GROUP_IDX_5GH 9
97 #define CHANNEL_GROUP_MAX_5G 9
98 #define CHANNEL_MAX_NUMBER_2G 14
99 #define AVG_THERMAL_NUM 8
100 #define MAX_TID_COUNT 9
117 enum rt_eeprom_type
{
124 RTL_STATUS_INTERFACE_START
= 0,
128 HARDWARE_TYPE_RTL8192E
,
129 HARDWARE_TYPE_RTL8192U
,
130 HARDWARE_TYPE_RTL8192SE
,
131 HARDWARE_TYPE_RTL8192SU
,
132 HARDWARE_TYPE_RTL8192CE
,
133 HARDWARE_TYPE_RTL8192CU
,
134 HARDWARE_TYPE_RTL8192DE
,
135 HARDWARE_TYPE_RTL8192DU
,
136 HARDWARE_TYPE_RTL8723E
,
137 HARDWARE_TYPE_RTL8723U
,
143 #define IS_HARDWARE_TYPE_8192SU(rtlhal) \
144 (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SU)
145 #define IS_HARDWARE_TYPE_8192SE(rtlhal) \
146 (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SE)
147 #define IS_HARDWARE_TYPE_8192CE(rtlhal) \
148 (rtlhal->hw_type == HARDWARE_TYPE_RTL8192CE)
149 #define IS_HARDWARE_TYPE_8192CU(rtlhal) \
150 (rtlhal->hw_type == HARDWARE_TYPE_RTL8192CU)
151 #define IS_HARDWARE_TYPE_8192DE(rtlhal) \
152 (rtlhal->hw_type == HARDWARE_TYPE_RTL8192DE)
153 #define IS_HARDWARE_TYPE_8192DU(rtlhal) \
154 (rtlhal->hw_type == HARDWARE_TYPE_RTL8192DU)
155 #define IS_HARDWARE_TYPE_8723E(rtlhal) \
156 (rtlhal->hw_type == HARDWARE_TYPE_RTL8723E)
157 #define IS_HARDWARE_TYPE_8723U(rtlhal) \
158 (rtlhal->hw_type == HARDWARE_TYPE_RTL8723U)
159 #define IS_HARDWARE_TYPE_8192S(rtlhal) \
160 (IS_HARDWARE_TYPE_8192SE(rtlhal) || IS_HARDWARE_TYPE_8192SU(rtlhal))
161 #define IS_HARDWARE_TYPE_8192C(rtlhal) \
162 (IS_HARDWARE_TYPE_8192CE(rtlhal) || IS_HARDWARE_TYPE_8192CU(rtlhal))
163 #define IS_HARDWARE_TYPE_8192D(rtlhal) \
164 (IS_HARDWARE_TYPE_8192DE(rtlhal) || IS_HARDWARE_TYPE_8192DU(rtlhal))
165 #define IS_HARDWARE_TYPE_8723(rtlhal) \
166 (IS_HARDWARE_TYPE_8723E(rtlhal) || IS_HARDWARE_TYPE_8723U(rtlhal))
167 #define IS_HARDWARE_TYPE_8723U(rtlhal) \
168 (rtlhal->hw_type == HARDWARE_TYPE_RTL8723U)
170 #define RX_HAL_IS_CCK_RATE(_pdesc)\
171 (_pdesc->rxmcs == DESC92_RATE1M || \
172 _pdesc->rxmcs == DESC92_RATE2M || \
173 _pdesc->rxmcs == DESC92_RATE5_5M || \
174 _pdesc->rxmcs == DESC92_RATE11M)
176 enum scan_operation_backup_opt
{
199 u32 rfswitch_control
;
202 u32 rfrxiq_imbalance
;
204 u32 rftxiq_imbalance
;
207 u32 rflssi_readbackpi
;
211 IO_CMD_PAUSE_DM_BY_SCAN
= 0,
212 IO_CMD_RESUME_DM_BY_SCAN
= 1,
217 HW_VAR_MULTICAST_REG
,
221 HW_VAR_SECURITY_CONF
,
222 HW_VAR_BEACON_INTERVAL
,
224 HW_VAR_LISTEN_INTERVAL
,
237 HW_VAR_RATE_FALLBACK_CONTROL
,
238 HW_VAR_CONTENTION_WINDOW
,
243 HW_VAR_AMPDU_MIN_SPACE
,
244 HW_VAR_SHORTGI_DENSITY
,
246 HW_VAR_MCS_RATE_AVAILABLE
,
249 HW_VAR_DIS_Req_Qsize
,
250 HW_VAR_CCX_CHNL_LOAD
,
251 HW_VAR_CCX_NOISE_HISTOGRAM
,
258 HW_VAR_SET_DEV_POWER
,
268 HW_VAR_USER_CONTROL_TURBO_MODE
,
274 HW_VAR_AUTOLOAD_STATUS
,
275 HW_VAR_RF_2R_DISABLE
,
277 HW_VAR_H2C_FW_PWRMODE
,
278 HW_VAR_H2C_FW_JOINBSSRPT
,
279 HW_VAR_FW_PSMODE_STATUS
,
280 HW_VAR_1X1_RECV_COMBINE
,
281 HW_VAR_STOP_SEND_BEACON
,
286 HW_VAR_H2C_FW_UPDATE_GTK
,
289 HW_VAR_WF_IS_MAC_ADDR
,
290 HW_VAR_H2C_FW_OFFLOAD
,
293 HW_VAR_HANDLE_FW_C2H
,
294 HW_VAR_DL_FW_RSVD_PAGE
,
296 HW_VAR_HW_SEQ_ENABLE
,
301 HW_VAR_SWITCH_EPHY_WoWLAN
,
302 HW_VAR_INT_MIGRATION
,
313 enum _RT_MEDIA_STATUS
{
314 RT_MEDIA_DISCONNECT
= 0,
320 RT_CID_8187_ALPHA0
= 1,
321 RT_CID_8187_SERCOMM_PS
= 2,
322 RT_CID_8187_HW_LED
= 3,
323 RT_CID_8187_NETGEAR
= 4,
325 RT_CID_819x_CAMEO
= 6,
326 RT_CID_819x_RUNTOP
= 7,
327 RT_CID_819x_Senao
= 8,
329 RT_CID_819x_Netcore
= 10,
330 RT_CID_Nettronix
= 11,
334 RT_CID_819x_ALPHA
= 15,
335 RT_CID_819x_Sitecom
= 16,
337 RT_CID_819x_Lenovo
= 18,
338 RT_CID_819x_QMI
= 19,
339 RT_CID_819x_Edimax_Belkin
= 20,
340 RT_CID_819x_Sercomm_Belkin
= 21,
341 RT_CID_819x_CAMEO1
= 22,
342 RT_CID_819x_MSI
= 23,
343 RT_CID_819x_Acer
= 24,
345 RT_CID_819x_CLEVO
= 28,
346 RT_CID_819x_Arcadyan_Belkin
= 29,
347 RT_CID_819x_SAMSUNG
= 30,
348 RT_CID_819x_WNC_COREGA
= 31,
349 RT_CID_819x_Foxcoon
= 32,
350 RT_CID_819x_DELL
= 33,
356 HW_DESC_TX_NEXTDESC_ADDR
,
364 PRIME_CHNL_OFFSET_DONT_CARE
= 0,
365 PRIME_CHNL_OFFSET_LOWER
= 1,
366 PRIME_CHNL_OFFSET_UPPER
= 2,
376 enum ht_channel_width
{
377 HT_CHANNEL_WIDTH_20
= 0,
378 HT_CHANNEL_WIDTH_20_40
= 1,
381 /* Ref: 802.11i sepc D10.0 7.3.2.25.1
382 Cipher Suites Encryption Algorithms */
385 WEP40_ENCRYPTION
= 1,
387 RSERVED_ENCRYPTION
= 3,
388 AESCCMP_ENCRYPTION
= 4,
389 WEP104_ENCRYPTION
= 5,
394 _HAL_STATE_START
= 1,
397 enum rtl_desc92_rate
{
398 DESC92_RATE1M
= 0x00,
399 DESC92_RATE2M
= 0x01,
400 DESC92_RATE5_5M
= 0x02,
401 DESC92_RATE11M
= 0x03,
403 DESC92_RATE6M
= 0x04,
404 DESC92_RATE9M
= 0x05,
405 DESC92_RATE12M
= 0x06,
406 DESC92_RATE18M
= 0x07,
407 DESC92_RATE24M
= 0x08,
408 DESC92_RATE36M
= 0x09,
409 DESC92_RATE48M
= 0x0a,
410 DESC92_RATE54M
= 0x0b,
412 DESC92_RATEMCS0
= 0x0c,
413 DESC92_RATEMCS1
= 0x0d,
414 DESC92_RATEMCS2
= 0x0e,
415 DESC92_RATEMCS3
= 0x0f,
416 DESC92_RATEMCS4
= 0x10,
417 DESC92_RATEMCS5
= 0x11,
418 DESC92_RATEMCS6
= 0x12,
419 DESC92_RATEMCS7
= 0x13,
420 DESC92_RATEMCS8
= 0x14,
421 DESC92_RATEMCS9
= 0x15,
422 DESC92_RATEMCS10
= 0x16,
423 DESC92_RATEMCS11
= 0x17,
424 DESC92_RATEMCS12
= 0x18,
425 DESC92_RATEMCS13
= 0x19,
426 DESC92_RATEMCS14
= 0x1a,
427 DESC92_RATEMCS15
= 0x1b,
428 DESC92_RATEMCS15_SG
= 0x1c,
429 DESC92_RATEMCS32
= 0x20,
452 EFUSE_HWSET_MAX_SIZE
,
453 EFUSE_MAX_SECTION_MAP
,
454 EFUSE_REAL_CONTENT_SIZE
,
455 EFUSE_OOB_PROTECT_BYTES_LEN
,
470 RTL_IMR_BCNDMAINT6
, /*Beacon DMA Interrupt 6 */
471 RTL_IMR_BCNDMAINT5
, /*Beacon DMA Interrupt 5 */
472 RTL_IMR_BCNDMAINT4
, /*Beacon DMA Interrupt 4 */
473 RTL_IMR_BCNDMAINT3
, /*Beacon DMA Interrupt 3 */
474 RTL_IMR_BCNDMAINT2
, /*Beacon DMA Interrupt 2 */
475 RTL_IMR_BCNDMAINT1
, /*Beacon DMA Interrupt 1 */
476 RTL_IMR_BCNDOK8
, /*Beacon Queue DMA OK Interrup 8 */
477 RTL_IMR_BCNDOK7
, /*Beacon Queue DMA OK Interrup 7 */
478 RTL_IMR_BCNDOK6
, /*Beacon Queue DMA OK Interrup 6 */
479 RTL_IMR_BCNDOK5
, /*Beacon Queue DMA OK Interrup 5 */
480 RTL_IMR_BCNDOK4
, /*Beacon Queue DMA OK Interrup 4 */
481 RTL_IMR_BCNDOK3
, /*Beacon Queue DMA OK Interrup 3 */
482 RTL_IMR_BCNDOK2
, /*Beacon Queue DMA OK Interrup 2 */
483 RTL_IMR_BCNDOK1
, /*Beacon Queue DMA OK Interrup 1 */
484 RTL_IMR_TIMEOUT2
, /*Timeout interrupt 2 */
485 RTL_IMR_TIMEOUT1
, /*Timeout interrupt 1 */
486 RTL_IMR_TXFOVW
, /*Transmit FIFO Overflow */
487 RTL_IMR_PSTIMEOUT
, /*Power save time out interrupt */
488 RTL_IMR_BcnInt
, /*Beacon DMA Interrupt 0 */
489 RTL_IMR_RXFOVW
, /*Receive FIFO Overflow */
490 RTL_IMR_RDU
, /*Receive Descriptor Unavailable */
491 RTL_IMR_ATIMEND
, /*For 92C,ATIM Window End Interrupt */
492 RTL_IMR_BDOK
, /*Beacon Queue DMA OK Interrup */
493 RTL_IMR_HIGHDOK
, /*High Queue DMA OK Interrupt */
494 RTL_IMR_COMDOK
, /*Command Queue DMA OK Interrupt*/
495 RTL_IMR_TBDOK
, /*Transmit Beacon OK interrup */
496 RTL_IMR_MGNTDOK
, /*Management Queue DMA OK Interrupt */
497 RTL_IMR_TBDER
, /*For 92C,Transmit Beacon Error Interrupt */
498 RTL_IMR_BKDOK
, /*AC_BK DMA OK Interrupt */
499 RTL_IMR_BEDOK
, /*AC_BE DMA OK Interrupt */
500 RTL_IMR_VIDOK
, /*AC_VI DMA OK Interrupt */
501 RTL_IMR_VODOK
, /*AC_VO DMA Interrupt */
502 RTL_IMR_ROK
, /*Receive DMA OK Interrupt */
503 RTL_IBSS_INT_MASKS
, /*(RTL_IMR_BcnInt | RTL_IMR_TBDOK |
506 /*CCK Rates, TxHT = 0 */
512 /*OFDM Rates, TxHT = 0 */
529 /*Firmware PS mode for control LPS.*/
531 FW_PS_ACTIVE_MODE
= 0,
536 FW_PS_UAPSD_WMM_MODE
= 5,
537 FW_PS_UAPSD_MODE
= 6,
539 FW_PS_WWLAN_MODE
= 8,
540 FW_PS_PM_Radio_Off
= 9,
541 FW_PS_PM_Card_Disable
= 10,
545 EACTIVE
, /*Active/Continuous access. */
546 EMAXPS
, /*Max power save mode. */
547 EFASTPS
, /*Fast power save mode. */
548 EAUTOPS
, /*Auto power save mode. */
553 LED_CTL_POWER_ON
= 1,
558 LED_CTL_SITE_SURVEY
= 6,
559 LED_CTL_POWER_OFF
= 7,
560 LED_CTL_START_TO_LINK
= 8,
561 LED_CTL_START_WPS
= 9,
562 LED_CTL_STOP_WPS
= 10,
573 /*acm implementation method.*/
575 eAcmWay0_SwAndHw
= 0,
581 SINGLEMAC_SINGLEPHY
= 0,
594 Ref: WMM spec 2.2.2: WME Parameter Element, p.12.*/
608 WIRELESS_MODE_UNKNOWN
= 0x00,
609 WIRELESS_MODE_A
= 0x01,
610 WIRELESS_MODE_B
= 0x02,
611 WIRELESS_MODE_G
= 0x04,
612 WIRELESS_MODE_AUTO
= 0x08,
613 WIRELESS_MODE_N_24G
= 0x10,
614 WIRELESS_MODE_N_5G
= 0x20
617 #define IS_WIRELESS_MODE_A(wirelessmode) \
618 (wirelessmode == WIRELESS_MODE_A)
619 #define IS_WIRELESS_MODE_B(wirelessmode) \
620 (wirelessmode == WIRELESS_MODE_B)
621 #define IS_WIRELESS_MODE_G(wirelessmode) \
622 (wirelessmode == WIRELESS_MODE_G)
623 #define IS_WIRELESS_MODE_N_24G(wirelessmode) \
624 (wirelessmode == WIRELESS_MODE_N_24G)
625 #define IS_WIRELESS_MODE_N_5G(wirelessmode) \
626 (wirelessmode == WIRELESS_MODE_N_5G)
628 enum ratr_table_mode
{
629 RATR_INX_WIRELESS_NGB
= 0,
630 RATR_INX_WIRELESS_NG
= 1,
631 RATR_INX_WIRELESS_NB
= 2,
632 RATR_INX_WIRELESS_N
= 3,
633 RATR_INX_WIRELESS_GB
= 4,
634 RATR_INX_WIRELESS_G
= 5,
635 RATR_INX_WIRELESS_B
= 6,
636 RATR_INX_WIRELESS_MC
= 7,
637 RATR_INX_WIRELESS_A
= 8,
640 enum rtl_link_state
{
642 MAC80211_LINKING
= 1,
644 MAC80211_LINKED_SCANNING
= 3,
661 struct octet_string
{
666 struct rtl_hdr_3addr
{
676 struct rtl_info_element
{
682 struct rtl_probe_rsp
{
683 struct rtl_hdr_3addr header
;
685 __le16 beacon_interval
;
687 /*SSID, supported rates, FH params, DS params,
688 CF params, IBSS params, TIM (if beacon), RSN */
689 struct rtl_info_element info_element
[0];
693 /*ledpin Identify how to implement this SW led.*/
696 enum rtl_led_pin ledpin
;
702 struct rtl_led sw_led0
;
703 struct rtl_led sw_led1
;
706 struct rtl_qos_parameters
{
714 struct rt_smooth_data
{
715 u32 elements
[100]; /*array to store values */
716 u32 index
; /*index to current array to store */
717 u32 total_num
; /*num of valid elements */
718 u32 total_val
; /*sum of valid elements */
721 struct false_alarm_statistics
{
723 u32 cnt_rate_illegal
;
726 u32 cnt_fast_fsync_fail
;
727 u32 cnt_sb_search_fail
;
742 struct wireless_stats
{
743 unsigned long txbytesunicast
;
744 unsigned long txbytesmulticast
;
745 unsigned long txbytesbroadcast
;
746 unsigned long rxbytesunicast
;
749 /*Correct smoothed ss in Dbm, only used
750 in driver to report real power now. */
751 long recv_signal_power
;
753 long last_sigstrength_inpercent
;
755 u32 rssi_calculate_cnt
;
757 /*Transformed, in dbm. Beautified signal
758 strength for UI, not correct. */
759 long signal_strength
;
761 u8 rx_rssi_percentage
[4];
762 u8 rx_evm_percentage
[2];
764 struct rt_smooth_data ui_rssi
;
765 struct rt_smooth_data ui_link_quality
;
768 struct rate_adaptive
{
769 u8 rate_adaptive_disabled
;
773 u32 high_rssi_thresh_for_ra
;
774 u32 high2low_rssi_thresh_for_ra
;
775 u8 low2high_rssi_thresh_for_ra40m
;
776 u32 low_rssi_thresh_for_ra40M
;
777 u8 low2high_rssi_thresh_for_ra20m
;
778 u32 low_rssi_thresh_for_ra20M
;
779 u32 upper_rssi_threshold_ratr
;
780 u32 middleupper_rssi_threshold_ratr
;
781 u32 middle_rssi_threshold_ratr
;
782 u32 middlelow_rssi_threshold_ratr
;
783 u32 low_rssi_threshold_ratr
;
784 u32 ultralow_rssi_threshold_ratr
;
785 u32 low_rssi_threshold_ratr_40m
;
786 u32 low_rssi_threshold_ratr_20m
;
789 u32 ping_rssi_thresh_for_ra
;
794 struct regd_pair_mapping
{
800 struct rtl_regulatory
{
808 struct regd_pair_mapping
*regpair
;
812 bool rfkill_state
; /*0 is off, 1 is on */
815 #define IQK_MATRIX_REG_NUM 8
816 #define IQK_MATRIX_SETTINGS_NUM (1 + 24 + 21)
817 struct iqk_matrix_regs
{
819 long value
[1][IQK_MATRIX_REG_NUM
];
822 struct phy_parameters
{
827 enum hw_param_tab_index
{
842 struct bb_reg_def phyreg_def
[4]; /*Radio A/B/C/D */
843 struct init_gain initgain_backup
;
844 enum io_type current_io_type
;
849 u8 set_bwmode_inprogress
;
850 u8 sw_chnl_inprogress
;
855 u8 set_io_inprogress
;
858 /* record for power tracking */
870 u32 reg_c04
, reg_c08
, reg_874
;
872 u32 iqk_mac_backup
[IQK_MAC_REG_NUM
];
873 u32 iqk_bb_backup
[10];
877 struct iqk_matrix_regs iqk_matrix_regsetting
[IQK_MATRIX_SETTINGS_NUM
];
883 /* MAX_PG_GROUP groups of pwr diff by rates */
884 u32 mcs_txpwrlevel_origoffset
[MAX_PG_GROUP
][16];
885 u8 default_initialgain
[4];
887 /* the current Tx power level */
889 u8 cur_ofdm24g_txpwridx
;
891 u32 rfreg_chnlval
[2];
893 u32 reg_rf3c
[2]; /* pathA / pathB */
900 struct phy_parameters hwparam_tables
[MAX_TAB
];
904 #define MAX_TID_COUNT 9
905 #define RTL_AGG_STOP 0
906 #define RTL_AGG_PROGRESS 1
907 #define RTL_AGG_START 2
908 #define RTL_AGG_OPERATIONAL 3
909 #define RTL_AGG_OFF 0
911 #define RTL_AGG_EMPTYING_HW_QUEUE_ADDBA 2
912 #define RTL_AGG_EMPTYING_HW_QUEUE_DELBA 3
923 struct rtl_tid_data
{
925 struct rtl_ht_agg agg
;
928 struct rtl_sta_info
{
932 struct rtl_tid_data tids
[MAX_TID_COUNT
];
938 struct mutex bb_mutex
;
941 unsigned long pci_mem_end
; /*shared mem end */
942 unsigned long pci_mem_start
; /*shared mem start */
945 unsigned long pci_base_addr
; /*device I/O address */
947 void (*write8_async
) (struct rtl_priv
*rtlpriv
, u32 addr
, u8 val
);
948 void (*write16_async
) (struct rtl_priv
*rtlpriv
, u32 addr
, u16 val
);
949 void (*write32_async
) (struct rtl_priv
*rtlpriv
, u32 addr
, u32 val
);
950 void (*writeN_sync
) (struct rtl_priv
*rtlpriv
, u32 addr
, void *buf
,
953 u8(*read8_sync
) (struct rtl_priv
*rtlpriv
, u32 addr
);
954 u16(*read16_sync
) (struct rtl_priv
*rtlpriv
, u32 addr
);
955 u32(*read32_sync
) (struct rtl_priv
*rtlpriv
, u32 addr
);
960 u8 mac_addr
[ETH_ALEN
];
961 u8 mac80211_registered
;
967 struct ieee80211_supported_band bands
[IEEE80211_NUM_BANDS
];
968 struct ieee80211_hw
*hw
;
969 struct ieee80211_vif
*vif
;
970 enum nl80211_iftype opmode
;
972 /*Probe Beacon management */
973 struct rtl_tid_data tids
[MAX_TID_COUNT
];
974 enum rtl_link_state link_state
;
992 struct sk_buff_head skb_waitq
[MAX_TID_COUNT
];
993 u8 earlymode_threshold
;
1001 u8 mcs
[16]; /* 16 bytes mcs for HT rates. */
1002 u32 basic_rates
; /* b/g rates */
1007 u8 mode
; /* wireless mode */
1012 u8 cur_40_prime_sc_bk
;
1019 int beacon_interval
;
1022 u8 min_space_cfg
; /*For Min spacing configurations */
1024 u8 current_ampdu_factor
;
1025 u8 current_ampdu_density
;
1028 struct ieee80211_tx_queue_params edca_param
[RTL_MAC80211_NUM_QUEUE
];
1029 struct rtl_qos_parameters ac
[AC_MAX
];
1033 struct ieee80211_hw
*hw
;
1035 enum intf_type interface
;
1036 u16 hw_type
; /*92c or 92d or 92s and so on */
1039 u32 version
; /*version of chip */
1040 u8 state
; /*stop 0, start 1 */
1047 bool h2c_setinprogress
;
1049 /*Reserve page start offset except beacon in TxQ. */
1050 u8 fw_rsvdpage_startoffset
;
1053 /* FW Cmd IO related */
1056 bool set_fwcmd_inprogress
;
1057 u8 current_fwcmd_io
;
1060 bool driver_going2unload
;
1062 /*AMPDU init min space*/
1063 u8 minspace_cfg
; /*For Min spacing configurations */
1066 enum macphy_mode macphymode
;
1067 enum band_type current_bandtype
; /* 0:2.4G, 1:5G */
1068 enum band_type current_bandtypebackup
;
1069 enum band_type bandset
;
1070 /* dual MAC 0--Mac0 1--Mac1 */
1072 /* just for DualMac S3S4 */
1074 bool earlymode_enable
;
1076 bool during_mac0init_radiob
;
1077 bool during_mac1init_radioa
;
1078 bool reloadtxpowerindex
;
1079 /* True if IMR or IQK have done
1080 for 2.4G in scan progress */
1081 bool load_imrandiqk_setting_for2g
;
1083 bool disable_amsdu_8k
;
1086 struct rtl_security
{
1091 bool use_defaultkey
;
1092 /*Encryption Algorithm for Unicast Packet */
1093 enum rt_enc_alg pairwise_enc_algorithm
;
1094 /*Encryption Algorithm for Brocast/Multicast */
1095 enum rt_enc_alg group_enc_algorithm
;
1096 /*Cam Entry Bitmap */
1097 u32 hwsec_cam_bitmap
;
1098 u8 hwsec_cam_sta_addr
[TOTAL_CAM_ENTRY
][ETH_ALEN
];
1099 /*local Key buffer, indx 0 is for
1100 pairwise key 1-4 is for agoup key. */
1101 u8 key_buf
[KEY_BUF_SIZE
][MAX_KEY_LEN
];
1102 u8 key_len
[KEY_BUF_SIZE
];
1104 /*The pointer of Pairwise Key,
1105 it always points to KeyBuf[4] */
1110 /*PHY status for Dynamic Management */
1111 long entry_min_undecoratedsmoothed_pwdb
;
1112 long undecorated_smoothed_pwdb
; /*out dm */
1113 long entry_max_undecoratedsmoothed_pwdb
;
1114 bool dm_initialgain_enable
;
1115 bool dynamic_txpower_enable
;
1116 bool current_turbo_edca
;
1117 bool is_any_nonbepkts
; /*out dm */
1118 bool is_cur_rdlstate
;
1119 bool txpower_trackinginit
;
1120 bool disable_framebursting
;
1122 bool txpower_tracking
;
1124 bool rfpath_rxenable
[4];
1125 bool inform_fw_driverctrldm
;
1126 bool current_mrc_switch
;
1129 u8 thermalvalue_rxgain
;
1130 u8 thermalvalue_iqk
;
1131 u8 thermalvalue_lck
;
1134 u8 thermalvalue_avg
[AVG_THERMAL_NUM
];
1135 u8 thermalvalue_avg_index
;
1137 u8 dynamic_txhighpower_lvl
; /*Tx high power level */
1138 u8 dm_flag
; /*Indicate each dynamic mechanism's status. */
1140 u8 txpower_track_control
;
1141 bool interrupt_migration
;
1142 bool disable_tx_int
;
1147 #define EFUSE_MAX_LOGICAL_SIZE 256
1152 u16 max_physical_size
;
1154 u8 efuse_map
[2][EFUSE_MAX_LOGICAL_SIZE
];
1155 u16 efuse_usedbytes
;
1156 u8 efuse_usedpercentage
;
1157 #ifdef EFUSE_REPG_WORKAROUND
1158 bool efuse_re_pg_sec1flag
;
1159 u8 efuse_re_pg_data
[8];
1162 u8 autoload_failflag
;
1171 u16 eeprom_channelplan
;
1178 bool txpwr_fromeprom
;
1179 u8 eeprom_crystalcap
;
1181 u8 eeprom_tssi_5g
[3][2]; /* for 5GL/5GM/5GH band. */
1182 u8 eeprom_pwrlimit_ht20
[CHANNEL_GROUP_MAX
];
1183 u8 eeprom_pwrlimit_ht40
[CHANNEL_GROUP_MAX
];
1184 u8 eeprom_chnlarea_txpwr_cck
[2][CHANNEL_GROUP_MAX_2G
];
1185 u8 eeprom_chnlarea_txpwr_ht40_1s
[2][CHANNEL_GROUP_MAX
];
1186 u8 eeprom_chnlarea_txpwr_ht40_2sdiif
[2][CHANNEL_GROUP_MAX
];
1187 u8 txpwrlevel_cck
[2][CHANNEL_MAX_NUMBER_2G
];
1188 u8 txpwrlevel_ht40_1s
[2][CHANNEL_MAX_NUMBER
]; /*For HT 40MHZ pwr */
1189 u8 txpwrlevel_ht40_2s
[2][CHANNEL_MAX_NUMBER
]; /*For HT 40MHZ pwr */
1191 u8 internal_pa_5g
[2]; /* pathA / pathB */
1195 /*For power group */
1196 u8 eeprom_pwrgroup
[2][3];
1197 u8 pwrgroup_ht20
[2][CHANNEL_MAX_NUMBER
];
1198 u8 pwrgroup_ht40
[2][CHANNEL_MAX_NUMBER
];
1200 char txpwr_ht20diff
[2][CHANNEL_MAX_NUMBER
]; /*HT 20<->40 Pwr diff */
1201 /*For HT<->legacy pwr diff*/
1202 u8 txpwr_legacyhtdiff
[2][CHANNEL_MAX_NUMBER
];
1203 u8 txpwr_safetyflag
; /* Band edge enable flag */
1204 u16 eeprom_txpowerdiff
;
1205 u8 legacy_httxpowerdiff
; /* Legacy to HT rate power diff */
1206 u8 antenna_txpwdiff
[3];
1208 u8 eeprom_regulatory
;
1209 u8 eeprom_thermalmeter
;
1210 u8 thermalmeter
[2]; /*ThermalMeter, index 0 for RFIC0, 1 for RFIC1 */
1212 u8 crystalcap
; /* CrystalCap. */
1216 u8 legacy_ht_txpowerdiff
; /*Legacy to HT rate power diff */
1217 bool apk_thermalmeterignore
;
1219 bool b1x1_recvcombine
;
1227 bool pwrdomain_protect
;
1228 bool in_powersavemode
;
1229 bool rfchange_inprogress
;
1230 bool swrf_processing
;
1234 * just for PCIE ASPM
1235 * If it supports ASPM, Offset[560h] = 0x40,
1236 * otherwise Offset[560h] = 0x00.
1240 bool support_backdoor
;
1243 enum rt_psmode dot11_psmode
; /*Power save mode configured. */
1248 /*For Fw control LPS mode */
1250 /*Record Fw PS mode status. */
1251 bool fw_current_inpsmode
;
1252 u8 reg_max_lps_awakeintvl
;
1264 /*just for PCIE ASPM */
1265 u8 const_amdpci_aspm
;
1268 enum rf_pwrstate inactive_pwrstate
;
1269 enum rf_pwrstate rfpwr_state
; /*cur power state */
1275 bool multi_buffered
;
1277 unsigned int dtim_counter
;
1278 unsigned int sleep_ms
;
1279 unsigned long last_sleep_jiffies
;
1280 unsigned long last_awake_jiffies
;
1281 unsigned long last_delaylps_stamp_jiffies
;
1282 unsigned long last_dtim
;
1283 unsigned long last_beacon
;
1284 unsigned long last_action
;
1285 unsigned long last_slept
;
1293 u16 rate
; /*in 100 kbps */
1294 u8 received_channel
;
1303 u8 signalquality
; /*in 0-100 index. */
1305 * Real power in dBm for this packet,
1306 * no beautification and aggregation.
1308 s32 recvsignalpower
;
1309 s8 rxpower
; /*in dBm Translate from PWdB */
1310 u8 signalstrength
; /*in 0-100 index. */
1314 u16 shortpreamble
:1;
1325 bool rx_is40Mhzpacket
;
1327 u8 rx_mimo_signalstrength
[4]; /*in 0~100 index */
1328 s8 rx_mimo_signalquality
[2];
1329 bool packet_matchbssid
;
1333 bool packet_beacon
; /*for rssi */
1334 char cck_adc_pwdb
[4]; /*for rx path selection */
1337 struct rt_link_detect
{
1338 u32 num_tx_in4period
[4];
1339 u32 num_rx_in4period
[4];
1341 u32 num_tx_inperiod
;
1342 u32 num_rx_inperiod
;
1345 bool higher_busytraffic
;
1346 bool higher_busyrxtraffic
;
1348 u32 tidtx_in4period
[MAX_TID_COUNT
][4];
1349 u32 tidtx_inperiod
[MAX_TID_COUNT
];
1350 bool higher_busytxtraffic
[MAX_TID_COUNT
];
1353 struct rtl_tcb_desc
{
1361 u8 rts_use_shortpreamble
:1;
1362 u8 rts_use_shortgi
:1;
1368 u8 use_shortpreamble
:1;
1369 u8 use_driver_rate
:1;
1370 u8 disable_ratefallback
:1;
1382 /* The max value by HW */
1386 struct rtl_hal_ops
{
1387 int (*init_sw_vars
) (struct ieee80211_hw
*hw
);
1388 void (*deinit_sw_vars
) (struct ieee80211_hw
*hw
);
1389 void (*read_chip_version
)(struct ieee80211_hw
*hw
);
1390 void (*read_eeprom_info
) (struct ieee80211_hw
*hw
);
1391 void (*interrupt_recognized
) (struct ieee80211_hw
*hw
,
1392 u32
*p_inta
, u32
*p_intb
);
1393 int (*hw_init
) (struct ieee80211_hw
*hw
);
1394 void (*hw_disable
) (struct ieee80211_hw
*hw
);
1395 void (*hw_suspend
) (struct ieee80211_hw
*hw
);
1396 void (*hw_resume
) (struct ieee80211_hw
*hw
);
1397 void (*enable_interrupt
) (struct ieee80211_hw
*hw
);
1398 void (*disable_interrupt
) (struct ieee80211_hw
*hw
);
1399 int (*set_network_type
) (struct ieee80211_hw
*hw
,
1400 enum nl80211_iftype type
);
1401 void (*set_chk_bssid
)(struct ieee80211_hw
*hw
,
1403 void (*set_bw_mode
) (struct ieee80211_hw
*hw
,
1404 enum nl80211_channel_type ch_type
);
1405 u8(*switch_channel
) (struct ieee80211_hw
*hw
);
1406 void (*set_qos
) (struct ieee80211_hw
*hw
, int aci
);
1407 void (*set_bcn_reg
) (struct ieee80211_hw
*hw
);
1408 void (*set_bcn_intv
) (struct ieee80211_hw
*hw
);
1409 void (*update_interrupt_mask
) (struct ieee80211_hw
*hw
,
1410 u32 add_msr
, u32 rm_msr
);
1411 void (*get_hw_reg
) (struct ieee80211_hw
*hw
, u8 variable
, u8
*val
);
1412 void (*set_hw_reg
) (struct ieee80211_hw
*hw
, u8 variable
, u8
*val
);
1413 void (*update_rate_tbl
) (struct ieee80211_hw
*hw
,
1414 struct ieee80211_sta
*sta
, u8 rssi_level
);
1415 void (*update_rate_mask
) (struct ieee80211_hw
*hw
, u8 rssi_level
);
1416 void (*fill_tx_desc
) (struct ieee80211_hw
*hw
,
1417 struct ieee80211_hdr
*hdr
, u8
*pdesc_tx
,
1418 struct ieee80211_tx_info
*info
,
1419 struct sk_buff
*skb
, u8 hw_queue
,
1420 struct rtl_tcb_desc
*ptcb_desc
);
1421 void (*fill_fake_txdesc
) (struct ieee80211_hw
*hw
, u8
*pDesc
,
1422 u32 buffer_len
, bool bIsPsPoll
);
1423 void (*fill_tx_cmddesc
) (struct ieee80211_hw
*hw
, u8
*pdesc
,
1424 bool firstseg
, bool lastseg
,
1425 struct sk_buff
*skb
);
1426 bool (*cmd_send_packet
)(struct ieee80211_hw
*hw
, struct sk_buff
*skb
);
1427 bool (*query_rx_desc
) (struct ieee80211_hw
*hw
,
1428 struct rtl_stats
*stats
,
1429 struct ieee80211_rx_status
*rx_status
,
1430 u8
*pdesc
, struct sk_buff
*skb
);
1431 void (*set_channel_access
) (struct ieee80211_hw
*hw
);
1432 bool (*radio_onoff_checking
) (struct ieee80211_hw
*hw
, u8
*valid
);
1433 void (*dm_watchdog
) (struct ieee80211_hw
*hw
);
1434 void (*scan_operation_backup
) (struct ieee80211_hw
*hw
, u8 operation
);
1435 bool (*set_rf_power_state
) (struct ieee80211_hw
*hw
,
1436 enum rf_pwrstate rfpwr_state
);
1437 void (*led_control
) (struct ieee80211_hw
*hw
,
1438 enum led_ctl_mode ledaction
);
1439 void (*set_desc
) (u8
*pdesc
, bool istx
, u8 desc_name
, u8
*val
);
1440 u32 (*get_desc
) (u8
*pdesc
, bool istx
, u8 desc_name
);
1441 void (*tx_polling
) (struct ieee80211_hw
*hw
, u8 hw_queue
);
1442 void (*enable_hw_sec
) (struct ieee80211_hw
*hw
);
1443 void (*set_key
) (struct ieee80211_hw
*hw
, u32 key_index
,
1444 u8
*macaddr
, bool is_group
, u8 enc_algo
,
1445 bool is_wepkey
, bool clear_all
);
1446 void (*init_sw_leds
) (struct ieee80211_hw
*hw
);
1447 void (*deinit_sw_leds
) (struct ieee80211_hw
*hw
);
1448 u32 (*get_bbreg
) (struct ieee80211_hw
*hw
, u32 regaddr
, u32 bitmask
);
1449 void (*set_bbreg
) (struct ieee80211_hw
*hw
, u32 regaddr
, u32 bitmask
,
1451 u32 (*get_rfreg
) (struct ieee80211_hw
*hw
, enum radio_path rfpath
,
1452 u32 regaddr
, u32 bitmask
);
1453 void (*set_rfreg
) (struct ieee80211_hw
*hw
, enum radio_path rfpath
,
1454 u32 regaddr
, u32 bitmask
, u32 data
);
1455 void (*linked_set_reg
) (struct ieee80211_hw
*hw
);
1456 bool (*phy_rf6052_config
) (struct ieee80211_hw
*hw
);
1457 void (*phy_rf6052_set_cck_txpower
) (struct ieee80211_hw
*hw
,
1459 void (*phy_rf6052_set_ofdm_txpower
) (struct ieee80211_hw
*hw
,
1460 u8
*ppowerlevel
, u8 channel
);
1461 bool (*config_bb_with_headerfile
) (struct ieee80211_hw
*hw
,
1463 bool (*config_bb_with_pgheaderfile
) (struct ieee80211_hw
*hw
,
1465 void (*phy_lc_calibrate
) (struct ieee80211_hw
*hw
, bool is2t
);
1466 void (*phy_set_bw_mode_callback
) (struct ieee80211_hw
*hw
);
1467 void (*dm_dynamic_txpower
) (struct ieee80211_hw
*hw
);
1470 struct rtl_intf_ops
{
1472 void (*read_efuse_byte
)(struct ieee80211_hw
*hw
, u16 _offset
, u8
*pbuf
);
1473 int (*adapter_start
) (struct ieee80211_hw
*hw
);
1474 void (*adapter_stop
) (struct ieee80211_hw
*hw
);
1476 int (*adapter_tx
) (struct ieee80211_hw
*hw
, struct sk_buff
*skb
,
1477 struct rtl_tcb_desc
*ptcb_desc
);
1478 void (*flush
)(struct ieee80211_hw
*hw
, bool drop
);
1479 int (*reset_trx_ring
) (struct ieee80211_hw
*hw
);
1480 bool (*waitq_insert
) (struct ieee80211_hw
*hw
, struct sk_buff
*skb
);
1483 void (*disable_aspm
) (struct ieee80211_hw
*hw
);
1484 void (*enable_aspm
) (struct ieee80211_hw
*hw
);
1489 struct rtl_mod_params
{
1490 /* default: 0 = using hardware encryption */
1493 /* default: 0 = DBG_EMERG (0)*/
1496 /* default: 1 = using no linked power save */
1499 /* default: 1 = using linked sw power save */
1502 /* default: 1 = using linked fw power save */
1506 struct rtl_hal_usbint_cfg
{
1513 void (*usb_rx_hdl
)(struct ieee80211_hw
*, struct sk_buff
*);
1514 void (*usb_rx_segregate_hdl
)(struct ieee80211_hw
*, struct sk_buff
*,
1515 struct sk_buff_head
*);
1518 void (*usb_tx_cleanup
)(struct ieee80211_hw
*, struct sk_buff
*);
1519 int (*usb_tx_post_hdl
)(struct ieee80211_hw
*, struct urb
*,
1521 struct sk_buff
*(*usb_tx_aggregate_hdl
)(struct ieee80211_hw
*,
1522 struct sk_buff_head
*);
1524 /* endpoint mapping */
1525 int (*usb_endpoint_mapping
)(struct ieee80211_hw
*hw
);
1526 u16 (*usb_mq_to_hwq
)(__le16 fc
, u16 mac80211_queue_index
);
1529 struct rtl_hal_cfg
{
1531 bool write_readback
;
1534 struct rtl_hal_ops
*ops
;
1535 struct rtl_mod_params
*mod_params
;
1536 struct rtl_hal_usbint_cfg
*usb_interface_cfg
;
1538 /*this map used for some registers or vars
1539 defined int HAL but used in MAIN */
1540 u32 maps
[RTL_VAR_MAP_MAX
];
1546 struct mutex conf_mutex
;
1547 struct mutex ps_mutex
;
1550 spinlock_t ips_lock
;
1551 spinlock_t irq_th_lock
;
1552 spinlock_t h2c_lock
;
1553 spinlock_t rf_ps_lock
;
1555 spinlock_t waitq_lock
;
1558 spinlock_t cck_and_rw_pagea_lock
;
1562 struct ieee80211_hw
*hw
;
1565 struct timer_list watchdog_timer
;
1568 struct tasklet_struct irq_tasklet
;
1569 struct tasklet_struct irq_prepare_bcn_tasklet
;
1572 struct workqueue_struct
*rtl_wq
;
1573 struct delayed_work watchdog_wq
;
1574 struct delayed_work ips_nic_off_wq
;
1577 struct delayed_work ps_work
;
1578 struct delayed_work ps_rfon_wq
;
1580 struct work_struct lps_leave_work
;
1584 u32 dbgp_type
[DBGP_TYPE_MAX
];
1585 u32 global_debuglevel
;
1586 u64 global_debugcomponents
;
1588 /* add for proc debug */
1589 struct proc_dir_entry
*proc_dir
;
1594 struct completion firmware_loading_complete
;
1595 struct rtl_locks locks
;
1596 struct rtl_works works
;
1597 struct rtl_mac mac80211
;
1598 struct rtl_hal rtlhal
;
1599 struct rtl_regulatory regd
;
1600 struct rtl_rfkill rfkill
;
1604 struct rtl_security sec
;
1605 struct rtl_efuse efuse
;
1607 struct rtl_ps_ctl psc
;
1608 struct rate_adaptive ra
;
1609 struct wireless_stats stats
;
1610 struct rt_link_detect link_info
;
1611 struct false_alarm_statistics falsealm_cnt
;
1613 struct rtl_rate_priv
*rate_priv
;
1615 struct rtl_debug dbg
;
1619 *hal_cfg : for diff cards
1620 *intf_ops : for diff interrface usb/pcie
1622 struct rtl_hal_cfg
*cfg
;
1623 struct rtl_intf_ops
*intf_ops
;
1625 /*this var will be set by set_bit,
1626 and was used to indicate status of
1627 interface or hardware */
1628 unsigned long status
;
1630 /* data buffer pointer for USB reads */
1634 /*This must be the last item so
1635 that it points to the data allocated
1636 beyond this structure like:
1637 rtl_pci_priv or rtl_usb_priv */
1641 #define rtl_priv(hw) (((struct rtl_priv *)(hw)->priv))
1642 #define rtl_mac(rtlpriv) (&((rtlpriv)->mac80211))
1643 #define rtl_hal(rtlpriv) (&((rtlpriv)->rtlhal))
1644 #define rtl_efuse(rtlpriv) (&((rtlpriv)->efuse))
1645 #define rtl_psc(rtlpriv) (&((rtlpriv)->psc))
1648 /***************************************
1649 Bluetooth Co-existence Related
1650 ****************************************/
1671 enum bt_service_type
{
1678 BT_OTHER_ACTION
= 6,
1684 enum bt_radio_shared
{
1685 BT_RADIO_SHARED
= 0,
1686 BT_RADIO_INDIVIDUAL
= 1,
1689 struct bt_coexist_info
{
1691 /* EEPROM BT info. */
1692 u8 eeprom_bt_coexist
;
1694 u8 eeprom_bt_ant_num
;
1695 u8 eeprom_bt_ant_isolation
;
1696 u8 eeprom_bt_radio_shared
;
1702 u8 bt_cur_state
; /* 0:on, 1:off */
1703 u8 bt_ant_isolation
; /* 0:good, 1:bad */
1704 u8 bt_pape_ctrl
; /* 0:SW, 1:SW/HW dynamic */
1706 u8 bt_radio_shared_type
;
1707 u8 bt_rfreg_origin_1e
;
1708 u8 bt_rfreg_origin_1f
;
1716 bool bt_busy_traffic
;
1717 bool bt_traffic_mode_set
;
1718 bool bt_non_traffic_mode_set
;
1720 bool fw_coexist_all_off
;
1721 bool sw_coexist_all_off
;
1724 u8 bt_pre_rssi_state
;
1732 /****************************************
1733 mem access macro define start
1734 Call endian free function when
1735 1. Read/write packet content.
1736 2. Before write integer to IO.
1737 3. After read integer from IO.
1738 ****************************************/
1739 /* Convert little data endian to host ordering */
1740 #define EF1BYTE(_val) \
1742 #define EF2BYTE(_val) \
1744 #define EF4BYTE(_val) \
1747 /* Read data from memory */
1748 #define READEF1BYTE(_ptr) \
1749 EF1BYTE(*((u8 *)(_ptr)))
1750 /* Read le16 data from memory and convert to host ordering */
1751 #define READEF2BYTE(_ptr) \
1752 EF2BYTE(*((u16 *)(_ptr)))
1753 #define READEF4BYTE(_ptr) \
1754 EF4BYTE(*((u32 *)(_ptr)))
1756 /* Write data to memory */
1757 #define WRITEEF1BYTE(_ptr, _val) \
1758 (*((u8 *)(_ptr))) = EF1BYTE(_val)
1759 /* Write le16 data to memory in host ordering */
1760 #define WRITEEF2BYTE(_ptr, _val) \
1761 (*((u16 *)(_ptr))) = EF2BYTE(_val)
1762 #define WRITEEF4BYTE(_ptr, _val) \
1763 (*((u16 *)(_ptr))) = EF2BYTE(_val)
1765 /* Create a bit mask
1767 * BIT_LEN_MASK_32(0) => 0x00000000
1768 * BIT_LEN_MASK_32(1) => 0x00000001
1769 * BIT_LEN_MASK_32(2) => 0x00000003
1770 * BIT_LEN_MASK_32(32) => 0xFFFFFFFF
1772 #define BIT_LEN_MASK_32(__bitlen) \
1773 (0xFFFFFFFF >> (32 - (__bitlen)))
1774 #define BIT_LEN_MASK_16(__bitlen) \
1775 (0xFFFF >> (16 - (__bitlen)))
1776 #define BIT_LEN_MASK_8(__bitlen) \
1777 (0xFF >> (8 - (__bitlen)))
1779 /* Create an offset bit mask
1781 * BIT_OFFSET_LEN_MASK_32(0, 2) => 0x00000003
1782 * BIT_OFFSET_LEN_MASK_32(16, 2) => 0x00030000
1784 #define BIT_OFFSET_LEN_MASK_32(__bitoffset, __bitlen) \
1785 (BIT_LEN_MASK_32(__bitlen) << (__bitoffset))
1786 #define BIT_OFFSET_LEN_MASK_16(__bitoffset, __bitlen) \
1787 (BIT_LEN_MASK_16(__bitlen) << (__bitoffset))
1788 #define BIT_OFFSET_LEN_MASK_8(__bitoffset, __bitlen) \
1789 (BIT_LEN_MASK_8(__bitlen) << (__bitoffset))
1792 * Return 4-byte value in host byte ordering from
1793 * 4-byte pointer in little-endian system.
1795 #define LE_P4BYTE_TO_HOST_4BYTE(__pstart) \
1796 (EF4BYTE(*((u32 *)(__pstart))))
1797 #define LE_P2BYTE_TO_HOST_2BYTE(__pstart) \
1798 (EF2BYTE(*((u16 *)(__pstart))))
1799 #define LE_P1BYTE_TO_HOST_1BYTE(__pstart) \
1800 (EF1BYTE(*((u8 *)(__pstart))))
1803 Translate subfield (continuous bits in little-endian) of 4-byte
1804 value to host byte ordering.*/
1805 #define LE_BITS_TO_4BYTE(__pstart, __bitoffset, __bitlen) \
1807 (LE_P4BYTE_TO_HOST_4BYTE(__pstart) >> (__bitoffset)) & \
1808 BIT_LEN_MASK_32(__bitlen) \
1810 #define LE_BITS_TO_2BYTE(__pstart, __bitoffset, __bitlen) \
1812 (LE_P2BYTE_TO_HOST_2BYTE(__pstart) >> (__bitoffset)) & \
1813 BIT_LEN_MASK_16(__bitlen) \
1815 #define LE_BITS_TO_1BYTE(__pstart, __bitoffset, __bitlen) \
1817 (LE_P1BYTE_TO_HOST_1BYTE(__pstart) >> (__bitoffset)) & \
1818 BIT_LEN_MASK_8(__bitlen) \
1822 * Mask subfield (continuous bits in little-endian) of 4-byte value
1823 * and return the result in 4-byte value in host byte ordering.
1825 #define LE_BITS_CLEARED_TO_4BYTE(__pstart, __bitoffset, __bitlen) \
1827 LE_P4BYTE_TO_HOST_4BYTE(__pstart) & \
1828 (~BIT_OFFSET_LEN_MASK_32(__bitoffset, __bitlen)) \
1830 #define LE_BITS_CLEARED_TO_2BYTE(__pstart, __bitoffset, __bitlen) \
1832 LE_P2BYTE_TO_HOST_2BYTE(__pstart) & \
1833 (~BIT_OFFSET_LEN_MASK_16(__bitoffset, __bitlen)) \
1835 #define LE_BITS_CLEARED_TO_1BYTE(__pstart, __bitoffset, __bitlen) \
1837 LE_P1BYTE_TO_HOST_1BYTE(__pstart) & \
1838 (~BIT_OFFSET_LEN_MASK_8(__bitoffset, __bitlen)) \
1842 * Set subfield of little-endian 4-byte value to specified value.
1844 #define SET_BITS_TO_LE_4BYTE(__pstart, __bitoffset, __bitlen, __val) \
1845 *((u32 *)(__pstart)) = EF4BYTE \
1847 LE_BITS_CLEARED_TO_4BYTE(__pstart, __bitoffset, __bitlen) | \
1848 ((((u32)__val) & BIT_LEN_MASK_32(__bitlen)) << (__bitoffset)) \
1850 #define SET_BITS_TO_LE_2BYTE(__pstart, __bitoffset, __bitlen, __val) \
1851 *((u16 *)(__pstart)) = EF2BYTE \
1853 LE_BITS_CLEARED_TO_2BYTE(__pstart, __bitoffset, __bitlen) | \
1854 ((((u16)__val) & BIT_LEN_MASK_16(__bitlen)) << (__bitoffset)) \
1856 #define SET_BITS_TO_LE_1BYTE(__pstart, __bitoffset, __bitlen, __val) \
1857 *((u8 *)(__pstart)) = EF1BYTE \
1859 LE_BITS_CLEARED_TO_1BYTE(__pstart, __bitoffset, __bitlen) | \
1860 ((((u8)__val) & BIT_LEN_MASK_8(__bitlen)) << (__bitoffset)) \
1863 #define N_BYTE_ALIGMENT(__value, __aligment) ((__aligment == 1) ? \
1864 (__value) : (((__value + __aligment - 1) / __aligment) * __aligment))
1866 /****************************************
1867 mem access macro define end
1868 ****************************************/
1870 #define byte(x, n) ((x >> (8 * n)) & 0xff)
1872 #define packet_get_type(_packet) (EF1BYTE((_packet).octet[0]) & 0xFC)
1873 #define RTL_WATCH_DOG_TIME 2000
1874 #define MSECS(t) msecs_to_jiffies(t)
1875 #define WLAN_FC_GET_VERS(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_VERS)
1876 #define WLAN_FC_GET_TYPE(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_FTYPE)
1877 #define WLAN_FC_GET_STYPE(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_STYPE)
1878 #define WLAN_FC_MORE_DATA(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_MOREDATA)
1879 #define SEQ_TO_SN(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
1880 #define SN_TO_SEQ(ssn) (((ssn) << 4) & IEEE80211_SCTL_SEQ)
1881 #define MAX_SN ((IEEE80211_SCTL_SEQ) >> 4)
1883 #define RT_RF_OFF_LEVL_ASPM BIT(0) /*PCI ASPM */
1884 #define RT_RF_OFF_LEVL_CLK_REQ BIT(1) /*PCI clock request */
1885 #define RT_RF_OFF_LEVL_PCI_D3 BIT(2) /*PCI D3 mode */
1886 /*NIC halt, re-initialize hw parameters*/
1887 #define RT_RF_OFF_LEVL_HALT_NIC BIT(3)
1888 #define RT_RF_OFF_LEVL_FREE_FW BIT(4) /*FW free, re-download the FW */
1889 #define RT_RF_OFF_LEVL_FW_32K BIT(5) /*FW in 32k */
1890 /*Always enable ASPM and Clock Req in initialization.*/
1891 #define RT_RF_PS_LEVEL_ALWAYS_ASPM BIT(6)
1892 /* no matter RFOFF or SLEEP we set PS_ASPM_LEVL*/
1893 #define RT_PS_LEVEL_ASPM BIT(7)
1894 /*When LPS is on, disable 2R if no packet is received or transmittd.*/
1895 #define RT_RF_LPS_DISALBE_2R BIT(30)
1896 #define RT_RF_LPS_LEVEL_ASPM BIT(31) /*LPS with ASPM */
1897 #define RT_IN_PS_LEVEL(ppsc, _ps_flg) \
1898 ((ppsc->cur_ps_level & _ps_flg) ? true : false)
1899 #define RT_CLEAR_PS_LEVEL(ppsc, _ps_flg) \
1900 (ppsc->cur_ps_level &= (~(_ps_flg)))
1901 #define RT_SET_PS_LEVEL(ppsc, _ps_flg) \
1902 (ppsc->cur_ps_level |= _ps_flg)
1904 #define container_of_dwork_rtl(x, y, z) \
1905 container_of(container_of(x, struct delayed_work, work), y, z)
1907 #define FILL_OCTET_STRING(_os, _octet, _len) \
1908 (_os).octet = (u8 *)(_octet); \
1909 (_os).length = (_len);
1911 #define CP_MACADDR(des, src) \
1912 ((des)[0] = (src)[0], (des)[1] = (src)[1],\
1913 (des)[2] = (src)[2], (des)[3] = (src)[3],\
1914 (des)[4] = (src)[4], (des)[5] = (src)[5])
1916 static inline u8
rtl_read_byte(struct rtl_priv
*rtlpriv
, u32 addr
)
1918 return rtlpriv
->io
.read8_sync(rtlpriv
, addr
);
1921 static inline u16
rtl_read_word(struct rtl_priv
*rtlpriv
, u32 addr
)
1923 return rtlpriv
->io
.read16_sync(rtlpriv
, addr
);
1926 static inline u32
rtl_read_dword(struct rtl_priv
*rtlpriv
, u32 addr
)
1928 return rtlpriv
->io
.read32_sync(rtlpriv
, addr
);
1931 static inline void rtl_write_byte(struct rtl_priv
*rtlpriv
, u32 addr
, u8 val8
)
1933 rtlpriv
->io
.write8_async(rtlpriv
, addr
, val8
);
1935 if (rtlpriv
->cfg
->write_readback
)
1936 rtlpriv
->io
.read8_sync(rtlpriv
, addr
);
1939 static inline void rtl_write_word(struct rtl_priv
*rtlpriv
, u32 addr
, u16 val16
)
1941 rtlpriv
->io
.write16_async(rtlpriv
, addr
, val16
);
1943 if (rtlpriv
->cfg
->write_readback
)
1944 rtlpriv
->io
.read16_sync(rtlpriv
, addr
);
1947 static inline void rtl_write_dword(struct rtl_priv
*rtlpriv
,
1948 u32 addr
, u32 val32
)
1950 rtlpriv
->io
.write32_async(rtlpriv
, addr
, val32
);
1952 if (rtlpriv
->cfg
->write_readback
)
1953 rtlpriv
->io
.read32_sync(rtlpriv
, addr
);
1956 static inline u32
rtl_get_bbreg(struct ieee80211_hw
*hw
,
1957 u32 regaddr
, u32 bitmask
)
1959 return ((struct rtl_priv
*)(hw
)->priv
)->cfg
->ops
->get_bbreg(hw
,
1964 static inline void rtl_set_bbreg(struct ieee80211_hw
*hw
, u32 regaddr
,
1965 u32 bitmask
, u32 data
)
1967 ((struct rtl_priv
*)(hw
)->priv
)->cfg
->ops
->set_bbreg(hw
,
1973 static inline u32
rtl_get_rfreg(struct ieee80211_hw
*hw
,
1974 enum radio_path rfpath
, u32 regaddr
,
1977 return ((struct rtl_priv
*)(hw
)->priv
)->cfg
->ops
->get_rfreg(hw
,
1983 static inline void rtl_set_rfreg(struct ieee80211_hw
*hw
,
1984 enum radio_path rfpath
, u32 regaddr
,
1985 u32 bitmask
, u32 data
)
1987 ((struct rtl_priv
*)(hw
)->priv
)->cfg
->ops
->set_rfreg(hw
,
1992 static inline bool is_hal_stop(struct rtl_hal
*rtlhal
)
1994 return (_HAL_STATE_STOP
== rtlhal
->state
);
1997 static inline void set_hal_start(struct rtl_hal
*rtlhal
)
1999 rtlhal
->state
= _HAL_STATE_START
;
2002 static inline void set_hal_stop(struct rtl_hal
*rtlhal
)
2004 rtlhal
->state
= _HAL_STATE_STOP
;
2007 static inline u8
get_rf_type(struct rtl_phy
*rtlphy
)
2009 return rtlphy
->rf_type
;
2012 static inline struct ieee80211_hdr
*rtl_get_hdr(struct sk_buff
*skb
)
2014 return (struct ieee80211_hdr
*)(skb
->data
);
2017 static inline __le16
rtl_get_fc(struct sk_buff
*skb
)
2019 return rtl_get_hdr(skb
)->frame_control
;
2022 static inline u16
rtl_get_tid_h(struct ieee80211_hdr
*hdr
)
2024 return (ieee80211_get_qos_ctl(hdr
))[0] & IEEE80211_QOS_CTL_TID_MASK
;
2027 static inline u16
rtl_get_tid(struct sk_buff
*skb
)
2029 return rtl_get_tid_h(rtl_get_hdr(skb
));
2032 static inline struct ieee80211_sta
*get_sta(struct ieee80211_hw
*hw
,
2033 struct ieee80211_vif
*vif
,
2036 return ieee80211_find_sta(vif
, bssid
);