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