]>
Commit | Line | Data |
---|---|---|
665af4fc BC |
1 | #include <net/mac80211.h> |
2 | #include <net/rtnetlink.h> | |
3 | ||
4 | #include "ieee80211_i.h" | |
5bb644a0 | 5 | #include "mesh.h" |
24487981 | 6 | #include "driver-ops.h" |
665af4fc BC |
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; | |
665af4fc BC |
13 | struct sta_info *sta; |
14 | ||
4136c422 | 15 | ieee80211_scan_cancel(local); |
5bb644a0 | 16 | |
25420604 JB |
17 | ieee80211_stop_queues_by_reason(hw, |
18 | IEEE80211_QUEUE_STOP_REASON_SUSPEND); | |
19 | ||
5bb644a0 JB |
20 | /* flush out all packets */ |
21 | synchronize_net(); | |
22 | ||
23 | local->quiescing = true; | |
24 | /* make quiescing visible to timers everywhere */ | |
25 | mb(); | |
26 | ||
42935eca | 27 | flush_workqueue(local->workqueue); |
665af4fc | 28 | |
5bb644a0 JB |
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 | ||
665af4fc BC |
39 | /* disable keys */ |
40 | list_for_each_entry(sdata, &local->interfaces, list) | |
41 | ieee80211_disable_keys(sdata); | |
42 | ||
2a419056 JB |
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) { | |
618f356b | 47 | set_sta_flags(sta, WLAN_STA_BLOCK_BA); |
53f73c09 | 48 | ieee80211_sta_tear_down_BA_sessions(sta, true); |
722f069a | 49 | } |
722f069a | 50 | |
34e89507 | 51 | if (sta->uploaded) { |
5bb644a0 | 52 | sdata = sta->sdata; |
665af4fc BC |
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 | ||
34e89507 | 58 | drv_sta_remove(local, sdata, &sta->sta); |
665af4fc | 59 | } |
5bb644a0 JB |
60 | |
61 | mesh_plink_quiesce(sta); | |
665af4fc | 62 | } |
34e89507 | 63 | mutex_unlock(&local->sta_mtx); |
665af4fc BC |
64 | |
65 | /* remove all interfaces */ | |
66 | list_for_each_entry(sdata, &local->interfaces, list) { | |
64592c8f JB |
67 | cancel_work_sync(&sdata->work); |
68 | ||
5bb644a0 JB |
69 | switch(sdata->vif.type) { |
70 | case NL80211_IFTYPE_STATION: | |
71 | ieee80211_sta_quiesce(sdata); | |
72 | break; | |
73 | case NL80211_IFTYPE_ADHOC: | |
74 | ieee80211_ibss_quiesce(sdata); | |
75 | break; | |
76 | case NL80211_IFTYPE_MESH_POINT: | |
77 | ieee80211_mesh_quiesce(sdata); | |
78 | break; | |
79 | case NL80211_IFTYPE_AP_VLAN: | |
80 | case NL80211_IFTYPE_MONITOR: | |
81 | /* don't tell driver about this */ | |
82 | continue; | |
83 | default: | |
84 | break; | |
665af4fc | 85 | } |
665af4fc | 86 | |
9607e6b6 | 87 | if (!ieee80211_sdata_running(sdata)) |
5bb644a0 | 88 | continue; |
e874e658 | 89 | |
97af7432 BC |
90 | /* disable beaconing */ |
91 | ieee80211_bss_info_change_notify(sdata, | |
92 | BSS_CHANGED_BEACON_ENABLED); | |
93 | ||
1ed32e4f | 94 | drv_remove_interface(local, &sdata->vif); |
665af4fc | 95 | } |
5bb644a0 | 96 | |
89c3a8ac | 97 | /* stop hardware - this must stop RX */ |
84f6a01c JB |
98 | if (local->open_count) |
99 | ieee80211_stop_device(local); | |
89c3a8ac | 100 | |
5bb644a0 | 101 | local->suspended = true; |
89c3a8ac JB |
102 | /* need suspended to be visible before quiescing is false */ |
103 | barrier(); | |
5bb644a0 JB |
104 | local->quiescing = false; |
105 | ||
665af4fc BC |
106 | return 0; |
107 | } | |
108 | ||
f2753ddb JB |
109 | /* |
110 | * __ieee80211_resume() is a static inline which just calls | |
111 | * ieee80211_reconfig(), which is also needed for hardware | |
112 | * hang/firmware failure/etc. recovery. | |
113 | */ |