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 | |
| 9 | int __ieee80211_suspend(struct ieee80211_hw *hw) |
| 10 | { |
| 11 | struct ieee80211_local *local = hw_to_local(hw); |
| 12 | struct ieee80211_sub_if_data *sdata; |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 13 | struct sta_info *sta; |
| 14 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 15 | ieee80211_scan_cancel(local); |
| 16 | |
Johannes Berg | 2542060 | 2009-03-13 11:43:36 +0100 | [diff] [blame] | 17 | ieee80211_stop_queues_by_reason(hw, |
| 18 | IEEE80211_QUEUE_STOP_REASON_SUSPEND); |
| 19 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 20 | /* flush out all packets */ |
| 21 | synchronize_net(); |
| 22 | |
| 23 | local->quiescing = true; |
| 24 | /* make quiescing visible to timers everywhere */ |
| 25 | mb(); |
| 26 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 27 | flush_workqueue(local->workqueue); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 28 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 29 | /* Don't try to run timers while suspended. */ |
| 30 | del_timer_sync(&local->sta_cleanup); |
| 31 | |
| 32 | /* |
| 33 | * Note that this particular timer doesn't need to be |
| 34 | * restarted at resume. |
| 35 | */ |
| 36 | cancel_work_sync(&local->dynamic_ps_enable_work); |
| 37 | del_timer_sync(&local->dynamic_ps_timer); |
| 38 | |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 39 | /* disable keys */ |
| 40 | list_for_each_entry(sdata, &local->interfaces, list) |
| 41 | ieee80211_disable_keys(sdata); |
| 42 | |
Johannes Berg | 2a41905 | 2010-06-10 10:21:29 +0200 | [diff] [blame^] | 43 | /* tear down aggregation sessions and remove STAs */ |
| 44 | mutex_lock(&local->sta_mtx); |
| 45 | list_for_each_entry(sta, &local->sta_list, list) { |
| 46 | if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) { |
Johannes Berg | 618f356 | 2010-04-06 11:18:46 +0200 | [diff] [blame] | 47 | set_sta_flags(sta, WLAN_STA_BLOCK_BA); |
Sujith | 722f069 | 2009-03-17 08:50:06 +0530 | [diff] [blame] | 48 | ieee80211_sta_tear_down_BA_sessions(sta); |
| 49 | } |
Sujith | 722f069 | 2009-03-17 08:50:06 +0530 | [diff] [blame] | 50 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 51 | if (sta->uploaded) { |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 52 | sdata = sta->sdata; |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 53 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 54 | sdata = container_of(sdata->bss, |
| 55 | struct ieee80211_sub_if_data, |
| 56 | u.ap); |
| 57 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 58 | drv_sta_remove(local, sdata, &sta->sta); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 59 | } |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 60 | |
| 61 | mesh_plink_quiesce(sta); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 62 | } |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 63 | mutex_unlock(&local->sta_mtx); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 64 | |
| 65 | /* remove all interfaces */ |
| 66 | list_for_each_entry(sdata, &local->interfaces, list) { |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 67 | switch(sdata->vif.type) { |
| 68 | case NL80211_IFTYPE_STATION: |
| 69 | ieee80211_sta_quiesce(sdata); |
| 70 | break; |
| 71 | case NL80211_IFTYPE_ADHOC: |
| 72 | ieee80211_ibss_quiesce(sdata); |
| 73 | break; |
| 74 | case NL80211_IFTYPE_MESH_POINT: |
| 75 | ieee80211_mesh_quiesce(sdata); |
| 76 | break; |
| 77 | case NL80211_IFTYPE_AP_VLAN: |
| 78 | case NL80211_IFTYPE_MONITOR: |
| 79 | /* don't tell driver about this */ |
| 80 | continue; |
| 81 | default: |
| 82 | break; |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 83 | } |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 84 | |
Johannes Berg | 9607e6b | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 85 | if (!ieee80211_sdata_running(sdata)) |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 86 | continue; |
| 87 | |
Bob Copeland | 97af743 | 2009-07-29 10:13:03 +0200 | [diff] [blame] | 88 | /* disable beaconing */ |
| 89 | ieee80211_bss_info_change_notify(sdata, |
| 90 | BSS_CHANGED_BEACON_ENABLED); |
| 91 | |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 92 | drv_remove_interface(local, &sdata->vif); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 93 | } |
| 94 | |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 95 | /* stop hardware - this must stop RX */ |
Johannes Berg | 84f6a01 | 2009-08-20 20:02:20 +0200 | [diff] [blame] | 96 | if (local->open_count) |
| 97 | ieee80211_stop_device(local); |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 98 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 99 | local->suspended = true; |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 100 | /* need suspended to be visible before quiescing is false */ |
| 101 | barrier(); |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 102 | local->quiescing = false; |
Bob Copeland | e874e65 | 2009-01-24 13:21:14 -0500 | [diff] [blame] | 103 | |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 104 | return 0; |
| 105 | } |
| 106 | |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 107 | /* |
| 108 | * __ieee80211_resume() is a static inline which just calls |
| 109 | * ieee80211_reconfig(), which is also needed for hardware |
| 110 | * hang/firmware failure/etc. recovery. |
| 111 | */ |