nl80211/cfg80211: WoWLAN support
[linux-2.6-block.git] / net / mac80211 / pm.c
CommitLineData
665af4fc
BC
1#include <net/mac80211.h>
2#include <net/rtnetlink.h>
3
4#include "ieee80211_i.h"
5bb644a0 5#include "mesh.h"
24487981 6#include "driver-ops.h"
665af4fc
BC
7#include "led.h"
8
9int __ieee80211_suspend(struct ieee80211_hw *hw)
10{
11 struct ieee80211_local *local = hw_to_local(hw);
12 struct ieee80211_sub_if_data *sdata;
665af4fc
BC
13 struct sta_info *sta;
14
4136c422 15 ieee80211_scan_cancel(local);
5bb644a0 16
ca45de77
JB
17 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
18 mutex_lock(&local->sta_mtx);
19 list_for_each_entry(sta, &local->sta_list, list) {
20 set_sta_flags(sta, WLAN_STA_BLOCK_BA);
21 ieee80211_sta_tear_down_BA_sessions(sta, true);
22 }
23 mutex_unlock(&local->sta_mtx);
24 }
25
25420604
JB
26 ieee80211_stop_queues_by_reason(hw,
27 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
28
5bb644a0
JB
29 /* flush out all packets */
30 synchronize_net();
31
ca45de77
JB
32 drv_flush(local, false);
33
5bb644a0
JB
34 local->quiescing = true;
35 /* make quiescing visible to timers everywhere */
36 mb();
37
42935eca 38 flush_workqueue(local->workqueue);
665af4fc 39
5bb644a0
JB
40 /* Don't try to run timers while suspended. */
41 del_timer_sync(&local->sta_cleanup);
42
43 /*
44 * Note that this particular timer doesn't need to be
45 * restarted at resume.
46 */
47 cancel_work_sync(&local->dynamic_ps_enable_work);
48 del_timer_sync(&local->dynamic_ps_timer);
49
665af4fc
BC
50 /* disable keys */
51 list_for_each_entry(sdata, &local->interfaces, list)
52 ieee80211_disable_keys(sdata);
53
2a419056
JB
54 /* tear down aggregation sessions and remove STAs */
55 mutex_lock(&local->sta_mtx);
56 list_for_each_entry(sta, &local->sta_list, list) {
34e89507 57 if (sta->uploaded) {
5bb644a0 58 sdata = sta->sdata;
665af4fc
BC
59 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
60 sdata = container_of(sdata->bss,
61 struct ieee80211_sub_if_data,
62 u.ap);
63
34e89507 64 drv_sta_remove(local, sdata, &sta->sta);
665af4fc 65 }
5bb644a0
JB
66
67 mesh_plink_quiesce(sta);
665af4fc 68 }
34e89507 69 mutex_unlock(&local->sta_mtx);
665af4fc
BC
70
71 /* remove all interfaces */
72 list_for_each_entry(sdata, &local->interfaces, list) {
64592c8f
JB
73 cancel_work_sync(&sdata->work);
74
5bb644a0
JB
75 switch(sdata->vif.type) {
76 case NL80211_IFTYPE_STATION:
77 ieee80211_sta_quiesce(sdata);
78 break;
79 case NL80211_IFTYPE_ADHOC:
80 ieee80211_ibss_quiesce(sdata);
81 break;
82 case NL80211_IFTYPE_MESH_POINT:
83 ieee80211_mesh_quiesce(sdata);
84 break;
85 case NL80211_IFTYPE_AP_VLAN:
86 case NL80211_IFTYPE_MONITOR:
87 /* don't tell driver about this */
88 continue;
89 default:
90 break;
665af4fc 91 }
665af4fc 92
9607e6b6 93 if (!ieee80211_sdata_running(sdata))
5bb644a0 94 continue;
e874e658 95
97af7432
BC
96 /* disable beaconing */
97 ieee80211_bss_info_change_notify(sdata,
98 BSS_CHANGED_BEACON_ENABLED);
99
1ed32e4f 100 drv_remove_interface(local, &sdata->vif);
665af4fc 101 }
5bb644a0 102
89c3a8ac 103 /* stop hardware - this must stop RX */
84f6a01c
JB
104 if (local->open_count)
105 ieee80211_stop_device(local);
89c3a8ac 106
5bb644a0 107 local->suspended = true;
89c3a8ac
JB
108 /* need suspended to be visible before quiescing is false */
109 barrier();
5bb644a0
JB
110 local->quiescing = false;
111
665af4fc
BC
112 return 0;
113}
114
f2753ddb
JB
115/*
116 * __ieee80211_resume() is a static inline which just calls
117 * ieee80211_reconfig(), which is also needed for hardware
118 * hang/firmware failure/etc. recovery.
119 */