2009-01-19 09:20:53 -07:00
|
|
|
#include <net/mac80211.h>
|
|
|
|
#include <net/rtnetlink.h>
|
|
|
|
|
|
|
|
#include "ieee80211_i.h"
|
2009-05-17 03:40:42 -06:00
|
|
|
#include "mesh.h"
|
2009-04-23 10:52:52 -06:00
|
|
|
#include "driver-ops.h"
|
2009-01-19 09:20:53 -07:00
|
|
|
#include "led.h"
|
|
|
|
|
2011-05-04 07:37:29 -06:00
|
|
|
int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
|
2009-01-19 09:20:53 -07:00
|
|
|
{
|
|
|
|
struct ieee80211_local *local = hw_to_local(hw);
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
struct sta_info *sta;
|
|
|
|
|
2011-07-14 08:48:54 -06:00
|
|
|
if (!local->open_count)
|
|
|
|
goto suspend;
|
|
|
|
|
2010-10-06 03:22:10 -06:00
|
|
|
ieee80211_scan_cancel(local);
|
2009-05-17 03:40:42 -06:00
|
|
|
|
2013-02-08 10:16:20 -07:00
|
|
|
ieee80211_dfs_cac_cancel(local);
|
|
|
|
|
2011-04-21 05:38:00 -06:00
|
|
|
if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
|
|
|
|
mutex_lock(&local->sta_mtx);
|
|
|
|
list_for_each_entry(sta, &local->sta_list, list) {
|
2011-09-29 08:04:36 -06:00
|
|
|
set_sta_flag(sta, WLAN_STA_BLOCK_BA);
|
2012-07-18 05:31:31 -06:00
|
|
|
ieee80211_sta_tear_down_BA_sessions(
|
|
|
|
sta, AGG_STOP_LOCAL_REQUEST);
|
2011-04-21 05:38:00 -06:00
|
|
|
}
|
|
|
|
mutex_unlock(&local->sta_mtx);
|
|
|
|
}
|
|
|
|
|
2009-03-13 04:43:36 -06:00
|
|
|
ieee80211_stop_queues_by_reason(hw,
|
|
|
|
IEEE80211_QUEUE_STOP_REASON_SUSPEND);
|
|
|
|
|
2009-05-17 03:40:42 -06:00
|
|
|
/* flush out all packets */
|
|
|
|
synchronize_net();
|
|
|
|
|
2011-04-21 05:38:00 -06:00
|
|
|
drv_flush(local, false);
|
|
|
|
|
2009-05-17 03:40:42 -06:00
|
|
|
local->quiescing = true;
|
|
|
|
/* make quiescing visible to timers everywhere */
|
|
|
|
mb();
|
|
|
|
|
2009-07-29 18:08:07 -06:00
|
|
|
flush_workqueue(local->workqueue);
|
2009-01-19 09:20:53 -07:00
|
|
|
|
2009-05-17 03:40:42 -06:00
|
|
|
/* Don't try to run timers while suspended. */
|
|
|
|
del_timer_sync(&local->sta_cleanup);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note that this particular timer doesn't need to be
|
|
|
|
* restarted at resume.
|
|
|
|
*/
|
|
|
|
cancel_work_sync(&local->dynamic_ps_enable_work);
|
|
|
|
del_timer_sync(&local->dynamic_ps_timer);
|
|
|
|
|
2011-05-04 07:37:29 -06:00
|
|
|
local->wowlan = wowlan && local->open_count;
|
|
|
|
if (local->wowlan) {
|
|
|
|
int err = drv_suspend(local, wowlan);
|
2011-07-01 16:02:01 -06:00
|
|
|
if (err < 0) {
|
2011-05-04 07:37:29 -06:00
|
|
|
local->quiescing = false;
|
2012-05-31 04:34:47 -06:00
|
|
|
local->wowlan = false;
|
2012-06-20 04:10:14 -06:00
|
|
|
if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
|
|
|
|
mutex_lock(&local->sta_mtx);
|
|
|
|
list_for_each_entry(sta,
|
|
|
|
&local->sta_list, list) {
|
|
|
|
clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
|
|
|
|
}
|
|
|
|
mutex_unlock(&local->sta_mtx);
|
|
|
|
}
|
|
|
|
ieee80211_wake_queues_by_reason(hw,
|
|
|
|
IEEE80211_QUEUE_STOP_REASON_SUSPEND);
|
2011-05-04 07:37:29 -06:00
|
|
|
return err;
|
2011-07-01 16:02:01 -06:00
|
|
|
} else if (err > 0) {
|
|
|
|
WARN_ON(err != 1);
|
2013-02-28 02:55:25 -07:00
|
|
|
return err;
|
2011-07-01 16:02:01 -06:00
|
|
|
} else {
|
|
|
|
goto suspend;
|
2011-05-04 07:37:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-10 02:21:29 -06:00
|
|
|
/* tear down aggregation sessions and remove STAs */
|
|
|
|
mutex_lock(&local->sta_mtx);
|
|
|
|
list_for_each_entry(sta, &local->sta_list, list) {
|
2012-01-20 05:55:21 -07:00
|
|
|
if (sta->uploaded) {
|
|
|
|
enum ieee80211_sta_state state;
|
|
|
|
|
|
|
|
state = sta->sta_state;
|
|
|
|
for (; state > IEEE80211_STA_NOTEXIST; state--)
|
2012-02-22 18:17:48 -07:00
|
|
|
WARN_ON(drv_sta_state(local, sta->sdata, sta,
|
2012-01-20 05:55:21 -07:00
|
|
|
state, state - 1));
|
|
|
|
}
|
2009-01-19 09:20:53 -07:00
|
|
|
}
|
2010-02-03 05:59:58 -07:00
|
|
|
mutex_unlock(&local->sta_mtx);
|
2009-01-19 09:20:53 -07:00
|
|
|
|
|
|
|
/* remove all interfaces */
|
|
|
|
list_for_each_entry(sdata, &local->interfaces, list) {
|
2012-12-13 08:47:42 -07:00
|
|
|
if (!ieee80211_sdata_running(sdata))
|
2009-05-17 03:40:42 -06:00
|
|
|
continue;
|
2011-11-03 07:41:13 -06:00
|
|
|
drv_remove_interface(local, sdata);
|
2009-01-19 09:20:53 -07:00
|
|
|
}
|
2009-05-17 03:40:42 -06:00
|
|
|
|
2012-04-03 06:35:57 -06:00
|
|
|
sdata = rtnl_dereference(local->monitor_sdata);
|
2013-02-28 02:55:26 -07:00
|
|
|
if (sdata)
|
2012-04-03 06:35:57 -06:00
|
|
|
drv_remove_interface(local, sdata);
|
2012-11-19 14:19:08 -07:00
|
|
|
|
2013-02-28 02:55:26 -07:00
|
|
|
/*
|
|
|
|
* We disconnected on all interfaces before suspend, all channel
|
|
|
|
* contexts should be released.
|
|
|
|
*/
|
|
|
|
WARN_ON(!list_empty(&local->chanctx_list));
|
2012-04-03 06:35:57 -06:00
|
|
|
|
2009-07-28 10:10:17 -06:00
|
|
|
/* stop hardware - this must stop RX */
|
2009-08-20 12:02:20 -06:00
|
|
|
if (local->open_count)
|
|
|
|
ieee80211_stop_device(local);
|
2009-07-28 10:10:17 -06:00
|
|
|
|
2011-05-04 07:37:29 -06:00
|
|
|
suspend:
|
2009-05-17 03:40:42 -06:00
|
|
|
local->suspended = true;
|
2009-07-28 10:10:17 -06:00
|
|
|
/* need suspended to be visible before quiescing is false */
|
|
|
|
barrier();
|
2009-05-17 03:40:42 -06:00
|
|
|
local->quiescing = false;
|
|
|
|
|
2009-01-19 09:20:53 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-14 02:09:24 -06:00
|
|
|
/*
|
|
|
|
* __ieee80211_resume() is a static inline which just calls
|
|
|
|
* ieee80211_reconfig(), which is also needed for hardware
|
|
|
|
* hang/firmware failure/etc. recovery.
|
|
|
|
*/
|
2013-01-22 04:34:29 -07:00
|
|
|
|
|
|
|
void ieee80211_report_wowlan_wakeup(struct ieee80211_vif *vif,
|
|
|
|
struct cfg80211_wowlan_wakeup *wakeup,
|
|
|
|
gfp_t gfp)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
|
|
|
|
|
|
|
|
cfg80211_report_wowlan_wakeup(&sdata->wdev, wakeup, gfp);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(ieee80211_report_wowlan_wakeup);
|