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