mac80211: remove useless double check for open_count in __ieee80211_suspend()
[deliverable/linux.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
eecc4800 9int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
665af4fc
BC
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
94f9b97b
JB
15 if (!local->open_count)
16 goto suspend;
17
4136c422 18 ieee80211_scan_cancel(local);
5bb644a0 19
164eb02d
SW
20 ieee80211_dfs_cac_cancel(local);
21
c8f994ee
JB
22 ieee80211_roc_purge(local, NULL);
23
3c3e21e7
JB
24 ieee80211_del_virtual_monitor(local);
25
ca45de77
JB
26 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
27 mutex_lock(&local->sta_mtx);
28 list_for_each_entry(sta, &local->sta_list, list) {
c2c98fde 29 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
c82c4a80
JB
30 ieee80211_sta_tear_down_BA_sessions(
31 sta, AGG_STOP_LOCAL_REQUEST);
ca45de77
JB
32 }
33 mutex_unlock(&local->sta_mtx);
34 }
35
25420604 36 ieee80211_stop_queues_by_reason(hw,
445ea4e8 37 IEEE80211_MAX_QUEUE_MAP,
cca07b00
LC
38 IEEE80211_QUEUE_STOP_REASON_SUSPEND,
39 false);
25420604 40
d34ba216 41 /* flush out all packets */
8ceb5955 42 synchronize_net();
5bb644a0 43
3b24f4c6 44 ieee80211_flush_queues(local, NULL, true);
ca45de77 45
5bb644a0
JB
46 local->quiescing = true;
47 /* make quiescing visible to timers everywhere */
48 mb();
49
42935eca 50 flush_workqueue(local->workqueue);
665af4fc 51
5bb644a0
JB
52 /* Don't try to run timers while suspended. */
53 del_timer_sync(&local->sta_cleanup);
54
55 /*
56 * Note that this particular timer doesn't need to be
57 * restarted at resume.
58 */
59 cancel_work_sync(&local->dynamic_ps_enable_work);
60 del_timer_sync(&local->dynamic_ps_timer);
61
8bb6f4b9 62 local->wowlan = wowlan;
eecc4800 63 if (local->wowlan) {
ef7c6725
JB
64 int err;
65
66 /* Drivers don't expect to suspend while some operations like
67 * authenticating or associating are in progress. It doesn't
68 * make sense anyway to accept that, since the authentication
69 * or association would never finish since the driver can't do
70 * that on its own.
71 * Thus, clean up in-progress auth/assoc first.
72 */
73 list_for_each_entry(sdata, &local->interfaces, list) {
74 if (!ieee80211_sdata_running(sdata))
75 continue;
76 if (sdata->vif.type != NL80211_IFTYPE_STATION)
77 continue;
78 ieee80211_mgd_quiesce(sdata);
79 }
80
81 err = drv_suspend(local, wowlan);
2b4562df 82 if (err < 0) {
eecc4800 83 local->quiescing = false;
3b08cf6b 84 local->wowlan = false;
9ea4fa15
ES
85 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
86 mutex_lock(&local->sta_mtx);
87 list_for_each_entry(sta,
88 &local->sta_list, list) {
89 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
90 }
91 mutex_unlock(&local->sta_mtx);
92 }
93 ieee80211_wake_queues_by_reason(hw,
445ea4e8 94 IEEE80211_MAX_QUEUE_MAP,
cca07b00
LC
95 IEEE80211_QUEUE_STOP_REASON_SUSPEND,
96 false);
eecc4800 97 return err;
2b4562df
JB
98 } else if (err > 0) {
99 WARN_ON(err != 1);
81256969 100 return err;
2b4562df 101 } else {
2b4562df 102 goto suspend;
eecc4800 103 }
eecc4800
JB
104 }
105
cd34f647 106 /* remove all interfaces that were created in the driver */
665af4fc 107 list_for_each_entry(sdata, &local->interfaces, list) {
1a1cb744 108 if (!ieee80211_sdata_running(sdata))
5bb644a0 109 continue;
1a1cb744
JB
110 switch (sdata->vif.type) {
111 case NL80211_IFTYPE_AP_VLAN:
112 case NL80211_IFTYPE_MONITOR:
113 continue;
114 case NL80211_IFTYPE_STATION:
115 ieee80211_mgd_quiesce(sdata);
116 break;
2af81d67
LC
117 case NL80211_IFTYPE_WDS:
118 /* tear down aggregation sessions and remove STAs */
119 mutex_lock(&local->sta_mtx);
120 sta = sdata->u.wds.sta;
121 if (sta && sta->uploaded) {
122 enum ieee80211_sta_state state;
123
124 state = sta->sta_state;
125 for (; state > IEEE80211_STA_NOTEXIST; state--)
126 WARN_ON(drv_sta_state(local, sta->sdata,
127 sta, state,
128 state - 1));
129 }
130 mutex_unlock(&local->sta_mtx);
131 break;
1a1cb744
JB
132 default:
133 break;
134 }
cd34f647 135
7b7eab6f 136 drv_remove_interface(local, sdata);
665af4fc 137 }
5bb644a0 138
12e7f517
SG
139 /*
140 * We disconnected on all interfaces before suspend, all channel
141 * contexts should be released.
142 */
143 WARN_ON(!list_empty(&local->chanctx_list));
4b6f1dd6 144
89c3a8ac 145 /* stop hardware - this must stop RX */
84f6a01c
JB
146 if (local->open_count)
147 ieee80211_stop_device(local);
89c3a8ac 148
eecc4800 149 suspend:
5bb644a0 150 local->suspended = true;
89c3a8ac
JB
151 /* need suspended to be visible before quiescing is false */
152 barrier();
5bb644a0
JB
153 local->quiescing = false;
154
665af4fc
BC
155 return 0;
156}
157
f2753ddb
JB
158/*
159 * __ieee80211_resume() is a static inline which just calls
160 * ieee80211_reconfig(), which is also needed for hardware
161 * hang/firmware failure/etc. recovery.
162 */
cd8f7cb4
JB
163
164void ieee80211_report_wowlan_wakeup(struct ieee80211_vif *vif,
165 struct cfg80211_wowlan_wakeup *wakeup,
166 gfp_t gfp)
167{
168 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
169
170 cfg80211_report_wowlan_wakeup(&sdata->wdev, wakeup, gfp);
171}
172EXPORT_SYMBOL(ieee80211_report_wowlan_wakeup);
This page took 0.340809 seconds and 5 git commands to generate.