1 #include <net/mac80211.h>
2 #include <net/rtnetlink.h>
4 #include "ieee80211_i.h"
6 #include "driver-ops.h"
9 /* return value indicates whether the driver should be further notified */
10 static void ieee80211_quiesce(struct ieee80211_sub_if_data
*sdata
)
12 switch (sdata
->vif
.type
) {
13 case NL80211_IFTYPE_STATION
:
14 ieee80211_sta_quiesce(sdata
);
16 case NL80211_IFTYPE_ADHOC
:
17 ieee80211_ibss_quiesce(sdata
);
19 case NL80211_IFTYPE_MESH_POINT
:
20 ieee80211_mesh_quiesce(sdata
);
26 cancel_work_sync(&sdata
->work
);
29 int __ieee80211_suspend(struct ieee80211_hw
*hw
, struct cfg80211_wowlan
*wowlan
)
31 struct ieee80211_local
*local
= hw_to_local(hw
);
32 struct ieee80211_sub_if_data
*sdata
;
34 struct ieee80211_chanctx
*ctx
;
36 if (!local
->open_count
)
39 ieee80211_scan_cancel(local
);
41 ieee80211_dfs_cac_cancel(local
);
43 if (hw
->flags
& IEEE80211_HW_AMPDU_AGGREGATION
) {
44 mutex_lock(&local
->sta_mtx
);
45 list_for_each_entry(sta
, &local
->sta_list
, list
) {
46 set_sta_flag(sta
, WLAN_STA_BLOCK_BA
);
47 ieee80211_sta_tear_down_BA_sessions(
48 sta
, AGG_STOP_LOCAL_REQUEST
);
50 mutex_unlock(&local
->sta_mtx
);
53 ieee80211_stop_queues_by_reason(hw
,
54 IEEE80211_QUEUE_STOP_REASON_SUSPEND
);
56 /* flush out all packets */
59 drv_flush(local
, false);
61 local
->quiescing
= true;
62 /* make quiescing visible to timers everywhere */
65 flush_workqueue(local
->workqueue
);
67 /* Don't try to run timers while suspended. */
68 del_timer_sync(&local
->sta_cleanup
);
71 * Note that this particular timer doesn't need to be
72 * restarted at resume.
74 cancel_work_sync(&local
->dynamic_ps_enable_work
);
75 del_timer_sync(&local
->dynamic_ps_timer
);
77 local
->wowlan
= wowlan
&& local
->open_count
;
79 int err
= drv_suspend(local
, wowlan
);
81 local
->quiescing
= false;
82 local
->wowlan
= false;
83 if (hw
->flags
& IEEE80211_HW_AMPDU_AGGREGATION
) {
84 mutex_lock(&local
->sta_mtx
);
85 list_for_each_entry(sta
,
86 &local
->sta_list
, list
) {
87 clear_sta_flag(sta
, WLAN_STA_BLOCK_BA
);
89 mutex_unlock(&local
->sta_mtx
);
91 ieee80211_wake_queues_by_reason(hw
,
92 IEEE80211_QUEUE_STOP_REASON_SUSPEND
);
96 local
->wowlan
= false;
98 list_for_each_entry(sdata
, &local
->interfaces
, list
)
99 if (ieee80211_sdata_running(sdata
))
100 ieee80211_quiesce(sdata
);
106 list_for_each_entry(sdata
, &local
->interfaces
, list
)
107 ieee80211_disable_keys(sdata
);
109 /* tear down aggregation sessions and remove STAs */
110 mutex_lock(&local
->sta_mtx
);
111 list_for_each_entry(sta
, &local
->sta_list
, list
) {
113 enum ieee80211_sta_state state
;
115 state
= sta
->sta_state
;
116 for (; state
> IEEE80211_STA_NOTEXIST
; state
--)
117 WARN_ON(drv_sta_state(local
, sta
->sdata
, sta
,
121 mesh_plink_quiesce(sta
);
123 mutex_unlock(&local
->sta_mtx
);
125 /* remove all interfaces */
126 list_for_each_entry(sdata
, &local
->interfaces
, list
) {
127 static u8 zero_addr
[ETH_ALEN
] = {};
130 if (!ieee80211_sdata_running(sdata
))
133 switch (sdata
->vif
.type
) {
134 case NL80211_IFTYPE_AP_VLAN
:
135 case NL80211_IFTYPE_MONITOR
:
138 case NL80211_IFTYPE_STATION
:
139 if (sdata
->vif
.bss_conf
.assoc
)
140 changed
= BSS_CHANGED_ASSOC
|
144 case NL80211_IFTYPE_AP
:
145 case NL80211_IFTYPE_ADHOC
:
146 case NL80211_IFTYPE_MESH_POINT
:
147 if (sdata
->vif
.bss_conf
.enable_beacon
)
148 changed
= BSS_CHANGED_BEACON_ENABLED
;
154 ieee80211_quiesce(sdata
);
156 sdata
->suspend_bss_conf
= sdata
->vif
.bss_conf
;
157 memset(&sdata
->vif
.bss_conf
, 0, sizeof(sdata
->vif
.bss_conf
));
158 sdata
->vif
.bss_conf
.idle
= true;
159 if (sdata
->suspend_bss_conf
.bssid
)
160 sdata
->vif
.bss_conf
.bssid
= zero_addr
;
162 /* disable beaconing or remove association */
163 ieee80211_bss_info_change_notify(sdata
, changed
);
165 if (sdata
->vif
.type
== NL80211_IFTYPE_AP
&&
166 rcu_access_pointer(sdata
->u
.ap
.beacon
))
167 drv_stop_ap(local
, sdata
);
169 if (local
->use_chanctx
) {
170 struct ieee80211_chanctx_conf
*conf
;
172 mutex_lock(&local
->chanctx_mtx
);
173 conf
= rcu_dereference_protected(
174 sdata
->vif
.chanctx_conf
,
175 lockdep_is_held(&local
->chanctx_mtx
));
177 ctx
= container_of(conf
,
178 struct ieee80211_chanctx
,
180 drv_unassign_vif_chanctx(local
, sdata
, ctx
);
183 mutex_unlock(&local
->chanctx_mtx
);
185 drv_remove_interface(local
, sdata
);
188 sdata
= rtnl_dereference(local
->monitor_sdata
);
190 if (local
->use_chanctx
) {
191 struct ieee80211_chanctx_conf
*conf
;
193 mutex_lock(&local
->chanctx_mtx
);
194 conf
= rcu_dereference_protected(
195 sdata
->vif
.chanctx_conf
,
196 lockdep_is_held(&local
->chanctx_mtx
));
198 ctx
= container_of(conf
,
199 struct ieee80211_chanctx
,
201 drv_unassign_vif_chanctx(local
, sdata
, ctx
);
204 mutex_unlock(&local
->chanctx_mtx
);
207 drv_remove_interface(local
, sdata
);
210 mutex_lock(&local
->chanctx_mtx
);
211 list_for_each_entry(ctx
, &local
->chanctx_list
, list
)
212 drv_remove_chanctx(local
, ctx
);
213 mutex_unlock(&local
->chanctx_mtx
);
215 /* stop hardware - this must stop RX */
216 if (local
->open_count
)
217 ieee80211_stop_device(local
);
220 local
->suspended
= true;
221 /* need suspended to be visible before quiescing is false */
223 local
->quiescing
= false;
229 * __ieee80211_resume() is a static inline which just calls
230 * ieee80211_reconfig(), which is also needed for hardware
231 * hang/firmware failure/etc. recovery.
234 void ieee80211_report_wowlan_wakeup(struct ieee80211_vif
*vif
,
235 struct cfg80211_wowlan_wakeup
*wakeup
,
238 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
240 cfg80211_report_wowlan_wakeup(&sdata
->wdev
, wakeup
, gfp
);
242 EXPORT_SYMBOL(ieee80211_report_wowlan_wakeup
);