blob: 730778a2c90c05d3c2e76d6f1f183f004e27ed9e [file] [log] [blame]
Bob Copeland665af4f2009-01-19 11:20:53 -05001#include <net/mac80211.h>
2#include <net/rtnetlink.h>
3
4#include "ieee80211_i.h"
Johannes Berg5bb644a2009-05-17 11:40:42 +02005#include "mesh.h"
Johannes Berg24487982009-04-23 18:52:52 +02006#include "driver-ops.h"
Bob Copeland665af4f2009-01-19 11:20:53 -05007#include "led.h"
8
Johannes Bergeecc4802011-05-04 15:37:29 +02009int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -050010{
11 struct ieee80211_local *local = hw_to_local(hw);
12 struct ieee80211_sub_if_data *sdata;
Bob Copeland665af4f2009-01-19 11:20:53 -050013 struct sta_info *sta;
14
Stanislaw Gruszka4136c422010-10-06 11:22:10 +020015 ieee80211_scan_cancel(local);
Johannes Berg5bb644a2009-05-17 11:40:42 +020016
Johannes Bergca45de72011-04-21 13:38:00 +020017 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
18 mutex_lock(&local->sta_mtx);
19 list_for_each_entry(sta, &local->sta_list, list) {
20 set_sta_flags(sta, WLAN_STA_BLOCK_BA);
21 ieee80211_sta_tear_down_BA_sessions(sta, true);
22 }
23 mutex_unlock(&local->sta_mtx);
24 }
25
Johannes Berg25420602009-03-13 11:43:36 +010026 ieee80211_stop_queues_by_reason(hw,
27 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
28
Johannes Berg5bb644a2009-05-17 11:40:42 +020029 /* flush out all packets */
30 synchronize_net();
31
Johannes Bergca45de72011-04-21 13:38:00 +020032 drv_flush(local, false);
33
Johannes Berg5bb644a2009-05-17 11:40:42 +020034 local->quiescing = true;
35 /* make quiescing visible to timers everywhere */
36 mb();
37
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -040038 flush_workqueue(local->workqueue);
Bob Copeland665af4f2009-01-19 11:20:53 -050039
Johannes Berg5bb644a2009-05-17 11:40:42 +020040 /* Don't try to run timers while suspended. */
41 del_timer_sync(&local->sta_cleanup);
42
43 /*
44 * Note that this particular timer doesn't need to be
45 * restarted at resume.
46 */
47 cancel_work_sync(&local->dynamic_ps_enable_work);
48 del_timer_sync(&local->dynamic_ps_timer);
49
Johannes Bergeecc4802011-05-04 15:37:29 +020050 local->wowlan = wowlan && local->open_count;
51 if (local->wowlan) {
52 int err = drv_suspend(local, wowlan);
53 if (err) {
54 local->quiescing = false;
55 return err;
56 }
57 goto suspend;
58 }
59
Bob Copeland665af4f2009-01-19 11:20:53 -050060 /* disable keys */
61 list_for_each_entry(sdata, &local->interfaces, list)
62 ieee80211_disable_keys(sdata);
63
Johannes Berg2a419052010-06-10 10:21:29 +020064 /* tear down aggregation sessions and remove STAs */
65 mutex_lock(&local->sta_mtx);
66 list_for_each_entry(sta, &local->sta_list, list) {
Johannes Berg34e89502010-02-03 13:59:58 +010067 if (sta->uploaded) {
Johannes Berg5bb644a2009-05-17 11:40:42 +020068 sdata = sta->sdata;
Bob Copeland665af4f2009-01-19 11:20:53 -050069 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
70 sdata = container_of(sdata->bss,
71 struct ieee80211_sub_if_data,
72 u.ap);
73
Johannes Berg34e89502010-02-03 13:59:58 +010074 drv_sta_remove(local, sdata, &sta->sta);
Bob Copeland665af4f2009-01-19 11:20:53 -050075 }
Johannes Berg5bb644a2009-05-17 11:40:42 +020076
77 mesh_plink_quiesce(sta);
Bob Copeland665af4f2009-01-19 11:20:53 -050078 }
Johannes Berg34e89502010-02-03 13:59:58 +010079 mutex_unlock(&local->sta_mtx);
Bob Copeland665af4f2009-01-19 11:20:53 -050080
81 /* remove all interfaces */
82 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg64592c82010-06-10 10:21:31 +020083 cancel_work_sync(&sdata->work);
84
Johannes Berg5bb644a2009-05-17 11:40:42 +020085 switch(sdata->vif.type) {
86 case NL80211_IFTYPE_STATION:
87 ieee80211_sta_quiesce(sdata);
88 break;
89 case NL80211_IFTYPE_ADHOC:
90 ieee80211_ibss_quiesce(sdata);
91 break;
92 case NL80211_IFTYPE_MESH_POINT:
93 ieee80211_mesh_quiesce(sdata);
94 break;
95 case NL80211_IFTYPE_AP_VLAN:
96 case NL80211_IFTYPE_MONITOR:
97 /* don't tell driver about this */
98 continue;
99 default:
100 break;
Bob Copeland665af4f2009-01-19 11:20:53 -0500101 }
Johannes Berg5bb644a2009-05-17 11:40:42 +0200102
Johannes Berg9607e6b2009-12-23 13:15:31 +0100103 if (!ieee80211_sdata_running(sdata))
Johannes Berg5bb644a2009-05-17 11:40:42 +0200104 continue;
105
Bob Copeland97af7432009-07-29 10:13:03 +0200106 /* disable beaconing */
107 ieee80211_bss_info_change_notify(sdata,
108 BSS_CHANGED_BEACON_ENABLED);
109
Johannes Berg1ed32e42009-12-23 13:15:45 +0100110 drv_remove_interface(local, &sdata->vif);
Bob Copeland665af4f2009-01-19 11:20:53 -0500111 }
112
Johannes Berg89c3a8a2009-07-28 18:10:17 +0200113 /* stop hardware - this must stop RX */
Johannes Berg84f6a012009-08-20 20:02:20 +0200114 if (local->open_count)
115 ieee80211_stop_device(local);
Johannes Berg89c3a8a2009-07-28 18:10:17 +0200116
Johannes Bergeecc4802011-05-04 15:37:29 +0200117 suspend:
Johannes Berg5bb644a2009-05-17 11:40:42 +0200118 local->suspended = true;
Johannes Berg89c3a8a2009-07-28 18:10:17 +0200119 /* need suspended to be visible before quiescing is false */
120 barrier();
Johannes Berg5bb644a2009-05-17 11:40:42 +0200121 local->quiescing = false;
Bob Copelande874e652009-01-24 13:21:14 -0500122
Bob Copeland665af4f2009-01-19 11:20:53 -0500123 return 0;
124}
125
Johannes Bergf2753dd2009-04-14 10:09:24 +0200126/*
127 * __ieee80211_resume() is a static inline which just calls
128 * ieee80211_reconfig(), which is also needed for hardware
129 * hang/firmware failure/etc. recovery.
130 */