2 * Copyright (c) 2008-2009 Atheros Communications Inc.
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.
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.
17 #include <linux/nl80211.h>
21 static char *dev_info = "ath9k";
23 MODULE_AUTHOR("Atheros Communications");
24 MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
25 MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
26 MODULE_LICENSE("Dual BSD/GPL");
28 static int modparam_nohwcrypt;
29 module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444);
30 MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption");
32 static unsigned int ath9k_debug = ATH_DBG_DEFAULT;
33 module_param_named(debug, ath9k_debug, uint, 0);
34 MODULE_PARM_DESC(debug, "Debugging mask");
36 /* We use the hw_value as an index into our private channel structure */
38 #define CHAN2G(_freq, _idx) { \
39 .center_freq = (_freq), \
44 #define CHAN5G(_freq, _idx) { \
45 .band = IEEE80211_BAND_5GHZ, \
46 .center_freq = (_freq), \
51 /* Some 2 GHz radios are actually tunable on 2312-2732
52 * on 5 MHz steps, we support the channels which we know
53 * we have calibration data for all cards though to make
55 static struct ieee80211_channel ath9k_2ghz_chantable[] = {
56 CHAN2G(2412, 0), /* Channel 1 */
57 CHAN2G(2417, 1), /* Channel 2 */
58 CHAN2G(2422, 2), /* Channel 3 */
59 CHAN2G(2427, 3), /* Channel 4 */
60 CHAN2G(2432, 4), /* Channel 5 */
61 CHAN2G(2437, 5), /* Channel 6 */
62 CHAN2G(2442, 6), /* Channel 7 */
63 CHAN2G(2447, 7), /* Channel 8 */
64 CHAN2G(2452, 8), /* Channel 9 */
65 CHAN2G(2457, 9), /* Channel 10 */
66 CHAN2G(2462, 10), /* Channel 11 */
67 CHAN2G(2467, 11), /* Channel 12 */
68 CHAN2G(2472, 12), /* Channel 13 */
69 CHAN2G(2484, 13), /* Channel 14 */
72 /* Some 5 GHz radios are actually tunable on XXXX-YYYY
73 * on 5 MHz steps, we support the channels which we know
74 * we have calibration data for all cards though to make
76 static struct ieee80211_channel ath9k_5ghz_chantable[] = {
77 /* _We_ call this UNII 1 */
78 CHAN5G(5180, 14), /* Channel 36 */
79 CHAN5G(5200, 15), /* Channel 40 */
80 CHAN5G(5220, 16), /* Channel 44 */
81 CHAN5G(5240, 17), /* Channel 48 */
82 /* _We_ call this UNII 2 */
83 CHAN5G(5260, 18), /* Channel 52 */
84 CHAN5G(5280, 19), /* Channel 56 */
85 CHAN5G(5300, 20), /* Channel 60 */
86 CHAN5G(5320, 21), /* Channel 64 */
87 /* _We_ call this "Middle band" */
88 CHAN5G(5500, 22), /* Channel 100 */
89 CHAN5G(5520, 23), /* Channel 104 */
90 CHAN5G(5540, 24), /* Channel 108 */
91 CHAN5G(5560, 25), /* Channel 112 */
92 CHAN5G(5580, 26), /* Channel 116 */
93 CHAN5G(5600, 27), /* Channel 120 */
94 CHAN5G(5620, 28), /* Channel 124 */
95 CHAN5G(5640, 29), /* Channel 128 */
96 CHAN5G(5660, 30), /* Channel 132 */
97 CHAN5G(5680, 31), /* Channel 136 */
98 CHAN5G(5700, 32), /* Channel 140 */
99 /* _We_ call this UNII 3 */
100 CHAN5G(5745, 33), /* Channel 149 */
101 CHAN5G(5765, 34), /* Channel 153 */
102 CHAN5G(5785, 35), /* Channel 157 */
103 CHAN5G(5805, 36), /* Channel 161 */
104 CHAN5G(5825, 37), /* Channel 165 */
107 /* Atheros hardware rate code addition for short premble */
108 #define SHPCHECK(__hw_rate, __flags) \
109 ((__flags & IEEE80211_RATE_SHORT_PREAMBLE) ? (__hw_rate | 0x04 ) : 0)
111 #define RATE(_bitrate, _hw_rate, _flags) { \
112 .bitrate = (_bitrate), \
114 .hw_value = (_hw_rate), \
115 .hw_value_short = (SHPCHECK(_hw_rate, _flags)) \
118 static struct ieee80211_rate ath9k_legacy_rates[] = {
120 RATE(20, 0x1a, IEEE80211_RATE_SHORT_PREAMBLE),
121 RATE(55, 0x19, IEEE80211_RATE_SHORT_PREAMBLE),
122 RATE(110, 0x18, IEEE80211_RATE_SHORT_PREAMBLE),
133 static void ath_cache_conf_rate(struct ath_softc *sc,
134 struct ieee80211_conf *conf)
136 switch (conf->channel->band) {
137 case IEEE80211_BAND_2GHZ:
138 if (conf_is_ht20(conf))
139 sc->cur_rate_mode = ATH9K_MODE_11NG_HT20;
140 else if (conf_is_ht40_minus(conf))
141 sc->cur_rate_mode = ATH9K_MODE_11NG_HT40MINUS;
142 else if (conf_is_ht40_plus(conf))
143 sc->cur_rate_mode = ATH9K_MODE_11NG_HT40PLUS;
145 sc->cur_rate_mode = ATH9K_MODE_11G;
147 case IEEE80211_BAND_5GHZ:
148 if (conf_is_ht20(conf))
149 sc->cur_rate_mode = ATH9K_MODE_11NA_HT20;
150 else if (conf_is_ht40_minus(conf))
151 sc->cur_rate_mode = ATH9K_MODE_11NA_HT40MINUS;
152 else if (conf_is_ht40_plus(conf))
153 sc->cur_rate_mode = ATH9K_MODE_11NA_HT40PLUS;
155 sc->cur_rate_mode = ATH9K_MODE_11A;
163 static void ath_update_txpow(struct ath_softc *sc)
165 struct ath_hw *ah = sc->sc_ah;
168 if (sc->curtxpow != sc->config.txpowlimit) {
169 ath9k_hw_set_txpowerlimit(ah, sc->config.txpowlimit);
170 /* read back in case value is clamped */
171 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
172 sc->curtxpow = txpow;
176 static u8 parse_mpdudensity(u8 mpdudensity)
179 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
180 * 0 for no restriction
189 switch (mpdudensity) {
195 /* Our lower layer calculations limit our precision to
211 static struct ath9k_channel *ath_get_curchannel(struct ath_softc *sc,
212 struct ieee80211_hw *hw)
214 struct ieee80211_channel *curchan = hw->conf.channel;
215 struct ath9k_channel *channel;
218 chan_idx = curchan->hw_value;
219 channel = &sc->sc_ah->channels[chan_idx];
220 ath9k_update_ichannel(sc, hw, channel);
224 static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
229 spin_lock_irqsave(&sc->sc_pm_lock, flags);
230 ret = ath9k_hw_setpower(sc->sc_ah, mode);
231 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
236 void ath9k_ps_wakeup(struct ath_softc *sc)
240 spin_lock_irqsave(&sc->sc_pm_lock, flags);
241 if (++sc->ps_usecount != 1)
244 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
247 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
250 void ath9k_ps_restore(struct ath_softc *sc)
254 spin_lock_irqsave(&sc->sc_pm_lock, flags);
255 if (--sc->ps_usecount != 0)
258 if (sc->ps_enabled &&
259 !(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
261 SC_OP_WAIT_FOR_PSPOLL_DATA |
262 SC_OP_WAIT_FOR_TX_ACK)))
263 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
266 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
270 * Set/change channels. If the channel is really being changed, it's done
271 * by reseting the chip. To accomplish this we must first cleanup any pending
272 * DMA, then restart stuff.
274 int ath_set_channel(struct ath_softc *sc, struct ieee80211_hw *hw,
275 struct ath9k_channel *hchan)
277 struct ath_hw *ah = sc->sc_ah;
278 struct ath_common *common = ath9k_hw_common(ah);
279 struct ieee80211_conf *conf = &common->hw->conf;
280 bool fastcc = true, stopped;
281 struct ieee80211_channel *channel = hw->conf.channel;
284 if (sc->sc_flags & SC_OP_INVALID)
290 * This is only performed if the channel settings have
293 * To switch channels clear any pending DMA operations;
294 * wait long enough for the RX fifo to drain, reset the
295 * hardware at the new frequency, and then re-enable
296 * the relevant bits of the h/w.
298 ath9k_hw_set_interrupts(ah, 0);
299 ath_drain_all_txq(sc, false);
300 stopped = ath_stoprecv(sc);
302 /* XXX: do not flush receive queue here. We don't want
303 * to flush data frames already in queue because of
304 * changing channel. */
306 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
309 ath_print(common, ATH_DBG_CONFIG,
310 "(%u MHz) -> (%u MHz), conf_is_ht40: %d\n",
311 sc->sc_ah->curchan->channel,
312 channel->center_freq, conf_is_ht40(conf));
314 spin_lock_bh(&sc->sc_resetlock);
316 r = ath9k_hw_reset(ah, hchan, fastcc);
318 ath_print(common, ATH_DBG_FATAL,
319 "Unable to reset channel (%u Mhz) "
321 channel->center_freq, r);
322 spin_unlock_bh(&sc->sc_resetlock);
325 spin_unlock_bh(&sc->sc_resetlock);
327 sc->sc_flags &= ~SC_OP_FULL_RESET;
329 if (ath_startrecv(sc) != 0) {
330 ath_print(common, ATH_DBG_FATAL,
331 "Unable to restart recv logic\n");
336 ath_cache_conf_rate(sc, &hw->conf);
337 ath_update_txpow(sc);
338 ath9k_hw_set_interrupts(ah, sc->imask);
341 ath9k_ps_restore(sc);
346 * This routine performs the periodic noise floor calibration function
347 * that is used to adjust and optimize the chip performance. This
348 * takes environmental changes (location, temperature) into account.
349 * When the task is complete, it reschedules itself depending on the
350 * appropriate interval that was calculated.
352 static void ath_ani_calibrate(unsigned long data)
354 struct ath_softc *sc = (struct ath_softc *)data;
355 struct ath_hw *ah = sc->sc_ah;
356 struct ath_common *common = ath9k_hw_common(ah);
357 bool longcal = false;
358 bool shortcal = false;
359 bool aniflag = false;
360 unsigned int timestamp = jiffies_to_msecs(jiffies);
361 u32 cal_interval, short_cal_interval;
363 short_cal_interval = (ah->opmode == NL80211_IFTYPE_AP) ?
364 ATH_AP_SHORT_CALINTERVAL : ATH_STA_SHORT_CALINTERVAL;
367 * don't calibrate when we're scanning.
368 * we are most likely not on our home channel.
370 spin_lock(&sc->ani_lock);
371 if (sc->sc_flags & SC_OP_SCANNING)
374 /* Only calibrate if awake */
375 if (sc->sc_ah->power_mode != ATH9K_PM_AWAKE)
380 /* Long calibration runs independently of short calibration. */
381 if ((timestamp - common->ani.longcal_timer) >= ATH_LONG_CALINTERVAL) {
383 ath_print(common, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
384 common->ani.longcal_timer = timestamp;
387 /* Short calibration applies only while caldone is false */
388 if (!common->ani.caldone) {
389 if ((timestamp - common->ani.shortcal_timer) >= short_cal_interval) {
391 ath_print(common, ATH_DBG_ANI,
392 "shortcal @%lu\n", jiffies);
393 common->ani.shortcal_timer = timestamp;
394 common->ani.resetcal_timer = timestamp;
397 if ((timestamp - common->ani.resetcal_timer) >=
398 ATH_RESTART_CALINTERVAL) {
399 common->ani.caldone = ath9k_hw_reset_calvalid(ah);
400 if (common->ani.caldone)
401 common->ani.resetcal_timer = timestamp;
405 /* Verify whether we must check ANI */
406 if ((timestamp - common->ani.checkani_timer) >= ATH_ANI_POLLINTERVAL) {
408 common->ani.checkani_timer = timestamp;
411 /* Skip all processing if there's nothing to do. */
412 if (longcal || shortcal || aniflag) {
413 /* Call ANI routine if necessary */
415 ath9k_hw_ani_monitor(ah, ah->curchan);
417 /* Perform calibration if necessary */
418 if (longcal || shortcal) {
419 common->ani.caldone =
420 ath9k_hw_calibrate(ah,
422 common->rx_chainmask,
426 common->ani.noise_floor = ath9k_hw_getchan_noise(ah,
429 ath_print(common, ATH_DBG_ANI,
430 " calibrate chan %u/%x nf: %d\n",
431 ah->curchan->channel,
432 ah->curchan->channelFlags,
433 common->ani.noise_floor);
437 ath9k_ps_restore(sc);
440 spin_unlock(&sc->ani_lock);
442 * Set timer interval based on previous results.
443 * The interval must be the shortest necessary to satisfy ANI,
444 * short calibration and long calibration.
446 cal_interval = ATH_LONG_CALINTERVAL;
447 if (sc->sc_ah->config.enable_ani)
448 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
449 if (!common->ani.caldone)
450 cal_interval = min(cal_interval, (u32)short_cal_interval);
452 mod_timer(&common->ani.timer, jiffies + msecs_to_jiffies(cal_interval));
455 static void ath_start_ani(struct ath_common *common)
457 unsigned long timestamp = jiffies_to_msecs(jiffies);
459 common->ani.longcal_timer = timestamp;
460 common->ani.shortcal_timer = timestamp;
461 common->ani.checkani_timer = timestamp;
463 mod_timer(&common->ani.timer,
464 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
468 * Update tx/rx chainmask. For legacy association,
469 * hard code chainmask to 1x1, for 11n association, use
470 * the chainmask configuration, for bt coexistence, use
471 * the chainmask configuration even in legacy mode.
473 void ath_update_chainmask(struct ath_softc *sc, int is_ht)
475 struct ath_hw *ah = sc->sc_ah;
476 struct ath_common *common = ath9k_hw_common(ah);
478 if ((sc->sc_flags & SC_OP_SCANNING) || is_ht ||
479 (ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE)) {
480 common->tx_chainmask = ah->caps.tx_chainmask;
481 common->rx_chainmask = ah->caps.rx_chainmask;
483 common->tx_chainmask = 1;
484 common->rx_chainmask = 1;
487 ath_print(common, ATH_DBG_CONFIG,
488 "tx chmask: %d, rx chmask: %d\n",
489 common->tx_chainmask,
490 common->rx_chainmask);
493 static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
497 an = (struct ath_node *)sta->drv_priv;
499 if (sc->sc_flags & SC_OP_TXAGGR) {
500 ath_tx_node_init(sc, an);
501 an->maxampdu = 1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
502 sta->ht_cap.ampdu_factor);
503 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
504 an->last_rssi = ATH_RSSI_DUMMY_MARKER;
508 static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
510 struct ath_node *an = (struct ath_node *)sta->drv_priv;
512 if (sc->sc_flags & SC_OP_TXAGGR)
513 ath_tx_node_cleanup(sc, an);
516 static void ath9k_tasklet(unsigned long data)
518 struct ath_softc *sc = (struct ath_softc *)data;
519 struct ath_hw *ah = sc->sc_ah;
520 struct ath_common *common = ath9k_hw_common(ah);
522 u32 status = sc->intrstatus;
526 if (status & ATH9K_INT_FATAL) {
527 ath_reset(sc, false);
528 ath9k_ps_restore(sc);
532 if (status & (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
533 spin_lock_bh(&sc->rx.rxflushlock);
534 ath_rx_tasklet(sc, 0);
535 spin_unlock_bh(&sc->rx.rxflushlock);
538 if (status & ATH9K_INT_TX)
541 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
543 * TSF sync does not look correct; remain awake to sync with
546 ath_print(common, ATH_DBG_PS,
547 "TSFOOR - Sync with next Beacon\n");
548 sc->sc_flags |= SC_OP_WAIT_FOR_BEACON | SC_OP_BEACON_SYNC;
551 if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
552 if (status & ATH9K_INT_GENTIMER)
553 ath_gen_timer_isr(sc->sc_ah);
555 /* re-enable hardware interrupt */
556 ath9k_hw_set_interrupts(ah, sc->imask);
557 ath9k_ps_restore(sc);
560 irqreturn_t ath_isr(int irq, void *dev)
562 #define SCHED_INTR ( \
573 struct ath_softc *sc = dev;
574 struct ath_hw *ah = sc->sc_ah;
575 enum ath9k_int status;
579 * The hardware is not ready/present, don't
580 * touch anything. Note this can happen early
581 * on if the IRQ is shared.
583 if (sc->sc_flags & SC_OP_INVALID)
587 /* shared irq, not for us */
589 if (!ath9k_hw_intrpend(ah))
593 * Figure out the reason(s) for the interrupt. Note
594 * that the hal returns a pseudo-ISR that may include
595 * bits we haven't explicitly enabled so we mask the
596 * value to insure we only process bits we requested.
598 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
599 status &= sc->imask; /* discard unasked-for bits */
602 * If there are no status bits set, then this interrupt was not
603 * for me (should have been caught above).
608 /* Cache the status */
609 sc->intrstatus = status;
611 if (status & SCHED_INTR)
615 * If a FATAL or RXORN interrupt is received, we have to reset the
618 if (status & (ATH9K_INT_FATAL | ATH9K_INT_RXORN))
621 if (status & ATH9K_INT_SWBA)
622 tasklet_schedule(&sc->bcon_tasklet);
624 if (status & ATH9K_INT_TXURN)
625 ath9k_hw_updatetxtriglevel(ah, true);
627 if (status & ATH9K_INT_MIB) {
629 * Disable interrupts until we service the MIB
630 * interrupt; otherwise it will continue to
633 ath9k_hw_set_interrupts(ah, 0);
635 * Let the hal handle the event. We assume
636 * it will clear whatever condition caused
639 ath9k_hw_procmibevent(ah);
640 ath9k_hw_set_interrupts(ah, sc->imask);
643 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
644 if (status & ATH9K_INT_TIM_TIMER) {
645 /* Clear RxAbort bit so that we can
647 ath9k_setpower(sc, ATH9K_PM_AWAKE);
648 ath9k_hw_setrxabort(sc->sc_ah, 0);
649 sc->sc_flags |= SC_OP_WAIT_FOR_BEACON;
654 ath_debug_stat_interrupt(sc, status);
657 /* turn off every interrupt except SWBA */
658 ath9k_hw_set_interrupts(ah, (sc->imask & ATH9K_INT_SWBA));
659 tasklet_schedule(&sc->intr_tq);
667 static u32 ath_get_extchanmode(struct ath_softc *sc,
668 struct ieee80211_channel *chan,
669 enum nl80211_channel_type channel_type)
673 switch (chan->band) {
674 case IEEE80211_BAND_2GHZ:
675 switch(channel_type) {
676 case NL80211_CHAN_NO_HT:
677 case NL80211_CHAN_HT20:
678 chanmode = CHANNEL_G_HT20;
680 case NL80211_CHAN_HT40PLUS:
681 chanmode = CHANNEL_G_HT40PLUS;
683 case NL80211_CHAN_HT40MINUS:
684 chanmode = CHANNEL_G_HT40MINUS;
688 case IEEE80211_BAND_5GHZ:
689 switch(channel_type) {
690 case NL80211_CHAN_NO_HT:
691 case NL80211_CHAN_HT20:
692 chanmode = CHANNEL_A_HT20;
694 case NL80211_CHAN_HT40PLUS:
695 chanmode = CHANNEL_A_HT40PLUS;
697 case NL80211_CHAN_HT40MINUS:
698 chanmode = CHANNEL_A_HT40MINUS;
709 static int ath_setkey_tkip(struct ath_common *common, u16 keyix, const u8 *key,
710 struct ath9k_keyval *hk, const u8 *addr,
713 struct ath_hw *ah = common->ah;
717 key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
718 key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
722 * Group key installation - only two key cache entries are used
723 * regardless of splitmic capability since group key is only
724 * used either for TX or RX.
727 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
728 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_mic));
730 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
731 memcpy(hk->kv_txmic, key_rxmic, sizeof(hk->kv_mic));
733 return ath9k_hw_set_keycache_entry(ah, keyix, hk, addr);
735 if (!common->splitmic) {
736 /* TX and RX keys share the same key cache entry. */
737 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
738 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
739 return ath9k_hw_set_keycache_entry(ah, keyix, hk, addr);
742 /* Separate key cache entries for TX and RX */
744 /* TX key goes at first index, RX key at +32. */
745 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
746 if (!ath9k_hw_set_keycache_entry(ah, keyix, hk, NULL)) {
747 /* TX MIC entry failed. No need to proceed further */
748 ath_print(common, ATH_DBG_FATAL,
749 "Setting TX MIC Key Failed\n");
753 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
754 /* XXX delete tx key on failure? */
755 return ath9k_hw_set_keycache_entry(ah, keyix + 32, hk, addr);
758 static int ath_reserve_key_cache_slot_tkip(struct ath_common *common)
762 for (i = IEEE80211_WEP_NKID; i < common->keymax / 2; i++) {
763 if (test_bit(i, common->keymap) ||
764 test_bit(i + 64, common->keymap))
765 continue; /* At least one part of TKIP key allocated */
766 if (common->splitmic &&
767 (test_bit(i + 32, common->keymap) ||
768 test_bit(i + 64 + 32, common->keymap)))
769 continue; /* At least one part of TKIP key allocated */
771 /* Found a free slot for a TKIP key */
777 static int ath_reserve_key_cache_slot(struct ath_common *common)
781 /* First, try to find slots that would not be available for TKIP. */
782 if (common->splitmic) {
783 for (i = IEEE80211_WEP_NKID; i < common->keymax / 4; i++) {
784 if (!test_bit(i, common->keymap) &&
785 (test_bit(i + 32, common->keymap) ||
786 test_bit(i + 64, common->keymap) ||
787 test_bit(i + 64 + 32, common->keymap)))
789 if (!test_bit(i + 32, common->keymap) &&
790 (test_bit(i, common->keymap) ||
791 test_bit(i + 64, common->keymap) ||
792 test_bit(i + 64 + 32, common->keymap)))
794 if (!test_bit(i + 64, common->keymap) &&
795 (test_bit(i , common->keymap) ||
796 test_bit(i + 32, common->keymap) ||
797 test_bit(i + 64 + 32, common->keymap)))
799 if (!test_bit(i + 64 + 32, common->keymap) &&
800 (test_bit(i, common->keymap) ||
801 test_bit(i + 32, common->keymap) ||
802 test_bit(i + 64, common->keymap)))
806 for (i = IEEE80211_WEP_NKID; i < common->keymax / 2; i++) {
807 if (!test_bit(i, common->keymap) &&
808 test_bit(i + 64, common->keymap))
810 if (test_bit(i, common->keymap) &&
811 !test_bit(i + 64, common->keymap))
816 /* No partially used TKIP slots, pick any available slot */
817 for (i = IEEE80211_WEP_NKID; i < common->keymax; i++) {
818 /* Do not allow slots that could be needed for TKIP group keys
819 * to be used. This limitation could be removed if we know that
820 * TKIP will not be used. */
821 if (i >= 64 && i < 64 + IEEE80211_WEP_NKID)
823 if (common->splitmic) {
824 if (i >= 32 && i < 32 + IEEE80211_WEP_NKID)
826 if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID)
830 if (!test_bit(i, common->keymap))
831 return i; /* Found a free slot for a key */
834 /* No free slot found */
838 static int ath_key_config(struct ath_common *common,
839 struct ieee80211_vif *vif,
840 struct ieee80211_sta *sta,
841 struct ieee80211_key_conf *key)
843 struct ath_hw *ah = common->ah;
844 struct ath9k_keyval hk;
845 const u8 *mac = NULL;
849 memset(&hk, 0, sizeof(hk));
853 hk.kv_type = ATH9K_CIPHER_WEP;
856 hk.kv_type = ATH9K_CIPHER_TKIP;
859 hk.kv_type = ATH9K_CIPHER_AES_CCM;
865 hk.kv_len = key->keylen;
866 memcpy(hk.kv_val, key->key, key->keylen);
868 if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
869 /* For now, use the default keys for broadcast keys. This may
870 * need to change with virtual interfaces. */
872 } else if (key->keyidx) {
877 if (vif->type != NL80211_IFTYPE_AP) {
878 /* Only keyidx 0 should be used with unicast key, but
879 * allow this for client mode for now. */
888 if (key->alg == ALG_TKIP)
889 idx = ath_reserve_key_cache_slot_tkip(common);
891 idx = ath_reserve_key_cache_slot(common);
893 return -ENOSPC; /* no free key cache entries */
896 if (key->alg == ALG_TKIP)
897 ret = ath_setkey_tkip(common, idx, key->key, &hk, mac,
898 vif->type == NL80211_IFTYPE_AP);
900 ret = ath9k_hw_set_keycache_entry(ah, idx, &hk, mac);
905 set_bit(idx, common->keymap);
906 if (key->alg == ALG_TKIP) {
907 set_bit(idx + 64, common->keymap);
908 if (common->splitmic) {
909 set_bit(idx + 32, common->keymap);
910 set_bit(idx + 64 + 32, common->keymap);
917 static void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key)
919 struct ath_hw *ah = common->ah;
921 ath9k_hw_keyreset(ah, key->hw_key_idx);
922 if (key->hw_key_idx < IEEE80211_WEP_NKID)
925 clear_bit(key->hw_key_idx, common->keymap);
926 if (key->alg != ALG_TKIP)
929 clear_bit(key->hw_key_idx + 64, common->keymap);
930 if (common->splitmic) {
931 ath9k_hw_keyreset(ah, key->hw_key_idx + 32);
932 clear_bit(key->hw_key_idx + 32, common->keymap);
933 clear_bit(key->hw_key_idx + 64 + 32, common->keymap);
937 static void setup_ht_cap(struct ath_softc *sc,
938 struct ieee80211_sta_ht_cap *ht_info)
940 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
941 u8 tx_streams, rx_streams;
943 ht_info->ht_supported = true;
944 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
945 IEEE80211_HT_CAP_SM_PS |
946 IEEE80211_HT_CAP_SGI_40 |
947 IEEE80211_HT_CAP_DSSSCCK40;
949 ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
950 ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8;
952 /* set up supported mcs set */
953 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
954 tx_streams = !(common->tx_chainmask & (common->tx_chainmask - 1)) ?
956 rx_streams = !(common->rx_chainmask & (common->rx_chainmask - 1)) ?
959 if (tx_streams != rx_streams) {
960 ath_print(common, ATH_DBG_CONFIG,
961 "TX streams %d, RX streams: %d\n",
962 tx_streams, rx_streams);
963 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
964 ht_info->mcs.tx_params |= ((tx_streams - 1) <<
965 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
968 ht_info->mcs.rx_mask[0] = 0xff;
970 ht_info->mcs.rx_mask[1] = 0xff;
972 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED;
975 static void ath9k_bss_assoc_info(struct ath_softc *sc,
976 struct ieee80211_vif *vif,
977 struct ieee80211_bss_conf *bss_conf)
979 struct ath_hw *ah = sc->sc_ah;
980 struct ath_common *common = ath9k_hw_common(ah);
982 if (bss_conf->assoc) {
983 ath_print(common, ATH_DBG_CONFIG,
984 "Bss Info ASSOC %d, bssid: %pM\n",
985 bss_conf->aid, common->curbssid);
987 /* New association, store aid */
988 common->curaid = bss_conf->aid;
989 ath9k_hw_write_associd(ah);
992 * Request a re-configuration of Beacon related timers
993 * on the receipt of the first Beacon frame (i.e.,
994 * after time sync with the AP).
996 sc->sc_flags |= SC_OP_BEACON_SYNC;
998 /* Configure the beacon */
999 ath_beacon_config(sc, vif);
1001 /* Reset rssi stats */
1002 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
1004 ath_start_ani(common);
1006 ath_print(common, ATH_DBG_CONFIG, "Bss Info DISASSOC\n");
1009 del_timer_sync(&common->ani.timer);
1013 /********************************/
1015 /********************************/
1017 static void ath_led_blink_work(struct work_struct *work)
1019 struct ath_softc *sc = container_of(work, struct ath_softc,
1020 ath_led_blink_work.work);
1022 if (!(sc->sc_flags & SC_OP_LED_ASSOCIATED))
1025 if ((sc->led_on_duration == ATH_LED_ON_DURATION_IDLE) ||
1026 (sc->led_off_duration == ATH_LED_OFF_DURATION_IDLE))
1027 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 0);
1029 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin,
1030 (sc->sc_flags & SC_OP_LED_ON) ? 1 : 0);
1032 ieee80211_queue_delayed_work(sc->hw,
1033 &sc->ath_led_blink_work,
1034 (sc->sc_flags & SC_OP_LED_ON) ?
1035 msecs_to_jiffies(sc->led_off_duration) :
1036 msecs_to_jiffies(sc->led_on_duration));
1038 sc->led_on_duration = sc->led_on_cnt ?
1039 max((ATH_LED_ON_DURATION_IDLE - sc->led_on_cnt), 25) :
1040 ATH_LED_ON_DURATION_IDLE;
1041 sc->led_off_duration = sc->led_off_cnt ?
1042 max((ATH_LED_OFF_DURATION_IDLE - sc->led_off_cnt), 10) :
1043 ATH_LED_OFF_DURATION_IDLE;
1044 sc->led_on_cnt = sc->led_off_cnt = 0;
1045 if (sc->sc_flags & SC_OP_LED_ON)
1046 sc->sc_flags &= ~SC_OP_LED_ON;
1048 sc->sc_flags |= SC_OP_LED_ON;
1051 static void ath_led_brightness(struct led_classdev *led_cdev,
1052 enum led_brightness brightness)
1054 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
1055 struct ath_softc *sc = led->sc;
1057 switch (brightness) {
1059 if (led->led_type == ATH_LED_ASSOC ||
1060 led->led_type == ATH_LED_RADIO) {
1061 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin,
1062 (led->led_type == ATH_LED_RADIO));
1063 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
1064 if (led->led_type == ATH_LED_RADIO)
1065 sc->sc_flags &= ~SC_OP_LED_ON;
1071 if (led->led_type == ATH_LED_ASSOC) {
1072 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
1073 ieee80211_queue_delayed_work(sc->hw,
1074 &sc->ath_led_blink_work, 0);
1075 } else if (led->led_type == ATH_LED_RADIO) {
1076 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 0);
1077 sc->sc_flags |= SC_OP_LED_ON;
1087 static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
1093 led->led_cdev.name = led->name;
1094 led->led_cdev.default_trigger = trigger;
1095 led->led_cdev.brightness_set = ath_led_brightness;
1097 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
1099 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
1100 "Failed to register led:%s", led->name);
1102 led->registered = 1;
1106 static void ath_unregister_led(struct ath_led *led)
1108 if (led->registered) {
1109 led_classdev_unregister(&led->led_cdev);
1110 led->registered = 0;
1114 static void ath_deinit_leds(struct ath_softc *sc)
1116 ath_unregister_led(&sc->assoc_led);
1117 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
1118 ath_unregister_led(&sc->tx_led);
1119 ath_unregister_led(&sc->rx_led);
1120 ath_unregister_led(&sc->radio_led);
1121 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
1124 static void ath_init_leds(struct ath_softc *sc)
1129 if (AR_SREV_9287(sc->sc_ah))
1130 sc->sc_ah->led_pin = ATH_LED_PIN_9287;
1132 sc->sc_ah->led_pin = ATH_LED_PIN_DEF;
1134 /* Configure gpio 1 for output */
1135 ath9k_hw_cfg_output(sc->sc_ah, sc->sc_ah->led_pin,
1136 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1137 /* LED off, active low */
1138 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
1140 INIT_DELAYED_WORK(&sc->ath_led_blink_work, ath_led_blink_work);
1142 trigger = ieee80211_get_radio_led_name(sc->hw);
1143 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
1144 "ath9k-%s::radio", wiphy_name(sc->hw->wiphy));
1145 ret = ath_register_led(sc, &sc->radio_led, trigger);
1146 sc->radio_led.led_type = ATH_LED_RADIO;
1150 trigger = ieee80211_get_assoc_led_name(sc->hw);
1151 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
1152 "ath9k-%s::assoc", wiphy_name(sc->hw->wiphy));
1153 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1154 sc->assoc_led.led_type = ATH_LED_ASSOC;
1158 trigger = ieee80211_get_tx_led_name(sc->hw);
1159 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
1160 "ath9k-%s::tx", wiphy_name(sc->hw->wiphy));
1161 ret = ath_register_led(sc, &sc->tx_led, trigger);
1162 sc->tx_led.led_type = ATH_LED_TX;
1166 trigger = ieee80211_get_rx_led_name(sc->hw);
1167 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
1168 "ath9k-%s::rx", wiphy_name(sc->hw->wiphy));
1169 ret = ath_register_led(sc, &sc->rx_led, trigger);
1170 sc->rx_led.led_type = ATH_LED_RX;
1177 cancel_delayed_work_sync(&sc->ath_led_blink_work);
1178 ath_deinit_leds(sc);
1181 void ath_radio_enable(struct ath_softc *sc, struct ieee80211_hw *hw)
1183 struct ath_hw *ah = sc->sc_ah;
1184 struct ath_common *common = ath9k_hw_common(ah);
1185 struct ieee80211_channel *channel = hw->conf.channel;
1188 ath9k_ps_wakeup(sc);
1189 ath9k_hw_configpcipowersave(ah, 0, 0);
1192 ah->curchan = ath_get_curchannel(sc, sc->hw);
1194 spin_lock_bh(&sc->sc_resetlock);
1195 r = ath9k_hw_reset(ah, ah->curchan, false);
1197 ath_print(common, ATH_DBG_FATAL,
1198 "Unable to reset channel %u (%uMhz) ",
1199 "reset status %d\n",
1200 channel->center_freq, r);
1202 spin_unlock_bh(&sc->sc_resetlock);
1204 ath_update_txpow(sc);
1205 if (ath_startrecv(sc) != 0) {
1206 ath_print(common, ATH_DBG_FATAL,
1207 "Unable to restart recv logic\n");
1211 if (sc->sc_flags & SC_OP_BEACONS)
1212 ath_beacon_config(sc, NULL); /* restart beacons */
1214 /* Re-Enable interrupts */
1215 ath9k_hw_set_interrupts(ah, sc->imask);
1218 ath9k_hw_cfg_output(ah, ah->led_pin,
1219 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1220 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
1222 ieee80211_wake_queues(hw);
1223 ath9k_ps_restore(sc);
1226 void ath_radio_disable(struct ath_softc *sc, struct ieee80211_hw *hw)
1228 struct ath_hw *ah = sc->sc_ah;
1229 struct ieee80211_channel *channel = hw->conf.channel;
1232 ath9k_ps_wakeup(sc);
1233 ieee80211_stop_queues(hw);
1236 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
1237 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
1239 /* Disable interrupts */
1240 ath9k_hw_set_interrupts(ah, 0);
1242 ath_drain_all_txq(sc, false); /* clear pending tx frames */
1243 ath_stoprecv(sc); /* turn off frame recv */
1244 ath_flushrecv(sc); /* flush recv queue */
1247 ah->curchan = ath_get_curchannel(sc, hw);
1249 spin_lock_bh(&sc->sc_resetlock);
1250 r = ath9k_hw_reset(ah, ah->curchan, false);
1252 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
1253 "Unable to reset channel %u (%uMhz) "
1254 "reset status %d\n",
1255 channel->center_freq, r);
1257 spin_unlock_bh(&sc->sc_resetlock);
1259 ath9k_hw_phy_disable(ah);
1260 ath9k_hw_configpcipowersave(ah, 1, 1);
1261 ath9k_ps_restore(sc);
1262 ath9k_setpower(sc, ATH9K_PM_FULL_SLEEP);
1265 /*******************/
1267 /*******************/
1269 static bool ath_is_rfkill_set(struct ath_softc *sc)
1271 struct ath_hw *ah = sc->sc_ah;
1273 return ath9k_hw_gpio_get(ah, ah->rfkill_gpio) ==
1274 ah->rfkill_polarity;
1277 static void ath9k_rfkill_poll_state(struct ieee80211_hw *hw)
1279 struct ath_wiphy *aphy = hw->priv;
1280 struct ath_softc *sc = aphy->sc;
1281 bool blocked = !!ath_is_rfkill_set(sc);
1283 wiphy_rfkill_set_hw_state(hw->wiphy, blocked);
1286 static void ath_start_rfkill_poll(struct ath_softc *sc)
1288 struct ath_hw *ah = sc->sc_ah;
1290 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1291 wiphy_rfkill_start_polling(sc->hw->wiphy);
1294 static void ath9k_uninit_hw(struct ath_softc *sc)
1296 struct ath_hw *ah = sc->sc_ah;
1300 ath9k_exit_debug(ah);
1301 ath9k_hw_detach(ah);
1305 static void ath_clean_core(struct ath_softc *sc)
1307 struct ieee80211_hw *hw = sc->hw;
1308 struct ath_hw *ah = sc->sc_ah;
1311 ath9k_ps_wakeup(sc);
1313 dev_dbg(sc->dev, "Detach ATH hw\n");
1315 ath_deinit_leds(sc);
1316 wiphy_rfkill_stop_polling(sc->hw->wiphy);
1318 for (i = 0; i < sc->num_sec_wiphy; i++) {
1319 struct ath_wiphy *aphy = sc->sec_wiphy[i];
1322 sc->sec_wiphy[i] = NULL;
1323 ieee80211_unregister_hw(aphy->hw);
1324 ieee80211_free_hw(aphy->hw);
1326 ieee80211_unregister_hw(hw);
1330 tasklet_kill(&sc->intr_tq);
1331 tasklet_kill(&sc->bcon_tasklet);
1333 if (!(sc->sc_flags & SC_OP_INVALID))
1334 ath9k_setpower(sc, ATH9K_PM_AWAKE);
1336 /* cleanup tx queues */
1337 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1338 if (ATH_TXQ_SETUP(sc, i))
1339 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
1341 if ((sc->btcoex.no_stomp_timer) &&
1342 ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
1343 ath_gen_timer_free(ah, sc->btcoex.no_stomp_timer);
1346 void ath_detach(struct ath_softc *sc)
1349 ath9k_uninit_hw(sc);
1352 void ath_cleanup(struct ath_softc *sc)
1354 struct ath_hw *ah = sc->sc_ah;
1355 struct ath_common *common = ath9k_hw_common(ah);
1358 free_irq(sc->irq, sc);
1359 ath_bus_cleanup(common);
1360 kfree(sc->sec_wiphy);
1361 ieee80211_free_hw(sc->hw);
1363 ath9k_uninit_hw(sc);
1366 static int ath9k_reg_notifier(struct wiphy *wiphy,
1367 struct regulatory_request *request)
1369 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
1370 struct ath_wiphy *aphy = hw->priv;
1371 struct ath_softc *sc = aphy->sc;
1372 struct ath_regulatory *reg = ath9k_hw_regulatory(sc->sc_ah);
1374 return ath_reg_notifier_apply(wiphy, request, reg);
1378 * Detects if there is any priority bt traffic
1380 static void ath_detect_bt_priority(struct ath_softc *sc)
1382 struct ath_btcoex *btcoex = &sc->btcoex;
1383 struct ath_hw *ah = sc->sc_ah;
1385 if (ath9k_hw_gpio_get(sc->sc_ah, ah->btcoex_hw.btpriority_gpio))
1386 btcoex->bt_priority_cnt++;
1388 if (time_after(jiffies, btcoex->bt_priority_time +
1389 msecs_to_jiffies(ATH_BT_PRIORITY_TIME_THRESHOLD))) {
1390 if (btcoex->bt_priority_cnt >= ATH_BT_CNT_THRESHOLD) {
1391 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_BTCOEX,
1392 "BT priority traffic detected");
1393 sc->sc_flags |= SC_OP_BT_PRIORITY_DETECTED;
1395 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
1398 btcoex->bt_priority_cnt = 0;
1399 btcoex->bt_priority_time = jiffies;
1404 * Configures appropriate weight based on stomp type.
1406 static void ath9k_btcoex_bt_stomp(struct ath_softc *sc,
1407 enum ath_stomp_type stomp_type)
1409 struct ath_hw *ah = sc->sc_ah;
1411 switch (stomp_type) {
1412 case ATH_BTCOEX_STOMP_ALL:
1413 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
1414 AR_STOMP_ALL_WLAN_WGHT);
1416 case ATH_BTCOEX_STOMP_LOW:
1417 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
1418 AR_STOMP_LOW_WLAN_WGHT);
1420 case ATH_BTCOEX_STOMP_NONE:
1421 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
1422 AR_STOMP_NONE_WLAN_WGHT);
1425 ath_print(ath9k_hw_common(ah), ATH_DBG_BTCOEX,
1426 "Invalid Stomptype\n");
1430 ath9k_hw_btcoex_enable(ah);
1433 static void ath9k_gen_timer_start(struct ath_hw *ah,
1434 struct ath_gen_timer *timer,
1438 struct ath_common *common = ath9k_hw_common(ah);
1439 struct ath_softc *sc = (struct ath_softc *) common->priv;
1441 ath9k_hw_gen_timer_start(ah, timer, timer_next, timer_period);
1443 if ((sc->imask & ATH9K_INT_GENTIMER) == 0) {
1444 ath9k_hw_set_interrupts(ah, 0);
1445 sc->imask |= ATH9K_INT_GENTIMER;
1446 ath9k_hw_set_interrupts(ah, sc->imask);
1450 static void ath9k_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
1452 struct ath_common *common = ath9k_hw_common(ah);
1453 struct ath_softc *sc = (struct ath_softc *) common->priv;
1454 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
1456 ath9k_hw_gen_timer_stop(ah, timer);
1458 /* if no timer is enabled, turn off interrupt mask */
1459 if (timer_table->timer_mask.val == 0) {
1460 ath9k_hw_set_interrupts(ah, 0);
1461 sc->imask &= ~ATH9K_INT_GENTIMER;
1462 ath9k_hw_set_interrupts(ah, sc->imask);
1467 * This is the master bt coex timer which runs for every
1468 * 45ms, bt traffic will be given priority during 55% of this
1469 * period while wlan gets remaining 45%
1471 static void ath_btcoex_period_timer(unsigned long data)
1473 struct ath_softc *sc = (struct ath_softc *) data;
1474 struct ath_hw *ah = sc->sc_ah;
1475 struct ath_btcoex *btcoex = &sc->btcoex;
1477 ath_detect_bt_priority(sc);
1479 spin_lock_bh(&btcoex->btcoex_lock);
1481 ath9k_btcoex_bt_stomp(sc, btcoex->bt_stomp_type);
1483 spin_unlock_bh(&btcoex->btcoex_lock);
1485 if (btcoex->btcoex_period != btcoex->btcoex_no_stomp) {
1486 if (btcoex->hw_timer_enabled)
1487 ath9k_gen_timer_stop(ah, btcoex->no_stomp_timer);
1489 ath9k_gen_timer_start(ah,
1490 btcoex->no_stomp_timer,
1491 (ath9k_hw_gettsf32(ah) +
1492 btcoex->btcoex_no_stomp),
1493 btcoex->btcoex_no_stomp * 10);
1494 btcoex->hw_timer_enabled = true;
1497 mod_timer(&btcoex->period_timer, jiffies +
1498 msecs_to_jiffies(ATH_BTCOEX_DEF_BT_PERIOD));
1502 * Generic tsf based hw timer which configures weight
1503 * registers to time slice between wlan and bt traffic
1505 static void ath_btcoex_no_stomp_timer(void *arg)
1507 struct ath_softc *sc = (struct ath_softc *)arg;
1508 struct ath_hw *ah = sc->sc_ah;
1509 struct ath_btcoex *btcoex = &sc->btcoex;
1511 ath_print(ath9k_hw_common(ah), ATH_DBG_BTCOEX,
1512 "no stomp timer running \n");
1514 spin_lock_bh(&btcoex->btcoex_lock);
1516 if (btcoex->bt_stomp_type == ATH_BTCOEX_STOMP_LOW)
1517 ath9k_btcoex_bt_stomp(sc, ATH_BTCOEX_STOMP_NONE);
1518 else if (btcoex->bt_stomp_type == ATH_BTCOEX_STOMP_ALL)
1519 ath9k_btcoex_bt_stomp(sc, ATH_BTCOEX_STOMP_LOW);
1521 spin_unlock_bh(&btcoex->btcoex_lock);
1524 static int ath_init_btcoex_timer(struct ath_softc *sc)
1526 struct ath_btcoex *btcoex = &sc->btcoex;
1528 btcoex->btcoex_period = ATH_BTCOEX_DEF_BT_PERIOD * 1000;
1529 btcoex->btcoex_no_stomp = (100 - ATH_BTCOEX_DEF_DUTY_CYCLE) *
1530 btcoex->btcoex_period / 100;
1532 setup_timer(&btcoex->period_timer, ath_btcoex_period_timer,
1533 (unsigned long) sc);
1535 spin_lock_init(&btcoex->btcoex_lock);
1537 btcoex->no_stomp_timer = ath_gen_timer_alloc(sc->sc_ah,
1538 ath_btcoex_no_stomp_timer,
1539 ath_btcoex_no_stomp_timer,
1540 (void *) sc, AR_FIRST_NDP_TIMER);
1542 if (!btcoex->no_stomp_timer)
1549 * Read and write, they both share the same lock. We do this to serialize
1550 * reads and writes on Atheros 802.11n PCI devices only. This is required
1551 * as the FIFO on these devices can only accept sanely 2 requests. After
1552 * that the device goes bananas. Serializing the reads/writes prevents this
1556 static void ath9k_iowrite32(void *hw_priv, u32 val, u32 reg_offset)
1558 struct ath_hw *ah = (struct ath_hw *) hw_priv;
1559 struct ath_common *common = ath9k_hw_common(ah);
1560 struct ath_softc *sc = (struct ath_softc *) common->priv;
1562 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
1563 unsigned long flags;
1564 spin_lock_irqsave(&sc->sc_serial_rw, flags);
1565 iowrite32(val, sc->mem + reg_offset);
1566 spin_unlock_irqrestore(&sc->sc_serial_rw, flags);
1568 iowrite32(val, sc->mem + reg_offset);
1571 static unsigned int ath9k_ioread32(void *hw_priv, u32 reg_offset)
1573 struct ath_hw *ah = (struct ath_hw *) hw_priv;
1574 struct ath_common *common = ath9k_hw_common(ah);
1575 struct ath_softc *sc = (struct ath_softc *) common->priv;
1578 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
1579 unsigned long flags;
1580 spin_lock_irqsave(&sc->sc_serial_rw, flags);
1581 val = ioread32(sc->mem + reg_offset);
1582 spin_unlock_irqrestore(&sc->sc_serial_rw, flags);
1584 val = ioread32(sc->mem + reg_offset);
1588 static const struct ath_ops ath9k_common_ops = {
1589 .read = ath9k_ioread32,
1590 .write = ath9k_iowrite32,
1594 * Initialize and fill ath_softc, ath_sofct is the
1595 * "Software Carrier" struct. Historically it has existed
1596 * to allow the separation between hardware specific
1597 * variables (now in ath_hw) and driver specific variables.
1599 static int ath_init_softc(u16 devid, struct ath_softc *sc, u16 subsysid,
1600 const struct ath_bus_ops *bus_ops)
1602 struct ath_hw *ah = NULL;
1603 struct ath_common *common;
1608 /* XXX: hardware will not be ready until ath_open() being called */
1609 sc->sc_flags |= SC_OP_INVALID;
1611 spin_lock_init(&sc->wiphy_lock);
1612 spin_lock_init(&sc->sc_resetlock);
1613 spin_lock_init(&sc->sc_serial_rw);
1614 spin_lock_init(&sc->ani_lock);
1615 spin_lock_init(&sc->sc_pm_lock);
1616 mutex_init(&sc->mutex);
1617 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1618 tasklet_init(&sc->bcon_tasklet, ath_beacon_tasklet,
1621 ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL);
1625 ah->hw_version.devid = devid;
1626 ah->hw_version.subsysid = subsysid;
1629 common = ath9k_hw_common(ah);
1630 common->ops = &ath9k_common_ops;
1631 common->bus_ops = bus_ops;
1633 common->hw = sc->hw;
1635 common->debug_mask = ath9k_debug;
1638 * Cache line size is used to size and align various
1639 * structures used to communicate with the hardware.
1641 ath_read_cachesize(common, &csz);
1642 /* XXX assert csz is non-zero */
1643 common->cachelsz = csz << 2; /* convert to bytes */
1645 r = ath9k_hw_init(ah);
1647 ath_print(common, ATH_DBG_FATAL,
1648 "Unable to initialize hardware; "
1649 "initialization status: %d\n", r);
1653 if (ath9k_init_debug(ah) < 0) {
1654 ath_print(common, ATH_DBG_FATAL,
1655 "Unable to create debugfs files\n");
1659 /* Get the hardware key cache size. */
1660 common->keymax = ah->caps.keycache_size;
1661 if (common->keymax > ATH_KEYMAX) {
1662 ath_print(common, ATH_DBG_ANY,
1663 "Warning, using only %u entries in %u key cache\n",
1664 ATH_KEYMAX, common->keymax);
1665 common->keymax = ATH_KEYMAX;
1669 * Reset the key cache since some parts do not
1670 * reset the contents on initial power up.
1672 for (i = 0; i < common->keymax; i++)
1673 ath9k_hw_keyreset(ah, (u16) i);
1675 /* default to MONITOR mode */
1676 sc->sc_ah->opmode = NL80211_IFTYPE_MONITOR;
1679 * Allocate hardware transmit queues: one queue for
1680 * beacon frames and one data queue for each QoS
1681 * priority. Note that the hal handles reseting
1682 * these queues at the needed time.
1684 sc->beacon.beaconq = ath9k_hw_beaconq_setup(ah);
1685 if (sc->beacon.beaconq == -1) {
1686 ath_print(common, ATH_DBG_FATAL,
1687 "Unable to setup a beacon xmit queue\n");
1691 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1692 if (sc->beacon.cabq == NULL) {
1693 ath_print(common, ATH_DBG_FATAL,
1694 "Unable to setup CAB xmit queue\n");
1699 sc->config.cabqReadytime = ATH_CABQ_READY_TIME;
1700 ath_cabq_update(sc);
1702 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
1703 sc->tx.hwq_map[i] = -1;
1705 /* Setup data queues */
1706 /* NB: ensure BK queue is the lowest priority h/w queue */
1707 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1708 ath_print(common, ATH_DBG_FATAL,
1709 "Unable to setup xmit queue for BK traffic\n");
1714 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1715 ath_print(common, ATH_DBG_FATAL,
1716 "Unable to setup xmit queue for BE traffic\n");
1720 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1721 ath_print(common, ATH_DBG_FATAL,
1722 "Unable to setup xmit queue for VI traffic\n");
1726 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1727 ath_print(common, ATH_DBG_FATAL,
1728 "Unable to setup xmit queue for VO traffic\n");
1733 /* Initializes the noise floor to a reasonable default value.
1734 * Later on this will be updated during ANI processing. */
1736 common->ani.noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1737 setup_timer(&common->ani.timer, ath_ani_calibrate, (unsigned long)sc);
1739 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1740 ATH9K_CIPHER_TKIP, NULL)) {
1742 * Whether we should enable h/w TKIP MIC.
1743 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1744 * report WMM capable, so it's always safe to turn on
1745 * TKIP MIC in this case.
1747 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1752 * Check whether the separate key cache entries
1753 * are required to handle both tx+rx MIC keys.
1754 * With split mic keys the number of stations is limited
1755 * to 27 otherwise 59.
1757 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1758 ATH9K_CIPHER_TKIP, NULL)
1759 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1760 ATH9K_CIPHER_MIC, NULL)
1761 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1763 common->splitmic = 1;
1765 /* turn on mcast key search if possible */
1766 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1767 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1770 sc->config.txpowlimit = ATH_TXPOWER_MAX;
1772 /* 11n Capabilities */
1773 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) {
1774 sc->sc_flags |= SC_OP_TXAGGR;
1775 sc->sc_flags |= SC_OP_RXAGGR;
1778 common->tx_chainmask = ah->caps.tx_chainmask;
1779 common->rx_chainmask = ah->caps.rx_chainmask;
1781 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
1782 sc->rx.defant = ath9k_hw_getdefantenna(ah);
1784 if (ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK)
1785 memcpy(common->bssidmask, ath_bcast_mac, ETH_ALEN);
1787 sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
1789 /* initialize beacon slots */
1790 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) {
1791 sc->beacon.bslot[i] = NULL;
1792 sc->beacon.bslot_aphy[i] = NULL;
1795 /* setup channels and rates */
1797 if (test_bit(ATH9K_MODE_11G, sc->sc_ah->caps.wireless_modes)) {
1798 sc->sbands[IEEE80211_BAND_2GHZ].channels = ath9k_2ghz_chantable;
1799 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
1800 sc->sbands[IEEE80211_BAND_2GHZ].n_channels =
1801 ARRAY_SIZE(ath9k_2ghz_chantable);
1802 sc->sbands[IEEE80211_BAND_2GHZ].bitrates = ath9k_legacy_rates;
1803 sc->sbands[IEEE80211_BAND_2GHZ].n_bitrates =
1804 ARRAY_SIZE(ath9k_legacy_rates);
1807 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes)) {
1808 sc->sbands[IEEE80211_BAND_5GHZ].channels = ath9k_5ghz_chantable;
1809 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
1810 sc->sbands[IEEE80211_BAND_5GHZ].n_channels =
1811 ARRAY_SIZE(ath9k_5ghz_chantable);
1812 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1813 ath9k_legacy_rates + 4;
1814 sc->sbands[IEEE80211_BAND_5GHZ].n_bitrates =
1815 ARRAY_SIZE(ath9k_legacy_rates) - 4;
1818 switch (ah->btcoex_hw.scheme) {
1819 case ATH_BTCOEX_CFG_NONE:
1821 case ATH_BTCOEX_CFG_2WIRE:
1822 ath9k_hw_btcoex_init_2wire(ah);
1824 case ATH_BTCOEX_CFG_3WIRE:
1825 ath9k_hw_btcoex_init_3wire(ah);
1826 r = ath_init_btcoex_timer(sc);
1829 qnum = ath_tx_get_qnum(sc, ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
1830 ath9k_hw_init_btcoex_hw(ah, qnum);
1831 sc->btcoex.bt_stomp_type = ATH_BTCOEX_STOMP_LOW;
1840 /* cleanup tx queues */
1841 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1842 if (ATH_TXQ_SETUP(sc, i))
1843 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
1846 ath9k_uninit_hw(sc);
1850 void ath_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
1852 struct ath_hw *ah = sc->sc_ah;
1854 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1855 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1856 IEEE80211_HW_SIGNAL_DBM |
1857 IEEE80211_HW_SUPPORTS_PS |
1858 IEEE80211_HW_PS_NULLFUNC_STACK |
1859 IEEE80211_HW_SPECTRUM_MGMT;
1861 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT)
1862 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
1864 if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || modparam_nohwcrypt)
1865 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
1867 hw->wiphy->interface_modes =
1868 BIT(NL80211_IFTYPE_AP) |
1869 BIT(NL80211_IFTYPE_STATION) |
1870 BIT(NL80211_IFTYPE_ADHOC) |
1871 BIT(NL80211_IFTYPE_MESH_POINT);
1873 if (AR_SREV_5416(ah))
1874 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
1878 hw->channel_change_time = 5000;
1879 hw->max_listen_interval = 10;
1880 /* Hardware supports 10 but we use 4 */
1881 hw->max_rate_tries = 4;
1882 hw->sta_data_size = sizeof(struct ath_node);
1883 hw->vif_data_size = sizeof(struct ath_vif);
1885 hw->rate_control_algorithm = "ath9k_rate_control";
1887 if (test_bit(ATH9K_MODE_11G, sc->sc_ah->caps.wireless_modes))
1888 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
1889 &sc->sbands[IEEE80211_BAND_2GHZ];
1890 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes))
1891 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1892 &sc->sbands[IEEE80211_BAND_5GHZ];
1895 /* Device driver core initialization */
1896 int ath_init_device(u16 devid, struct ath_softc *sc, u16 subsysid,
1897 const struct ath_bus_ops *bus_ops)
1899 struct ieee80211_hw *hw = sc->hw;
1900 struct ath_common *common;
1903 struct ath_regulatory *reg;
1905 dev_dbg(sc->dev, "Attach ATH hw\n");
1907 error = ath_init_softc(devid, sc, subsysid, bus_ops);
1912 common = ath9k_hw_common(ah);
1914 /* get mac address from hardware and set in mac80211 */
1916 SET_IEEE80211_PERM_ADDR(hw, common->macaddr);
1918 ath_set_hw_capab(sc, hw);
1920 error = ath_regd_init(&common->regulatory, sc->hw->wiphy,
1921 ath9k_reg_notifier);
1925 reg = &common->regulatory;
1927 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) {
1928 if (test_bit(ATH9K_MODE_11G, ah->caps.wireless_modes))
1930 &sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
1931 if (test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes))
1933 &sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
1936 /* initialize tx/rx engine */
1937 error = ath_tx_init(sc, ATH_TXBUF);
1941 error = ath_rx_init(sc, ATH_RXBUF);
1945 INIT_WORK(&sc->chan_work, ath9k_wiphy_chan_work);
1946 INIT_DELAYED_WORK(&sc->wiphy_work, ath9k_wiphy_work);
1947 sc->wiphy_scheduler_int = msecs_to_jiffies(500);
1949 error = ieee80211_register_hw(hw);
1951 if (!ath_is_world_regd(reg)) {
1952 error = regulatory_hint(hw->wiphy, reg->alpha2);
1957 /* Initialize LED control */
1960 ath_start_rfkill_poll(sc);
1965 /* cleanup tx queues */
1966 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1967 if (ATH_TXQ_SETUP(sc, i))
1968 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
1970 ath9k_uninit_hw(sc);
1975 int ath_reset(struct ath_softc *sc, bool retry_tx)
1977 struct ath_hw *ah = sc->sc_ah;
1978 struct ath_common *common = ath9k_hw_common(ah);
1979 struct ieee80211_hw *hw = sc->hw;
1983 del_timer_sync(&common->ani.timer);
1985 ath9k_hw_set_interrupts(ah, 0);
1986 ath_drain_all_txq(sc, retry_tx);
1990 spin_lock_bh(&sc->sc_resetlock);
1991 r = ath9k_hw_reset(ah, sc->sc_ah->curchan, false);
1993 ath_print(common, ATH_DBG_FATAL,
1994 "Unable to reset hardware; reset status %d\n", r);
1995 spin_unlock_bh(&sc->sc_resetlock);
1997 if (ath_startrecv(sc) != 0)
1998 ath_print(common, ATH_DBG_FATAL,
1999 "Unable to start recv logic\n");
2002 * We may be doing a reset in response to a request
2003 * that changes the channel so update any state that
2004 * might change as a result.
2006 ath_cache_conf_rate(sc, &hw->conf);
2008 ath_update_txpow(sc);
2010 if (sc->sc_flags & SC_OP_BEACONS)
2011 ath_beacon_config(sc, NULL); /* restart beacons */
2013 ath9k_hw_set_interrupts(ah, sc->imask);
2017 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2018 if (ATH_TXQ_SETUP(sc, i)) {
2019 spin_lock_bh(&sc->tx.txq[i].axq_lock);
2020 ath_txq_schedule(sc, &sc->tx.txq[i]);
2021 spin_unlock_bh(&sc->tx.txq[i].axq_lock);
2027 ath_start_ani(common);
2033 * This function will allocate both the DMA descriptor structure, and the
2034 * buffers it contains. These are used to contain the descriptors used
2037 int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
2038 struct list_head *head, const char *name,
2039 int nbuf, int ndesc)
2041 #define DS2PHYS(_dd, _ds) \
2042 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
2043 #define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
2044 #define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
2045 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2046 struct ath_desc *ds;
2048 int i, bsize, error;
2050 ath_print(common, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
2053 INIT_LIST_HEAD(head);
2054 /* ath_desc must be a multiple of DWORDs */
2055 if ((sizeof(struct ath_desc) % 4) != 0) {
2056 ath_print(common, ATH_DBG_FATAL,
2057 "ath_desc not DWORD aligned\n");
2058 BUG_ON((sizeof(struct ath_desc) % 4) != 0);
2063 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
2066 * Need additional DMA memory because we can't use
2067 * descriptors that cross the 4K page boundary. Assume
2068 * one skipped descriptor per 4K page.
2070 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
2072 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
2075 while (ndesc_skipped) {
2076 dma_len = ndesc_skipped * sizeof(struct ath_desc);
2077 dd->dd_desc_len += dma_len;
2079 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
2083 /* allocate descriptors */
2084 dd->dd_desc = dma_alloc_coherent(sc->dev, dd->dd_desc_len,
2085 &dd->dd_desc_paddr, GFP_KERNEL);
2086 if (dd->dd_desc == NULL) {
2091 ath_print(common, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
2092 name, ds, (u32) dd->dd_desc_len,
2093 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
2095 /* allocate buffers */
2096 bsize = sizeof(struct ath_buf) * nbuf;
2097 bf = kzalloc(bsize, GFP_KERNEL);
2104 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
2106 bf->bf_daddr = DS2PHYS(dd, ds);
2108 if (!(sc->sc_ah->caps.hw_caps &
2109 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
2111 * Skip descriptor addresses which can cause 4KB
2112 * boundary crossing (addr + length) with a 32 dword
2115 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
2116 BUG_ON((caddr_t) bf->bf_desc >=
2117 ((caddr_t) dd->dd_desc +
2122 bf->bf_daddr = DS2PHYS(dd, ds);
2125 list_add_tail(&bf->list, head);
2129 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
2132 memset(dd, 0, sizeof(*dd));
2134 #undef ATH_DESC_4KB_BOUND_CHECK
2135 #undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
2139 void ath_descdma_cleanup(struct ath_softc *sc,
2140 struct ath_descdma *dd,
2141 struct list_head *head)
2143 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
2146 INIT_LIST_HEAD(head);
2147 kfree(dd->dd_bufptr);
2148 memset(dd, 0, sizeof(*dd));
2151 int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
2157 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO];
2160 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI];
2163 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
2166 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK];
2169 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
2176 int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
2181 case ATH9K_WME_AC_VO:
2184 case ATH9K_WME_AC_VI:
2187 case ATH9K_WME_AC_BE:
2190 case ATH9K_WME_AC_BK:
2201 /* XXX: Remove me once we don't depend on ath9k_channel for all
2202 * this redundant data */
2203 void ath9k_update_ichannel(struct ath_softc *sc, struct ieee80211_hw *hw,
2204 struct ath9k_channel *ichan)
2206 struct ieee80211_channel *chan = hw->conf.channel;
2207 struct ieee80211_conf *conf = &hw->conf;
2209 ichan->channel = chan->center_freq;
2212 if (chan->band == IEEE80211_BAND_2GHZ) {
2213 ichan->chanmode = CHANNEL_G;
2214 ichan->channelFlags = CHANNEL_2GHZ | CHANNEL_OFDM | CHANNEL_G;
2216 ichan->chanmode = CHANNEL_A;
2217 ichan->channelFlags = CHANNEL_5GHZ | CHANNEL_OFDM;
2220 if (conf_is_ht(conf))
2221 ichan->chanmode = ath_get_extchanmode(sc, chan,
2222 conf->channel_type);
2225 /**********************/
2226 /* mac80211 callbacks */
2227 /**********************/
2230 * (Re)start btcoex timers
2232 static void ath9k_btcoex_timer_resume(struct ath_softc *sc)
2234 struct ath_btcoex *btcoex = &sc->btcoex;
2235 struct ath_hw *ah = sc->sc_ah;
2237 ath_print(ath9k_hw_common(ah), ATH_DBG_BTCOEX,
2238 "Starting btcoex timers");
2240 /* make sure duty cycle timer is also stopped when resuming */
2241 if (btcoex->hw_timer_enabled)
2242 ath9k_gen_timer_stop(sc->sc_ah, btcoex->no_stomp_timer);
2244 btcoex->bt_priority_cnt = 0;
2245 btcoex->bt_priority_time = jiffies;
2246 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
2248 mod_timer(&btcoex->period_timer, jiffies);
2251 static int ath9k_start(struct ieee80211_hw *hw)
2253 struct ath_wiphy *aphy = hw->priv;
2254 struct ath_softc *sc = aphy->sc;
2255 struct ath_hw *ah = sc->sc_ah;
2256 struct ath_common *common = ath9k_hw_common(ah);
2257 struct ieee80211_channel *curchan = hw->conf.channel;
2258 struct ath9k_channel *init_channel;
2261 ath_print(common, ATH_DBG_CONFIG,
2262 "Starting driver with initial channel: %d MHz\n",
2263 curchan->center_freq);
2265 mutex_lock(&sc->mutex);
2267 if (ath9k_wiphy_started(sc)) {
2268 if (sc->chan_idx == curchan->hw_value) {
2270 * Already on the operational channel, the new wiphy
2271 * can be marked active.
2273 aphy->state = ATH_WIPHY_ACTIVE;
2274 ieee80211_wake_queues(hw);
2277 * Another wiphy is on another channel, start the new
2278 * wiphy in paused state.
2280 aphy->state = ATH_WIPHY_PAUSED;
2281 ieee80211_stop_queues(hw);
2283 mutex_unlock(&sc->mutex);
2286 aphy->state = ATH_WIPHY_ACTIVE;
2288 /* setup initial channel */
2290 sc->chan_idx = curchan->hw_value;
2292 init_channel = ath_get_curchannel(sc, hw);
2294 /* Reset SERDES registers */
2295 ath9k_hw_configpcipowersave(ah, 0, 0);
2298 * The basic interface to setting the hardware in a good
2299 * state is ``reset''. On return the hardware is known to
2300 * be powered up and with interrupts disabled. This must
2301 * be followed by initialization of the appropriate bits
2302 * and then setup of the interrupt mask.
2304 spin_lock_bh(&sc->sc_resetlock);
2305 r = ath9k_hw_reset(ah, init_channel, false);
2307 ath_print(common, ATH_DBG_FATAL,
2308 "Unable to reset hardware; reset status %d "
2309 "(freq %u MHz)\n", r,
2310 curchan->center_freq);
2311 spin_unlock_bh(&sc->sc_resetlock);
2314 spin_unlock_bh(&sc->sc_resetlock);
2317 * This is needed only to setup initial state
2318 * but it's best done after a reset.
2320 ath_update_txpow(sc);
2323 * Setup the hardware after reset:
2324 * The receive engine is set going.
2325 * Frame transmit is handled entirely
2326 * in the frame output path; there's nothing to do
2327 * here except setup the interrupt mask.
2329 if (ath_startrecv(sc) != 0) {
2330 ath_print(common, ATH_DBG_FATAL,
2331 "Unable to start recv logic\n");
2336 /* Setup our intr mask. */
2337 sc->imask = ATH9K_INT_RX | ATH9K_INT_TX
2338 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
2339 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
2341 if (ah->caps.hw_caps & ATH9K_HW_CAP_GTT)
2342 sc->imask |= ATH9K_INT_GTT;
2344 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
2345 sc->imask |= ATH9K_INT_CST;
2347 ath_cache_conf_rate(sc, &hw->conf);
2349 sc->sc_flags &= ~SC_OP_INVALID;
2351 /* Disable BMISS interrupt when we're not associated */
2352 sc->imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
2353 ath9k_hw_set_interrupts(ah, sc->imask);
2355 ieee80211_wake_queues(hw);
2357 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
2359 if ((ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE) &&
2360 !ah->btcoex_hw.enabled) {
2361 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
2362 AR_STOMP_LOW_WLAN_WGHT);
2363 ath9k_hw_btcoex_enable(ah);
2365 if (common->bus_ops->bt_coex_prep)
2366 common->bus_ops->bt_coex_prep(common);
2367 if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
2368 ath9k_btcoex_timer_resume(sc);
2372 mutex_unlock(&sc->mutex);
2377 static int ath9k_tx(struct ieee80211_hw *hw,
2378 struct sk_buff *skb)
2380 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2381 struct ath_wiphy *aphy = hw->priv;
2382 struct ath_softc *sc = aphy->sc;
2383 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2384 struct ath_tx_control txctl;
2385 int padpos, padsize;
2386 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2388 if (aphy->state != ATH_WIPHY_ACTIVE && aphy->state != ATH_WIPHY_SCAN) {
2389 ath_print(common, ATH_DBG_XMIT,
2390 "ath9k: %s: TX in unexpected wiphy state "
2391 "%d\n", wiphy_name(hw->wiphy), aphy->state);
2395 if (sc->ps_enabled) {
2397 * mac80211 does not set PM field for normal data frames, so we
2398 * need to update that based on the current PS mode.
2400 if (ieee80211_is_data(hdr->frame_control) &&
2401 !ieee80211_is_nullfunc(hdr->frame_control) &&
2402 !ieee80211_has_pm(hdr->frame_control)) {
2403 ath_print(common, ATH_DBG_PS, "Add PM=1 for a TX frame "
2404 "while in PS mode\n");
2405 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
2409 if (unlikely(sc->sc_ah->power_mode != ATH9K_PM_AWAKE)) {
2411 * We are using PS-Poll and mac80211 can request TX while in
2412 * power save mode. Need to wake up hardware for the TX to be
2413 * completed and if needed, also for RX of buffered frames.
2415 ath9k_ps_wakeup(sc);
2416 ath9k_hw_setrxabort(sc->sc_ah, 0);
2417 if (ieee80211_is_pspoll(hdr->frame_control)) {
2418 ath_print(common, ATH_DBG_PS,
2419 "Sending PS-Poll to pick a buffered frame\n");
2420 sc->sc_flags |= SC_OP_WAIT_FOR_PSPOLL_DATA;
2422 ath_print(common, ATH_DBG_PS,
2423 "Wake up to complete TX\n");
2424 sc->sc_flags |= SC_OP_WAIT_FOR_TX_ACK;
2427 * The actual restore operation will happen only after
2428 * the sc_flags bit is cleared. We are just dropping
2429 * the ps_usecount here.
2431 ath9k_ps_restore(sc);
2434 memset(&txctl, 0, sizeof(struct ath_tx_control));
2437 * As a temporary workaround, assign seq# here; this will likely need
2438 * to be cleaned up to work better with Beacon transmission and virtual
2441 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
2442 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
2443 sc->tx.seq_no += 0x10;
2444 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
2445 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
2448 /* Add the padding after the header if this is not already done */
2449 padpos = ath9k_cmn_padpos(hdr->frame_control);
2450 padsize = padpos & 3;
2451 if (padsize && skb->len>padpos) {
2452 if (skb_headroom(skb) < padsize)
2454 skb_push(skb, padsize);
2455 memmove(skb->data, skb->data + padsize, padpos);
2458 /* Check if a tx queue is available */
2460 txctl.txq = ath_test_get_txq(sc, skb);
2464 ath_print(common, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
2466 if (ath_tx_start(hw, skb, &txctl) != 0) {
2467 ath_print(common, ATH_DBG_XMIT, "TX failed\n");
2473 dev_kfree_skb_any(skb);
2478 * Pause btcoex timer and bt duty cycle timer
2480 static void ath9k_btcoex_timer_pause(struct ath_softc *sc)
2482 struct ath_btcoex *btcoex = &sc->btcoex;
2483 struct ath_hw *ah = sc->sc_ah;
2485 del_timer_sync(&btcoex->period_timer);
2487 if (btcoex->hw_timer_enabled)
2488 ath9k_gen_timer_stop(ah, btcoex->no_stomp_timer);
2490 btcoex->hw_timer_enabled = false;
2493 static void ath9k_stop(struct ieee80211_hw *hw)
2495 struct ath_wiphy *aphy = hw->priv;
2496 struct ath_softc *sc = aphy->sc;
2497 struct ath_hw *ah = sc->sc_ah;
2498 struct ath_common *common = ath9k_hw_common(ah);
2500 mutex_lock(&sc->mutex);
2502 aphy->state = ATH_WIPHY_INACTIVE;
2504 cancel_delayed_work_sync(&sc->ath_led_blink_work);
2505 cancel_delayed_work_sync(&sc->tx_complete_work);
2507 if (!sc->num_sec_wiphy) {
2508 cancel_delayed_work_sync(&sc->wiphy_work);
2509 cancel_work_sync(&sc->chan_work);
2512 if (sc->sc_flags & SC_OP_INVALID) {
2513 ath_print(common, ATH_DBG_ANY, "Device not present\n");
2514 mutex_unlock(&sc->mutex);
2518 if (ath9k_wiphy_started(sc)) {
2519 mutex_unlock(&sc->mutex);
2520 return; /* another wiphy still in use */
2523 /* Ensure HW is awake when we try to shut it down. */
2524 ath9k_ps_wakeup(sc);
2526 if (ah->btcoex_hw.enabled) {
2527 ath9k_hw_btcoex_disable(ah);
2528 if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
2529 ath9k_btcoex_timer_pause(sc);
2532 /* make sure h/w will not generate any interrupt
2533 * before setting the invalid flag. */
2534 ath9k_hw_set_interrupts(ah, 0);
2536 if (!(sc->sc_flags & SC_OP_INVALID)) {
2537 ath_drain_all_txq(sc, false);
2539 ath9k_hw_phy_disable(ah);
2541 sc->rx.rxlink = NULL;
2543 /* disable HAL and put h/w to sleep */
2544 ath9k_hw_disable(ah);
2545 ath9k_hw_configpcipowersave(ah, 1, 1);
2546 ath9k_ps_restore(sc);
2548 /* Finally, put the chip in FULL SLEEP mode */
2549 ath9k_setpower(sc, ATH9K_PM_FULL_SLEEP);
2551 sc->sc_flags |= SC_OP_INVALID;
2553 mutex_unlock(&sc->mutex);
2555 ath_print(common, ATH_DBG_CONFIG, "Driver halt\n");
2558 static int ath9k_add_interface(struct ieee80211_hw *hw,
2559 struct ieee80211_if_init_conf *conf)
2561 struct ath_wiphy *aphy = hw->priv;
2562 struct ath_softc *sc = aphy->sc;
2563 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2564 struct ath_vif *avp = (void *)conf->vif->drv_priv;
2565 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
2568 mutex_lock(&sc->mutex);
2570 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) &&
2576 switch (conf->type) {
2577 case NL80211_IFTYPE_STATION:
2578 ic_opmode = NL80211_IFTYPE_STATION;
2580 case NL80211_IFTYPE_ADHOC:
2581 case NL80211_IFTYPE_AP:
2582 case NL80211_IFTYPE_MESH_POINT:
2583 if (sc->nbcnvifs >= ATH_BCBUF) {
2587 ic_opmode = conf->type;
2590 ath_print(common, ATH_DBG_FATAL,
2591 "Interface type %d not yet supported\n", conf->type);
2596 ath_print(common, ATH_DBG_CONFIG,
2597 "Attach a VIF of type: %d\n", ic_opmode);
2599 /* Set the VIF opmode */
2600 avp->av_opmode = ic_opmode;
2605 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK)
2606 ath9k_set_bssid_mask(hw);
2609 goto out; /* skip global settings for secondary vif */
2611 if (ic_opmode == NL80211_IFTYPE_AP) {
2612 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2613 sc->sc_flags |= SC_OP_TSF_RESET;
2616 /* Set the device opmode */
2617 sc->sc_ah->opmode = ic_opmode;
2620 * Enable MIB interrupts when there are hardware phy counters.
2621 * Note we only do this (at the moment) for station mode.
2623 if ((conf->type == NL80211_IFTYPE_STATION) ||
2624 (conf->type == NL80211_IFTYPE_ADHOC) ||
2625 (conf->type == NL80211_IFTYPE_MESH_POINT)) {
2626 sc->imask |= ATH9K_INT_MIB;
2627 sc->imask |= ATH9K_INT_TSFOOR;
2630 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
2632 if (conf->type == NL80211_IFTYPE_AP ||
2633 conf->type == NL80211_IFTYPE_ADHOC ||
2634 conf->type == NL80211_IFTYPE_MONITOR)
2635 ath_start_ani(common);
2638 mutex_unlock(&sc->mutex);
2642 static void ath9k_remove_interface(struct ieee80211_hw *hw,
2643 struct ieee80211_if_init_conf *conf)
2645 struct ath_wiphy *aphy = hw->priv;
2646 struct ath_softc *sc = aphy->sc;
2647 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2648 struct ath_vif *avp = (void *)conf->vif->drv_priv;
2651 ath_print(common, ATH_DBG_CONFIG, "Detach Interface\n");
2653 mutex_lock(&sc->mutex);
2656 del_timer_sync(&common->ani.timer);
2658 /* Reclaim beacon resources */
2659 if ((sc->sc_ah->opmode == NL80211_IFTYPE_AP) ||
2660 (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) ||
2661 (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) {
2662 ath9k_ps_wakeup(sc);
2663 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
2664 ath9k_ps_restore(sc);
2667 ath_beacon_return(sc, avp);
2668 sc->sc_flags &= ~SC_OP_BEACONS;
2670 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) {
2671 if (sc->beacon.bslot[i] == conf->vif) {
2672 printk(KERN_DEBUG "%s: vif had allocated beacon "
2673 "slot\n", __func__);
2674 sc->beacon.bslot[i] = NULL;
2675 sc->beacon.bslot_aphy[i] = NULL;
2681 mutex_unlock(&sc->mutex);
2684 void ath9k_enable_ps(struct ath_softc *sc)
2686 sc->ps_enabled = true;
2687 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2688 if ((sc->imask & ATH9K_INT_TIM_TIMER) == 0) {
2689 sc->imask |= ATH9K_INT_TIM_TIMER;
2690 ath9k_hw_set_interrupts(sc->sc_ah,
2694 ath9k_hw_setrxabort(sc->sc_ah, 1);
2697 static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
2699 struct ath_wiphy *aphy = hw->priv;
2700 struct ath_softc *sc = aphy->sc;
2701 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2702 struct ieee80211_conf *conf = &hw->conf;
2703 struct ath_hw *ah = sc->sc_ah;
2706 mutex_lock(&sc->mutex);
2709 * Leave this as the first check because we need to turn on the
2710 * radio if it was disabled before prior to processing the rest
2711 * of the changes. Likewise we must only disable the radio towards
2714 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
2716 bool all_wiphys_idle;
2717 bool idle = !!(conf->flags & IEEE80211_CONF_IDLE);
2719 spin_lock_bh(&sc->wiphy_lock);
2720 all_wiphys_idle = ath9k_all_wiphys_idle(sc);
2721 ath9k_set_wiphy_idle(aphy, idle);
2723 if (!idle && all_wiphys_idle)
2724 enable_radio = true;
2727 * After we unlock here its possible another wiphy
2728 * can be re-renabled so to account for that we will
2729 * only disable the radio toward the end of this routine
2730 * if by then all wiphys are still idle.
2732 spin_unlock_bh(&sc->wiphy_lock);
2735 ath_radio_enable(sc, hw);
2736 ath_print(common, ATH_DBG_CONFIG,
2737 "not-idle: enabling radio\n");
2742 * We just prepare to enable PS. We have to wait until our AP has
2743 * ACK'd our null data frame to disable RX otherwise we'll ignore
2744 * those ACKs and end up retransmitting the same null data frames.
2745 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
2747 if (changed & IEEE80211_CONF_CHANGE_PS) {
2748 if (conf->flags & IEEE80211_CONF_PS) {
2749 sc->sc_flags |= SC_OP_PS_ENABLED;
2751 * At this point we know hardware has received an ACK
2752 * of a previously sent null data frame.
2754 if ((sc->sc_flags & SC_OP_NULLFUNC_COMPLETED)) {
2755 sc->sc_flags &= ~SC_OP_NULLFUNC_COMPLETED;
2756 ath9k_enable_ps(sc);
2759 sc->ps_enabled = false;
2760 sc->sc_flags &= ~(SC_OP_PS_ENABLED |
2761 SC_OP_NULLFUNC_COMPLETED);
2762 ath9k_setpower(sc, ATH9K_PM_AWAKE);
2763 if (!(ah->caps.hw_caps &
2764 ATH9K_HW_CAP_AUTOSLEEP)) {
2765 ath9k_hw_setrxabort(sc->sc_ah, 0);
2766 sc->sc_flags &= ~(SC_OP_WAIT_FOR_BEACON |
2767 SC_OP_WAIT_FOR_CAB |
2768 SC_OP_WAIT_FOR_PSPOLL_DATA |
2769 SC_OP_WAIT_FOR_TX_ACK);
2770 if (sc->imask & ATH9K_INT_TIM_TIMER) {
2771 sc->imask &= ~ATH9K_INT_TIM_TIMER;
2772 ath9k_hw_set_interrupts(sc->sc_ah,
2779 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
2780 struct ieee80211_channel *curchan = hw->conf.channel;
2781 int pos = curchan->hw_value;
2783 aphy->chan_idx = pos;
2784 aphy->chan_is_ht = conf_is_ht(conf);
2786 if (aphy->state == ATH_WIPHY_SCAN ||
2787 aphy->state == ATH_WIPHY_ACTIVE)
2788 ath9k_wiphy_pause_all_forced(sc, aphy);
2791 * Do not change operational channel based on a paused
2794 goto skip_chan_change;
2797 ath_print(common, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2798 curchan->center_freq);
2800 /* XXX: remove me eventualy */
2801 ath9k_update_ichannel(sc, hw, &sc->sc_ah->channels[pos]);
2803 ath_update_chainmask(sc, conf_is_ht(conf));
2805 if (ath_set_channel(sc, hw, &sc->sc_ah->channels[pos]) < 0) {
2806 ath_print(common, ATH_DBG_FATAL,
2807 "Unable to set channel\n");
2808 mutex_unlock(&sc->mutex);
2814 if (changed & IEEE80211_CONF_CHANGE_POWER)
2815 sc->config.txpowlimit = 2 * conf->power_level;
2817 spin_lock_bh(&sc->wiphy_lock);
2818 disable_radio = ath9k_all_wiphys_idle(sc);
2819 spin_unlock_bh(&sc->wiphy_lock);
2821 if (disable_radio) {
2822 ath_print(common, ATH_DBG_CONFIG, "idle: disabling radio\n");
2823 ath_radio_disable(sc, hw);
2826 mutex_unlock(&sc->mutex);
2831 #define SUPPORTED_FILTERS \
2832 (FIF_PROMISC_IN_BSS | \
2837 FIF_BCN_PRBRESP_PROMISC | \
2840 /* FIXME: sc->sc_full_reset ? */
2841 static void ath9k_configure_filter(struct ieee80211_hw *hw,
2842 unsigned int changed_flags,
2843 unsigned int *total_flags,
2846 struct ath_wiphy *aphy = hw->priv;
2847 struct ath_softc *sc = aphy->sc;
2850 changed_flags &= SUPPORTED_FILTERS;
2851 *total_flags &= SUPPORTED_FILTERS;
2853 sc->rx.rxfilter = *total_flags;
2854 ath9k_ps_wakeup(sc);
2855 rfilt = ath_calcrxfilter(sc);
2856 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2857 ath9k_ps_restore(sc);
2859 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_CONFIG,
2860 "Set HW RX filter: 0x%x\n", rfilt);
2863 static void ath9k_sta_notify(struct ieee80211_hw *hw,
2864 struct ieee80211_vif *vif,
2865 enum sta_notify_cmd cmd,
2866 struct ieee80211_sta *sta)
2868 struct ath_wiphy *aphy = hw->priv;
2869 struct ath_softc *sc = aphy->sc;
2872 case STA_NOTIFY_ADD:
2873 ath_node_attach(sc, sta);
2875 case STA_NOTIFY_REMOVE:
2876 ath_node_detach(sc, sta);
2883 static int ath9k_conf_tx(struct ieee80211_hw *hw, u16 queue,
2884 const struct ieee80211_tx_queue_params *params)
2886 struct ath_wiphy *aphy = hw->priv;
2887 struct ath_softc *sc = aphy->sc;
2888 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2889 struct ath9k_tx_queue_info qi;
2892 if (queue >= WME_NUM_AC)
2895 mutex_lock(&sc->mutex);
2897 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
2899 qi.tqi_aifs = params->aifs;
2900 qi.tqi_cwmin = params->cw_min;
2901 qi.tqi_cwmax = params->cw_max;
2902 qi.tqi_burstTime = params->txop;
2903 qnum = ath_get_hal_qnum(queue, sc);
2905 ath_print(common, ATH_DBG_CONFIG,
2906 "Configure tx [queue/halq] [%d/%d], "
2907 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
2908 queue, qnum, params->aifs, params->cw_min,
2909 params->cw_max, params->txop);
2911 ret = ath_txq_update(sc, qnum, &qi);
2913 ath_print(common, ATH_DBG_FATAL, "TXQ Update failed\n");
2915 if (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC)
2916 if ((qnum == sc->tx.hwq_map[ATH9K_WME_AC_BE]) && !ret)
2917 ath_beaconq_config(sc);
2919 mutex_unlock(&sc->mutex);
2924 static int ath9k_set_key(struct ieee80211_hw *hw,
2925 enum set_key_cmd cmd,
2926 struct ieee80211_vif *vif,
2927 struct ieee80211_sta *sta,
2928 struct ieee80211_key_conf *key)
2930 struct ath_wiphy *aphy = hw->priv;
2931 struct ath_softc *sc = aphy->sc;
2932 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2935 if (modparam_nohwcrypt)
2938 mutex_lock(&sc->mutex);
2939 ath9k_ps_wakeup(sc);
2940 ath_print(common, ATH_DBG_CONFIG, "Set HW Key\n");
2944 ret = ath_key_config(common, vif, sta, key);
2946 key->hw_key_idx = ret;
2947 /* push IV and Michael MIC generation to stack */
2948 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2949 if (key->alg == ALG_TKIP)
2950 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
2951 if (sc->sc_ah->sw_mgmt_crypto && key->alg == ALG_CCMP)
2952 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT;
2957 ath_key_delete(common, key);
2963 ath9k_ps_restore(sc);
2964 mutex_unlock(&sc->mutex);
2969 static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2970 struct ieee80211_vif *vif,
2971 struct ieee80211_bss_conf *bss_conf,
2974 struct ath_wiphy *aphy = hw->priv;
2975 struct ath_softc *sc = aphy->sc;
2976 struct ath_hw *ah = sc->sc_ah;
2977 struct ath_common *common = ath9k_hw_common(ah);
2978 struct ath_vif *avp = (void *)vif->drv_priv;
2981 mutex_lock(&sc->mutex);
2983 if (changed & BSS_CHANGED_BSSID) {
2985 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
2986 memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN);
2988 ath9k_hw_write_associd(ah);
2990 /* Set aggregation protection mode parameters */
2991 sc->config.ath_aggr_prot = 0;
2993 /* Only legacy IBSS for now */
2994 if (vif->type == NL80211_IFTYPE_ADHOC)
2995 ath_update_chainmask(sc, 0);
2997 ath_print(common, ATH_DBG_CONFIG,
2998 "BSSID: %pM aid: 0x%x\n",
2999 common->curbssid, common->curaid);
3001 /* need to reconfigure the beacon */
3002 sc->sc_flags &= ~SC_OP_BEACONS ;
3005 /* Enable transmission of beacons (AP, IBSS, MESH) */
3006 if ((changed & BSS_CHANGED_BEACON) ||
3007 ((changed & BSS_CHANGED_BEACON_ENABLED) && bss_conf->enable_beacon)) {
3008 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
3009 error = ath_beacon_alloc(aphy, vif);
3011 ath_beacon_config(sc, vif);
3014 /* Disable transmission of beacons */
3015 if ((changed & BSS_CHANGED_BEACON_ENABLED) && !bss_conf->enable_beacon)
3016 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
3018 if (changed & BSS_CHANGED_BEACON_INT) {
3019 sc->beacon_interval = bss_conf->beacon_int;
3021 * In case of AP mode, the HW TSF has to be reset
3022 * when the beacon interval changes.
3024 if (vif->type == NL80211_IFTYPE_AP) {
3025 sc->sc_flags |= SC_OP_TSF_RESET;
3026 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
3027 error = ath_beacon_alloc(aphy, vif);
3029 ath_beacon_config(sc, vif);
3031 ath_beacon_config(sc, vif);
3035 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
3036 ath_print(common, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
3037 bss_conf->use_short_preamble);
3038 if (bss_conf->use_short_preamble)
3039 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
3041 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
3044 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
3045 ath_print(common, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
3046 bss_conf->use_cts_prot);
3047 if (bss_conf->use_cts_prot &&
3048 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
3049 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
3051 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
3054 if (changed & BSS_CHANGED_ASSOC) {
3055 ath_print(common, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
3057 ath9k_bss_assoc_info(sc, vif, bss_conf);
3060 mutex_unlock(&sc->mutex);
3063 static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
3066 struct ath_wiphy *aphy = hw->priv;
3067 struct ath_softc *sc = aphy->sc;
3069 mutex_lock(&sc->mutex);
3070 tsf = ath9k_hw_gettsf64(sc->sc_ah);
3071 mutex_unlock(&sc->mutex);
3076 static void ath9k_set_tsf(struct ieee80211_hw *hw, u64 tsf)
3078 struct ath_wiphy *aphy = hw->priv;
3079 struct ath_softc *sc = aphy->sc;
3081 mutex_lock(&sc->mutex);
3082 ath9k_hw_settsf64(sc->sc_ah, tsf);
3083 mutex_unlock(&sc->mutex);
3086 static void ath9k_reset_tsf(struct ieee80211_hw *hw)
3088 struct ath_wiphy *aphy = hw->priv;
3089 struct ath_softc *sc = aphy->sc;
3091 mutex_lock(&sc->mutex);
3093 ath9k_ps_wakeup(sc);
3094 ath9k_hw_reset_tsf(sc->sc_ah);
3095 ath9k_ps_restore(sc);
3097 mutex_unlock(&sc->mutex);
3100 static int ath9k_ampdu_action(struct ieee80211_hw *hw,
3101 struct ieee80211_vif *vif,
3102 enum ieee80211_ampdu_mlme_action action,
3103 struct ieee80211_sta *sta,
3106 struct ath_wiphy *aphy = hw->priv;
3107 struct ath_softc *sc = aphy->sc;
3111 case IEEE80211_AMPDU_RX_START:
3112 if (!(sc->sc_flags & SC_OP_RXAGGR))
3115 case IEEE80211_AMPDU_RX_STOP:
3117 case IEEE80211_AMPDU_TX_START:
3118 ath9k_ps_wakeup(sc);
3119 ath_tx_aggr_start(sc, sta, tid, ssn);
3120 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
3121 ath9k_ps_restore(sc);
3123 case IEEE80211_AMPDU_TX_STOP:
3124 ath9k_ps_wakeup(sc);
3125 ath_tx_aggr_stop(sc, sta, tid);
3126 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
3127 ath9k_ps_restore(sc);
3129 case IEEE80211_AMPDU_TX_OPERATIONAL:
3130 ath9k_ps_wakeup(sc);
3131 ath_tx_aggr_resume(sc, sta, tid);
3132 ath9k_ps_restore(sc);
3135 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
3136 "Unknown AMPDU action\n");
3142 static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
3144 struct ath_wiphy *aphy = hw->priv;
3145 struct ath_softc *sc = aphy->sc;
3147 mutex_lock(&sc->mutex);
3148 if (ath9k_wiphy_scanning(sc)) {
3149 printk(KERN_DEBUG "ath9k: Two wiphys trying to scan at the "
3152 * Do not allow the concurrent scanning state for now. This
3153 * could be improved with scanning control moved into ath9k.
3155 mutex_unlock(&sc->mutex);
3159 aphy->state = ATH_WIPHY_SCAN;
3160 ath9k_wiphy_pause_all_forced(sc, aphy);
3162 spin_lock_bh(&sc->ani_lock);
3163 sc->sc_flags |= SC_OP_SCANNING;
3164 spin_unlock_bh(&sc->ani_lock);
3165 mutex_unlock(&sc->mutex);
3168 static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
3170 struct ath_wiphy *aphy = hw->priv;
3171 struct ath_softc *sc = aphy->sc;
3173 mutex_lock(&sc->mutex);
3174 spin_lock_bh(&sc->ani_lock);
3175 aphy->state = ATH_WIPHY_ACTIVE;
3176 sc->sc_flags &= ~SC_OP_SCANNING;
3177 sc->sc_flags |= SC_OP_FULL_RESET;
3178 spin_unlock_bh(&sc->ani_lock);
3179 ath_beacon_config(sc, NULL);
3180 mutex_unlock(&sc->mutex);
3183 struct ieee80211_ops ath9k_ops = {
3185 .start = ath9k_start,
3187 .add_interface = ath9k_add_interface,
3188 .remove_interface = ath9k_remove_interface,
3189 .config = ath9k_config,
3190 .configure_filter = ath9k_configure_filter,
3191 .sta_notify = ath9k_sta_notify,
3192 .conf_tx = ath9k_conf_tx,
3193 .bss_info_changed = ath9k_bss_info_changed,
3194 .set_key = ath9k_set_key,
3195 .get_tsf = ath9k_get_tsf,
3196 .set_tsf = ath9k_set_tsf,
3197 .reset_tsf = ath9k_reset_tsf,
3198 .ampdu_action = ath9k_ampdu_action,
3199 .sw_scan_start = ath9k_sw_scan_start,
3200 .sw_scan_complete = ath9k_sw_scan_complete,
3201 .rfkill_poll = ath9k_rfkill_poll_state,
3204 static int __init ath9k_init(void)
3208 /* Register rate control algorithm */
3209 error = ath_rate_control_register();
3212 "ath9k: Unable to register rate control "
3218 error = ath9k_debug_create_root();
3221 "ath9k: Unable to create debugfs root: %d\n",
3223 goto err_rate_unregister;
3226 error = ath_pci_init();
3229 "ath9k: No PCI devices found, driver not installed.\n");
3231 goto err_remove_root;
3234 error = ath_ahb_init();
3246 ath9k_debug_remove_root();
3247 err_rate_unregister:
3248 ath_rate_control_unregister();
3252 module_init(ath9k_init);
3254 static void __exit ath9k_exit(void)
3258 ath9k_debug_remove_root();
3259 ath_rate_control_unregister();
3260 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
3262 module_exit(ath9k_exit);