1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
2 /* Copyright(c) 2018-2019 Realtek Corporation
8 #include <net/mac80211.h>
9 #include <linux/vmalloc.h>
10 #include <linux/firmware.h>
11 #include <linux/average.h>
12 #include <linux/bitops.h>
13 #include <linux/bitfield.h>
14 #include <linux/iopoll.h>
15 #include <linux/interrupt.h>
16 #include <linux/workqueue.h>
20 #define RTW_MAX_MAC_ID_NUM 32
21 #define RTW_MAX_SEC_CAM_NUM 32
22 #define MAX_PG_CAM_BACKUP_NUM 8
24 #define RTW_SCAN_MAX_SSIDS 4
26 #define RTW_MAX_PATTERN_NUM 12
27 #define RTW_MAX_PATTERN_MASK_SIZE 16
28 #define RTW_MAX_PATTERN_SIZE 128
30 #define RTW_WATCH_DOG_DELAY_TIME round_jiffies_relative(HZ * 2)
32 #define RFREG_MASK 0xfffff
33 #define INV_RF_DATA 0xffffffff
34 #define TX_PAGE_SIZE_SHIFT 7
35 #define TX_PAGE_SIZE (1 << TX_PAGE_SIZE_SHIFT)
37 #define RTW_CHANNEL_WIDTH_MAX 3
38 #define RTW_RF_PATH_MAX 4
39 #define HW_FEATURE_LEN 13
41 #define RTW_TP_SHIFT 18 /* bytes/2s --> Mbps */
43 extern bool rtw_bf_support;
44 extern bool rtw_disable_lps_deep_mode;
45 extern unsigned int rtw_debug_mask;
46 extern bool rtw_edcca_enabled;
47 extern const struct ieee80211_ops rtw_ops;
49 #define RTW_MAX_CHANNEL_NUM_2G 14
50 #define RTW_MAX_CHANNEL_NUM_5G 49
60 RTW_HCI_TYPE_UNDEFINE,
64 struct rtw_hci_ops *ops;
65 enum rtw_hci_type type;
73 #define IS_CH_5G_BAND_1(channel) ((channel) >= 36 && (channel <= 48))
74 #define IS_CH_5G_BAND_2(channel) ((channel) >= 52 && (channel <= 64))
75 #define IS_CH_5G_BAND_3(channel) ((channel) >= 100 && (channel <= 144))
76 #define IS_CH_5G_BAND_4(channel) ((channel) >= 149 && (channel <= 177))
78 #define IS_CH_5G_BAND_MID(channel) \
79 (IS_CH_5G_BAND_2(channel) || IS_CH_5G_BAND_3(channel))
81 #define IS_CH_2G_BAND(channel) ((channel) <= 14)
82 #define IS_CH_5G_BAND(channel) \
83 (IS_CH_5G_BAND_1(channel) || IS_CH_5G_BAND_2(channel) || \
84 IS_CH_5G_BAND_3(channel) || IS_CH_5G_BAND_4(channel))
86 enum rtw_supported_band {
87 RTW_BAND_2G = BIT(NL80211_BAND_2GHZ),
88 RTW_BAND_5G = BIT(NL80211_BAND_5GHZ),
89 RTW_BAND_60G = BIT(NL80211_BAND_60GHZ),
92 /* now, support up to 80M bw */
93 #define RTW_MAX_CHANNEL_WIDTH RTW_CHANNEL_WIDTH_80
96 RTW_CHANNEL_WIDTH_20 = 0,
97 RTW_CHANNEL_WIDTH_40 = 1,
98 RTW_CHANNEL_WIDTH_80 = 2,
99 RTW_CHANNEL_WIDTH_160 = 3,
100 RTW_CHANNEL_WIDTH_80_80 = 4,
101 RTW_CHANNEL_WIDTH_5 = 5,
102 RTW_CHANNEL_WIDTH_10 = 6,
106 RTW_SC_DONT_CARE = 0,
109 RTW_SC_20_UPMOST = 3,
110 RTW_SC_20_LOWEST = 4,
112 RTW_SC_40_LOWER = 10,
118 RTW_NET_MGD_LINKED = 2,
147 BB_PATH_AB = (BB_PATH_A | BB_PATH_B),
148 BB_PATH_AC = (BB_PATH_A | BB_PATH_C),
149 BB_PATH_AD = (BB_PATH_A | BB_PATH_D),
150 BB_PATH_BC = (BB_PATH_B | BB_PATH_C),
151 BB_PATH_BD = (BB_PATH_B | BB_PATH_D),
152 BB_PATH_CD = (BB_PATH_C | BB_PATH_D),
154 BB_PATH_ABC = (BB_PATH_A | BB_PATH_B | BB_PATH_C),
155 BB_PATH_ABD = (BB_PATH_A | BB_PATH_B | BB_PATH_D),
156 BB_PATH_ACD = (BB_PATH_A | BB_PATH_C | BB_PATH_D),
157 BB_PATH_BCD = (BB_PATH_B | BB_PATH_C | BB_PATH_D),
159 BB_PATH_ABCD = (BB_PATH_A | BB_PATH_B | BB_PATH_C | BB_PATH_D),
162 enum rtw_rate_section {
163 RTW_RATE_SECTION_CCK = 0,
164 RTW_RATE_SECTION_OFDM,
165 RTW_RATE_SECTION_HT_1S,
166 RTW_RATE_SECTION_HT_2S,
167 RTW_RATE_SECTION_VHT_1S,
168 RTW_RATE_SECTION_VHT_2S,
171 RTW_RATE_SECTION_MAX,
174 enum rtw_wireless_set {
175 WIRELESS_CCK = 0x00000001,
176 WIRELESS_OFDM = 0x00000002,
177 WIRELESS_HT = 0x00000004,
178 WIRELESS_VHT = 0x00000008,
181 #define HT_STBC_EN BIT(0)
182 #define VHT_STBC_EN BIT(1)
183 #define HT_LDPC_EN BIT(0)
184 #define VHT_LDPC_EN BIT(1)
196 enum rtw_tx_queue_type {
197 /* the order of AC queues matters */
198 RTW_TX_QUEUE_BK = 0x0,
199 RTW_TX_QUEUE_BE = 0x1,
200 RTW_TX_QUEUE_VI = 0x2,
201 RTW_TX_QUEUE_VO = 0x3,
203 RTW_TX_QUEUE_BCN = 0x4,
204 RTW_TX_QUEUE_MGMT = 0x5,
205 RTW_TX_QUEUE_HI0 = 0x6,
206 RTW_TX_QUEUE_H2C = 0x7,
211 enum rtw_rx_queue_type {
212 RTW_RX_QUEUE_MPDU = 0x0,
213 RTW_RX_QUEUE_C2H = 0x1,
223 enum rtw_rate_index {
224 RTW_RATEID_BGN_40M_2SS = 0,
225 RTW_RATEID_BGN_40M_1SS = 1,
226 RTW_RATEID_BGN_20M_2SS = 2,
227 RTW_RATEID_BGN_20M_1SS = 3,
228 RTW_RATEID_GN_N2SS = 4,
229 RTW_RATEID_GN_N1SS = 5,
232 RTW_RATEID_B_20M = 8,
233 RTW_RATEID_ARFR0_AC_2SS = 9,
234 RTW_RATEID_ARFR1_AC_1SS = 10,
235 RTW_RATEID_ARFR2_AC_2G_1SS = 11,
236 RTW_RATEID_ARFR3_AC_2G_2SS = 12,
237 RTW_RATEID_ARFR4_AC_3SS = 13,
238 RTW_RATEID_ARFR5_N_3SS = 14,
239 RTW_RATEID_ARFR7_N_4SS = 15,
240 RTW_RATEID_ARFR6_AC_4SS = 16
243 enum rtw_trx_desc_rate {
246 DESC_RATE5_5M = 0x02,
258 DESC_RATEMCS0 = 0x0c,
259 DESC_RATEMCS1 = 0x0d,
260 DESC_RATEMCS2 = 0x0e,
261 DESC_RATEMCS3 = 0x0f,
262 DESC_RATEMCS4 = 0x10,
263 DESC_RATEMCS5 = 0x11,
264 DESC_RATEMCS6 = 0x12,
265 DESC_RATEMCS7 = 0x13,
266 DESC_RATEMCS8 = 0x14,
267 DESC_RATEMCS9 = 0x15,
268 DESC_RATEMCS10 = 0x16,
269 DESC_RATEMCS11 = 0x17,
270 DESC_RATEMCS12 = 0x18,
271 DESC_RATEMCS13 = 0x19,
272 DESC_RATEMCS14 = 0x1a,
273 DESC_RATEMCS15 = 0x1b,
274 DESC_RATEMCS16 = 0x1c,
275 DESC_RATEMCS17 = 0x1d,
276 DESC_RATEMCS18 = 0x1e,
277 DESC_RATEMCS19 = 0x1f,
278 DESC_RATEMCS20 = 0x20,
279 DESC_RATEMCS21 = 0x21,
280 DESC_RATEMCS22 = 0x22,
281 DESC_RATEMCS23 = 0x23,
282 DESC_RATEMCS24 = 0x24,
283 DESC_RATEMCS25 = 0x25,
284 DESC_RATEMCS26 = 0x26,
285 DESC_RATEMCS27 = 0x27,
286 DESC_RATEMCS28 = 0x28,
287 DESC_RATEMCS29 = 0x29,
288 DESC_RATEMCS30 = 0x2a,
289 DESC_RATEMCS31 = 0x2b,
291 DESC_RATEVHT1SS_MCS0 = 0x2c,
292 DESC_RATEVHT1SS_MCS1 = 0x2d,
293 DESC_RATEVHT1SS_MCS2 = 0x2e,
294 DESC_RATEVHT1SS_MCS3 = 0x2f,
295 DESC_RATEVHT1SS_MCS4 = 0x30,
296 DESC_RATEVHT1SS_MCS5 = 0x31,
297 DESC_RATEVHT1SS_MCS6 = 0x32,
298 DESC_RATEVHT1SS_MCS7 = 0x33,
299 DESC_RATEVHT1SS_MCS8 = 0x34,
300 DESC_RATEVHT1SS_MCS9 = 0x35,
302 DESC_RATEVHT2SS_MCS0 = 0x36,
303 DESC_RATEVHT2SS_MCS1 = 0x37,
304 DESC_RATEVHT2SS_MCS2 = 0x38,
305 DESC_RATEVHT2SS_MCS3 = 0x39,
306 DESC_RATEVHT2SS_MCS4 = 0x3a,
307 DESC_RATEVHT2SS_MCS5 = 0x3b,
308 DESC_RATEVHT2SS_MCS6 = 0x3c,
309 DESC_RATEVHT2SS_MCS7 = 0x3d,
310 DESC_RATEVHT2SS_MCS8 = 0x3e,
311 DESC_RATEVHT2SS_MCS9 = 0x3f,
313 DESC_RATEVHT3SS_MCS0 = 0x40,
314 DESC_RATEVHT3SS_MCS1 = 0x41,
315 DESC_RATEVHT3SS_MCS2 = 0x42,
316 DESC_RATEVHT3SS_MCS3 = 0x43,
317 DESC_RATEVHT3SS_MCS4 = 0x44,
318 DESC_RATEVHT3SS_MCS5 = 0x45,
319 DESC_RATEVHT3SS_MCS6 = 0x46,
320 DESC_RATEVHT3SS_MCS7 = 0x47,
321 DESC_RATEVHT3SS_MCS8 = 0x48,
322 DESC_RATEVHT3SS_MCS9 = 0x49,
324 DESC_RATEVHT4SS_MCS0 = 0x4a,
325 DESC_RATEVHT4SS_MCS1 = 0x4b,
326 DESC_RATEVHT4SS_MCS2 = 0x4c,
327 DESC_RATEVHT4SS_MCS3 = 0x4d,
328 DESC_RATEVHT4SS_MCS4 = 0x4e,
329 DESC_RATEVHT4SS_MCS5 = 0x4f,
330 DESC_RATEVHT4SS_MCS6 = 0x50,
331 DESC_RATEVHT4SS_MCS7 = 0x51,
332 DESC_RATEVHT4SS_MCS8 = 0x52,
333 DESC_RATEVHT4SS_MCS9 = 0x53,
338 enum rtw_regulatory_domains {
346 RTW_REGD_UKRAINE = 7,
367 RTW_FLAG_LEISURE_PS_DEEP,
368 RTW_FLAG_DIG_DISABLE,
369 RTW_FLAG_BUSY_TRAFFIC,
372 RTW_FLAG_RESTART_TRIGGERING,
373 RTW_FLAG_FORCE_LOWEST_RATE,
414 RTW_WOW_FLAG_EN_MAGIC_PKT,
415 RTW_WOW_FLAG_EN_REKEY_PKT,
416 RTW_WOW_FLAG_EN_DISCONNECT,
422 /* the power index is represented by differences, which cck-1s & ht40-1s are
423 * the base values, so for 1s's differences, there are only ht20 & ofdm
425 struct rtw_2g_1s_pwr_idx_diff {
426 #ifdef __LITTLE_ENDIAN
435 struct rtw_2g_ns_pwr_idx_diff {
436 #ifdef __LITTLE_ENDIAN
449 struct rtw_2g_txpwr_idx {
452 struct rtw_2g_1s_pwr_idx_diff ht_1s_diff;
453 struct rtw_2g_ns_pwr_idx_diff ht_2s_diff;
454 struct rtw_2g_ns_pwr_idx_diff ht_3s_diff;
455 struct rtw_2g_ns_pwr_idx_diff ht_4s_diff;
458 struct rtw_5g_ht_1s_pwr_idx_diff {
459 #ifdef __LITTLE_ENDIAN
468 struct rtw_5g_ht_ns_pwr_idx_diff {
469 #ifdef __LITTLE_ENDIAN
478 struct rtw_5g_ofdm_ns_pwr_idx_diff {
479 #ifdef __LITTLE_ENDIAN
492 struct rtw_5g_vht_ns_pwr_idx_diff {
493 #ifdef __LITTLE_ENDIAN
502 struct rtw_5g_txpwr_idx {
504 struct rtw_5g_ht_1s_pwr_idx_diff ht_1s_diff;
505 struct rtw_5g_ht_ns_pwr_idx_diff ht_2s_diff;
506 struct rtw_5g_ht_ns_pwr_idx_diff ht_3s_diff;
507 struct rtw_5g_ht_ns_pwr_idx_diff ht_4s_diff;
508 struct rtw_5g_ofdm_ns_pwr_idx_diff ofdm_diff;
509 struct rtw_5g_vht_ns_pwr_idx_diff vht_1s_diff;
510 struct rtw_5g_vht_ns_pwr_idx_diff vht_2s_diff;
511 struct rtw_5g_vht_ns_pwr_idx_diff vht_3s_diff;
512 struct rtw_5g_vht_ns_pwr_idx_diff vht_4s_diff;
515 struct rtw_txpwr_idx {
516 struct rtw_2g_txpwr_idx pwr_idx_2g;
517 struct rtw_5g_txpwr_idx pwr_idx_5g;
520 struct rtw_channel_params {
531 struct rtw_hw_reg_desc {
537 struct rtw_ltecoex_addr {
543 struct rtw_reg_domain {
546 #define RTW_REG_DOMAIN_MAC32 0
547 #define RTW_REG_DOMAIN_MAC16 1
548 #define RTW_REG_DOMAIN_MAC8 2
549 #define RTW_REG_DOMAIN_RF_A 3
550 #define RTW_REG_DOMAIN_RF_B 4
551 #define RTW_REG_DOMAIN_NL 0xFF
555 struct rtw_rf_sipi_addr {
562 struct rtw_hw_reg_offset {
563 struct rtw_hw_reg hw_reg;
567 struct rtw_backup_info {
573 enum rtw_vif_port_set {
574 PORT_SET_MAC_ADDR = BIT(0),
575 PORT_SET_BSSID = BIT(1),
576 PORT_SET_NET_TYPE = BIT(2),
577 PORT_SET_AID = BIT(3),
578 PORT_SET_BCN_CTRL = BIT(4),
581 struct rtw_vif_port {
582 struct rtw_hw_reg mac_addr;
583 struct rtw_hw_reg bssid;
584 struct rtw_hw_reg net_type;
585 struct rtw_hw_reg aid;
586 struct rtw_hw_reg bcn_ctrl;
589 struct rtw_tx_pkt_info {
607 bool dis_rate_fallback;
622 struct rtw_rx_pkt_stat {
628 bool channel_invalid;
640 s8 rx_power[RTW_RF_PATH_MAX];
643 s8 rx_snr[RTW_RF_PATH_MAX];
644 u8 rx_evm[RTW_RF_PATH_MAX];
645 s8 cfo_tail[RTW_RF_PATH_MAX];
649 struct rtw_sta_info *si;
650 struct ieee80211_vif *vif;
651 struct ieee80211_hdr *hdr;
654 DECLARE_EWMA(tp, 10, 2);
656 struct rtw_traffic_stats {
661 /* count for packets */
668 struct ewma_tp tx_ewma_tp;
669 struct ewma_tp rx_ewma_tp;
678 enum rtw_lps_deep_mode {
679 LPS_DEEP_MODE_NONE = 0,
680 LPS_DEEP_MODE_LCLK = 1,
681 LPS_DEEP_MODE_PG = 2,
690 struct rtw_lps_conf {
691 enum rtw_lps_mode mode;
692 enum rtw_lps_deep_mode deep_mode;
693 enum rtw_lps_deep_mode wow_deep_mode;
694 enum rtw_pwr_state state;
700 bool pattern_cam_backup;
703 enum rtw_hw_key_type {
711 struct rtw_cam_entry {
716 struct ieee80211_key_conf *key;
719 struct rtw_sec_desc {
720 /* search strategy */
721 bool default_key_search;
724 struct rtw_cam_entry cam_table[RTW_MAX_SEC_CAM_NUM];
725 DECLARE_BITMAP(cam_map, RTW_MAX_SEC_CAM_NUM);
728 struct rtw_tx_report {
729 /* protect the tx report queue */
731 struct sk_buff_head queue;
733 struct timer_list purge_timer;
736 struct rtw_ra_report {
737 struct rate_info txrate;
743 struct list_head list;
747 DECLARE_EWMA(rssi, 10, 16);
749 struct rtw_sta_info {
750 struct rtw_dev *rtwdev;
751 struct ieee80211_sta *sta;
752 struct ieee80211_vif *vif;
754 struct ewma_rssi avg_rssi;
759 enum rtw_bandwidth bw_mode;
760 enum rtw_rf_type rf_type;
768 DECLARE_BITMAP(tid_ba, IEEE80211_NUM_TIDS);
770 struct rtw_ra_report ra_report;
773 struct cfg80211_bitrate_mask *mask;
775 struct work_struct rc_work;
785 enum rtw_bfee_role role;
789 u8 mac_addr[ETH_ALEN];
802 DECLARE_BITMAP(bfer_su_reg_maping, 2);
807 enum rtw_net_type net_type;
810 u8 mac_addr[ETH_ALEN];
814 struct list_head rsvd_page_list;
815 struct ieee80211_tx_queue_params tx_params[IEEE80211_NUM_ACS];
816 const struct rtw_vif_port *conf;
817 struct cfg80211_scan_request *scan_req;
818 struct ieee80211_scan_ies *scan_ies;
820 struct rtw_traffic_stats stats;
822 struct rtw_bfee bfee;
825 struct rtw_regulatory {
831 enum rtw_regd_state {
832 RTW_REGD_STATE_WORLDWIDE,
833 RTW_REGD_STATE_PROGRAMMED,
834 RTW_REGD_STATE_SETTING,
840 enum rtw_regd_state state;
841 const struct rtw_regulatory *regulatory;
842 enum nl80211_dfs_regions dfs_region;
845 struct rtw_chip_ops {
846 int (*power_on)(struct rtw_dev *rtwdev);
847 void (*power_off)(struct rtw_dev *rtwdev);
848 int (*mac_init)(struct rtw_dev *rtwdev);
849 int (*dump_fw_crash)(struct rtw_dev *rtwdev);
850 void (*shutdown)(struct rtw_dev *rtwdev);
851 int (*read_efuse)(struct rtw_dev *rtwdev, u8 *map);
852 void (*phy_set_param)(struct rtw_dev *rtwdev);
853 void (*set_channel)(struct rtw_dev *rtwdev, u8 channel,
854 u8 bandwidth, u8 primary_chan_idx);
855 void (*query_phy_status)(struct rtw_dev *rtwdev, u8 *phy_status,
856 struct rtw_rx_pkt_stat *pkt_stat);
857 u32 (*read_rf)(struct rtw_dev *rtwdev, enum rtw_rf_path rf_path,
859 bool (*write_rf)(struct rtw_dev *rtwdev, enum rtw_rf_path rf_path,
860 u32 addr, u32 mask, u32 data);
861 void (*set_tx_power_index)(struct rtw_dev *rtwdev);
862 int (*rsvd_page_dump)(struct rtw_dev *rtwdev, u8 *buf, u32 offset,
864 int (*set_antenna)(struct rtw_dev *rtwdev,
867 void (*cfg_ldo25)(struct rtw_dev *rtwdev, bool enable);
868 void (*efuse_grant)(struct rtw_dev *rtwdev, bool enable);
869 void (*false_alarm_statistics)(struct rtw_dev *rtwdev);
870 void (*phy_calibration)(struct rtw_dev *rtwdev);
871 void (*dpk_track)(struct rtw_dev *rtwdev);
872 void (*cck_pd_set)(struct rtw_dev *rtwdev, u8 level);
873 void (*pwr_track)(struct rtw_dev *rtwdev);
874 void (*config_bfee)(struct rtw_dev *rtwdev, struct rtw_vif *vif,
875 struct rtw_bfee *bfee, bool enable);
876 void (*set_gid_table)(struct rtw_dev *rtwdev,
877 struct ieee80211_vif *vif,
878 struct ieee80211_bss_conf *conf);
879 void (*cfg_csi_rate)(struct rtw_dev *rtwdev, u8 rssi, u8 cur_rate,
880 u8 fixrate_en, u8 *new_rate);
881 void (*adaptivity_init)(struct rtw_dev *rtwdev);
882 void (*adaptivity)(struct rtw_dev *rtwdev);
883 void (*cfo_init)(struct rtw_dev *rtwdev);
884 void (*cfo_track)(struct rtw_dev *rtwdev);
885 void (*config_tx_path)(struct rtw_dev *rtwdev, u8 tx_path,
886 enum rtw_bb_path tx_path_1ss,
887 enum rtw_bb_path tx_path_cck,
889 void (*config_txrx_mode)(struct rtw_dev *rtwdev, u8 tx_path,
890 u8 rx_path, bool is_tx2_path);
891 /* for USB/SDIO only */
892 void (*fill_txdesc_checksum)(struct rtw_dev *rtwdev,
893 struct rtw_tx_pkt_info *pkt_info,
897 void (*coex_set_init)(struct rtw_dev *rtwdev);
898 void (*coex_set_ant_switch)(struct rtw_dev *rtwdev,
899 u8 ctrl_type, u8 pos_type);
900 void (*coex_set_gnt_fix)(struct rtw_dev *rtwdev);
901 void (*coex_set_gnt_debug)(struct rtw_dev *rtwdev);
902 void (*coex_set_rfe_type)(struct rtw_dev *rtwdev);
903 void (*coex_set_wl_tx_power)(struct rtw_dev *rtwdev, u8 wl_pwr);
904 void (*coex_set_wl_rx_gain)(struct rtw_dev *rtwdev, bool low_gain);
907 #define RTW_PWR_POLLING_CNT 20000
909 #define RTW_PWR_CMD_READ 0x00
910 #define RTW_PWR_CMD_WRITE 0x01
911 #define RTW_PWR_CMD_POLLING 0x02
912 #define RTW_PWR_CMD_DELAY 0x03
913 #define RTW_PWR_CMD_END 0x04
915 /* define the base address of each block */
916 #define RTW_PWR_ADDR_MAC 0x00
917 #define RTW_PWR_ADDR_USB 0x01
918 #define RTW_PWR_ADDR_PCIE 0x02
919 #define RTW_PWR_ADDR_SDIO 0x03
921 #define RTW_PWR_INTF_SDIO_MSK BIT(0)
922 #define RTW_PWR_INTF_USB_MSK BIT(1)
923 #define RTW_PWR_INTF_PCI_MSK BIT(2)
924 #define RTW_PWR_INTF_ALL_MSK (BIT(0) | BIT(1) | BIT(2) | BIT(3))
926 #define RTW_PWR_CUT_TEST_MSK BIT(0)
927 #define RTW_PWR_CUT_A_MSK BIT(1)
928 #define RTW_PWR_CUT_B_MSK BIT(2)
929 #define RTW_PWR_CUT_C_MSK BIT(3)
930 #define RTW_PWR_CUT_D_MSK BIT(4)
931 #define RTW_PWR_CUT_E_MSK BIT(5)
932 #define RTW_PWR_CUT_F_MSK BIT(6)
933 #define RTW_PWR_CUT_G_MSK BIT(7)
934 #define RTW_PWR_CUT_ALL_MSK 0xFF
936 enum rtw_pwr_seq_cmd_delay_unit {
941 struct rtw_pwr_seq_cmd {
952 RTW_CHIP_VER_CUT_A = 0x00,
953 RTW_CHIP_VER_CUT_B = 0x01,
954 RTW_CHIP_VER_CUT_C = 0x02,
955 RTW_CHIP_VER_CUT_D = 0x03,
956 RTW_CHIP_VER_CUT_E = 0x04,
957 RTW_CHIP_VER_CUT_F = 0x05,
958 RTW_CHIP_VER_CUT_G = 0x06,
961 #define RTW_INTF_PHY_PLATFORM_ALL 0
963 enum rtw_intf_phy_cut {
964 RTW_INTF_PHY_CUT_A = BIT(0),
965 RTW_INTF_PHY_CUT_B = BIT(1),
966 RTW_INTF_PHY_CUT_C = BIT(2),
967 RTW_INTF_PHY_CUT_D = BIT(3),
968 RTW_INTF_PHY_CUT_E = BIT(4),
969 RTW_INTF_PHY_CUT_F = BIT(5),
970 RTW_INTF_PHY_CUT_G = BIT(6),
971 RTW_INTF_PHY_CUT_ALL = 0xFFFF,
979 RTW_IP_SEL_UNDEF = 0xFFFF
989 RTW_PQ_MAP_NUM = 0x6,
994 enum rtw_dma_mapping {
995 RTW_DMA_MAPPING_EXTRA = 0,
996 RTW_DMA_MAPPING_LOW = 1,
997 RTW_DMA_MAPPING_NORMAL = 2,
998 RTW_DMA_MAPPING_HIGH = 3,
1000 RTW_DMA_MAPPING_MAX,
1001 RTW_DMA_MAPPING_UNDEF,
1005 enum rtw_dma_mapping dma_map_vo;
1006 enum rtw_dma_mapping dma_map_vi;
1007 enum rtw_dma_mapping dma_map_be;
1008 enum rtw_dma_mapping dma_map_bk;
1009 enum rtw_dma_mapping dma_map_mg;
1010 enum rtw_dma_mapping dma_map_hi;
1013 struct rtw_prioq_addr {
1018 struct rtw_prioq_addrs {
1019 struct rtw_prioq_addr prio[RTW_DMA_MAPPING_MAX];
1023 struct rtw_page_table {
1031 struct rtw_intf_phy_para {
1039 struct rtw_wow_pattern {
1043 u8 mask[RTW_MAX_PATTERN_MASK_SIZE];
1046 struct rtw_pno_request {
1049 struct cfg80211_match_set *match_sets;
1051 struct ieee80211_channel *channels;
1052 struct cfg80211_sched_scan_plan scan_plan;
1055 struct rtw_wow_param {
1056 struct ieee80211_vif *wow_vif;
1057 DECLARE_BITMAP(flags, RTW_WOW_FLAG_MAX);
1060 struct rtw_wow_pattern patterns[RTW_MAX_PATTERN_NUM];
1063 struct rtw_pno_request pno_req;
1066 struct rtw_intf_phy_para_table {
1067 const struct rtw_intf_phy_para *usb2_para;
1068 const struct rtw_intf_phy_para *usb3_para;
1069 const struct rtw_intf_phy_para *gen1_para;
1070 const struct rtw_intf_phy_para *gen2_para;
1080 void (*parse)(struct rtw_dev *rtwdev, const struct rtw_table *tbl);
1081 void (*do_cfg)(struct rtw_dev *rtwdev, const struct rtw_table *tbl,
1082 u32 addr, u32 data);
1083 enum rtw_rf_path rf_path;
1086 static inline void rtw_load_table(struct rtw_dev *rtwdev,
1087 const struct rtw_table *tbl)
1089 (*tbl->parse)(rtwdev, tbl);
1095 RTW_RFE_IFEM2G_EFEM5G,
1099 struct rtw_rfe_def {
1100 const struct rtw_table *phy_pg_tbl;
1101 const struct rtw_table *txpwr_lmt_tbl;
1102 const struct rtw_pwr_track_tbl *pwr_track_tbl;
1103 const struct rtw_table *agc_btg_tbl;
1106 #define RTW_DEF_RFE(chip, bb_pg, pwrlmt, track) { \
1107 .phy_pg_tbl = &rtw ## chip ## _bb_pg_type ## bb_pg ## _tbl, \
1108 .txpwr_lmt_tbl = &rtw ## chip ## _txpwr_lmt_type ## pwrlmt ## _tbl, \
1109 .pwr_track_tbl = &rtw ## chip ## _pwr_track_type ## track ## _tbl, \
1112 #define RTW_DEF_RFE_EXT(chip, bb_pg, pwrlmt, track, btg) { \
1113 .phy_pg_tbl = &rtw ## chip ## _bb_pg_type ## bb_pg ## _tbl, \
1114 .txpwr_lmt_tbl = &rtw ## chip ## _txpwr_lmt_type ## pwrlmt ## _tbl, \
1115 .pwr_track_tbl = &rtw ## chip ## _pwr_track_type ## track ## _tbl, \
1116 .agc_btg_tbl = &rtw ## chip ## _agc_btg_type ## btg ## _tbl, \
1119 #define RTW_PWR_TRK_5G_1 0
1120 #define RTW_PWR_TRK_5G_2 1
1121 #define RTW_PWR_TRK_5G_3 2
1122 #define RTW_PWR_TRK_5G_NUM 3
1124 #define RTW_PWR_TRK_TBL_SZ 30
1126 /* This table stores the values of TX power that will be adjusted by power
1129 * For 5G bands, there are 3 different settings.
1130 * For 2G there are cck rate and ofdm rate with different settings.
1132 struct rtw_pwr_track_tbl {
1133 const u8 *pwrtrk_5gb_n[RTW_PWR_TRK_5G_NUM];
1134 const u8 *pwrtrk_5gb_p[RTW_PWR_TRK_5G_NUM];
1135 const u8 *pwrtrk_5ga_n[RTW_PWR_TRK_5G_NUM];
1136 const u8 *pwrtrk_5ga_p[RTW_PWR_TRK_5G_NUM];
1137 const u8 *pwrtrk_2gb_n;
1138 const u8 *pwrtrk_2gb_p;
1139 const u8 *pwrtrk_2ga_n;
1140 const u8 *pwrtrk_2ga_p;
1141 const u8 *pwrtrk_2g_cckb_n;
1142 const u8 *pwrtrk_2g_cckb_p;
1143 const u8 *pwrtrk_2g_ccka_n;
1144 const u8 *pwrtrk_2g_ccka_p;
1145 const s8 *pwrtrk_xtal_n;
1146 const s8 *pwrtrk_xtal_p;
1154 enum rtw_fw_fifo_sel {
1157 RTW_FW_FIFO_SEL_RSVD_PAGE,
1158 RTW_FW_FIFO_SEL_REPORT,
1159 RTW_FW_FIFO_SEL_LLT,
1160 RTW_FW_FIFO_SEL_RXBUF_FW,
1165 enum rtw_fwcd_item {
1174 /* hardware configuration for each IC */
1175 struct rtw_chip_info {
1176 const struct rtw_chip_ops *ops;
1179 const char *fw_name;
1180 enum rtw_wlan_cpu wlan_cpu;
1187 u32 ptct_efuse_size;
1191 u16 rsvd_drv_pg_num;
1198 bool is_pwr_by_rate_dec;
1204 u16 fw_fifo_addr[RTW_FW_FIFO_MAX];
1205 const struct rtw_fwcd_segs *fwcd_segs;
1207 u8 usb_tx_agg_desc_num;
1208 bool hw_feature_report;
1209 u8 c2h_ra_report_size;
1210 bool old_datarate_fb_limit;
1212 u8 default_1ss_tx_path;
1214 bool path_div_supported;
1217 u8 lps_deep_mode_supported;
1221 const struct rtw_pwr_seq_cmd * const *pwr_on_seq;
1222 const struct rtw_pwr_seq_cmd * const *pwr_off_seq;
1223 const struct rtw_rqpn *rqpn_table;
1224 const struct rtw_prioq_addrs *prioq_addrs;
1225 const struct rtw_page_table *page_table;
1226 const struct rtw_intf_phy_para_table *intf_table;
1228 const struct rtw_hw_reg *dig;
1229 const struct rtw_hw_reg *dig_cck;
1230 u32 rf_base_addr[2];
1231 u32 rf_sipi_addr[2];
1232 const struct rtw_rf_sipi_addr *rf_sipi_read_addr;
1234 const struct rtw_ltecoex_addr *ltecoex_addr;
1236 const struct rtw_table *mac_tbl;
1237 const struct rtw_table *agc_tbl;
1238 const struct rtw_table *bb_tbl;
1239 const struct rtw_table *rf_tbl[RTW_RF_PATH_MAX];
1240 const struct rtw_table *rfk_init_tbl;
1242 const struct rtw_rfe_def *rfe_defs;
1253 const struct rtw_hw_reg_offset *edcca_th;
1257 const char *wow_fw_name;
1258 const struct wiphy_wowlan_support *wowlan_stub;
1259 const u8 max_sched_scan_ssids;
1260 const u16 max_scan_ie_len;
1266 bool new_scbd10_def; /* true: fix 2M(8822c) */
1267 bool ble_hid_profile_support;
1268 bool wl_mimo_ps_support;
1269 u8 pstdma_type; /* 0: LPSoff, 1:LPSon */
1277 u8 bt_afh_span_bw20;
1278 u8 bt_afh_span_bw40;
1281 u8 coex_info_hw_regs_num;
1282 const u8 *bt_rssi_step;
1283 const u8 *wl_rssi_step;
1284 const struct coex_table_para *table_nsant;
1285 const struct coex_table_para *table_sant;
1286 const struct coex_tdma_para *tdma_sant;
1287 const struct coex_tdma_para *tdma_nsant;
1288 const struct coex_rf_para *wl_rf_para_tx;
1289 const struct coex_rf_para *wl_rf_para_rx;
1290 const struct coex_5g_afh_map *afh_5g;
1291 const struct rtw_hw_reg *btg_reg;
1292 const struct rtw_reg_domain *coex_info_hw_regs;
1293 u32 wl_fw_desired_ver;
1296 enum rtw_coex_bt_state_cnt {
1299 COEX_CNT_BT_REENABLE,
1300 COEX_CNT_BT_POPEVENT,
1301 COEX_CNT_BT_SETUPLINK,
1302 COEX_CNT_BT_IGNWLANACT,
1305 COEX_CNT_BT_ROLESWITCH,
1306 COEX_CNT_BT_AFHUPDATE,
1307 COEX_CNT_BT_INFOUPDATE,
1309 COEX_CNT_BT_IQKFAIL,
1314 enum rtw_coex_wl_state_cnt {
1316 COEX_CNT_WL_CONNPKT,
1317 COEX_CNT_WL_COEXRUN,
1321 COEX_CNT_WL_5MS_NOEXTEND,
1322 COEX_CNT_WL_FW_NOTIFY,
1327 struct rtw_coex_rfe {
1328 bool ant_switch_exist;
1329 bool ant_switch_diversity;
1330 bool ant_switch_with_bt;
1332 u8 ant_switch_polarity;
1334 /* true if WLG at BTG, else at WLAG */
1338 #define COEX_WL_TDMA_PARA_LENGTH 5
1340 struct rtw_coex_dm {
1341 bool cur_ps_tdma_on;
1342 bool cur_wl_rx_low_gain_en;
1346 u8 bt_rssi_state[4];
1347 u8 wl_rssi_state[4];
1356 u32 cur_ant_pos_type;
1357 u32 cur_switch_status;
1359 u8 fw_tdma_para[COEX_WL_TDMA_PARA_LENGTH];
1362 #define COEX_BTINFO_SRC_WL_FW 0x0
1363 #define COEX_BTINFO_SRC_BT_RSP 0x1
1364 #define COEX_BTINFO_SRC_BT_ACT 0x2
1365 #define COEX_BTINFO_SRC_BT_IQK 0x3
1366 #define COEX_BTINFO_SRC_BT_SCBD 0x4
1367 #define COEX_BTINFO_SRC_H2C60 0x5
1368 #define COEX_BTINFO_SRC_MAX 0x6
1370 #define COEX_INFO_FTP BIT(7)
1371 #define COEX_INFO_A2DP BIT(6)
1372 #define COEX_INFO_HID BIT(5)
1373 #define COEX_INFO_SCO_BUSY BIT(4)
1374 #define COEX_INFO_ACL_BUSY BIT(3)
1375 #define COEX_INFO_INQ_PAGE BIT(2)
1376 #define COEX_INFO_SCO_ESCO BIT(1)
1377 #define COEX_INFO_CONNECTION BIT(0)
1378 #define COEX_BTINFO_LENGTH_MAX 10
1379 #define COEX_BTINFO_LENGTH 7
1381 #define COEX_BT_HIDINFO_LIST 0x0
1382 #define COEX_BT_HIDINFO_A 0x1
1383 #define COEX_BT_HIDINFO_NAME 3
1385 #define COEX_BT_HIDINFO_LENGTH 6
1386 #define COEX_BT_HIDINFO_HANDLE_NUM 4
1387 #define COEX_BT_HIDINFO_C2H_HANDLE 0
1388 #define COEX_BT_HIDINFO_C2H_VENDOR 1
1389 #define COEX_BT_BLE_HANDLE_THRS 0x10
1390 #define COEX_BT_HIDINFO_NOTCON 0xff
1392 struct rtw_coex_hid {
1395 u8 hid_name[COEX_BT_HIDINFO_NAME];
1396 bool hid_info_completed;
1400 struct rtw_coex_hid_handle_list {
1405 u8 handle[COEX_BT_HIDINFO_HANDLE_NUM];
1408 struct rtw_coex_hid_info_a {
1414 u8 name[COEX_BT_HIDINFO_NAME];
1417 struct rtw_coex_stat {
1419 bool bt_disabled_pre;
1431 bool bt_pan_exist; /* PAN or OPP */
1432 bool bt_opp_exist; /* OPP only */
1437 bool bt_multi_link_pre;
1438 bool bt_multi_link_remain;
1440 bool bt_a2dp_active;
1442 bool bt_ble_scan_en;
1445 bool bt_418_hid_exist;
1446 bool bt_ble_hid_exist;
1447 bool bt_game_hid_exist;
1448 bool bt_hid_handle_cnt;
1449 bool bt_mailbox_reply;
1453 bool wl_hi_pri_task1;
1454 bool wl_hi_pri_task2;
1455 bool wl_force_lps_ctrl;
1457 bool wl_linkscan_proc;
1458 bool wl_ps_state_fail;
1459 bool wl_tx_limit_en;
1460 bool wl_ampdu_limit_en;
1462 bool wl_slot_extend;
1464 bool wl_cck_lock_pre;
1465 bool wl_cck_lock_ever;
1467 bool wl_slot_toggle;
1468 bool wl_slot_toggle_change; /* if toggle to no-toggle */
1471 u32 bt_supported_version;
1472 u32 bt_supported_feature;
1478 u16 bt_reg_vendor_ae;
1479 u16 bt_reg_vendor_ac;
1482 u8 gnt_workaround_state;
1485 u8 bt_info_c2h[COEX_BTINFO_SRC_MAX][COEX_BTINFO_LENGTH_MAX];
1492 u8 bt_ble_scan_type;
1499 u16 wl_beacon_interval;
1501 u8 wl_fw_dbg_info[10];
1502 u8 wl_fw_dbg_info_pre[10];
1511 u8 wl_toggle_para[6];
1512 u8 wl_toggle_interval;
1517 /* counters to record bt states */
1518 u32 cnt_bt[COEX_CNT_BT_MAX];
1520 /* counters to record wifi states */
1521 u32 cnt_wl[COEX_CNT_WL_MAX];
1523 /* counters to record bt c2h data */
1524 u32 cnt_bt_info_c2h[COEX_BTINFO_SRC_MAX];
1529 struct rtw_coex_hid hid_info[COEX_BT_HIDINFO_HANDLE_NUM];
1530 struct rtw_coex_hid_handle_list hid_handle_list;
1534 struct sk_buff_head queue;
1535 wait_queue_head_t wait;
1542 bool manual_control;
1544 struct rtw_coex_stat stat;
1545 struct rtw_coex_dm dm;
1546 struct rtw_coex_rfe rfe;
1548 struct delayed_work bt_relink_work;
1549 struct delayed_work bt_reenable_work;
1550 struct delayed_work defreeze_work;
1551 struct delayed_work wl_remain_work;
1552 struct delayed_work bt_remain_work;
1553 struct delayed_work wl_connecting_work;
1554 struct delayed_work bt_multi_link_remain_work;
1555 struct delayed_work wl_ccklock_work;
1559 #define DPK_RF_REG_NUM 7
1560 #define DPK_RF_PATH_NUM 2
1561 #define DPK_BB_REG_NUM 18
1562 #define DPK_CHANNEL_WIDTH_80 1
1564 DECLARE_EWMA(thermal, 10, 4);
1566 struct rtw_dpk_info {
1570 DECLARE_BITMAP(dpk_path_ok, DPK_RF_PATH_NUM);
1572 u8 thermal_dpk[DPK_RF_PATH_NUM];
1573 struct ewma_thermal avg_thermal[DPK_RF_PATH_NUM];
1578 u8 result[RTW_RF_PATH_MAX];
1579 u8 dpk_txagc[RTW_RF_PATH_MAX];
1580 u32 coef[RTW_RF_PATH_MAX][20];
1581 u16 dpk_gs[RTW_RF_PATH_MAX];
1582 u8 thermal_dpk_delta[RTW_RF_PATH_MAX];
1583 u8 pre_pwsf[RTW_RF_PATH_MAX];
1590 struct rtw_phy_cck_pd_reg {
1597 #define DACK_MSBK_BACKUP_NUM 0xf
1598 #define DACK_DCK_BACKUP_NUM 0x2
1600 struct rtw_swing_table {
1601 const u8 *p[RTW_RF_PATH_MAX];
1602 const u8 *n[RTW_RF_PATH_MAX];
1605 struct rtw_pkt_count {
1607 u16 num_qry_pkt[DESC_RATE_MAX];
1610 DECLARE_EWMA(evm, 10, 4);
1611 DECLARE_EWMA(snr, 10, 4);
1613 struct rtw_iqk_info {
1632 #define RF_GAIN_NUM 11
1633 #define RF_HW_OFFSET_NUM 10
1635 struct rtw_gapk_info {
1636 u32 rf3f_bp[RF_BAND_MAX][RF_GAIN_NUM][RTW_RF_PATH_MAX];
1637 u32 rf3f_fs[RTW_RF_PATH_MAX][RF_GAIN_NUM];
1638 bool txgapk_bp_done;
1639 s8 offset[RF_GAIN_NUM][RTW_RF_PATH_MAX];
1640 s8 fianl_offset[RF_GAIN_NUM][RTW_RF_PATH_MAX];
1645 #define EDCCA_TH_L2H_IDX 0
1646 #define EDCCA_TH_H2L_IDX 1
1647 #define EDCCA_TH_L2H_LB 48
1648 #define EDCCA_ADC_BACKOFF 12
1649 #define EDCCA_IGI_BASE 50
1650 #define EDCCA_IGI_L2H_DIFF 8
1651 #define EDCCA_L2H_H2L_DIFF 7
1652 #define EDCCA_L2H_H2L_DIFF_NORMAL 8
1654 enum rtw_edcca_mode {
1655 RTW_EDCCA_NORMAL = 0,
1656 RTW_EDCCA_ADAPTIVITY = 1,
1659 struct rtw_cfo_track {
1662 s32 cfo_tail[RTW_RF_PATH_MAX];
1663 s32 cfo_cnt[RTW_RF_PATH_MAX];
1665 u32 packet_count_pre;
1668 #define RRSR_INIT_2G 0x15f
1669 #define RRSR_INIT_5G 0x150
1677 struct rtw_dm_info {
1710 u8 thermal_avg[RTW_RF_PATH_MAX];
1712 u8 thermal_meter_lck;
1713 s8 delta_power_index[RTW_RF_PATH_MAX];
1714 s8 delta_power_index_last[RTW_RF_PATH_MAX];
1715 u8 default_ofdm_index;
1716 u8 default_cck_index;
1717 bool pwr_trk_triggered;
1718 bool pwr_trk_init_trigger;
1719 struct ewma_thermal avg_thermal[RTW_RF_PATH_MAX];
1720 s8 txagc_remnant_cck;
1721 s8 txagc_remnant_ofdm[RTW_RF_PATH_MAX];
1722 u8 rx_cck_agc_report_type;
1724 /* backup dack results for each path and I/Q */
1725 u32 dack_adck[RTW_RF_PATH_MAX];
1726 u16 dack_msbk[RTW_RF_PATH_MAX][2][DACK_MSBK_BACKUP_NUM];
1727 u8 dack_dck[RTW_RF_PATH_MAX][2][DACK_DCK_BACKUP_NUM];
1729 struct rtw_dpk_info dpk_info;
1730 struct rtw_cfo_track cfo_track;
1732 /* [bandwidth 0:20M/1:40M][number of path] */
1733 u8 cck_pd_lv[2][RTW_RF_PATH_MAX];
1737 /* save the last rx phy status for debug */
1738 s8 rx_snr[RTW_RF_PATH_MAX];
1739 u8 rx_evm_dbm[RTW_RF_PATH_MAX];
1740 s16 cfo_tail[RTW_RF_PATH_MAX];
1741 u8 rssi[RTW_RF_PATH_MAX];
1743 struct rtw_pkt_count cur_pkt_count;
1744 struct rtw_pkt_count last_pkt_count;
1745 struct ewma_evm ewma_evm[RTW_EVM_NUM];
1746 struct ewma_snr ewma_snr[RTW_SNR_NUM];
1748 u32 dm_flags; /* enum rtw_dm_cap */
1749 struct rtw_iqk_info iqk;
1750 struct rtw_gapk_info gapk;
1751 bool is_bt_iqk_timeout;
1754 enum rtw_edcca_mode edcca_mode;
1769 u8 power_track_type;
1770 u8 thermal_meter[RTW_RF_PATH_MAX];
1790 u8 tx_bb_swing_setting_2g;
1791 u8 tx_bb_swing_setting_5g;
1794 /* bt share antenna with wifi */
1808 struct rtw_txpwr_idx txpwr_idx_table[4];
1811 struct rtw_phy_cond {
1812 #ifdef __LITTLE_ENDIAN
1834 #define INTF_PCIE BIT(0)
1835 #define INTF_USB BIT(1)
1836 #define INTF_SDIO BIT(2)
1839 #define BRANCH_ELIF 1
1840 #define BRANCH_ELSE 2
1841 #define BRANCH_ENDIF 3
1844 struct rtw_phy_cond2 {
1845 #ifdef __LITTLE_ENDIAN
1858 struct rtw_fifo_conf {
1859 /* tx fifo information */
1862 u16 rsvd_drv_pg_num;
1866 u16 rsvd_h2c_info_addr;
1867 u16 rsvd_h2c_sta_info_addr;
1869 u16 rsvd_cpu_instr_addr;
1870 u16 rsvd_fw_txbuf_addr;
1871 u16 rsvd_csibuf_addr;
1872 const struct rtw_rqpn *rqpn;
1875 struct rtw_fwcd_desc {
1881 struct rtw_fwcd_segs {
1886 #define FW_CD_TYPE 0xffff
1888 #define FW_CD_VAL 0xaabbccdd
1889 struct rtw_fw_state {
1890 const struct firmware *firmware;
1891 struct rtw_dev *rtwdev;
1892 struct completion completion;
1893 struct rtw_fwcd_desc fwcd_desc;
1900 enum rtw_fw_type type;
1903 enum rtw_sar_sources {
1904 RTW_SAR_SOURCE_NONE,
1905 RTW_SAR_SOURCE_COMMON,
1908 enum rtw_sar_bands {
1911 /* RTW_SAR_BAND_2, not used now */
1918 /* the union is reserved for other kinds of SAR sources
1919 * which might not re-use same format with array common.
1922 s8 common[RTW_SAR_BAND_NR];
1926 enum rtw_sar_sources src;
1927 union rtw_sar_cfg cfg[RTW_RF_PATH_MAX][RTW_RATE_SECTION_MAX];
1938 struct rtw_phy_cond phy_cond;
1939 struct rtw_phy_cond2 phy_cond2;
1944 u8 current_primary_channel_index;
1945 u8 current_band_width;
1946 u8 current_band_type;
1949 /* center channel for different available bandwidth,
1950 * val of (bw > current_band_width) is invalid
1952 u8 cch_by_bw[RTW_MAX_CHANNEL_WIDTH + 1];
1962 bool cck_high_power;
1964 /* protect tx power section */
1965 struct mutex tx_power_mutex;
1966 s8 tx_pwr_by_rate_offset_2g[RTW_RF_PATH_MAX]
1968 s8 tx_pwr_by_rate_offset_5g[RTW_RF_PATH_MAX]
1970 s8 tx_pwr_by_rate_base_2g[RTW_RF_PATH_MAX]
1971 [RTW_RATE_SECTION_MAX];
1972 s8 tx_pwr_by_rate_base_5g[RTW_RF_PATH_MAX]
1973 [RTW_RATE_SECTION_MAX];
1974 s8 tx_pwr_limit_2g[RTW_REGD_MAX]
1975 [RTW_CHANNEL_WIDTH_MAX]
1976 [RTW_RATE_SECTION_MAX]
1977 [RTW_MAX_CHANNEL_NUM_2G];
1978 s8 tx_pwr_limit_5g[RTW_REGD_MAX]
1979 [RTW_CHANNEL_WIDTH_MAX]
1980 [RTW_RATE_SECTION_MAX]
1981 [RTW_MAX_CHANNEL_NUM_5G];
1982 s8 tx_pwr_tbl[RTW_RF_PATH_MAX]
1985 enum rtw_sar_bands sar_band;
1988 /* for 8821c set channel */
1992 struct rtw_path_div {
1993 enum rtw_bb_path current_tx_path;
2000 struct rtw_chan_info {
2009 struct rtw_chan_list {
2016 struct rtw_hw_scan_info {
2017 struct ieee80211_vif *scanning_vif;
2026 struct ieee80211_hw *hw;
2031 struct rtw_hw_scan_info scan_info;
2032 const struct rtw_chip_info *chip;
2034 struct rtw_fifo_conf fifo;
2035 struct rtw_fw_state fw;
2036 struct rtw_efuse efuse;
2037 struct rtw_sec_desc sec;
2038 struct rtw_traffic_stats stats;
2039 struct rtw_regd regd;
2040 struct rtw_bf_info bf_info;
2042 struct rtw_dm_info dm_info;
2043 struct rtw_coex coex;
2045 /* ensures exclusive access from mac80211 callbacks */
2048 /* watch dog every 2 sec */
2049 struct delayed_work watch_dog_work;
2052 struct list_head rsvd_page_list;
2054 /* c2h cmd queue & handler work */
2055 struct sk_buff_head c2h_queue;
2056 struct work_struct c2h_work;
2057 struct work_struct ips_work;
2058 struct work_struct fw_recovery_work;
2059 struct work_struct update_beacon_work;
2061 /* used to protect txqs list */
2062 spinlock_t txq_lock;
2063 struct list_head txqs;
2064 struct workqueue_struct *tx_wq;
2065 struct work_struct tx_work;
2066 struct work_struct ba_work;
2068 struct rtw_tx_report tx_report;
2071 /* indicate the mail box to use with fw */
2076 /* lps power state & handler work */
2077 struct rtw_lps_conf lps_conf;
2080 struct completion lps_leave_check;
2082 struct rtw_debugfs *debugfs;
2087 DECLARE_BITMAP(hw_port, RTW_PORT_NUM);
2088 DECLARE_BITMAP(mac_id_map, RTW_MAX_MAC_ID_NUM);
2089 DECLARE_BITMAP(flags, NUM_OF_RTW_FLAGS);
2092 struct rtw_path_div dm_path_div;
2094 struct rtw_fw_state wow_fw;
2095 struct rtw_wow_param wow;
2098 struct completion fw_scan_density;
2101 /* hci related data, must be last */
2102 u8 priv[] __aligned(sizeof(void *));
2107 static inline bool rtw_is_assoc(struct rtw_dev *rtwdev)
2109 return !!rtwdev->sta_cnt;
2112 static inline struct ieee80211_txq *rtwtxq_to_txq(struct rtw_txq *rtwtxq)
2116 return container_of(p, struct ieee80211_txq, drv_priv);
2119 static inline struct ieee80211_vif *rtwvif_to_vif(struct rtw_vif *rtwvif)
2123 return container_of(p, struct ieee80211_vif, drv_priv);
2126 static inline void rtw_chip_efuse_grant_on(struct rtw_dev *rtwdev)
2128 if (rtwdev->chip->ops->efuse_grant)
2129 rtwdev->chip->ops->efuse_grant(rtwdev, true);
2132 static inline void rtw_chip_efuse_grant_off(struct rtw_dev *rtwdev)
2134 if (rtwdev->chip->ops->efuse_grant)
2135 rtwdev->chip->ops->efuse_grant(rtwdev, false);
2138 static inline bool rtw_chip_wcpu_11n(struct rtw_dev *rtwdev)
2140 return rtwdev->chip->wlan_cpu == RTW_WCPU_11N;
2143 static inline bool rtw_chip_wcpu_11ac(struct rtw_dev *rtwdev)
2145 return rtwdev->chip->wlan_cpu == RTW_WCPU_11AC;
2148 static inline bool rtw_chip_has_rx_ldpc(struct rtw_dev *rtwdev)
2150 return rtwdev->chip->rx_ldpc;
2153 static inline bool rtw_chip_has_tx_stbc(struct rtw_dev *rtwdev)
2155 return rtwdev->chip->tx_stbc;
2158 static inline u8 rtw_acquire_macid(struct rtw_dev *rtwdev)
2160 unsigned long mac_id;
2162 mac_id = find_first_zero_bit(rtwdev->mac_id_map, RTW_MAX_MAC_ID_NUM);
2163 if (mac_id < RTW_MAX_MAC_ID_NUM)
2164 set_bit(mac_id, rtwdev->mac_id_map);
2169 static inline void rtw_release_macid(struct rtw_dev *rtwdev, u8 mac_id)
2171 clear_bit(mac_id, rtwdev->mac_id_map);
2174 static inline int rtw_chip_dump_fw_crash(struct rtw_dev *rtwdev)
2176 if (rtwdev->chip->ops->dump_fw_crash)
2177 return rtwdev->chip->ops->dump_fw_crash(rtwdev);
2183 enum nl80211_band rtw_hw_to_nl80211_band(enum rtw_supported_band hw_band)
2188 return NL80211_BAND_2GHZ;
2190 return NL80211_BAND_5GHZ;
2192 return NL80211_BAND_60GHZ;
2196 void rtw_set_rx_freq_band(struct rtw_rx_pkt_stat *pkt_stat, u8 channel);
2197 void rtw_set_dtim_period(struct rtw_dev *rtwdev, int dtim_period);
2198 void rtw_get_channel_params(struct cfg80211_chan_def *chandef,
2199 struct rtw_channel_params *ch_param);
2200 bool check_hw_ready(struct rtw_dev *rtwdev, u32 addr, u32 mask, u32 target);
2201 bool ltecoex_read_reg(struct rtw_dev *rtwdev, u16 offset, u32 *val);
2202 bool ltecoex_reg_write(struct rtw_dev *rtwdev, u16 offset, u32 value);
2203 void rtw_restore_reg(struct rtw_dev *rtwdev,
2204 struct rtw_backup_info *bckp, u32 num);
2205 void rtw_desc_to_mcsrate(u16 rate, u8 *mcs, u8 *nss);
2206 void rtw_set_channel(struct rtw_dev *rtwdev);
2207 void rtw_chip_prepare_tx(struct rtw_dev *rtwdev);
2208 void rtw_vif_port_config(struct rtw_dev *rtwdev, struct rtw_vif *rtwvif,
2210 void rtw_tx_report_purge_timer(struct timer_list *t);
2211 void rtw_update_sta_info(struct rtw_dev *rtwdev, struct rtw_sta_info *si,
2212 bool reset_ra_mask);
2213 void rtw_core_scan_start(struct rtw_dev *rtwdev, struct rtw_vif *rtwvif,
2214 const u8 *mac_addr, bool hw_scan);
2215 void rtw_core_scan_complete(struct rtw_dev *rtwdev, struct ieee80211_vif *vif,
2217 int rtw_core_start(struct rtw_dev *rtwdev);
2218 void rtw_power_off(struct rtw_dev *rtwdev);
2219 void rtw_core_stop(struct rtw_dev *rtwdev);
2220 int rtw_chip_info_setup(struct rtw_dev *rtwdev);
2221 int rtw_core_init(struct rtw_dev *rtwdev);
2222 void rtw_core_deinit(struct rtw_dev *rtwdev);
2223 int rtw_register_hw(struct rtw_dev *rtwdev, struct ieee80211_hw *hw);
2224 void rtw_unregister_hw(struct rtw_dev *rtwdev, struct ieee80211_hw *hw);
2225 u16 rtw_desc_to_bitrate(u8 desc_rate);
2226 void rtw_vif_assoc_changed(struct rtw_vif *rtwvif,
2227 struct ieee80211_bss_conf *conf);
2228 int rtw_sta_add(struct rtw_dev *rtwdev, struct ieee80211_sta *sta,
2229 struct ieee80211_vif *vif);
2230 void rtw_sta_remove(struct rtw_dev *rtwdev, struct ieee80211_sta *sta,
2232 void rtw_fw_recovery(struct rtw_dev *rtwdev);
2233 int rtw_wait_firmware_completion(struct rtw_dev *rtwdev);
2234 int rtw_power_on(struct rtw_dev *rtwdev);
2235 void rtw_core_fw_scan_notify(struct rtw_dev *rtwdev, bool start);
2236 int rtw_dump_fw(struct rtw_dev *rtwdev, const u32 ocp_src, u32 size,
2238 int rtw_dump_reg(struct rtw_dev *rtwdev, const u32 addr, const u32 size);
2239 void rtw_set_txrx_1ss(struct rtw_dev *rtwdev, bool config_1ss);
2240 void rtw_update_channel(struct rtw_dev *rtwdev, u8 center_channel,
2241 u8 primary_channel, enum rtw_supported_band band,
2242 enum rtw_bandwidth bandwidth);
2243 void rtw_core_port_switch(struct rtw_dev *rtwdev, struct ieee80211_vif *vif);
2244 bool rtw_core_check_sta_active(struct rtw_dev *rtwdev);
2245 void rtw_core_enable_beacon(struct rtw_dev *rtwdev, bool enable);