2 * Copyright (c) 2008-2011 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>
18 #include <linux/delay.h>
22 u8
ath9k_parse_mpdudensity(u8 mpdudensity
)
25 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
26 * 0 for no restriction
35 switch (mpdudensity
) {
41 /* Our lower layer calculations limit our precision to
57 static bool ath9k_has_pending_frames(struct ath_softc
*sc
, struct ath_txq
*txq
,
62 spin_lock_bh(&txq
->axq_lock
);
72 if (txq
->mac80211_qnum
>= 0) {
73 struct list_head
*list
;
75 list
= &sc
->cur_chan
->acq
[txq
->mac80211_qnum
];
76 if (!list_empty(list
))
80 spin_unlock_bh(&txq
->axq_lock
);
84 static bool ath9k_setpower(struct ath_softc
*sc
, enum ath9k_power_mode mode
)
89 spin_lock_irqsave(&sc
->sc_pm_lock
, flags
);
90 ret
= ath9k_hw_setpower(sc
->sc_ah
, mode
);
91 spin_unlock_irqrestore(&sc
->sc_pm_lock
, flags
);
96 void ath_ps_full_sleep(unsigned long data
)
98 struct ath_softc
*sc
= (struct ath_softc
*) data
;
99 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
102 spin_lock(&common
->cc_lock
);
103 ath_hw_cycle_counters_update(common
);
104 spin_unlock(&common
->cc_lock
);
106 ath9k_hw_setrxabort(sc
->sc_ah
, 1);
107 ath9k_hw_stopdmarecv(sc
->sc_ah
, &reset
);
109 ath9k_hw_setpower(sc
->sc_ah
, ATH9K_PM_FULL_SLEEP
);
112 void ath9k_ps_wakeup(struct ath_softc
*sc
)
114 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
116 enum ath9k_power_mode power_mode
;
118 spin_lock_irqsave(&sc
->sc_pm_lock
, flags
);
119 if (++sc
->ps_usecount
!= 1)
122 del_timer_sync(&sc
->sleep_timer
);
123 power_mode
= sc
->sc_ah
->power_mode
;
124 ath9k_hw_setpower(sc
->sc_ah
, ATH9K_PM_AWAKE
);
127 * While the hardware is asleep, the cycle counters contain no
128 * useful data. Better clear them now so that they don't mess up
129 * survey data results.
131 if (power_mode
!= ATH9K_PM_AWAKE
) {
132 spin_lock(&common
->cc_lock
);
133 ath_hw_cycle_counters_update(common
);
134 memset(&common
->cc_survey
, 0, sizeof(common
->cc_survey
));
135 memset(&common
->cc_ani
, 0, sizeof(common
->cc_ani
));
136 spin_unlock(&common
->cc_lock
);
140 spin_unlock_irqrestore(&sc
->sc_pm_lock
, flags
);
143 void ath9k_ps_restore(struct ath_softc
*sc
)
145 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
146 enum ath9k_power_mode mode
;
149 spin_lock_irqsave(&sc
->sc_pm_lock
, flags
);
150 if (--sc
->ps_usecount
!= 0)
154 mod_timer(&sc
->sleep_timer
, jiffies
+ HZ
/ 10);
158 if (sc
->ps_enabled
&&
159 !(sc
->ps_flags
& (PS_WAIT_FOR_BEACON
|
161 PS_WAIT_FOR_PSPOLL_DATA
|
164 mode
= ATH9K_PM_NETWORK_SLEEP
;
165 if (ath9k_hw_btcoex_is_enabled(sc
->sc_ah
))
166 ath9k_btcoex_stop_gen_timer(sc
);
171 spin_lock(&common
->cc_lock
);
172 ath_hw_cycle_counters_update(common
);
173 spin_unlock(&common
->cc_lock
);
175 ath9k_hw_setpower(sc
->sc_ah
, mode
);
178 spin_unlock_irqrestore(&sc
->sc_pm_lock
, flags
);
181 static void __ath_cancel_work(struct ath_softc
*sc
)
183 cancel_work_sync(&sc
->paprd_work
);
184 cancel_delayed_work_sync(&sc
->tx_complete_work
);
185 cancel_delayed_work_sync(&sc
->hw_pll_work
);
187 #ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
188 if (ath9k_hw_mci_is_enabled(sc
->sc_ah
))
189 cancel_work_sync(&sc
->mci_work
);
193 void ath_cancel_work(struct ath_softc
*sc
)
195 __ath_cancel_work(sc
);
196 cancel_work_sync(&sc
->hw_reset_work
);
199 void ath_restart_work(struct ath_softc
*sc
)
201 ieee80211_queue_delayed_work(sc
->hw
, &sc
->tx_complete_work
, 0);
203 if (AR_SREV_9340(sc
->sc_ah
) || AR_SREV_9330(sc
->sc_ah
))
204 ieee80211_queue_delayed_work(sc
->hw
, &sc
->hw_pll_work
,
205 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL
));
210 static bool ath_prepare_reset(struct ath_softc
*sc
)
212 struct ath_hw
*ah
= sc
->sc_ah
;
215 ieee80211_stop_queues(sc
->hw
);
217 ath9k_hw_disable_interrupts(ah
);
219 if (AR_SREV_9300_20_OR_LATER(ah
)) {
220 ret
&= ath_stoprecv(sc
);
221 ret
&= ath_drain_all_txq(sc
);
223 ret
&= ath_drain_all_txq(sc
);
224 ret
&= ath_stoprecv(sc
);
230 static bool ath_complete_reset(struct ath_softc
*sc
, bool start
)
232 struct ath_hw
*ah
= sc
->sc_ah
;
233 struct ath_common
*common
= ath9k_hw_common(ah
);
236 ath9k_calculate_summary_state(sc
, sc
->cur_chan
);
238 ath9k_cmn_update_txpow(ah
, sc
->cur_chan
->cur_txpower
,
239 sc
->cur_chan
->txpower
,
240 &sc
->cur_chan
->cur_txpower
);
241 clear_bit(ATH_OP_HW_RESET
, &common
->op_flags
);
243 if (!sc
->cur_chan
->offchannel
&& start
) {
244 /* restore per chanctx TSF timer */
245 if (sc
->cur_chan
->tsf_val
) {
248 offset
= ath9k_hw_get_tsf_offset(&sc
->cur_chan
->tsf_ts
,
250 ath9k_hw_settsf64(ah
, sc
->cur_chan
->tsf_val
+ offset
);
254 if (!test_bit(ATH_OP_BEACONS
, &common
->op_flags
))
257 if (ah
->opmode
== NL80211_IFTYPE_STATION
&&
258 test_bit(ATH_OP_PRIM_STA_VIF
, &common
->op_flags
)) {
259 spin_lock_irqsave(&sc
->sc_pm_lock
, flags
);
260 sc
->ps_flags
|= PS_BEACON_SYNC
| PS_WAIT_FOR_BEACON
;
261 spin_unlock_irqrestore(&sc
->sc_pm_lock
, flags
);
263 ath9k_set_beacon(sc
);
266 ath_restart_work(sc
);
267 ath_txq_schedule_all(sc
);
272 ath9k_hw_set_interrupts(ah
);
273 ath9k_hw_enable_interrupts(ah
);
274 ieee80211_wake_queues(sc
->hw
);
275 ath9k_p2p_ps_timer(sc
);
280 static int ath_reset_internal(struct ath_softc
*sc
, struct ath9k_channel
*hchan
)
282 struct ath_hw
*ah
= sc
->sc_ah
;
283 struct ath_common
*common
= ath9k_hw_common(ah
);
284 struct ath9k_hw_cal_data
*caldata
= NULL
;
288 __ath_cancel_work(sc
);
290 disable_irq(sc
->irq
);
291 tasklet_disable(&sc
->intr_tq
);
292 tasklet_disable(&sc
->bcon_tasklet
);
293 spin_lock_bh(&sc
->sc_pcu_lock
);
295 if (!sc
->cur_chan
->offchannel
) {
297 caldata
= &sc
->cur_chan
->caldata
;
305 if (!ath_prepare_reset(sc
))
308 if (ath9k_is_chanctx_enabled())
311 spin_lock_bh(&sc
->chan_lock
);
312 sc
->cur_chandef
= sc
->cur_chan
->chandef
;
313 spin_unlock_bh(&sc
->chan_lock
);
315 ath_dbg(common
, CONFIG
, "Reset to %u MHz, HT40: %d fastcc: %d\n",
316 hchan
->channel
, IS_CHAN_HT40(hchan
), fastcc
);
318 r
= ath9k_hw_reset(ah
, hchan
, caldata
, fastcc
);
321 "Unable to reset channel, reset status %d\n", r
);
323 ath9k_hw_enable_interrupts(ah
);
324 ath9k_queue_reset(sc
, RESET_TYPE_BB_HANG
);
329 if (ath9k_hw_mci_is_enabled(sc
->sc_ah
) &&
330 sc
->cur_chan
->offchannel
)
331 ath9k_mci_set_txpower(sc
, true, false);
333 if (!ath_complete_reset(sc
, true))
338 spin_unlock_bh(&sc
->sc_pcu_lock
);
339 tasklet_enable(&sc
->bcon_tasklet
);
340 tasklet_enable(&sc
->intr_tq
);
345 static void ath_node_attach(struct ath_softc
*sc
, struct ieee80211_sta
*sta
,
346 struct ieee80211_vif
*vif
)
349 an
= (struct ath_node
*)sta
->drv_priv
;
354 memset(&an
->key_idx
, 0, sizeof(an
->key_idx
));
356 ath_tx_node_init(sc
, an
);
358 ath_dynack_node_init(sc
->sc_ah
, an
);
361 static void ath_node_detach(struct ath_softc
*sc
, struct ieee80211_sta
*sta
)
363 struct ath_node
*an
= (struct ath_node
*)sta
->drv_priv
;
364 ath_tx_node_cleanup(sc
, an
);
366 ath_dynack_node_deinit(sc
->sc_ah
, an
);
369 void ath9k_tasklet(unsigned long data
)
371 struct ath_softc
*sc
= (struct ath_softc
*)data
;
372 struct ath_hw
*ah
= sc
->sc_ah
;
373 struct ath_common
*common
= ath9k_hw_common(ah
);
374 enum ath_reset_type type
;
379 spin_lock_irqsave(&sc
->intr_lock
, flags
);
380 status
= sc
->intrstatus
;
382 spin_unlock_irqrestore(&sc
->intr_lock
, flags
);
385 spin_lock(&sc
->sc_pcu_lock
);
387 if (status
& ATH9K_INT_FATAL
) {
388 type
= RESET_TYPE_FATAL_INT
;
389 ath9k_queue_reset(sc
, type
);
390 ath_dbg(common
, RESET
, "FATAL: Skipping interrupts\n");
394 if ((ah
->config
.hw_hang_checks
& HW_BB_WATCHDOG
) &&
395 (status
& ATH9K_INT_BB_WATCHDOG
)) {
396 spin_lock(&common
->cc_lock
);
397 ath_hw_cycle_counters_update(common
);
398 ar9003_hw_bb_watchdog_dbg_info(ah
);
399 spin_unlock(&common
->cc_lock
);
401 if (ar9003_hw_bb_watchdog_check(ah
)) {
402 type
= RESET_TYPE_BB_WATCHDOG
;
403 ath9k_queue_reset(sc
, type
);
405 ath_dbg(common
, RESET
,
406 "BB_WATCHDOG: Skipping interrupts\n");
411 if (status
& ATH9K_INT_GTT
) {
414 if ((sc
->gtt_cnt
>= MAX_GTT_CNT
) && !ath9k_hw_check_alive(ah
)) {
415 type
= RESET_TYPE_TX_GTT
;
416 ath9k_queue_reset(sc
, type
);
417 ath_dbg(common
, RESET
,
418 "GTT: Skipping interrupts\n");
423 spin_lock_irqsave(&sc
->sc_pm_lock
, flags
);
424 if ((status
& ATH9K_INT_TSFOOR
) && sc
->ps_enabled
) {
426 * TSF sync does not look correct; remain awake to sync with
429 ath_dbg(common
, PS
, "TSFOOR - Sync with next Beacon\n");
430 sc
->ps_flags
|= PS_WAIT_FOR_BEACON
| PS_BEACON_SYNC
;
432 spin_unlock_irqrestore(&sc
->sc_pm_lock
, flags
);
434 if (ah
->caps
.hw_caps
& ATH9K_HW_CAP_EDMA
)
435 rxmask
= (ATH9K_INT_RXHP
| ATH9K_INT_RXLP
| ATH9K_INT_RXEOL
|
438 rxmask
= (ATH9K_INT_RX
| ATH9K_INT_RXEOL
| ATH9K_INT_RXORN
);
440 if (status
& rxmask
) {
441 /* Check for high priority Rx first */
442 if ((ah
->caps
.hw_caps
& ATH9K_HW_CAP_EDMA
) &&
443 (status
& ATH9K_INT_RXHP
))
444 ath_rx_tasklet(sc
, 0, true);
446 ath_rx_tasklet(sc
, 0, false);
449 if (status
& ATH9K_INT_TX
) {
450 if (ah
->caps
.hw_caps
& ATH9K_HW_CAP_EDMA
) {
452 * For EDMA chips, TX completion is enabled for the
453 * beacon queue, so if a beacon has been transmitted
454 * successfully after a GTT interrupt, the GTT counter
455 * gets reset to zero here.
459 ath_tx_edma_tasklet(sc
);
464 wake_up(&sc
->tx_wait
);
467 if (status
& ATH9K_INT_GENTIMER
)
468 ath_gen_timer_isr(sc
->sc_ah
);
470 ath9k_btcoex_handle_interrupt(sc
, status
);
472 /* re-enable hardware interrupt */
473 ath9k_hw_resume_interrupts(ah
);
475 spin_unlock(&sc
->sc_pcu_lock
);
476 ath9k_ps_restore(sc
);
479 irqreturn_t
ath_isr(int irq
, void *dev
)
481 #define SCHED_INTR ( \
483 ATH9K_INT_BB_WATCHDOG | \
494 ATH9K_INT_GENTIMER | \
497 struct ath_softc
*sc
= dev
;
498 struct ath_hw
*ah
= sc
->sc_ah
;
499 struct ath_common
*common
= ath9k_hw_common(ah
);
500 enum ath9k_int status
;
505 * The hardware is not ready/present, don't
506 * touch anything. Note this can happen early
507 * on if the IRQ is shared.
509 if (!ah
|| test_bit(ATH_OP_INVALID
, &common
->op_flags
))
512 /* shared irq, not for us */
513 if (!ath9k_hw_intrpend(ah
))
517 * Figure out the reason(s) for the interrupt. Note
518 * that the hal returns a pseudo-ISR that may include
519 * bits we haven't explicitly enabled so we mask the
520 * value to insure we only process bits we requested.
522 ath9k_hw_getisr(ah
, &status
, &sync_cause
); /* NB: clears ISR too */
523 ath9k_debug_sync_cause(sc
, sync_cause
);
524 status
&= ah
->imask
; /* discard unasked-for bits */
526 if (test_bit(ATH_OP_HW_RESET
, &common
->op_flags
))
530 * If there are no status bits set, then this interrupt was not
531 * for me (should have been caught above).
536 /* Cache the status */
537 spin_lock(&sc
->intr_lock
);
538 sc
->intrstatus
|= status
;
539 spin_unlock(&sc
->intr_lock
);
541 if (status
& SCHED_INTR
)
545 * If a FATAL interrupt is received, we have to reset the chip
548 if (status
& ATH9K_INT_FATAL
)
551 if ((ah
->config
.hw_hang_checks
& HW_BB_WATCHDOG
) &&
552 (status
& ATH9K_INT_BB_WATCHDOG
))
555 if (status
& ATH9K_INT_SWBA
)
556 tasklet_schedule(&sc
->bcon_tasklet
);
558 if (status
& ATH9K_INT_TXURN
)
559 ath9k_hw_updatetxtriglevel(ah
, true);
561 if (status
& ATH9K_INT_RXEOL
) {
562 ah
->imask
&= ~(ATH9K_INT_RXEOL
| ATH9K_INT_RXORN
);
563 ath9k_hw_set_interrupts(ah
);
566 if (!(ah
->caps
.hw_caps
& ATH9K_HW_CAP_AUTOSLEEP
))
567 if (status
& ATH9K_INT_TIM_TIMER
) {
568 if (ATH_DBG_WARN_ON_ONCE(sc
->ps_idle
))
570 /* Clear RxAbort bit so that we can
572 ath9k_setpower(sc
, ATH9K_PM_AWAKE
);
573 spin_lock(&sc
->sc_pm_lock
);
574 ath9k_hw_setrxabort(sc
->sc_ah
, 0);
575 sc
->ps_flags
|= PS_WAIT_FOR_BEACON
;
576 spin_unlock(&sc
->sc_pm_lock
);
581 ath_debug_stat_interrupt(sc
, status
);
584 /* turn off every interrupt */
585 ath9k_hw_kill_interrupts(ah
);
586 tasklet_schedule(&sc
->intr_tq
);
595 * This function is called when a HW reset cannot be deferred
596 * and has to be immediate.
598 int ath_reset(struct ath_softc
*sc
, struct ath9k_channel
*hchan
)
600 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
603 ath9k_hw_kill_interrupts(sc
->sc_ah
);
604 set_bit(ATH_OP_HW_RESET
, &common
->op_flags
);
607 r
= ath_reset_internal(sc
, hchan
);
608 ath9k_ps_restore(sc
);
614 * When a HW reset can be deferred, it is added to the
615 * hw_reset_work workqueue, but we set ATH_OP_HW_RESET before
618 void ath9k_queue_reset(struct ath_softc
*sc
, enum ath_reset_type type
)
620 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
621 #ifdef CONFIG_ATH9K_DEBUGFS
622 RESET_STAT_INC(sc
, type
);
624 ath9k_hw_kill_interrupts(sc
->sc_ah
);
625 set_bit(ATH_OP_HW_RESET
, &common
->op_flags
);
626 ieee80211_queue_work(sc
->hw
, &sc
->hw_reset_work
);
629 void ath_reset_work(struct work_struct
*work
)
631 struct ath_softc
*sc
= container_of(work
, struct ath_softc
, hw_reset_work
);
634 ath_reset_internal(sc
, NULL
);
635 ath9k_ps_restore(sc
);
638 /**********************/
639 /* mac80211 callbacks */
640 /**********************/
642 static int ath9k_start(struct ieee80211_hw
*hw
)
644 struct ath_softc
*sc
= hw
->priv
;
645 struct ath_hw
*ah
= sc
->sc_ah
;
646 struct ath_common
*common
= ath9k_hw_common(ah
);
647 struct ieee80211_channel
*curchan
= sc
->cur_chan
->chandef
.chan
;
648 struct ath_chanctx
*ctx
= sc
->cur_chan
;
649 struct ath9k_channel
*init_channel
;
652 ath_dbg(common
, CONFIG
,
653 "Starting driver with initial channel: %d MHz\n",
654 curchan
->center_freq
);
657 mutex_lock(&sc
->mutex
);
659 init_channel
= ath9k_cmn_get_channel(hw
, ah
, &ctx
->chandef
);
660 sc
->cur_chandef
= hw
->conf
.chandef
;
662 /* Reset SERDES registers */
663 ath9k_hw_configpcipowersave(ah
, false);
666 * The basic interface to setting the hardware in a good
667 * state is ``reset''. On return the hardware is known to
668 * be powered up and with interrupts disabled. This must
669 * be followed by initialization of the appropriate bits
670 * and then setup of the interrupt mask.
672 spin_lock_bh(&sc
->sc_pcu_lock
);
674 atomic_set(&ah
->intr_ref_cnt
, -1);
676 r
= ath9k_hw_reset(ah
, init_channel
, ah
->caldata
, false);
679 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
680 r
, curchan
->center_freq
);
681 ah
->reset_power_on
= false;
684 /* Setup our intr mask. */
685 ah
->imask
= ATH9K_INT_TX
| ATH9K_INT_RXEOL
|
686 ATH9K_INT_RXORN
| ATH9K_INT_FATAL
|
689 if (ah
->caps
.hw_caps
& ATH9K_HW_CAP_EDMA
)
690 ah
->imask
|= ATH9K_INT_RXHP
|
693 ah
->imask
|= ATH9K_INT_RX
;
695 if (ah
->config
.hw_hang_checks
& HW_BB_WATCHDOG
)
696 ah
->imask
|= ATH9K_INT_BB_WATCHDOG
;
699 * Enable GTT interrupts only for AR9003/AR9004 chips
702 if (AR_SREV_9300_20_OR_LATER(ah
))
703 ah
->imask
|= ATH9K_INT_GTT
;
705 if (ah
->caps
.hw_caps
& ATH9K_HW_CAP_HT
)
706 ah
->imask
|= ATH9K_INT_CST
;
710 clear_bit(ATH_OP_INVALID
, &common
->op_flags
);
711 sc
->sc_ah
->is_monitoring
= false;
713 if (!ath_complete_reset(sc
, false))
714 ah
->reset_power_on
= false;
716 if (ah
->led_pin
>= 0) {
717 ath9k_hw_cfg_output(ah
, ah
->led_pin
,
718 AR_GPIO_OUTPUT_MUX_AS_OUTPUT
);
719 ath9k_hw_set_gpio(ah
, ah
->led_pin
,
720 (ah
->config
.led_active_high
) ? 1 : 0);
724 * Reset key cache to sane defaults (all entries cleared) instead of
725 * semi-random values after suspend/resume.
727 ath9k_cmn_init_crypto(sc
->sc_ah
);
729 ath9k_hw_reset_tsf(ah
);
731 spin_unlock_bh(&sc
->sc_pcu_lock
);
733 mutex_unlock(&sc
->mutex
);
735 ath9k_ps_restore(sc
);
740 static void ath9k_tx(struct ieee80211_hw
*hw
,
741 struct ieee80211_tx_control
*control
,
744 struct ath_softc
*sc
= hw
->priv
;
745 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
746 struct ath_tx_control txctl
;
747 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
750 if (sc
->ps_enabled
) {
752 * mac80211 does not set PM field for normal data frames, so we
753 * need to update that based on the current PS mode.
755 if (ieee80211_is_data(hdr
->frame_control
) &&
756 !ieee80211_is_nullfunc(hdr
->frame_control
) &&
757 !ieee80211_has_pm(hdr
->frame_control
)) {
759 "Add PM=1 for a TX frame while in PS mode\n");
760 hdr
->frame_control
|= cpu_to_le16(IEEE80211_FCTL_PM
);
764 if (unlikely(sc
->sc_ah
->power_mode
== ATH9K_PM_NETWORK_SLEEP
)) {
766 * We are using PS-Poll and mac80211 can request TX while in
767 * power save mode. Need to wake up hardware for the TX to be
768 * completed and if needed, also for RX of buffered frames.
771 spin_lock_irqsave(&sc
->sc_pm_lock
, flags
);
772 if (!(sc
->sc_ah
->caps
.hw_caps
& ATH9K_HW_CAP_AUTOSLEEP
))
773 ath9k_hw_setrxabort(sc
->sc_ah
, 0);
774 if (ieee80211_is_pspoll(hdr
->frame_control
)) {
776 "Sending PS-Poll to pick a buffered frame\n");
777 sc
->ps_flags
|= PS_WAIT_FOR_PSPOLL_DATA
;
779 ath_dbg(common
, PS
, "Wake up to complete TX\n");
780 sc
->ps_flags
|= PS_WAIT_FOR_TX_ACK
;
783 * The actual restore operation will happen only after
784 * the ps_flags bit is cleared. We are just dropping
785 * the ps_usecount here.
787 spin_unlock_irqrestore(&sc
->sc_pm_lock
, flags
);
788 ath9k_ps_restore(sc
);
792 * Cannot tx while the hardware is in full sleep, it first needs a full
793 * chip reset to recover from that
795 if (unlikely(sc
->sc_ah
->power_mode
== ATH9K_PM_FULL_SLEEP
)) {
796 ath_err(common
, "TX while HW is in FULL_SLEEP mode\n");
800 memset(&txctl
, 0, sizeof(struct ath_tx_control
));
801 txctl
.txq
= sc
->tx
.txq_map
[skb_get_queue_mapping(skb
)];
802 txctl
.sta
= control
->sta
;
804 ath_dbg(common
, XMIT
, "transmitting packet, skb: %p\n", skb
);
806 if (ath_tx_start(hw
, skb
, &txctl
) != 0) {
807 ath_dbg(common
, XMIT
, "TX failed\n");
808 TX_STAT_INC(txctl
.txq
->axq_qnum
, txfailed
);
814 ieee80211_free_txskb(hw
, skb
);
817 static void ath9k_stop(struct ieee80211_hw
*hw
)
819 struct ath_softc
*sc
= hw
->priv
;
820 struct ath_hw
*ah
= sc
->sc_ah
;
821 struct ath_common
*common
= ath9k_hw_common(ah
);
824 ath9k_deinit_channel_context(sc
);
826 mutex_lock(&sc
->mutex
);
830 if (test_bit(ATH_OP_INVALID
, &common
->op_flags
)) {
831 ath_dbg(common
, ANY
, "Device not present\n");
832 mutex_unlock(&sc
->mutex
);
836 /* Ensure HW is awake when we try to shut it down. */
839 spin_lock_bh(&sc
->sc_pcu_lock
);
841 /* prevent tasklets to enable interrupts once we disable them */
842 ah
->imask
&= ~ATH9K_INT_GLOBAL
;
844 /* make sure h/w will not generate any interrupt
845 * before setting the invalid flag. */
846 ath9k_hw_disable_interrupts(ah
);
848 spin_unlock_bh(&sc
->sc_pcu_lock
);
850 /* we can now sync irq and kill any running tasklets, since we already
851 * disabled interrupts and not holding a spin lock */
852 synchronize_irq(sc
->irq
);
853 tasklet_kill(&sc
->intr_tq
);
854 tasklet_kill(&sc
->bcon_tasklet
);
856 prev_idle
= sc
->ps_idle
;
859 spin_lock_bh(&sc
->sc_pcu_lock
);
861 if (ah
->led_pin
>= 0) {
862 ath9k_hw_set_gpio(ah
, ah
->led_pin
,
863 (ah
->config
.led_active_high
) ? 0 : 1);
864 ath9k_hw_cfg_gpio_input(ah
, ah
->led_pin
);
867 ath_prepare_reset(sc
);
870 dev_kfree_skb_any(sc
->rx
.frag
);
875 ah
->curchan
= ath9k_cmn_get_channel(hw
, ah
,
876 &sc
->cur_chan
->chandef
);
878 ath9k_hw_reset(ah
, ah
->curchan
, ah
->caldata
, false);
880 set_bit(ATH_OP_INVALID
, &common
->op_flags
);
882 ath9k_hw_phy_disable(ah
);
884 ath9k_hw_configpcipowersave(ah
, true);
886 spin_unlock_bh(&sc
->sc_pcu_lock
);
888 ath9k_ps_restore(sc
);
890 sc
->ps_idle
= prev_idle
;
892 mutex_unlock(&sc
->mutex
);
894 ath_dbg(common
, CONFIG
, "Driver halt\n");
897 static bool ath9k_uses_beacons(int type
)
900 case NL80211_IFTYPE_AP
:
901 case NL80211_IFTYPE_ADHOC
:
902 case NL80211_IFTYPE_MESH_POINT
:
909 static void ath9k_vif_iter(struct ath9k_vif_iter_data
*iter_data
,
910 u8
*mac
, struct ieee80211_vif
*vif
)
912 struct ath_vif
*avp
= (struct ath_vif
*)vif
->drv_priv
;
915 if (iter_data
->has_hw_macaddr
) {
916 for (i
= 0; i
< ETH_ALEN
; i
++)
917 iter_data
->mask
[i
] &=
918 ~(iter_data
->hw_macaddr
[i
] ^ mac
[i
]);
920 memcpy(iter_data
->hw_macaddr
, mac
, ETH_ALEN
);
921 iter_data
->has_hw_macaddr
= true;
924 if (!vif
->bss_conf
.use_short_slot
)
925 iter_data
->slottime
= ATH9K_SLOT_TIME_20
;
928 case NL80211_IFTYPE_AP
:
931 case NL80211_IFTYPE_STATION
:
932 iter_data
->nstations
++;
933 if (avp
->assoc
&& !iter_data
->primary_sta
)
934 iter_data
->primary_sta
= vif
;
936 case NL80211_IFTYPE_OCB
:
939 case NL80211_IFTYPE_ADHOC
:
940 iter_data
->nadhocs
++;
941 if (vif
->bss_conf
.enable_beacon
)
942 iter_data
->beacons
= true;
944 case NL80211_IFTYPE_MESH_POINT
:
945 iter_data
->nmeshes
++;
946 if (vif
->bss_conf
.enable_beacon
)
947 iter_data
->beacons
= true;
949 case NL80211_IFTYPE_WDS
:
957 static void ath9k_update_bssid_mask(struct ath_softc
*sc
,
958 struct ath_chanctx
*ctx
,
959 struct ath9k_vif_iter_data
*iter_data
)
961 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
965 if (!ath9k_is_chanctx_enabled())
968 list_for_each_entry(avp
, &ctx
->vifs
, list
) {
969 if (ctx
->nvifs_assigned
!= 1)
972 if (!avp
->vif
->p2p
|| !iter_data
->has_hw_macaddr
)
975 ether_addr_copy(common
->curbssid
, avp
->bssid
);
977 /* perm_addr will be used as the p2p device address. */
978 for (i
= 0; i
< ETH_ALEN
; i
++)
979 iter_data
->mask
[i
] &=
980 ~(iter_data
->hw_macaddr
[i
] ^
981 sc
->hw
->wiphy
->perm_addr
[i
]);
985 /* Called with sc->mutex held. */
986 void ath9k_calculate_iter_data(struct ath_softc
*sc
,
987 struct ath_chanctx
*ctx
,
988 struct ath9k_vif_iter_data
*iter_data
)
993 * The hardware will use primary station addr together with the
994 * BSSID mask when matching addresses.
996 memset(iter_data
, 0, sizeof(*iter_data
));
997 eth_broadcast_addr(iter_data
->mask
);
998 iter_data
->slottime
= ATH9K_SLOT_TIME_9
;
1000 list_for_each_entry(avp
, &ctx
->vifs
, list
)
1001 ath9k_vif_iter(iter_data
, avp
->vif
->addr
, avp
->vif
);
1003 ath9k_update_bssid_mask(sc
, ctx
, iter_data
);
1006 static void ath9k_set_assoc_state(struct ath_softc
*sc
,
1007 struct ieee80211_vif
*vif
, bool changed
)
1009 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1010 struct ath_vif
*avp
= (struct ath_vif
*)vif
->drv_priv
;
1011 unsigned long flags
;
1013 set_bit(ATH_OP_PRIM_STA_VIF
, &common
->op_flags
);
1015 ether_addr_copy(common
->curbssid
, avp
->bssid
);
1016 common
->curaid
= avp
->aid
;
1017 ath9k_hw_write_associd(sc
->sc_ah
);
1020 common
->last_rssi
= ATH_RSSI_DUMMY_MARKER
;
1021 sc
->sc_ah
->stats
.avgbrssi
= ATH_RSSI_DUMMY_MARKER
;
1023 spin_lock_irqsave(&sc
->sc_pm_lock
, flags
);
1024 sc
->ps_flags
|= PS_BEACON_SYNC
| PS_WAIT_FOR_BEACON
;
1025 spin_unlock_irqrestore(&sc
->sc_pm_lock
, flags
);
1028 if (ath9k_hw_mci_is_enabled(sc
->sc_ah
))
1029 ath9k_mci_update_wlan_channels(sc
, false);
1031 ath_dbg(common
, CONFIG
,
1032 "Primary Station interface: %pM, BSSID: %pM\n",
1033 vif
->addr
, common
->curbssid
);
1036 #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1037 static void ath9k_set_offchannel_state(struct ath_softc
*sc
)
1039 struct ath_hw
*ah
= sc
->sc_ah
;
1040 struct ath_common
*common
= ath9k_hw_common(ah
);
1041 struct ieee80211_vif
*vif
= NULL
;
1043 ath9k_ps_wakeup(sc
);
1045 if (sc
->offchannel
.state
< ATH_OFFCHANNEL_ROC_START
)
1046 vif
= sc
->offchannel
.scan_vif
;
1048 vif
= sc
->offchannel
.roc_vif
;
1053 eth_zero_addr(common
->curbssid
);
1054 eth_broadcast_addr(common
->bssidmask
);
1055 memcpy(common
->macaddr
, vif
->addr
, ETH_ALEN
);
1057 ah
->opmode
= vif
->type
;
1058 ah
->imask
&= ~ATH9K_INT_SWBA
;
1059 ah
->imask
&= ~ATH9K_INT_TSFOOR
;
1060 ah
->slottime
= ATH9K_SLOT_TIME_9
;
1062 ath_hw_setbssidmask(common
);
1063 ath9k_hw_setopmode(ah
);
1064 ath9k_hw_write_associd(sc
->sc_ah
);
1065 ath9k_hw_set_interrupts(ah
);
1066 ath9k_hw_init_global_settings(ah
);
1069 ath9k_ps_restore(sc
);
1073 /* Called with sc->mutex held. */
1074 void ath9k_calculate_summary_state(struct ath_softc
*sc
,
1075 struct ath_chanctx
*ctx
)
1077 struct ath_hw
*ah
= sc
->sc_ah
;
1078 struct ath_common
*common
= ath9k_hw_common(ah
);
1079 struct ath9k_vif_iter_data iter_data
;
1080 struct ath_beacon_config
*cur_conf
;
1082 ath_chanctx_check_active(sc
, ctx
);
1084 if (ctx
!= sc
->cur_chan
)
1087 #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1088 if (ctx
== &sc
->offchannel
.chan
)
1089 return ath9k_set_offchannel_state(sc
);
1092 ath9k_ps_wakeup(sc
);
1093 ath9k_calculate_iter_data(sc
, ctx
, &iter_data
);
1095 if (iter_data
.has_hw_macaddr
)
1096 memcpy(common
->macaddr
, iter_data
.hw_macaddr
, ETH_ALEN
);
1098 memcpy(common
->bssidmask
, iter_data
.mask
, ETH_ALEN
);
1099 ath_hw_setbssidmask(common
);
1101 if (iter_data
.naps
> 0) {
1102 cur_conf
= &ctx
->beacon
;
1103 ath9k_hw_set_tsfadjust(ah
, true);
1104 ah
->opmode
= NL80211_IFTYPE_AP
;
1105 if (cur_conf
->enable_beacon
)
1106 iter_data
.beacons
= true;
1108 ath9k_hw_set_tsfadjust(ah
, false);
1110 if (iter_data
.nmeshes
)
1111 ah
->opmode
= NL80211_IFTYPE_MESH_POINT
;
1112 else if (iter_data
.nocbs
)
1113 ah
->opmode
= NL80211_IFTYPE_OCB
;
1114 else if (iter_data
.nwds
)
1115 ah
->opmode
= NL80211_IFTYPE_AP
;
1116 else if (iter_data
.nadhocs
)
1117 ah
->opmode
= NL80211_IFTYPE_ADHOC
;
1119 ah
->opmode
= NL80211_IFTYPE_STATION
;
1122 ath9k_hw_setopmode(ah
);
1124 ctx
->switch_after_beacon
= false;
1125 if ((iter_data
.nstations
+ iter_data
.nadhocs
+ iter_data
.nmeshes
) > 0)
1126 ah
->imask
|= ATH9K_INT_TSFOOR
;
1128 ah
->imask
&= ~ATH9K_INT_TSFOOR
;
1129 if (iter_data
.naps
== 1 && iter_data
.beacons
)
1130 ctx
->switch_after_beacon
= true;
1133 ah
->imask
&= ~ATH9K_INT_SWBA
;
1134 if (ah
->opmode
== NL80211_IFTYPE_STATION
) {
1135 bool changed
= (iter_data
.primary_sta
!= ctx
->primary_sta
);
1137 if (iter_data
.primary_sta
) {
1138 iter_data
.beacons
= true;
1139 ath9k_set_assoc_state(sc
, iter_data
.primary_sta
,
1141 ctx
->primary_sta
= iter_data
.primary_sta
;
1143 ctx
->primary_sta
= NULL
;
1144 eth_zero_addr(common
->curbssid
);
1146 ath9k_hw_write_associd(sc
->sc_ah
);
1147 if (ath9k_hw_mci_is_enabled(sc
->sc_ah
))
1148 ath9k_mci_update_wlan_channels(sc
, true);
1150 } else if (iter_data
.beacons
) {
1151 ah
->imask
|= ATH9K_INT_SWBA
;
1153 ath9k_hw_set_interrupts(ah
);
1155 if (iter_data
.beacons
)
1156 set_bit(ATH_OP_BEACONS
, &common
->op_flags
);
1158 clear_bit(ATH_OP_BEACONS
, &common
->op_flags
);
1160 if (ah
->slottime
!= iter_data
.slottime
) {
1161 ah
->slottime
= iter_data
.slottime
;
1162 ath9k_hw_init_global_settings(ah
);
1165 if (iter_data
.primary_sta
)
1166 set_bit(ATH_OP_PRIM_STA_VIF
, &common
->op_flags
);
1168 clear_bit(ATH_OP_PRIM_STA_VIF
, &common
->op_flags
);
1170 ath_dbg(common
, CONFIG
,
1171 "macaddr: %pM, bssid: %pM, bssidmask: %pM\n",
1172 common
->macaddr
, common
->curbssid
, common
->bssidmask
);
1174 ath9k_ps_restore(sc
);
1177 static void ath9k_tpc_vif_iter(void *data
, u8
*mac
, struct ieee80211_vif
*vif
)
1179 int *power
= (int *)data
;
1181 if (*power
< vif
->bss_conf
.txpower
)
1182 *power
= vif
->bss_conf
.txpower
;
1185 /* Called with sc->mutex held. */
1186 void ath9k_set_txpower(struct ath_softc
*sc
, struct ieee80211_vif
*vif
)
1189 struct ath_hw
*ah
= sc
->sc_ah
;
1190 struct ath_regulatory
*reg
= ath9k_hw_regulatory(ah
);
1192 ath9k_ps_wakeup(sc
);
1193 if (ah
->tpc_enabled
) {
1194 power
= (vif
) ? vif
->bss_conf
.txpower
: -1;
1195 ieee80211_iterate_active_interfaces_atomic(
1196 sc
->hw
, IEEE80211_IFACE_ITER_RESUME_ALL
,
1197 ath9k_tpc_vif_iter
, &power
);
1199 power
= sc
->hw
->conf
.power_level
;
1201 power
= sc
->hw
->conf
.power_level
;
1203 sc
->cur_chan
->txpower
= 2 * power
;
1204 ath9k_hw_set_txpowerlimit(ah
, sc
->cur_chan
->txpower
, false);
1205 sc
->cur_chan
->cur_txpower
= reg
->max_power_level
;
1206 ath9k_ps_restore(sc
);
1209 static void ath9k_assign_hw_queues(struct ieee80211_hw
*hw
,
1210 struct ieee80211_vif
*vif
)
1214 if (!ath9k_is_chanctx_enabled())
1217 for (i
= 0; i
< IEEE80211_NUM_ACS
; i
++)
1218 vif
->hw_queue
[i
] = i
;
1220 if (vif
->type
== NL80211_IFTYPE_AP
||
1221 vif
->type
== NL80211_IFTYPE_MESH_POINT
)
1222 vif
->cab_queue
= hw
->queues
- 2;
1224 vif
->cab_queue
= IEEE80211_INVAL_HW_QUEUE
;
1227 static int ath9k_add_interface(struct ieee80211_hw
*hw
,
1228 struct ieee80211_vif
*vif
)
1230 struct ath_softc
*sc
= hw
->priv
;
1231 struct ath_hw
*ah
= sc
->sc_ah
;
1232 struct ath_common
*common
= ath9k_hw_common(ah
);
1233 struct ath_vif
*avp
= (void *)vif
->drv_priv
;
1234 struct ath_node
*an
= &avp
->mcast_node
;
1236 mutex_lock(&sc
->mutex
);
1238 if (config_enabled(CONFIG_ATH9K_TX99
)) {
1239 if (sc
->cur_chan
->nvifs
>= 1) {
1240 mutex_unlock(&sc
->mutex
);
1246 ath_dbg(common
, CONFIG
, "Attach a VIF of type: %d\n", vif
->type
);
1247 sc
->cur_chan
->nvifs
++;
1249 if (ath9k_uses_beacons(vif
->type
))
1250 ath9k_beacon_assign_slot(sc
, vif
);
1253 if (!ath9k_is_chanctx_enabled()) {
1254 avp
->chanctx
= sc
->cur_chan
;
1255 list_add_tail(&avp
->list
, &avp
->chanctx
->vifs
);
1258 ath9k_calculate_summary_state(sc
, avp
->chanctx
);
1260 ath9k_assign_hw_queues(hw
, vif
);
1262 ath9k_set_txpower(sc
, vif
);
1267 an
->no_ps_filter
= true;
1268 ath_tx_node_init(sc
, an
);
1270 mutex_unlock(&sc
->mutex
);
1274 static int ath9k_change_interface(struct ieee80211_hw
*hw
,
1275 struct ieee80211_vif
*vif
,
1276 enum nl80211_iftype new_type
,
1279 struct ath_softc
*sc
= hw
->priv
;
1280 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1281 struct ath_vif
*avp
= (void *)vif
->drv_priv
;
1283 mutex_lock(&sc
->mutex
);
1285 if (config_enabled(CONFIG_ATH9K_TX99
)) {
1286 mutex_unlock(&sc
->mutex
);
1290 ath_dbg(common
, CONFIG
, "Change Interface\n");
1292 if (ath9k_uses_beacons(vif
->type
))
1293 ath9k_beacon_remove_slot(sc
, vif
);
1295 vif
->type
= new_type
;
1298 if (ath9k_uses_beacons(vif
->type
))
1299 ath9k_beacon_assign_slot(sc
, vif
);
1301 ath9k_assign_hw_queues(hw
, vif
);
1302 ath9k_calculate_summary_state(sc
, avp
->chanctx
);
1304 ath9k_set_txpower(sc
, vif
);
1306 mutex_unlock(&sc
->mutex
);
1310 static void ath9k_remove_interface(struct ieee80211_hw
*hw
,
1311 struct ieee80211_vif
*vif
)
1313 struct ath_softc
*sc
= hw
->priv
;
1314 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1315 struct ath_vif
*avp
= (void *)vif
->drv_priv
;
1317 ath_dbg(common
, CONFIG
, "Detach Interface\n");
1319 mutex_lock(&sc
->mutex
);
1321 ath9k_p2p_remove_vif(sc
, vif
);
1323 sc
->cur_chan
->nvifs
--;
1324 sc
->tx99_vif
= NULL
;
1325 if (!ath9k_is_chanctx_enabled())
1326 list_del(&avp
->list
);
1328 if (ath9k_uses_beacons(vif
->type
))
1329 ath9k_beacon_remove_slot(sc
, vif
);
1331 ath_tx_node_cleanup(sc
, &avp
->mcast_node
);
1333 ath9k_calculate_summary_state(sc
, avp
->chanctx
);
1335 ath9k_set_txpower(sc
, NULL
);
1337 mutex_unlock(&sc
->mutex
);
1340 static void ath9k_enable_ps(struct ath_softc
*sc
)
1342 struct ath_hw
*ah
= sc
->sc_ah
;
1343 struct ath_common
*common
= ath9k_hw_common(ah
);
1345 if (config_enabled(CONFIG_ATH9K_TX99
))
1348 sc
->ps_enabled
= true;
1349 if (!(ah
->caps
.hw_caps
& ATH9K_HW_CAP_AUTOSLEEP
)) {
1350 if ((ah
->imask
& ATH9K_INT_TIM_TIMER
) == 0) {
1351 ah
->imask
|= ATH9K_INT_TIM_TIMER
;
1352 ath9k_hw_set_interrupts(ah
);
1354 ath9k_hw_setrxabort(ah
, 1);
1356 ath_dbg(common
, PS
, "PowerSave enabled\n");
1359 static void ath9k_disable_ps(struct ath_softc
*sc
)
1361 struct ath_hw
*ah
= sc
->sc_ah
;
1362 struct ath_common
*common
= ath9k_hw_common(ah
);
1364 if (config_enabled(CONFIG_ATH9K_TX99
))
1367 sc
->ps_enabled
= false;
1368 ath9k_hw_setpower(ah
, ATH9K_PM_AWAKE
);
1369 if (!(ah
->caps
.hw_caps
& ATH9K_HW_CAP_AUTOSLEEP
)) {
1370 ath9k_hw_setrxabort(ah
, 0);
1371 sc
->ps_flags
&= ~(PS_WAIT_FOR_BEACON
|
1373 PS_WAIT_FOR_PSPOLL_DATA
|
1374 PS_WAIT_FOR_TX_ACK
);
1375 if (ah
->imask
& ATH9K_INT_TIM_TIMER
) {
1376 ah
->imask
&= ~ATH9K_INT_TIM_TIMER
;
1377 ath9k_hw_set_interrupts(ah
);
1380 ath_dbg(common
, PS
, "PowerSave disabled\n");
1383 static int ath9k_config(struct ieee80211_hw
*hw
, u32 changed
)
1385 struct ath_softc
*sc
= hw
->priv
;
1386 struct ath_hw
*ah
= sc
->sc_ah
;
1387 struct ath_common
*common
= ath9k_hw_common(ah
);
1388 struct ieee80211_conf
*conf
= &hw
->conf
;
1389 struct ath_chanctx
*ctx
= sc
->cur_chan
;
1391 ath9k_ps_wakeup(sc
);
1392 mutex_lock(&sc
->mutex
);
1394 if (changed
& IEEE80211_CONF_CHANGE_IDLE
) {
1395 sc
->ps_idle
= !!(conf
->flags
& IEEE80211_CONF_IDLE
);
1397 ath_cancel_work(sc
);
1398 ath9k_stop_btcoex(sc
);
1400 ath9k_start_btcoex(sc
);
1402 * The chip needs a reset to properly wake up from
1405 ath_chanctx_set_channel(sc
, ctx
, &ctx
->chandef
);
1410 * We just prepare to enable PS. We have to wait until our AP has
1411 * ACK'd our null data frame to disable RX otherwise we'll ignore
1412 * those ACKs and end up retransmitting the same null data frames.
1413 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1415 if (changed
& IEEE80211_CONF_CHANGE_PS
) {
1416 unsigned long flags
;
1417 spin_lock_irqsave(&sc
->sc_pm_lock
, flags
);
1418 if (conf
->flags
& IEEE80211_CONF_PS
)
1419 ath9k_enable_ps(sc
);
1421 ath9k_disable_ps(sc
);
1422 spin_unlock_irqrestore(&sc
->sc_pm_lock
, flags
);
1425 if (changed
& IEEE80211_CONF_CHANGE_MONITOR
) {
1426 if (conf
->flags
& IEEE80211_CONF_MONITOR
) {
1427 ath_dbg(common
, CONFIG
, "Monitor mode is enabled\n");
1428 sc
->sc_ah
->is_monitoring
= true;
1430 ath_dbg(common
, CONFIG
, "Monitor mode is disabled\n");
1431 sc
->sc_ah
->is_monitoring
= false;
1435 if (!ath9k_is_chanctx_enabled() && (changed
& IEEE80211_CONF_CHANGE_CHANNEL
)) {
1436 ctx
->offchannel
= !!(conf
->flags
& IEEE80211_CONF_OFFCHANNEL
);
1437 ath_chanctx_set_channel(sc
, ctx
, &hw
->conf
.chandef
);
1440 mutex_unlock(&sc
->mutex
);
1441 ath9k_ps_restore(sc
);
1446 #define SUPPORTED_FILTERS \
1451 FIF_BCN_PRBRESP_PROMISC | \
1455 /* FIXME: sc->sc_full_reset ? */
1456 static void ath9k_configure_filter(struct ieee80211_hw
*hw
,
1457 unsigned int changed_flags
,
1458 unsigned int *total_flags
,
1461 struct ath_softc
*sc
= hw
->priv
;
1462 struct ath_chanctx
*ctx
;
1465 changed_flags
&= SUPPORTED_FILTERS
;
1466 *total_flags
&= SUPPORTED_FILTERS
;
1468 spin_lock_bh(&sc
->chan_lock
);
1469 ath_for_each_chanctx(sc
, ctx
)
1470 ctx
->rxfilter
= *total_flags
;
1471 #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1472 sc
->offchannel
.chan
.rxfilter
= *total_flags
;
1474 spin_unlock_bh(&sc
->chan_lock
);
1476 ath9k_ps_wakeup(sc
);
1477 rfilt
= ath_calcrxfilter(sc
);
1478 ath9k_hw_setrxfilter(sc
->sc_ah
, rfilt
);
1479 ath9k_ps_restore(sc
);
1481 ath_dbg(ath9k_hw_common(sc
->sc_ah
), CONFIG
, "Set HW RX filter: 0x%x\n",
1485 static int ath9k_sta_add(struct ieee80211_hw
*hw
,
1486 struct ieee80211_vif
*vif
,
1487 struct ieee80211_sta
*sta
)
1489 struct ath_softc
*sc
= hw
->priv
;
1490 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1491 struct ath_node
*an
= (struct ath_node
*) sta
->drv_priv
;
1492 struct ieee80211_key_conf ps_key
= { };
1495 ath_node_attach(sc
, sta
, vif
);
1497 if (vif
->type
!= NL80211_IFTYPE_AP
&&
1498 vif
->type
!= NL80211_IFTYPE_AP_VLAN
)
1501 key
= ath_key_config(common
, vif
, sta
, &ps_key
);
1504 an
->key_idx
[0] = key
;
1510 static void ath9k_del_ps_key(struct ath_softc
*sc
,
1511 struct ieee80211_vif
*vif
,
1512 struct ieee80211_sta
*sta
)
1514 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1515 struct ath_node
*an
= (struct ath_node
*) sta
->drv_priv
;
1516 struct ieee80211_key_conf ps_key
= { .hw_key_idx
= an
->ps_key
};
1521 ath_key_delete(common
, &ps_key
);
1526 static int ath9k_sta_remove(struct ieee80211_hw
*hw
,
1527 struct ieee80211_vif
*vif
,
1528 struct ieee80211_sta
*sta
)
1530 struct ath_softc
*sc
= hw
->priv
;
1532 ath9k_del_ps_key(sc
, vif
, sta
);
1533 ath_node_detach(sc
, sta
);
1538 static int ath9k_sta_state(struct ieee80211_hw
*hw
,
1539 struct ieee80211_vif
*vif
,
1540 struct ieee80211_sta
*sta
,
1541 enum ieee80211_sta_state old_state
,
1542 enum ieee80211_sta_state new_state
)
1544 struct ath_softc
*sc
= hw
->priv
;
1545 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1548 if (old_state
== IEEE80211_STA_NOTEXIST
&&
1549 new_state
== IEEE80211_STA_NONE
) {
1550 ret
= ath9k_sta_add(hw
, vif
, sta
);
1551 ath_dbg(common
, CONFIG
,
1552 "Add station: %pM\n", sta
->addr
);
1553 } else if (old_state
== IEEE80211_STA_NONE
&&
1554 new_state
== IEEE80211_STA_NOTEXIST
) {
1555 ret
= ath9k_sta_remove(hw
, vif
, sta
);
1556 ath_dbg(common
, CONFIG
,
1557 "Remove station: %pM\n", sta
->addr
);
1560 if (ath9k_is_chanctx_enabled()) {
1561 if (vif
->type
== NL80211_IFTYPE_STATION
) {
1562 if (old_state
== IEEE80211_STA_ASSOC
&&
1563 new_state
== IEEE80211_STA_AUTHORIZED
)
1564 ath_chanctx_event(sc
, vif
,
1565 ATH_CHANCTX_EVENT_AUTHORIZED
);
1572 static void ath9k_sta_set_tx_filter(struct ath_hw
*ah
,
1573 struct ath_node
*an
,
1578 for (i
= 0; i
< ARRAY_SIZE(an
->key_idx
); i
++) {
1579 if (!an
->key_idx
[i
])
1581 ath9k_hw_set_tx_filter(ah
, an
->key_idx
[i
], set
);
1585 static void ath9k_sta_notify(struct ieee80211_hw
*hw
,
1586 struct ieee80211_vif
*vif
,
1587 enum sta_notify_cmd cmd
,
1588 struct ieee80211_sta
*sta
)
1590 struct ath_softc
*sc
= hw
->priv
;
1591 struct ath_node
*an
= (struct ath_node
*) sta
->drv_priv
;
1594 case STA_NOTIFY_SLEEP
:
1595 an
->sleeping
= true;
1596 ath_tx_aggr_sleep(sta
, sc
, an
);
1597 ath9k_sta_set_tx_filter(sc
->sc_ah
, an
, true);
1599 case STA_NOTIFY_AWAKE
:
1600 ath9k_sta_set_tx_filter(sc
->sc_ah
, an
, false);
1601 an
->sleeping
= false;
1602 ath_tx_aggr_wakeup(sc
, an
);
1607 static int ath9k_conf_tx(struct ieee80211_hw
*hw
,
1608 struct ieee80211_vif
*vif
, u16 queue
,
1609 const struct ieee80211_tx_queue_params
*params
)
1611 struct ath_softc
*sc
= hw
->priv
;
1612 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1613 struct ath_txq
*txq
;
1614 struct ath9k_tx_queue_info qi
;
1617 if (queue
>= IEEE80211_NUM_ACS
)
1620 txq
= sc
->tx
.txq_map
[queue
];
1622 ath9k_ps_wakeup(sc
);
1623 mutex_lock(&sc
->mutex
);
1625 memset(&qi
, 0, sizeof(struct ath9k_tx_queue_info
));
1627 qi
.tqi_aifs
= params
->aifs
;
1628 qi
.tqi_cwmin
= params
->cw_min
;
1629 qi
.tqi_cwmax
= params
->cw_max
;
1630 qi
.tqi_burstTime
= params
->txop
* 32;
1632 ath_dbg(common
, CONFIG
,
1633 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1634 queue
, txq
->axq_qnum
, params
->aifs
, params
->cw_min
,
1635 params
->cw_max
, params
->txop
);
1637 ath_update_max_aggr_framelen(sc
, queue
, qi
.tqi_burstTime
);
1638 ret
= ath_txq_update(sc
, txq
->axq_qnum
, &qi
);
1640 ath_err(common
, "TXQ Update failed\n");
1642 mutex_unlock(&sc
->mutex
);
1643 ath9k_ps_restore(sc
);
1648 static int ath9k_set_key(struct ieee80211_hw
*hw
,
1649 enum set_key_cmd cmd
,
1650 struct ieee80211_vif
*vif
,
1651 struct ieee80211_sta
*sta
,
1652 struct ieee80211_key_conf
*key
)
1654 struct ath_softc
*sc
= hw
->priv
;
1655 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1656 struct ath_node
*an
= NULL
;
1659 if (ath9k_modparam_nohwcrypt
)
1662 if ((vif
->type
== NL80211_IFTYPE_ADHOC
||
1663 vif
->type
== NL80211_IFTYPE_MESH_POINT
) &&
1664 (key
->cipher
== WLAN_CIPHER_SUITE_TKIP
||
1665 key
->cipher
== WLAN_CIPHER_SUITE_CCMP
) &&
1666 !(key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
)) {
1668 * For now, disable hw crypto for the RSN IBSS group keys. This
1669 * could be optimized in the future to use a modified key cache
1670 * design to support per-STA RX GTK, but until that gets
1671 * implemented, use of software crypto for group addressed
1672 * frames is a acceptable to allow RSN IBSS to be used.
1677 mutex_lock(&sc
->mutex
);
1678 ath9k_ps_wakeup(sc
);
1679 ath_dbg(common
, CONFIG
, "Set HW Key %d\n", cmd
);
1681 an
= (struct ath_node
*)sta
->drv_priv
;
1686 ath9k_del_ps_key(sc
, vif
, sta
);
1688 key
->hw_key_idx
= 0;
1689 ret
= ath_key_config(common
, vif
, sta
, key
);
1691 key
->hw_key_idx
= ret
;
1692 /* push IV and Michael MIC generation to stack */
1693 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
1694 if (key
->cipher
== WLAN_CIPHER_SUITE_TKIP
)
1695 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_MMIC
;
1696 if (sc
->sc_ah
->sw_mgmt_crypto_tx
&&
1697 key
->cipher
== WLAN_CIPHER_SUITE_CCMP
)
1698 key
->flags
|= IEEE80211_KEY_FLAG_SW_MGMT_TX
;
1701 if (an
&& key
->hw_key_idx
) {
1702 for (i
= 0; i
< ARRAY_SIZE(an
->key_idx
); i
++) {
1705 an
->key_idx
[i
] = key
->hw_key_idx
;
1708 WARN_ON(i
== ARRAY_SIZE(an
->key_idx
));
1712 ath_key_delete(common
, key
);
1714 for (i
= 0; i
< ARRAY_SIZE(an
->key_idx
); i
++) {
1715 if (an
->key_idx
[i
] != key
->hw_key_idx
)
1721 key
->hw_key_idx
= 0;
1727 ath9k_ps_restore(sc
);
1728 mutex_unlock(&sc
->mutex
);
1733 static void ath9k_bss_info_changed(struct ieee80211_hw
*hw
,
1734 struct ieee80211_vif
*vif
,
1735 struct ieee80211_bss_conf
*bss_conf
,
1739 (BSS_CHANGED_ASSOC | \
1740 BSS_CHANGED_IBSS | \
1741 BSS_CHANGED_BEACON_ENABLED)
1743 struct ath_softc
*sc
= hw
->priv
;
1744 struct ath_hw
*ah
= sc
->sc_ah
;
1745 struct ath_common
*common
= ath9k_hw_common(ah
);
1746 struct ath_vif
*avp
= (void *)vif
->drv_priv
;
1749 ath9k_ps_wakeup(sc
);
1750 mutex_lock(&sc
->mutex
);
1752 if (changed
& BSS_CHANGED_ASSOC
) {
1753 ath_dbg(common
, CONFIG
, "BSSID %pM Changed ASSOC %d\n",
1754 bss_conf
->bssid
, bss_conf
->assoc
);
1756 memcpy(avp
->bssid
, bss_conf
->bssid
, ETH_ALEN
);
1757 avp
->aid
= bss_conf
->aid
;
1758 avp
->assoc
= bss_conf
->assoc
;
1760 ath9k_calculate_summary_state(sc
, avp
->chanctx
);
1763 if ((changed
& BSS_CHANGED_IBSS
) ||
1764 (changed
& BSS_CHANGED_OCB
)) {
1765 memcpy(common
->curbssid
, bss_conf
->bssid
, ETH_ALEN
);
1766 common
->curaid
= bss_conf
->aid
;
1767 ath9k_hw_write_associd(sc
->sc_ah
);
1770 if ((changed
& BSS_CHANGED_BEACON_ENABLED
) ||
1771 (changed
& BSS_CHANGED_BEACON_INT
) ||
1772 (changed
& BSS_CHANGED_BEACON_INFO
)) {
1773 ath9k_beacon_config(sc
, vif
, changed
);
1774 if (changed
& BSS_CHANGED_BEACON_ENABLED
)
1775 ath9k_calculate_summary_state(sc
, avp
->chanctx
);
1778 if ((avp
->chanctx
== sc
->cur_chan
) &&
1779 (changed
& BSS_CHANGED_ERP_SLOT
)) {
1780 if (bss_conf
->use_short_slot
)
1784 if (vif
->type
== NL80211_IFTYPE_AP
) {
1786 * Defer update, so that connected stations can adjust
1787 * their settings at the same time.
1788 * See beacon.c for more details
1790 sc
->beacon
.slottime
= slottime
;
1791 sc
->beacon
.updateslot
= UPDATE
;
1793 ah
->slottime
= slottime
;
1794 ath9k_hw_init_global_settings(ah
);
1798 if (changed
& BSS_CHANGED_P2P_PS
)
1799 ath9k_p2p_bss_info_changed(sc
, vif
);
1801 if (changed
& CHECK_ANI
)
1804 if (changed
& BSS_CHANGED_TXPOWER
) {
1805 ath_dbg(common
, CONFIG
, "vif %pM power %d dbm power_type %d\n",
1806 vif
->addr
, bss_conf
->txpower
, bss_conf
->txpower_type
);
1807 ath9k_set_txpower(sc
, vif
);
1810 mutex_unlock(&sc
->mutex
);
1811 ath9k_ps_restore(sc
);
1816 static u64
ath9k_get_tsf(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
)
1818 struct ath_softc
*sc
= hw
->priv
;
1821 mutex_lock(&sc
->mutex
);
1822 ath9k_ps_wakeup(sc
);
1823 tsf
= ath9k_hw_gettsf64(sc
->sc_ah
);
1824 ath9k_ps_restore(sc
);
1825 mutex_unlock(&sc
->mutex
);
1830 static void ath9k_set_tsf(struct ieee80211_hw
*hw
,
1831 struct ieee80211_vif
*vif
,
1834 struct ath_softc
*sc
= hw
->priv
;
1836 mutex_lock(&sc
->mutex
);
1837 ath9k_ps_wakeup(sc
);
1838 ath9k_hw_settsf64(sc
->sc_ah
, tsf
);
1839 ath9k_ps_restore(sc
);
1840 mutex_unlock(&sc
->mutex
);
1843 static void ath9k_reset_tsf(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
)
1845 struct ath_softc
*sc
= hw
->priv
;
1847 mutex_lock(&sc
->mutex
);
1849 ath9k_ps_wakeup(sc
);
1850 ath9k_hw_reset_tsf(sc
->sc_ah
);
1851 ath9k_ps_restore(sc
);
1853 mutex_unlock(&sc
->mutex
);
1856 static int ath9k_ampdu_action(struct ieee80211_hw
*hw
,
1857 struct ieee80211_vif
*vif
,
1858 struct ieee80211_ampdu_params
*params
)
1860 struct ath_softc
*sc
= hw
->priv
;
1861 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1864 struct ieee80211_sta
*sta
= params
->sta
;
1865 enum ieee80211_ampdu_mlme_action action
= params
->action
;
1866 u16 tid
= params
->tid
;
1867 u16
*ssn
= ¶ms
->ssn
;
1869 mutex_lock(&sc
->mutex
);
1872 case IEEE80211_AMPDU_RX_START
:
1874 case IEEE80211_AMPDU_RX_STOP
:
1876 case IEEE80211_AMPDU_TX_START
:
1877 if (ath9k_is_chanctx_enabled()) {
1878 if (test_bit(ATH_OP_SCANNING
, &common
->op_flags
)) {
1883 ath9k_ps_wakeup(sc
);
1884 ret
= ath_tx_aggr_start(sc
, sta
, tid
, ssn
);
1886 ieee80211_start_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
1887 ath9k_ps_restore(sc
);
1889 case IEEE80211_AMPDU_TX_STOP_FLUSH
:
1890 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT
:
1892 case IEEE80211_AMPDU_TX_STOP_CONT
:
1893 ath9k_ps_wakeup(sc
);
1894 ath_tx_aggr_stop(sc
, sta
, tid
);
1896 ieee80211_stop_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
1897 ath9k_ps_restore(sc
);
1899 case IEEE80211_AMPDU_TX_OPERATIONAL
:
1900 ath9k_ps_wakeup(sc
);
1901 ath_tx_aggr_resume(sc
, sta
, tid
);
1902 ath9k_ps_restore(sc
);
1905 ath_err(ath9k_hw_common(sc
->sc_ah
), "Unknown AMPDU action\n");
1908 mutex_unlock(&sc
->mutex
);
1913 static int ath9k_get_survey(struct ieee80211_hw
*hw
, int idx
,
1914 struct survey_info
*survey
)
1916 struct ath_softc
*sc
= hw
->priv
;
1917 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1918 struct ieee80211_supported_band
*sband
;
1919 struct ieee80211_channel
*chan
;
1922 if (config_enabled(CONFIG_ATH9K_TX99
))
1925 spin_lock_bh(&common
->cc_lock
);
1927 ath_update_survey_stats(sc
);
1929 sband
= hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
];
1930 if (sband
&& idx
>= sband
->n_channels
) {
1931 idx
-= sband
->n_channels
;
1936 sband
= hw
->wiphy
->bands
[IEEE80211_BAND_5GHZ
];
1938 if (!sband
|| idx
>= sband
->n_channels
) {
1939 spin_unlock_bh(&common
->cc_lock
);
1943 chan
= &sband
->channels
[idx
];
1944 pos
= chan
->hw_value
;
1945 memcpy(survey
, &sc
->survey
[pos
], sizeof(*survey
));
1946 survey
->channel
= chan
;
1947 spin_unlock_bh(&common
->cc_lock
);
1952 static void ath9k_enable_dynack(struct ath_softc
*sc
)
1954 #ifdef CONFIG_ATH9K_DYNACK
1956 struct ath_hw
*ah
= sc
->sc_ah
;
1958 ath_dynack_reset(ah
);
1960 ah
->dynack
.enabled
= true;
1961 rfilt
= ath_calcrxfilter(sc
);
1962 ath9k_hw_setrxfilter(ah
, rfilt
);
1966 static void ath9k_set_coverage_class(struct ieee80211_hw
*hw
,
1969 struct ath_softc
*sc
= hw
->priv
;
1970 struct ath_hw
*ah
= sc
->sc_ah
;
1972 if (config_enabled(CONFIG_ATH9K_TX99
))
1975 mutex_lock(&sc
->mutex
);
1977 if (coverage_class
>= 0) {
1978 ah
->coverage_class
= coverage_class
;
1979 if (ah
->dynack
.enabled
) {
1982 ah
->dynack
.enabled
= false;
1983 rfilt
= ath_calcrxfilter(sc
);
1984 ath9k_hw_setrxfilter(ah
, rfilt
);
1986 ath9k_ps_wakeup(sc
);
1987 ath9k_hw_init_global_settings(ah
);
1988 ath9k_ps_restore(sc
);
1989 } else if (!ah
->dynack
.enabled
) {
1990 ath9k_enable_dynack(sc
);
1993 mutex_unlock(&sc
->mutex
);
1996 static bool ath9k_has_tx_pending(struct ath_softc
*sc
,
2001 for (i
= 0; i
< ATH9K_NUM_TX_QUEUES
; i
++) {
2002 if (!ATH_TXQ_SETUP(sc
, i
))
2005 npend
= ath9k_has_pending_frames(sc
, &sc
->tx
.txq
[i
],
2014 static void ath9k_flush(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
2015 u32 queues
, bool drop
)
2017 struct ath_softc
*sc
= hw
->priv
;
2018 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2020 if (ath9k_is_chanctx_enabled()) {
2021 if (!test_bit(ATH_OP_MULTI_CHANNEL
, &common
->op_flags
))
2025 * If MCC is active, extend the flush timeout
2026 * and wait for the HW/SW queues to become
2027 * empty. This needs to be done outside the
2028 * sc->mutex lock to allow the channel scheduler
2029 * to switch channel contexts.
2031 * The vif queues have been stopped in mac80211,
2032 * so there won't be any incoming frames.
2034 __ath9k_flush(hw
, queues
, drop
, true, true);
2038 mutex_lock(&sc
->mutex
);
2039 __ath9k_flush(hw
, queues
, drop
, true, false);
2040 mutex_unlock(&sc
->mutex
);
2043 void __ath9k_flush(struct ieee80211_hw
*hw
, u32 queues
, bool drop
,
2044 bool sw_pending
, bool timeout_override
)
2046 struct ath_softc
*sc
= hw
->priv
;
2047 struct ath_hw
*ah
= sc
->sc_ah
;
2048 struct ath_common
*common
= ath9k_hw_common(ah
);
2052 cancel_delayed_work_sync(&sc
->tx_complete_work
);
2054 if (ah
->ah_flags
& AH_UNPLUGGED
) {
2055 ath_dbg(common
, ANY
, "Device has been unplugged!\n");
2059 if (test_bit(ATH_OP_INVALID
, &common
->op_flags
)) {
2060 ath_dbg(common
, ANY
, "Device not present\n");
2064 spin_lock_bh(&sc
->chan_lock
);
2065 if (timeout_override
)
2068 timeout
= sc
->cur_chan
->flush_timeout
;
2069 spin_unlock_bh(&sc
->chan_lock
);
2071 ath_dbg(common
, CHAN_CTX
,
2072 "Flush timeout: %d\n", jiffies_to_msecs(timeout
));
2074 if (wait_event_timeout(sc
->tx_wait
, !ath9k_has_tx_pending(sc
, sw_pending
),
2079 ath9k_ps_wakeup(sc
);
2080 spin_lock_bh(&sc
->sc_pcu_lock
);
2081 drain_txq
= ath_drain_all_txq(sc
);
2082 spin_unlock_bh(&sc
->sc_pcu_lock
);
2085 ath_reset(sc
, NULL
);
2087 ath9k_ps_restore(sc
);
2090 ieee80211_queue_delayed_work(hw
, &sc
->tx_complete_work
, 0);
2093 static bool ath9k_tx_frames_pending(struct ieee80211_hw
*hw
)
2095 struct ath_softc
*sc
= hw
->priv
;
2097 return ath9k_has_tx_pending(sc
, true);
2100 static int ath9k_tx_last_beacon(struct ieee80211_hw
*hw
)
2102 struct ath_softc
*sc
= hw
->priv
;
2103 struct ath_hw
*ah
= sc
->sc_ah
;
2104 struct ieee80211_vif
*vif
;
2105 struct ath_vif
*avp
;
2107 struct ath_tx_status ts
;
2108 bool edma
= !!(ah
->caps
.hw_caps
& ATH9K_HW_CAP_EDMA
);
2111 vif
= sc
->beacon
.bslot
[0];
2115 if (!vif
->bss_conf
.enable_beacon
)
2118 avp
= (void *)vif
->drv_priv
;
2120 if (!sc
->beacon
.tx_processed
&& !edma
) {
2121 tasklet_disable(&sc
->bcon_tasklet
);
2124 if (!bf
|| !bf
->bf_mpdu
)
2127 status
= ath9k_hw_txprocdesc(ah
, bf
->bf_desc
, &ts
);
2128 if (status
== -EINPROGRESS
)
2131 sc
->beacon
.tx_processed
= true;
2132 sc
->beacon
.tx_last
= !(ts
.ts_status
& ATH9K_TXERR_MASK
);
2135 tasklet_enable(&sc
->bcon_tasklet
);
2138 return sc
->beacon
.tx_last
;
2141 static int ath9k_get_stats(struct ieee80211_hw
*hw
,
2142 struct ieee80211_low_level_stats
*stats
)
2144 struct ath_softc
*sc
= hw
->priv
;
2145 struct ath_hw
*ah
= sc
->sc_ah
;
2146 struct ath9k_mib_stats
*mib_stats
= &ah
->ah_mibStats
;
2148 stats
->dot11ACKFailureCount
= mib_stats
->ackrcv_bad
;
2149 stats
->dot11RTSFailureCount
= mib_stats
->rts_bad
;
2150 stats
->dot11FCSErrorCount
= mib_stats
->fcs_bad
;
2151 stats
->dot11RTSSuccessCount
= mib_stats
->rts_good
;
2155 static u32
fill_chainmask(u32 cap
, u32
new)
2160 for (i
= 0; cap
&& new; i
++, cap
>>= 1) {
2161 if (!(cap
& BIT(0)))
2173 static bool validate_antenna_mask(struct ath_hw
*ah
, u32 val
)
2175 if (AR_SREV_9300_20_OR_LATER(ah
))
2178 switch (val
& 0x7) {
2184 return (ah
->caps
.rx_chainmask
== 1);
2190 static int ath9k_set_antenna(struct ieee80211_hw
*hw
, u32 tx_ant
, u32 rx_ant
)
2192 struct ath_softc
*sc
= hw
->priv
;
2193 struct ath_hw
*ah
= sc
->sc_ah
;
2195 if (ah
->caps
.rx_chainmask
!= 1)
2198 if (!validate_antenna_mask(ah
, rx_ant
) || !tx_ant
)
2201 sc
->ant_rx
= rx_ant
;
2202 sc
->ant_tx
= tx_ant
;
2204 if (ah
->caps
.rx_chainmask
== 1)
2207 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2208 if (AR_SREV_9100(ah
))
2209 ah
->rxchainmask
= 0x7;
2211 ah
->rxchainmask
= fill_chainmask(ah
->caps
.rx_chainmask
, rx_ant
);
2213 ah
->txchainmask
= fill_chainmask(ah
->caps
.tx_chainmask
, tx_ant
);
2214 ath9k_cmn_reload_chainmask(ah
);
2219 static int ath9k_get_antenna(struct ieee80211_hw
*hw
, u32
*tx_ant
, u32
*rx_ant
)
2221 struct ath_softc
*sc
= hw
->priv
;
2223 *tx_ant
= sc
->ant_tx
;
2224 *rx_ant
= sc
->ant_rx
;
2228 static void ath9k_sw_scan_start(struct ieee80211_hw
*hw
,
2229 struct ieee80211_vif
*vif
,
2232 struct ath_softc
*sc
= hw
->priv
;
2233 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2234 set_bit(ATH_OP_SCANNING
, &common
->op_flags
);
2237 static void ath9k_sw_scan_complete(struct ieee80211_hw
*hw
,
2238 struct ieee80211_vif
*vif
)
2240 struct ath_softc
*sc
= hw
->priv
;
2241 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2242 clear_bit(ATH_OP_SCANNING
, &common
->op_flags
);
2245 #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2247 static void ath9k_cancel_pending_offchannel(struct ath_softc
*sc
)
2249 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2251 if (sc
->offchannel
.roc_vif
) {
2252 ath_dbg(common
, CHAN_CTX
,
2253 "%s: Aborting RoC\n", __func__
);
2255 del_timer_sync(&sc
->offchannel
.timer
);
2256 if (sc
->offchannel
.state
>= ATH_OFFCHANNEL_ROC_START
)
2257 ath_roc_complete(sc
, ATH_ROC_COMPLETE_ABORT
);
2260 if (test_bit(ATH_OP_SCANNING
, &common
->op_flags
)) {
2261 ath_dbg(common
, CHAN_CTX
,
2262 "%s: Aborting HW scan\n", __func__
);
2264 del_timer_sync(&sc
->offchannel
.timer
);
2265 ath_scan_complete(sc
, true);
2269 static int ath9k_hw_scan(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
2270 struct ieee80211_scan_request
*hw_req
)
2272 struct cfg80211_scan_request
*req
= &hw_req
->req
;
2273 struct ath_softc
*sc
= hw
->priv
;
2274 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2277 mutex_lock(&sc
->mutex
);
2279 if (WARN_ON(sc
->offchannel
.scan_req
)) {
2284 ath9k_ps_wakeup(sc
);
2285 set_bit(ATH_OP_SCANNING
, &common
->op_flags
);
2286 sc
->offchannel
.scan_vif
= vif
;
2287 sc
->offchannel
.scan_req
= req
;
2288 sc
->offchannel
.scan_idx
= 0;
2290 ath_dbg(common
, CHAN_CTX
, "HW scan request received on vif: %pM\n",
2293 if (sc
->offchannel
.state
== ATH_OFFCHANNEL_IDLE
) {
2294 ath_dbg(common
, CHAN_CTX
, "Starting HW scan\n");
2295 ath_offchannel_next(sc
);
2299 mutex_unlock(&sc
->mutex
);
2304 static void ath9k_cancel_hw_scan(struct ieee80211_hw
*hw
,
2305 struct ieee80211_vif
*vif
)
2307 struct ath_softc
*sc
= hw
->priv
;
2308 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2310 ath_dbg(common
, CHAN_CTX
, "Cancel HW scan on vif: %pM\n", vif
->addr
);
2312 mutex_lock(&sc
->mutex
);
2313 del_timer_sync(&sc
->offchannel
.timer
);
2314 ath_scan_complete(sc
, true);
2315 mutex_unlock(&sc
->mutex
);
2318 static int ath9k_remain_on_channel(struct ieee80211_hw
*hw
,
2319 struct ieee80211_vif
*vif
,
2320 struct ieee80211_channel
*chan
, int duration
,
2321 enum ieee80211_roc_type type
)
2323 struct ath_softc
*sc
= hw
->priv
;
2324 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2327 mutex_lock(&sc
->mutex
);
2329 if (WARN_ON(sc
->offchannel
.roc_vif
)) {
2334 ath9k_ps_wakeup(sc
);
2335 sc
->offchannel
.roc_vif
= vif
;
2336 sc
->offchannel
.roc_chan
= chan
;
2337 sc
->offchannel
.roc_duration
= duration
;
2339 ath_dbg(common
, CHAN_CTX
,
2340 "RoC request on vif: %pM, type: %d duration: %d\n",
2341 vif
->addr
, type
, duration
);
2343 if (sc
->offchannel
.state
== ATH_OFFCHANNEL_IDLE
) {
2344 ath_dbg(common
, CHAN_CTX
, "Starting RoC period\n");
2345 ath_offchannel_next(sc
);
2349 mutex_unlock(&sc
->mutex
);
2354 static int ath9k_cancel_remain_on_channel(struct ieee80211_hw
*hw
)
2356 struct ath_softc
*sc
= hw
->priv
;
2357 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2359 mutex_lock(&sc
->mutex
);
2361 ath_dbg(common
, CHAN_CTX
, "Cancel RoC\n");
2362 del_timer_sync(&sc
->offchannel
.timer
);
2364 if (sc
->offchannel
.roc_vif
) {
2365 if (sc
->offchannel
.state
>= ATH_OFFCHANNEL_ROC_START
)
2366 ath_roc_complete(sc
, ATH_ROC_COMPLETE_CANCEL
);
2369 mutex_unlock(&sc
->mutex
);
2374 static int ath9k_add_chanctx(struct ieee80211_hw
*hw
,
2375 struct ieee80211_chanctx_conf
*conf
)
2377 struct ath_softc
*sc
= hw
->priv
;
2378 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2379 struct ath_chanctx
*ctx
, **ptr
;
2382 mutex_lock(&sc
->mutex
);
2384 ath_for_each_chanctx(sc
, ctx
) {
2388 ptr
= (void *) conf
->drv_priv
;
2390 ctx
->assigned
= true;
2391 pos
= ctx
- &sc
->chanctx
[0];
2392 ctx
->hw_queue_base
= pos
* IEEE80211_NUM_ACS
;
2394 ath_dbg(common
, CHAN_CTX
,
2395 "Add channel context: %d MHz\n",
2396 conf
->def
.chan
->center_freq
);
2398 ath_chanctx_set_channel(sc
, ctx
, &conf
->def
);
2400 mutex_unlock(&sc
->mutex
);
2404 mutex_unlock(&sc
->mutex
);
2409 static void ath9k_remove_chanctx(struct ieee80211_hw
*hw
,
2410 struct ieee80211_chanctx_conf
*conf
)
2412 struct ath_softc
*sc
= hw
->priv
;
2413 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2414 struct ath_chanctx
*ctx
= ath_chanctx_get(conf
);
2416 mutex_lock(&sc
->mutex
);
2418 ath_dbg(common
, CHAN_CTX
,
2419 "Remove channel context: %d MHz\n",
2420 conf
->def
.chan
->center_freq
);
2422 ctx
->assigned
= false;
2423 ctx
->hw_queue_base
= 0;
2424 ath_chanctx_event(sc
, NULL
, ATH_CHANCTX_EVENT_UNASSIGN
);
2426 mutex_unlock(&sc
->mutex
);
2429 static void ath9k_change_chanctx(struct ieee80211_hw
*hw
,
2430 struct ieee80211_chanctx_conf
*conf
,
2433 struct ath_softc
*sc
= hw
->priv
;
2434 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2435 struct ath_chanctx
*ctx
= ath_chanctx_get(conf
);
2437 mutex_lock(&sc
->mutex
);
2438 ath_dbg(common
, CHAN_CTX
,
2439 "Change channel context: %d MHz\n",
2440 conf
->def
.chan
->center_freq
);
2441 ath_chanctx_set_channel(sc
, ctx
, &conf
->def
);
2442 mutex_unlock(&sc
->mutex
);
2445 static int ath9k_assign_vif_chanctx(struct ieee80211_hw
*hw
,
2446 struct ieee80211_vif
*vif
,
2447 struct ieee80211_chanctx_conf
*conf
)
2449 struct ath_softc
*sc
= hw
->priv
;
2450 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2451 struct ath_vif
*avp
= (void *)vif
->drv_priv
;
2452 struct ath_chanctx
*ctx
= ath_chanctx_get(conf
);
2455 ath9k_cancel_pending_offchannel(sc
);
2457 mutex_lock(&sc
->mutex
);
2459 ath_dbg(common
, CHAN_CTX
,
2460 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2461 vif
->addr
, vif
->type
, vif
->p2p
,
2462 conf
->def
.chan
->center_freq
);
2465 ctx
->nvifs_assigned
++;
2466 list_add_tail(&avp
->list
, &ctx
->vifs
);
2467 ath9k_calculate_summary_state(sc
, ctx
);
2468 for (i
= 0; i
< IEEE80211_NUM_ACS
; i
++)
2469 vif
->hw_queue
[i
] = ctx
->hw_queue_base
+ i
;
2471 mutex_unlock(&sc
->mutex
);
2476 static void ath9k_unassign_vif_chanctx(struct ieee80211_hw
*hw
,
2477 struct ieee80211_vif
*vif
,
2478 struct ieee80211_chanctx_conf
*conf
)
2480 struct ath_softc
*sc
= hw
->priv
;
2481 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2482 struct ath_vif
*avp
= (void *)vif
->drv_priv
;
2483 struct ath_chanctx
*ctx
= ath_chanctx_get(conf
);
2486 ath9k_cancel_pending_offchannel(sc
);
2488 mutex_lock(&sc
->mutex
);
2490 ath_dbg(common
, CHAN_CTX
,
2491 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2492 vif
->addr
, vif
->type
, vif
->p2p
,
2493 conf
->def
.chan
->center_freq
);
2495 avp
->chanctx
= NULL
;
2496 ctx
->nvifs_assigned
--;
2497 list_del(&avp
->list
);
2498 ath9k_calculate_summary_state(sc
, ctx
);
2499 for (ac
= 0; ac
< IEEE80211_NUM_ACS
; ac
++)
2500 vif
->hw_queue
[ac
] = IEEE80211_INVAL_HW_QUEUE
;
2502 mutex_unlock(&sc
->mutex
);
2505 static void ath9k_mgd_prepare_tx(struct ieee80211_hw
*hw
,
2506 struct ieee80211_vif
*vif
)
2508 struct ath_softc
*sc
= hw
->priv
;
2509 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
2510 struct ath_vif
*avp
= (struct ath_vif
*) vif
->drv_priv
;
2511 struct ath_beacon_config
*cur_conf
;
2512 struct ath_chanctx
*go_ctx
;
2513 unsigned long timeout
;
2514 bool changed
= false;
2517 if (!test_bit(ATH_OP_MULTI_CHANNEL
, &common
->op_flags
))
2523 mutex_lock(&sc
->mutex
);
2525 spin_lock_bh(&sc
->chan_lock
);
2526 if (sc
->next_chan
|| (sc
->cur_chan
!= avp
->chanctx
))
2528 spin_unlock_bh(&sc
->chan_lock
);
2533 ath9k_cancel_pending_offchannel(sc
);
2535 go_ctx
= ath_is_go_chanctx_present(sc
);
2539 * Wait till the GO interface gets a chance
2540 * to send out an NoA.
2542 spin_lock_bh(&sc
->chan_lock
);
2543 sc
->sched
.mgd_prepare_tx
= true;
2544 cur_conf
= &go_ctx
->beacon
;
2545 beacon_int
= TU_TO_USEC(cur_conf
->beacon_interval
);
2546 spin_unlock_bh(&sc
->chan_lock
);
2548 timeout
= usecs_to_jiffies(beacon_int
* 2);
2549 init_completion(&sc
->go_beacon
);
2551 mutex_unlock(&sc
->mutex
);
2553 if (wait_for_completion_timeout(&sc
->go_beacon
,
2555 ath_dbg(common
, CHAN_CTX
,
2556 "Failed to send new NoA\n");
2558 spin_lock_bh(&sc
->chan_lock
);
2559 sc
->sched
.mgd_prepare_tx
= false;
2560 spin_unlock_bh(&sc
->chan_lock
);
2563 mutex_lock(&sc
->mutex
);
2566 ath_dbg(common
, CHAN_CTX
,
2567 "%s: Set chanctx state to FORCE_ACTIVE for vif: %pM\n",
2568 __func__
, vif
->addr
);
2570 spin_lock_bh(&sc
->chan_lock
);
2571 sc
->next_chan
= avp
->chanctx
;
2572 sc
->sched
.state
= ATH_CHANCTX_STATE_FORCE_ACTIVE
;
2573 spin_unlock_bh(&sc
->chan_lock
);
2575 ath_chanctx_set_next(sc
, true);
2577 mutex_unlock(&sc
->mutex
);
2580 void ath9k_fill_chanctx_ops(void)
2582 if (!ath9k_is_chanctx_enabled())
2585 ath9k_ops
.hw_scan
= ath9k_hw_scan
;
2586 ath9k_ops
.cancel_hw_scan
= ath9k_cancel_hw_scan
;
2587 ath9k_ops
.remain_on_channel
= ath9k_remain_on_channel
;
2588 ath9k_ops
.cancel_remain_on_channel
= ath9k_cancel_remain_on_channel
;
2589 ath9k_ops
.add_chanctx
= ath9k_add_chanctx
;
2590 ath9k_ops
.remove_chanctx
= ath9k_remove_chanctx
;
2591 ath9k_ops
.change_chanctx
= ath9k_change_chanctx
;
2592 ath9k_ops
.assign_vif_chanctx
= ath9k_assign_vif_chanctx
;
2593 ath9k_ops
.unassign_vif_chanctx
= ath9k_unassign_vif_chanctx
;
2594 ath9k_ops
.mgd_prepare_tx
= ath9k_mgd_prepare_tx
;
2599 static int ath9k_get_txpower(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
2602 struct ath_softc
*sc
= hw
->priv
;
2603 struct ath_vif
*avp
= (void *)vif
->drv_priv
;
2605 mutex_lock(&sc
->mutex
);
2607 *dbm
= avp
->chanctx
->cur_txpower
;
2609 *dbm
= sc
->cur_chan
->cur_txpower
;
2610 mutex_unlock(&sc
->mutex
);
2617 struct ieee80211_ops ath9k_ops
= {
2619 .start
= ath9k_start
,
2621 .add_interface
= ath9k_add_interface
,
2622 .change_interface
= ath9k_change_interface
,
2623 .remove_interface
= ath9k_remove_interface
,
2624 .config
= ath9k_config
,
2625 .configure_filter
= ath9k_configure_filter
,
2626 .sta_state
= ath9k_sta_state
,
2627 .sta_notify
= ath9k_sta_notify
,
2628 .conf_tx
= ath9k_conf_tx
,
2629 .bss_info_changed
= ath9k_bss_info_changed
,
2630 .set_key
= ath9k_set_key
,
2631 .get_tsf
= ath9k_get_tsf
,
2632 .set_tsf
= ath9k_set_tsf
,
2633 .reset_tsf
= ath9k_reset_tsf
,
2634 .ampdu_action
= ath9k_ampdu_action
,
2635 .get_survey
= ath9k_get_survey
,
2636 .rfkill_poll
= ath9k_rfkill_poll_state
,
2637 .set_coverage_class
= ath9k_set_coverage_class
,
2638 .flush
= ath9k_flush
,
2639 .tx_frames_pending
= ath9k_tx_frames_pending
,
2640 .tx_last_beacon
= ath9k_tx_last_beacon
,
2641 .release_buffered_frames
= ath9k_release_buffered_frames
,
2642 .get_stats
= ath9k_get_stats
,
2643 .set_antenna
= ath9k_set_antenna
,
2644 .get_antenna
= ath9k_get_antenna
,
2646 #ifdef CONFIG_ATH9K_WOW
2647 .suspend
= ath9k_suspend
,
2648 .resume
= ath9k_resume
,
2649 .set_wakeup
= ath9k_set_wakeup
,
2652 #ifdef CONFIG_ATH9K_DEBUGFS
2653 .get_et_sset_count
= ath9k_get_et_sset_count
,
2654 .get_et_stats
= ath9k_get_et_stats
,
2655 .get_et_strings
= ath9k_get_et_strings
,
2658 #if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
2659 .sta_add_debugfs
= ath9k_sta_add_debugfs
,
2661 .sw_scan_start
= ath9k_sw_scan_start
,
2662 .sw_scan_complete
= ath9k_sw_scan_complete
,
2663 .get_txpower
= ath9k_get_txpower
,