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 */ |
| 10 | static bool ieee80211_quiesce(struct ieee80211_sub_if_data *sdata) |
| 11 | { |
| 12 | switch (sdata->vif.type) { |
| 13 | case NL80211_IFTYPE_STATION: |
| 14 | ieee80211_sta_quiesce(sdata); |
| 15 | return true; |
| 16 | case NL80211_IFTYPE_ADHOC: |
| 17 | ieee80211_ibss_quiesce(sdata); |
| 18 | return true; |
| 19 | case NL80211_IFTYPE_MESH_POINT: |
| 20 | ieee80211_mesh_quiesce(sdata); |
| 21 | return true; |
| 22 | case NL80211_IFTYPE_AP_VLAN: |
| 23 | case NL80211_IFTYPE_MONITOR: |
| 24 | /* don't tell driver about this */ |
| 25 | return false; |
| 26 | default: |
| 27 | return true; |
| 28 | } |
| 29 | } |
| 30 | |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 31 | int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan) |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 32 | { |
| 33 | struct ieee80211_local *local = hw_to_local(hw); |
| 34 | struct ieee80211_sub_if_data *sdata; |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 35 | struct sta_info *sta; |
Johannes Berg | fe5f255 | 2012-11-19 22:19:08 +0100 | [diff] [blame] | 36 | struct ieee80211_chanctx *ctx; |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 37 | |
Johannes Berg | 94f9b97 | 2011-07-14 16:48:54 +0200 | [diff] [blame] | 38 | if (!local->open_count) |
| 39 | goto suspend; |
| 40 | |
Stanislaw Gruszka | 4136c42 | 2010-10-06 11:22:10 +0200 | [diff] [blame] | 41 | ieee80211_scan_cancel(local); |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 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 | ca45de7 | 2011-04-21 13:38:00 +0200 | [diff] [blame] | 47 | ieee80211_sta_tear_down_BA_sessions(sta, true); |
| 48 | } |
| 49 | mutex_unlock(&local->sta_mtx); |
| 50 | } |
| 51 | |
Johannes Berg | 2542060 | 2009-03-13 11:43:36 +0100 | [diff] [blame] | 52 | ieee80211_stop_queues_by_reason(hw, |
| 53 | IEEE80211_QUEUE_STOP_REASON_SUSPEND); |
| 54 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 55 | /* flush out all packets */ |
| 56 | synchronize_net(); |
| 57 | |
Johannes Berg | ca45de7 | 2011-04-21 13:38:00 +0200 | [diff] [blame] | 58 | drv_flush(local, false); |
| 59 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 60 | local->quiescing = true; |
| 61 | /* make quiescing visible to timers everywhere */ |
| 62 | mb(); |
| 63 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 64 | flush_workqueue(local->workqueue); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 65 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 66 | /* Don't try to run timers while suspended. */ |
| 67 | del_timer_sync(&local->sta_cleanup); |
| 68 | |
| 69 | /* |
| 70 | * Note that this particular timer doesn't need to be |
| 71 | * restarted at resume. |
| 72 | */ |
| 73 | cancel_work_sync(&local->dynamic_ps_enable_work); |
| 74 | del_timer_sync(&local->dynamic_ps_timer); |
| 75 | |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 76 | local->wowlan = wowlan && local->open_count; |
| 77 | if (local->wowlan) { |
| 78 | int err = drv_suspend(local, wowlan); |
Johannes Berg | 2b4562d | 2011-07-02 00:02:01 +0200 | [diff] [blame] | 79 | if (err < 0) { |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 80 | local->quiescing = false; |
Pontus Fuchs | 3b08cf6 | 2012-05-31 12:34:47 +0200 | [diff] [blame] | 81 | local->wowlan = false; |
Eyal Shapira | 9ea4fa1 | 2012-06-20 13:10:14 +0300 | [diff] [blame] | 82 | if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) { |
| 83 | mutex_lock(&local->sta_mtx); |
| 84 | list_for_each_entry(sta, |
| 85 | &local->sta_list, list) { |
| 86 | clear_sta_flag(sta, WLAN_STA_BLOCK_BA); |
| 87 | } |
| 88 | mutex_unlock(&local->sta_mtx); |
| 89 | } |
| 90 | ieee80211_wake_queues_by_reason(hw, |
| 91 | IEEE80211_QUEUE_STOP_REASON_SUSPEND); |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 92 | return err; |
Johannes Berg | 2b4562d | 2011-07-02 00:02:01 +0200 | [diff] [blame] | 93 | } else if (err > 0) { |
| 94 | WARN_ON(err != 1); |
| 95 | local->wowlan = false; |
| 96 | } else { |
| 97 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 98 | cancel_work_sync(&sdata->work); |
| 99 | ieee80211_quiesce(sdata); |
| 100 | } |
| 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 | 64592c8 | 2010-06-10 10:21:31 +0200 | [diff] [blame] | 127 | cancel_work_sync(&sdata->work); |
| 128 | |
Eliad Peller | 77572fd | 2011-06-16 11:49:33 +0300 | [diff] [blame] | 129 | if (!ieee80211_quiesce(sdata)) |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 130 | continue; |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 131 | |
Johannes Berg | 9607e6b | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 132 | if (!ieee80211_sdata_running(sdata)) |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 133 | continue; |
| 134 | |
Bob Copeland | 97af743 | 2009-07-29 10:13:03 +0200 | [diff] [blame] | 135 | /* disable beaconing */ |
| 136 | ieee80211_bss_info_change_notify(sdata, |
| 137 | BSS_CHANGED_BEACON_ENABLED); |
| 138 | |
Johannes Berg | 1041638 | 2012-10-19 15:44:42 +0200 | [diff] [blame] | 139 | if (sdata->vif.type == NL80211_IFTYPE_AP && |
| 140 | rcu_access_pointer(sdata->u.ap.beacon)) |
| 141 | drv_stop_ap(local, sdata); |
| 142 | |
Johannes Berg | fe5f255 | 2012-11-19 22:19:08 +0100 | [diff] [blame] | 143 | if (local->use_chanctx) { |
| 144 | struct ieee80211_chanctx_conf *conf; |
| 145 | |
| 146 | mutex_lock(&local->chanctx_mtx); |
| 147 | conf = rcu_dereference_protected( |
| 148 | sdata->vif.chanctx_conf, |
| 149 | lockdep_is_held(&local->chanctx_mtx)); |
| 150 | if (conf) { |
| 151 | ctx = container_of(conf, |
| 152 | struct ieee80211_chanctx, |
| 153 | conf); |
| 154 | drv_unassign_vif_chanctx(local, sdata, ctx); |
| 155 | } |
| 156 | |
| 157 | mutex_unlock(&local->chanctx_mtx); |
| 158 | } |
Johannes Berg | 7b7eab6 | 2011-11-03 14:41:13 +0100 | [diff] [blame] | 159 | drv_remove_interface(local, sdata); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 160 | } |
| 161 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 162 | sdata = rtnl_dereference(local->monitor_sdata); |
Johannes Berg | fe5f255 | 2012-11-19 22:19:08 +0100 | [diff] [blame] | 163 | if (sdata) { |
| 164 | if (local->use_chanctx) { |
| 165 | struct ieee80211_chanctx_conf *conf; |
| 166 | |
| 167 | mutex_lock(&local->chanctx_mtx); |
| 168 | conf = rcu_dereference_protected( |
| 169 | sdata->vif.chanctx_conf, |
| 170 | lockdep_is_held(&local->chanctx_mtx)); |
| 171 | if (conf) { |
| 172 | ctx = container_of(conf, |
| 173 | struct ieee80211_chanctx, |
| 174 | conf); |
| 175 | drv_unassign_vif_chanctx(local, sdata, ctx); |
| 176 | } |
| 177 | |
| 178 | mutex_unlock(&local->chanctx_mtx); |
| 179 | } |
| 180 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 181 | drv_remove_interface(local, sdata); |
Johannes Berg | fe5f255 | 2012-11-19 22:19:08 +0100 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | mutex_lock(&local->chanctx_mtx); |
| 185 | list_for_each_entry(ctx, &local->chanctx_list, list) |
| 186 | drv_remove_chanctx(local, ctx); |
| 187 | mutex_unlock(&local->chanctx_mtx); |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 188 | |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 189 | /* stop hardware - this must stop RX */ |
Johannes Berg | 84f6a01 | 2009-08-20 20:02:20 +0200 | [diff] [blame] | 190 | if (local->open_count) |
| 191 | ieee80211_stop_device(local); |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 192 | |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 193 | suspend: |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 194 | local->suspended = true; |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 195 | /* need suspended to be visible before quiescing is false */ |
| 196 | barrier(); |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 197 | local->quiescing = false; |
Bob Copeland | e874e65 | 2009-01-24 13:21:14 -0500 | [diff] [blame] | 198 | |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 199 | return 0; |
| 200 | } |
| 201 | |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 202 | /* |
| 203 | * __ieee80211_resume() is a static inline which just calls |
| 204 | * ieee80211_reconfig(), which is also needed for hardware |
| 205 | * hang/firmware failure/etc. recovery. |
| 206 | */ |