blob: 26fc98b3495bad5ad4c182c8ef21f291e2df23ed [file] [log] [blame]
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301/*
2 * Copyright (c) 2014 Qualcomm Atheros, Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include "ath9k.h"
18
19/* Set/change channels. If the channel is really being changed, it's done
20 * by reseting the chip. To accomplish this we must first cleanup any pending
21 * DMA, then restart stuff.
22 */
23static int ath_set_channel(struct ath_softc *sc)
24{
25 struct ath_hw *ah = sc->sc_ah;
26 struct ath_common *common = ath9k_hw_common(ah);
27 struct ieee80211_hw *hw = sc->hw;
28 struct ath9k_channel *hchan;
29 struct cfg80211_chan_def *chandef = &sc->cur_chan->chandef;
30 struct ieee80211_channel *chan = chandef->chan;
31 int pos = chan->hw_value;
32 int old_pos = -1;
33 int r;
34
35 if (test_bit(ATH_OP_INVALID, &common->op_flags))
36 return -EIO;
37
38 if (ah->curchan)
39 old_pos = ah->curchan - &ah->channels[0];
40
41 ath_dbg(common, CONFIG, "Set channel: %d MHz width: %d\n",
42 chan->center_freq, chandef->width);
43
44 /* update survey stats for the old channel before switching */
45 spin_lock_bh(&common->cc_lock);
46 ath_update_survey_stats(sc);
47 spin_unlock_bh(&common->cc_lock);
48
49 ath9k_cmn_get_channel(hw, ah, chandef);
50
51 /* If the operating channel changes, change the survey in-use flags
52 * along with it.
53 * Reset the survey data for the new channel, unless we're switching
54 * back to the operating channel from an off-channel operation.
55 */
56 if (!sc->cur_chan->offchannel && sc->cur_survey != &sc->survey[pos]) {
57 if (sc->cur_survey)
58 sc->cur_survey->filled &= ~SURVEY_INFO_IN_USE;
59
60 sc->cur_survey = &sc->survey[pos];
61
62 memset(sc->cur_survey, 0, sizeof(struct survey_info));
63 sc->cur_survey->filled |= SURVEY_INFO_IN_USE;
64 } else if (!(sc->survey[pos].filled & SURVEY_INFO_IN_USE)) {
65 memset(&sc->survey[pos], 0, sizeof(struct survey_info));
66 }
67
68 hchan = &sc->sc_ah->channels[pos];
69 r = ath_reset_internal(sc, hchan);
70 if (r)
71 return r;
72
73 /* The most recent snapshot of channel->noisefloor for the old
74 * channel is only available after the hardware reset. Copy it to
75 * the survey stats now.
76 */
77 if (old_pos >= 0)
78 ath_update_survey_nf(sc, old_pos);
79
80 /* Enable radar pulse detection if on a DFS channel. Spectral
81 * scanning and radar detection can not be used concurrently.
82 */
83 if (hw->conf.radar_enabled) {
84 u32 rxfilter;
85
86 /* set HW specific DFS configuration */
87 ath9k_hw_set_radar_params(ah);
88 rxfilter = ath9k_hw_getrxfilter(ah);
89 rxfilter |= ATH9K_RX_FILTER_PHYRADAR |
90 ATH9K_RX_FILTER_PHYERR;
91 ath9k_hw_setrxfilter(ah, rxfilter);
92 ath_dbg(common, DFS, "DFS enabled at freq %d\n",
93 chan->center_freq);
94 } else {
95 /* perform spectral scan if requested. */
96 if (test_bit(ATH_OP_SCANNING, &common->op_flags) &&
97 sc->spectral_mode == SPECTRAL_CHANSCAN)
98 ath9k_spectral_scan_trigger(hw);
99 }
100
101 return 0;
102}
103
Felix Fietkauc083ce92014-06-11 16:17:54 +0530104static bool
105ath_chanctx_send_vif_ps_frame(struct ath_softc *sc, struct ath_vif *avp,
106 bool powersave)
107{
108 struct ieee80211_vif *vif = avp->vif;
109 struct ieee80211_sta *sta = NULL;
110 struct ieee80211_hdr_3addr *nullfunc;
111 struct ath_tx_control txctl;
112 struct sk_buff *skb;
113 int band = sc->cur_chan->chandef.chan->band;
114
115 switch (vif->type) {
116 case NL80211_IFTYPE_STATION:
117 if (!vif->bss_conf.assoc)
118 return false;
119
120 skb = ieee80211_nullfunc_get(sc->hw, vif);
121 if (!skb)
122 return false;
123
124 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
125 if (powersave)
126 nullfunc->frame_control |=
127 cpu_to_le16(IEEE80211_FCTL_PM);
128
129 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
130 if (!ieee80211_tx_prepare_skb(sc->hw, vif, skb, band, &sta)) {
131 dev_kfree_skb_any(skb);
132 return false;
133 }
134 break;
135 default:
136 return false;
137 }
138
139 memset(&txctl, 0, sizeof(txctl));
140 txctl.txq = sc->tx.txq_map[IEEE80211_AC_VO];
141 txctl.sta = sta;
142 txctl.force_channel = true;
143 if (ath_tx_start(sc->hw, skb, &txctl)) {
144 ieee80211_free_txskb(sc->hw, skb);
145 return false;
146 }
147
148 return true;
149}
150
151void ath_chanctx_check_active(struct ath_softc *sc, struct ath_chanctx *ctx)
152{
153 struct ath_vif *avp;
154 bool active = false;
155
156 if (!ctx)
157 return;
158
159 list_for_each_entry(avp, &ctx->vifs, list) {
160 struct ieee80211_vif *vif = avp->vif;
161
162 switch (vif->type) {
163 case NL80211_IFTYPE_P2P_CLIENT:
164 case NL80211_IFTYPE_STATION:
165 if (vif->bss_conf.assoc)
166 active = true;
167 break;
168 default:
169 active = true;
170 break;
171 }
172 }
173 ctx->active = active;
174}
175
176static bool
177ath_chanctx_send_ps_frame(struct ath_softc *sc, bool powersave)
178{
179 struct ath_vif *avp;
180 bool sent = false;
181
182 rcu_read_lock();
183 list_for_each_entry(avp, &sc->cur_chan->vifs, list) {
184 if (ath_chanctx_send_vif_ps_frame(sc, avp, powersave))
185 sent = true;
186 }
187 rcu_read_unlock();
188
189 return sent;
190}
191
Felix Fietkaubff11762014-06-11 16:17:52 +0530192void ath_chanctx_work(struct work_struct *work)
193{
194 struct ath_softc *sc = container_of(work, struct ath_softc,
195 chanctx_work);
Felix Fietkauc083ce92014-06-11 16:17:54 +0530196 bool send_ps = false;
Felix Fietkaubff11762014-06-11 16:17:52 +0530197
198 mutex_lock(&sc->mutex);
199 spin_lock_bh(&sc->chan_lock);
200 if (!sc->next_chan) {
201 spin_unlock_bh(&sc->chan_lock);
202 mutex_unlock(&sc->mutex);
203 return;
204 }
205
206 if (sc->cur_chan != sc->next_chan) {
207 sc->cur_chan->stopped = true;
208 spin_unlock_bh(&sc->chan_lock);
209
210 __ath9k_flush(sc->hw, ~0, true);
211
Felix Fietkauc083ce92014-06-11 16:17:54 +0530212 if (ath_chanctx_send_ps_frame(sc, true))
213 __ath9k_flush(sc->hw, BIT(IEEE80211_AC_VO), false);
214
215 send_ps = true;
Felix Fietkaubff11762014-06-11 16:17:52 +0530216 spin_lock_bh(&sc->chan_lock);
217 }
218 sc->cur_chan = sc->next_chan;
219 sc->cur_chan->stopped = false;
220 sc->next_chan = NULL;
221 spin_unlock_bh(&sc->chan_lock);
222
223 if (sc->sc_ah->chip_fullsleep ||
224 memcmp(&sc->cur_chandef, &sc->cur_chan->chandef,
225 sizeof(sc->cur_chandef)))
226 ath_set_channel(sc);
Felix Fietkauc083ce92014-06-11 16:17:54 +0530227
228 if (send_ps)
229 ath_chanctx_send_ps_frame(sc, false);
230
Felix Fietkaubff11762014-06-11 16:17:52 +0530231 mutex_unlock(&sc->mutex);
232}
233
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530234void ath_chanctx_init(struct ath_softc *sc)
235{
236 struct ath_chanctx *ctx;
237 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
238 struct ieee80211_supported_band *sband;
239 struct ieee80211_channel *chan;
Felix Fietkau04535312014-06-11 16:17:51 +0530240 int i, j;
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530241
242 sband = &common->sbands[IEEE80211_BAND_2GHZ];
243 if (!sband->n_channels)
244 sband = &common->sbands[IEEE80211_BAND_5GHZ];
245
246 chan = &sband->channels[0];
247 for (i = 0; i < ATH9K_NUM_CHANCTX; i++) {
248 ctx = &sc->chanctx[i];
249 cfg80211_chandef_create(&ctx->chandef, chan, NL80211_CHAN_HT20);
250 INIT_LIST_HEAD(&ctx->vifs);
Felix Fietkaubc7e1be2014-06-11 16:17:50 +0530251 ctx->txpower = ATH_TXPOWER_MAX;
Felix Fietkau04535312014-06-11 16:17:51 +0530252 for (j = 0; j < ARRAY_SIZE(ctx->acq); j++)
253 INIT_LIST_HEAD(&ctx->acq[j]);
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530254 }
255 sc->cur_chan = &sc->chanctx[0];
256}
257
Felix Fietkaubff11762014-06-11 16:17:52 +0530258void ath_chanctx_switch(struct ath_softc *sc, struct ath_chanctx *ctx,
259 struct cfg80211_chan_def *chandef)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530260{
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530261
Felix Fietkaubff11762014-06-11 16:17:52 +0530262 spin_lock_bh(&sc->chan_lock);
263 sc->next_chan = ctx;
264 if (chandef)
265 ctx->chandef = *chandef;
266 spin_unlock_bh(&sc->chan_lock);
267 ieee80211_queue_work(sc->hw, &sc->chanctx_work);
268}
269
270void ath_chanctx_set_channel(struct ath_softc *sc, struct ath_chanctx *ctx,
271 struct cfg80211_chan_def *chandef)
272{
273 bool cur_chan;
274
275 spin_lock_bh(&sc->chan_lock);
276 if (chandef)
277 memcpy(&ctx->chandef, chandef, sizeof(*chandef));
278 cur_chan = sc->cur_chan == ctx;
279 spin_unlock_bh(&sc->chan_lock);
280
281 if (!cur_chan)
282 return;
283
284 ath_set_channel(sc);
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530285}