pm.c 3.6 KB
Newer Older
1 2 3 4
#include <net/mac80211.h>
#include <net/rtnetlink.h>

#include "ieee80211_i.h"
5
#include "mesh.h"
6
#include "driver-ops.h"
7 8
#include "led.h"

9
int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
10 11 12 13 14
{
	struct ieee80211_local *local = hw_to_local(hw);
	struct ieee80211_sub_if_data *sdata;
	struct sta_info *sta;

15 16 17
	if (!local->open_count)
		goto suspend;

18
	ieee80211_scan_cancel(local);
19

20 21
	ieee80211_dfs_cac_cancel(local);

22 23
	ieee80211_roc_purge(local, NULL);

24 25
	ieee80211_del_virtual_monitor(local);

26 27 28
	if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
		mutex_lock(&local->sta_mtx);
		list_for_each_entry(sta, &local->sta_list, list) {
J
Johannes Berg 已提交
29
			set_sta_flag(sta, WLAN_STA_BLOCK_BA);
30 31
			ieee80211_sta_tear_down_BA_sessions(
					sta, AGG_STOP_LOCAL_REQUEST);
32 33 34 35
		}
		mutex_unlock(&local->sta_mtx);
	}

36
	ieee80211_stop_queues_by_reason(hw,
37 38
					IEEE80211_MAX_QUEUE_MAP,
					IEEE80211_QUEUE_STOP_REASON_SUSPEND);
39

40
	/* flush out all packets */
41
	synchronize_net();
42

43
	ieee80211_flush_queues(local, NULL);
44

45 46 47 48
	local->quiescing = true;
	/* make quiescing visible to timers everywhere */
	mb();

49
	flush_workqueue(local->workqueue);
50

51 52 53 54 55 56 57 58 59 60
	/* Don't try to run timers while suspended. */
	del_timer_sync(&local->sta_cleanup);

	 /*
	 * Note that this particular timer doesn't need to be
	 * restarted at resume.
	 */
	cancel_work_sync(&local->dynamic_ps_enable_work);
	del_timer_sync(&local->dynamic_ps_timer);

61 62 63
	local->wowlan = wowlan && local->open_count;
	if (local->wowlan) {
		int err = drv_suspend(local, wowlan);
64
		if (err < 0) {
65
			local->quiescing = false;
66
			local->wowlan = false;
67 68 69 70 71 72 73 74 75
			if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
				mutex_lock(&local->sta_mtx);
				list_for_each_entry(sta,
						    &local->sta_list, list) {
					clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
				}
				mutex_unlock(&local->sta_mtx);
			}
			ieee80211_wake_queues_by_reason(hw,
76
					IEEE80211_MAX_QUEUE_MAP,
77
					IEEE80211_QUEUE_STOP_REASON_SUSPEND);
78
			return err;
79 80
		} else if (err > 0) {
			WARN_ON(err != 1);
81
			return err;
82 83
		} else {
			goto suspend;
84 85 86
		}
	}

87 88 89
	/* tear down aggregation sessions and remove STAs */
	mutex_lock(&local->sta_mtx);
	list_for_each_entry(sta, &local->sta_list, list) {
J
Johannes Berg 已提交
90 91 92 93 94
		if (sta->uploaded) {
			enum ieee80211_sta_state state;

			state = sta->sta_state;
			for (; state > IEEE80211_STA_NOTEXIST; state--)
95
				WARN_ON(drv_sta_state(local, sta->sdata, sta,
J
Johannes Berg 已提交
96 97
						      state, state - 1));
		}
98
	}
99
	mutex_unlock(&local->sta_mtx);
100

101
	/* remove all interfaces that were created in the driver */
102
	list_for_each_entry(sdata, &local->interfaces, list) {
103
		if (!ieee80211_sdata_running(sdata))
104
			continue;
105 106 107 108 109 110 111 112 113 114
		switch (sdata->vif.type) {
		case NL80211_IFTYPE_AP_VLAN:
		case NL80211_IFTYPE_MONITOR:
			continue;
		case NL80211_IFTYPE_STATION:
			ieee80211_mgd_quiesce(sdata);
			break;
		default:
			break;
		}
115

116
		drv_remove_interface(local, sdata);
117
	}
118

119 120 121 122 123
	/*
	 * We disconnected on all interfaces before suspend, all channel
	 * contexts should be released.
	 */
	WARN_ON(!list_empty(&local->chanctx_list));
124

J
Johannes Berg 已提交
125
	/* stop hardware - this must stop RX */
126 127
	if (local->open_count)
		ieee80211_stop_device(local);
J
Johannes Berg 已提交
128

129
 suspend:
130
	local->suspended = true;
J
Johannes Berg 已提交
131 132
	/* need suspended to be visible before quiescing is false */
	barrier();
133 134
	local->quiescing = false;

135 136 137
	return 0;
}

138 139 140 141 142
/*
 * __ieee80211_resume() is a static inline which just calls
 * ieee80211_reconfig(), which is also needed for hardware
 * hang/firmware failure/etc. recovery.
 */
143 144 145 146 147 148 149 150 151 152

void ieee80211_report_wowlan_wakeup(struct ieee80211_vif *vif,
				    struct cfg80211_wowlan_wakeup *wakeup,
				    gfp_t gfp)
{
	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);

	cfg80211_report_wowlan_wakeup(&sdata->wdev, wakeup, gfp);
}
EXPORT_SYMBOL(ieee80211_report_wowlan_wakeup);