wlcore: enable AP wowlan

configure wowlan when host is suspended in AP mode,
since the FW can now wake the host up on Rx.

Signed-off-by: Kobi Leibovitch <kobi.lev100@gmail.com>
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Eliad Peller 2014-12-29 08:24:05 +02:00 committed by Kalle Valo
parent 6d5a748d48
commit b8714d1b6a
1 changed files with 13 additions and 5 deletions

View File

@ -1707,7 +1707,8 @@ static int wl1271_configure_suspend_sta(struct wl1271 *wl,
} }
static int wl1271_configure_suspend_ap(struct wl1271 *wl, static int wl1271_configure_suspend_ap(struct wl1271 *wl,
struct wl12xx_vif *wlvif) struct wl12xx_vif *wlvif,
struct cfg80211_wowlan *wow)
{ {
int ret = 0; int ret = 0;
@ -1715,6 +1716,12 @@ static int wl1271_configure_suspend_ap(struct wl1271 *wl,
goto out; goto out;
ret = wl1271_acx_beacon_filter_opt(wl, wlvif, true); ret = wl1271_acx_beacon_filter_opt(wl, wlvif, true);
if (ret < 0)
goto out;
ret = wl1271_configure_wowlan(wl, wow);
if (ret < 0)
goto out;
out: out:
return ret; return ret;
@ -1728,7 +1735,7 @@ static int wl1271_configure_suspend(struct wl1271 *wl,
if (wlvif->bss_type == BSS_TYPE_STA_BSS) if (wlvif->bss_type == BSS_TYPE_STA_BSS)
return wl1271_configure_suspend_sta(wl, wlvif, wow); return wl1271_configure_suspend_sta(wl, wlvif, wow);
if (wlvif->bss_type == BSS_TYPE_AP_BSS) if (wlvif->bss_type == BSS_TYPE_AP_BSS)
return wl1271_configure_suspend_ap(wl, wlvif); return wl1271_configure_suspend_ap(wl, wlvif, wow);
return 0; return 0;
} }
@ -1741,12 +1748,13 @@ static void wl1271_configure_resume(struct wl1271 *wl, struct wl12xx_vif *wlvif)
if ((!is_ap) && (!is_sta)) if ((!is_ap) && (!is_sta))
return; return;
if (is_sta && !test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) if ((is_sta && !test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) ||
(is_ap && !test_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags)))
return; return;
if (is_sta) { wl1271_configure_wowlan(wl, NULL);
wl1271_configure_wowlan(wl, NULL);
if (is_sta) {
if ((wl->conf.conn.suspend_wake_up_event == if ((wl->conf.conn.suspend_wake_up_event ==
wl->conf.conn.wake_up_event) && wl->conf.conn.wake_up_event) &&
(wl->conf.conn.suspend_listen_interval == (wl->conf.conn.suspend_listen_interval ==