2 * Copyright (c) 2014 Qualcomm Atheros, 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.
19 /* Set/change channels. If the channel is really being changed, it's done
20 * by resetting the chip. To accomplish this we must first cleanup any pending
21 * DMA, then restart stuff.
23 static int ath_set_channel(struct ath_softc *sc)
25 struct ath_hw *ah = sc->sc_ah;
26 struct ath_common *common = ath9k_hw_common(ah);
27 struct ieee80211_hw *hw = sc->hw;
28 struct ath9k_channel *hchan;
29 struct cfg80211_chan_def *chandef = &sc->cur_chan->chandef;
30 struct ieee80211_channel *chan = chandef->chan;
31 int pos = chan->hw_value;
36 if (test_bit(ATH_OP_INVALID, &common->op_flags))
40 old_pos = ah->curchan - &ah->channels[0];
42 ath_dbg(common, CONFIG, "Set channel: %d MHz width: %d\n",
43 chan->center_freq, chandef->width);
45 /* update survey stats for the old channel before switching */
46 spin_lock_irqsave(&common->cc_lock, flags);
47 ath_update_survey_stats(sc);
48 spin_unlock_irqrestore(&common->cc_lock, flags);
50 ath9k_cmn_get_channel(hw, ah, chandef);
52 /* If the operating channel changes, change the survey in-use flags
54 * Reset the survey data for the new channel, unless we're switching
55 * back to the operating channel from an off-channel operation.
57 if (!sc->cur_chan->offchannel && sc->cur_survey != &sc->survey[pos]) {
59 sc->cur_survey->filled &= ~SURVEY_INFO_IN_USE;
61 sc->cur_survey = &sc->survey[pos];
63 memset(sc->cur_survey, 0, sizeof(struct survey_info));
64 sc->cur_survey->filled |= SURVEY_INFO_IN_USE;
65 } else if (!(sc->survey[pos].filled & SURVEY_INFO_IN_USE)) {
66 memset(&sc->survey[pos], 0, sizeof(struct survey_info));
69 hchan = &sc->sc_ah->channels[pos];
70 r = ath_reset(sc, hchan);
74 /* The most recent snapshot of channel->noisefloor for the old
75 * channel is only available after the hardware reset. Copy it to
76 * the survey stats now.
79 ath_update_survey_nf(sc, old_pos);
81 /* Enable radar pulse detection if on a DFS channel. Spectral
82 * scanning and radar detection can not be used concurrently.
84 if (hw->conf.radar_enabled) {
87 rxfilter = ath9k_hw_getrxfilter(ah);
88 rxfilter |= ATH9K_RX_FILTER_PHYRADAR |
89 ATH9K_RX_FILTER_PHYERR;
90 ath9k_hw_setrxfilter(ah, rxfilter);
91 ath_dbg(common, DFS, "DFS enabled at freq %d\n",
94 /* perform spectral scan if requested. */
95 if (test_bit(ATH_OP_SCANNING, &common->op_flags) &&
96 sc->spec_priv.spectral_mode == SPECTRAL_CHANSCAN)
97 ath9k_cmn_spectral_scan_trigger(common, &sc->spec_priv);
103 void ath_chanctx_init(struct ath_softc *sc)
105 struct ath_chanctx *ctx;
106 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
107 struct ieee80211_supported_band *sband;
108 struct ieee80211_channel *chan;
111 sband = &common->sbands[NL80211_BAND_2GHZ];
112 if (!sband->n_channels)
113 sband = &common->sbands[NL80211_BAND_5GHZ];
115 chan = &sband->channels[0];
116 for (i = 0; i < ATH9K_NUM_CHANCTX; i++) {
117 ctx = &sc->chanctx[i];
118 cfg80211_chandef_create(&ctx->chandef, chan, NL80211_CHAN_HT20);
119 INIT_LIST_HEAD(&ctx->vifs);
120 ctx->txpower = ATH_TXPOWER_MAX;
121 ctx->flush_timeout = HZ / 5; /* 200ms */
122 for (j = 0; j < ARRAY_SIZE(ctx->acq); j++) {
123 INIT_LIST_HEAD(&ctx->acq[j].acq_new);
124 INIT_LIST_HEAD(&ctx->acq[j].acq_old);
125 spin_lock_init(&ctx->acq[j].lock);
130 void ath_chanctx_set_channel(struct ath_softc *sc, struct ath_chanctx *ctx,
131 struct cfg80211_chan_def *chandef)
133 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
136 spin_lock_bh(&sc->chan_lock);
138 memcpy(&ctx->chandef, chandef, sizeof(*chandef));
139 cur_chan = sc->cur_chan == ctx;
140 spin_unlock_bh(&sc->chan_lock);
143 ath_dbg(common, CHAN_CTX,
144 "Current context differs from the new context\n");
151 #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
157 struct ath_chanctx* ath_is_go_chanctx_present(struct ath_softc *sc)
159 struct ath_chanctx *ctx;
161 struct ieee80211_vif *vif;
163 spin_lock_bh(&sc->chan_lock);
165 ath_for_each_chanctx(sc, ctx) {
169 list_for_each_entry(avp, &ctx->vifs, list) {
172 if (ieee80211_vif_type_p2p(vif) == NL80211_IFTYPE_P2P_GO) {
173 spin_unlock_bh(&sc->chan_lock);
179 spin_unlock_bh(&sc->chan_lock);
183 /**********************************************************/
184 /* Functions to handle the channel context state machine. */
185 /**********************************************************/
187 static const char *offchannel_state_string(enum ath_offchannel_state state)
190 case_rtn_string(ATH_OFFCHANNEL_IDLE);
191 case_rtn_string(ATH_OFFCHANNEL_PROBE_SEND);
192 case_rtn_string(ATH_OFFCHANNEL_PROBE_WAIT);
193 case_rtn_string(ATH_OFFCHANNEL_SUSPEND);
194 case_rtn_string(ATH_OFFCHANNEL_ROC_START);
195 case_rtn_string(ATH_OFFCHANNEL_ROC_WAIT);
196 case_rtn_string(ATH_OFFCHANNEL_ROC_DONE);
202 static const char *chanctx_event_string(enum ath_chanctx_event ev)
205 case_rtn_string(ATH_CHANCTX_EVENT_BEACON_PREPARE);
206 case_rtn_string(ATH_CHANCTX_EVENT_BEACON_SENT);
207 case_rtn_string(ATH_CHANCTX_EVENT_TSF_TIMER);
208 case_rtn_string(ATH_CHANCTX_EVENT_BEACON_RECEIVED);
209 case_rtn_string(ATH_CHANCTX_EVENT_AUTHORIZED);
210 case_rtn_string(ATH_CHANCTX_EVENT_SWITCH);
211 case_rtn_string(ATH_CHANCTX_EVENT_ASSIGN);
212 case_rtn_string(ATH_CHANCTX_EVENT_UNASSIGN);
213 case_rtn_string(ATH_CHANCTX_EVENT_CHANGE);
214 case_rtn_string(ATH_CHANCTX_EVENT_ENABLE_MULTICHANNEL);
220 static const char *chanctx_state_string(enum ath_chanctx_state state)
223 case_rtn_string(ATH_CHANCTX_STATE_IDLE);
224 case_rtn_string(ATH_CHANCTX_STATE_WAIT_FOR_BEACON);
225 case_rtn_string(ATH_CHANCTX_STATE_WAIT_FOR_TIMER);
226 case_rtn_string(ATH_CHANCTX_STATE_SWITCH);
227 case_rtn_string(ATH_CHANCTX_STATE_FORCE_ACTIVE);
233 static u32 chanctx_event_delta(struct ath_softc *sc)
235 ktime_t ts = ktime_get_raw();
236 s64 ms = ktime_ms_delta(ts, sc->last_event_time);
238 sc->last_event_time = ts;
242 void ath_chanctx_check_active(struct ath_softc *sc, struct ath_chanctx *ctx)
244 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
245 struct ath_chanctx *ictx;
253 if (ctx == &sc->offchannel.chan) {
254 spin_lock_bh(&sc->chan_lock);
256 if (likely(sc->sched.channel_switch_time))
258 usecs_to_jiffies(sc->sched.channel_switch_time);
261 msecs_to_jiffies(10);
263 spin_unlock_bh(&sc->chan_lock);
266 * There is no need to iterate over the
267 * active/assigned channel contexts if
268 * the current context is offchannel.
275 list_for_each_entry(avp, &ctx->vifs, list) {
276 struct ieee80211_vif *vif = avp->vif;
279 case NL80211_IFTYPE_P2P_CLIENT:
280 case NL80211_IFTYPE_STATION:
289 ctx->active = active;
291 ath_for_each_chanctx(sc, ctx) {
292 if (!ctx->assigned || list_empty(&ctx->vifs))
297 spin_lock_bh(&sc->chan_lock);
300 ictx->flush_timeout = HZ / 5;
301 clear_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags);
302 spin_unlock_bh(&sc->chan_lock);
306 ictx->flush_timeout = usecs_to_jiffies(sc->sched.channel_switch_time);
308 if (test_and_set_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags)) {
309 spin_unlock_bh(&sc->chan_lock);
313 spin_unlock_bh(&sc->chan_lock);
315 if (ath9k_is_chanctx_enabled()) {
316 ath_chanctx_event(sc, NULL,
317 ATH_CHANCTX_EVENT_ENABLE_MULTICHANNEL);
321 static struct ath_chanctx *
322 ath_chanctx_get_next(struct ath_softc *sc, struct ath_chanctx *ctx)
324 int idx = ctx - &sc->chanctx[0];
326 return &sc->chanctx[!idx];
329 static void ath_chanctx_adjust_tbtt_delta(struct ath_softc *sc)
331 struct ath_chanctx *prev, *cur;
332 u32 cur_tsf, prev_tsf, beacon_int;
336 beacon_int = TU_TO_USEC(sc->cur_chan->beacon.beacon_interval);
339 prev = ath_chanctx_get_next(sc, cur);
341 if (!prev->switch_after_beacon)
344 ts = ktime_get_raw();
345 cur_tsf = (u32) cur->tsf_val +
346 ath9k_hw_get_tsf_offset(cur->tsf_ts, ts);
348 prev_tsf = prev->last_beacon - (u32) prev->tsf_val + cur_tsf;
349 prev_tsf -= ath9k_hw_get_tsf_offset(prev->tsf_ts, ts);
351 /* Adjust the TSF time of the AP chanctx to keep its beacons
352 * at half beacon interval offset relative to the STA chanctx.
354 offset = cur_tsf - prev_tsf;
356 /* Ignore stale data or spurious timestamps */
357 if (offset < 0 || offset > 3 * beacon_int)
360 offset = beacon_int / 2 - (offset % beacon_int);
361 prev->tsf_val += offset;
364 /* Configure the TSF based hardware timer for a channel switch.
365 * Also set up backup software timer, in case the gen timer fails.
366 * This could be caused by a hardware reset.
368 static void ath_chanctx_setup_timer(struct ath_softc *sc, u32 tsf_time)
370 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
371 struct ath_hw *ah = sc->sc_ah;
372 unsigned long timeout;
374 ath9k_hw_gen_timer_start(ah, sc->p2p_ps_timer, tsf_time, 1000000);
375 tsf_time -= ath9k_hw_gettsf32(ah);
376 timeout = msecs_to_jiffies(tsf_time / 1000) + 1;
377 mod_timer(&sc->sched.timer, jiffies + timeout);
379 ath_dbg(common, CHAN_CTX,
380 "Setup chanctx timer with timeout: %d (%d) ms\n",
381 tsf_time / 1000, jiffies_to_msecs(timeout));
384 static void ath_chanctx_handle_bmiss(struct ath_softc *sc,
385 struct ath_chanctx *ctx,
389 * Clear the extend_absence flag if it had been
390 * set during the previous beacon transmission,
391 * since we need to revert to the normal NoA
394 if (ctx->active && sc->sched.extend_absence) {
395 avp->noa_duration = 0;
396 sc->sched.extend_absence = false;
399 /* If at least two consecutive beacons were missed on the STA
400 * chanctx, stay on the STA channel for one extra beacon period,
401 * to resync the timer properly.
403 if (ctx->active && sc->sched.beacon_miss >= 2) {
404 avp->noa_duration = 0;
405 sc->sched.extend_absence = true;
409 static void ath_chanctx_offchannel_noa(struct ath_softc *sc,
410 struct ath_chanctx *ctx,
414 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
417 avp->offchannel_start = tsf_time;
418 avp->offchannel_duration = sc->sched.offchannel_duration;
420 ath_dbg(common, CHAN_CTX,
421 "offchannel noa_duration: %d, noa_start: %u, noa_index: %d\n",
422 avp->offchannel_duration,
423 avp->offchannel_start,
427 * When multiple contexts are active, the NoA
428 * has to be recalculated and advertised after
429 * an offchannel operation.
431 if (ctx->active && avp->noa_duration)
432 avp->noa_duration = 0;
435 static void ath_chanctx_set_periodic_noa(struct ath_softc *sc,
437 struct ath_beacon_config *cur_conf,
441 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
444 avp->noa_start = tsf_time;
446 if (sc->sched.extend_absence)
447 avp->noa_duration = (3 * beacon_int / 2) +
448 sc->sched.channel_switch_time;
451 TU_TO_USEC(cur_conf->beacon_interval) / 2 +
452 sc->sched.channel_switch_time;
454 if (test_bit(ATH_OP_SCANNING, &common->op_flags) ||
455 sc->sched.extend_absence)
456 avp->periodic_noa = false;
458 avp->periodic_noa = true;
460 ath_dbg(common, CHAN_CTX,
461 "noa_duration: %d, noa_start: %u, noa_index: %d, periodic: %d\n",
468 static void ath_chanctx_set_oneshot_noa(struct ath_softc *sc,
473 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
476 avp->noa_start = tsf_time;
477 avp->periodic_noa = false;
478 avp->oneshot_noa = true;
479 avp->noa_duration = duration + sc->sched.channel_switch_time;
481 ath_dbg(common, CHAN_CTX,
482 "oneshot noa_duration: %d, noa_start: %u, noa_index: %d, periodic: %d\n",
489 void ath_chanctx_event(struct ath_softc *sc, struct ieee80211_vif *vif,
490 enum ath_chanctx_event ev)
492 struct ath_hw *ah = sc->sc_ah;
493 struct ath_common *common = ath9k_hw_common(ah);
494 struct ath_beacon_config *cur_conf;
495 struct ath_vif *avp = NULL;
496 struct ath_chanctx *ctx;
501 avp = (struct ath_vif *) vif->drv_priv;
503 spin_lock_bh(&sc->chan_lock);
505 ath_dbg(common, CHAN_CTX, "cur_chan: %d MHz, event: %s, state: %s, delta: %u ms\n",
506 sc->cur_chan->chandef.center_freq1,
507 chanctx_event_string(ev),
508 chanctx_state_string(sc->sched.state),
509 chanctx_event_delta(sc));
512 case ATH_CHANCTX_EVENT_BEACON_PREPARE:
513 if (avp->offchannel_duration)
514 avp->offchannel_duration = 0;
516 if (avp->oneshot_noa) {
517 avp->noa_duration = 0;
518 avp->oneshot_noa = false;
520 ath_dbg(common, CHAN_CTX,
521 "Clearing oneshot NoA\n");
524 if (avp->chanctx != sc->cur_chan) {
525 ath_dbg(common, CHAN_CTX,
526 "Contexts differ, not preparing beacon\n");
530 if (sc->sched.offchannel_pending && !sc->sched.wait_switch) {
531 sc->sched.offchannel_pending = false;
532 sc->next_chan = &sc->offchannel.chan;
533 sc->sched.state = ATH_CHANCTX_STATE_WAIT_FOR_BEACON;
534 ath_dbg(common, CHAN_CTX,
535 "Setting offchannel_pending to false\n");
538 ctx = ath_chanctx_get_next(sc, sc->cur_chan);
539 if (ctx->active && sc->sched.state == ATH_CHANCTX_STATE_IDLE) {
541 sc->sched.state = ATH_CHANCTX_STATE_WAIT_FOR_BEACON;
542 ath_dbg(common, CHAN_CTX,
543 "Set next context, move chanctx state to WAIT_FOR_BEACON\n");
546 /* if the timer missed its window, use the next interval */
547 if (sc->sched.state == ATH_CHANCTX_STATE_WAIT_FOR_TIMER) {
548 sc->sched.state = ATH_CHANCTX_STATE_WAIT_FOR_BEACON;
549 ath_dbg(common, CHAN_CTX,
550 "Move chanctx state from WAIT_FOR_TIMER to WAIT_FOR_BEACON\n");
553 if (sc->sched.mgd_prepare_tx)
554 sc->sched.state = ATH_CHANCTX_STATE_WAIT_FOR_BEACON;
557 * When a context becomes inactive, for example,
558 * disassociation of a station context, the NoA
559 * attribute needs to be removed from subsequent
562 if (!ctx->active && avp->noa_duration &&
563 sc->sched.state != ATH_CHANCTX_STATE_WAIT_FOR_BEACON) {
564 avp->noa_duration = 0;
565 avp->periodic_noa = false;
567 ath_dbg(common, CHAN_CTX,
568 "Clearing NoA schedule\n");
571 if (sc->sched.state != ATH_CHANCTX_STATE_WAIT_FOR_BEACON)
574 ath_dbg(common, CHAN_CTX, "Preparing beacon for vif: %pM\n", vif->addr);
576 sc->sched.beacon_pending = true;
577 sc->sched.next_tbtt = REG_READ(ah, AR_NEXT_TBTT_TIMER);
579 cur_conf = &sc->cur_chan->beacon;
580 beacon_int = TU_TO_USEC(cur_conf->beacon_interval);
582 /* defer channel switch by a quarter beacon interval */
583 tsf_time = sc->sched.next_tbtt + beacon_int / 4;
584 sc->sched.switch_start_time = tsf_time;
585 sc->cur_chan->last_beacon = sc->sched.next_tbtt;
588 * If an offchannel switch is scheduled to happen after
589 * a beacon transmission, update the NoA with one-shot
590 * values and increment the index.
592 if (sc->next_chan == &sc->offchannel.chan) {
593 ath_chanctx_offchannel_noa(sc, ctx, avp, tsf_time);
597 ath_chanctx_handle_bmiss(sc, ctx, avp);
600 * If a mgd_prepare_tx() has been called by mac80211,
601 * a one-shot NoA needs to be sent. This can happen
602 * with one or more active channel contexts - in both
603 * cases, a new NoA schedule has to be advertised.
605 if (sc->sched.mgd_prepare_tx) {
606 ath_chanctx_set_oneshot_noa(sc, avp, tsf_time,
607 jiffies_to_usecs(HZ / 5));
611 /* Prevent wrap-around issues */
612 if (avp->noa_duration && tsf_time - avp->noa_start > BIT(30))
613 avp->noa_duration = 0;
616 * If multiple contexts are active, start periodic
617 * NoA and increment the index for the first
621 (!avp->noa_duration || sc->sched.force_noa_update))
622 ath_chanctx_set_periodic_noa(sc, avp, cur_conf,
623 tsf_time, beacon_int);
625 if (ctx->active && sc->sched.force_noa_update)
626 sc->sched.force_noa_update = false;
629 case ATH_CHANCTX_EVENT_BEACON_SENT:
630 if (!sc->sched.beacon_pending) {
631 ath_dbg(common, CHAN_CTX,
632 "No pending beacon\n");
636 sc->sched.beacon_pending = false;
638 if (sc->sched.mgd_prepare_tx) {
639 sc->sched.mgd_prepare_tx = false;
640 complete(&sc->go_beacon);
641 ath_dbg(common, CHAN_CTX,
642 "Beacon sent, complete go_beacon\n");
646 if (sc->sched.state != ATH_CHANCTX_STATE_WAIT_FOR_BEACON)
649 ath_dbg(common, CHAN_CTX,
650 "Move chanctx state to WAIT_FOR_TIMER\n");
652 sc->sched.state = ATH_CHANCTX_STATE_WAIT_FOR_TIMER;
653 ath_chanctx_setup_timer(sc, sc->sched.switch_start_time);
655 case ATH_CHANCTX_EVENT_TSF_TIMER:
656 if (sc->sched.state != ATH_CHANCTX_STATE_WAIT_FOR_TIMER)
659 if (!sc->cur_chan->switch_after_beacon &&
660 sc->sched.beacon_pending)
661 sc->sched.beacon_miss++;
663 ath_dbg(common, CHAN_CTX,
664 "Move chanctx state to SWITCH\n");
666 sc->sched.state = ATH_CHANCTX_STATE_SWITCH;
667 ieee80211_queue_work(sc->hw, &sc->chanctx_work);
669 case ATH_CHANCTX_EVENT_BEACON_RECEIVED:
670 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags) ||
671 sc->cur_chan == &sc->offchannel.chan)
674 sc->sched.beacon_pending = false;
675 sc->sched.beacon_miss = 0;
677 if (sc->sched.state == ATH_CHANCTX_STATE_FORCE_ACTIVE ||
678 !sc->sched.beacon_adjust ||
679 !sc->cur_chan->tsf_val)
682 ath_chanctx_adjust_tbtt_delta(sc);
684 /* TSF time might have been updated by the incoming beacon,
685 * need update the channel switch timer to reflect the change.
687 tsf_time = sc->sched.switch_start_time;
688 tsf_time -= (u32) sc->cur_chan->tsf_val +
689 ath9k_hw_get_tsf_offset(sc->cur_chan->tsf_ts, 0);
690 tsf_time += ath9k_hw_gettsf32(ah);
692 sc->sched.beacon_adjust = false;
693 ath_chanctx_setup_timer(sc, tsf_time);
695 case ATH_CHANCTX_EVENT_AUTHORIZED:
696 if (sc->sched.state != ATH_CHANCTX_STATE_FORCE_ACTIVE ||
697 avp->chanctx != sc->cur_chan)
700 ath_dbg(common, CHAN_CTX,
701 "Move chanctx state from FORCE_ACTIVE to IDLE\n");
703 sc->sched.state = ATH_CHANCTX_STATE_IDLE;
705 case ATH_CHANCTX_EVENT_SWITCH:
706 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags) ||
707 sc->sched.state == ATH_CHANCTX_STATE_FORCE_ACTIVE ||
708 sc->cur_chan->switch_after_beacon ||
709 sc->cur_chan == &sc->offchannel.chan)
712 /* If this is a station chanctx, stay active for a half
713 * beacon period (minus channel switch time)
715 sc->next_chan = ath_chanctx_get_next(sc, sc->cur_chan);
716 cur_conf = &sc->cur_chan->beacon;
718 ath_dbg(common, CHAN_CTX,
719 "Move chanctx state to WAIT_FOR_TIMER (event SWITCH)\n");
721 sc->sched.state = ATH_CHANCTX_STATE_WAIT_FOR_TIMER;
722 sc->sched.wait_switch = false;
724 tsf_time = TU_TO_USEC(cur_conf->beacon_interval) / 2;
726 if (sc->sched.extend_absence) {
727 sc->sched.beacon_miss = 0;
731 tsf_time -= sc->sched.channel_switch_time;
732 tsf_time += ath9k_hw_gettsf32(sc->sc_ah);
733 sc->sched.switch_start_time = tsf_time;
735 ath_chanctx_setup_timer(sc, tsf_time);
736 sc->sched.beacon_pending = true;
737 sc->sched.beacon_adjust = true;
739 case ATH_CHANCTX_EVENT_ENABLE_MULTICHANNEL:
740 if (sc->cur_chan == &sc->offchannel.chan ||
741 sc->cur_chan->switch_after_beacon)
744 sc->next_chan = ath_chanctx_get_next(sc, sc->cur_chan);
745 ieee80211_queue_work(sc->hw, &sc->chanctx_work);
747 case ATH_CHANCTX_EVENT_UNASSIGN:
748 if (sc->cur_chan->assigned) {
749 if (sc->next_chan && !sc->next_chan->assigned &&
750 sc->next_chan != &sc->offchannel.chan)
751 sc->sched.state = ATH_CHANCTX_STATE_IDLE;
755 ctx = ath_chanctx_get_next(sc, sc->cur_chan);
756 sc->sched.state = ATH_CHANCTX_STATE_IDLE;
761 ieee80211_queue_work(sc->hw, &sc->chanctx_work);
763 case ATH_CHANCTX_EVENT_ASSIGN:
765 case ATH_CHANCTX_EVENT_CHANGE:
769 spin_unlock_bh(&sc->chan_lock);
772 void ath_chanctx_beacon_sent_ev(struct ath_softc *sc,
773 enum ath_chanctx_event ev)
775 if (sc->sched.beacon_pending)
776 ath_chanctx_event(sc, NULL, ev);
779 void ath_chanctx_beacon_recv_ev(struct ath_softc *sc,
780 enum ath_chanctx_event ev)
782 ath_chanctx_event(sc, NULL, ev);
785 static int ath_scan_channel_duration(struct ath_softc *sc,
786 struct ieee80211_channel *chan)
788 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
790 if (!req->n_ssids || (chan->flags & IEEE80211_CHAN_NO_IR))
791 return (HZ / 9); /* ~110 ms */
793 return (HZ / 16); /* ~60 ms */
796 static void ath_chanctx_switch(struct ath_softc *sc, struct ath_chanctx *ctx,
797 struct cfg80211_chan_def *chandef)
799 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
801 spin_lock_bh(&sc->chan_lock);
803 if (test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags) &&
804 (sc->cur_chan != ctx) && (ctx == &sc->offchannel.chan)) {
806 ctx->chandef = *chandef;
808 sc->sched.offchannel_pending = true;
809 sc->sched.wait_switch = true;
810 sc->sched.offchannel_duration =
811 jiffies_to_usecs(sc->offchannel.duration) +
812 sc->sched.channel_switch_time;
814 spin_unlock_bh(&sc->chan_lock);
815 ath_dbg(common, CHAN_CTX,
816 "Set offchannel_pending to true\n");
822 ctx->chandef = *chandef;
823 ath_dbg(common, CHAN_CTX,
824 "Assigned next_chan to %d MHz\n", chandef->center_freq1);
827 if (sc->next_chan == &sc->offchannel.chan) {
828 sc->sched.offchannel_duration =
829 jiffies_to_usecs(sc->offchannel.duration) +
830 sc->sched.channel_switch_time;
833 ath_dbg(common, CHAN_CTX,
834 "Offchannel duration for chan %d MHz : %u\n",
835 chandef->center_freq1,
836 sc->sched.offchannel_duration);
839 spin_unlock_bh(&sc->chan_lock);
840 ieee80211_queue_work(sc->hw, &sc->chanctx_work);
843 static void ath_chanctx_offchan_switch(struct ath_softc *sc,
844 struct ieee80211_channel *chan)
846 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
847 struct cfg80211_chan_def chandef;
849 cfg80211_chandef_create(&chandef, chan, NL80211_CHAN_NO_HT);
850 ath_dbg(common, CHAN_CTX,
851 "Channel definition created: %d MHz\n", chandef.center_freq1);
853 ath_chanctx_switch(sc, &sc->offchannel.chan, &chandef);
856 static struct ath_chanctx *ath_chanctx_get_oper_chan(struct ath_softc *sc,
859 struct ath_chanctx *ctx;
861 ath_for_each_chanctx(sc, ctx) {
862 if (!ctx->assigned || list_empty(&ctx->vifs))
864 if (active && !ctx->active)
867 if (ctx->switch_after_beacon)
871 return &sc->chanctx[0];
875 ath_scan_next_channel(struct ath_softc *sc)
877 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
878 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
879 struct ieee80211_channel *chan;
881 if (sc->offchannel.scan_idx >= req->n_channels) {
882 ath_dbg(common, CHAN_CTX,
883 "Moving offchannel state to ATH_OFFCHANNEL_IDLE, "
884 "scan_idx: %d, n_channels: %d\n",
885 sc->offchannel.scan_idx,
888 sc->offchannel.state = ATH_OFFCHANNEL_IDLE;
889 ath_chanctx_switch(sc, ath_chanctx_get_oper_chan(sc, false),
894 ath_dbg(common, CHAN_CTX,
895 "Moving offchannel state to ATH_OFFCHANNEL_PROBE_SEND, scan_idx: %d\n",
896 sc->offchannel.scan_idx);
898 chan = req->channels[sc->offchannel.scan_idx++];
899 sc->offchannel.duration = ath_scan_channel_duration(sc, chan);
900 sc->offchannel.state = ATH_OFFCHANNEL_PROBE_SEND;
902 ath_chanctx_offchan_switch(sc, chan);
905 void ath_offchannel_next(struct ath_softc *sc)
907 struct ieee80211_vif *vif;
909 if (sc->offchannel.scan_req) {
910 vif = sc->offchannel.scan_vif;
911 sc->offchannel.chan.txpower = vif->bss_conf.txpower;
912 ath_scan_next_channel(sc);
913 } else if (sc->offchannel.roc_vif) {
914 vif = sc->offchannel.roc_vif;
915 sc->offchannel.chan.txpower = vif->bss_conf.txpower;
916 sc->offchannel.duration =
917 msecs_to_jiffies(sc->offchannel.roc_duration);
918 sc->offchannel.state = ATH_OFFCHANNEL_ROC_START;
919 ath_chanctx_offchan_switch(sc, sc->offchannel.roc_chan);
921 spin_lock_bh(&sc->chan_lock);
922 sc->sched.offchannel_pending = false;
923 sc->sched.wait_switch = false;
924 spin_unlock_bh(&sc->chan_lock);
926 ath_chanctx_switch(sc, ath_chanctx_get_oper_chan(sc, false),
928 sc->offchannel.state = ATH_OFFCHANNEL_IDLE;
934 void ath_roc_complete(struct ath_softc *sc, enum ath_roc_complete_reason reason)
936 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
938 sc->offchannel.roc_vif = NULL;
939 sc->offchannel.roc_chan = NULL;
942 case ATH_ROC_COMPLETE_ABORT:
943 ath_dbg(common, CHAN_CTX, "RoC aborted\n");
944 ieee80211_remain_on_channel_expired(sc->hw);
946 case ATH_ROC_COMPLETE_EXPIRE:
947 ath_dbg(common, CHAN_CTX, "RoC expired\n");
948 ieee80211_remain_on_channel_expired(sc->hw);
950 case ATH_ROC_COMPLETE_CANCEL:
951 ath_dbg(common, CHAN_CTX, "RoC canceled\n");
955 ath_offchannel_next(sc);
956 ath9k_ps_restore(sc);
959 void ath_scan_complete(struct ath_softc *sc, bool abort)
961 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
962 struct cfg80211_scan_info info = {
967 ath_dbg(common, CHAN_CTX, "HW scan aborted\n");
969 ath_dbg(common, CHAN_CTX, "HW scan complete\n");
971 sc->offchannel.scan_req = NULL;
972 sc->offchannel.scan_vif = NULL;
973 sc->offchannel.state = ATH_OFFCHANNEL_IDLE;
974 ieee80211_scan_completed(sc->hw, &info);
975 clear_bit(ATH_OP_SCANNING, &common->op_flags);
976 spin_lock_bh(&sc->chan_lock);
977 if (test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
978 sc->sched.force_noa_update = true;
979 spin_unlock_bh(&sc->chan_lock);
980 ath_offchannel_next(sc);
981 ath9k_ps_restore(sc);
984 static void ath_scan_send_probe(struct ath_softc *sc,
985 struct cfg80211_ssid *ssid)
987 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
988 struct ieee80211_vif *vif = sc->offchannel.scan_vif;
989 struct ath_tx_control txctl = {};
991 struct ieee80211_tx_info *info;
992 int band = sc->offchannel.chan.chandef.chan->band;
994 skb = ieee80211_probereq_get(sc->hw, vif->addr,
995 ssid->ssid, ssid->ssid_len, req->ie_len);
999 info = IEEE80211_SKB_CB(skb);
1001 info->flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
1004 skb_put_data(skb, req->ie, req->ie_len);
1006 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
1008 if (!ieee80211_tx_prepare_skb(sc->hw, vif, skb, band, NULL))
1011 txctl.txq = sc->tx.txq_map[IEEE80211_AC_VO];
1012 if (ath_tx_start(sc->hw, skb, &txctl))
1018 ieee80211_free_txskb(sc->hw, skb);
1021 static void ath_scan_channel_start(struct ath_softc *sc)
1023 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1024 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
1027 if (!(sc->cur_chan->chandef.chan->flags & IEEE80211_CHAN_NO_IR) &&
1029 for (i = 0; i < req->n_ssids; i++)
1030 ath_scan_send_probe(sc, &req->ssids[i]);
1034 ath_dbg(common, CHAN_CTX,
1035 "Moving offchannel state to ATH_OFFCHANNEL_PROBE_WAIT\n");
1037 sc->offchannel.state = ATH_OFFCHANNEL_PROBE_WAIT;
1038 mod_timer(&sc->offchannel.timer, jiffies + sc->offchannel.duration);
1041 static void ath_chanctx_timer(struct timer_list *t)
1043 struct ath_softc *sc = from_timer(sc, t, sched.timer);
1044 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1046 ath_dbg(common, CHAN_CTX,
1047 "Channel context timer invoked\n");
1049 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_TSF_TIMER);
1052 static void ath_offchannel_timer(struct timer_list *t)
1054 struct ath_softc *sc = from_timer(sc, t, offchannel.timer);
1055 struct ath_chanctx *ctx;
1056 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1058 ath_dbg(common, CHAN_CTX, "%s: offchannel state: %s\n",
1059 __func__, offchannel_state_string(sc->offchannel.state));
1061 switch (sc->offchannel.state) {
1062 case ATH_OFFCHANNEL_PROBE_WAIT:
1063 if (!sc->offchannel.scan_req)
1066 /* get first active channel context */
1067 ctx = ath_chanctx_get_oper_chan(sc, true);
1069 ath_dbg(common, CHAN_CTX,
1070 "Switch to oper/active context, "
1071 "move offchannel state to ATH_OFFCHANNEL_SUSPEND\n");
1073 sc->offchannel.state = ATH_OFFCHANNEL_SUSPEND;
1074 ath_chanctx_switch(sc, ctx, NULL);
1075 mod_timer(&sc->offchannel.timer, jiffies + HZ / 10);
1079 case ATH_OFFCHANNEL_SUSPEND:
1080 if (!sc->offchannel.scan_req)
1083 ath_scan_next_channel(sc);
1085 case ATH_OFFCHANNEL_ROC_START:
1086 case ATH_OFFCHANNEL_ROC_WAIT:
1087 sc->offchannel.state = ATH_OFFCHANNEL_ROC_DONE;
1088 ath_roc_complete(sc, ATH_ROC_COMPLETE_EXPIRE);
1096 ath_chanctx_send_vif_ps_frame(struct ath_softc *sc, struct ath_vif *avp,
1099 struct ieee80211_vif *vif = avp->vif;
1100 struct ieee80211_sta *sta = NULL;
1101 struct ieee80211_hdr_3addr *nullfunc;
1102 struct ath_tx_control txctl;
1103 struct sk_buff *skb;
1104 int band = sc->cur_chan->chandef.chan->band;
1106 switch (vif->type) {
1107 case NL80211_IFTYPE_STATION:
1111 skb = ieee80211_nullfunc_get(sc->hw, vif, -1, false);
1115 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
1117 nullfunc->frame_control |=
1118 cpu_to_le16(IEEE80211_FCTL_PM);
1121 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
1122 if (!ieee80211_tx_prepare_skb(sc->hw, vif, skb, band, &sta)) {
1123 dev_kfree_skb_any(skb);
1131 memset(&txctl, 0, sizeof(txctl));
1132 txctl.txq = sc->tx.txq_map[IEEE80211_AC_VO];
1134 if (ath_tx_start(sc->hw, skb, &txctl)) {
1135 ieee80211_free_txskb(sc->hw, skb);
1143 ath_chanctx_send_ps_frame(struct ath_softc *sc, bool powersave)
1145 struct ath_vif *avp;
1149 list_for_each_entry(avp, &sc->cur_chan->vifs, list) {
1150 if (ath_chanctx_send_vif_ps_frame(sc, avp, powersave))
1158 static bool ath_chanctx_defer_switch(struct ath_softc *sc)
1160 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1162 if (sc->cur_chan == &sc->offchannel.chan)
1165 switch (sc->sched.state) {
1166 case ATH_CHANCTX_STATE_SWITCH:
1168 case ATH_CHANCTX_STATE_IDLE:
1169 if (!sc->cur_chan->switch_after_beacon)
1172 ath_dbg(common, CHAN_CTX,
1173 "Defer switch, set chanctx state to WAIT_FOR_BEACON\n");
1175 sc->sched.state = ATH_CHANCTX_STATE_WAIT_FOR_BEACON;
1184 static void ath_offchannel_channel_change(struct ath_softc *sc)
1186 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1188 ath_dbg(common, CHAN_CTX, "%s: offchannel state: %s\n",
1189 __func__, offchannel_state_string(sc->offchannel.state));
1191 switch (sc->offchannel.state) {
1192 case ATH_OFFCHANNEL_PROBE_SEND:
1193 if (!sc->offchannel.scan_req)
1196 if (sc->cur_chan->chandef.chan !=
1197 sc->offchannel.chan.chandef.chan)
1200 ath_scan_channel_start(sc);
1202 case ATH_OFFCHANNEL_IDLE:
1203 if (!sc->offchannel.scan_req)
1206 ath_scan_complete(sc, false);
1208 case ATH_OFFCHANNEL_ROC_START:
1209 if (sc->cur_chan != &sc->offchannel.chan)
1212 sc->offchannel.state = ATH_OFFCHANNEL_ROC_WAIT;
1213 mod_timer(&sc->offchannel.timer,
1214 jiffies + sc->offchannel.duration);
1215 ieee80211_ready_on_channel(sc->hw);
1217 case ATH_OFFCHANNEL_ROC_DONE:
1224 void ath_chanctx_set_next(struct ath_softc *sc, bool force)
1226 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1227 struct ath_chanctx *old_ctx;
1228 bool measure_time = false;
1229 bool send_ps = false;
1230 bool queues_stopped = false;
1233 spin_lock_bh(&sc->chan_lock);
1234 if (!sc->next_chan) {
1235 spin_unlock_bh(&sc->chan_lock);
1239 if (!force && ath_chanctx_defer_switch(sc)) {
1240 spin_unlock_bh(&sc->chan_lock);
1244 ath_dbg(common, CHAN_CTX,
1245 "%s: current: %d MHz, next: %d MHz\n",
1247 sc->cur_chan->chandef.center_freq1,
1248 sc->next_chan->chandef.center_freq1);
1250 if (sc->cur_chan != sc->next_chan) {
1251 ath_dbg(common, CHAN_CTX,
1252 "Stopping current chanctx: %d\n",
1253 sc->cur_chan->chandef.center_freq1);
1254 sc->cur_chan->stopped = true;
1255 spin_unlock_bh(&sc->chan_lock);
1257 if (sc->next_chan == &sc->offchannel.chan) {
1258 ts = ktime_get_raw();
1259 measure_time = true;
1262 ath9k_chanctx_stop_queues(sc, sc->cur_chan);
1263 queues_stopped = true;
1265 __ath9k_flush(sc->hw, ~0, true, false, false);
1267 if (ath_chanctx_send_ps_frame(sc, true))
1268 __ath9k_flush(sc->hw, BIT(IEEE80211_AC_VO),
1269 false, false, false);
1272 spin_lock_bh(&sc->chan_lock);
1274 if (sc->cur_chan != &sc->offchannel.chan) {
1275 sc->cur_chan->tsf_ts = ktime_get_raw();
1276 sc->cur_chan->tsf_val = ath9k_hw_gettsf64(sc->sc_ah);
1279 old_ctx = sc->cur_chan;
1280 sc->cur_chan = sc->next_chan;
1281 sc->cur_chan->stopped = false;
1282 sc->next_chan = NULL;
1284 if (!sc->sched.offchannel_pending)
1285 sc->sched.offchannel_duration = 0;
1287 if (sc->sched.state != ATH_CHANCTX_STATE_FORCE_ACTIVE)
1288 sc->sched.state = ATH_CHANCTX_STATE_IDLE;
1290 spin_unlock_bh(&sc->chan_lock);
1292 if (sc->sc_ah->chip_fullsleep ||
1293 memcmp(&sc->cur_chandef, &sc->cur_chan->chandef,
1294 sizeof(sc->cur_chandef))) {
1295 ath_dbg(common, CHAN_CTX,
1296 "%s: Set channel %d MHz\n",
1297 __func__, sc->cur_chan->chandef.center_freq1);
1298 ath_set_channel(sc);
1300 sc->sched.channel_switch_time =
1301 ath9k_hw_get_tsf_offset(ts, 0);
1303 * A reset will ensure that all queues are woken up,
1304 * so there is no need to awaken them again.
1310 ath9k_chanctx_wake_queues(sc, old_ctx);
1313 ath_chanctx_send_ps_frame(sc, false);
1315 ath_offchannel_channel_change(sc);
1316 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_SWITCH);
1319 static void ath_chanctx_work(struct work_struct *work)
1321 struct ath_softc *sc = container_of(work, struct ath_softc,
1323 mutex_lock(&sc->mutex);
1324 ath_chanctx_set_next(sc, false);
1325 mutex_unlock(&sc->mutex);
1328 void ath9k_offchannel_init(struct ath_softc *sc)
1330 struct ath_chanctx *ctx;
1331 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1332 struct ieee80211_supported_band *sband;
1333 struct ieee80211_channel *chan;
1336 sband = &common->sbands[NL80211_BAND_2GHZ];
1337 if (!sband->n_channels)
1338 sband = &common->sbands[NL80211_BAND_5GHZ];
1340 chan = &sband->channels[0];
1342 ctx = &sc->offchannel.chan;
1343 INIT_LIST_HEAD(&ctx->vifs);
1344 ctx->txpower = ATH_TXPOWER_MAX;
1345 cfg80211_chandef_create(&ctx->chandef, chan, NL80211_CHAN_HT20);
1347 for (i = 0; i < ARRAY_SIZE(ctx->acq); i++) {
1348 INIT_LIST_HEAD(&ctx->acq[i].acq_new);
1349 INIT_LIST_HEAD(&ctx->acq[i].acq_old);
1350 spin_lock_init(&ctx->acq[i].lock);
1353 sc->offchannel.chan.offchannel = true;
1356 void ath9k_init_channel_context(struct ath_softc *sc)
1358 INIT_WORK(&sc->chanctx_work, ath_chanctx_work);
1360 timer_setup(&sc->offchannel.timer, ath_offchannel_timer, 0);
1361 timer_setup(&sc->sched.timer, ath_chanctx_timer, 0);
1363 init_completion(&sc->go_beacon);
1366 void ath9k_deinit_channel_context(struct ath_softc *sc)
1368 cancel_work_sync(&sc->chanctx_work);
1371 bool ath9k_is_chanctx_enabled(void)
1373 return (ath9k_use_chanctx == 1);
1376 /********************/
1377 /* Queue management */
1378 /********************/
1380 void ath9k_chanctx_stop_queues(struct ath_softc *sc, struct ath_chanctx *ctx)
1382 struct ath_hw *ah = sc->sc_ah;
1385 if (ctx == &sc->offchannel.chan) {
1386 ieee80211_stop_queue(sc->hw,
1387 sc->hw->offchannel_tx_hw_queue);
1389 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1390 ieee80211_stop_queue(sc->hw,
1391 ctx->hw_queue_base + i);
1394 if (ah->opmode == NL80211_IFTYPE_AP)
1395 ieee80211_stop_queue(sc->hw, sc->hw->queues - 2);
1399 void ath9k_chanctx_wake_queues(struct ath_softc *sc, struct ath_chanctx *ctx)
1401 struct ath_hw *ah = sc->sc_ah;
1404 if (ctx == &sc->offchannel.chan) {
1405 ieee80211_wake_queue(sc->hw,
1406 sc->hw->offchannel_tx_hw_queue);
1408 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1409 ieee80211_wake_queue(sc->hw,
1410 ctx->hw_queue_base + i);
1413 if (ah->opmode == NL80211_IFTYPE_AP)
1414 ieee80211_wake_queue(sc->hw, sc->hw->queues - 2);
1421 static void ath9k_update_p2p_ps_timer(struct ath_softc *sc, struct ath_vif *avp)
1423 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1424 struct ath_hw *ah = sc->sc_ah;
1425 u32 tsf, target_tsf;
1427 if (!avp || !avp->noa.has_next_tsf)
1430 ath9k_hw_gen_timer_stop(ah, sc->p2p_ps_timer);
1432 tsf = ath9k_hw_gettsf32(sc->sc_ah);
1434 target_tsf = avp->noa.next_tsf;
1435 if (!avp->noa.absent)
1436 target_tsf -= ATH_P2P_PS_STOP_TIME;
1438 target_tsf += ATH_P2P_PS_STOP_TIME;
1440 if (target_tsf - tsf < ATH_P2P_PS_STOP_TIME)
1441 target_tsf = tsf + ATH_P2P_PS_STOP_TIME;
1443 ath_dbg(common, CHAN_CTX, "%s absent %d tsf 0x%08X next_tsf 0x%08X (%dms)\n",
1444 __func__, avp->noa.absent, tsf, target_tsf,
1445 (target_tsf - tsf) / 1000);
1447 ath9k_hw_gen_timer_start(ah, sc->p2p_ps_timer, target_tsf, 1000000);
1450 static void ath9k_update_p2p_ps(struct ath_softc *sc, struct ieee80211_vif *vif)
1452 struct ath_vif *avp = (void *)vif->drv_priv;
1455 if (!sc->p2p_ps_timer)
1458 if (vif->type != NL80211_IFTYPE_STATION)
1461 sc->p2p_ps_vif = avp;
1463 if (sc->ps_flags & PS_BEACON_SYNC)
1466 tsf = ath9k_hw_gettsf32(sc->sc_ah);
1467 ieee80211_parse_p2p_noa(&vif->bss_conf.p2p_noa_attr, &avp->noa, tsf);
1468 ath9k_update_p2p_ps_timer(sc, avp);
1471 static u8 ath9k_get_ctwin(struct ath_softc *sc, struct ath_vif *avp)
1473 struct ath_beacon_config *cur_conf = &sc->cur_chan->beacon;
1474 u8 switch_time, ctwin;
1477 * Channel switch in multi-channel mode is deferred
1478 * by a quarter beacon interval when handling
1479 * ATH_CHANCTX_EVENT_BEACON_PREPARE, so the P2P-GO
1480 * interface is guaranteed to be discoverable
1481 * for that duration after a TBTT.
1483 switch_time = cur_conf->beacon_interval / 4;
1485 ctwin = avp->vif->bss_conf.p2p_noa_attr.oppps_ctwindow;
1486 if (ctwin && (ctwin < switch_time))
1489 if (switch_time < P2P_DEFAULT_CTWIN)
1492 return P2P_DEFAULT_CTWIN;
1495 void ath9k_beacon_add_noa(struct ath_softc *sc, struct ath_vif *avp,
1496 struct sk_buff *skb)
1498 static const u8 noa_ie_hdr[] = {
1499 WLAN_EID_VENDOR_SPECIFIC, /* type */
1501 0x50, 0x6f, 0x9a, /* WFA OUI */
1502 0x09, /* P2P subtype */
1503 0x0c, /* Notice of Absence */
1504 0x00, /* LSB of little-endian len */
1505 0x00, /* MSB of little-endian len */
1508 struct ieee80211_p2p_noa_attr *noa;
1509 int noa_len, noa_desc, i = 0;
1512 if (!avp->offchannel_duration && !avp->noa_duration)
1515 noa_desc = !!avp->offchannel_duration + !!avp->noa_duration;
1516 noa_len = 2 + sizeof(struct ieee80211_p2p_noa_desc) * noa_desc;
1518 hdr = skb_put_data(skb, noa_ie_hdr, sizeof(noa_ie_hdr));
1519 hdr[1] = sizeof(noa_ie_hdr) + noa_len - 2;
1522 noa = skb_put_zero(skb, noa_len);
1524 noa->index = avp->noa_index;
1525 noa->oppps_ctwindow = ath9k_get_ctwin(sc, avp);
1526 if (noa->oppps_ctwindow)
1527 noa->oppps_ctwindow |= BIT(7);
1529 if (avp->noa_duration) {
1530 if (avp->periodic_noa) {
1531 u32 interval = TU_TO_USEC(sc->cur_chan->beacon.beacon_interval);
1532 noa->desc[i].count = 255;
1533 noa->desc[i].interval = cpu_to_le32(interval);
1535 noa->desc[i].count = 1;
1538 noa->desc[i].start_time = cpu_to_le32(avp->noa_start);
1539 noa->desc[i].duration = cpu_to_le32(avp->noa_duration);
1543 if (avp->offchannel_duration) {
1544 noa->desc[i].count = 1;
1545 noa->desc[i].start_time = cpu_to_le32(avp->offchannel_start);
1546 noa->desc[i].duration = cpu_to_le32(avp->offchannel_duration);
1550 void ath9k_p2p_ps_timer(void *priv)
1552 struct ath_softc *sc = priv;
1553 struct ath_vif *avp = sc->p2p_ps_vif;
1554 struct ieee80211_vif *vif;
1555 struct ieee80211_sta *sta;
1556 struct ath_node *an;
1559 del_timer_sync(&sc->sched.timer);
1560 ath9k_hw_gen_timer_stop(sc->sc_ah, sc->p2p_ps_timer);
1561 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_TSF_TIMER);
1563 if (!avp || avp->chanctx != sc->cur_chan)
1566 tsf = ath9k_hw_gettsf32(sc->sc_ah);
1567 if (!avp->noa.absent)
1568 tsf += ATH_P2P_PS_STOP_TIME;
1570 tsf -= ATH_P2P_PS_STOP_TIME;
1572 if (!avp->noa.has_next_tsf ||
1573 avp->noa.next_tsf - tsf > BIT(31))
1574 ieee80211_update_p2p_noa(&avp->noa, tsf);
1576 ath9k_update_p2p_ps_timer(sc, avp);
1581 sta = ieee80211_find_sta(vif, avp->bssid);
1585 an = (void *) sta->drv_priv;
1586 if (an->sleeping == !!avp->noa.absent)
1589 an->sleeping = avp->noa.absent;
1591 ath_tx_aggr_sleep(sta, sc, an);
1593 ath_tx_aggr_wakeup(sc, an);
1599 void ath9k_p2p_bss_info_changed(struct ath_softc *sc,
1600 struct ieee80211_vif *vif)
1602 unsigned long flags;
1604 spin_lock_bh(&sc->sc_pcu_lock);
1605 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1606 ath9k_update_p2p_ps(sc, vif);
1607 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1608 spin_unlock_bh(&sc->sc_pcu_lock);
1611 void ath9k_p2p_beacon_sync(struct ath_softc *sc)
1614 ath9k_update_p2p_ps(sc, sc->p2p_ps_vif->vif);
1617 void ath9k_p2p_remove_vif(struct ath_softc *sc,
1618 struct ieee80211_vif *vif)
1620 struct ath_vif *avp = (void *)vif->drv_priv;
1622 spin_lock_bh(&sc->sc_pcu_lock);
1623 if (avp == sc->p2p_ps_vif) {
1624 sc->p2p_ps_vif = NULL;
1625 ath9k_update_p2p_ps_timer(sc, NULL);
1627 spin_unlock_bh(&sc->sc_pcu_lock);
1630 int ath9k_init_p2p(struct ath_softc *sc)
1632 sc->p2p_ps_timer = ath_gen_timer_alloc(sc->sc_ah, ath9k_p2p_ps_timer,
1633 NULL, sc, AR_FIRST_NDP_TIMER);
1634 if (!sc->p2p_ps_timer)
1640 void ath9k_deinit_p2p(struct ath_softc *sc)
1642 if (sc->p2p_ps_timer)
1643 ath_gen_timer_free(sc->sc_ah, sc->p2p_ps_timer);
1646 #endif /* CONFIG_ATH9K_CHANNEL_CONTEXT */