Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 1 | #include <net/mac80211.h> |
| 2 | #include <net/rtnetlink.h> |
| 3 | |
| 4 | #include "ieee80211_i.h" |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 5 | #include "mesh.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 6 | #include "driver-ops.h" |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 7 | #include "led.h" |
| 8 | |
Eliad Peller | 77572fd | 2011-06-16 11:49:33 +0300 | [diff] [blame] | 9 | /* return value indicates whether the driver should be further notified */ |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 10 | static void ieee80211_quiesce(struct ieee80211_sub_if_data *sdata) |
Eliad Peller | 77572fd | 2011-06-16 11:49:33 +0300 | [diff] [blame] | 11 | { |
| 12 | switch (sdata->vif.type) { |
| 13 | case NL80211_IFTYPE_STATION: |
| 14 | ieee80211_sta_quiesce(sdata); |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 15 | break; |
Eliad Peller | 77572fd | 2011-06-16 11:49:33 +0300 | [diff] [blame] | 16 | case NL80211_IFTYPE_ADHOC: |
| 17 | ieee80211_ibss_quiesce(sdata); |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 18 | break; |
Eliad Peller | 77572fd | 2011-06-16 11:49:33 +0300 | [diff] [blame] | 19 | case NL80211_IFTYPE_MESH_POINT: |
| 20 | ieee80211_mesh_quiesce(sdata); |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 21 | break; |
Eliad Peller | 77572fd | 2011-06-16 11:49:33 +0300 | [diff] [blame] | 22 | default: |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 23 | break; |
Eliad Peller | 77572fd | 2011-06-16 11:49:33 +0300 | [diff] [blame] | 24 | } |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 25 | |
| 26 | cancel_work_sync(&sdata->work); |
Eliad Peller | 77572fd | 2011-06-16 11:49:33 +0300 | [diff] [blame] | 27 | } |
| 28 | |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 29 | int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan) |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 30 | { |
| 31 | struct ieee80211_local *local = hw_to_local(hw); |
| 32 | struct ieee80211_sub_if_data *sdata; |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 33 | struct sta_info *sta; |
Johannes Berg | fe5f255 | 2012-11-19 22:19:08 +0100 | [diff] [blame] | 34 | struct ieee80211_chanctx *ctx; |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 35 | |
Johannes Berg | 94f9b97 | 2011-07-14 16:48:54 +0200 | [diff] [blame] | 36 | if (!local->open_count) |
| 37 | goto suspend; |
| 38 | |
Stanislaw Gruszka | 4136c42 | 2010-10-06 11:22:10 +0200 | [diff] [blame] | 39 | ieee80211_scan_cancel(local); |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 40 | |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 41 | ieee80211_dfs_cac_cancel(local); |
| 42 | |
Johannes Berg | ca45de7 | 2011-04-21 13:38:00 +0200 | [diff] [blame] | 43 | if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) { |
| 44 | mutex_lock(&local->sta_mtx); |
| 45 | list_for_each_entry(sta, &local->sta_list, list) { |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 46 | set_sta_flag(sta, WLAN_STA_BLOCK_BA); |
Johannes Berg | c82c4a8 | 2012-07-18 13:31:31 +0200 | [diff] [blame] | 47 | ieee80211_sta_tear_down_BA_sessions( |
| 48 | sta, AGG_STOP_LOCAL_REQUEST); |
Johannes Berg | ca45de7 | 2011-04-21 13:38:00 +0200 | [diff] [blame] | 49 | } |
| 50 | mutex_unlock(&local->sta_mtx); |
| 51 | } |
| 52 | |
Johannes Berg | 2542060 | 2009-03-13 11:43:36 +0100 | [diff] [blame] | 53 | ieee80211_stop_queues_by_reason(hw, |
| 54 | IEEE80211_QUEUE_STOP_REASON_SUSPEND); |
| 55 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 56 | /* flush out all packets */ |
| 57 | synchronize_net(); |
| 58 | |
Johannes Berg | ca45de7 | 2011-04-21 13:38:00 +0200 | [diff] [blame] | 59 | drv_flush(local, false); |
| 60 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 61 | local->quiescing = true; |
| 62 | /* make quiescing visible to timers everywhere */ |
| 63 | mb(); |
| 64 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 65 | flush_workqueue(local->workqueue); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 66 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 67 | /* Don't try to run timers while suspended. */ |
| 68 | del_timer_sync(&local->sta_cleanup); |
| 69 | |
| 70 | /* |
| 71 | * Note that this particular timer doesn't need to be |
| 72 | * restarted at resume. |
| 73 | */ |
| 74 | cancel_work_sync(&local->dynamic_ps_enable_work); |
| 75 | del_timer_sync(&local->dynamic_ps_timer); |
| 76 | |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 77 | local->wowlan = wowlan && local->open_count; |
| 78 | if (local->wowlan) { |
| 79 | int err = drv_suspend(local, wowlan); |
Johannes Berg | 2b4562d | 2011-07-02 00:02:01 +0200 | [diff] [blame] | 80 | if (err < 0) { |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 81 | local->quiescing = false; |
Pontus Fuchs | 3b08cf6 | 2012-05-31 12:34:47 +0200 | [diff] [blame] | 82 | local->wowlan = false; |
Eyal Shapira | 9ea4fa1 | 2012-06-20 13:10:14 +0300 | [diff] [blame] | 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); |
| 88 | } |
| 89 | mutex_unlock(&local->sta_mtx); |
| 90 | } |
| 91 | ieee80211_wake_queues_by_reason(hw, |
| 92 | IEEE80211_QUEUE_STOP_REASON_SUSPEND); |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 93 | return err; |
Johannes Berg | 2b4562d | 2011-07-02 00:02:01 +0200 | [diff] [blame] | 94 | } else if (err > 0) { |
| 95 | WARN_ON(err != 1); |
| 96 | local->wowlan = false; |
| 97 | } else { |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 98 | list_for_each_entry(sdata, &local->interfaces, list) |
| 99 | if (ieee80211_sdata_running(sdata)) |
| 100 | ieee80211_quiesce(sdata); |
Johannes Berg | 2b4562d | 2011-07-02 00:02:01 +0200 | [diff] [blame] | 101 | goto suspend; |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 102 | } |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 103 | } |
| 104 | |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 105 | /* disable keys */ |
| 106 | list_for_each_entry(sdata, &local->interfaces, list) |
| 107 | ieee80211_disable_keys(sdata); |
| 108 | |
Johannes Berg | 2a41905 | 2010-06-10 10:21:29 +0200 | [diff] [blame] | 109 | /* tear down aggregation sessions and remove STAs */ |
| 110 | mutex_lock(&local->sta_mtx); |
| 111 | list_for_each_entry(sta, &local->sta_list, list) { |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 112 | if (sta->uploaded) { |
| 113 | enum ieee80211_sta_state state; |
| 114 | |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 115 | state = sta->sta_state; |
| 116 | for (; state > IEEE80211_STA_NOTEXIST; state--) |
Jakub Kicinski | 9d88c7f | 2012-02-23 02:17:48 +0100 | [diff] [blame] | 117 | WARN_ON(drv_sta_state(local, sta->sdata, sta, |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 118 | state, state - 1)); |
| 119 | } |
| 120 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 121 | mesh_plink_quiesce(sta); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 122 | } |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 123 | mutex_unlock(&local->sta_mtx); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 124 | |
| 125 | /* remove all interfaces */ |
| 126 | list_for_each_entry(sdata, &local->interfaces, list) { |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 127 | static u8 zero_addr[ETH_ALEN] = {}; |
Johannes Berg | b8dc1a3 | 2012-12-14 14:22:10 +0100 | [diff] [blame] | 128 | u32 changed = 0; |
Johannes Berg | 529ba6e | 2012-12-13 17:16:45 +0100 | [diff] [blame] | 129 | |
Johannes Berg | 9607e6b | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 130 | if (!ieee80211_sdata_running(sdata)) |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 131 | continue; |
| 132 | |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 133 | switch (sdata->vif.type) { |
| 134 | case NL80211_IFTYPE_AP_VLAN: |
| 135 | case NL80211_IFTYPE_MONITOR: |
| 136 | /* skip these */ |
| 137 | continue; |
Johannes Berg | 529ba6e | 2012-12-13 17:16:45 +0100 | [diff] [blame] | 138 | case NL80211_IFTYPE_STATION: |
| 139 | if (sdata->vif.bss_conf.assoc) |
| 140 | changed = BSS_CHANGED_ASSOC | |
| 141 | BSS_CHANGED_BSSID | |
| 142 | BSS_CHANGED_IDLE; |
Johannes Berg | b8dc1a3 | 2012-12-14 14:22:10 +0100 | [diff] [blame] | 143 | break; |
| 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; |
| 149 | break; |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 150 | default: |
Johannes Berg | 61e8a48 | 2012-12-13 16:47:42 +0100 | [diff] [blame] | 151 | break; |
| 152 | } |
| 153 | |
Johannes Berg | b8dc1a3 | 2012-12-14 14:22:10 +0100 | [diff] [blame] | 154 | ieee80211_quiesce(sdata); |
| 155 | |
Johannes Berg | 529ba6e | 2012-12-13 17:16:45 +0100 | [diff] [blame] | 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; |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 159 | if (sdata->suspend_bss_conf.bssid) |
| 160 | sdata->vif.bss_conf.bssid = zero_addr; |
Johannes Berg | 529ba6e | 2012-12-13 17:16:45 +0100 | [diff] [blame] | 161 | |
| 162 | /* disable beaconing or remove association */ |
| 163 | ieee80211_bss_info_change_notify(sdata, changed); |
Bob Copeland | 97af743 | 2009-07-29 10:13:03 +0200 | [diff] [blame] | 164 | |
Johannes Berg | 1041638 | 2012-10-19 15:44:42 +0200 | [diff] [blame] | 165 | if (sdata->vif.type == NL80211_IFTYPE_AP && |
| 166 | rcu_access_pointer(sdata->u.ap.beacon)) |
| 167 | drv_stop_ap(local, sdata); |
| 168 | |
Johannes Berg | fe5f255 | 2012-11-19 22:19:08 +0100 | [diff] [blame] | 169 | if (local->use_chanctx) { |
| 170 | struct ieee80211_chanctx_conf *conf; |
| 171 | |
| 172 | mutex_lock(&local->chanctx_mtx); |
| 173 | conf = rcu_dereference_protected( |
| 174 | sdata->vif.chanctx_conf, |
| 175 | lockdep_is_held(&local->chanctx_mtx)); |
| 176 | if (conf) { |
| 177 | ctx = container_of(conf, |
| 178 | struct ieee80211_chanctx, |
| 179 | conf); |
| 180 | drv_unassign_vif_chanctx(local, sdata, ctx); |
| 181 | } |
| 182 | |
| 183 | mutex_unlock(&local->chanctx_mtx); |
| 184 | } |
Johannes Berg | 7b7eab6 | 2011-11-03 14:41:13 +0100 | [diff] [blame] | 185 | drv_remove_interface(local, sdata); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 186 | } |
| 187 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 188 | sdata = rtnl_dereference(local->monitor_sdata); |
Johannes Berg | fe5f255 | 2012-11-19 22:19:08 +0100 | [diff] [blame] | 189 | if (sdata) { |
| 190 | if (local->use_chanctx) { |
| 191 | struct ieee80211_chanctx_conf *conf; |
| 192 | |
| 193 | mutex_lock(&local->chanctx_mtx); |
| 194 | conf = rcu_dereference_protected( |
| 195 | sdata->vif.chanctx_conf, |
| 196 | lockdep_is_held(&local->chanctx_mtx)); |
| 197 | if (conf) { |
| 198 | ctx = container_of(conf, |
| 199 | struct ieee80211_chanctx, |
| 200 | conf); |
| 201 | drv_unassign_vif_chanctx(local, sdata, ctx); |
| 202 | } |
| 203 | |
| 204 | mutex_unlock(&local->chanctx_mtx); |
| 205 | } |
| 206 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 207 | drv_remove_interface(local, sdata); |
Johannes Berg | fe5f255 | 2012-11-19 22:19:08 +0100 | [diff] [blame] | 208 | } |
| 209 | |
| 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); |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 214 | |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 215 | /* stop hardware - this must stop RX */ |
Johannes Berg | 84f6a01 | 2009-08-20 20:02:20 +0200 | [diff] [blame] | 216 | if (local->open_count) |
| 217 | ieee80211_stop_device(local); |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 218 | |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 219 | suspend: |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 220 | local->suspended = true; |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 221 | /* need suspended to be visible before quiescing is false */ |
| 222 | barrier(); |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 223 | local->quiescing = false; |
Bob Copeland | e874e65 | 2009-01-24 13:21:14 -0500 | [diff] [blame] | 224 | |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 225 | return 0; |
| 226 | } |
| 227 | |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 228 | /* |
| 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. |
| 232 | */ |
Johannes Berg | cd8f7cb | 2013-01-22 12:34:29 +0100 | [diff] [blame] | 233 | |
| 234 | void ieee80211_report_wowlan_wakeup(struct ieee80211_vif *vif, |
| 235 | struct cfg80211_wowlan_wakeup *wakeup, |
| 236 | gfp_t gfp) |
| 237 | { |
| 238 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 239 | |
| 240 | cfg80211_report_wowlan_wakeup(&sdata->wdev, wakeup, gfp); |
| 241 | } |
| 242 | EXPORT_SYMBOL(ieee80211_report_wowlan_wakeup); |