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 reseting 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
;
35 if (test_bit(ATH_OP_INVALID
, &common
->op_flags
))
39 old_pos
= ah
->curchan
- &ah
->channels
[0];
41 ath_dbg(common
, CONFIG
, "Set channel: %d MHz width: %d\n",
42 chan
->center_freq
, chandef
->width
);
44 /* update survey stats for the old channel before switching */
45 spin_lock_bh(&common
->cc_lock
);
46 ath_update_survey_stats(sc
);
47 spin_unlock_bh(&common
->cc_lock
);
49 ath9k_cmn_get_channel(hw
, ah
, chandef
);
51 /* If the operating channel changes, change the survey in-use flags
53 * Reset the survey data for the new channel, unless we're switching
54 * back to the operating channel from an off-channel operation.
56 if (!sc
->cur_chan
->offchannel
&& sc
->cur_survey
!= &sc
->survey
[pos
]) {
58 sc
->cur_survey
->filled
&= ~SURVEY_INFO_IN_USE
;
60 sc
->cur_survey
= &sc
->survey
[pos
];
62 memset(sc
->cur_survey
, 0, sizeof(struct survey_info
));
63 sc
->cur_survey
->filled
|= SURVEY_INFO_IN_USE
;
64 } else if (!(sc
->survey
[pos
].filled
& SURVEY_INFO_IN_USE
)) {
65 memset(&sc
->survey
[pos
], 0, sizeof(struct survey_info
));
68 hchan
= &sc
->sc_ah
->channels
[pos
];
69 r
= ath_reset(sc
, hchan
);
73 /* The most recent snapshot of channel->noisefloor for the old
74 * channel is only available after the hardware reset. Copy it to
75 * the survey stats now.
78 ath_update_survey_nf(sc
, old_pos
);
80 /* Enable radar pulse detection if on a DFS channel. Spectral
81 * scanning and radar detection can not be used concurrently.
83 if (hw
->conf
.radar_enabled
) {
86 rxfilter
= ath9k_hw_getrxfilter(ah
);
87 rxfilter
|= ATH9K_RX_FILTER_PHYRADAR
|
88 ATH9K_RX_FILTER_PHYERR
;
89 ath9k_hw_setrxfilter(ah
, rxfilter
);
90 ath_dbg(common
, DFS
, "DFS enabled at freq %d\n",
93 /* perform spectral scan if requested. */
94 if (test_bit(ATH_OP_SCANNING
, &common
->op_flags
) &&
95 sc
->spec_priv
.spectral_mode
== SPECTRAL_CHANSCAN
)
96 ath9k_cmn_spectral_scan_trigger(common
, &sc
->spec_priv
);
102 void ath_chanctx_init(struct ath_softc
*sc
)
104 struct ath_chanctx
*ctx
;
105 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
106 struct ieee80211_supported_band
*sband
;
107 struct ieee80211_channel
*chan
;
110 sband
= &common
->sbands
[IEEE80211_BAND_2GHZ
];
111 if (!sband
->n_channels
)
112 sband
= &common
->sbands
[IEEE80211_BAND_5GHZ
];
114 chan
= &sband
->channels
[0];
115 for (i
= 0; i
< ATH9K_NUM_CHANCTX
; i
++) {
116 ctx
= &sc
->chanctx
[i
];
117 cfg80211_chandef_create(&ctx
->chandef
, chan
, NL80211_CHAN_HT20
);
118 INIT_LIST_HEAD(&ctx
->vifs
);
119 ctx
->txpower
= ATH_TXPOWER_MAX
;
120 ctx
->flush_timeout
= HZ
/ 5; /* 200ms */
121 for (j
= 0; j
< ARRAY_SIZE(ctx
->acq
); j
++)
122 INIT_LIST_HEAD(&ctx
->acq
[j
]);
126 void ath_chanctx_set_channel(struct ath_softc
*sc
, struct ath_chanctx
*ctx
,
127 struct cfg80211_chan_def
*chandef
)
129 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
132 spin_lock_bh(&sc
->chan_lock
);
134 memcpy(&ctx
->chandef
, chandef
, sizeof(*chandef
));
135 cur_chan
= sc
->cur_chan
== ctx
;
136 spin_unlock_bh(&sc
->chan_lock
);
139 ath_dbg(common
, CHAN_CTX
,
140 "Current context differs from the new context\n");
147 #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
153 struct ath_chanctx
* ath_is_go_chanctx_present(struct ath_softc
*sc
)
155 struct ath_chanctx
*ctx
;
157 struct ieee80211_vif
*vif
;
159 spin_lock_bh(&sc
->chan_lock
);
161 ath_for_each_chanctx(sc
, ctx
) {
165 list_for_each_entry(avp
, &ctx
->vifs
, list
) {
168 if (ieee80211_vif_type_p2p(vif
) == NL80211_IFTYPE_P2P_GO
) {
169 spin_unlock_bh(&sc
->chan_lock
);
175 spin_unlock_bh(&sc
->chan_lock
);
179 /**********************************************************/
180 /* Functions to handle the channel context state machine. */
181 /**********************************************************/
183 static const char *offchannel_state_string(enum ath_offchannel_state state
)
186 case_rtn_string(ATH_OFFCHANNEL_IDLE
);
187 case_rtn_string(ATH_OFFCHANNEL_PROBE_SEND
);
188 case_rtn_string(ATH_OFFCHANNEL_PROBE_WAIT
);
189 case_rtn_string(ATH_OFFCHANNEL_SUSPEND
);
190 case_rtn_string(ATH_OFFCHANNEL_ROC_START
);
191 case_rtn_string(ATH_OFFCHANNEL_ROC_WAIT
);
192 case_rtn_string(ATH_OFFCHANNEL_ROC_DONE
);
198 static const char *chanctx_event_string(enum ath_chanctx_event ev
)
201 case_rtn_string(ATH_CHANCTX_EVENT_BEACON_PREPARE
);
202 case_rtn_string(ATH_CHANCTX_EVENT_BEACON_SENT
);
203 case_rtn_string(ATH_CHANCTX_EVENT_TSF_TIMER
);
204 case_rtn_string(ATH_CHANCTX_EVENT_BEACON_RECEIVED
);
205 case_rtn_string(ATH_CHANCTX_EVENT_AUTHORIZED
);
206 case_rtn_string(ATH_CHANCTX_EVENT_SWITCH
);
207 case_rtn_string(ATH_CHANCTX_EVENT_ASSIGN
);
208 case_rtn_string(ATH_CHANCTX_EVENT_UNASSIGN
);
209 case_rtn_string(ATH_CHANCTX_EVENT_CHANGE
);
210 case_rtn_string(ATH_CHANCTX_EVENT_ENABLE_MULTICHANNEL
);
216 static const char *chanctx_state_string(enum ath_chanctx_state state
)
219 case_rtn_string(ATH_CHANCTX_STATE_IDLE
);
220 case_rtn_string(ATH_CHANCTX_STATE_WAIT_FOR_BEACON
);
221 case_rtn_string(ATH_CHANCTX_STATE_WAIT_FOR_TIMER
);
222 case_rtn_string(ATH_CHANCTX_STATE_SWITCH
);
223 case_rtn_string(ATH_CHANCTX_STATE_FORCE_ACTIVE
);
229 void ath_chanctx_check_active(struct ath_softc
*sc
, struct ath_chanctx
*ctx
)
231 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
232 struct ath_chanctx
*ictx
;
240 if (ctx
== &sc
->offchannel
.chan
) {
241 spin_lock_bh(&sc
->chan_lock
);
243 if (likely(sc
->sched
.channel_switch_time
))
245 usecs_to_jiffies(sc
->sched
.channel_switch_time
);
248 msecs_to_jiffies(10);
250 spin_unlock_bh(&sc
->chan_lock
);
253 * There is no need to iterate over the
254 * active/assigned channel contexts if
255 * the current context is offchannel.
262 list_for_each_entry(avp
, &ctx
->vifs
, list
) {
263 struct ieee80211_vif
*vif
= avp
->vif
;
266 case NL80211_IFTYPE_P2P_CLIENT
:
267 case NL80211_IFTYPE_STATION
:
276 ctx
->active
= active
;
278 ath_for_each_chanctx(sc
, ctx
) {
279 if (!ctx
->assigned
|| list_empty(&ctx
->vifs
))
284 spin_lock_bh(&sc
->chan_lock
);
287 ictx
->flush_timeout
= HZ
/ 5;
288 clear_bit(ATH_OP_MULTI_CHANNEL
, &common
->op_flags
);
289 spin_unlock_bh(&sc
->chan_lock
);
293 ictx
->flush_timeout
= usecs_to_jiffies(sc
->sched
.channel_switch_time
);
295 if (test_and_set_bit(ATH_OP_MULTI_CHANNEL
, &common
->op_flags
)) {
296 spin_unlock_bh(&sc
->chan_lock
);
300 spin_unlock_bh(&sc
->chan_lock
);
302 if (ath9k_is_chanctx_enabled()) {
303 ath_chanctx_event(sc
, NULL
,
304 ATH_CHANCTX_EVENT_ENABLE_MULTICHANNEL
);
308 static struct ath_chanctx
*
309 ath_chanctx_get_next(struct ath_softc
*sc
, struct ath_chanctx
*ctx
)
311 int idx
= ctx
- &sc
->chanctx
[0];
313 return &sc
->chanctx
[!idx
];
316 static void ath_chanctx_adjust_tbtt_delta(struct ath_softc
*sc
)
318 struct ath_chanctx
*prev
, *cur
;
320 u32 cur_tsf
, prev_tsf
, beacon_int
;
323 beacon_int
= TU_TO_USEC(sc
->cur_chan
->beacon
.beacon_interval
);
326 prev
= ath_chanctx_get_next(sc
, cur
);
328 if (!prev
->switch_after_beacon
)
331 getrawmonotonic(&ts
);
332 cur_tsf
= (u32
) cur
->tsf_val
+
333 ath9k_hw_get_tsf_offset(&cur
->tsf_ts
, &ts
);
335 prev_tsf
= prev
->last_beacon
- (u32
) prev
->tsf_val
+ cur_tsf
;
336 prev_tsf
-= ath9k_hw_get_tsf_offset(&prev
->tsf_ts
, &ts
);
338 /* Adjust the TSF time of the AP chanctx to keep its beacons
339 * at half beacon interval offset relative to the STA chanctx.
341 offset
= cur_tsf
- prev_tsf
;
343 /* Ignore stale data or spurious timestamps */
344 if (offset
< 0 || offset
> 3 * beacon_int
)
347 offset
= beacon_int
/ 2 - (offset
% beacon_int
);
348 prev
->tsf_val
+= offset
;
351 /* Configure the TSF based hardware timer for a channel switch.
352 * Also set up backup software timer, in case the gen timer fails.
353 * This could be caused by a hardware reset.
355 static void ath_chanctx_setup_timer(struct ath_softc
*sc
, u32 tsf_time
)
357 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
358 struct ath_hw
*ah
= sc
->sc_ah
;
360 ath9k_hw_gen_timer_start(ah
, sc
->p2p_ps_timer
, tsf_time
, 1000000);
361 tsf_time
-= ath9k_hw_gettsf32(ah
);
362 tsf_time
= msecs_to_jiffies(tsf_time
/ 1000) + 1;
363 mod_timer(&sc
->sched
.timer
, jiffies
+ tsf_time
);
365 ath_dbg(common
, CHAN_CTX
,
366 "Setup chanctx timer with timeout: %d ms\n", jiffies_to_msecs(tsf_time
));
369 static void ath_chanctx_handle_bmiss(struct ath_softc
*sc
,
370 struct ath_chanctx
*ctx
,
374 * Clear the extend_absence flag if it had been
375 * set during the previous beacon transmission,
376 * since we need to revert to the normal NoA
379 if (ctx
->active
&& sc
->sched
.extend_absence
) {
380 avp
->noa_duration
= 0;
381 sc
->sched
.extend_absence
= false;
384 /* If at least two consecutive beacons were missed on the STA
385 * chanctx, stay on the STA channel for one extra beacon period,
386 * to resync the timer properly.
388 if (ctx
->active
&& sc
->sched
.beacon_miss
>= 2) {
389 avp
->noa_duration
= 0;
390 sc
->sched
.extend_absence
= true;
394 static void ath_chanctx_offchannel_noa(struct ath_softc
*sc
,
395 struct ath_chanctx
*ctx
,
399 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
402 avp
->offchannel_start
= tsf_time
;
403 avp
->offchannel_duration
= sc
->sched
.offchannel_duration
;
405 ath_dbg(common
, CHAN_CTX
,
406 "offchannel noa_duration: %d, noa_start: %d, noa_index: %d\n",
407 avp
->offchannel_duration
,
408 avp
->offchannel_start
,
412 * When multiple contexts are active, the NoA
413 * has to be recalculated and advertised after
414 * an offchannel operation.
416 if (ctx
->active
&& avp
->noa_duration
)
417 avp
->noa_duration
= 0;
420 static void ath_chanctx_set_periodic_noa(struct ath_softc
*sc
,
422 struct ath_beacon_config
*cur_conf
,
426 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
429 avp
->noa_start
= tsf_time
;
431 if (sc
->sched
.extend_absence
)
432 avp
->noa_duration
= (3 * beacon_int
/ 2) +
433 sc
->sched
.channel_switch_time
;
436 TU_TO_USEC(cur_conf
->beacon_interval
) / 2 +
437 sc
->sched
.channel_switch_time
;
439 if (test_bit(ATH_OP_SCANNING
, &common
->op_flags
) ||
440 sc
->sched
.extend_absence
)
441 avp
->periodic_noa
= false;
443 avp
->periodic_noa
= true;
445 ath_dbg(common
, CHAN_CTX
,
446 "noa_duration: %d, noa_start: %d, noa_index: %d, periodic: %d\n",
453 static void ath_chanctx_set_oneshot_noa(struct ath_softc
*sc
,
458 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
461 avp
->noa_start
= tsf_time
;
462 avp
->periodic_noa
= false;
463 avp
->oneshot_noa
= true;
464 avp
->noa_duration
= duration
+ sc
->sched
.channel_switch_time
;
466 ath_dbg(common
, CHAN_CTX
,
467 "oneshot noa_duration: %d, noa_start: %d, noa_index: %d, periodic: %d\n",
474 void ath_chanctx_event(struct ath_softc
*sc
, struct ieee80211_vif
*vif
,
475 enum ath_chanctx_event ev
)
477 struct ath_hw
*ah
= sc
->sc_ah
;
478 struct ath_common
*common
= ath9k_hw_common(ah
);
479 struct ath_beacon_config
*cur_conf
;
480 struct ath_vif
*avp
= NULL
;
481 struct ath_chanctx
*ctx
;
486 avp
= (struct ath_vif
*) vif
->drv_priv
;
488 spin_lock_bh(&sc
->chan_lock
);
490 ath_dbg(common
, CHAN_CTX
, "cur_chan: %d MHz, event: %s, state: %s\n",
491 sc
->cur_chan
->chandef
.center_freq1
,
492 chanctx_event_string(ev
),
493 chanctx_state_string(sc
->sched
.state
));
496 case ATH_CHANCTX_EVENT_BEACON_PREPARE
:
497 if (avp
->offchannel_duration
)
498 avp
->offchannel_duration
= 0;
500 if (avp
->oneshot_noa
) {
501 avp
->noa_duration
= 0;
502 avp
->oneshot_noa
= false;
504 ath_dbg(common
, CHAN_CTX
,
505 "Clearing oneshot NoA\n");
508 if (avp
->chanctx
!= sc
->cur_chan
) {
509 ath_dbg(common
, CHAN_CTX
,
510 "Contexts differ, not preparing beacon\n");
514 if (sc
->sched
.offchannel_pending
&& !sc
->sched
.wait_switch
) {
515 sc
->sched
.offchannel_pending
= false;
516 sc
->next_chan
= &sc
->offchannel
.chan
;
517 sc
->sched
.state
= ATH_CHANCTX_STATE_WAIT_FOR_BEACON
;
518 ath_dbg(common
, CHAN_CTX
,
519 "Setting offchannel_pending to false\n");
522 ctx
= ath_chanctx_get_next(sc
, sc
->cur_chan
);
523 if (ctx
->active
&& sc
->sched
.state
== ATH_CHANCTX_STATE_IDLE
) {
525 sc
->sched
.state
= ATH_CHANCTX_STATE_WAIT_FOR_BEACON
;
526 ath_dbg(common
, CHAN_CTX
,
527 "Set next context, move chanctx state to WAIT_FOR_BEACON\n");
530 /* if the timer missed its window, use the next interval */
531 if (sc
->sched
.state
== ATH_CHANCTX_STATE_WAIT_FOR_TIMER
) {
532 sc
->sched
.state
= ATH_CHANCTX_STATE_WAIT_FOR_BEACON
;
533 ath_dbg(common
, CHAN_CTX
,
534 "Move chanctx state from WAIT_FOR_TIMER to WAIT_FOR_BEACON\n");
537 if (sc
->sched
.mgd_prepare_tx
)
538 sc
->sched
.state
= ATH_CHANCTX_STATE_WAIT_FOR_BEACON
;
541 * When a context becomes inactive, for example,
542 * disassociation of a station context, the NoA
543 * attribute needs to be removed from subsequent
546 if (!ctx
->active
&& avp
->noa_duration
&&
547 sc
->sched
.state
!= ATH_CHANCTX_STATE_WAIT_FOR_BEACON
) {
548 avp
->noa_duration
= 0;
549 avp
->periodic_noa
= false;
551 ath_dbg(common
, CHAN_CTX
,
552 "Clearing NoA schedule\n");
555 if (sc
->sched
.state
!= ATH_CHANCTX_STATE_WAIT_FOR_BEACON
)
558 ath_dbg(common
, CHAN_CTX
, "Preparing beacon for vif: %pM\n", vif
->addr
);
560 sc
->sched
.beacon_pending
= true;
561 sc
->sched
.next_tbtt
= REG_READ(ah
, AR_NEXT_TBTT_TIMER
);
563 cur_conf
= &sc
->cur_chan
->beacon
;
564 beacon_int
= TU_TO_USEC(cur_conf
->beacon_interval
);
566 /* defer channel switch by a quarter beacon interval */
567 tsf_time
= sc
->sched
.next_tbtt
+ beacon_int
/ 4;
568 sc
->sched
.switch_start_time
= tsf_time
;
569 sc
->cur_chan
->last_beacon
= sc
->sched
.next_tbtt
;
572 * If an offchannel switch is scheduled to happen after
573 * a beacon transmission, update the NoA with one-shot
574 * values and increment the index.
576 if (sc
->next_chan
== &sc
->offchannel
.chan
) {
577 ath_chanctx_offchannel_noa(sc
, ctx
, avp
, tsf_time
);
581 ath_chanctx_handle_bmiss(sc
, ctx
, avp
);
584 * If a mgd_prepare_tx() has been called by mac80211,
585 * a one-shot NoA needs to be sent. This can happen
586 * with one or more active channel contexts - in both
587 * cases, a new NoA schedule has to be advertised.
589 if (sc
->sched
.mgd_prepare_tx
) {
590 ath_chanctx_set_oneshot_noa(sc
, avp
, tsf_time
,
591 jiffies_to_usecs(HZ
/ 5));
595 /* Prevent wrap-around issues */
596 if (avp
->noa_duration
&& tsf_time
- avp
->noa_start
> BIT(30))
597 avp
->noa_duration
= 0;
600 * If multiple contexts are active, start periodic
601 * NoA and increment the index for the first
605 (!avp
->noa_duration
|| sc
->sched
.force_noa_update
))
606 ath_chanctx_set_periodic_noa(sc
, avp
, cur_conf
,
607 tsf_time
, beacon_int
);
609 if (ctx
->active
&& sc
->sched
.force_noa_update
)
610 sc
->sched
.force_noa_update
= false;
613 case ATH_CHANCTX_EVENT_BEACON_SENT
:
614 if (!sc
->sched
.beacon_pending
) {
615 ath_dbg(common
, CHAN_CTX
,
616 "No pending beacon\n");
620 sc
->sched
.beacon_pending
= false;
622 if (sc
->sched
.mgd_prepare_tx
) {
623 sc
->sched
.mgd_prepare_tx
= false;
624 complete(&sc
->go_beacon
);
625 ath_dbg(common
, CHAN_CTX
,
626 "Beacon sent, complete go_beacon\n");
630 if (sc
->sched
.state
!= ATH_CHANCTX_STATE_WAIT_FOR_BEACON
)
633 ath_dbg(common
, CHAN_CTX
,
634 "Move chanctx state to WAIT_FOR_TIMER\n");
636 sc
->sched
.state
= ATH_CHANCTX_STATE_WAIT_FOR_TIMER
;
637 ath_chanctx_setup_timer(sc
, sc
->sched
.switch_start_time
);
639 case ATH_CHANCTX_EVENT_TSF_TIMER
:
640 if (sc
->sched
.state
!= ATH_CHANCTX_STATE_WAIT_FOR_TIMER
)
643 if (!sc
->cur_chan
->switch_after_beacon
&&
644 sc
->sched
.beacon_pending
)
645 sc
->sched
.beacon_miss
++;
647 ath_dbg(common
, CHAN_CTX
,
648 "Move chanctx state to SWITCH\n");
650 sc
->sched
.state
= ATH_CHANCTX_STATE_SWITCH
;
651 ieee80211_queue_work(sc
->hw
, &sc
->chanctx_work
);
653 case ATH_CHANCTX_EVENT_BEACON_RECEIVED
:
654 if (!test_bit(ATH_OP_MULTI_CHANNEL
, &common
->op_flags
) ||
655 sc
->cur_chan
== &sc
->offchannel
.chan
)
658 sc
->sched
.beacon_pending
= false;
659 sc
->sched
.beacon_miss
= 0;
661 if (sc
->sched
.state
== ATH_CHANCTX_STATE_FORCE_ACTIVE
||
662 !sc
->sched
.beacon_adjust
||
663 !sc
->cur_chan
->tsf_val
)
666 ath_chanctx_adjust_tbtt_delta(sc
);
668 /* TSF time might have been updated by the incoming beacon,
669 * need update the channel switch timer to reflect the change.
671 tsf_time
= sc
->sched
.switch_start_time
;
672 tsf_time
-= (u32
) sc
->cur_chan
->tsf_val
+
673 ath9k_hw_get_tsf_offset(&sc
->cur_chan
->tsf_ts
, NULL
);
674 tsf_time
+= ath9k_hw_gettsf32(ah
);
676 sc
->sched
.beacon_adjust
= false;
677 ath_chanctx_setup_timer(sc
, tsf_time
);
679 case ATH_CHANCTX_EVENT_AUTHORIZED
:
680 if (sc
->sched
.state
!= ATH_CHANCTX_STATE_FORCE_ACTIVE
||
681 avp
->chanctx
!= sc
->cur_chan
)
684 ath_dbg(common
, CHAN_CTX
,
685 "Move chanctx state from FORCE_ACTIVE to IDLE\n");
687 sc
->sched
.state
= ATH_CHANCTX_STATE_IDLE
;
689 case ATH_CHANCTX_EVENT_SWITCH
:
690 if (!test_bit(ATH_OP_MULTI_CHANNEL
, &common
->op_flags
) ||
691 sc
->sched
.state
== ATH_CHANCTX_STATE_FORCE_ACTIVE
||
692 sc
->cur_chan
->switch_after_beacon
||
693 sc
->cur_chan
== &sc
->offchannel
.chan
)
696 /* If this is a station chanctx, stay active for a half
697 * beacon period (minus channel switch time)
699 sc
->next_chan
= ath_chanctx_get_next(sc
, sc
->cur_chan
);
700 cur_conf
= &sc
->cur_chan
->beacon
;
702 ath_dbg(common
, CHAN_CTX
,
703 "Move chanctx state to WAIT_FOR_TIMER (event SWITCH)\n");
705 sc
->sched
.state
= ATH_CHANCTX_STATE_WAIT_FOR_TIMER
;
706 sc
->sched
.wait_switch
= false;
708 tsf_time
= TU_TO_USEC(cur_conf
->beacon_interval
) / 2;
710 if (sc
->sched
.extend_absence
) {
711 sc
->sched
.beacon_miss
= 0;
715 tsf_time
-= sc
->sched
.channel_switch_time
;
716 tsf_time
+= ath9k_hw_gettsf32(sc
->sc_ah
);
717 sc
->sched
.switch_start_time
= tsf_time
;
719 ath_chanctx_setup_timer(sc
, tsf_time
);
720 sc
->sched
.beacon_pending
= true;
721 sc
->sched
.beacon_adjust
= true;
723 case ATH_CHANCTX_EVENT_ENABLE_MULTICHANNEL
:
724 if (sc
->cur_chan
== &sc
->offchannel
.chan
||
725 sc
->cur_chan
->switch_after_beacon
)
728 sc
->next_chan
= ath_chanctx_get_next(sc
, sc
->cur_chan
);
729 ieee80211_queue_work(sc
->hw
, &sc
->chanctx_work
);
731 case ATH_CHANCTX_EVENT_UNASSIGN
:
732 if (sc
->cur_chan
->assigned
) {
733 if (sc
->next_chan
&& !sc
->next_chan
->assigned
&&
734 sc
->next_chan
!= &sc
->offchannel
.chan
)
735 sc
->sched
.state
= ATH_CHANCTX_STATE_IDLE
;
739 ctx
= ath_chanctx_get_next(sc
, sc
->cur_chan
);
740 sc
->sched
.state
= ATH_CHANCTX_STATE_IDLE
;
745 ieee80211_queue_work(sc
->hw
, &sc
->chanctx_work
);
747 case ATH_CHANCTX_EVENT_ASSIGN
:
749 case ATH_CHANCTX_EVENT_CHANGE
:
753 spin_unlock_bh(&sc
->chan_lock
);
756 void ath_chanctx_beacon_sent_ev(struct ath_softc
*sc
,
757 enum ath_chanctx_event ev
)
759 if (sc
->sched
.beacon_pending
)
760 ath_chanctx_event(sc
, NULL
, ev
);
763 void ath_chanctx_beacon_recv_ev(struct ath_softc
*sc
,
764 enum ath_chanctx_event ev
)
766 ath_chanctx_event(sc
, NULL
, ev
);
769 static int ath_scan_channel_duration(struct ath_softc
*sc
,
770 struct ieee80211_channel
*chan
)
772 struct cfg80211_scan_request
*req
= sc
->offchannel
.scan_req
;
774 if (!req
->n_ssids
|| (chan
->flags
& IEEE80211_CHAN_NO_IR
))
775 return (HZ
/ 9); /* ~110 ms */
777 return (HZ
/ 16); /* ~60 ms */
780 static void ath_chanctx_switch(struct ath_softc
*sc
, struct ath_chanctx
*ctx
,
781 struct cfg80211_chan_def
*chandef
)
783 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
785 spin_lock_bh(&sc
->chan_lock
);
787 if (test_bit(ATH_OP_MULTI_CHANNEL
, &common
->op_flags
) &&
788 (sc
->cur_chan
!= ctx
) && (ctx
== &sc
->offchannel
.chan
)) {
790 ctx
->chandef
= *chandef
;
792 sc
->sched
.offchannel_pending
= true;
793 sc
->sched
.wait_switch
= true;
794 sc
->sched
.offchannel_duration
=
795 jiffies_to_usecs(sc
->offchannel
.duration
) +
796 sc
->sched
.channel_switch_time
;
798 spin_unlock_bh(&sc
->chan_lock
);
799 ath_dbg(common
, CHAN_CTX
,
800 "Set offchannel_pending to true\n");
806 ctx
->chandef
= *chandef
;
807 ath_dbg(common
, CHAN_CTX
,
808 "Assigned next_chan to %d MHz\n", chandef
->center_freq1
);
811 if (sc
->next_chan
== &sc
->offchannel
.chan
) {
812 sc
->sched
.offchannel_duration
=
813 jiffies_to_usecs(sc
->offchannel
.duration
) +
814 sc
->sched
.channel_switch_time
;
817 ath_dbg(common
, CHAN_CTX
,
818 "Offchannel duration for chan %d MHz : %u\n",
819 chandef
->center_freq1
,
820 sc
->sched
.offchannel_duration
);
823 spin_unlock_bh(&sc
->chan_lock
);
824 ieee80211_queue_work(sc
->hw
, &sc
->chanctx_work
);
827 static void ath_chanctx_offchan_switch(struct ath_softc
*sc
,
828 struct ieee80211_channel
*chan
)
830 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
831 struct cfg80211_chan_def chandef
;
833 cfg80211_chandef_create(&chandef
, chan
, NL80211_CHAN_NO_HT
);
834 ath_dbg(common
, CHAN_CTX
,
835 "Channel definition created: %d MHz\n", chandef
.center_freq1
);
837 ath_chanctx_switch(sc
, &sc
->offchannel
.chan
, &chandef
);
840 static struct ath_chanctx
*ath_chanctx_get_oper_chan(struct ath_softc
*sc
,
843 struct ath_chanctx
*ctx
;
845 ath_for_each_chanctx(sc
, ctx
) {
846 if (!ctx
->assigned
|| list_empty(&ctx
->vifs
))
848 if (active
&& !ctx
->active
)
851 if (ctx
->switch_after_beacon
)
855 return &sc
->chanctx
[0];
859 ath_scan_next_channel(struct ath_softc
*sc
)
861 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
862 struct cfg80211_scan_request
*req
= sc
->offchannel
.scan_req
;
863 struct ieee80211_channel
*chan
;
865 if (sc
->offchannel
.scan_idx
>= req
->n_channels
) {
866 ath_dbg(common
, CHAN_CTX
,
867 "Moving offchannel state to ATH_OFFCHANNEL_IDLE, "
868 "scan_idx: %d, n_channels: %d\n",
869 sc
->offchannel
.scan_idx
,
872 sc
->offchannel
.state
= ATH_OFFCHANNEL_IDLE
;
873 ath_chanctx_switch(sc
, ath_chanctx_get_oper_chan(sc
, false),
878 ath_dbg(common
, CHAN_CTX
,
879 "Moving offchannel state to ATH_OFFCHANNEL_PROBE_SEND, scan_idx: %d\n",
880 sc
->offchannel
.scan_idx
);
882 chan
= req
->channels
[sc
->offchannel
.scan_idx
++];
883 sc
->offchannel
.duration
= ath_scan_channel_duration(sc
, chan
);
884 sc
->offchannel
.state
= ATH_OFFCHANNEL_PROBE_SEND
;
886 ath_chanctx_offchan_switch(sc
, chan
);
889 void ath_offchannel_next(struct ath_softc
*sc
)
891 struct ieee80211_vif
*vif
;
893 if (sc
->offchannel
.scan_req
) {
894 vif
= sc
->offchannel
.scan_vif
;
895 sc
->offchannel
.chan
.txpower
= vif
->bss_conf
.txpower
;
896 ath_scan_next_channel(sc
);
897 } else if (sc
->offchannel
.roc_vif
) {
898 vif
= sc
->offchannel
.roc_vif
;
899 sc
->offchannel
.chan
.txpower
= vif
->bss_conf
.txpower
;
900 sc
->offchannel
.duration
=
901 msecs_to_jiffies(sc
->offchannel
.roc_duration
);
902 sc
->offchannel
.state
= ATH_OFFCHANNEL_ROC_START
;
903 ath_chanctx_offchan_switch(sc
, sc
->offchannel
.roc_chan
);
905 spin_lock_bh(&sc
->chan_lock
);
906 sc
->sched
.offchannel_pending
= false;
907 sc
->sched
.wait_switch
= false;
908 spin_unlock_bh(&sc
->chan_lock
);
910 ath_chanctx_switch(sc
, ath_chanctx_get_oper_chan(sc
, false),
912 sc
->offchannel
.state
= ATH_OFFCHANNEL_IDLE
;
918 void ath_roc_complete(struct ath_softc
*sc
, bool abort
)
920 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
923 ath_dbg(common
, CHAN_CTX
, "RoC aborted\n");
925 ath_dbg(common
, CHAN_CTX
, "RoC expired\n");
927 sc
->offchannel
.roc_vif
= NULL
;
928 sc
->offchannel
.roc_chan
= NULL
;
929 ieee80211_remain_on_channel_expired(sc
->hw
);
930 ath_offchannel_next(sc
);
931 ath9k_ps_restore(sc
);
934 void ath_scan_complete(struct ath_softc
*sc
, bool abort
)
936 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
939 ath_dbg(common
, CHAN_CTX
, "HW scan aborted\n");
941 ath_dbg(common
, CHAN_CTX
, "HW scan complete\n");
943 sc
->offchannel
.scan_req
= NULL
;
944 sc
->offchannel
.scan_vif
= NULL
;
945 sc
->offchannel
.state
= ATH_OFFCHANNEL_IDLE
;
946 ieee80211_scan_completed(sc
->hw
, abort
);
947 clear_bit(ATH_OP_SCANNING
, &common
->op_flags
);
948 spin_lock_bh(&sc
->chan_lock
);
949 if (test_bit(ATH_OP_MULTI_CHANNEL
, &common
->op_flags
))
950 sc
->sched
.force_noa_update
= true;
951 spin_unlock_bh(&sc
->chan_lock
);
952 ath_offchannel_next(sc
);
953 ath9k_ps_restore(sc
);
956 static void ath_scan_send_probe(struct ath_softc
*sc
,
957 struct cfg80211_ssid
*ssid
)
959 struct cfg80211_scan_request
*req
= sc
->offchannel
.scan_req
;
960 struct ieee80211_vif
*vif
= sc
->offchannel
.scan_vif
;
961 struct ath_tx_control txctl
= {};
963 struct ieee80211_tx_info
*info
;
964 int band
= sc
->offchannel
.chan
.chandef
.chan
->band
;
966 skb
= ieee80211_probereq_get(sc
->hw
, vif
->addr
,
967 ssid
->ssid
, ssid
->ssid_len
, req
->ie_len
);
971 info
= IEEE80211_SKB_CB(skb
);
973 info
->flags
|= IEEE80211_TX_CTL_NO_CCK_RATE
;
976 memcpy(skb_put(skb
, req
->ie_len
), req
->ie
, req
->ie_len
);
978 skb_set_queue_mapping(skb
, IEEE80211_AC_VO
);
980 if (!ieee80211_tx_prepare_skb(sc
->hw
, vif
, skb
, band
, NULL
))
983 txctl
.txq
= sc
->tx
.txq_map
[IEEE80211_AC_VO
];
984 txctl
.force_channel
= true;
985 if (ath_tx_start(sc
->hw
, skb
, &txctl
))
991 ieee80211_free_txskb(sc
->hw
, skb
);
994 static void ath_scan_channel_start(struct ath_softc
*sc
)
996 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
997 struct cfg80211_scan_request
*req
= sc
->offchannel
.scan_req
;
1000 if (!(sc
->cur_chan
->chandef
.chan
->flags
& IEEE80211_CHAN_NO_IR
) &&
1002 for (i
= 0; i
< req
->n_ssids
; i
++)
1003 ath_scan_send_probe(sc
, &req
->ssids
[i
]);
1007 ath_dbg(common
, CHAN_CTX
,
1008 "Moving offchannel state to ATH_OFFCHANNEL_PROBE_WAIT\n");
1010 sc
->offchannel
.state
= ATH_OFFCHANNEL_PROBE_WAIT
;
1011 mod_timer(&sc
->offchannel
.timer
, jiffies
+ sc
->offchannel
.duration
);
1014 static void ath_chanctx_timer(unsigned long data
)
1016 struct ath_softc
*sc
= (struct ath_softc
*) data
;
1017 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1019 ath_dbg(common
, CHAN_CTX
,
1020 "Channel context timer invoked\n");
1022 ath_chanctx_event(sc
, NULL
, ATH_CHANCTX_EVENT_TSF_TIMER
);
1025 static void ath_offchannel_timer(unsigned long data
)
1027 struct ath_softc
*sc
= (struct ath_softc
*)data
;
1028 struct ath_chanctx
*ctx
;
1029 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1031 ath_dbg(common
, CHAN_CTX
, "%s: offchannel state: %s\n",
1032 __func__
, offchannel_state_string(sc
->offchannel
.state
));
1034 switch (sc
->offchannel
.state
) {
1035 case ATH_OFFCHANNEL_PROBE_WAIT
:
1036 if (!sc
->offchannel
.scan_req
)
1039 /* get first active channel context */
1040 ctx
= ath_chanctx_get_oper_chan(sc
, true);
1042 ath_dbg(common
, CHAN_CTX
,
1043 "Switch to oper/active context, "
1044 "move offchannel state to ATH_OFFCHANNEL_SUSPEND\n");
1046 sc
->offchannel
.state
= ATH_OFFCHANNEL_SUSPEND
;
1047 ath_chanctx_switch(sc
, ctx
, NULL
);
1048 mod_timer(&sc
->offchannel
.timer
, jiffies
+ HZ
/ 10);
1052 case ATH_OFFCHANNEL_SUSPEND
:
1053 if (!sc
->offchannel
.scan_req
)
1056 ath_scan_next_channel(sc
);
1058 case ATH_OFFCHANNEL_ROC_START
:
1059 case ATH_OFFCHANNEL_ROC_WAIT
:
1060 sc
->offchannel
.state
= ATH_OFFCHANNEL_ROC_DONE
;
1061 ath_roc_complete(sc
, false);
1069 ath_chanctx_send_vif_ps_frame(struct ath_softc
*sc
, struct ath_vif
*avp
,
1072 struct ieee80211_vif
*vif
= avp
->vif
;
1073 struct ieee80211_sta
*sta
= NULL
;
1074 struct ieee80211_hdr_3addr
*nullfunc
;
1075 struct ath_tx_control txctl
;
1076 struct sk_buff
*skb
;
1077 int band
= sc
->cur_chan
->chandef
.chan
->band
;
1079 switch (vif
->type
) {
1080 case NL80211_IFTYPE_STATION
:
1084 skb
= ieee80211_nullfunc_get(sc
->hw
, vif
);
1088 nullfunc
= (struct ieee80211_hdr_3addr
*) skb
->data
;
1090 nullfunc
->frame_control
|=
1091 cpu_to_le16(IEEE80211_FCTL_PM
);
1093 skb_set_queue_mapping(skb
, IEEE80211_AC_VO
);
1094 if (!ieee80211_tx_prepare_skb(sc
->hw
, vif
, skb
, band
, &sta
)) {
1095 dev_kfree_skb_any(skb
);
1103 memset(&txctl
, 0, sizeof(txctl
));
1104 txctl
.txq
= sc
->tx
.txq_map
[IEEE80211_AC_VO
];
1106 txctl
.force_channel
= true;
1107 if (ath_tx_start(sc
->hw
, skb
, &txctl
)) {
1108 ieee80211_free_txskb(sc
->hw
, skb
);
1116 ath_chanctx_send_ps_frame(struct ath_softc
*sc
, bool powersave
)
1118 struct ath_vif
*avp
;
1122 list_for_each_entry(avp
, &sc
->cur_chan
->vifs
, list
) {
1123 if (ath_chanctx_send_vif_ps_frame(sc
, avp
, powersave
))
1131 static bool ath_chanctx_defer_switch(struct ath_softc
*sc
)
1133 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1135 if (sc
->cur_chan
== &sc
->offchannel
.chan
)
1138 switch (sc
->sched
.state
) {
1139 case ATH_CHANCTX_STATE_SWITCH
:
1141 case ATH_CHANCTX_STATE_IDLE
:
1142 if (!sc
->cur_chan
->switch_after_beacon
)
1145 ath_dbg(common
, CHAN_CTX
,
1146 "Defer switch, set chanctx state to WAIT_FOR_BEACON\n");
1148 sc
->sched
.state
= ATH_CHANCTX_STATE_WAIT_FOR_BEACON
;
1157 static void ath_offchannel_channel_change(struct ath_softc
*sc
)
1159 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1161 ath_dbg(common
, CHAN_CTX
, "%s: offchannel state: %s\n",
1162 __func__
, offchannel_state_string(sc
->offchannel
.state
));
1164 switch (sc
->offchannel
.state
) {
1165 case ATH_OFFCHANNEL_PROBE_SEND
:
1166 if (!sc
->offchannel
.scan_req
)
1169 if (sc
->cur_chan
->chandef
.chan
!=
1170 sc
->offchannel
.chan
.chandef
.chan
)
1173 ath_scan_channel_start(sc
);
1175 case ATH_OFFCHANNEL_IDLE
:
1176 if (!sc
->offchannel
.scan_req
)
1179 ath_scan_complete(sc
, false);
1181 case ATH_OFFCHANNEL_ROC_START
:
1182 if (sc
->cur_chan
!= &sc
->offchannel
.chan
)
1185 sc
->offchannel
.state
= ATH_OFFCHANNEL_ROC_WAIT
;
1186 mod_timer(&sc
->offchannel
.timer
,
1187 jiffies
+ sc
->offchannel
.duration
);
1188 ieee80211_ready_on_channel(sc
->hw
);
1190 case ATH_OFFCHANNEL_ROC_DONE
:
1197 void ath_chanctx_set_next(struct ath_softc
*sc
, bool force
)
1199 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1200 struct ath_chanctx
*old_ctx
;
1202 bool measure_time
= false;
1203 bool send_ps
= false;
1204 bool queues_stopped
= false;
1206 spin_lock_bh(&sc
->chan_lock
);
1207 if (!sc
->next_chan
) {
1208 spin_unlock_bh(&sc
->chan_lock
);
1212 if (!force
&& ath_chanctx_defer_switch(sc
)) {
1213 spin_unlock_bh(&sc
->chan_lock
);
1217 ath_dbg(common
, CHAN_CTX
,
1218 "%s: current: %d MHz, next: %d MHz\n",
1220 sc
->cur_chan
->chandef
.center_freq1
,
1221 sc
->next_chan
->chandef
.center_freq1
);
1223 if (sc
->cur_chan
!= sc
->next_chan
) {
1224 ath_dbg(common
, CHAN_CTX
,
1225 "Stopping current chanctx: %d\n",
1226 sc
->cur_chan
->chandef
.center_freq1
);
1227 sc
->cur_chan
->stopped
= true;
1228 spin_unlock_bh(&sc
->chan_lock
);
1230 if (sc
->next_chan
== &sc
->offchannel
.chan
) {
1231 getrawmonotonic(&ts
);
1232 measure_time
= true;
1235 ath9k_chanctx_stop_queues(sc
, sc
->cur_chan
);
1236 queues_stopped
= true;
1238 __ath9k_flush(sc
->hw
, ~0, true, false, false);
1240 if (ath_chanctx_send_ps_frame(sc
, true))
1241 __ath9k_flush(sc
->hw
, BIT(IEEE80211_AC_VO
),
1242 false, false, false);
1245 spin_lock_bh(&sc
->chan_lock
);
1247 if (sc
->cur_chan
!= &sc
->offchannel
.chan
) {
1248 getrawmonotonic(&sc
->cur_chan
->tsf_ts
);
1249 sc
->cur_chan
->tsf_val
= ath9k_hw_gettsf64(sc
->sc_ah
);
1252 old_ctx
= sc
->cur_chan
;
1253 sc
->cur_chan
= sc
->next_chan
;
1254 sc
->cur_chan
->stopped
= false;
1255 sc
->next_chan
= NULL
;
1257 if (!sc
->sched
.offchannel_pending
)
1258 sc
->sched
.offchannel_duration
= 0;
1260 if (sc
->sched
.state
!= ATH_CHANCTX_STATE_FORCE_ACTIVE
)
1261 sc
->sched
.state
= ATH_CHANCTX_STATE_IDLE
;
1263 spin_unlock_bh(&sc
->chan_lock
);
1265 if (sc
->sc_ah
->chip_fullsleep
||
1266 memcmp(&sc
->cur_chandef
, &sc
->cur_chan
->chandef
,
1267 sizeof(sc
->cur_chandef
))) {
1268 ath_dbg(common
, CHAN_CTX
,
1269 "%s: Set channel %d MHz\n",
1270 __func__
, sc
->cur_chan
->chandef
.center_freq1
);
1271 ath_set_channel(sc
);
1273 sc
->sched
.channel_switch_time
=
1274 ath9k_hw_get_tsf_offset(&ts
, NULL
);
1276 * A reset will ensure that all queues are woken up,
1277 * so there is no need to awaken them again.
1283 ath9k_chanctx_wake_queues(sc
, old_ctx
);
1286 ath_chanctx_send_ps_frame(sc
, false);
1288 ath_offchannel_channel_change(sc
);
1289 ath_chanctx_event(sc
, NULL
, ATH_CHANCTX_EVENT_SWITCH
);
1292 static void ath_chanctx_work(struct work_struct
*work
)
1294 struct ath_softc
*sc
= container_of(work
, struct ath_softc
,
1296 mutex_lock(&sc
->mutex
);
1297 ath_chanctx_set_next(sc
, false);
1298 mutex_unlock(&sc
->mutex
);
1301 void ath9k_offchannel_init(struct ath_softc
*sc
)
1303 struct ath_chanctx
*ctx
;
1304 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
1305 struct ieee80211_supported_band
*sband
;
1306 struct ieee80211_channel
*chan
;
1309 sband
= &common
->sbands
[IEEE80211_BAND_2GHZ
];
1310 if (!sband
->n_channels
)
1311 sband
= &common
->sbands
[IEEE80211_BAND_5GHZ
];
1313 chan
= &sband
->channels
[0];
1315 ctx
= &sc
->offchannel
.chan
;
1316 INIT_LIST_HEAD(&ctx
->vifs
);
1317 ctx
->txpower
= ATH_TXPOWER_MAX
;
1318 cfg80211_chandef_create(&ctx
->chandef
, chan
, NL80211_CHAN_HT20
);
1320 for (i
= 0; i
< ARRAY_SIZE(ctx
->acq
); i
++)
1321 INIT_LIST_HEAD(&ctx
->acq
[i
]);
1323 sc
->offchannel
.chan
.offchannel
= true;
1326 void ath9k_init_channel_context(struct ath_softc
*sc
)
1328 INIT_WORK(&sc
->chanctx_work
, ath_chanctx_work
);
1330 setup_timer(&sc
->offchannel
.timer
, ath_offchannel_timer
,
1332 setup_timer(&sc
->sched
.timer
, ath_chanctx_timer
,
1335 init_completion(&sc
->go_beacon
);
1338 void ath9k_deinit_channel_context(struct ath_softc
*sc
)
1340 cancel_work_sync(&sc
->chanctx_work
);
1343 bool ath9k_is_chanctx_enabled(void)
1345 return (ath9k_use_chanctx
== 1);
1348 /********************/
1349 /* Queue management */
1350 /********************/
1352 void ath9k_chanctx_stop_queues(struct ath_softc
*sc
, struct ath_chanctx
*ctx
)
1354 struct ath_hw
*ah
= sc
->sc_ah
;
1357 if (ctx
== &sc
->offchannel
.chan
) {
1358 ieee80211_stop_queue(sc
->hw
,
1359 sc
->hw
->offchannel_tx_hw_queue
);
1361 for (i
= 0; i
< IEEE80211_NUM_ACS
; i
++)
1362 ieee80211_stop_queue(sc
->hw
,
1363 ctx
->hw_queue_base
+ i
);
1366 if (ah
->opmode
== NL80211_IFTYPE_AP
)
1367 ieee80211_stop_queue(sc
->hw
, sc
->hw
->queues
- 2);
1371 void ath9k_chanctx_wake_queues(struct ath_softc
*sc
, struct ath_chanctx
*ctx
)
1373 struct ath_hw
*ah
= sc
->sc_ah
;
1376 if (ctx
== &sc
->offchannel
.chan
) {
1377 ieee80211_wake_queue(sc
->hw
,
1378 sc
->hw
->offchannel_tx_hw_queue
);
1380 for (i
= 0; i
< IEEE80211_NUM_ACS
; i
++)
1381 ieee80211_wake_queue(sc
->hw
,
1382 ctx
->hw_queue_base
+ i
);
1385 if (ah
->opmode
== NL80211_IFTYPE_AP
)
1386 ieee80211_wake_queue(sc
->hw
, sc
->hw
->queues
- 2);
1393 static void ath9k_update_p2p_ps_timer(struct ath_softc
*sc
, struct ath_vif
*avp
)
1395 struct ath_hw
*ah
= sc
->sc_ah
;
1396 s32 tsf
, target_tsf
;
1398 if (!avp
|| !avp
->noa
.has_next_tsf
)
1401 ath9k_hw_gen_timer_stop(ah
, sc
->p2p_ps_timer
);
1403 tsf
= ath9k_hw_gettsf32(sc
->sc_ah
);
1405 target_tsf
= avp
->noa
.next_tsf
;
1406 if (!avp
->noa
.absent
)
1407 target_tsf
-= ATH_P2P_PS_STOP_TIME
;
1409 if (target_tsf
- tsf
< ATH_P2P_PS_STOP_TIME
)
1410 target_tsf
= tsf
+ ATH_P2P_PS_STOP_TIME
;
1412 ath9k_hw_gen_timer_start(ah
, sc
->p2p_ps_timer
, (u32
) target_tsf
, 1000000);
1415 static void ath9k_update_p2p_ps(struct ath_softc
*sc
, struct ieee80211_vif
*vif
)
1417 struct ath_vif
*avp
= (void *)vif
->drv_priv
;
1420 if (!sc
->p2p_ps_timer
)
1423 if (vif
->type
!= NL80211_IFTYPE_STATION
|| !vif
->p2p
)
1426 sc
->p2p_ps_vif
= avp
;
1427 tsf
= ath9k_hw_gettsf32(sc
->sc_ah
);
1428 ieee80211_parse_p2p_noa(&vif
->bss_conf
.p2p_noa_attr
, &avp
->noa
, tsf
);
1429 ath9k_update_p2p_ps_timer(sc
, avp
);
1432 static u8
ath9k_get_ctwin(struct ath_softc
*sc
, struct ath_vif
*avp
)
1434 struct ath_beacon_config
*cur_conf
= &sc
->cur_chan
->beacon
;
1435 u8 switch_time
, ctwin
;
1438 * Channel switch in multi-channel mode is deferred
1439 * by a quarter beacon interval when handling
1440 * ATH_CHANCTX_EVENT_BEACON_PREPARE, so the P2P-GO
1441 * interface is guaranteed to be discoverable
1442 * for that duration after a TBTT.
1444 switch_time
= cur_conf
->beacon_interval
/ 4;
1446 ctwin
= avp
->vif
->bss_conf
.p2p_noa_attr
.oppps_ctwindow
;
1447 if (ctwin
&& (ctwin
< switch_time
))
1450 if (switch_time
< P2P_DEFAULT_CTWIN
)
1453 return P2P_DEFAULT_CTWIN
;
1456 void ath9k_beacon_add_noa(struct ath_softc
*sc
, struct ath_vif
*avp
,
1457 struct sk_buff
*skb
)
1459 static const u8 noa_ie_hdr
[] = {
1460 WLAN_EID_VENDOR_SPECIFIC
, /* type */
1462 0x50, 0x6f, 0x9a, /* WFA OUI */
1463 0x09, /* P2P subtype */
1464 0x0c, /* Notice of Absence */
1465 0x00, /* LSB of little-endian len */
1466 0x00, /* MSB of little-endian len */
1469 struct ieee80211_p2p_noa_attr
*noa
;
1470 int noa_len
, noa_desc
, i
= 0;
1473 if (!avp
->offchannel_duration
&& !avp
->noa_duration
)
1476 noa_desc
= !!avp
->offchannel_duration
+ !!avp
->noa_duration
;
1477 noa_len
= 2 + sizeof(struct ieee80211_p2p_noa_desc
) * noa_desc
;
1479 hdr
= skb_put(skb
, sizeof(noa_ie_hdr
));
1480 memcpy(hdr
, noa_ie_hdr
, sizeof(noa_ie_hdr
));
1481 hdr
[1] = sizeof(noa_ie_hdr
) + noa_len
- 2;
1484 noa
= (void *) skb_put(skb
, noa_len
);
1485 memset(noa
, 0, noa_len
);
1487 noa
->index
= avp
->noa_index
;
1488 noa
->oppps_ctwindow
= ath9k_get_ctwin(sc
, avp
);
1490 if (avp
->noa_duration
) {
1491 if (avp
->periodic_noa
) {
1492 u32 interval
= TU_TO_USEC(sc
->cur_chan
->beacon
.beacon_interval
);
1493 noa
->desc
[i
].count
= 255;
1494 noa
->desc
[i
].interval
= cpu_to_le32(interval
);
1496 noa
->desc
[i
].count
= 1;
1499 noa
->desc
[i
].start_time
= cpu_to_le32(avp
->noa_start
);
1500 noa
->desc
[i
].duration
= cpu_to_le32(avp
->noa_duration
);
1504 if (avp
->offchannel_duration
) {
1505 noa
->desc
[i
].count
= 1;
1506 noa
->desc
[i
].start_time
= cpu_to_le32(avp
->offchannel_start
);
1507 noa
->desc
[i
].duration
= cpu_to_le32(avp
->offchannel_duration
);
1511 void ath9k_p2p_ps_timer(void *priv
)
1513 struct ath_softc
*sc
= priv
;
1514 struct ath_vif
*avp
= sc
->p2p_ps_vif
;
1515 struct ieee80211_vif
*vif
;
1516 struct ieee80211_sta
*sta
;
1517 struct ath_node
*an
;
1520 del_timer_sync(&sc
->sched
.timer
);
1521 ath9k_hw_gen_timer_stop(sc
->sc_ah
, sc
->p2p_ps_timer
);
1522 ath_chanctx_event(sc
, NULL
, ATH_CHANCTX_EVENT_TSF_TIMER
);
1524 if (!avp
|| avp
->chanctx
!= sc
->cur_chan
)
1527 tsf
= ath9k_hw_gettsf32(sc
->sc_ah
);
1528 if (!avp
->noa
.absent
)
1529 tsf
+= ATH_P2P_PS_STOP_TIME
;
1531 if (!avp
->noa
.has_next_tsf
||
1532 avp
->noa
.next_tsf
- tsf
> BIT(31))
1533 ieee80211_update_p2p_noa(&avp
->noa
, tsf
);
1535 ath9k_update_p2p_ps_timer(sc
, avp
);
1540 sta
= ieee80211_find_sta(vif
, avp
->bssid
);
1544 an
= (void *) sta
->drv_priv
;
1545 if (an
->sleeping
== !!avp
->noa
.absent
)
1548 an
->sleeping
= avp
->noa
.absent
;
1550 ath_tx_aggr_sleep(sta
, sc
, an
);
1552 ath_tx_aggr_wakeup(sc
, an
);
1558 void ath9k_p2p_bss_info_changed(struct ath_softc
*sc
,
1559 struct ieee80211_vif
*vif
)
1561 unsigned long flags
;
1563 spin_lock_bh(&sc
->sc_pcu_lock
);
1564 spin_lock_irqsave(&sc
->sc_pm_lock
, flags
);
1565 if (!(sc
->ps_flags
& PS_BEACON_SYNC
))
1566 ath9k_update_p2p_ps(sc
, vif
);
1567 spin_unlock_irqrestore(&sc
->sc_pm_lock
, flags
);
1568 spin_unlock_bh(&sc
->sc_pcu_lock
);
1571 void ath9k_p2p_beacon_sync(struct ath_softc
*sc
)
1574 ath9k_update_p2p_ps(sc
, sc
->p2p_ps_vif
->vif
);
1577 void ath9k_p2p_remove_vif(struct ath_softc
*sc
,
1578 struct ieee80211_vif
*vif
)
1580 struct ath_vif
*avp
= (void *)vif
->drv_priv
;
1582 spin_lock_bh(&sc
->sc_pcu_lock
);
1583 if (avp
== sc
->p2p_ps_vif
) {
1584 sc
->p2p_ps_vif
= NULL
;
1585 ath9k_update_p2p_ps_timer(sc
, NULL
);
1587 spin_unlock_bh(&sc
->sc_pcu_lock
);
1590 int ath9k_init_p2p(struct ath_softc
*sc
)
1592 sc
->p2p_ps_timer
= ath_gen_timer_alloc(sc
->sc_ah
, ath9k_p2p_ps_timer
,
1593 NULL
, sc
, AR_FIRST_NDP_TIMER
);
1594 if (!sc
->p2p_ps_timer
)
1600 void ath9k_deinit_p2p(struct ath_softc
*sc
)
1602 if (sc
->p2p_ps_timer
)
1603 ath_gen_timer_free(sc
->sc_ah
, sc
->p2p_ps_timer
);
1606 #endif /* CONFIG_ATH9K_CHANNEL_CONTEXT */