2009-01-19 16:20:53 +00:00
|
|
|
#include <net/mac80211.h>
|
|
|
|
#include <net/rtnetlink.h>
|
|
|
|
|
|
|
|
#include "ieee80211_i.h"
|
2009-05-17 09:40:42 +00:00
|
|
|
#include "mesh.h"
|
2009-04-23 16:52:52 +00:00
|
|
|
#include "driver-ops.h"
|
2009-01-19 16:20:53 +00:00
|
|
|
#include "led.h"
|
|
|
|
|
2011-06-16 08:49:33 +00:00
|
|
|
/* return value indicates whether the driver should be further notified */
|
|
|
|
static bool ieee80211_quiesce(struct ieee80211_sub_if_data *sdata)
|
|
|
|
{
|
|
|
|
switch (sdata->vif.type) {
|
|
|
|
case NL80211_IFTYPE_STATION:
|
|
|
|
ieee80211_sta_quiesce(sdata);
|
|
|
|
return true;
|
|
|
|
case NL80211_IFTYPE_ADHOC:
|
|
|
|
ieee80211_ibss_quiesce(sdata);
|
|
|
|
return true;
|
|
|
|
case NL80211_IFTYPE_MESH_POINT:
|
|
|
|
ieee80211_mesh_quiesce(sdata);
|
|
|
|
return true;
|
|
|
|
case NL80211_IFTYPE_AP_VLAN:
|
|
|
|
case NL80211_IFTYPE_MONITOR:
|
|
|
|
/* don't tell driver about this */
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-04 13:37:29 +00:00
|
|
|
int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
|
2009-01-19 16:20:53 +00:00
|
|
|
{
|
|
|
|
struct ieee80211_local *local = hw_to_local(hw);
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
struct sta_info *sta;
|
|
|
|
|
2011-07-14 14:48:54 +00:00
|
|
|
if (!local->open_count)
|
|
|
|
goto suspend;
|
|
|
|
|
2010-10-06 09:22:10 +00:00
|
|
|
ieee80211_scan_cancel(local);
|
2009-05-17 09:40:42 +00:00
|
|
|
|
2011-04-21 11:38:00 +00: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 14:04:36 +00:00
|
|
|
set_sta_flag(sta, WLAN_STA_BLOCK_BA);
|
2011-04-21 11:38:00 +00:00
|
|
|
ieee80211_sta_tear_down_BA_sessions(sta, true);
|
|
|
|
}
|
|
|
|
mutex_unlock(&local->sta_mtx);
|
|
|
|
}
|
|
|
|
|
2009-03-13 10:43:36 +00:00
|
|
|
ieee80211_stop_queues_by_reason(hw,
|
|
|
|
IEEE80211_QUEUE_STOP_REASON_SUSPEND);
|
|
|
|
|
2009-05-17 09:40:42 +00:00
|
|
|
/* flush out all packets */
|
|
|
|
synchronize_net();
|
|
|
|
|
2011-04-21 11:38:00 +00:00
|
|
|
drv_flush(local, false);
|
|
|
|
|
2009-05-17 09:40:42 +00:00
|
|
|
local->quiescing = true;
|
|
|
|
/* make quiescing visible to timers everywhere */
|
|
|
|
mb();
|
|
|
|
|
2009-07-30 00:08:07 +00:00
|
|
|
flush_workqueue(local->workqueue);
|
2009-01-19 16:20:53 +00:00
|
|
|
|
2009-05-17 09:40:42 +00: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 13:37:29 +00:00
|
|
|
local->wowlan = wowlan && local->open_count;
|
|
|
|
if (local->wowlan) {
|
|
|
|
int err = drv_suspend(local, wowlan);
|
2011-07-01 22:02:01 +00:00
|
|
|
if (err < 0) {
|
2011-05-04 13:37:29 +00:00
|
|
|
local->quiescing = false;
|
|
|
|
return err;
|
2011-07-01 22:02:01 +00:00
|
|
|
} else if (err > 0) {
|
|
|
|
WARN_ON(err != 1);
|
|
|
|
local->wowlan = false;
|
|
|
|
} else {
|
|
|
|
list_for_each_entry(sdata, &local->interfaces, list) {
|
|
|
|
cancel_work_sync(&sdata->work);
|
|
|
|
ieee80211_quiesce(sdata);
|
|
|
|
}
|
|
|
|
goto suspend;
|
2011-05-04 13:37:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-19 16:20:53 +00:00
|
|
|
/* disable keys */
|
|
|
|
list_for_each_entry(sdata, &local->interfaces, list)
|
|
|
|
ieee80211_disable_keys(sdata);
|
|
|
|
|
2010-06-10 08:21:29 +00:00
|
|
|
/* tear down aggregation sessions and remove STAs */
|
|
|
|
mutex_lock(&local->sta_mtx);
|
|
|
|
list_for_each_entry(sta, &local->sta_list, list) {
|
2010-02-03 12:59:58 +00:00
|
|
|
if (sta->uploaded) {
|
2009-05-17 09:40:42 +00:00
|
|
|
sdata = sta->sdata;
|
2009-01-19 16:20:53 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
|
|
|
|
sdata = container_of(sdata->bss,
|
|
|
|
struct ieee80211_sub_if_data,
|
|
|
|
u.ap);
|
|
|
|
|
2010-02-03 12:59:58 +00:00
|
|
|
drv_sta_remove(local, sdata, &sta->sta);
|
2009-01-19 16:20:53 +00:00
|
|
|
}
|
2009-05-17 09:40:42 +00:00
|
|
|
|
|
|
|
mesh_plink_quiesce(sta);
|
2009-01-19 16:20:53 +00:00
|
|
|
}
|
2010-02-03 12:59:58 +00:00
|
|
|
mutex_unlock(&local->sta_mtx);
|
2009-01-19 16:20:53 +00:00
|
|
|
|
|
|
|
/* remove all interfaces */
|
|
|
|
list_for_each_entry(sdata, &local->interfaces, list) {
|
2010-06-10 08:21:31 +00:00
|
|
|
cancel_work_sync(&sdata->work);
|
|
|
|
|
2011-06-16 08:49:33 +00:00
|
|
|
if (!ieee80211_quiesce(sdata))
|
2009-05-17 09:40:42 +00:00
|
|
|
continue;
|
2009-01-19 16:20:53 +00:00
|
|
|
|
2009-12-23 12:15:31 +00:00
|
|
|
if (!ieee80211_sdata_running(sdata))
|
2009-05-17 09:40:42 +00:00
|
|
|
continue;
|
2009-01-24 18:21:14 +00:00
|
|
|
|
2009-07-29 08:13:03 +00:00
|
|
|
/* disable beaconing */
|
|
|
|
ieee80211_bss_info_change_notify(sdata,
|
|
|
|
BSS_CHANGED_BEACON_ENABLED);
|
|
|
|
|
2011-11-03 13:41:13 +00:00
|
|
|
drv_remove_interface(local, sdata);
|
2009-01-19 16:20:53 +00:00
|
|
|
}
|
2009-05-17 09:40:42 +00:00
|
|
|
|
2009-07-28 16:10:17 +00:00
|
|
|
/* stop hardware - this must stop RX */
|
2009-08-20 18:02:20 +00:00
|
|
|
if (local->open_count)
|
|
|
|
ieee80211_stop_device(local);
|
2009-07-28 16:10:17 +00:00
|
|
|
|
2011-05-04 13:37:29 +00:00
|
|
|
suspend:
|
2009-05-17 09:40:42 +00:00
|
|
|
local->suspended = true;
|
2009-07-28 16:10:17 +00:00
|
|
|
/* need suspended to be visible before quiescing is false */
|
|
|
|
barrier();
|
2009-05-17 09:40:42 +00:00
|
|
|
local->quiescing = false;
|
|
|
|
|
2009-01-19 16:20:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-14 08:09:24 +00:00
|
|
|
/*
|
|
|
|
* __ieee80211_resume() is a static inline which just calls
|
|
|
|
* ieee80211_reconfig(), which is also needed for hardware
|
|
|
|
* hang/firmware failure/etc. recovery.
|
|
|
|
*/
|