blob: c3044891a935e2db6839d9e95f448ddcf72ff67e [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
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
Sujith394cf0a2009-02-09 13:26:54 +053017#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070018
19/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070020 * This function will modify certain transmit queue properties depending on
21 * the operating mode of the station (AP or AdHoc). Parameters are AIFS
22 * settings and channel width min/max
23*/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024static int ath_beaconq_config(struct ath_softc *sc)
25{
Sujithcbe61d82009-02-09 13:27:12 +053026 struct ath_hw *ah = sc->sc_ah;
Sujithea9880f2008-08-07 10:53:10 +053027 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070028
Sujithb77f4832008-12-07 21:44:03 +053029 ath9k_hw_get_txq_props(ah, sc->beacon.beaconq, &qi);
Sujith2660b812009-02-09 13:27:26 +053030 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070031 /* Always burst out beacon and CAB traffic. */
32 qi.tqi_aifs = 1;
33 qi.tqi_cwmin = 0;
34 qi.tqi_cwmax = 0;
35 } else {
36 /* Adhoc mode; important thing is to use 2x cwmin. */
Sujithb77f4832008-12-07 21:44:03 +053037 qi.tqi_aifs = sc->beacon.beacon_qi.tqi_aifs;
38 qi.tqi_cwmin = 2*sc->beacon.beacon_qi.tqi_cwmin;
39 qi.tqi_cwmax = sc->beacon.beacon_qi.tqi_cwmax;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070040 }
41
Sujithb77f4832008-12-07 21:44:03 +053042 if (!ath9k_hw_set_txq_props(ah, sc->beacon.beaconq, &qi)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070043 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +053044 "unable to update h/w beacon queue parameters\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070045 return 0;
46 } else {
Sujith9fc9ab02009-03-03 10:16:51 +053047 ath9k_hw_resettxqueue(ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070048 return 1;
49 }
50}
51
Sujithff37e332008-11-24 12:07:55 +053052static void ath_bstuck_process(struct ath_softc *sc)
53{
Sujith9fc9ab02009-03-03 10:16:51 +053054 DPRINTF(sc, ATH_DBG_BEACON, "stuck beacon; resetting (bmiss count %u)\n",
Sujithb77f4832008-12-07 21:44:03 +053055 sc->beacon.bmisscnt);
Sujithff37e332008-11-24 12:07:55 +053056 ath_reset(sc, false);
57}
58
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070059/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070060 * 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.
63*/
Sujith9fc9ab02009-03-03 10:16:51 +053064static void ath_beacon_setup(struct ath_softc *sc, struct ath_vif *avp,
65 struct ath_buf *bf)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070066{
67 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
Sujithcbe61d82009-02-09 13:27:12 +053068 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070069 struct ath_desc *ds;
Sujith980b24d2008-09-17 10:15:09 +053070 struct ath9k_11n_rate_series series[4];
Sujithe63835b2008-11-18 09:07:53 +053071 struct ath_rate_table *rt;
Sujith9fc9ab02009-03-03 10:16:51 +053072 int flags, antenna, ctsrate = 0, ctsduration = 0;
73 u8 rate;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070074
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070075 ds = bf->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070076 flags = ATH9K_TXDESC_NOACK;
77
Sujith2660b812009-02-09 13:27:26 +053078 if (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC &&
79 (ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070080 ds->ds_link = bf->bf_daddr; /* self-linked */
81 flags |= ATH9K_TXDESC_VEOL;
82 /* Let hardware handle antenna switching. */
83 antenna = 0;
84 } else {
85 ds->ds_link = 0;
86 /*
87 * Switch antenna every beacon.
Sujith9fc9ab02009-03-03 10:16:51 +053088 * Should only switch every beacon period, not for every SWBA
89 * XXX assumes two antennae
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070090 */
Sujith17d79042009-02-09 13:27:03 +053091 antenna = ((sc->beacon.ast_be_xmit / sc->nbcnvifs) & 1 ? 2 : 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070092 }
93
94 ds->ds_data = bf->bf_buf_addr;
95
Sujith3706de62008-12-07 21:42:10 +053096 rt = sc->cur_rate_table;
Sujith9fc9ab02009-03-03 10:16:51 +053097 rate = rt->info[0].ratecode;
Sujith672840a2008-08-11 14:05:08 +053098 if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
Sujith9fc9ab02009-03-03 10:16:51 +053099 rate |= rt->info[0].short_preamble;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700100
Sujith9fc9ab02009-03-03 10:16:51 +0530101 ath9k_hw_set11n_txdesc(ah, ds, skb->len + FCS_LEN,
102 ATH9K_PKT_TYPE_BEACON,
103 MAX_RATE_POWER,
104 ATH9K_TXKEYIX_INVALID,
105 ATH9K_KEY_TYPE_CLEAR,
106 flags);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700107
108 /* NB: beacon's BufLen must be a multiple of 4 bytes */
Sujith9fc9ab02009-03-03 10:16:51 +0530109 ath9k_hw_filltxdesc(ah, ds, roundup(skb->len, 4),
110 true, true, ds);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700111
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700112 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700113 series[0].Tries = 1;
114 series[0].Rate = rate;
Sujith17d79042009-02-09 13:27:03 +0530115 series[0].ChSel = sc->tx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700116 series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0;
Sujith9fc9ab02009-03-03 10:16:51 +0530117 ath9k_hw_set11n_ratescenario(ah, ds, ds, 0, ctsrate, ctsduration,
118 series, 4, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700119}
120
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700121static struct ath_buf *ath_beacon_generate(struct ath_softc *sc, int if_id)
122{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700123 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530124 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700125 struct sk_buff *skb;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700126 struct ath_txq *cabq;
Sujith5640b082008-10-29 10:16:06 +0530127 struct ieee80211_vif *vif;
Jouni Malinen147583c2008-08-11 14:01:50 +0300128 struct ieee80211_tx_info *info;
Sujith980b24d2008-09-17 10:15:09 +0530129 int cabq_depth;
130
Sujith17d79042009-02-09 13:27:03 +0530131 vif = sc->vifs[if_id];
Sujith5640b082008-10-29 10:16:06 +0530132 avp = (void *)vif->drv_priv;
Sujithb77f4832008-12-07 21:44:03 +0530133 cabq = sc->beacon.cabq;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700134
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700135 if (avp->av_bcbuf == NULL) {
Sujith04bd4632008-11-28 22:18:05 +0530136 DPRINTF(sc, ATH_DBG_BEACON, "avp=%p av_bcbuf=%p\n",
137 avp, avp->av_bcbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700138 return NULL;
139 }
Sujith980b24d2008-09-17 10:15:09 +0530140
Sujith9fc9ab02009-03-03 10:16:51 +0530141 /* Release the old beacon first */
142
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700143 bf = avp->av_bcbuf;
Sujith980b24d2008-09-17 10:15:09 +0530144 skb = (struct sk_buff *)bf->bf_mpdu;
Jouni Malinena8fff502008-08-11 14:01:48 +0300145 if (skb) {
Gabor Juhos7da3c552009-01-14 20:17:03 +0100146 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530147 skb->len, DMA_TO_DEVICE);
Jouni Malinen3fbb9d92008-12-05 20:42:45 +0200148 dev_kfree_skb_any(skb);
Jouni Malinena8fff502008-08-11 14:01:48 +0300149 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700150
Sujith9fc9ab02009-03-03 10:16:51 +0530151 /* Get a new beacon from mac80211 */
152
Sujith5640b082008-10-29 10:16:06 +0530153 skb = ieee80211_beacon_get(sc->hw, vif);
Jouni Malinena8fff502008-08-11 14:01:48 +0300154 bf->bf_mpdu = skb;
155 if (skb == NULL)
156 return NULL;
Sujith980b24d2008-09-17 10:15:09 +0530157
Jouni Malinen147583c2008-08-11 14:01:50 +0300158 info = IEEE80211_SKB_CB(skb);
159 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
160 /*
161 * TODO: make sure the seq# gets assigned properly (vs. other
162 * TX frames)
163 */
Sujith980b24d2008-09-17 10:15:09 +0530164 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithb77f4832008-12-07 21:44:03 +0530165 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +0300166 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +0530167 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +0300168 }
Sujith980b24d2008-09-17 10:15:09 +0530169
Jouni Malinena8fff502008-08-11 14:01:48 +0300170 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100171 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530172 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100173 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800174 dev_kfree_skb_any(skb);
175 bf->bf_mpdu = NULL;
Sujith9fc9ab02009-03-03 10:16:51 +0530176 DPRINTF(sc, ATH_DBG_FATAL, "dma_mapping_error on beaconing\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800177 return NULL;
178 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700179
Sujith5640b082008-10-29 10:16:06 +0530180 skb = ieee80211_get_buffered_bc(sc->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700181
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700182 /*
183 * if the CABQ traffic from previous DTIM is pending and the current
184 * beacon is also a DTIM.
Sujith17d79042009-02-09 13:27:03 +0530185 * 1) if there is only one vif let the cab traffic continue.
186 * 2) if there are more than one vif and we are using staggered
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700187 * beacons, then drain the cabq by dropping all the frames in
Sujith17d79042009-02-09 13:27:03 +0530188 * the cabq so that the current vifs cab traffic can be scheduled.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700189 */
190 spin_lock_bh(&cabq->axq_lock);
191 cabq_depth = cabq->axq_depth;
192 spin_unlock_bh(&cabq->axq_lock);
193
Jouni Malinene022edb2008-08-22 17:31:33 +0300194 if (skb && cabq_depth) {
Sujith17d79042009-02-09 13:27:03 +0530195 if (sc->nvifs > 1) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700196 DPRINTF(sc, ATH_DBG_BEACON,
Sujith9fc9ab02009-03-03 10:16:51 +0530197 "Flushing previous cabq traffic\n");
198 ath_draintxq(sc, cabq, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700199 }
200 }
201
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700202 ath_beacon_setup(sc, avp, bf);
203
Jouni Malinene022edb2008-08-22 17:31:33 +0300204 while (skb) {
205 ath_tx_cabq(sc, skb);
Sujith5640b082008-10-29 10:16:06 +0530206 skb = ieee80211_get_buffered_bc(sc->hw, vif);
Jouni Malinene022edb2008-08-22 17:31:33 +0300207 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700208
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700209 return bf;
210}
211
212/*
213 * Startup beacon transmission for adhoc mode when they are sent entirely
214 * by the hardware using the self-linked descriptor + veol trick.
215*/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700216static void ath_beacon_start_adhoc(struct ath_softc *sc, int if_id)
217{
Sujith5640b082008-10-29 10:16:06 +0530218 struct ieee80211_vif *vif;
Sujithcbe61d82009-02-09 13:27:12 +0530219 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700220 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530221 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700222 struct sk_buff *skb;
223
Sujith17d79042009-02-09 13:27:03 +0530224 vif = sc->vifs[if_id];
Sujith5640b082008-10-29 10:16:06 +0530225 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700226
Sujith9fc9ab02009-03-03 10:16:51 +0530227 if (avp->av_bcbuf == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700228 return;
Sujith9fc9ab02009-03-03 10:16:51 +0530229
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700230 bf = avp->av_bcbuf;
231 skb = (struct sk_buff *) bf->bf_mpdu;
232
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700233 ath_beacon_setup(sc, avp, bf);
234
235 /* NB: caller is known to have already stopped tx dma */
Sujithb77f4832008-12-07 21:44:03 +0530236 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bf->bf_daddr);
237 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Sujith04bd4632008-11-28 22:18:05 +0530238 DPRINTF(sc, ATH_DBG_BEACON, "TXDP%u = %llx (%p)\n",
Sujithb77f4832008-12-07 21:44:03 +0530239 sc->beacon.beaconq, ito64(bf->bf_daddr), bf->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700240}
241
Sujithcbe61d82009-02-09 13:27:12 +0530242int ath_beaconq_setup(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700243{
Sujithea9880f2008-08-07 10:53:10 +0530244 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700245
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700246 memset(&qi, 0, sizeof(qi));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700247 qi.tqi_aifs = 1;
248 qi.tqi_cwmin = 0;
249 qi.tqi_cwmax = 0;
250 /* NB: don't enable any interrupts */
251 return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
252}
253
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700254int ath_beacon_alloc(struct ath_softc *sc, int if_id)
255{
Sujith5640b082008-10-29 10:16:06 +0530256 struct ieee80211_vif *vif;
Sujith17d79042009-02-09 13:27:03 +0530257 struct ath_vif *avp;
Sujith980b24d2008-09-17 10:15:09 +0530258 struct ieee80211_hdr *hdr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700259 struct ath_buf *bf;
260 struct sk_buff *skb;
Sujith459f5f92008-09-17 10:15:36 +0530261 __le64 tstamp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700262
Sujith17d79042009-02-09 13:27:03 +0530263 vif = sc->vifs[if_id];
Sujith5640b082008-10-29 10:16:06 +0530264 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700265
266 /* Allocate a beacon descriptor if we haven't done so. */
267 if (!avp->av_bcbuf) {
Sujith980b24d2008-09-17 10:15:09 +0530268 /* Allocate beacon state for hostap/ibss. We know
269 * a buffer is available. */
Sujithb77f4832008-12-07 21:44:03 +0530270 avp->av_bcbuf = list_first_entry(&sc->beacon.bbuf,
Sujith980b24d2008-09-17 10:15:09 +0530271 struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700272 list_del(&avp->av_bcbuf->list);
273
Sujith2660b812009-02-09 13:27:26 +0530274 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP ||
275 !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700276 int slot;
277 /*
Sujith17d79042009-02-09 13:27:03 +0530278 * Assign the vif to a beacon xmit slot. As
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700279 * above, this cannot fail to find one.
280 */
281 avp->av_bslot = 0;
282 for (slot = 0; slot < ATH_BCBUF; slot++)
Sujithb77f4832008-12-07 21:44:03 +0530283 if (sc->beacon.bslot[slot] == ATH_IF_ID_ANY) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700284 /*
285 * XXX hack, space out slots to better
286 * deal with misses
287 */
288 if (slot+1 < ATH_BCBUF &&
Sujithb77f4832008-12-07 21:44:03 +0530289 sc->beacon.bslot[slot+1] ==
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700290 ATH_IF_ID_ANY) {
291 avp->av_bslot = slot+1;
292 break;
293 }
294 avp->av_bslot = slot;
295 /* NB: keep looking for a double slot */
296 }
Sujithb77f4832008-12-07 21:44:03 +0530297 BUG_ON(sc->beacon.bslot[avp->av_bslot] != ATH_IF_ID_ANY);
298 sc->beacon.bslot[avp->av_bslot] = if_id;
Sujith17d79042009-02-09 13:27:03 +0530299 sc->nbcnvifs++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700300 }
301 }
302
Sujith9fc9ab02009-03-03 10:16:51 +0530303 /* release the previous beacon frame, if it already exists. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700304 bf = avp->av_bcbuf;
305 if (bf->bf_mpdu != NULL) {
306 skb = (struct sk_buff *)bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100307 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530308 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700309 dev_kfree_skb_any(skb);
310 bf->bf_mpdu = NULL;
311 }
312
Sujith9fc9ab02009-03-03 10:16:51 +0530313 /* NB: the beacon data buffer must be 32-bit aligned. */
Sujith5640b082008-10-29 10:16:06 +0530314 skb = ieee80211_beacon_get(sc->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700315 if (skb == NULL) {
Sujith04bd4632008-11-28 22:18:05 +0530316 DPRINTF(sc, ATH_DBG_BEACON, "cannot get skb\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700317 return -ENOMEM;
318 }
319
Sujith459f5f92008-09-17 10:15:36 +0530320 tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Sujithb77f4832008-12-07 21:44:03 +0530321 sc->beacon.bc_tstamp = le64_to_cpu(tstamp);
Sujith459f5f92008-09-17 10:15:36 +0530322
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700323 /*
324 * Calculate a TSF adjustment factor required for
325 * staggered beacons. Note that we assume the format
326 * of the beacon frame leaves the tstamp field immediately
327 * following the header.
328 */
329 if (avp->av_bslot > 0) {
330 u64 tsfadjust;
331 __le64 val;
332 int intval;
333
Jouni Malinena8fff502008-08-11 14:01:48 +0300334 intval = sc->hw->conf.beacon_int ?
335 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700336
337 /*
338 * The beacon interval is in TU's; the TSF in usecs.
339 * We figure out how many TU's to add to align the
340 * timestamp then convert to TSF units and handle
341 * byte swapping before writing it in the frame.
342 * The hardware will then add this each time a beacon
Sujith17d79042009-02-09 13:27:03 +0530343 * frame is sent. Note that we align vif's 1..N
344 * and leave vif 0 untouched. This means vap 0
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700345 * has a timestamp in one beacon interval while the
346 * others get a timestamp aligned to the next interval.
347 */
348 tsfadjust = (intval * (ATH_BCBUF - avp->av_bslot)) / ATH_BCBUF;
349 val = cpu_to_le64(tsfadjust << 10); /* TU->TSF */
350
351 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530352 "stagger beacons, bslot %d intval %u tsfadjust %llu\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700353 avp->av_bslot, intval, (unsigned long long)tsfadjust);
354
Sujith980b24d2008-09-17 10:15:09 +0530355 hdr = (struct ieee80211_hdr *)skb->data;
356 memcpy(&hdr[1], &val, sizeof(val));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700357 }
358
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800359 bf->bf_mpdu = skb;
Jouni Malinena8fff502008-08-11 14:01:48 +0300360 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100361 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530362 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100363 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800364 dev_kfree_skb_any(skb);
365 bf->bf_mpdu = NULL;
Sujith9fc9ab02009-03-03 10:16:51 +0530366 DPRINTF(sc, ATH_DBG_FATAL,
367 "dma_mapping_error on beacon alloc\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800368 return -ENOMEM;
369 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700370
371 return 0;
372}
373
Sujith17d79042009-02-09 13:27:03 +0530374void ath_beacon_return(struct ath_softc *sc, struct ath_vif *avp)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700375{
376 if (avp->av_bcbuf != NULL) {
377 struct ath_buf *bf;
378
379 if (avp->av_bslot != -1) {
Sujithb77f4832008-12-07 21:44:03 +0530380 sc->beacon.bslot[avp->av_bslot] = ATH_IF_ID_ANY;
Sujith17d79042009-02-09 13:27:03 +0530381 sc->nbcnvifs--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700382 }
383
384 bf = avp->av_bcbuf;
385 if (bf->bf_mpdu != NULL) {
386 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100387 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530388 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700389 dev_kfree_skb_any(skb);
390 bf->bf_mpdu = NULL;
391 }
Sujithb77f4832008-12-07 21:44:03 +0530392 list_add_tail(&bf->list, &sc->beacon.bbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700393
394 avp->av_bcbuf = NULL;
395 }
396}
397
Sujith9fc9ab02009-03-03 10:16:51 +0530398void ath_beacon_tasklet(unsigned long data)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700399{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700400 struct ath_softc *sc = (struct ath_softc *)data;
Sujithcbe61d82009-02-09 13:27:12 +0530401 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700402 struct ath_buf *bf = NULL;
403 int slot, if_id;
Sujith9fc9ab02009-03-03 10:16:51 +0530404 u32 bfaddr, show_cycles = 0, bc = 0, tsftu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700405 u32 rx_clear = 0, rx_frame = 0, tx_frame = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700406 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700407 u16 intval;
408
Sujith98deeea2008-08-11 14:05:46 +0530409 if (sc->sc_flags & SC_OP_NO_RESET) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700410 show_cycles = ath9k_hw_GetMibCycleCountsPct(ah,
Sujithff37e332008-11-24 12:07:55 +0530411 &rx_clear, &rx_frame, &tx_frame);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700412 }
413
414 /*
415 * Check if the previous beacon has gone out. If
416 * not don't try to post another, skip this period
417 * and wait for the next. Missed beacons indicate
418 * a problem and should not occur. If we miss too
419 * many consecutive beacons reset the device.
Sujith980b24d2008-09-17 10:15:09 +0530420 *
421 * FIXME: Clean up this mess !!
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700422 */
Sujithb77f4832008-12-07 21:44:03 +0530423 if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0) {
424 sc->beacon.bmisscnt++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700425 /* XXX: doth needs the chanchange IE countdown decremented.
426 * We should consider adding a mac80211 call to indicate
427 * a beacon miss so appropriate action could be taken
428 * (in that layer).
429 */
Sujithb77f4832008-12-07 21:44:03 +0530430 if (sc->beacon.bmisscnt < BSTUCK_THRESH) {
Sujith98deeea2008-08-11 14:05:46 +0530431 if (sc->sc_flags & SC_OP_NO_RESET) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700432 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530433 "missed %u consecutive beacons\n",
Sujithb77f4832008-12-07 21:44:03 +0530434 sc->beacon.bmisscnt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700435 if (show_cycles) {
436 /*
Sujith980b24d2008-09-17 10:15:09 +0530437 * Display cycle counter stats from HW
438 * to aide in debug of stickiness.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700439 */
Sujith980b24d2008-09-17 10:15:09 +0530440 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530441 "busy times: rx_clear=%d, "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442 "rx_frame=%d, tx_frame=%d\n",
Sujith04bd4632008-11-28 22:18:05 +0530443 rx_clear, rx_frame,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700444 tx_frame);
445 } else {
Sujith980b24d2008-09-17 10:15:09 +0530446 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530447 "unable to obtain "
448 "busy times\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700449 }
450 } else {
451 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530452 "missed %u consecutive beacons\n",
Sujithb77f4832008-12-07 21:44:03 +0530453 sc->beacon.bmisscnt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454 }
Sujithb77f4832008-12-07 21:44:03 +0530455 } else if (sc->beacon.bmisscnt >= BSTUCK_THRESH) {
Sujith98deeea2008-08-11 14:05:46 +0530456 if (sc->sc_flags & SC_OP_NO_RESET) {
Sujithb77f4832008-12-07 21:44:03 +0530457 if (sc->beacon.bmisscnt == BSTUCK_THRESH) {
Sujith980b24d2008-09-17 10:15:09 +0530458 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530459 "beacon is officially "
460 "stuck\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461 }
462 } else {
463 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530464 "beacon is officially stuck\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700465 ath_bstuck_process(sc);
466 }
467 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700468 return;
469 }
Sujith980b24d2008-09-17 10:15:09 +0530470
Sujithb77f4832008-12-07 21:44:03 +0530471 if (sc->beacon.bmisscnt != 0) {
Sujith98deeea2008-08-11 14:05:46 +0530472 if (sc->sc_flags & SC_OP_NO_RESET) {
Sujith980b24d2008-09-17 10:15:09 +0530473 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530474 "resume beacon xmit after %u misses\n",
Sujithb77f4832008-12-07 21:44:03 +0530475 sc->beacon.bmisscnt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700476 } else {
477 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530478 "resume beacon xmit after %u misses\n",
Sujithb77f4832008-12-07 21:44:03 +0530479 sc->beacon.bmisscnt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700480 }
Sujithb77f4832008-12-07 21:44:03 +0530481 sc->beacon.bmisscnt = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700482 }
483
484 /*
485 * Generate beacon frames. we are sending frames
486 * staggered so calculate the slot for this frame based
487 * on the tsf to safeguard against missing an swba.
488 */
489
Jouni Malinena8fff502008-08-11 14:01:48 +0300490 intval = sc->hw->conf.beacon_int ?
491 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700492
493 tsf = ath9k_hw_gettsf64(ah);
494 tsftu = TSF_TO_TU(tsf>>32, tsf);
495 slot = ((tsftu % intval) * ATH_BCBUF) / intval;
Sujithb77f4832008-12-07 21:44:03 +0530496 if_id = sc->beacon.bslot[(slot + 1) % ATH_BCBUF];
Sujith980b24d2008-09-17 10:15:09 +0530497
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700498 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530499 "slot %d [tsf %llu tsftu %u intval %u] if_id %d\n",
500 slot, (unsigned long long)tsf, tsftu,
Sujith980b24d2008-09-17 10:15:09 +0530501 intval, if_id);
502
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700503 bfaddr = 0;
504 if (if_id != ATH_IF_ID_ANY) {
505 bf = ath_beacon_generate(sc, if_id);
506 if (bf != NULL) {
507 bfaddr = bf->bf_daddr;
508 bc = 1;
509 }
510 }
511 /*
512 * Handle slot time change when a non-ERP station joins/leaves
513 * an 11g network. The 802.11 layer notifies us via callback,
514 * we mark updateslot, then wait one beacon before effecting
515 * the change. This gives associated stations at least one
516 * beacon interval to note the state change.
517 *
518 * NB: The slot time change state machine is clocked according
519 * to whether we are bursting or staggering beacons. We
520 * recognize the request to update and record the current
521 * slot then don't transition until that slot is reached
522 * again. If we miss a beacon for that slot then we'll be
523 * slow to transition but we'll be sure at least one beacon
524 * interval has passed. When bursting slot is always left
525 * set to ATH_BCBUF so this check is a noop.
526 */
527 /* XXX locking */
Sujithb77f4832008-12-07 21:44:03 +0530528 if (sc->beacon.updateslot == UPDATE) {
529 sc->beacon.updateslot = COMMIT; /* commit next beacon */
530 sc->beacon.slotupdate = slot;
531 } else if (sc->beacon.updateslot == COMMIT && sc->beacon.slotupdate == slot) {
532 ath9k_hw_setslottime(sc->sc_ah, sc->beacon.slottime);
533 sc->beacon.updateslot = OK;
Sujithff37e332008-11-24 12:07:55 +0530534 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700535 if (bfaddr != 0) {
536 /*
537 * Stop any current dma and put the new frame(s) on the queue.
538 * This should never fail since we check above that no frames
539 * are still pending on the queue.
540 */
Sujithb77f4832008-12-07 21:44:03 +0530541 if (!ath9k_hw_stoptxdma(ah, sc->beacon.beaconq)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700542 DPRINTF(sc, ATH_DBG_FATAL,
Sujithb77f4832008-12-07 21:44:03 +0530543 "beacon queue %u did not stop?\n", sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700544 /* NB: the HAL still stops DMA, so proceed */
545 }
546
547 /* NB: cabq traffic should already be queued and primed */
Sujithb77f4832008-12-07 21:44:03 +0530548 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bfaddr);
549 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700550
Sujith17d79042009-02-09 13:27:03 +0530551 sc->beacon.ast_be_xmit += bc; /* XXX per-vif? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700552 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700553}
554
555/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700556 * Configure the beacon and sleep timers.
557 *
558 * When operating as an AP this resets the TSF and sets
559 * up the hardware to notify us when we need to issue beacons.
560 *
561 * When operating in station mode this sets up the beacon
562 * timers according to the timestamp of the last received
563 * beacon and the current TSF, configures PCF and DTIM
564 * handling, programs the sleep registers so the hardware
565 * will wakeup in time to receive beacons, and configures
566 * the beacon miss handling so we'll receive a BMISS
567 * interrupt when we stop seeing beacons from the AP
568 * we've associated with.
569 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700570void ath_beacon_config(struct ath_softc *sc, int if_id)
571{
Sujith5640b082008-10-29 10:16:06 +0530572 struct ieee80211_vif *vif;
Sujithcbe61d82009-02-09 13:27:12 +0530573 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700574 struct ath_beacon_config conf;
Sujith17d79042009-02-09 13:27:03 +0530575 struct ath_vif *avp;
Colin McCabed97809d2008-12-01 13:38:55 -0800576 enum nl80211_iftype opmode;
Sujith980b24d2008-09-17 10:15:09 +0530577 u32 nexttbtt, intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700578
Sujith5640b082008-10-29 10:16:06 +0530579 if (if_id != ATH_IF_ID_ANY) {
Sujith17d79042009-02-09 13:27:03 +0530580 vif = sc->vifs[if_id];
Sujith5640b082008-10-29 10:16:06 +0530581 avp = (void *)vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -0800582 opmode = avp->av_opmode;
Sujith5640b082008-10-29 10:16:06 +0530583 } else {
Sujith2660b812009-02-09 13:27:26 +0530584 opmode = sc->sc_ah->opmode;
Sujith5640b082008-10-29 10:16:06 +0530585 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700586
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700587 memset(&conf, 0, sizeof(struct ath_beacon_config));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700588
Jouni Malinena8fff502008-08-11 14:01:48 +0300589 conf.beacon_interval = sc->hw->conf.beacon_int ?
590 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700591 conf.listen_interval = 1;
592 conf.dtim_period = conf.beacon_interval;
593 conf.dtim_count = 1;
594 conf.bmiss_timeout = ATH_DEFAULT_BMISS_LIMIT * conf.beacon_interval;
595
596 /* extract tstamp from last beacon and convert to TU */
Sujithb77f4832008-12-07 21:44:03 +0530597 nexttbtt = TSF_TO_TU(sc->beacon.bc_tstamp >> 32, sc->beacon.bc_tstamp);
Sujith459f5f92008-09-17 10:15:36 +0530598
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599 /* XXX conditionalize multi-bss support? */
Sujith2660b812009-02-09 13:27:26 +0530600 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700601 /*
602 * For multi-bss ap support beacons are either staggered
603 * evenly over N slots or burst together. For the former
604 * arrange for the SWBA to be delivered for each slot.
605 * Slots that are not occupied will generate nothing.
606 */
607 /* NB: the beacon interval is kept internally in TU's */
608 intval = conf.beacon_interval & ATH9K_BEACON_PERIOD;
609 intval /= ATH_BCBUF; /* for staggered beacons */
610 } else {
611 intval = conf.beacon_interval & ATH9K_BEACON_PERIOD;
612 }
613
Sujith980b24d2008-09-17 10:15:09 +0530614 if (nexttbtt == 0) /* e.g. for ap mode */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700615 nexttbtt = intval;
Sujith980b24d2008-09-17 10:15:09 +0530616 else if (intval) /* NB: can be 0 for monitor mode */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700617 nexttbtt = roundup(nexttbtt, intval);
Sujith980b24d2008-09-17 10:15:09 +0530618
Sujith04bd4632008-11-28 22:18:05 +0530619 DPRINTF(sc, ATH_DBG_BEACON, "nexttbtt %u intval %u (%u)\n",
620 nexttbtt, intval, conf.beacon_interval);
Sujith980b24d2008-09-17 10:15:09 +0530621
Colin McCabed97809d2008-12-01 13:38:55 -0800622 /* Check for NL80211_IFTYPE_AP and sc_nostabeacons for WDS client */
Sujith2660b812009-02-09 13:27:26 +0530623 if (sc->sc_ah->opmode == NL80211_IFTYPE_STATION) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700624 struct ath9k_beacon_state bs;
625 u64 tsf;
626 u32 tsftu;
627 int dtimperiod, dtimcount, sleepduration;
628 int cfpperiod, cfpcount;
629
630 /*
631 * Setup dtim and cfp parameters according to
632 * last beacon we received (which may be none).
633 */
634 dtimperiod = conf.dtim_period;
Sujith980b24d2008-09-17 10:15:09 +0530635 if (dtimperiod <= 0) /* NB: 0 if not known */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700636 dtimperiod = 1;
637 dtimcount = conf.dtim_count;
Sujith980b24d2008-09-17 10:15:09 +0530638 if (dtimcount >= dtimperiod) /* NB: sanity check */
639 dtimcount = 0;
640 cfpperiod = 1; /* NB: no PCF support yet */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 cfpcount = 0;
642
643 sleepduration = conf.listen_interval * intval;
644 if (sleepduration <= 0)
645 sleepduration = intval;
646
Sujith980b24d2008-09-17 10:15:09 +0530647#define FUDGE 2
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700648 /*
649 * Pull nexttbtt forward to reflect the current
650 * TSF and calculate dtim+cfp state for the result.
651 */
652 tsf = ath9k_hw_gettsf64(ah);
653 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
654 do {
655 nexttbtt += intval;
656 if (--dtimcount < 0) {
657 dtimcount = dtimperiod - 1;
658 if (--cfpcount < 0)
659 cfpcount = cfpperiod - 1;
660 }
661 } while (nexttbtt < tsftu);
662#undef FUDGE
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700663 memset(&bs, 0, sizeof(bs));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700664 bs.bs_intval = intval;
665 bs.bs_nexttbtt = nexttbtt;
666 bs.bs_dtimperiod = dtimperiod*intval;
667 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
668 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
669 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
670 bs.bs_cfpmaxduration = 0;
Sujith980b24d2008-09-17 10:15:09 +0530671
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700672 /*
673 * Calculate the number of consecutive beacons to miss
674 * before taking a BMISS interrupt. The configuration
675 * is specified in TU so we only need calculate based
676 * on the beacon interval. Note that we clamp the
677 * result to at most 15 beacons.
678 */
679 if (sleepduration > intval) {
Sujith980b24d2008-09-17 10:15:09 +0530680 bs.bs_bmissthreshold = conf.listen_interval *
681 ATH_DEFAULT_BMISS_LIMIT / 2;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700682 } else {
683 bs.bs_bmissthreshold =
684 DIV_ROUND_UP(conf.bmiss_timeout, intval);
685 if (bs.bs_bmissthreshold > 15)
686 bs.bs_bmissthreshold = 15;
687 else if (bs.bs_bmissthreshold <= 0)
688 bs.bs_bmissthreshold = 1;
689 }
690
691 /*
692 * Calculate sleep duration. The configuration is
693 * given in ms. We insure a multiple of the beacon
694 * period is used. Also, if the sleep duration is
695 * greater than the DTIM period then it makes senses
696 * to make it a multiple of that.
697 *
698 * XXX fixed at 100ms
699 */
700
Sujith980b24d2008-09-17 10:15:09 +0530701 bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100),
702 sleepduration);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700703 if (bs.bs_sleepduration > bs.bs_dtimperiod)
704 bs.bs_sleepduration = bs.bs_dtimperiod;
705
Sujith4af9cf42009-02-12 10:06:47 +0530706 /* TSF out of range threshold fixed at 1 second */
707 bs.bs_tsfoor_threshold = ATH9K_TSFOOR_THRESHOLD;
708
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700709 DPRINTF(sc, ATH_DBG_BEACON,
Sujith9fc9ab02009-03-03 10:16:51 +0530710 "tsf: %llu tsftu: %u\n", tsf, tsftu);
711 DPRINTF(sc, ATH_DBG_BEACON,
712 "bmiss: %u sleep: %u cfp-period: %u maxdur: %u next: %u\n",
713 bs.bs_bmissthreshold, bs.bs_sleepduration,
714 bs.bs_cfpperiod, bs.bs_cfpmaxduration, bs.bs_cfpnext);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700715
716 ath9k_hw_set_interrupts(ah, 0);
717 ath9k_hw_set_sta_beacon_timers(ah, &bs);
Sujith17d79042009-02-09 13:27:03 +0530718 sc->imask |= ATH9K_INT_BMISS;
719 ath9k_hw_set_interrupts(ah, sc->imask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700720 } else {
721 u64 tsf;
722 u32 tsftu;
Sujith9fc9ab02009-03-03 10:16:51 +0530723
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700724 ath9k_hw_set_interrupts(ah, 0);
Sujith2660b812009-02-09 13:27:26 +0530725 if (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) {
Sujith9fc9ab02009-03-03 10:16:51 +0530726 /* Pull nexttbtt forward to reflect the current TSF */
Sujith980b24d2008-09-17 10:15:09 +0530727#define FUDGE 2
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700728 if (!(intval & ATH9K_BEACON_RESET_TSF)) {
729 tsf = ath9k_hw_gettsf64(ah);
730 tsftu = TSF_TO_TU((u32)(tsf>>32),
Sujith9fc9ab02009-03-03 10:16:51 +0530731 (u32)tsf) + FUDGE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700732 do {
733 nexttbtt += intval;
734 } while (nexttbtt < tsftu);
735 }
736#undef FUDGE
737 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530738 "IBSS nexttbtt %u intval %u (%u)\n",
Sujith9fc9ab02009-03-03 10:16:51 +0530739 nexttbtt, intval & ~ATH9K_BEACON_RESET_TSF,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740 conf.beacon_interval);
741
742 /*
743 * In IBSS mode enable the beacon timers but only
744 * enable SWBA interrupts if we need to manually
745 * prepare beacon frames. Otherwise we use a
746 * self-linked tx descriptor and let the hardware
747 * deal with things.
748 */
749 intval |= ATH9K_BEACON_ENA;
Sujith2660b812009-02-09 13:27:26 +0530750 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_VEOL))
Sujith17d79042009-02-09 13:27:03 +0530751 sc->imask |= ATH9K_INT_SWBA;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700752 ath_beaconq_config(sc);
Sujith2660b812009-02-09 13:27:26 +0530753 } else if (sc->sc_ah->opmode == NL80211_IFTYPE_AP) {
Alina Friedrichsenf452a632009-02-19 23:46:31 +0100754 if (nexttbtt == intval)
755 intval |= ATH9K_BEACON_RESET_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700756 /*
757 * In AP mode we enable the beacon timers and
758 * SWBA interrupts to prepare beacon frames.
759 */
760 intval |= ATH9K_BEACON_ENA;
Sujith9fc9ab02009-03-03 10:16:51 +0530761 sc->imask |= ATH9K_INT_SWBA;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700762 ath_beaconq_config(sc);
763 }
Sujith9fc9ab02009-03-03 10:16:51 +0530764
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700765 ath9k_hw_beaconinit(ah, nexttbtt, intval);
Sujithb77f4832008-12-07 21:44:03 +0530766 sc->beacon.bmisscnt = 0;
Sujith17d79042009-02-09 13:27:03 +0530767 ath9k_hw_set_interrupts(ah, sc->imask);
Sujith9fc9ab02009-03-03 10:16:51 +0530768
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700769 /*
770 * When using a self-linked beacon descriptor in
771 * ibss mode load it once here.
772 */
Sujith2660b812009-02-09 13:27:26 +0530773 if (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC &&
774 (ah->caps.hw_caps & ATH9K_HW_CAP_VEOL))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 ath_beacon_start_adhoc(sc, 0);
776 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700777}
778
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779void ath_beacon_sync(struct ath_softc *sc, int if_id)
780{
781 /*
782 * Resync beacon timers using the tsf of the
783 * beacon frame we just received.
784 */
785 ath_beacon_config(sc, if_id);
Sujith672840a2008-08-11 14:05:08 +0530786 sc->sc_flags |= SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787}