mac80211: fix ethtool stats for non-station interfaces
[GitHub/mt8127/android_kernel_alcatel_ttab.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
JB
37 IEEE80211_MAX_QUEUE_MAP,
38 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
25420604 39
b20d34c4 40 /* flush out all packets and station cleanup call_rcu()s */
8ceb5955 41 synchronize_net();
b20d34c4 42 rcu_barrier();
5bb644a0 43
39ecc01d 44 ieee80211_flush_queues(local, NULL);
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
eecc4800
JB
62 local->wowlan = wowlan && local->open_count;
63 if (local->wowlan) {
64 int err = drv_suspend(local, wowlan);
2b4562df 65 if (err < 0) {
eecc4800 66 local->quiescing = false;
3b08cf6b 67 local->wowlan = false;
9ea4fa15
ES
68 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
69 mutex_lock(&local->sta_mtx);
70 list_for_each_entry(sta,
71 &local->sta_list, list) {
72 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
73 }
74 mutex_unlock(&local->sta_mtx);
75 }
76 ieee80211_wake_queues_by_reason(hw,
445ea4e8 77 IEEE80211_MAX_QUEUE_MAP,
9ea4fa15 78 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
eecc4800 79 return err;
2b4562df
JB
80 } else if (err > 0) {
81 WARN_ON(err != 1);
81256969 82 return err;
2b4562df 83 } else {
2b4562df 84 goto suspend;
eecc4800 85 }
eecc4800
JB
86 }
87
2a419056
JB
88 /* tear down aggregation sessions and remove STAs */
89 mutex_lock(&local->sta_mtx);
90 list_for_each_entry(sta, &local->sta_list, list) {
f09603a2
JB
91 if (sta->uploaded) {
92 enum ieee80211_sta_state state;
93
f09603a2
JB
94 state = sta->sta_state;
95 for (; state > IEEE80211_STA_NOTEXIST; state--)
9d88c7f6 96 WARN_ON(drv_sta_state(local, sta->sdata, sta,
f09603a2
JB
97 state, state - 1));
98 }
665af4fc 99 }
34e89507 100 mutex_unlock(&local->sta_mtx);
665af4fc
BC
101
102 /* remove all interfaces */
103 list_for_each_entry(sdata, &local->interfaces, list) {
61e8a48c 104 if (!ieee80211_sdata_running(sdata))
5bb644a0 105 continue;
7b7eab6f 106 drv_remove_interface(local, sdata);
665af4fc 107 }
5bb644a0 108
12e7f517
SG
109 /*
110 * We disconnected on all interfaces before suspend, all channel
111 * contexts should be released.
112 */
113 WARN_ON(!list_empty(&local->chanctx_list));
4b6f1dd6 114
89c3a8ac 115 /* stop hardware - this must stop RX */
84f6a01c
JB
116 if (local->open_count)
117 ieee80211_stop_device(local);
89c3a8ac 118
eecc4800 119 suspend:
5bb644a0 120 local->suspended = true;
89c3a8ac
JB
121 /* need suspended to be visible before quiescing is false */
122 barrier();
5bb644a0
JB
123 local->quiescing = false;
124
665af4fc
BC
125 return 0;
126}
127
f2753ddb
JB
128/*
129 * __ieee80211_resume() is a static inline which just calls
130 * ieee80211_reconfig(), which is also needed for hardware
131 * hang/firmware failure/etc. recovery.
132 */
cd8f7cb4
JB
133
134void ieee80211_report_wowlan_wakeup(struct ieee80211_vif *vif,
135 struct cfg80211_wowlan_wakeup *wakeup,
136 gfp_t gfp)
137{
138 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
139
140 cfg80211_report_wowlan_wakeup(&sdata->wdev, wakeup, gfp);
141}
142EXPORT_SYMBOL(ieee80211_report_wowlan_wakeup);