blob: 9d3d89abbb571030abc18a203bea4957a3f2c838 [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 Berg24487982009-04-23 18:52:52 +02005#include "driver-ops.h"
Bob Copeland665af4f2009-01-19 11:20:53 -05006#include "led.h"
7
8int __ieee80211_suspend(struct ieee80211_hw *hw)
9{
10 struct ieee80211_local *local = hw_to_local(hw);
11 struct ieee80211_sub_if_data *sdata;
12 struct ieee80211_if_init_conf conf;
13 struct sta_info *sta;
Johannes Berg7f0216a2009-03-14 09:42:49 +010014 unsigned long flags;
Bob Copeland665af4f2009-01-19 11:20:53 -050015
Johannes Berg25420602009-03-13 11:43:36 +010016 ieee80211_stop_queues_by_reason(hw,
17 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
18
Bob Copeland665af4f2009-01-19 11:20:53 -050019 flush_workqueue(local->hw.workqueue);
20
21 /* disable keys */
22 list_for_each_entry(sdata, &local->interfaces, list)
23 ieee80211_disable_keys(sdata);
24
Sujith722f0692009-03-17 08:50:06 +053025 /* Tear down aggregation sessions */
26
27 rcu_read_lock();
28
29 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
30 list_for_each_entry_rcu(sta, &local->sta_list, list) {
31 set_sta_flags(sta, WLAN_STA_SUSPEND);
32 ieee80211_sta_tear_down_BA_sessions(sta);
33 }
34 }
35
36 rcu_read_unlock();
37
Bob Copeland665af4f2009-01-19 11:20:53 -050038 /* remove STAs */
Johannes Berg7f0216a2009-03-14 09:42:49 +010039 if (local->ops->sta_notify) {
40 spin_lock_irqsave(&local->sta_lock, flags);
41 list_for_each_entry(sta, &local->sta_list, list) {
Bob Copeland665af4f2009-01-19 11:20:53 -050042 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
43 sdata = container_of(sdata->bss,
44 struct ieee80211_sub_if_data,
45 u.ap);
46
Johannes Berg24487982009-04-23 18:52:52 +020047 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_REMOVE,
48 &sta->sta);
Bob Copeland665af4f2009-01-19 11:20:53 -050049 }
Johannes Berg7f0216a2009-03-14 09:42:49 +010050 spin_unlock_irqrestore(&local->sta_lock, flags);
Bob Copeland665af4f2009-01-19 11:20:53 -050051 }
52
53 /* remove all interfaces */
54 list_for_each_entry(sdata, &local->interfaces, list) {
Bob Copeland665af4f2009-01-19 11:20:53 -050055 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
56 sdata->vif.type != NL80211_IFTYPE_MONITOR &&
57 netif_running(sdata->dev)) {
58 conf.vif = &sdata->vif;
59 conf.type = sdata->vif.type;
60 conf.mac_addr = sdata->dev->dev_addr;
Johannes Berg24487982009-04-23 18:52:52 +020061 drv_remove_interface(local, &conf);
Bob Copeland665af4f2009-01-19 11:20:53 -050062 }
63 }
64
Bob Copelande874e652009-01-24 13:21:14 -050065 /* flush again, in case driver queued work */
66 flush_workqueue(local->hw.workqueue);
67
Bob Copeland665af4f2009-01-19 11:20:53 -050068 /* stop hardware */
69 if (local->open_count) {
70 ieee80211_led_radio(local, false);
Johannes Berg24487982009-04-23 18:52:52 +020071 drv_stop(local);
Bob Copeland665af4f2009-01-19 11:20:53 -050072 }
73 return 0;
74}
75
Johannes Bergf2753dd2009-04-14 10:09:24 +020076/*
77 * __ieee80211_resume() is a static inline which just calls
78 * ieee80211_reconfig(), which is also needed for hardware
79 * hang/firmware failure/etc. recovery.
80 */