e1000e: add support for 82567LM-3 and 82567LF-3 (ICH10D) parts
[linux-2.6] / drivers / net / wireless / ath9k / beacon.c
1 /*
2  * Copyright (c) 2008 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  /* Implementation of beacon processing. */
18
19 #include <asm/unaligned.h>
20 #include "core.h"
21
22 /*
23  *  Configure parameters for the beacon queue
24  *
25  *  This function will modify certain transmit queue properties depending on
26  *  the operating mode of the station (AP or AdHoc).  Parameters are AIFS
27  *  settings and channel width min/max
28 */
29
30 static int ath_beaconq_config(struct ath_softc *sc)
31 {
32         struct ath_hal *ah = sc->sc_ah;
33         struct ath9k_tx_queue_info qi;
34
35         ath9k_hw_get_txq_props(ah, sc->sc_bhalq, &qi);
36         if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) {
37                 /* Always burst out beacon and CAB traffic. */
38                 qi.tqi_aifs = 1;
39                 qi.tqi_cwmin = 0;
40                 qi.tqi_cwmax = 0;
41         } else {
42                 /* Adhoc mode; important thing is to use 2x cwmin. */
43                 qi.tqi_aifs = sc->sc_beacon_qi.tqi_aifs;
44                 qi.tqi_cwmin = 2*sc->sc_beacon_qi.tqi_cwmin;
45                 qi.tqi_cwmax = sc->sc_beacon_qi.tqi_cwmax;
46         }
47
48         if (!ath9k_hw_set_txq_props(ah, sc->sc_bhalq, &qi)) {
49                 DPRINTF(sc, ATH_DBG_FATAL,
50                         "%s: unable to update h/w beacon queue parameters\n",
51                         __func__);
52                 return 0;
53         } else {
54                 ath9k_hw_resettxqueue(ah, sc->sc_bhalq); /* push to h/w */
55                 return 1;
56         }
57 }
58
59 /*
60  *  Setup the beacon frame for transmit.
61  *
62  *  Associates the beacon frame buffer with a transmit descriptor.  Will set
63  *  up all required antenna switch parameters, rate codes, and channel flags.
64  *  Beacons are always sent out at the lowest rate, and are not retried.
65 */
66
67 static void ath_beacon_setup(struct ath_softc *sc,
68         struct ath_vap *avp, struct ath_buf *bf)
69 {
70         struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
71         struct ath_hal *ah = sc->sc_ah;
72         struct ath_desc *ds;
73         int flags, antenna;
74         const struct ath9k_rate_table *rt;
75         u8 rix, rate;
76         int ctsrate = 0;
77         int ctsduration = 0;
78         struct ath9k_11n_rate_series  series[4];
79
80         DPRINTF(sc, ATH_DBG_BEACON, "%s: m %p len %u\n",
81                 __func__, skb, skb->len);
82
83         /* setup descriptors */
84         ds = bf->bf_desc;
85
86         flags = ATH9K_TXDESC_NOACK;
87
88         if (sc->sc_ah->ah_opmode == ATH9K_M_IBSS &&
89             (ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
90                 ds->ds_link = bf->bf_daddr; /* self-linked */
91                 flags |= ATH9K_TXDESC_VEOL;
92                 /* Let hardware handle antenna switching. */
93                 antenna = 0;
94         } else {
95                 ds->ds_link = 0;
96                 /*
97                  * Switch antenna every beacon.
98                  * Should only switch every beacon period, not for every
99                  * SWBA's
100                  * XXX assumes two antenna
101                  */
102                 antenna = ((sc->ast_be_xmit / sc->sc_nbcnvaps) & 1 ? 2 : 1);
103         }
104
105         ds->ds_data = bf->bf_buf_addr;
106
107         /*
108          * Calculate rate code.
109          * XXX everything at min xmit rate
110          */
111         rix = 0;
112         rt = sc->sc_currates;
113         rate = rt->info[rix].rateCode;
114         if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
115                 rate |= rt->info[rix].shortPreamble;
116
117         ath9k_hw_set11n_txdesc(ah, ds,
118                                skb->len + FCS_LEN, /* frame length */
119                                ATH9K_PKT_TYPE_BEACON, /* Atheros packet type */
120                                avp->av_btxctl.txpower, /* txpower XXX */
121                                ATH9K_TXKEYIX_INVALID, /* no encryption */
122                                ATH9K_KEY_TYPE_CLEAR, /* no encryption */
123                                flags /* no ack, veol for beacons */
124                 );
125
126         /* NB: beacon's BufLen must be a multiple of 4 bytes */
127         ath9k_hw_filltxdesc(ah, ds,
128                             roundup(skb->len, 4), /* buffer length */
129                             true, /* first segment */
130                             true, /* last segment */
131                             ds /* first descriptor */
132                 );
133
134         memzero(series, sizeof(struct ath9k_11n_rate_series) * 4);
135         series[0].Tries = 1;
136         series[0].Rate = rate;
137         series[0].ChSel = sc->sc_tx_chainmask;
138         series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0;
139         ath9k_hw_set11n_ratescenario(ah, ds, ds, 0,
140                 ctsrate, ctsduration, series, 4, 0);
141 }
142
143 /*
144  *  Generate beacon frame and queue cab data for a vap.
145  *
146  *  Updates the contents of the beacon frame.  It is assumed that the buffer for
147  *  the beacon frame has been allocated in the ATH object, and simply needs to
148  *  be filled for this cycle.  Also, any CAB (crap after beacon?) traffic will
149  *  be added to the beacon frame at this point.
150 */
151 static struct ath_buf *ath_beacon_generate(struct ath_softc *sc, int if_id)
152 {
153         struct ath_buf *bf;
154         struct ath_vap *avp;
155         struct sk_buff *skb;
156         int cabq_depth;
157         struct ath_txq *cabq;
158         struct ieee80211_tx_info *info;
159         avp = sc->sc_vaps[if_id];
160
161         cabq = sc->sc_cabq;
162
163         ASSERT(avp);
164
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);
168                 return NULL;
169         }
170         bf = avp->av_bcbuf;
171         skb = (struct sk_buff *) bf->bf_mpdu;
172         if (skb) {
173                 pci_unmap_single(sc->pdev, bf->bf_dmacontext,
174                                  skb_end_pointer(skb) - skb->head,
175                                  PCI_DMA_TODEVICE);
176         }
177
178         skb = ieee80211_beacon_get(sc->hw, avp->av_if_data);
179         bf->bf_mpdu = skb;
180         if (skb == NULL)
181                 return NULL;
182         info = IEEE80211_SKB_CB(skb);
183         if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
184                 /*
185                  * TODO: make sure the seq# gets assigned properly (vs. other
186                  * TX frames)
187                  */
188                 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
189                 sc->seq_no += 0x10;
190                 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
191                 hdr->seq_ctrl |= cpu_to_le16(sc->seq_no);
192         }
193         bf->bf_buf_addr = bf->bf_dmacontext =
194                 pci_map_single(sc->pdev, skb->data,
195                                skb_end_pointer(skb) - skb->head,
196                                PCI_DMA_TODEVICE);
197
198         skb = ieee80211_get_buffered_bc(sc->hw, avp->av_if_data);
199
200         /*
201          * if the CABQ traffic from previous DTIM is pending and the current
202          *  beacon is also a DTIM.
203          *  1) if there is only one vap let the cab traffic continue.
204          *  2) if there are more than one vap and we are using staggered
205          *     beacons, then drain the cabq by dropping all the frames in
206          *     the cabq so that the current vaps cab traffic can be scheduled.
207          */
208         spin_lock_bh(&cabq->axq_lock);
209         cabq_depth = cabq->axq_depth;
210         spin_unlock_bh(&cabq->axq_lock);
211
212         if (skb && cabq_depth) {
213                 /*
214                  * Unlock the cabq lock as ath_tx_draintxq acquires
215                  * the lock again which is a common function and that
216                  * acquires txq lock inside.
217                  */
218                 if (sc->sc_nvaps > 1) {
219                         ath_tx_draintxq(sc, cabq, false);
220                         DPRINTF(sc, ATH_DBG_BEACON,
221                                 "%s: flush previous cabq traffic\n", __func__);
222                 }
223         }
224
225         /* Construct tx descriptor. */
226         ath_beacon_setup(sc, avp, bf);
227
228         /*
229          * Enable the CAB queue before the beacon queue to
230          * insure cab frames are triggered by this beacon.
231          */
232         while (skb) {
233                 ath_tx_cabq(sc, skb);
234                 skb = ieee80211_get_buffered_bc(sc->hw, avp->av_if_data);
235         }
236
237         return bf;
238 }
239
240 /*
241  * Startup beacon transmission for adhoc mode when they are sent entirely
242  * by the hardware using the self-linked descriptor + veol trick.
243 */
244
245 static void ath_beacon_start_adhoc(struct ath_softc *sc, int if_id)
246 {
247         struct ath_hal *ah = sc->sc_ah;
248         struct ath_buf *bf;
249         struct ath_vap *avp;
250         struct sk_buff *skb;
251
252         avp = sc->sc_vaps[if_id];
253         ASSERT(avp);
254
255         if (avp->av_bcbuf == NULL) {
256                 DPRINTF(sc, ATH_DBG_BEACON, "%s: avp=%p av_bcbuf=%p\n",
257                         __func__, avp, avp != NULL ? avp->av_bcbuf : NULL);
258                 return;
259         }
260         bf = avp->av_bcbuf;
261         skb = (struct sk_buff *) bf->bf_mpdu;
262
263         /* Construct tx descriptor. */
264         ath_beacon_setup(sc, avp, bf);
265
266         /* NB: caller is known to have already stopped tx dma */
267         ath9k_hw_puttxbuf(ah, sc->sc_bhalq, bf->bf_daddr);
268         ath9k_hw_txstart(ah, sc->sc_bhalq);
269         DPRINTF(sc, ATH_DBG_BEACON, "%s: TXDP%u = %llx (%p)\n", __func__,
270                 sc->sc_bhalq, ito64(bf->bf_daddr), bf->bf_desc);
271 }
272
273 /*
274  *  Setup a h/w transmit queue for beacons.
275  *
276  *  This function allocates an information structure (struct ath9k_txq_info)
277  *  on the stack, sets some specific parameters (zero out channel width
278  *  min/max, and enable aifs). The info structure does not need to be
279  *  persistant.
280 */
281
282 int ath_beaconq_setup(struct ath_hal *ah)
283 {
284         struct ath9k_tx_queue_info qi;
285
286         memzero(&qi, sizeof(qi));
287         qi.tqi_aifs = 1;
288         qi.tqi_cwmin = 0;
289         qi.tqi_cwmax = 0;
290         /* NB: don't enable any interrupts */
291         return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
292 }
293
294
295 /*
296  *  Allocate and setup an initial beacon frame.
297  *
298  *  Allocate a beacon state variable for a specific VAP instance created on
299  *  the ATH interface.  This routine also calculates the beacon "slot" for
300  *  staggared beacons in the mBSSID case.
301 */
302
303 int ath_beacon_alloc(struct ath_softc *sc, int if_id)
304 {
305         struct ath_vap *avp;
306         struct ieee80211_hdr *wh;
307         struct ath_buf *bf;
308         struct sk_buff *skb;
309
310         avp = sc->sc_vaps[if_id];
311         ASSERT(avp);
312
313         /* Allocate a beacon descriptor if we haven't done so. */
314         if (!avp->av_bcbuf) {
315                 /*
316                  * Allocate beacon state for hostap/ibss.  We know
317                  * a buffer is available.
318                  */
319
320                 avp->av_bcbuf = list_first_entry(&sc->sc_bbuf,
321                                 struct ath_buf, list);
322                 list_del(&avp->av_bcbuf->list);
323
324                 if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP ||
325                     !(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
326                         int slot;
327                         /*
328                          * Assign the vap to a beacon xmit slot. As
329                          * above, this cannot fail to find one.
330                          */
331                         avp->av_bslot = 0;
332                         for (slot = 0; slot < ATH_BCBUF; slot++)
333                                 if (sc->sc_bslot[slot] == ATH_IF_ID_ANY) {
334                                         /*
335                                          * XXX hack, space out slots to better
336                                          * deal with misses
337                                          */
338                                         if (slot+1 < ATH_BCBUF &&
339                                             sc->sc_bslot[slot+1] ==
340                                                 ATH_IF_ID_ANY) {
341                                                 avp->av_bslot = slot+1;
342                                                 break;
343                                         }
344                                         avp->av_bslot = slot;
345                                         /* NB: keep looking for a double slot */
346                                 }
347                         BUG_ON(sc->sc_bslot[avp->av_bslot] != ATH_IF_ID_ANY);
348                         sc->sc_bslot[avp->av_bslot] = if_id;
349                         sc->sc_nbcnvaps++;
350                 }
351         }
352
353         /* release the previous beacon frame , if it already exists. */
354         bf = avp->av_bcbuf;
355         if (bf->bf_mpdu != NULL) {
356                 skb = (struct sk_buff *)bf->bf_mpdu;
357                 pci_unmap_single(sc->pdev, bf->bf_dmacontext,
358                                  skb_end_pointer(skb) - skb->head,
359                                  PCI_DMA_TODEVICE);
360                 dev_kfree_skb_any(skb);
361                 bf->bf_mpdu = NULL;
362         }
363
364         /*
365          * NB: the beacon data buffer must be 32-bit aligned;
366          * we assume the wbuf routines will return us something
367          * with this alignment (perhaps should assert).
368          * FIXME: Fill avp->av_btxctl.txpower and
369          * avp->av_btxctl.shortPreamble
370          */
371         skb = ieee80211_beacon_get(sc->hw, avp->av_if_data);
372         if (skb == NULL) {
373                 DPRINTF(sc, ATH_DBG_BEACON, "%s: cannot get skb\n",
374                         __func__);
375                 return -ENOMEM;
376         }
377
378         /*
379          * Calculate a TSF adjustment factor required for
380          * staggered beacons.  Note that we assume the format
381          * of the beacon frame leaves the tstamp field immediately
382          * following the header.
383          */
384         if (avp->av_bslot > 0) {
385                 u64 tsfadjust;
386                 __le64 val;
387                 int intval;
388
389                 intval = sc->hw->conf.beacon_int ?
390                         sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
391
392                 /*
393                  * The beacon interval is in TU's; the TSF in usecs.
394                  * We figure out how many TU's to add to align the
395                  * timestamp then convert to TSF units and handle
396                  * byte swapping before writing it in the frame.
397                  * The hardware will then add this each time a beacon
398                  * frame is sent.  Note that we align vap's 1..N
399                  * and leave vap 0 untouched.  This means vap 0
400                  * has a timestamp in one beacon interval while the
401                  * others get a timestamp aligned to the next interval.
402                  */
403                 tsfadjust = (intval * (ATH_BCBUF - avp->av_bslot)) / ATH_BCBUF;
404                 val = cpu_to_le64(tsfadjust << 10);     /* TU->TSF */
405
406                 DPRINTF(sc, ATH_DBG_BEACON,
407                         "%s: %s beacons, bslot %d intval %u tsfadjust %llu\n",
408                         __func__, "stagger",
409                         avp->av_bslot, intval, (unsigned long long)tsfadjust);
410
411                 wh = (struct ieee80211_hdr *)skb->data;
412                 memcpy(&wh[1], &val, sizeof(val));
413         }
414
415         bf->bf_buf_addr = bf->bf_dmacontext =
416                 pci_map_single(sc->pdev, skb->data,
417                                skb_end_pointer(skb) - skb->head,
418                                PCI_DMA_TODEVICE);
419         bf->bf_mpdu = skb;
420
421         return 0;
422 }
423
424 /*
425  *  Reclaim beacon resources and return buffer to the pool.
426  *
427  *  Checks the VAP to put the beacon frame buffer back to the ATH object
428  *  queue, and de-allocates any wbuf frames that were sent as CAB traffic.
429 */
430
431 void ath_beacon_return(struct ath_softc *sc, struct ath_vap *avp)
432 {
433         if (avp->av_bcbuf != NULL) {
434                 struct ath_buf *bf;
435
436                 if (avp->av_bslot != -1) {
437                         sc->sc_bslot[avp->av_bslot] = ATH_IF_ID_ANY;
438                         sc->sc_nbcnvaps--;
439                 }
440
441                 bf = avp->av_bcbuf;
442                 if (bf->bf_mpdu != NULL) {
443                         struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
444                         pci_unmap_single(sc->pdev, bf->bf_dmacontext,
445                                          skb_end_pointer(skb) - skb->head,
446                                          PCI_DMA_TODEVICE);
447                         dev_kfree_skb_any(skb);
448                         bf->bf_mpdu = NULL;
449                 }
450                 list_add_tail(&bf->list, &sc->sc_bbuf);
451
452                 avp->av_bcbuf = NULL;
453         }
454 }
455
456 /*
457  * Tasklet for Sending Beacons
458  *
459  * Transmit one or more beacon frames at SWBA.  Dynamic updates to the frame
460  * contents are done as needed and the slot time is also adjusted based on
461  * current state.
462  *
463  * This tasklet is not scheduled, it's called in ISR context.
464 */
465
466 void ath9k_beacon_tasklet(unsigned long data)
467 {
468         struct ath_softc *sc = (struct ath_softc *)data;
469         struct ath_hal *ah = sc->sc_ah;
470         struct ath_buf *bf = NULL;
471         int slot, if_id;
472         u32 bfaddr;
473         u32 rx_clear = 0, rx_frame = 0, tx_frame = 0;
474         u32 show_cycles = 0;
475         u32 bc = 0; /* beacon count */
476         u64 tsf;
477         u32 tsftu;
478         u16 intval;
479
480         if (sc->sc_flags & SC_OP_NO_RESET) {
481                 show_cycles = ath9k_hw_GetMibCycleCountsPct(ah,
482                                                             &rx_clear,
483                                                             &rx_frame,
484                                                             &tx_frame);
485         }
486
487         /*
488          * Check if the previous beacon has gone out.  If
489          * not don't try to post another, skip this period
490          * and wait for the next.  Missed beacons indicate
491          * a problem and should not occur.  If we miss too
492          * many consecutive beacons reset the device.
493          */
494         if (ath9k_hw_numtxpending(ah, sc->sc_bhalq) != 0) {
495                 sc->sc_bmisscount++;
496                 /* XXX: doth needs the chanchange IE countdown decremented.
497                  *      We should consider adding a mac80211 call to indicate
498                  *      a beacon miss so appropriate action could be taken
499                  *      (in that layer).
500                  */
501                 if (sc->sc_bmisscount < BSTUCK_THRESH) {
502                         if (sc->sc_flags & SC_OP_NO_RESET) {
503                                 DPRINTF(sc, ATH_DBG_BEACON,
504                                         "%s: missed %u consecutive beacons\n",
505                                         __func__, sc->sc_bmisscount);
506                                 if (show_cycles) {
507                                         /*
508                                          * Display cycle counter stats
509                                          * from HW to aide in debug of
510                                          * stickiness.
511                                          */
512                                         DPRINTF(sc,
513                                                 ATH_DBG_BEACON,
514                                                 "%s: busy times: rx_clear=%d, "
515                                                 "rx_frame=%d, tx_frame=%d\n",
516                                                 __func__, rx_clear, rx_frame,
517                                                 tx_frame);
518                                 } else {
519                                         DPRINTF(sc,
520                                                 ATH_DBG_BEACON,
521                                                 "%s: unable to obtain "
522                                                 "busy times\n", __func__);
523                                 }
524                         } else {
525                                 DPRINTF(sc, ATH_DBG_BEACON,
526                                         "%s: missed %u consecutive beacons\n",
527                                         __func__, sc->sc_bmisscount);
528                         }
529                 } else if (sc->sc_bmisscount >= BSTUCK_THRESH) {
530                         if (sc->sc_flags & SC_OP_NO_RESET) {
531                                 if (sc->sc_bmisscount == BSTUCK_THRESH) {
532                                         DPRINTF(sc,
533                                                 ATH_DBG_BEACON,
534                                                 "%s: beacon is officially "
535                                                 "stuck\n", __func__);
536                                         ath9k_hw_dmaRegDump(ah);
537                                 }
538                         } else {
539                                 DPRINTF(sc, ATH_DBG_BEACON,
540                                         "%s: beacon is officially stuck\n",
541                                         __func__);
542                                 ath_bstuck_process(sc);
543                         }
544                 }
545
546                 return;
547         }
548         if (sc->sc_bmisscount != 0) {
549                 if (sc->sc_flags & SC_OP_NO_RESET) {
550                         DPRINTF(sc,
551                                 ATH_DBG_BEACON,
552                                 "%s: resume beacon xmit after %u misses\n",
553                                 __func__, sc->sc_bmisscount);
554                 } else {
555                         DPRINTF(sc, ATH_DBG_BEACON,
556                                 "%s: resume beacon xmit after %u misses\n",
557                                 __func__, sc->sc_bmisscount);
558                 }
559                 sc->sc_bmisscount = 0;
560         }
561
562         /*
563          * Generate beacon frames. we are sending frames
564          * staggered so calculate the slot for this frame based
565          * on the tsf to safeguard against missing an swba.
566          */
567
568         intval = sc->hw->conf.beacon_int ?
569                 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
570
571         tsf = ath9k_hw_gettsf64(ah);
572         tsftu = TSF_TO_TU(tsf>>32, tsf);
573         slot = ((tsftu % intval) * ATH_BCBUF) / intval;
574         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,
578                         intval, if_id);
579         bfaddr = 0;
580         if (if_id != ATH_IF_ID_ANY) {
581                 bf = ath_beacon_generate(sc, if_id);
582                 if (bf != NULL) {
583                         bfaddr = bf->bf_daddr;
584                         bc = 1;
585                 }
586         }
587         /*
588          * Handle slot time change when a non-ERP station joins/leaves
589          * an 11g network.  The 802.11 layer notifies us via callback,
590          * we mark updateslot, then wait one beacon before effecting
591          * the change.  This gives associated stations at least one
592          * beacon interval to note the state change.
593          *
594          * NB: The slot time change state machine is clocked according
595          *     to whether we are bursting or staggering beacons.  We
596          *     recognize the request to update and record the current
597          *     slot then don't transition until that slot is reached
598          *     again.  If we miss a beacon for that slot then we'll be
599          *     slow to transition but we'll be sure at least one beacon
600          *     interval has passed.  When bursting slot is always left
601          *     set to ATH_BCBUF so this check is a noop.
602          */
603         /* XXX locking */
604         if (sc->sc_updateslot == UPDATE) {
605                 sc->sc_updateslot = COMMIT; /* commit next beacon */
606                 sc->sc_slotupdate = slot;
607         } else if (sc->sc_updateslot == COMMIT && sc->sc_slotupdate == slot)
608                 ath_setslottime(sc);        /* commit change to hardware */
609
610         if (bfaddr != 0) {
611                 /*
612                  * Stop any current dma and put the new frame(s) on the queue.
613                  * This should never fail since we check above that no frames
614                  * are still pending on the queue.
615                  */
616                 if (!ath9k_hw_stoptxdma(ah, sc->sc_bhalq)) {
617                         DPRINTF(sc, ATH_DBG_FATAL,
618                                 "%s: beacon queue %u did not stop?\n",
619                                 __func__, sc->sc_bhalq);
620                         /* NB: the HAL still stops DMA, so proceed */
621                 }
622
623                 /* NB: cabq traffic should already be queued and primed */
624                 ath9k_hw_puttxbuf(ah, sc->sc_bhalq, bfaddr);
625                 ath9k_hw_txstart(ah, sc->sc_bhalq);
626
627                 sc->ast_be_xmit += bc;     /* XXX per-vap? */
628         }
629 }
630
631 /*
632  *  Tasklet for Beacon Stuck processing
633  *
634  *  Processing for Beacon Stuck.
635  *  Basically calls the ath_internal_reset function to reset the chip.
636 */
637
638 void ath_bstuck_process(struct ath_softc *sc)
639 {
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);
644 }
645
646 /*
647  * Configure the beacon and sleep timers.
648  *
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.
651  *
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.
660  */
661
662 void ath_beacon_config(struct ath_softc *sc, int if_id)
663 {
664         struct ath_hal *ah = sc->sc_ah;
665         u32 nexttbtt, intval;
666         struct ath_beacon_config conf;
667         enum ath9k_opmode av_opmode;
668
669         if (if_id != ATH_IF_ID_ANY)
670                 av_opmode = sc->sc_vaps[if_id]->av_opmode;
671         else
672                 av_opmode = sc->sc_ah->ah_opmode;
673
674         memzero(&conf, sizeof(struct ath_beacon_config));
675
676         /* FIXME: Use default values for now - Sujith */
677         /* Query beacon configuration first */
678         /*
679          * Protocol stack doesn't support dynamic beacon configuration,
680          * use default configurations.
681          */
682         conf.beacon_interval = sc->hw->conf.beacon_int ?
683                 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
684         conf.listen_interval = 1;
685         conf.dtim_period = conf.beacon_interval;
686         conf.dtim_count = 1;
687         conf.bmiss_timeout = ATH_DEFAULT_BMISS_LIMIT * conf.beacon_interval;
688
689         /* extract tstamp from last beacon and convert to TU */
690         nexttbtt = TSF_TO_TU(get_unaligned_le32(conf.u.last_tstamp + 4),
691                              get_unaligned_le32(conf.u.last_tstamp));
692         /* XXX conditionalize multi-bss support? */
693         if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) {
694                 /*
695                  * For multi-bss ap support beacons are either staggered
696                  * evenly over N slots or burst together.  For the former
697                  * arrange for the SWBA to be delivered for each slot.
698                  * Slots that are not occupied will generate nothing.
699                  */
700                 /* NB: the beacon interval is kept internally in TU's */
701                 intval = conf.beacon_interval & ATH9K_BEACON_PERIOD;
702                 intval /= ATH_BCBUF;    /* for staggered beacons */
703         } else {
704                 intval = conf.beacon_interval & ATH9K_BEACON_PERIOD;
705         }
706
707         if (nexttbtt == 0)      /* e.g. for ap mode */
708                 nexttbtt = intval;
709         else if (intval)        /* NB: can be 0 for monitor mode */
710                 nexttbtt = roundup(nexttbtt, intval);
711         DPRINTF(sc, ATH_DBG_BEACON, "%s: nexttbtt %u intval %u (%u)\n",
712                 __func__, nexttbtt, intval, conf.beacon_interval);
713         /* Check for ATH9K_M_HOSTAP and sc_nostabeacons for WDS client */
714         if (sc->sc_ah->ah_opmode == ATH9K_M_STA) {
715                 struct ath9k_beacon_state bs;
716                 u64 tsf;
717                 u32 tsftu;
718                 int dtimperiod, dtimcount, sleepduration;
719                 int cfpperiod, cfpcount;
720
721                 /*
722                  * Setup dtim and cfp parameters according to
723                  * last beacon we received (which may be none).
724                  */
725                 dtimperiod = conf.dtim_period;
726                 if (dtimperiod <= 0)        /* NB: 0 if not known */
727                         dtimperiod = 1;
728                 dtimcount = conf.dtim_count;
729                 if (dtimcount >= dtimperiod)    /* NB: sanity check */
730                         dtimcount = 0;      /* XXX? */
731                 cfpperiod = 1;          /* NB: no PCF support yet */
732                 cfpcount = 0;
733
734                 sleepduration = conf.listen_interval * intval;
735                 if (sleepduration <= 0)
736                         sleepduration = intval;
737
738 #define FUDGE   2
739                 /*
740                  * Pull nexttbtt forward to reflect the current
741                  * TSF and calculate dtim+cfp state for the result.
742                  */
743                 tsf = ath9k_hw_gettsf64(ah);
744                 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
745                 do {
746                         nexttbtt += intval;
747                         if (--dtimcount < 0) {
748                                 dtimcount = dtimperiod - 1;
749                                 if (--cfpcount < 0)
750                                         cfpcount = cfpperiod - 1;
751                         }
752                 } while (nexttbtt < tsftu);
753 #undef FUDGE
754                 memzero(&bs, sizeof(bs));
755                 bs.bs_intval = intval;
756                 bs.bs_nexttbtt = nexttbtt;
757                 bs.bs_dtimperiod = dtimperiod*intval;
758                 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
759                 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
760                 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
761                 bs.bs_cfpmaxduration = 0;
762                 /*
763                  * Calculate the number of consecutive beacons to miss
764                  * before taking a BMISS interrupt.  The configuration
765                  * is specified in TU so we only need calculate based
766                  * on the beacon interval.  Note that we clamp the
767                  * result to at most 15 beacons.
768                  */
769                 if (sleepduration > intval) {
770                         bs.bs_bmissthreshold =
771                                 conf.listen_interval *
772                                         ATH_DEFAULT_BMISS_LIMIT / 2;
773                 } else {
774                         bs.bs_bmissthreshold =
775                                 DIV_ROUND_UP(conf.bmiss_timeout, intval);
776                         if (bs.bs_bmissthreshold > 15)
777                                 bs.bs_bmissthreshold = 15;
778                         else if (bs.bs_bmissthreshold <= 0)
779                                 bs.bs_bmissthreshold = 1;
780                 }
781
782                 /*
783                  * Calculate sleep duration.  The configuration is
784                  * given in ms.  We insure a multiple of the beacon
785                  * period is used.  Also, if the sleep duration is
786                  * greater than the DTIM period then it makes senses
787                  * to make it a multiple of that.
788                  *
789                  * XXX fixed at 100ms
790                  */
791
792                 bs.bs_sleepduration =
793                         roundup(IEEE80211_MS_TO_TU(100), sleepduration);
794                 if (bs.bs_sleepduration > bs.bs_dtimperiod)
795                         bs.bs_sleepduration = bs.bs_dtimperiod;
796
797                 DPRINTF(sc, ATH_DBG_BEACON,
798                         "%s: tsf %llu "
799                         "tsf:tu %u "
800                         "intval %u "
801                         "nexttbtt %u "
802                         "dtim %u "
803                         "nextdtim %u "
804                         "bmiss %u "
805                         "sleep %u "
806                         "cfp:period %u "
807                         "maxdur %u "
808                         "next %u "
809                         "timoffset %u\n",
810                         __func__,
811                         (unsigned long long)tsf, tsftu,
812                         bs.bs_intval,
813                         bs.bs_nexttbtt,
814                         bs.bs_dtimperiod,
815                         bs.bs_nextdtim,
816                         bs.bs_bmissthreshold,
817                         bs.bs_sleepduration,
818                         bs.bs_cfpperiod,
819                         bs.bs_cfpmaxduration,
820                         bs.bs_cfpnext,
821                         bs.bs_timoffset
822                         );
823
824                 ath9k_hw_set_interrupts(ah, 0);
825                 ath9k_hw_set_sta_beacon_timers(ah, &bs);
826                 sc->sc_imask |= ATH9K_INT_BMISS;
827                 ath9k_hw_set_interrupts(ah, sc->sc_imask);
828         } else {
829                 u64 tsf;
830                 u32 tsftu;
831                 ath9k_hw_set_interrupts(ah, 0);
832                 if (nexttbtt == intval)
833                         intval |= ATH9K_BEACON_RESET_TSF;
834                 if (sc->sc_ah->ah_opmode == ATH9K_M_IBSS) {
835                         /*
836                          * Pull nexttbtt forward to reflect the current
837                          * TSF .
838                          */
839 #define FUDGE   2
840                         if (!(intval & ATH9K_BEACON_RESET_TSF)) {
841                                 tsf = ath9k_hw_gettsf64(ah);
842                                 tsftu = TSF_TO_TU((u32)(tsf>>32),
843                                         (u32)tsf) + FUDGE;
844                                 do {
845                                         nexttbtt += intval;
846                                 } while (nexttbtt < tsftu);
847                         }
848 #undef FUDGE
849                         DPRINTF(sc, ATH_DBG_BEACON,
850                                 "%s: IBSS nexttbtt %u intval %u (%u)\n",
851                                 __func__, nexttbtt,
852                                 intval & ~ATH9K_BEACON_RESET_TSF,
853                                 conf.beacon_interval);
854
855                         /*
856                          * In IBSS mode enable the beacon timers but only
857                          * enable SWBA interrupts if we need to manually
858                          * prepare beacon frames.  Otherwise we use a
859                          * self-linked tx descriptor and let the hardware
860                          * deal with things.
861                          */
862                         intval |= ATH9K_BEACON_ENA;
863                         if (!(ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL))
864                                 sc->sc_imask |= ATH9K_INT_SWBA;
865                         ath_beaconq_config(sc);
866                 } else if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) {
867                         /*
868                          * In AP mode we enable the beacon timers and
869                          * SWBA interrupts to prepare beacon frames.
870                          */
871                         intval |= ATH9K_BEACON_ENA;
872                         sc->sc_imask |= ATH9K_INT_SWBA;   /* beacon prepare */
873                         ath_beaconq_config(sc);
874                 }
875                 ath9k_hw_beaconinit(ah, nexttbtt, intval);
876                 sc->sc_bmisscount = 0;
877                 ath9k_hw_set_interrupts(ah, sc->sc_imask);
878                 /*
879                  * When using a self-linked beacon descriptor in
880                  * ibss mode load it once here.
881                  */
882                 if (sc->sc_ah->ah_opmode == ATH9K_M_IBSS &&
883                     (ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL))
884                         ath_beacon_start_adhoc(sc, 0);
885         }
886 }
887
888 /* Function to collect beacon rssi data and resync beacon if necessary */
889
890 void ath_beacon_sync(struct ath_softc *sc, int if_id)
891 {
892         /*
893          * Resync beacon timers using the tsf of the
894          * beacon frame we just received.
895          */
896         ath_beacon_config(sc, if_id);
897         sc->sc_flags |= SC_OP_BEACONS;
898 }