blob: cb6c48be124508d2135d62a66154fb1e7bfc987c [file] [log] [blame]
Jouni Malinen8ca21f02009-03-03 19:23:27 +02001/*
2 * Copyright (c) 2008-2009 Atheros Communications 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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
18
Jouni Malinen8ca21f02009-03-03 19:23:27 +020019#include "ath9k.h"
20
21struct ath9k_vif_iter_data {
Felix Fietkau31a01642010-09-14 18:37:19 +020022 const u8 *hw_macaddr;
23 u8 mask[ETH_ALEN];
Jouni Malinen8ca21f02009-03-03 19:23:27 +020024};
25
26static void ath9k_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
27{
28 struct ath9k_vif_iter_data *iter_data = data;
Felix Fietkau31a01642010-09-14 18:37:19 +020029 int i;
Jouni Malinen8ca21f02009-03-03 19:23:27 +020030
Felix Fietkau31a01642010-09-14 18:37:19 +020031 for (i = 0; i < ETH_ALEN; i++)
32 iter_data->mask[i] &= ~(iter_data->hw_macaddr[i] ^ mac[i]);
Jouni Malinen8ca21f02009-03-03 19:23:27 +020033}
34
Felix Fietkau31a01642010-09-14 18:37:19 +020035void ath9k_set_bssid_mask(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Jouni Malinen8ca21f02009-03-03 19:23:27 +020036{
Jouni Malinenbce048d2009-03-03 19:23:28 +020037 struct ath_wiphy *aphy = hw->priv;
38 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguez15107182009-09-10 09:22:37 -070039 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Jouni Malinen8ca21f02009-03-03 19:23:27 +020040 struct ath9k_vif_iter_data iter_data;
Felix Fietkau31a01642010-09-14 18:37:19 +020041 int i;
Jouni Malinen8ca21f02009-03-03 19:23:27 +020042
43 /*
Felix Fietkau31a01642010-09-14 18:37:19 +020044 * Use the hardware MAC address as reference, the hardware uses it
45 * together with the BSSID mask when matching addresses.
Jouni Malinen8ca21f02009-03-03 19:23:27 +020046 */
Felix Fietkau31a01642010-09-14 18:37:19 +020047 iter_data.hw_macaddr = common->macaddr;
48 memset(&iter_data.mask, 0xff, ETH_ALEN);
49
50 if (vif)
51 ath9k_vif_iter(&iter_data, vif->addr, vif);
Jouni Malinen8ca21f02009-03-03 19:23:27 +020052
53 /* Get list of all active MAC addresses */
Jouni Malinenc52f33d2009-03-03 19:23:29 +020054 spin_lock_bh(&sc->wiphy_lock);
55 ieee80211_iterate_active_interfaces_atomic(sc->hw, ath9k_vif_iter,
Jouni Malinen8ca21f02009-03-03 19:23:27 +020056 &iter_data);
Jouni Malinenc52f33d2009-03-03 19:23:29 +020057 for (i = 0; i < sc->num_sec_wiphy; i++) {
58 if (sc->sec_wiphy[i] == NULL)
59 continue;
60 ieee80211_iterate_active_interfaces_atomic(
61 sc->sec_wiphy[i]->hw, ath9k_vif_iter, &iter_data);
62 }
63 spin_unlock_bh(&sc->wiphy_lock);
Jouni Malinen8ca21f02009-03-03 19:23:27 +020064
Felix Fietkau31a01642010-09-14 18:37:19 +020065 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -070066 ath_hw_setbssidmask(common);
Jouni Malinen8ca21f02009-03-03 19:23:27 +020067}
Jouni Malinenc52f33d2009-03-03 19:23:29 +020068
69int ath9k_wiphy_add(struct ath_softc *sc)
70{
71 int i, error;
72 struct ath_wiphy *aphy;
Luis R. Rodriguez15107182009-09-10 09:22:37 -070073 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Jouni Malinenc52f33d2009-03-03 19:23:29 +020074 struct ieee80211_hw *hw;
75 u8 addr[ETH_ALEN];
76
77 hw = ieee80211_alloc_hw(sizeof(struct ath_wiphy), &ath9k_ops);
78 if (hw == NULL)
79 return -ENOMEM;
80
81 spin_lock_bh(&sc->wiphy_lock);
82 for (i = 0; i < sc->num_sec_wiphy; i++) {
83 if (sc->sec_wiphy[i] == NULL)
84 break;
85 }
86
87 if (i == sc->num_sec_wiphy) {
88 /* No empty slot available; increase array length */
89 struct ath_wiphy **n;
90 n = krealloc(sc->sec_wiphy,
91 (sc->num_sec_wiphy + 1) *
92 sizeof(struct ath_wiphy *),
93 GFP_ATOMIC);
94 if (n == NULL) {
95 spin_unlock_bh(&sc->wiphy_lock);
96 ieee80211_free_hw(hw);
97 return -ENOMEM;
98 }
99 n[i] = NULL;
100 sc->sec_wiphy = n;
101 sc->num_sec_wiphy++;
102 }
103
104 SET_IEEE80211_DEV(hw, sc->dev);
105
106 aphy = hw->priv;
107 aphy->sc = sc;
108 aphy->hw = hw;
109 sc->sec_wiphy[i] = aphy;
Felix Fietkau9fa23e12010-10-15 20:03:31 +0200110 aphy->last_rssi = ATH_RSSI_DUMMY_MARKER;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200111 spin_unlock_bh(&sc->wiphy_lock);
112
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700113 memcpy(addr, common->macaddr, ETH_ALEN);
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200114 addr[0] |= 0x02; /* Locally managed address */
115 /*
116 * XOR virtual wiphy index into the least significant bits to generate
117 * a different MAC address for each virtual wiphy.
118 */
119 addr[5] ^= i & 0xff;
120 addr[4] ^= (i & 0xff00) >> 8;
121 addr[3] ^= (i & 0xff0000) >> 16;
122
123 SET_IEEE80211_PERM_ADDR(hw, addr);
124
Sujith285f2dd2010-01-08 10:36:07 +0530125 ath9k_set_hw_capab(sc, hw);
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200126
127 error = ieee80211_register_hw(hw);
128
Jouni Malinenf98c3bd2009-03-03 19:23:39 +0200129 if (error == 0) {
130 /* Make sure wiphy scheduler is started (if enabled) */
131 ath9k_wiphy_set_scheduler(sc, sc->wiphy_scheduler_int);
132 }
133
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200134 return error;
135}
136
137int ath9k_wiphy_del(struct ath_wiphy *aphy)
138{
139 struct ath_softc *sc = aphy->sc;
140 int i;
141
142 spin_lock_bh(&sc->wiphy_lock);
143 for (i = 0; i < sc->num_sec_wiphy; i++) {
144 if (aphy == sc->sec_wiphy[i]) {
145 sc->sec_wiphy[i] = NULL;
146 spin_unlock_bh(&sc->wiphy_lock);
147 ieee80211_unregister_hw(aphy->hw);
148 ieee80211_free_hw(aphy->hw);
149 return 0;
150 }
151 }
152 spin_unlock_bh(&sc->wiphy_lock);
153 return -ENOENT;
154}
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200155
156static int ath9k_send_nullfunc(struct ath_wiphy *aphy,
157 struct ieee80211_vif *vif, const u8 *bssid,
158 int ps)
159{
160 struct ath_softc *sc = aphy->sc;
161 struct ath_tx_control txctl;
162 struct sk_buff *skb;
163 struct ieee80211_hdr *hdr;
164 __le16 fc;
165 struct ieee80211_tx_info *info;
166
167 skb = dev_alloc_skb(24);
168 if (skb == NULL)
169 return -ENOMEM;
170 hdr = (struct ieee80211_hdr *) skb_put(skb, 24);
171 memset(hdr, 0, 24);
172 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
173 IEEE80211_FCTL_TODS);
174 if (ps)
175 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
176 hdr->frame_control = fc;
177 memcpy(hdr->addr1, bssid, ETH_ALEN);
178 memcpy(hdr->addr2, aphy->hw->wiphy->perm_addr, ETH_ALEN);
179 memcpy(hdr->addr3, bssid, ETH_ALEN);
180
181 info = IEEE80211_SKB_CB(skb);
182 memset(info, 0, sizeof(*info));
183 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS;
184 info->control.vif = vif;
185 info->control.rates[0].idx = 0;
186 info->control.rates[0].count = 4;
187 info->control.rates[1].idx = -1;
188
189 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau1d2231e2010-06-12 00:33:51 -0400190 txctl.txq = &sc->tx.txq[sc->tx.hwq_map[WME_AC_VO]];
Pavel Roskinc81494d2010-03-31 18:05:25 -0400191 txctl.frame_type = ps ? ATH9K_IFT_PAUSE : ATH9K_IFT_UNPAUSE;
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200192
193 if (ath_tx_start(aphy->hw, skb, &txctl) != 0)
194 goto exit;
195
196 return 0;
197exit:
198 dev_kfree_skb_any(skb);
199 return -1;
200}
201
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200202static bool __ath9k_wiphy_pausing(struct ath_softc *sc)
203{
204 int i;
205 if (sc->pri_wiphy->state == ATH_WIPHY_PAUSING)
206 return true;
207 for (i = 0; i < sc->num_sec_wiphy; i++) {
208 if (sc->sec_wiphy[i] &&
209 sc->sec_wiphy[i]->state == ATH_WIPHY_PAUSING)
210 return true;
211 }
212 return false;
213}
214
215static bool ath9k_wiphy_pausing(struct ath_softc *sc)
216{
217 bool ret;
218 spin_lock_bh(&sc->wiphy_lock);
219 ret = __ath9k_wiphy_pausing(sc);
220 spin_unlock_bh(&sc->wiphy_lock);
221 return ret;
222}
223
Jouni Malinen8089cc42009-03-03 19:23:38 +0200224static bool __ath9k_wiphy_scanning(struct ath_softc *sc)
225{
226 int i;
227 if (sc->pri_wiphy->state == ATH_WIPHY_SCAN)
228 return true;
229 for (i = 0; i < sc->num_sec_wiphy; i++) {
230 if (sc->sec_wiphy[i] &&
231 sc->sec_wiphy[i]->state == ATH_WIPHY_SCAN)
232 return true;
233 }
234 return false;
235}
236
237bool ath9k_wiphy_scanning(struct ath_softc *sc)
238{
239 bool ret;
240 spin_lock_bh(&sc->wiphy_lock);
241 ret = __ath9k_wiphy_scanning(sc);
242 spin_unlock_bh(&sc->wiphy_lock);
243 return ret;
244}
245
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200246static int __ath9k_wiphy_unpause(struct ath_wiphy *aphy);
247
248/* caller must hold wiphy_lock */
249static void __ath9k_wiphy_unpause_ch(struct ath_wiphy *aphy)
250{
251 if (aphy == NULL)
252 return;
253 if (aphy->chan_idx != aphy->sc->chan_idx)
254 return; /* wiphy not on the selected channel */
255 __ath9k_wiphy_unpause(aphy);
256}
257
258static void ath9k_wiphy_unpause_channel(struct ath_softc *sc)
259{
260 int i;
261 spin_lock_bh(&sc->wiphy_lock);
262 __ath9k_wiphy_unpause_ch(sc->pri_wiphy);
263 for (i = 0; i < sc->num_sec_wiphy; i++)
264 __ath9k_wiphy_unpause_ch(sc->sec_wiphy[i]);
265 spin_unlock_bh(&sc->wiphy_lock);
266}
267
268void ath9k_wiphy_chan_work(struct work_struct *work)
269{
270 struct ath_softc *sc = container_of(work, struct ath_softc, chan_work);
Luis R. Rodriguez1bdf6c32009-10-28 13:39:40 -0700271 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200272 struct ath_wiphy *aphy = sc->next_wiphy;
273
274 if (aphy == NULL)
275 return;
276
277 /*
278 * All pending interfaces paused; ready to change
279 * channels.
280 */
281
282 /* Change channels */
283 mutex_lock(&sc->mutex);
284 /* XXX: remove me eventually */
285 ath9k_update_ichannel(sc, aphy->hw,
286 &sc->sc_ah->channels[sc->chan_idx]);
Luis R. Rodriguez1bdf6c32009-10-28 13:39:40 -0700287
288 /* sync hw configuration for hw code */
289 common->hw = aphy->hw;
290
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200291 ath_update_chainmask(sc, sc->chan_is_ht);
292 if (ath_set_channel(sc, aphy->hw,
293 &sc->sc_ah->channels[sc->chan_idx]) < 0) {
294 printk(KERN_DEBUG "ath9k: Failed to set channel for new "
295 "virtual wiphy\n");
296 mutex_unlock(&sc->mutex);
297 return;
298 }
299 mutex_unlock(&sc->mutex);
300
301 ath9k_wiphy_unpause_channel(sc);
302}
303
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200304/*
305 * ath9k version of ieee80211_tx_status() for TX frames that are generated
306 * internally in the driver.
307 */
308void ath9k_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
309{
310 struct ath_wiphy *aphy = hw->priv;
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200311 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200312
Felix Fietkau827e69b2009-11-15 23:09:25 +0100313 if ((tx_info->pad[0] & ATH_TX_INFO_FRAME_TYPE_PAUSE) &&
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200314 aphy->state == ATH_WIPHY_PAUSING) {
Felix Fietkau827e69b2009-11-15 23:09:25 +0100315 if (!(tx_info->flags & IEEE80211_TX_STAT_ACK)) {
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200316 printk(KERN_DEBUG "ath9k: %s: no ACK for pause "
317 "frame\n", wiphy_name(hw->wiphy));
318 /*
319 * The AP did not reply; ignore this to allow us to
320 * continue.
321 */
322 }
323 aphy->state = ATH_WIPHY_PAUSED;
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200324 if (!ath9k_wiphy_pausing(aphy->sc)) {
325 /*
326 * Drop from tasklet to work to allow mutex for channel
327 * change.
328 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400329 ieee80211_queue_work(aphy->sc->hw,
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200330 &aphy->sc->chan_work);
331 }
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200332 }
333
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200334 dev_kfree_skb(skb);
335}
336
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200337static void ath9k_mark_paused(struct ath_wiphy *aphy)
338{
339 struct ath_softc *sc = aphy->sc;
340 aphy->state = ATH_WIPHY_PAUSED;
341 if (!__ath9k_wiphy_pausing(sc))
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400342 ieee80211_queue_work(sc->hw, &sc->chan_work);
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200343}
344
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200345static void ath9k_pause_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
346{
347 struct ath_wiphy *aphy = data;
348 struct ath_vif *avp = (void *) vif->drv_priv;
349
350 switch (vif->type) {
351 case NL80211_IFTYPE_STATION:
352 if (!vif->bss_conf.assoc) {
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200353 ath9k_mark_paused(aphy);
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200354 break;
355 }
356 /* TODO: could avoid this if already in PS mode */
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200357 if (ath9k_send_nullfunc(aphy, vif, avp->bssid, 1)) {
358 printk(KERN_DEBUG "%s: failed to send PS nullfunc\n",
359 __func__);
360 ath9k_mark_paused(aphy);
361 }
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200362 break;
363 case NL80211_IFTYPE_AP:
364 /* Beacon transmission is paused by aphy->state change */
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200365 ath9k_mark_paused(aphy);
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200366 break;
367 default:
368 break;
369 }
370}
371
372/* caller must hold wiphy_lock */
373static int __ath9k_wiphy_pause(struct ath_wiphy *aphy)
374{
375 ieee80211_stop_queues(aphy->hw);
376 aphy->state = ATH_WIPHY_PAUSING;
377 /*
378 * TODO: handle PAUSING->PAUSED for the case where there are multiple
379 * active vifs (now we do it on the first vif getting ready; should be
380 * on the last)
381 */
382 ieee80211_iterate_active_interfaces_atomic(aphy->hw, ath9k_pause_iter,
383 aphy);
384 return 0;
385}
386
387int ath9k_wiphy_pause(struct ath_wiphy *aphy)
388{
389 int ret;
390 spin_lock_bh(&aphy->sc->wiphy_lock);
391 ret = __ath9k_wiphy_pause(aphy);
392 spin_unlock_bh(&aphy->sc->wiphy_lock);
393 return ret;
394}
395
396static void ath9k_unpause_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
397{
398 struct ath_wiphy *aphy = data;
399 struct ath_vif *avp = (void *) vif->drv_priv;
400
401 switch (vif->type) {
402 case NL80211_IFTYPE_STATION:
403 if (!vif->bss_conf.assoc)
404 break;
405 ath9k_send_nullfunc(aphy, vif, avp->bssid, 0);
406 break;
407 case NL80211_IFTYPE_AP:
408 /* Beacon transmission is re-enabled by aphy->state change */
409 break;
410 default:
411 break;
412 }
413}
414
415/* caller must hold wiphy_lock */
416static int __ath9k_wiphy_unpause(struct ath_wiphy *aphy)
417{
418 ieee80211_iterate_active_interfaces_atomic(aphy->hw,
419 ath9k_unpause_iter, aphy);
420 aphy->state = ATH_WIPHY_ACTIVE;
421 ieee80211_wake_queues(aphy->hw);
422 return 0;
423}
424
425int ath9k_wiphy_unpause(struct ath_wiphy *aphy)
426{
427 int ret;
428 spin_lock_bh(&aphy->sc->wiphy_lock);
429 ret = __ath9k_wiphy_unpause(aphy);
430 spin_unlock_bh(&aphy->sc->wiphy_lock);
431 return ret;
432}
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200433
Jouni Malinen7ec3e512009-03-03 19:23:37 +0200434static void __ath9k_wiphy_mark_all_paused(struct ath_softc *sc)
435{
436 int i;
437 if (sc->pri_wiphy->state != ATH_WIPHY_INACTIVE)
438 sc->pri_wiphy->state = ATH_WIPHY_PAUSED;
439 for (i = 0; i < sc->num_sec_wiphy; i++) {
440 if (sc->sec_wiphy[i] &&
441 sc->sec_wiphy[i]->state != ATH_WIPHY_INACTIVE)
442 sc->sec_wiphy[i]->state = ATH_WIPHY_PAUSED;
443 }
444}
445
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200446/* caller must hold wiphy_lock */
447static void __ath9k_wiphy_pause_all(struct ath_softc *sc)
448{
449 int i;
450 if (sc->pri_wiphy->state == ATH_WIPHY_ACTIVE)
451 __ath9k_wiphy_pause(sc->pri_wiphy);
452 for (i = 0; i < sc->num_sec_wiphy; i++) {
453 if (sc->sec_wiphy[i] &&
454 sc->sec_wiphy[i]->state == ATH_WIPHY_ACTIVE)
455 __ath9k_wiphy_pause(sc->sec_wiphy[i]);
456 }
457}
458
459int ath9k_wiphy_select(struct ath_wiphy *aphy)
460{
461 struct ath_softc *sc = aphy->sc;
462 bool now;
463
464 spin_lock_bh(&sc->wiphy_lock);
Jouni Malinen8089cc42009-03-03 19:23:38 +0200465 if (__ath9k_wiphy_scanning(sc)) {
466 /*
467 * For now, we are using mac80211 sw scan and it expects to
468 * have full control over channel changes, so avoid wiphy
469 * scheduling during a scan. This could be optimized if the
470 * scanning control were moved into the driver.
471 */
472 spin_unlock_bh(&sc->wiphy_lock);
473 return -EBUSY;
474 }
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200475 if (__ath9k_wiphy_pausing(sc)) {
Jouni Malinen7ec3e512009-03-03 19:23:37 +0200476 if (sc->wiphy_select_failures == 0)
477 sc->wiphy_select_first_fail = jiffies;
478 sc->wiphy_select_failures++;
479 if (time_after(jiffies, sc->wiphy_select_first_fail + HZ / 2))
480 {
481 printk(KERN_DEBUG "ath9k: Previous wiphy select timed "
482 "out; disable/enable hw to recover\n");
483 __ath9k_wiphy_mark_all_paused(sc);
484 /*
485 * TODO: this workaround to fix hardware is unlikely to
486 * be specific to virtual wiphy changes. It can happen
487 * on normal channel change, too, and as such, this
488 * should really be made more generic. For example,
489 * tricker radio disable/enable on GTT interrupt burst
490 * (say, 10 GTT interrupts received without any TX
491 * frame being completed)
492 */
493 spin_unlock_bh(&sc->wiphy_lock);
Luis R. Rodriguez68a89112009-11-02 14:35:42 -0800494 ath_radio_disable(sc, aphy->hw);
495 ath_radio_enable(sc, aphy->hw);
496 /* Only the primary wiphy hw is used for queuing work */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400497 ieee80211_queue_work(aphy->sc->hw,
Jouni Malinen7ec3e512009-03-03 19:23:37 +0200498 &aphy->sc->chan_work);
499 return -EBUSY; /* previous select still in progress */
500 }
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200501 spin_unlock_bh(&sc->wiphy_lock);
502 return -EBUSY; /* previous select still in progress */
503 }
Jouni Malinen7ec3e512009-03-03 19:23:37 +0200504 sc->wiphy_select_failures = 0;
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200505
506 /* Store the new channel */
507 sc->chan_idx = aphy->chan_idx;
508 sc->chan_is_ht = aphy->chan_is_ht;
509 sc->next_wiphy = aphy;
510
511 __ath9k_wiphy_pause_all(sc);
512 now = !__ath9k_wiphy_pausing(aphy->sc);
513 spin_unlock_bh(&sc->wiphy_lock);
514
515 if (now) {
516 /* Ready to request channel change immediately */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400517 ieee80211_queue_work(aphy->sc->hw, &aphy->sc->chan_work);
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200518 }
519
520 /*
521 * wiphys will be unpaused in ath9k_tx_status() once channel has been
522 * changed if any wiphy needs time to become paused.
523 */
524
525 return 0;
526}
Jouni Malinen9580a222009-03-03 19:23:33 +0200527
528bool ath9k_wiphy_started(struct ath_softc *sc)
529{
530 int i;
531 spin_lock_bh(&sc->wiphy_lock);
532 if (sc->pri_wiphy->state != ATH_WIPHY_INACTIVE) {
533 spin_unlock_bh(&sc->wiphy_lock);
534 return true;
535 }
536 for (i = 0; i < sc->num_sec_wiphy; i++) {
537 if (sc->sec_wiphy[i] &&
538 sc->sec_wiphy[i]->state != ATH_WIPHY_INACTIVE) {
539 spin_unlock_bh(&sc->wiphy_lock);
540 return true;
541 }
542 }
543 spin_unlock_bh(&sc->wiphy_lock);
544 return false;
545}
Jouni Malinen18eb62f2009-03-03 19:23:35 +0200546
547static void ath9k_wiphy_pause_chan(struct ath_wiphy *aphy,
548 struct ath_wiphy *selected)
549{
Jouni Malinen8089cc42009-03-03 19:23:38 +0200550 if (selected->state == ATH_WIPHY_SCAN) {
551 if (aphy == selected)
552 return;
553 /*
554 * Pause all other wiphys for the duration of the scan even if
555 * they are on the current channel now.
556 */
557 } else if (aphy->chan_idx == selected->chan_idx)
Jouni Malinen18eb62f2009-03-03 19:23:35 +0200558 return;
559 aphy->state = ATH_WIPHY_PAUSED;
560 ieee80211_stop_queues(aphy->hw);
561}
562
563void ath9k_wiphy_pause_all_forced(struct ath_softc *sc,
564 struct ath_wiphy *selected)
565{
566 int i;
567 spin_lock_bh(&sc->wiphy_lock);
568 if (sc->pri_wiphy->state == ATH_WIPHY_ACTIVE)
569 ath9k_wiphy_pause_chan(sc->pri_wiphy, selected);
570 for (i = 0; i < sc->num_sec_wiphy; i++) {
571 if (sc->sec_wiphy[i] &&
572 sc->sec_wiphy[i]->state == ATH_WIPHY_ACTIVE)
573 ath9k_wiphy_pause_chan(sc->sec_wiphy[i], selected);
574 }
575 spin_unlock_bh(&sc->wiphy_lock);
576}
Jouni Malinenf98c3bd2009-03-03 19:23:39 +0200577
578void ath9k_wiphy_work(struct work_struct *work)
579{
580 struct ath_softc *sc = container_of(work, struct ath_softc,
581 wiphy_work.work);
582 struct ath_wiphy *aphy = NULL;
583 bool first = true;
584
585 spin_lock_bh(&sc->wiphy_lock);
586
587 if (sc->wiphy_scheduler_int == 0) {
588 /* wiphy scheduler is disabled */
589 spin_unlock_bh(&sc->wiphy_lock);
590 return;
591 }
592
593try_again:
594 sc->wiphy_scheduler_index++;
595 while (sc->wiphy_scheduler_index <= sc->num_sec_wiphy) {
596 aphy = sc->sec_wiphy[sc->wiphy_scheduler_index - 1];
597 if (aphy && aphy->state != ATH_WIPHY_INACTIVE)
598 break;
599
600 sc->wiphy_scheduler_index++;
601 aphy = NULL;
602 }
603 if (aphy == NULL) {
604 sc->wiphy_scheduler_index = 0;
605 if (sc->pri_wiphy->state == ATH_WIPHY_INACTIVE) {
606 if (first) {
607 first = false;
608 goto try_again;
609 }
610 /* No wiphy is ready to be scheduled */
611 } else
612 aphy = sc->pri_wiphy;
613 }
614
615 spin_unlock_bh(&sc->wiphy_lock);
616
617 if (aphy &&
618 aphy->state != ATH_WIPHY_ACTIVE && aphy->state != ATH_WIPHY_SCAN &&
619 ath9k_wiphy_select(aphy)) {
620 printk(KERN_DEBUG "ath9k: Failed to schedule virtual wiphy "
621 "change\n");
622 }
623
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400624 ieee80211_queue_delayed_work(sc->hw,
625 &sc->wiphy_work,
626 sc->wiphy_scheduler_int);
Jouni Malinenf98c3bd2009-03-03 19:23:39 +0200627}
628
629void ath9k_wiphy_set_scheduler(struct ath_softc *sc, unsigned int msec_int)
630{
631 cancel_delayed_work_sync(&sc->wiphy_work);
632 sc->wiphy_scheduler_int = msecs_to_jiffies(msec_int);
633 if (sc->wiphy_scheduler_int)
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400634 ieee80211_queue_delayed_work(sc->hw, &sc->wiphy_work,
635 sc->wiphy_scheduler_int);
Jouni Malinenf98c3bd2009-03-03 19:23:39 +0200636}
Luis R. Rodriguez64839172009-07-14 20:22:53 -0400637
638/* caller must hold wiphy_lock */
639bool ath9k_all_wiphys_idle(struct ath_softc *sc)
640{
641 unsigned int i;
Luis R. Rodriguez194b7c12009-10-29 10:41:15 -0700642 if (!sc->pri_wiphy->idle)
Luis R. Rodriguez64839172009-07-14 20:22:53 -0400643 return false;
Luis R. Rodriguez64839172009-07-14 20:22:53 -0400644 for (i = 0; i < sc->num_sec_wiphy; i++) {
645 struct ath_wiphy *aphy = sc->sec_wiphy[i];
646 if (!aphy)
647 continue;
Luis R. Rodriguez194b7c12009-10-29 10:41:15 -0700648 if (!aphy->idle)
Luis R. Rodriguez64839172009-07-14 20:22:53 -0400649 return false;
650 }
651 return true;
652}
Luis R. Rodriguez194b7c12009-10-29 10:41:15 -0700653
654/* caller must hold wiphy_lock */
655void ath9k_set_wiphy_idle(struct ath_wiphy *aphy, bool idle)
656{
657 struct ath_softc *sc = aphy->sc;
658
659 aphy->idle = idle;
660 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_CONFIG,
661 "Marking %s as %s\n",
662 wiphy_name(aphy->hw->wiphy),
663 idle ? "idle" : "not-idle");
664}
Luis R. Rodriguezf52de032009-11-02 17:09:12 -0800665/* Only bother starting a queue on an active virtual wiphy */
Vasanthakumar Thiagarajan68e8f2f2010-07-22 02:24:11 -0700666bool ath_mac80211_start_queue(struct ath_softc *sc, u16 skb_queue)
Luis R. Rodriguezf52de032009-11-02 17:09:12 -0800667{
668 struct ieee80211_hw *hw = sc->pri_wiphy->hw;
669 unsigned int i;
Vasanthakumar Thiagarajan68e8f2f2010-07-22 02:24:11 -0700670 bool txq_started = false;
Luis R. Rodriguezf52de032009-11-02 17:09:12 -0800671
672 spin_lock_bh(&sc->wiphy_lock);
673
674 /* Start the primary wiphy */
675 if (sc->pri_wiphy->state == ATH_WIPHY_ACTIVE) {
676 ieee80211_wake_queue(hw, skb_queue);
Vasanthakumar Thiagarajan68e8f2f2010-07-22 02:24:11 -0700677 txq_started = true;
Luis R. Rodriguezf52de032009-11-02 17:09:12 -0800678 goto unlock;
679 }
680
681 /* Now start the secondary wiphy queues */
682 for (i = 0; i < sc->num_sec_wiphy; i++) {
683 struct ath_wiphy *aphy = sc->sec_wiphy[i];
684 if (!aphy)
685 continue;
686 if (aphy->state != ATH_WIPHY_ACTIVE)
687 continue;
688
689 hw = aphy->hw;
690 ieee80211_wake_queue(hw, skb_queue);
Vasanthakumar Thiagarajan68e8f2f2010-07-22 02:24:11 -0700691 txq_started = true;
Luis R. Rodriguezf52de032009-11-02 17:09:12 -0800692 break;
693 }
694
695unlock:
696 spin_unlock_bh(&sc->wiphy_lock);
Vasanthakumar Thiagarajan68e8f2f2010-07-22 02:24:11 -0700697 return txq_started;
Luis R. Rodriguezf52de032009-11-02 17:09:12 -0800698}
699
700/* Go ahead and propagate information to all virtual wiphys, it won't hurt */
701void ath_mac80211_stop_queue(struct ath_softc *sc, u16 skb_queue)
702{
703 struct ieee80211_hw *hw = sc->pri_wiphy->hw;
704 unsigned int i;
705
706 spin_lock_bh(&sc->wiphy_lock);
707
708 /* Stop the primary wiphy */
709 ieee80211_stop_queue(hw, skb_queue);
710
711 /* Now stop the secondary wiphy queues */
712 for (i = 0; i < sc->num_sec_wiphy; i++) {
713 struct ath_wiphy *aphy = sc->sec_wiphy[i];
714 if (!aphy)
715 continue;
716 hw = aphy->hw;
717 ieee80211_stop_queue(hw, skb_queue);
718 }
719 spin_unlock_bh(&sc->wiphy_lock);
720}