1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2 /* Copyright(c) 2018-2019 Realtek Corporation
13 static void rtw_wow_show_wakeup_reason(struct rtw_dev
*rtwdev
)
17 reason
= rtw_read8(rtwdev
, REG_WOWLAN_WAKE_REASON
);
19 if (reason
== RTW_WOW_RSN_RX_DEAUTH
)
20 rtw_dbg(rtwdev
, RTW_DBG_WOW
, "WOW: Rx deauth\n");
21 else if (reason
== RTW_WOW_RSN_DISCONNECT
)
22 rtw_dbg(rtwdev
, RTW_DBG_WOW
, "WOW: AP is off\n");
23 else if (reason
== RTW_WOW_RSN_RX_MAGIC_PKT
)
24 rtw_dbg(rtwdev
, RTW_DBG_WOW
, "WOW: Rx magic packet\n");
25 else if (reason
== RTW_WOW_RSN_RX_GTK_REKEY
)
26 rtw_dbg(rtwdev
, RTW_DBG_WOW
, "WOW: Rx gtk rekey\n");
27 else if (reason
== RTW_WOW_RSN_RX_PTK_REKEY
)
28 rtw_dbg(rtwdev
, RTW_DBG_WOW
, "WOW: Rx ptk rekey\n");
29 else if (reason
== RTW_WOW_RSN_RX_PATTERN_MATCH
)
30 rtw_dbg(rtwdev
, RTW_DBG_WOW
, "WOW: Rx pattern match packet\n");
31 else if (reason
== RTW_WOW_RSN_RX_NLO
)
32 rtw_dbg(rtwdev
, RTW_DBG_WOW
, "Rx NLO\n");
34 rtw_warn(rtwdev
, "Unknown wakeup reason %x\n", reason
);
37 static void rtw_wow_pattern_write_cam(struct rtw_dev
*rtwdev
, u8 addr
,
40 rtw_write32(rtwdev
, REG_WKFMCAM_RWD
, wdata
);
41 rtw_write32(rtwdev
, REG_WKFMCAM_CMD
, BIT_WKFCAM_POLLING_V1
|
42 BIT_WKFCAM_WE
| BIT_WKFCAM_ADDR_V2(addr
));
44 if (!check_hw_ready(rtwdev
, REG_WKFMCAM_CMD
, BIT_WKFCAM_POLLING_V1
, 0))
45 rtw_err(rtwdev
, "failed to write pattern cam\n");
48 static void rtw_wow_pattern_write_cam_ent(struct rtw_dev
*rtwdev
, u8 id
,
49 struct rtw_wow_pattern
*rtw_pattern
)
55 for (i
= 0; i
< RTW_MAX_PATTERN_MASK_SIZE
/ 4; i
++) {
57 wdata
= rtw_pattern
->mask
[i
* 4];
58 wdata
|= rtw_pattern
->mask
[i
* 4 + 1] << 8;
59 wdata
|= rtw_pattern
->mask
[i
* 4 + 2] << 16;
60 wdata
|= rtw_pattern
->mask
[i
* 4 + 3] << 24;
61 rtw_wow_pattern_write_cam(rtwdev
, addr
, wdata
);
64 wdata
= rtw_pattern
->crc
;
65 addr
= (id
<< 3) + RTW_MAX_PATTERN_MASK_SIZE
/ 4;
67 switch (rtw_pattern
->type
) {
68 case RTW_PATTERN_BROADCAST
:
69 wdata
|= BIT_WKFMCAM_BC
| BIT_WKFMCAM_VALID
;
71 case RTW_PATTERN_MULTICAST
:
72 wdata
|= BIT_WKFMCAM_MC
| BIT_WKFMCAM_VALID
;
74 case RTW_PATTERN_UNICAST
:
75 wdata
|= BIT_WKFMCAM_UC
| BIT_WKFMCAM_VALID
;
80 rtw_wow_pattern_write_cam(rtwdev
, addr
, wdata
);
83 /* RTK internal CRC16 for Pattern Cam */
84 static u16
__rtw_cal_crc16(u8 data
, u16 crc
)
86 u8 shift_in
, data_bit
;
87 u8 crc_bit4
, crc_bit11
, crc_bit15
;
91 for (index
= 0; index
< 8; index
++) {
92 crc_bit15
= ((crc
& BIT(15)) ? 1 : 0);
93 data_bit
= (data
& (BIT(0) << index
) ? 1 : 0);
94 shift_in
= crc_bit15
^ data_bit
;
96 crc_result
= crc
<< 1;
99 crc_result
&= (~BIT(0));
101 crc_result
|= BIT(0);
103 crc_bit11
= ((crc
& BIT(11)) ? 1 : 0) ^ shift_in
;
106 crc_result
&= (~BIT(12));
108 crc_result
|= BIT(12);
110 crc_bit4
= ((crc
& BIT(4)) ? 1 : 0) ^ shift_in
;
113 crc_result
&= (~BIT(5));
115 crc_result
|= BIT(5);
122 static u16
rtw_calc_crc(u8
*pdata
, int length
)
127 for (i
= 0; i
< length
; i
++)
128 crc
= __rtw_cal_crc16(pdata
[i
], crc
);
130 /* get 1' complement */
134 static void rtw_wow_pattern_generate(struct rtw_dev
*rtwdev
,
135 struct rtw_vif
*rtwvif
,
136 const struct cfg80211_pkt_pattern
*pkt_pattern
,
137 struct rtw_wow_pattern
*rtw_pattern
)
141 u8 mask_hw
[RTW_MAX_PATTERN_MASK_SIZE
] = {0};
142 u8 content
[RTW_MAX_PATTERN_SIZE
] = {0};
143 u8 mac_addr
[ETH_ALEN
] = {0};
149 pattern
= pkt_pattern
->pattern
;
150 len
= pkt_pattern
->pattern_len
;
151 mask
= pkt_pattern
->mask
;
153 ether_addr_copy(mac_addr
, rtwvif
->mac_addr
);
154 memset(rtw_pattern
, 0, sizeof(*rtw_pattern
));
156 mask_len
= DIV_ROUND_UP(len
, 8);
158 if (is_broadcast_ether_addr(pattern
))
159 rtw_pattern
->type
= RTW_PATTERN_BROADCAST
;
160 else if (is_multicast_ether_addr(pattern
))
161 rtw_pattern
->type
= RTW_PATTERN_MULTICAST
;
162 else if (ether_addr_equal(pattern
, mac_addr
))
163 rtw_pattern
->type
= RTW_PATTERN_UNICAST
;
165 rtw_pattern
->type
= RTW_PATTERN_INVALID
;
167 /* translate mask from os to mask for hw
168 * pattern from OS uses 'ethenet frame', like this:
169 * | 6 | 6 | 2 | 20 | Variable | 4 |
170 * |--------+--------+------+-----------+------------+-----|
171 * | 802.3 Mac Header | IP Header | TCP Packet | FCS |
174 * BUT, packet catched by our HW is in '802.11 frame', begin from LLC
175 * | 24 or 30 | 6 | 2 | 20 | Variable | 4 |
176 * |-------------------+--------+------+-----------+------------+-----|
177 * | 802.11 MAC Header | LLC | IP Header | TCP Packet | FCS |
180 * Therefore, we need translate mask_from_OS to mask_to_hw.
181 * We should left-shift mask by 6 bits, then set the new bit[0~5] = 0,
182 * because new mask[0~5] means 'SA', but our HW packet begins from LLC,
183 * bit[0~5] corresponds to first 6 Bytes in LLC, they just don't match.
187 for (i
= 0; i
< mask_len
- 1; i
++) {
188 mask_hw
[i
] = u8_get_bits(mask
[i
], GENMASK(7, 6));
189 mask_hw
[i
] |= u8_get_bits(mask
[i
+ 1], GENMASK(5, 0)) << 2;
191 mask_hw
[i
] = u8_get_bits(mask
[i
], GENMASK(7, 6));
193 /* Set bit 0-5 to zero */
194 mask_hw
[0] &= (~GENMASK(5, 0));
196 memcpy(rtw_pattern
->mask
, mask_hw
, RTW_MAX_PATTERN_MASK_SIZE
);
198 /* To get the wake up pattern from the mask.
199 * We do not count first 12 bits which means
200 * DA[6] and SA[6] in the pattern to match HW design.
203 for (i
= 12; i
< len
; i
++) {
204 if ((mask
[i
/ 8] >> (i
% 8)) & 0x01) {
205 content
[count
] = pattern
[i
];
210 rtw_pattern
->crc
= rtw_calc_crc(content
, count
);
213 static void rtw_wow_pattern_clear_cam(struct rtw_dev
*rtwdev
)
217 rtw_write32(rtwdev
, REG_WKFMCAM_CMD
, BIT_WKFCAM_POLLING_V1
|
220 ret
= check_hw_ready(rtwdev
, REG_WKFMCAM_CMD
, BIT_WKFCAM_POLLING_V1
, 0);
222 rtw_err(rtwdev
, "failed to clean pattern cam\n");
225 static void rtw_wow_pattern_write(struct rtw_dev
*rtwdev
)
227 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
228 struct rtw_wow_pattern
*rtw_pattern
= rtw_wow
->patterns
;
231 for (i
= 0; i
< rtw_wow
->pattern_cnt
; i
++)
232 rtw_wow_pattern_write_cam_ent(rtwdev
, i
, rtw_pattern
+ i
);
235 static void rtw_wow_pattern_clear(struct rtw_dev
*rtwdev
)
237 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
239 rtw_wow_pattern_clear_cam(rtwdev
);
241 rtw_wow
->pattern_cnt
= 0;
242 memset(rtw_wow
->patterns
, 0, sizeof(rtw_wow
->patterns
));
245 static void rtw_wow_bb_stop(struct rtw_dev
*rtwdev
)
247 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
249 /* wait 100ms for firmware to finish TX */
252 if (!rtw_read32_mask(rtwdev
, REG_BCNQ_INFO
, BIT_MGQ_CPU_EMPTY
))
253 rtw_warn(rtwdev
, "Wrong status of MGQ_CPU empty!\n");
255 rtw_wow
->txpause
= rtw_read8(rtwdev
, REG_TXPAUSE
);
256 rtw_write8(rtwdev
, REG_TXPAUSE
, 0xff);
257 rtw_write8_clr(rtwdev
, REG_SYS_FUNC_EN
, BIT_FEN_BB_RSTB
);
260 static void rtw_wow_bb_start(struct rtw_dev
*rtwdev
)
262 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
264 rtw_write8_set(rtwdev
, REG_SYS_FUNC_EN
, BIT_FEN_BB_RSTB
);
265 rtw_write8(rtwdev
, REG_TXPAUSE
, rtw_wow
->txpause
);
268 static void rtw_wow_rx_dma_stop(struct rtw_dev
*rtwdev
)
270 /* wait 100ms for HW to finish rx dma */
273 rtw_write32_set(rtwdev
, REG_RXPKT_NUM
, BIT_RW_RELEASE
);
275 if (!check_hw_ready(rtwdev
, REG_RXPKT_NUM
, BIT_RXDMA_IDLE
, 1))
276 rtw_err(rtwdev
, "failed to stop rx dma\n");
279 static void rtw_wow_rx_dma_start(struct rtw_dev
*rtwdev
)
281 rtw_write32_clr(rtwdev
, REG_RXPKT_NUM
, BIT_RW_RELEASE
);
284 static int rtw_wow_check_fw_status(struct rtw_dev
*rtwdev
, bool wow_enable
)
286 /* wait 100ms for wow firmware to finish work */
290 if (rtw_read8(rtwdev
, REG_WOWLAN_WAKE_REASON
))
293 if (rtw_read32_mask(rtwdev
, REG_FE1IMR
, BIT_FS_RXDONE
) ||
294 rtw_read32_mask(rtwdev
, REG_RXPKT_NUM
, BIT_RW_RELEASE
))
301 rtw_err(rtwdev
, "failed to check wow status %s\n",
302 wow_enable
? "enabled" : "disabled");
306 static void rtw_wow_fw_security_type_iter(struct ieee80211_hw
*hw
,
307 struct ieee80211_vif
*vif
,
308 struct ieee80211_sta
*sta
,
309 struct ieee80211_key_conf
*key
,
312 struct rtw_fw_key_type_iter_data
*iter_data
= data
;
313 struct rtw_dev
*rtwdev
= hw
->priv
;
316 if (vif
!= rtwdev
->wow
.wow_vif
)
319 switch (key
->cipher
) {
320 case WLAN_CIPHER_SUITE_WEP40
:
321 hw_key_type
= RTW_CAM_WEP40
;
323 case WLAN_CIPHER_SUITE_WEP104
:
324 hw_key_type
= RTW_CAM_WEP104
;
326 case WLAN_CIPHER_SUITE_TKIP
:
327 hw_key_type
= RTW_CAM_TKIP
;
328 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_MMIC
;
330 case WLAN_CIPHER_SUITE_CCMP
:
331 hw_key_type
= RTW_CAM_AES
;
332 key
->flags
|= IEEE80211_KEY_FLAG_SW_MGMT_TX
;
335 rtw_err(rtwdev
, "Unsupported key type for wowlan mode\n");
341 iter_data
->pairwise_key_type
= hw_key_type
;
343 iter_data
->group_key_type
= hw_key_type
;
346 static void rtw_wow_fw_security_type(struct rtw_dev
*rtwdev
)
348 struct rtw_fw_key_type_iter_data data
= {};
349 struct ieee80211_vif
*wow_vif
= rtwdev
->wow
.wow_vif
;
351 data
.rtwdev
= rtwdev
;
352 rtw_iterate_keys(rtwdev
, wow_vif
,
353 rtw_wow_fw_security_type_iter
, &data
);
354 rtw_fw_set_aoac_global_info_cmd(rtwdev
, data
.pairwise_key_type
,
355 data
.group_key_type
);
358 static int rtw_wow_fw_start(struct rtw_dev
*rtwdev
)
360 if (rtw_wow_mgd_linked(rtwdev
)) {
361 rtw_send_rsvd_page_h2c(rtwdev
);
362 rtw_wow_pattern_write(rtwdev
);
363 rtw_wow_fw_security_type(rtwdev
);
364 rtw_fw_set_disconnect_decision_cmd(rtwdev
, true);
365 rtw_fw_set_keep_alive_cmd(rtwdev
, true);
366 } else if (rtw_wow_no_link(rtwdev
)) {
367 rtw_fw_set_nlo_info(rtwdev
, true);
368 rtw_fw_update_pkt_probe_req(rtwdev
, NULL
);
369 rtw_fw_channel_switch(rtwdev
, true);
372 rtw_fw_set_wowlan_ctrl_cmd(rtwdev
, true);
373 rtw_fw_set_remote_wake_ctrl_cmd(rtwdev
, true);
375 return rtw_wow_check_fw_status(rtwdev
, true);
378 static int rtw_wow_fw_stop(struct rtw_dev
*rtwdev
)
380 if (rtw_wow_mgd_linked(rtwdev
)) {
381 rtw_fw_set_disconnect_decision_cmd(rtwdev
, false);
382 rtw_fw_set_keep_alive_cmd(rtwdev
, false);
383 rtw_wow_pattern_clear(rtwdev
);
384 } else if (rtw_wow_no_link(rtwdev
)) {
385 rtw_fw_channel_switch(rtwdev
, false);
386 rtw_fw_set_nlo_info(rtwdev
, false);
389 rtw_fw_set_wowlan_ctrl_cmd(rtwdev
, false);
390 rtw_fw_set_remote_wake_ctrl_cmd(rtwdev
, false);
392 return rtw_wow_check_fw_status(rtwdev
, false);
395 static void rtw_wow_avoid_reset_mac(struct rtw_dev
*rtwdev
)
397 /* When resuming from wowlan mode, some hosts issue signal
398 * (PCIE: PREST, USB: SE0RST) to device, and lead to reset
399 * mac core. If it happens, the connection to AP will be lost.
400 * Setting REG_RSV_CTRL Register can avoid this process.
402 switch (rtw_hci_type(rtwdev
)) {
403 case RTW_HCI_TYPE_PCIE
:
404 case RTW_HCI_TYPE_USB
:
405 rtw_write8(rtwdev
, REG_RSV_CTRL
, BIT_WLOCK_1C_B6
);
406 rtw_write8(rtwdev
, REG_RSV_CTRL
,
407 BIT_WLOCK_1C_B6
| BIT_R_DIS_PRST
);
410 rtw_warn(rtwdev
, "Unsupported hci type to disable reset MAC\n");
415 static void rtw_wow_fw_media_status_iter(void *data
, struct ieee80211_sta
*sta
)
417 struct rtw_sta_info
*si
= (struct rtw_sta_info
*)sta
->drv_priv
;
418 struct rtw_fw_media_status_iter_data
*iter_data
= data
;
419 struct rtw_dev
*rtwdev
= iter_data
->rtwdev
;
421 rtw_fw_media_status_report(rtwdev
, si
->mac_id
, iter_data
->connect
);
424 static void rtw_wow_fw_media_status(struct rtw_dev
*rtwdev
, bool connect
)
426 struct rtw_fw_media_status_iter_data data
;
428 data
.rtwdev
= rtwdev
;
429 data
.connect
= connect
;
431 rtw_iterate_stas_atomic(rtwdev
, rtw_wow_fw_media_status_iter
, &data
);
434 static void rtw_wow_config_pno_rsvd_page(struct rtw_dev
*rtwdev
,
435 struct rtw_vif
*rtwvif
)
437 rtw_add_rsvd_page_pno(rtwdev
, rtwvif
);
440 static void rtw_wow_config_linked_rsvd_page(struct rtw_dev
*rtwdev
,
441 struct rtw_vif
*rtwvif
)
443 rtw_add_rsvd_page_sta(rtwdev
, rtwvif
);
446 static void rtw_wow_config_rsvd_page(struct rtw_dev
*rtwdev
,
447 struct rtw_vif
*rtwvif
)
449 rtw_remove_rsvd_page(rtwdev
, rtwvif
);
451 if (rtw_wow_mgd_linked(rtwdev
)) {
452 rtw_wow_config_linked_rsvd_page(rtwdev
, rtwvif
);
453 } else if (test_bit(RTW_FLAG_WOWLAN
, rtwdev
->flags
) &&
454 rtw_wow_no_link(rtwdev
)) {
455 rtw_wow_config_pno_rsvd_page(rtwdev
, rtwvif
);
459 static int rtw_wow_dl_fw_rsvd_page(struct rtw_dev
*rtwdev
)
461 struct ieee80211_vif
*wow_vif
= rtwdev
->wow
.wow_vif
;
462 struct rtw_vif
*rtwvif
= (struct rtw_vif
*)wow_vif
->drv_priv
;
464 rtw_wow_config_rsvd_page(rtwdev
, rtwvif
);
466 return rtw_fw_download_rsvd_page(rtwdev
);
469 static int rtw_wow_swap_fw(struct rtw_dev
*rtwdev
, enum rtw_fw_type type
)
471 struct rtw_fw_state
*fw
;
476 fw
= &rtwdev
->wow_fw
;
484 rtw_warn(rtwdev
, "unsupported firmware type to swap\n");
488 ret
= rtw_download_firmware(rtwdev
, fw
);
492 rtw_fw_send_general_info(rtwdev
);
493 rtw_fw_send_phydm_info(rtwdev
);
494 rtw_wow_fw_media_status(rtwdev
, true);
500 static void rtw_wow_check_pno(struct rtw_dev
*rtwdev
,
501 struct cfg80211_sched_scan_request
*nd_config
)
503 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
504 struct rtw_pno_request
*pno_req
= &rtw_wow
->pno_req
;
505 struct ieee80211_channel
*channel
;
508 if (!nd_config
->n_match_sets
|| !nd_config
->n_channels
)
511 pno_req
->match_set_cnt
= nd_config
->n_match_sets
;
512 size
= sizeof(*pno_req
->match_sets
) * pno_req
->match_set_cnt
;
513 pno_req
->match_sets
= kmemdup(nd_config
->match_sets
, size
, GFP_KERNEL
);
514 if (!pno_req
->match_sets
)
517 pno_req
->channel_cnt
= nd_config
->n_channels
;
518 size
= sizeof(*nd_config
->channels
[0]) * nd_config
->n_channels
;
519 pno_req
->channels
= kmalloc(size
, GFP_KERNEL
);
520 if (!pno_req
->channels
)
523 for (i
= 0 ; i
< pno_req
->channel_cnt
; i
++) {
524 channel
= pno_req
->channels
+ i
;
525 memcpy(channel
, nd_config
->channels
[i
], sizeof(*channel
));
528 pno_req
->scan_plan
= *nd_config
->scan_plans
;
529 pno_req
->inited
= true;
531 rtw_dbg(rtwdev
, RTW_DBG_WOW
, "WOW: net-detect is enabled\n");
536 kfree(pno_req
->match_sets
);
539 rtw_dbg(rtwdev
, RTW_DBG_WOW
, "WOW: net-detect is disabled\n");
542 static int rtw_wow_leave_linked_ps(struct rtw_dev
*rtwdev
)
544 if (!test_bit(RTW_FLAG_WOWLAN
, rtwdev
->flags
))
545 cancel_delayed_work_sync(&rtwdev
->watch_dog_work
);
547 rtw_leave_lps(rtwdev
);
552 static int rtw_wow_leave_no_link_ps(struct rtw_dev
*rtwdev
)
554 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
557 if (test_bit(RTW_FLAG_WOWLAN
, rtwdev
->flags
)) {
558 if (rtw_fw_lps_deep_mode
)
559 rtw_leave_lps_deep(rtwdev
);
561 if (test_bit(RTW_FLAG_INACTIVE_PS
, rtwdev
->flags
)) {
562 rtw_wow
->ips_enabled
= true;
563 ret
= rtw_leave_ips(rtwdev
);
572 static int rtw_wow_leave_ps(struct rtw_dev
*rtwdev
)
576 if (rtw_wow_mgd_linked(rtwdev
))
577 ret
= rtw_wow_leave_linked_ps(rtwdev
);
578 else if (rtw_wow_no_link(rtwdev
))
579 ret
= rtw_wow_leave_no_link_ps(rtwdev
);
584 static int rtw_wow_restore_ps(struct rtw_dev
*rtwdev
)
588 if (rtw_wow_no_link(rtwdev
) && rtwdev
->wow
.ips_enabled
)
589 ret
= rtw_enter_ips(rtwdev
);
594 static int rtw_wow_enter_linked_ps(struct rtw_dev
*rtwdev
)
596 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
597 struct ieee80211_vif
*wow_vif
= rtw_wow
->wow_vif
;
598 struct rtw_vif
*rtwvif
= (struct rtw_vif
*)wow_vif
->drv_priv
;
600 rtw_enter_lps(rtwdev
, rtwvif
->port
);
605 static int rtw_wow_enter_no_link_ps(struct rtw_dev
*rtwdev
)
607 /* firmware enters deep ps by itself if supported */
608 set_bit(RTW_FLAG_LEISURE_PS_DEEP
, rtwdev
->flags
);
613 static int rtw_wow_enter_ps(struct rtw_dev
*rtwdev
)
617 if (rtw_wow_mgd_linked(rtwdev
))
618 ret
= rtw_wow_enter_linked_ps(rtwdev
);
619 else if (rtw_wow_no_link(rtwdev
) && rtw_fw_lps_deep_mode
)
620 ret
= rtw_wow_enter_no_link_ps(rtwdev
);
625 static void rtw_wow_stop_trx(struct rtw_dev
*rtwdev
)
627 rtw_wow_bb_stop(rtwdev
);
628 rtw_wow_rx_dma_stop(rtwdev
);
631 static int rtw_wow_start(struct rtw_dev
*rtwdev
)
635 ret
= rtw_wow_fw_start(rtwdev
);
639 rtw_hci_stop(rtwdev
);
640 rtw_wow_bb_start(rtwdev
);
641 rtw_wow_avoid_reset_mac(rtwdev
);
647 static int rtw_wow_enable(struct rtw_dev
*rtwdev
)
651 rtw_wow_stop_trx(rtwdev
);
653 ret
= rtw_wow_swap_fw(rtwdev
, RTW_WOWLAN_FW
);
655 rtw_err(rtwdev
, "failed to swap wow fw\n");
659 set_bit(RTW_FLAG_WOWLAN
, rtwdev
->flags
);
661 ret
= rtw_wow_dl_fw_rsvd_page(rtwdev
);
663 rtw_err(rtwdev
, "failed to download wowlan rsvd page\n");
667 ret
= rtw_wow_start(rtwdev
);
669 rtw_err(rtwdev
, "failed to start wow\n");
676 clear_bit(RTW_FLAG_WOWLAN
, rtwdev
->flags
);
680 static int rtw_wow_stop(struct rtw_dev
*rtwdev
)
684 /* some HCI related registers will be reset after resume,
685 * need to set them again.
687 ret
= rtw_hci_setup(rtwdev
);
689 rtw_err(rtwdev
, "failed to setup hci\n");
693 ret
= rtw_hci_start(rtwdev
);
695 rtw_err(rtwdev
, "failed to start hci\n");
699 ret
= rtw_wow_fw_stop(rtwdev
);
701 rtw_err(rtwdev
, "failed to stop wowlan fw\n");
703 rtw_wow_bb_stop(rtwdev
);
708 static void rtw_wow_resume_trx(struct rtw_dev
*rtwdev
)
710 rtw_wow_rx_dma_start(rtwdev
);
711 rtw_wow_bb_start(rtwdev
);
712 ieee80211_queue_delayed_work(rtwdev
->hw
, &rtwdev
->watch_dog_work
,
713 RTW_WATCH_DOG_DELAY_TIME
);
716 static int rtw_wow_disable(struct rtw_dev
*rtwdev
)
720 clear_bit(RTW_FLAG_WOWLAN
, rtwdev
->flags
);
722 ret
= rtw_wow_stop(rtwdev
);
724 rtw_err(rtwdev
, "failed to stop wow\n");
728 ret
= rtw_wow_swap_fw(rtwdev
, RTW_NORMAL_FW
);
730 rtw_err(rtwdev
, "failed to swap normal fw\n");
734 ret
= rtw_wow_dl_fw_rsvd_page(rtwdev
);
736 rtw_err(rtwdev
, "failed to download normal rsvd page\n");
739 rtw_wow_resume_trx(rtwdev
);
743 static void rtw_wow_vif_iter(void *data
, u8
*mac
, struct ieee80211_vif
*vif
)
745 struct rtw_dev
*rtwdev
= data
;
746 struct rtw_vif
*rtwvif
= (struct rtw_vif
*)vif
->drv_priv
;
747 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
749 /* Current wowlan function support setting of only one STATION vif.
750 * So when one suitable vif is found, stop the iteration.
752 if (rtw_wow
->wow_vif
|| vif
->type
!= NL80211_IFTYPE_STATION
)
755 switch (rtwvif
->net_type
) {
756 case RTW_NET_MGD_LINKED
:
757 rtw_wow
->wow_vif
= vif
;
759 case RTW_NET_NO_LINK
:
760 if (rtw_wow
->pno_req
.inited
)
761 rtwdev
->wow
.wow_vif
= vif
;
768 static int rtw_wow_set_wakeups(struct rtw_dev
*rtwdev
,
769 struct cfg80211_wowlan
*wowlan
)
771 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
772 struct rtw_wow_pattern
*rtw_patterns
= rtw_wow
->patterns
;
773 struct rtw_vif
*rtwvif
;
776 if (wowlan
->disconnect
)
777 set_bit(RTW_WOW_FLAG_EN_DISCONNECT
, rtw_wow
->flags
);
778 if (wowlan
->magic_pkt
)
779 set_bit(RTW_WOW_FLAG_EN_MAGIC_PKT
, rtw_wow
->flags
);
780 if (wowlan
->gtk_rekey_failure
)
781 set_bit(RTW_WOW_FLAG_EN_REKEY_PKT
, rtw_wow
->flags
);
783 if (wowlan
->nd_config
)
784 rtw_wow_check_pno(rtwdev
, wowlan
->nd_config
);
786 rtw_iterate_vifs_atomic(rtwdev
, rtw_wow_vif_iter
, rtwdev
);
787 if (!rtw_wow
->wow_vif
)
790 rtwvif
= (struct rtw_vif
*)rtw_wow
->wow_vif
->drv_priv
;
791 if (wowlan
->n_patterns
&& wowlan
->patterns
) {
792 rtw_wow
->pattern_cnt
= wowlan
->n_patterns
;
793 for (i
= 0; i
< wowlan
->n_patterns
; i
++)
794 rtw_wow_pattern_generate(rtwdev
, rtwvif
,
795 wowlan
->patterns
+ i
,
802 static void rtw_wow_clear_wakeups(struct rtw_dev
*rtwdev
)
804 struct rtw_wow_param
*rtw_wow
= &rtwdev
->wow
;
805 struct rtw_pno_request
*pno_req
= &rtw_wow
->pno_req
;
807 if (pno_req
->inited
) {
808 kfree(pno_req
->channels
);
809 kfree(pno_req
->match_sets
);
812 memset(rtw_wow
, 0, sizeof(rtwdev
->wow
));
815 int rtw_wow_suspend(struct rtw_dev
*rtwdev
, struct cfg80211_wowlan
*wowlan
)
819 ret
= rtw_wow_set_wakeups(rtwdev
, wowlan
);
821 rtw_err(rtwdev
, "failed to set wakeup event\n");
825 ret
= rtw_wow_leave_ps(rtwdev
);
827 rtw_err(rtwdev
, "failed to leave ps from normal mode\n");
831 ret
= rtw_wow_enable(rtwdev
);
833 rtw_err(rtwdev
, "failed to enable wow\n");
834 rtw_wow_restore_ps(rtwdev
);
838 ret
= rtw_wow_enter_ps(rtwdev
);
840 rtw_err(rtwdev
, "failed to enter ps for wow\n");
846 int rtw_wow_resume(struct rtw_dev
*rtwdev
)
850 /* If wowlan mode is not enabled, do nothing */
851 if (!test_bit(RTW_FLAG_WOWLAN
, rtwdev
->flags
)) {
852 rtw_err(rtwdev
, "wow is not enabled\n");
857 ret
= rtw_wow_leave_ps(rtwdev
);
859 rtw_err(rtwdev
, "failed to leave ps from wowlan mode\n");
863 rtw_wow_show_wakeup_reason(rtwdev
);
865 ret
= rtw_wow_disable(rtwdev
);
867 rtw_err(rtwdev
, "failed to disable wow\n");
871 ret
= rtw_wow_restore_ps(rtwdev
);
873 rtw_err(rtwdev
, "failed to restore ps to normal mode\n");
876 rtw_wow_clear_wakeups(rtwdev
);