2f003132463bb7094f8f437020332e667fb24d53
[deliverable/linux.git] / drivers / net / wireless / ath / ath9k / beacon.c
1 /*
2 * Copyright (c) 2008-2009 Atheros Communications Inc.
3 *
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.
7 *
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.
15 */
16
17 #include "ath9k.h"
18
19 #define FUDGE 2
20
21 /*
22 * This function will modify certain transmit queue properties depending on
23 * the operating mode of the station (AP or AdHoc). Parameters are AIFS
24 * settings and channel width min/max
25 */
26 static int ath_beaconq_config(struct ath_softc *sc)
27 {
28 struct ath_hw *ah = sc->sc_ah;
29 struct ath_common *common = ath9k_hw_common(ah);
30 struct ath9k_tx_queue_info qi;
31
32 ath9k_hw_get_txq_props(ah, sc->beacon.beaconq, &qi);
33 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP) {
34 /* Always burst out beacon and CAB traffic. */
35 qi.tqi_aifs = 1;
36 qi.tqi_cwmin = 0;
37 qi.tqi_cwmax = 0;
38 } else {
39 /* Adhoc mode; important thing is to use 2x cwmin. */
40 qi.tqi_aifs = sc->beacon.beacon_qi.tqi_aifs;
41 qi.tqi_cwmin = 2*sc->beacon.beacon_qi.tqi_cwmin;
42 qi.tqi_cwmax = sc->beacon.beacon_qi.tqi_cwmax;
43 }
44
45 if (!ath9k_hw_set_txq_props(ah, sc->beacon.beaconq, &qi)) {
46 ath_print(common, ATH_DBG_FATAL,
47 "Unable to update h/w beacon queue parameters\n");
48 return 0;
49 } else {
50 ath9k_hw_resettxqueue(ah, sc->beacon.beaconq);
51 return 1;
52 }
53 }
54
55 /*
56 * Associates the beacon frame buffer with a transmit descriptor. Will set
57 * up all required antenna switch parameters, rate codes, and channel flags.
58 * Beacons are always sent out at the lowest rate, and are not retried.
59 */
60 static void ath_beacon_setup(struct ath_softc *sc, struct ath_vif *avp,
61 struct ath_buf *bf)
62 {
63 struct sk_buff *skb = bf->bf_mpdu;
64 struct ath_hw *ah = sc->sc_ah;
65 struct ath_desc *ds;
66 struct ath9k_11n_rate_series series[4];
67 const struct ath_rate_table *rt;
68 int flags, antenna, ctsrate = 0, ctsduration = 0;
69 u8 rate;
70
71 ds = bf->bf_desc;
72 flags = ATH9K_TXDESC_NOACK;
73
74 if (((sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) ||
75 (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) &&
76 (ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
77 ds->ds_link = bf->bf_daddr; /* self-linked */
78 flags |= ATH9K_TXDESC_VEOL;
79 /* Let hardware handle antenna switching. */
80 antenna = 0;
81 } else {
82 ds->ds_link = 0;
83 /*
84 * Switch antenna every beacon.
85 * Should only switch every beacon period, not for every SWBA
86 * XXX assumes two antennae
87 */
88 antenna = ((sc->beacon.ast_be_xmit / sc->nbcnvifs) & 1 ? 2 : 1);
89 }
90
91 ds->ds_data = bf->bf_buf_addr;
92
93 rt = sc->cur_rate_table;
94 rate = rt->info[0].ratecode;
95 if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
96 rate |= rt->info[0].short_preamble;
97
98 ath9k_hw_set11n_txdesc(ah, ds, skb->len + FCS_LEN,
99 ATH9K_PKT_TYPE_BEACON,
100 MAX_RATE_POWER,
101 ATH9K_TXKEYIX_INVALID,
102 ATH9K_KEY_TYPE_CLEAR,
103 flags);
104
105 /* NB: beacon's BufLen must be a multiple of 4 bytes */
106 ath9k_hw_filltxdesc(ah, ds, roundup(skb->len, 4),
107 true, true, ds);
108
109 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
110 series[0].Tries = 1;
111 series[0].Rate = rate;
112 series[0].ChSel = sc->tx_chainmask;
113 series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0;
114 ath9k_hw_set11n_ratescenario(ah, ds, ds, 0, ctsrate, ctsduration,
115 series, 4, 0);
116 }
117
118 static struct ath_buf *ath_beacon_generate(struct ieee80211_hw *hw,
119 struct ieee80211_vif *vif)
120 {
121 struct ath_wiphy *aphy = hw->priv;
122 struct ath_softc *sc = aphy->sc;
123 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
124 struct ath_buf *bf;
125 struct ath_vif *avp;
126 struct sk_buff *skb;
127 struct ath_txq *cabq;
128 struct ieee80211_tx_info *info;
129 int cabq_depth;
130
131 if (aphy->state != ATH_WIPHY_ACTIVE)
132 return NULL;
133
134 avp = (void *)vif->drv_priv;
135 cabq = sc->beacon.cabq;
136
137 if (avp->av_bcbuf == NULL)
138 return NULL;
139
140 /* Release the old beacon first */
141
142 bf = avp->av_bcbuf;
143 skb = bf->bf_mpdu;
144 if (skb) {
145 dma_unmap_single(sc->dev, bf->bf_dmacontext,
146 skb->len, DMA_TO_DEVICE);
147 dev_kfree_skb_any(skb);
148 }
149
150 /* Get a new beacon from mac80211 */
151
152 skb = ieee80211_beacon_get(hw, vif);
153 bf->bf_mpdu = skb;
154 if (skb == NULL)
155 return NULL;
156 ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp =
157 avp->tsf_adjust;
158
159 info = IEEE80211_SKB_CB(skb);
160 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
161 /*
162 * TODO: make sure the seq# gets assigned properly (vs. other
163 * TX frames)
164 */
165 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
166 sc->tx.seq_no += 0x10;
167 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
168 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
169 }
170
171 bf->bf_buf_addr = bf->bf_dmacontext =
172 dma_map_single(sc->dev, skb->data,
173 skb->len, DMA_TO_DEVICE);
174 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
175 dev_kfree_skb_any(skb);
176 bf->bf_mpdu = NULL;
177 ath_print(common, ATH_DBG_FATAL,
178 "dma_mapping_error on beaconing\n");
179 return NULL;
180 }
181
182 skb = ieee80211_get_buffered_bc(hw, vif);
183
184 /*
185 * if the CABQ traffic from previous DTIM is pending and the current
186 * beacon is also a DTIM.
187 * 1) if there is only one vif let the cab traffic continue.
188 * 2) if there are more than one vif and we are using staggered
189 * beacons, then drain the cabq by dropping all the frames in
190 * the cabq so that the current vifs cab traffic can be scheduled.
191 */
192 spin_lock_bh(&cabq->axq_lock);
193 cabq_depth = cabq->axq_depth;
194 spin_unlock_bh(&cabq->axq_lock);
195
196 if (skb && cabq_depth) {
197 if (sc->nvifs > 1) {
198 ath_print(common, ATH_DBG_BEACON,
199 "Flushing previous cabq traffic\n");
200 ath_draintxq(sc, cabq, false);
201 }
202 }
203
204 ath_beacon_setup(sc, avp, bf);
205
206 while (skb) {
207 ath_tx_cabq(hw, skb);
208 skb = ieee80211_get_buffered_bc(hw, vif);
209 }
210
211 return bf;
212 }
213
214 /*
215 * Startup beacon transmission for adhoc mode when they are sent entirely
216 * by the hardware using the self-linked descriptor + veol trick.
217 */
218 static void ath_beacon_start_adhoc(struct ath_softc *sc,
219 struct ieee80211_vif *vif)
220 {
221 struct ath_hw *ah = sc->sc_ah;
222 struct ath_common *common = ath9k_hw_common(ah);
223 struct ath_buf *bf;
224 struct ath_vif *avp;
225 struct sk_buff *skb;
226
227 avp = (void *)vif->drv_priv;
228
229 if (avp->av_bcbuf == NULL)
230 return;
231
232 bf = avp->av_bcbuf;
233 skb = bf->bf_mpdu;
234
235 ath_beacon_setup(sc, avp, bf);
236
237 /* NB: caller is known to have already stopped tx dma */
238 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bf->bf_daddr);
239 ath9k_hw_txstart(ah, sc->beacon.beaconq);
240 ath_print(common, ATH_DBG_BEACON, "TXDP%u = %llx (%p)\n",
241 sc->beacon.beaconq, ito64(bf->bf_daddr), bf->bf_desc);
242 }
243
244 int ath_beaconq_setup(struct ath_hw *ah)
245 {
246 struct ath9k_tx_queue_info qi;
247
248 memset(&qi, 0, sizeof(qi));
249 qi.tqi_aifs = 1;
250 qi.tqi_cwmin = 0;
251 qi.tqi_cwmax = 0;
252 /* NB: don't enable any interrupts */
253 return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
254 }
255
256 int ath_beacon_alloc(struct ath_wiphy *aphy, struct ieee80211_vif *vif)
257 {
258 struct ath_softc *sc = aphy->sc;
259 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
260 struct ath_vif *avp;
261 struct ath_buf *bf;
262 struct sk_buff *skb;
263 __le64 tstamp;
264
265 avp = (void *)vif->drv_priv;
266
267 /* Allocate a beacon descriptor if we haven't done so. */
268 if (!avp->av_bcbuf) {
269 /* Allocate beacon state for hostap/ibss. We know
270 * a buffer is available. */
271 avp->av_bcbuf = list_first_entry(&sc->beacon.bbuf,
272 struct ath_buf, list);
273 list_del(&avp->av_bcbuf->list);
274
275 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP ||
276 !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
277 int slot;
278 /*
279 * Assign the vif to a beacon xmit slot. As
280 * above, this cannot fail to find one.
281 */
282 avp->av_bslot = 0;
283 for (slot = 0; slot < ATH_BCBUF; slot++)
284 if (sc->beacon.bslot[slot] == NULL) {
285 /*
286 * XXX hack, space out slots to better
287 * deal with misses
288 */
289 if (slot+1 < ATH_BCBUF &&
290 sc->beacon.bslot[slot+1] == NULL) {
291 avp->av_bslot = slot+1;
292 break;
293 }
294 avp->av_bslot = slot;
295 /* NB: keep looking for a double slot */
296 }
297 BUG_ON(sc->beacon.bslot[avp->av_bslot] != NULL);
298 sc->beacon.bslot[avp->av_bslot] = vif;
299 sc->beacon.bslot_aphy[avp->av_bslot] = aphy;
300 sc->nbcnvifs++;
301 }
302 }
303
304 /* release the previous beacon frame, if it already exists. */
305 bf = avp->av_bcbuf;
306 if (bf->bf_mpdu != NULL) {
307 skb = bf->bf_mpdu;
308 dma_unmap_single(sc->dev, bf->bf_dmacontext,
309 skb->len, DMA_TO_DEVICE);
310 dev_kfree_skb_any(skb);
311 bf->bf_mpdu = NULL;
312 }
313
314 /* NB: the beacon data buffer must be 32-bit aligned. */
315 skb = ieee80211_beacon_get(sc->hw, vif);
316 if (skb == NULL) {
317 ath_print(common, ATH_DBG_BEACON, "cannot get skb\n");
318 return -ENOMEM;
319 }
320
321 tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
322 sc->beacon.bc_tstamp = le64_to_cpu(tstamp);
323 /* Calculate a TSF adjustment factor required for staggered beacons. */
324 if (avp->av_bslot > 0) {
325 u64 tsfadjust;
326 int intval;
327
328 intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL;
329
330 /*
331 * Calculate the TSF offset for this beacon slot, i.e., the
332 * number of usecs that need to be added to the timestamp field
333 * in Beacon and Probe Response frames. Beacon slot 0 is
334 * processed at the correct offset, so it does not require TSF
335 * adjustment. Other slots are adjusted to get the timestamp
336 * close to the TBTT for the BSS.
337 */
338 tsfadjust = intval * avp->av_bslot / ATH_BCBUF;
339 avp->tsf_adjust = cpu_to_le64(TU_TO_USEC(tsfadjust));
340
341 ath_print(common, ATH_DBG_BEACON,
342 "stagger beacons, bslot %d intval "
343 "%u tsfadjust %llu\n",
344 avp->av_bslot, intval, (unsigned long long)tsfadjust);
345
346 ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp =
347 avp->tsf_adjust;
348 } else
349 avp->tsf_adjust = cpu_to_le64(0);
350
351 bf->bf_mpdu = skb;
352 bf->bf_buf_addr = bf->bf_dmacontext =
353 dma_map_single(sc->dev, skb->data,
354 skb->len, DMA_TO_DEVICE);
355 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
356 dev_kfree_skb_any(skb);
357 bf->bf_mpdu = NULL;
358 ath_print(common, ATH_DBG_FATAL,
359 "dma_mapping_error on beacon alloc\n");
360 return -ENOMEM;
361 }
362
363 return 0;
364 }
365
366 void ath_beacon_return(struct ath_softc *sc, struct ath_vif *avp)
367 {
368 if (avp->av_bcbuf != NULL) {
369 struct ath_buf *bf;
370
371 if (avp->av_bslot != -1) {
372 sc->beacon.bslot[avp->av_bslot] = NULL;
373 sc->beacon.bslot_aphy[avp->av_bslot] = NULL;
374 sc->nbcnvifs--;
375 }
376
377 bf = avp->av_bcbuf;
378 if (bf->bf_mpdu != NULL) {
379 struct sk_buff *skb = bf->bf_mpdu;
380 dma_unmap_single(sc->dev, bf->bf_dmacontext,
381 skb->len, DMA_TO_DEVICE);
382 dev_kfree_skb_any(skb);
383 bf->bf_mpdu = NULL;
384 }
385 list_add_tail(&bf->list, &sc->beacon.bbuf);
386
387 avp->av_bcbuf = NULL;
388 }
389 }
390
391 void ath_beacon_tasklet(unsigned long data)
392 {
393 struct ath_softc *sc = (struct ath_softc *)data;
394 struct ath_hw *ah = sc->sc_ah;
395 struct ath_common *common = ath9k_hw_common(ah);
396 struct ath_buf *bf = NULL;
397 struct ieee80211_vif *vif;
398 struct ath_wiphy *aphy;
399 int slot;
400 u32 bfaddr, bc = 0, tsftu;
401 u64 tsf;
402 u16 intval;
403
404 /*
405 * Check if the previous beacon has gone out. If
406 * not don't try to post another, skip this period
407 * and wait for the next. Missed beacons indicate
408 * a problem and should not occur. If we miss too
409 * many consecutive beacons reset the device.
410 */
411 if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0) {
412 sc->beacon.bmisscnt++;
413
414 if (sc->beacon.bmisscnt < BSTUCK_THRESH) {
415 ath_print(common, ATH_DBG_BEACON,
416 "missed %u consecutive beacons\n",
417 sc->beacon.bmisscnt);
418 } else if (sc->beacon.bmisscnt >= BSTUCK_THRESH) {
419 ath_print(common, ATH_DBG_BEACON,
420 "beacon is officially stuck\n");
421 sc->sc_flags |= SC_OP_TSF_RESET;
422 ath_reset(sc, false);
423 }
424
425 return;
426 }
427
428 if (sc->beacon.bmisscnt != 0) {
429 ath_print(common, ATH_DBG_BEACON,
430 "resume beacon xmit after %u misses\n",
431 sc->beacon.bmisscnt);
432 sc->beacon.bmisscnt = 0;
433 }
434
435 /*
436 * Generate beacon frames. we are sending frames
437 * staggered so calculate the slot for this frame based
438 * on the tsf to safeguard against missing an swba.
439 */
440
441 intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL;
442
443 tsf = ath9k_hw_gettsf64(ah);
444 tsftu = TSF_TO_TU(tsf>>32, tsf);
445 slot = ((tsftu % intval) * ATH_BCBUF) / intval;
446 /*
447 * Reverse the slot order to get slot 0 on the TBTT offset that does
448 * not require TSF adjustment and other slots adding
449 * slot/ATH_BCBUF * beacon_int to timestamp. For example, with
450 * ATH_BCBUF = 4, we process beacon slots as follows: 3 2 1 0 3 2 1 ..
451 * and slot 0 is at correct offset to TBTT.
452 */
453 slot = ATH_BCBUF - slot - 1;
454 vif = sc->beacon.bslot[slot];
455 aphy = sc->beacon.bslot_aphy[slot];
456
457 ath_print(common, ATH_DBG_BEACON,
458 "slot %d [tsf %llu tsftu %u intval %u] vif %p\n",
459 slot, tsf, tsftu, intval, vif);
460
461 bfaddr = 0;
462 if (vif) {
463 bf = ath_beacon_generate(aphy->hw, vif);
464 if (bf != NULL) {
465 bfaddr = bf->bf_daddr;
466 bc = 1;
467 }
468 }
469
470 /*
471 * Handle slot time change when a non-ERP station joins/leaves
472 * an 11g network. The 802.11 layer notifies us via callback,
473 * we mark updateslot, then wait one beacon before effecting
474 * the change. This gives associated stations at least one
475 * beacon interval to note the state change.
476 *
477 * NB: The slot time change state machine is clocked according
478 * to whether we are bursting or staggering beacons. We
479 * recognize the request to update and record the current
480 * slot then don't transition until that slot is reached
481 * again. If we miss a beacon for that slot then we'll be
482 * slow to transition but we'll be sure at least one beacon
483 * interval has passed. When bursting slot is always left
484 * set to ATH_BCBUF so this check is a noop.
485 */
486 if (sc->beacon.updateslot == UPDATE) {
487 sc->beacon.updateslot = COMMIT; /* commit next beacon */
488 sc->beacon.slotupdate = slot;
489 } else if (sc->beacon.updateslot == COMMIT && sc->beacon.slotupdate == slot) {
490 ath9k_hw_setslottime(sc->sc_ah, sc->beacon.slottime);
491 sc->beacon.updateslot = OK;
492 }
493 if (bfaddr != 0) {
494 /*
495 * Stop any current dma and put the new frame(s) on the queue.
496 * This should never fail since we check above that no frames
497 * are still pending on the queue.
498 */
499 if (!ath9k_hw_stoptxdma(ah, sc->beacon.beaconq)) {
500 ath_print(common, ATH_DBG_FATAL,
501 "beacon queue %u did not stop?\n", sc->beacon.beaconq);
502 }
503
504 /* NB: cabq traffic should already be queued and primed */
505 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bfaddr);
506 ath9k_hw_txstart(ah, sc->beacon.beaconq);
507
508 sc->beacon.ast_be_xmit += bc; /* XXX per-vif? */
509 }
510 }
511
512 static void ath9k_beacon_init(struct ath_softc *sc,
513 u32 next_beacon,
514 u32 beacon_period)
515 {
516 if (beacon_period & ATH9K_BEACON_RESET_TSF)
517 ath9k_ps_wakeup(sc);
518
519 ath9k_hw_beaconinit(sc->sc_ah, next_beacon, beacon_period);
520
521 if (beacon_period & ATH9K_BEACON_RESET_TSF)
522 ath9k_ps_restore(sc);
523 }
524
525 /*
526 * For multi-bss ap support beacons are either staggered evenly over N slots or
527 * burst together. For the former arrange for the SWBA to be delivered for each
528 * slot. Slots that are not occupied will generate nothing.
529 */
530 static void ath_beacon_config_ap(struct ath_softc *sc,
531 struct ath_beacon_config *conf)
532 {
533 u32 nexttbtt, intval;
534
535 /* Configure the timers only when the TSF has to be reset */
536
537 if (!(sc->sc_flags & SC_OP_TSF_RESET))
538 return;
539
540 /* NB: the beacon interval is kept internally in TU's */
541 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
542 intval /= ATH_BCBUF; /* for staggered beacons */
543 nexttbtt = intval;
544 intval |= ATH9K_BEACON_RESET_TSF;
545
546 /*
547 * In AP mode we enable the beacon timers and SWBA interrupts to
548 * prepare beacon frames.
549 */
550 intval |= ATH9K_BEACON_ENA;
551 sc->imask |= ATH9K_INT_SWBA;
552 ath_beaconq_config(sc);
553
554 /* Set the computed AP beacon timers */
555
556 ath9k_hw_set_interrupts(sc->sc_ah, 0);
557 ath9k_beacon_init(sc, nexttbtt, intval);
558 sc->beacon.bmisscnt = 0;
559 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
560
561 /* Clear the reset TSF flag, so that subsequent beacon updation
562 will not reset the HW TSF. */
563
564 sc->sc_flags &= ~SC_OP_TSF_RESET;
565 }
566
567 /*
568 * This sets up the beacon timers according to the timestamp of the last
569 * received beacon and the current TSF, configures PCF and DTIM
570 * handling, programs the sleep registers so the hardware will wakeup in
571 * time to receive beacons, and configures the beacon miss handling so
572 * we'll receive a BMISS interrupt when we stop seeing beacons from the AP
573 * we've associated with.
574 */
575 static void ath_beacon_config_sta(struct ath_softc *sc,
576 struct ath_beacon_config *conf)
577 {
578 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
579 struct ath9k_beacon_state bs;
580 int dtimperiod, dtimcount, sleepduration;
581 int cfpperiod, cfpcount;
582 u32 nexttbtt = 0, intval, tsftu;
583 u64 tsf;
584 int num_beacons, offset, dtim_dec_count, cfp_dec_count;
585
586 memset(&bs, 0, sizeof(bs));
587 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
588
589 /*
590 * Setup dtim and cfp parameters according to
591 * last beacon we received (which may be none).
592 */
593 dtimperiod = conf->dtim_period;
594 if (dtimperiod <= 0) /* NB: 0 if not known */
595 dtimperiod = 1;
596 dtimcount = conf->dtim_count;
597 if (dtimcount >= dtimperiod) /* NB: sanity check */
598 dtimcount = 0;
599 cfpperiod = 1; /* NB: no PCF support yet */
600 cfpcount = 0;
601
602 sleepduration = conf->listen_interval * intval;
603 if (sleepduration <= 0)
604 sleepduration = intval;
605
606 /*
607 * Pull nexttbtt forward to reflect the current
608 * TSF and calculate dtim+cfp state for the result.
609 */
610 tsf = ath9k_hw_gettsf64(sc->sc_ah);
611 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
612
613 num_beacons = tsftu / intval + 1;
614 offset = tsftu % intval;
615 nexttbtt = tsftu - offset;
616 if (offset)
617 nexttbtt += intval;
618
619 /* DTIM Beacon every dtimperiod Beacon */
620 dtim_dec_count = num_beacons % dtimperiod;
621 /* CFP every cfpperiod DTIM Beacon */
622 cfp_dec_count = (num_beacons / dtimperiod) % cfpperiod;
623 if (dtim_dec_count)
624 cfp_dec_count++;
625
626 dtimcount -= dtim_dec_count;
627 if (dtimcount < 0)
628 dtimcount += dtimperiod;
629
630 cfpcount -= cfp_dec_count;
631 if (cfpcount < 0)
632 cfpcount += cfpperiod;
633
634 bs.bs_intval = intval;
635 bs.bs_nexttbtt = nexttbtt;
636 bs.bs_dtimperiod = dtimperiod*intval;
637 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
638 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
639 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
640 bs.bs_cfpmaxduration = 0;
641
642 /*
643 * Calculate the number of consecutive beacons to miss* before taking
644 * a BMISS interrupt. The configuration is specified in TU so we only
645 * need calculate based on the beacon interval. Note that we clamp the
646 * result to at most 15 beacons.
647 */
648 if (sleepduration > intval) {
649 bs.bs_bmissthreshold = conf->listen_interval *
650 ATH_DEFAULT_BMISS_LIMIT / 2;
651 } else {
652 bs.bs_bmissthreshold = DIV_ROUND_UP(conf->bmiss_timeout, intval);
653 if (bs.bs_bmissthreshold > 15)
654 bs.bs_bmissthreshold = 15;
655 else if (bs.bs_bmissthreshold <= 0)
656 bs.bs_bmissthreshold = 1;
657 }
658
659 /*
660 * Calculate sleep duration. The configuration is given in ms.
661 * We ensure a multiple of the beacon period is used. Also, if the sleep
662 * duration is greater than the DTIM period then it makes senses
663 * to make it a multiple of that.
664 *
665 * XXX fixed at 100ms
666 */
667
668 bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100), sleepduration);
669 if (bs.bs_sleepduration > bs.bs_dtimperiod)
670 bs.bs_sleepduration = bs.bs_dtimperiod;
671
672 /* TSF out of range threshold fixed at 1 second */
673 bs.bs_tsfoor_threshold = ATH9K_TSFOOR_THRESHOLD;
674
675 ath_print(common, ATH_DBG_BEACON, "tsf: %llu tsftu: %u\n", tsf, tsftu);
676 ath_print(common, ATH_DBG_BEACON,
677 "bmiss: %u sleep: %u cfp-period: %u maxdur: %u next: %u\n",
678 bs.bs_bmissthreshold, bs.bs_sleepduration,
679 bs.bs_cfpperiod, bs.bs_cfpmaxduration, bs.bs_cfpnext);
680
681 /* Set the computed STA beacon timers */
682
683 ath9k_hw_set_interrupts(sc->sc_ah, 0);
684 ath9k_hw_set_sta_beacon_timers(sc->sc_ah, &bs);
685 sc->imask |= ATH9K_INT_BMISS;
686 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
687 }
688
689 static void ath_beacon_config_adhoc(struct ath_softc *sc,
690 struct ath_beacon_config *conf,
691 struct ieee80211_vif *vif)
692 {
693 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
694 u64 tsf;
695 u32 tsftu, intval, nexttbtt;
696
697 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
698
699
700 /* Pull nexttbtt forward to reflect the current TSF */
701
702 nexttbtt = TSF_TO_TU(sc->beacon.bc_tstamp >> 32, sc->beacon.bc_tstamp);
703 if (nexttbtt == 0)
704 nexttbtt = intval;
705 else if (intval)
706 nexttbtt = roundup(nexttbtt, intval);
707
708 tsf = ath9k_hw_gettsf64(sc->sc_ah);
709 tsftu = TSF_TO_TU((u32)(tsf>>32), (u32)tsf) + FUDGE;
710 do {
711 nexttbtt += intval;
712 } while (nexttbtt < tsftu);
713
714 ath_print(common, ATH_DBG_BEACON,
715 "IBSS nexttbtt %u intval %u (%u)\n",
716 nexttbtt, intval, conf->beacon_interval);
717
718 /*
719 * In IBSS mode enable the beacon timers but only enable SWBA interrupts
720 * if we need to manually prepare beacon frames. Otherwise we use a
721 * self-linked tx descriptor and let the hardware deal with things.
722 */
723 intval |= ATH9K_BEACON_ENA;
724 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL))
725 sc->imask |= ATH9K_INT_SWBA;
726
727 ath_beaconq_config(sc);
728
729 /* Set the computed ADHOC beacon timers */
730
731 ath9k_hw_set_interrupts(sc->sc_ah, 0);
732 ath9k_beacon_init(sc, nexttbtt, intval);
733 sc->beacon.bmisscnt = 0;
734 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
735
736 /* FIXME: Handle properly when vif is NULL */
737 if (vif && sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)
738 ath_beacon_start_adhoc(sc, vif);
739 }
740
741 void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif)
742 {
743 struct ath_beacon_config *cur_conf = &sc->cur_beacon_conf;
744 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
745 enum nl80211_iftype iftype;
746
747 /* Setup the beacon configuration parameters */
748
749 if (vif) {
750 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
751
752 iftype = vif->type;
753
754 cur_conf->beacon_interval = bss_conf->beacon_int;
755 cur_conf->dtim_period = bss_conf->dtim_period;
756 cur_conf->listen_interval = 1;
757 cur_conf->dtim_count = 1;
758 cur_conf->bmiss_timeout =
759 ATH_DEFAULT_BMISS_LIMIT * cur_conf->beacon_interval;
760 } else {
761 iftype = sc->sc_ah->opmode;
762 }
763
764 /*
765 * It looks like mac80211 may end up using beacon interval of zero in
766 * some cases (at least for mesh point). Avoid getting into an
767 * infinite loop by using a bit safer value instead. To be safe,
768 * do sanity check on beacon interval for all operating modes.
769 */
770 if (cur_conf->beacon_interval == 0)
771 cur_conf->beacon_interval = 100;
772
773 switch (iftype) {
774 case NL80211_IFTYPE_AP:
775 ath_beacon_config_ap(sc, cur_conf);
776 break;
777 case NL80211_IFTYPE_ADHOC:
778 case NL80211_IFTYPE_MESH_POINT:
779 ath_beacon_config_adhoc(sc, cur_conf, vif);
780 break;
781 case NL80211_IFTYPE_STATION:
782 ath_beacon_config_sta(sc, cur_conf);
783 break;
784 default:
785 ath_print(common, ATH_DBG_CONFIG,
786 "Unsupported beaconing mode\n");
787 return;
788 }
789
790 sc->sc_flags |= SC_OP_BEACONS;
791 }
This page took 0.046825 seconds and 4 git commands to generate.