2 * Copyright (c) 2008 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 /* Implementation of beacon processing. */
22 * Configure parameters for the beacon queue
24 * This function will modify certain transmit queue properties depending on
25 * the operating mode of the station (AP or AdHoc). Parameters are AIFS
26 * settings and channel width min/max
28 static int ath_beaconq_config(struct ath_softc *sc)
30 struct ath_hal *ah = sc->sc_ah;
31 struct ath9k_tx_queue_info qi;
33 ath9k_hw_get_txq_props(ah, sc->sc_bhalq, &qi);
34 if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) {
35 /* Always burst out beacon and CAB traffic. */
40 /* Adhoc mode; important thing is to use 2x cwmin. */
41 qi.tqi_aifs = sc->sc_beacon_qi.tqi_aifs;
42 qi.tqi_cwmin = 2*sc->sc_beacon_qi.tqi_cwmin;
43 qi.tqi_cwmax = sc->sc_beacon_qi.tqi_cwmax;
46 if (!ath9k_hw_set_txq_props(ah, sc->sc_bhalq, &qi)) {
47 DPRINTF(sc, ATH_DBG_FATAL,
48 "%s: unable to update h/w beacon queue parameters\n",
52 ath9k_hw_resettxqueue(ah, sc->sc_bhalq); /* push to h/w */
58 * Setup the beacon frame for transmit.
60 * Associates the beacon frame buffer with a transmit descriptor. Will set
61 * up all required antenna switch parameters, rate codes, and channel flags.
62 * Beacons are always sent out at the lowest rate, and are not retried.
64 static void ath_beacon_setup(struct ath_softc *sc,
65 struct ath_vap *avp, struct ath_buf *bf)
67 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
68 struct ath_hal *ah = sc->sc_ah;
70 struct ath9k_11n_rate_series series[4];
71 const struct ath9k_rate_table *rt;
77 DPRINTF(sc, ATH_DBG_BEACON, "%s: m %p len %u\n",
78 __func__, skb, skb->len);
80 /* setup descriptors */
83 flags = ATH9K_TXDESC_NOACK;
85 if (sc->sc_ah->ah_opmode == ATH9K_M_IBSS &&
86 (ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
87 ds->ds_link = bf->bf_daddr; /* self-linked */
88 flags |= ATH9K_TXDESC_VEOL;
89 /* Let hardware handle antenna switching. */
94 * Switch antenna every beacon.
95 * Should only switch every beacon period, not for every
97 * XXX assumes two antenna
99 antenna = ((sc->ast_be_xmit / sc->sc_nbcnvaps) & 1 ? 2 : 1);
102 ds->ds_data = bf->bf_buf_addr;
105 * Calculate rate code.
106 * XXX everything at min xmit rate
109 rt = sc->sc_currates;
110 rate = rt->info[rix].rateCode;
111 if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
112 rate |= rt->info[rix].shortPreamble;
114 ath9k_hw_set11n_txdesc(ah, ds,
115 skb->len + FCS_LEN, /* frame length */
116 ATH9K_PKT_TYPE_BEACON, /* Atheros packet type */
117 MAX_RATE_POWER, /* FIXME */
118 ATH9K_TXKEYIX_INVALID, /* no encryption */
119 ATH9K_KEY_TYPE_CLEAR, /* no encryption */
124 /* NB: beacon's BufLen must be a multiple of 4 bytes */
125 ath9k_hw_filltxdesc(ah, ds,
126 roundup(skb->len, 4), /* buffer length */
127 true, /* first segment */
128 true, /* last segment */
129 ds /* first descriptor */
132 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
134 series[0].Rate = rate;
135 series[0].ChSel = sc->sc_tx_chainmask;
136 series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0;
137 ath9k_hw_set11n_ratescenario(ah, ds, ds, 0,
138 ctsrate, ctsduration, series, 4, 0);
142 * Generate beacon frame and queue cab data for a vap.
144 * Updates the contents of the beacon frame. It is assumed that the buffer for
145 * the beacon frame has been allocated in the ATH object, and simply needs to
146 * be filled for this cycle. Also, any CAB (crap after beacon?) traffic will
147 * be added to the beacon frame at this point.
149 static struct ath_buf *ath_beacon_generate(struct ath_softc *sc, int if_id)
154 struct ath_txq *cabq;
155 struct ieee80211_vif *vif;
156 struct ieee80211_tx_info *info;
159 vif = sc->sc_vaps[if_id];
162 avp = (void *)vif->drv_priv;
165 if (avp->av_bcbuf == NULL) {
166 DPRINTF(sc, ATH_DBG_BEACON, "%s: avp=%p av_bcbuf=%p\n",
167 __func__, avp, avp->av_bcbuf);
172 skb = (struct sk_buff *)bf->bf_mpdu;
174 pci_unmap_single(sc->pdev, bf->bf_dmacontext,
175 skb_end_pointer(skb) - skb->head,
179 skb = ieee80211_beacon_get(sc->hw, vif);
184 info = IEEE80211_SKB_CB(skb);
185 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
187 * TODO: make sure the seq# gets assigned properly (vs. other
190 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
192 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
193 hdr->seq_ctrl |= cpu_to_le16(sc->seq_no);
196 bf->bf_buf_addr = bf->bf_dmacontext =
197 pci_map_single(sc->pdev, skb->data,
198 skb_end_pointer(skb) - skb->head,
201 skb = ieee80211_get_buffered_bc(sc->hw, vif);
204 * if the CABQ traffic from previous DTIM is pending and the current
205 * beacon is also a DTIM.
206 * 1) if there is only one vap let the cab traffic continue.
207 * 2) if there are more than one vap and we are using staggered
208 * beacons, then drain the cabq by dropping all the frames in
209 * the cabq so that the current vaps cab traffic can be scheduled.
211 spin_lock_bh(&cabq->axq_lock);
212 cabq_depth = cabq->axq_depth;
213 spin_unlock_bh(&cabq->axq_lock);
215 if (skb && cabq_depth) {
217 * Unlock the cabq lock as ath_tx_draintxq acquires
218 * the lock again which is a common function and that
219 * acquires txq lock inside.
221 if (sc->sc_nvaps > 1) {
222 ath_tx_draintxq(sc, cabq, false);
223 DPRINTF(sc, ATH_DBG_BEACON,
224 "%s: flush previous cabq traffic\n", __func__);
228 /* Construct tx descriptor. */
229 ath_beacon_setup(sc, avp, bf);
232 * Enable the CAB queue before the beacon queue to
233 * insure cab frames are triggered by this beacon.
236 ath_tx_cabq(sc, skb);
237 skb = ieee80211_get_buffered_bc(sc->hw, vif);
244 * Startup beacon transmission for adhoc mode when they are sent entirely
245 * by the hardware using the self-linked descriptor + veol trick.
247 static void ath_beacon_start_adhoc(struct ath_softc *sc, int if_id)
249 struct ieee80211_vif *vif;
250 struct ath_hal *ah = sc->sc_ah;
255 vif = sc->sc_vaps[if_id];
258 avp = (void *)vif->drv_priv;
260 if (avp->av_bcbuf == NULL) {
261 DPRINTF(sc, ATH_DBG_BEACON, "%s: avp=%p av_bcbuf=%p\n",
262 __func__, avp, avp != NULL ? avp->av_bcbuf : NULL);
266 skb = (struct sk_buff *) bf->bf_mpdu;
268 /* Construct tx descriptor. */
269 ath_beacon_setup(sc, avp, bf);
271 /* NB: caller is known to have already stopped tx dma */
272 ath9k_hw_puttxbuf(ah, sc->sc_bhalq, bf->bf_daddr);
273 ath9k_hw_txstart(ah, sc->sc_bhalq);
274 DPRINTF(sc, ATH_DBG_BEACON, "%s: TXDP%u = %llx (%p)\n", __func__,
275 sc->sc_bhalq, ito64(bf->bf_daddr), bf->bf_desc);
279 * Setup a h/w transmit queue for beacons.
281 * This function allocates an information structure (struct ath9k_txq_info)
282 * on the stack, sets some specific parameters (zero out channel width
283 * min/max, and enable aifs). The info structure does not need to be
286 int ath_beaconq_setup(struct ath_hal *ah)
288 struct ath9k_tx_queue_info qi;
290 memset(&qi, 0, sizeof(qi));
294 /* NB: don't enable any interrupts */
295 return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
300 * Allocate and setup an initial beacon frame.
302 * Allocate a beacon state variable for a specific VAP instance created on
303 * the ATH interface. This routine also calculates the beacon "slot" for
304 * staggared beacons in the mBSSID case.
306 int ath_beacon_alloc(struct ath_softc *sc, int if_id)
308 struct ieee80211_vif *vif;
310 struct ieee80211_hdr *hdr;
315 vif = sc->sc_vaps[if_id];
318 avp = (void *)vif->drv_priv;
320 /* Allocate a beacon descriptor if we haven't done so. */
321 if (!avp->av_bcbuf) {
322 /* Allocate beacon state for hostap/ibss. We know
323 * a buffer is available. */
325 avp->av_bcbuf = list_first_entry(&sc->sc_bbuf,
326 struct ath_buf, list);
327 list_del(&avp->av_bcbuf->list);
329 if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP ||
330 !(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
333 * Assign the vap to a beacon xmit slot. As
334 * above, this cannot fail to find one.
337 for (slot = 0; slot < ATH_BCBUF; slot++)
338 if (sc->sc_bslot[slot] == ATH_IF_ID_ANY) {
340 * XXX hack, space out slots to better
343 if (slot+1 < ATH_BCBUF &&
344 sc->sc_bslot[slot+1] ==
346 avp->av_bslot = slot+1;
349 avp->av_bslot = slot;
350 /* NB: keep looking for a double slot */
352 BUG_ON(sc->sc_bslot[avp->av_bslot] != ATH_IF_ID_ANY);
353 sc->sc_bslot[avp->av_bslot] = if_id;
358 /* release the previous beacon frame , if it already exists. */
360 if (bf->bf_mpdu != NULL) {
361 skb = (struct sk_buff *)bf->bf_mpdu;
362 pci_unmap_single(sc->pdev, bf->bf_dmacontext,
363 skb_end_pointer(skb) - skb->head,
365 dev_kfree_skb_any(skb);
370 * NB: the beacon data buffer must be 32-bit aligned.
371 * FIXME: Fill avp->av_btxctl.txpower and
372 * avp->av_btxctl.shortPreamble
374 skb = ieee80211_beacon_get(sc->hw, vif);
376 DPRINTF(sc, ATH_DBG_BEACON, "%s: cannot get skb\n",
381 tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
382 sc->bc_tstamp = le64_to_cpu(tstamp);
385 * Calculate a TSF adjustment factor required for
386 * staggered beacons. Note that we assume the format
387 * of the beacon frame leaves the tstamp field immediately
388 * following the header.
390 if (avp->av_bslot > 0) {
395 intval = sc->hw->conf.beacon_int ?
396 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
399 * The beacon interval is in TU's; the TSF in usecs.
400 * We figure out how many TU's to add to align the
401 * timestamp then convert to TSF units and handle
402 * byte swapping before writing it in the frame.
403 * The hardware will then add this each time a beacon
404 * frame is sent. Note that we align vap's 1..N
405 * and leave vap 0 untouched. This means vap 0
406 * has a timestamp in one beacon interval while the
407 * others get a timestamp aligned to the next interval.
409 tsfadjust = (intval * (ATH_BCBUF - avp->av_bslot)) / ATH_BCBUF;
410 val = cpu_to_le64(tsfadjust << 10); /* TU->TSF */
412 DPRINTF(sc, ATH_DBG_BEACON,
413 "%s: %s beacons, bslot %d intval %u tsfadjust %llu\n",
415 avp->av_bslot, intval, (unsigned long long)tsfadjust);
417 hdr = (struct ieee80211_hdr *)skb->data;
418 memcpy(&hdr[1], &val, sizeof(val));
421 bf->bf_buf_addr = bf->bf_dmacontext =
422 pci_map_single(sc->pdev, skb->data,
423 skb_end_pointer(skb) - skb->head,
431 * Reclaim beacon resources and return buffer to the pool.
433 * Checks the VAP to put the beacon frame buffer back to the ATH object
434 * queue, and de-allocates any skbs that were sent as CAB traffic.
436 void ath_beacon_return(struct ath_softc *sc, struct ath_vap *avp)
438 if (avp->av_bcbuf != NULL) {
441 if (avp->av_bslot != -1) {
442 sc->sc_bslot[avp->av_bslot] = ATH_IF_ID_ANY;
447 if (bf->bf_mpdu != NULL) {
448 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
449 pci_unmap_single(sc->pdev, bf->bf_dmacontext,
450 skb_end_pointer(skb) - skb->head,
452 dev_kfree_skb_any(skb);
455 list_add_tail(&bf->list, &sc->sc_bbuf);
457 avp->av_bcbuf = NULL;
462 * Tasklet for Sending Beacons
464 * Transmit one or more beacon frames at SWBA. Dynamic updates to the frame
465 * contents are done as needed and the slot time is also adjusted based on
468 void ath9k_beacon_tasklet(unsigned long data)
470 struct ath_softc *sc = (struct ath_softc *)data;
471 struct ath_hal *ah = sc->sc_ah;
472 struct ath_buf *bf = NULL;
475 u32 rx_clear = 0, rx_frame = 0, tx_frame = 0;
477 u32 bc = 0; /* beacon count */
482 if (sc->sc_flags & SC_OP_NO_RESET) {
483 show_cycles = ath9k_hw_GetMibCycleCountsPct(ah,
490 * Check if the previous beacon has gone out. If
491 * not don't try to post another, skip this period
492 * and wait for the next. Missed beacons indicate
493 * a problem and should not occur. If we miss too
494 * many consecutive beacons reset the device.
496 * FIXME: Clean up this mess !!
498 if (ath9k_hw_numtxpending(ah, sc->sc_bhalq) != 0) {
500 /* XXX: doth needs the chanchange IE countdown decremented.
501 * We should consider adding a mac80211 call to indicate
502 * a beacon miss so appropriate action could be taken
505 if (sc->sc_bmisscount < BSTUCK_THRESH) {
506 if (sc->sc_flags & SC_OP_NO_RESET) {
507 DPRINTF(sc, ATH_DBG_BEACON,
508 "%s: missed %u consecutive beacons\n",
509 __func__, sc->sc_bmisscount);
512 * Display cycle counter stats from HW
513 * to aide in debug of stickiness.
515 DPRINTF(sc, ATH_DBG_BEACON,
516 "%s: busy times: rx_clear=%d, "
517 "rx_frame=%d, tx_frame=%d\n",
518 __func__, rx_clear, rx_frame,
521 DPRINTF(sc, ATH_DBG_BEACON,
522 "%s: unable to obtain "
523 "busy times\n", __func__);
526 DPRINTF(sc, ATH_DBG_BEACON,
527 "%s: missed %u consecutive beacons\n",
528 __func__, sc->sc_bmisscount);
530 } else if (sc->sc_bmisscount >= BSTUCK_THRESH) {
531 if (sc->sc_flags & SC_OP_NO_RESET) {
532 if (sc->sc_bmisscount == BSTUCK_THRESH) {
533 DPRINTF(sc, ATH_DBG_BEACON,
534 "%s: beacon is officially "
535 "stuck\n", __func__);
536 ath9k_hw_dmaRegDump(ah);
539 DPRINTF(sc, ATH_DBG_BEACON,
540 "%s: beacon is officially stuck\n",
542 ath_bstuck_process(sc);
548 if (sc->sc_bmisscount != 0) {
549 if (sc->sc_flags & SC_OP_NO_RESET) {
550 DPRINTF(sc, ATH_DBG_BEACON,
551 "%s: resume beacon xmit after %u misses\n",
552 __func__, sc->sc_bmisscount);
554 DPRINTF(sc, ATH_DBG_BEACON,
555 "%s: resume beacon xmit after %u misses\n",
556 __func__, sc->sc_bmisscount);
558 sc->sc_bmisscount = 0;
562 * Generate beacon frames. we are sending frames
563 * staggered so calculate the slot for this frame based
564 * on the tsf to safeguard against missing an swba.
567 intval = sc->hw->conf.beacon_int ?
568 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
570 tsf = ath9k_hw_gettsf64(ah);
571 tsftu = TSF_TO_TU(tsf>>32, tsf);
572 slot = ((tsftu % intval) * ATH_BCBUF) / intval;
573 if_id = sc->sc_bslot[(slot + 1) % ATH_BCBUF];
575 DPRINTF(sc, ATH_DBG_BEACON,
576 "%s: slot %d [tsf %llu tsftu %u intval %u] if_id %d\n",
577 __func__, slot, (unsigned long long)tsf, tsftu,
581 if (if_id != ATH_IF_ID_ANY) {
582 bf = ath_beacon_generate(sc, if_id);
584 bfaddr = bf->bf_daddr;
589 * Handle slot time change when a non-ERP station joins/leaves
590 * an 11g network. The 802.11 layer notifies us via callback,
591 * we mark updateslot, then wait one beacon before effecting
592 * the change. This gives associated stations at least one
593 * beacon interval to note the state change.
595 * NB: The slot time change state machine is clocked according
596 * to whether we are bursting or staggering beacons. We
597 * recognize the request to update and record the current
598 * slot then don't transition until that slot is reached
599 * again. If we miss a beacon for that slot then we'll be
600 * slow to transition but we'll be sure at least one beacon
601 * interval has passed. When bursting slot is always left
602 * set to ATH_BCBUF so this check is a noop.
605 if (sc->sc_updateslot == UPDATE) {
606 sc->sc_updateslot = COMMIT; /* commit next beacon */
607 sc->sc_slotupdate = slot;
608 } else if (sc->sc_updateslot == COMMIT && sc->sc_slotupdate == slot)
609 ath_setslottime(sc); /* commit change to hardware */
613 * Stop any current dma and put the new frame(s) on the queue.
614 * This should never fail since we check above that no frames
615 * are still pending on the queue.
617 if (!ath9k_hw_stoptxdma(ah, sc->sc_bhalq)) {
618 DPRINTF(sc, ATH_DBG_FATAL,
619 "%s: beacon queue %u did not stop?\n",
620 __func__, sc->sc_bhalq);
621 /* NB: the HAL still stops DMA, so proceed */
624 /* NB: cabq traffic should already be queued and primed */
625 ath9k_hw_puttxbuf(ah, sc->sc_bhalq, bfaddr);
626 ath9k_hw_txstart(ah, sc->sc_bhalq);
628 sc->ast_be_xmit += bc; /* XXX per-vap? */
633 * Tasklet for Beacon Stuck processing
635 * Processing for Beacon Stuck.
636 * Basically resets the chip.
638 void ath_bstuck_process(struct ath_softc *sc)
640 DPRINTF(sc, ATH_DBG_BEACON,
641 "%s: stuck beacon; resetting (bmiss count %u)\n",
642 __func__, sc->sc_bmisscount);
643 ath_reset(sc, false);
647 * Configure the beacon and sleep timers.
649 * When operating as an AP this resets the TSF and sets
650 * up the hardware to notify us when we need to issue beacons.
652 * When operating in station mode this sets up the beacon
653 * timers according to the timestamp of the last received
654 * beacon and the current TSF, configures PCF and DTIM
655 * handling, programs the sleep registers so the hardware
656 * will wakeup in time to receive beacons, and configures
657 * the beacon miss handling so we'll receive a BMISS
658 * interrupt when we stop seeing beacons from the AP
659 * we've associated with.
661 void ath_beacon_config(struct ath_softc *sc, int if_id)
663 struct ieee80211_vif *vif;
664 struct ath_hal *ah = sc->sc_ah;
665 struct ath_beacon_config conf;
667 enum ath9k_opmode av_opmode;
668 u32 nexttbtt, intval;
670 if (if_id != ATH_IF_ID_ANY) {
671 vif = sc->sc_vaps[if_id];
673 avp = (void *)vif->drv_priv;
674 av_opmode = avp->av_opmode;
676 av_opmode = sc->sc_ah->ah_opmode;
679 memset(&conf, 0, sizeof(struct ath_beacon_config));
681 conf.beacon_interval = sc->hw->conf.beacon_int ?
682 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
683 conf.listen_interval = 1;
684 conf.dtim_period = conf.beacon_interval;
686 conf.bmiss_timeout = ATH_DEFAULT_BMISS_LIMIT * conf.beacon_interval;
688 /* extract tstamp from last beacon and convert to TU */
689 nexttbtt = TSF_TO_TU(sc->bc_tstamp >> 32, sc->bc_tstamp);
691 /* XXX conditionalize multi-bss support? */
692 if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) {
694 * For multi-bss ap support beacons are either staggered
695 * evenly over N slots or burst together. For the former
696 * arrange for the SWBA to be delivered for each slot.
697 * Slots that are not occupied will generate nothing.
699 /* NB: the beacon interval is kept internally in TU's */
700 intval = conf.beacon_interval & ATH9K_BEACON_PERIOD;
701 intval /= ATH_BCBUF; /* for staggered beacons */
703 intval = conf.beacon_interval & ATH9K_BEACON_PERIOD;
706 if (nexttbtt == 0) /* e.g. for ap mode */
708 else if (intval) /* NB: can be 0 for monitor mode */
709 nexttbtt = roundup(nexttbtt, intval);
711 DPRINTF(sc, ATH_DBG_BEACON, "%s: nexttbtt %u intval %u (%u)\n",
712 __func__, nexttbtt, intval, conf.beacon_interval);
714 /* Check for ATH9K_M_HOSTAP and sc_nostabeacons for WDS client */
715 if (sc->sc_ah->ah_opmode == ATH9K_M_STA) {
716 struct ath9k_beacon_state bs;
719 int dtimperiod, dtimcount, sleepduration;
720 int cfpperiod, cfpcount;
723 * Setup dtim and cfp parameters according to
724 * last beacon we received (which may be none).
726 dtimperiod = conf.dtim_period;
727 if (dtimperiod <= 0) /* NB: 0 if not known */
729 dtimcount = conf.dtim_count;
730 if (dtimcount >= dtimperiod) /* NB: sanity check */
732 cfpperiod = 1; /* NB: no PCF support yet */
735 sleepduration = conf.listen_interval * intval;
736 if (sleepduration <= 0)
737 sleepduration = intval;
741 * Pull nexttbtt forward to reflect the current
742 * TSF and calculate dtim+cfp state for the result.
744 tsf = ath9k_hw_gettsf64(ah);
745 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
748 if (--dtimcount < 0) {
749 dtimcount = dtimperiod - 1;
751 cfpcount = cfpperiod - 1;
753 } while (nexttbtt < tsftu);
755 memset(&bs, 0, sizeof(bs));
756 bs.bs_intval = intval;
757 bs.bs_nexttbtt = nexttbtt;
758 bs.bs_dtimperiod = dtimperiod*intval;
759 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
760 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
761 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
762 bs.bs_cfpmaxduration = 0;
765 * Calculate the number of consecutive beacons to miss
766 * before taking a BMISS interrupt. The configuration
767 * is specified in TU so we only need calculate based
768 * on the beacon interval. Note that we clamp the
769 * result to at most 15 beacons.
771 if (sleepduration > intval) {
772 bs.bs_bmissthreshold = conf.listen_interval *
773 ATH_DEFAULT_BMISS_LIMIT / 2;
775 bs.bs_bmissthreshold =
776 DIV_ROUND_UP(conf.bmiss_timeout, intval);
777 if (bs.bs_bmissthreshold > 15)
778 bs.bs_bmissthreshold = 15;
779 else if (bs.bs_bmissthreshold <= 0)
780 bs.bs_bmissthreshold = 1;
784 * Calculate sleep duration. The configuration is
785 * given in ms. We insure a multiple of the beacon
786 * period is used. Also, if the sleep duration is
787 * greater than the DTIM period then it makes senses
788 * to make it a multiple of that.
793 bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100),
795 if (bs.bs_sleepduration > bs.bs_dtimperiod)
796 bs.bs_sleepduration = bs.bs_dtimperiod;
798 DPRINTF(sc, ATH_DBG_BEACON,
812 (unsigned long long)tsf, tsftu,
817 bs.bs_bmissthreshold,
820 bs.bs_cfpmaxduration,
825 ath9k_hw_set_interrupts(ah, 0);
826 ath9k_hw_set_sta_beacon_timers(ah, &bs);
827 sc->sc_imask |= ATH9K_INT_BMISS;
828 ath9k_hw_set_interrupts(ah, sc->sc_imask);
832 ath9k_hw_set_interrupts(ah, 0);
833 if (nexttbtt == intval)
834 intval |= ATH9K_BEACON_RESET_TSF;
835 if (sc->sc_ah->ah_opmode == ATH9K_M_IBSS) {
837 * Pull nexttbtt forward to reflect the current
841 if (!(intval & ATH9K_BEACON_RESET_TSF)) {
842 tsf = ath9k_hw_gettsf64(ah);
843 tsftu = TSF_TO_TU((u32)(tsf>>32),
847 } while (nexttbtt < tsftu);
850 DPRINTF(sc, ATH_DBG_BEACON,
851 "%s: IBSS nexttbtt %u intval %u (%u)\n",
853 intval & ~ATH9K_BEACON_RESET_TSF,
854 conf.beacon_interval);
857 * In IBSS mode enable the beacon timers but only
858 * enable SWBA interrupts if we need to manually
859 * prepare beacon frames. Otherwise we use a
860 * self-linked tx descriptor and let the hardware
863 intval |= ATH9K_BEACON_ENA;
864 if (!(ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL))
865 sc->sc_imask |= ATH9K_INT_SWBA;
866 ath_beaconq_config(sc);
867 } else if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) {
869 * In AP mode we enable the beacon timers and
870 * SWBA interrupts to prepare beacon frames.
872 intval |= ATH9K_BEACON_ENA;
873 sc->sc_imask |= ATH9K_INT_SWBA; /* beacon prepare */
874 ath_beaconq_config(sc);
876 ath9k_hw_beaconinit(ah, nexttbtt, intval);
877 sc->sc_bmisscount = 0;
878 ath9k_hw_set_interrupts(ah, sc->sc_imask);
880 * When using a self-linked beacon descriptor in
881 * ibss mode load it once here.
883 if (sc->sc_ah->ah_opmode == ATH9K_M_IBSS &&
884 (ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL))
885 ath_beacon_start_adhoc(sc, 0);
889 /* Function to collect beacon rssi data and resync beacon if necessary */
891 void ath_beacon_sync(struct ath_softc *sc, int if_id)
894 * Resync beacon timers using the tsf of the
895 * beacon frame we just received.
897 ath_beacon_config(sc, if_id);
898 sc->sc_flags |= SC_OP_BEACONS;