Lines Matching full:wow

1906 			  struct cfg80211_wowlan *wow, u32 *filter)  in ath6kl_wow_usr()  argument
1913 for (i = 0; i < wow->n_patterns; i++) { in ath6kl_wow_usr()
1923 for (pos = 0; pos < wow->patterns[i].pattern_len; pos++) { in ath6kl_wow_usr()
1924 if (wow->patterns[i].mask[pos / 8] & (0x1 << (pos % 8))) in ath6kl_wow_usr()
1930 * to the firmware. It means, given WOW patterns are always in ath6kl_wow_usr()
1935 wow->patterns[i].pattern_len, in ath6kl_wow_usr()
1937 wow->patterns[i].pattern, mask); in ath6kl_wow_usr()
1942 if (wow->disconnect) in ath6kl_wow_usr()
1945 if (wow->magic_pkt) in ath6kl_wow_usr()
1948 if (wow->gtk_rekey_failure) in ath6kl_wow_usr()
1951 if (wow->eap_identity_req) in ath6kl_wow_usr()
1954 if (wow->four_way_handshake) in ath6kl_wow_usr()
1998 ath6kl_err("failed to add WOW unicast IP pattern\n"); in ath6kl_wow_ap()
2008 ath6kl_err("failed to add WOW ARP pattern\n"); in ath6kl_wow_ap()
2021 ath6kl_err("failed to add WOW mDNS/SSDP/LLMNR pattern\n"); in ath6kl_wow_ap()
2031 ath6kl_err("failed to add WOW DHCP broadcast pattern\n"); in ath6kl_wow_ap()
2054 ath6kl_err("failed to add WOW unicast pattern\n"); in ath6kl_wow_sta()
2069 ath6kl_err("failed to add WOW mDNS/SSDP/LLMNR pattern\n"); in ath6kl_wow_sta()
2127 struct cfg80211_wowlan *wow, u32 *filter) in ath6kl_wow_suspend_vif() argument
2146 /* Clear existing WOW patterns */ in ath6kl_wow_suspend_vif()
2152 * Skip the default WOW pattern configuration in ath6kl_wow_suspend_vif()
2153 * if the driver receives any WOW patterns from in ath6kl_wow_suspend_vif()
2156 if (wow) in ath6kl_wow_suspend_vif()
2157 ret = ath6kl_wow_usr(ar, vif, wow, filter); in ath6kl_wow_suspend_vif()
2221 static int ath6kl_wow_suspend(struct ath6kl *ar, struct cfg80211_wowlan *wow) in ath6kl_wow_suspend() argument
2228 /* enter / leave wow suspend on first vif always */ in ath6kl_wow_suspend()
2234 if (wow && (wow->n_patterns > WOW_MAX_FILTERS_PER_LIST)) in ath6kl_wow_suspend()
2245 ret = ath6kl_wow_suspend_vif(vif, wow, &filter); in ath6kl_wow_suspend()
2319 ath6kl_warn("Failed to configure host sleep mode for wow resume: %d\n", in ath6kl_wow_resume()
2369 /* Disable WOW mode */ in ath6kl_cfg80211_deepsleep_suspend()
2421 struct cfg80211_wowlan *wow) in ath6kl_cfg80211_suspend() argument
2430 ath6kl_dbg(ATH6KL_DBG_SUSPEND, "wow mode suspend\n"); in ath6kl_cfg80211_suspend()
2437 ret = ath6kl_wow_suspend(ar, wow); in ath6kl_cfg80211_suspend()
2499 ath6kl_dbg(ATH6KL_DBG_SUSPEND, "wow mode resume\n"); in ath6kl_cfg80211_resume()
2503 ath6kl_warn("wow mode resume failed: %d\n", ret); in ath6kl_cfg80211_resume()
2541 struct cfg80211_wowlan *wow) in __ath6kl_cfg80211_suspend() argument
2547 return ath6kl_hif_suspend(ar, wow); in __ath6kl_cfg80211_suspend()
2565 * FIXME: WOW suspend mode is selected if the host sdio controller supports
2567 * wake up the host when WOW pattern matches. This causes sdio irq handler
2573 * In the current scenario, WOW resume should happen before start processing
2574 * any data from the target. So It's required to perform WOW resume in RX path.
2575 * Ideally we should perform WOW resume only in the actual platform
2576 * resume path. This area needs bit rework to avoid WOW resume in RX path.