blob: fb4ff5512360d0ead6ec9d70e2a35e49c015bca1 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
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
Sujith5379c8a2009-03-03 10:16:54 +053019#define FUDGE 2
20
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070022 * 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*/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070026static int ath_beaconq_config(struct ath_softc *sc)
27{
Sujithcbe61d82009-02-09 13:27:12 +053028 struct ath_hw *ah = sc->sc_ah;
Sujithea9880f2008-08-07 10:53:10 +053029 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070030
Sujithb77f4832008-12-07 21:44:03 +053031 ath9k_hw_get_txq_props(ah, sc->beacon.beaconq, &qi);
Sujith2660b812009-02-09 13:27:26 +053032 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070033 /* Always burst out beacon and CAB traffic. */
34 qi.tqi_aifs = 1;
35 qi.tqi_cwmin = 0;
36 qi.tqi_cwmax = 0;
37 } else {
38 /* Adhoc mode; important thing is to use 2x cwmin. */
Sujithb77f4832008-12-07 21:44:03 +053039 qi.tqi_aifs = sc->beacon.beacon_qi.tqi_aifs;
40 qi.tqi_cwmin = 2*sc->beacon.beacon_qi.tqi_cwmin;
41 qi.tqi_cwmax = sc->beacon.beacon_qi.tqi_cwmax;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070042 }
43
Sujithb77f4832008-12-07 21:44:03 +053044 if (!ath9k_hw_set_txq_props(ah, sc->beacon.beaconq, &qi)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -070045 DPRINTF(ah, ATH_DBG_FATAL,
Sujithd8baa932009-03-30 15:28:25 +053046 "Unable to update h/w beacon queue parameters\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070047 return 0;
48 } else {
Sujith9fc9ab02009-03-03 10:16:51 +053049 ath9k_hw_resettxqueue(ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070050 return 1;
51 }
52}
53
54/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070055 * Associates the beacon frame buffer with a transmit descriptor. Will set
56 * up all required antenna switch parameters, rate codes, and channel flags.
57 * Beacons are always sent out at the lowest rate, and are not retried.
58*/
Sujith9fc9ab02009-03-03 10:16:51 +053059static void ath_beacon_setup(struct ath_softc *sc, struct ath_vif *avp,
60 struct ath_buf *bf)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070061{
Sujitha22be222009-03-30 15:28:36 +053062 struct sk_buff *skb = bf->bf_mpdu;
Sujithcbe61d82009-02-09 13:27:12 +053063 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070064 struct ath_desc *ds;
Sujith980b24d2008-09-17 10:15:09 +053065 struct ath9k_11n_rate_series series[4];
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -040066 const struct ath_rate_table *rt;
Sujith9fc9ab02009-03-03 10:16:51 +053067 int flags, antenna, ctsrate = 0, ctsduration = 0;
68 u8 rate;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070069
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070070 ds = bf->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070071 flags = ATH9K_TXDESC_NOACK;
72
Pat Erley9cb54122009-03-20 22:59:59 -040073 if (((sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) ||
74 (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) &&
Sujith2660b812009-02-09 13:27:26 +053075 (ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070076 ds->ds_link = bf->bf_daddr; /* self-linked */
77 flags |= ATH9K_TXDESC_VEOL;
78 /* Let hardware handle antenna switching. */
79 antenna = 0;
80 } else {
81 ds->ds_link = 0;
82 /*
83 * Switch antenna every beacon.
Sujith9fc9ab02009-03-03 10:16:51 +053084 * Should only switch every beacon period, not for every SWBA
85 * XXX assumes two antennae
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070086 */
Sujith17d79042009-02-09 13:27:03 +053087 antenna = ((sc->beacon.ast_be_xmit / sc->nbcnvifs) & 1 ? 2 : 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070088 }
89
90 ds->ds_data = bf->bf_buf_addr;
91
Sujith3706de62008-12-07 21:42:10 +053092 rt = sc->cur_rate_table;
Sujith9fc9ab02009-03-03 10:16:51 +053093 rate = rt->info[0].ratecode;
Sujith672840a2008-08-11 14:05:08 +053094 if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
Sujith9fc9ab02009-03-03 10:16:51 +053095 rate |= rt->info[0].short_preamble;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070096
Sujith9fc9ab02009-03-03 10:16:51 +053097 ath9k_hw_set11n_txdesc(ah, ds, skb->len + FCS_LEN,
98 ATH9K_PKT_TYPE_BEACON,
99 MAX_RATE_POWER,
100 ATH9K_TXKEYIX_INVALID,
101 ATH9K_KEY_TYPE_CLEAR,
102 flags);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700103
104 /* NB: beacon's BufLen must be a multiple of 4 bytes */
Sujith9fc9ab02009-03-03 10:16:51 +0530105 ath9k_hw_filltxdesc(ah, ds, roundup(skb->len, 4),
106 true, true, ds);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700107
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700108 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700109 series[0].Tries = 1;
110 series[0].Rate = rate;
Sujith17d79042009-02-09 13:27:03 +0530111 series[0].ChSel = sc->tx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700112 series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0;
Sujith9fc9ab02009-03-03 10:16:51 +0530113 ath9k_hw_set11n_ratescenario(ah, ds, ds, 0, ctsrate, ctsduration,
114 series, 4, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700115}
116
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200117static struct ath_buf *ath_beacon_generate(struct ieee80211_hw *hw,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200118 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700119{
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200120 struct ath_wiphy *aphy = hw->priv;
121 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700122 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530123 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700124 struct sk_buff *skb;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700125 struct ath_txq *cabq;
Jouni Malinen147583c2008-08-11 14:01:50 +0300126 struct ieee80211_tx_info *info;
Sujith980b24d2008-09-17 10:15:09 +0530127 int cabq_depth;
128
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200129 if (aphy->state != ATH_WIPHY_ACTIVE)
130 return NULL;
131
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
Sujithd8baa932009-03-30 15:28:25 +0530135 if (avp->av_bcbuf == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700136 return NULL;
Sujith980b24d2008-09-17 10:15:09 +0530137
Sujith9fc9ab02009-03-03 10:16:51 +0530138 /* Release the old beacon first */
139
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700140 bf = avp->av_bcbuf;
Sujitha22be222009-03-30 15:28:36 +0530141 skb = bf->bf_mpdu;
Jouni Malinena8fff502008-08-11 14:01:48 +0300142 if (skb) {
Gabor Juhos7da3c552009-01-14 20:17:03 +0100143 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530144 skb->len, DMA_TO_DEVICE);
Jouni Malinen3fbb9d92008-12-05 20:42:45 +0200145 dev_kfree_skb_any(skb);
Jouni Malinena8fff502008-08-11 14:01:48 +0300146 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700147
Sujith9fc9ab02009-03-03 10:16:51 +0530148 /* Get a new beacon from mac80211 */
149
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200150 skb = ieee80211_beacon_get(hw, vif);
Jouni Malinena8fff502008-08-11 14:01:48 +0300151 bf->bf_mpdu = skb;
152 if (skb == NULL)
153 return NULL;
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200154 ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp =
155 avp->tsf_adjust;
Sujith980b24d2008-09-17 10:15:09 +0530156
Jouni Malinen147583c2008-08-11 14:01:50 +0300157 info = IEEE80211_SKB_CB(skb);
158 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
159 /*
160 * TODO: make sure the seq# gets assigned properly (vs. other
161 * TX frames)
162 */
Sujith980b24d2008-09-17 10:15:09 +0530163 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithb77f4832008-12-07 21:44:03 +0530164 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +0300165 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +0530166 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +0300167 }
Sujith980b24d2008-09-17 10:15:09 +0530168
Jouni Malinena8fff502008-08-11 14:01:48 +0300169 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100170 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530171 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100172 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800173 dev_kfree_skb_any(skb);
174 bf->bf_mpdu = NULL;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700175 DPRINTF(sc->sc_ah, ATH_DBG_FATAL, "dma_mapping_error on beaconing\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800176 return NULL;
177 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700178
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200179 skb = ieee80211_get_buffered_bc(hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700180
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700181 /*
182 * if the CABQ traffic from previous DTIM is pending and the current
183 * beacon is also a DTIM.
Sujith17d79042009-02-09 13:27:03 +0530184 * 1) if there is only one vif let the cab traffic continue.
185 * 2) if there are more than one vif and we are using staggered
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700186 * beacons, then drain the cabq by dropping all the frames in
Sujith17d79042009-02-09 13:27:03 +0530187 * the cabq so that the current vifs cab traffic can be scheduled.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700188 */
189 spin_lock_bh(&cabq->axq_lock);
190 cabq_depth = cabq->axq_depth;
191 spin_unlock_bh(&cabq->axq_lock);
192
Jouni Malinene022edb2008-08-22 17:31:33 +0300193 if (skb && cabq_depth) {
Sujith17d79042009-02-09 13:27:03 +0530194 if (sc->nvifs > 1) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700195 DPRINTF(sc->sc_ah, ATH_DBG_BEACON,
Sujith9fc9ab02009-03-03 10:16:51 +0530196 "Flushing previous cabq traffic\n");
197 ath_draintxq(sc, cabq, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700198 }
199 }
200
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700201 ath_beacon_setup(sc, avp, bf);
202
Jouni Malinene022edb2008-08-22 17:31:33 +0300203 while (skb) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200204 ath_tx_cabq(hw, skb);
205 skb = ieee80211_get_buffered_bc(hw, vif);
Jouni Malinene022edb2008-08-22 17:31:33 +0300206 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700207
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700208 return bf;
209}
210
211/*
212 * Startup beacon transmission for adhoc mode when they are sent entirely
213 * by the hardware using the self-linked descriptor + veol trick.
214*/
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200215static void ath_beacon_start_adhoc(struct ath_softc *sc,
216 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700217{
Sujithcbe61d82009-02-09 13:27:12 +0530218 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700219 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530220 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700221 struct sk_buff *skb;
222
Sujith5640b082008-10-29 10:16:06 +0530223 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700224
Sujith9fc9ab02009-03-03 10:16:51 +0530225 if (avp->av_bcbuf == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700226 return;
Sujith9fc9ab02009-03-03 10:16:51 +0530227
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700228 bf = avp->av_bcbuf;
Sujitha22be222009-03-30 15:28:36 +0530229 skb = bf->bf_mpdu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700230
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700231 ath_beacon_setup(sc, avp, bf);
232
233 /* NB: caller is known to have already stopped tx dma */
Sujithb77f4832008-12-07 21:44:03 +0530234 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bf->bf_daddr);
235 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700236 DPRINTF(ah, ATH_DBG_BEACON, "TXDP%u = %llx (%p)\n",
Sujithb77f4832008-12-07 21:44:03 +0530237 sc->beacon.beaconq, ito64(bf->bf_daddr), bf->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700238}
239
Sujithcbe61d82009-02-09 13:27:12 +0530240int ath_beaconq_setup(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700241{
Sujithea9880f2008-08-07 10:53:10 +0530242 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700243
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700244 memset(&qi, 0, sizeof(qi));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700245 qi.tqi_aifs = 1;
246 qi.tqi_cwmin = 0;
247 qi.tqi_cwmax = 0;
248 /* NB: don't enable any interrupts */
249 return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
250}
251
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200252int ath_beacon_alloc(struct ath_wiphy *aphy, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700253{
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200254 struct ath_softc *sc = aphy->sc;
Sujith17d79042009-02-09 13:27:03 +0530255 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700256 struct ath_buf *bf;
257 struct sk_buff *skb;
Sujith459f5f92008-09-17 10:15:36 +0530258 __le64 tstamp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700259
Sujith5640b082008-10-29 10:16:06 +0530260 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700261
262 /* Allocate a beacon descriptor if we haven't done so. */
263 if (!avp->av_bcbuf) {
Sujith980b24d2008-09-17 10:15:09 +0530264 /* Allocate beacon state for hostap/ibss. We know
265 * a buffer is available. */
Sujithb77f4832008-12-07 21:44:03 +0530266 avp->av_bcbuf = list_first_entry(&sc->beacon.bbuf,
Sujith980b24d2008-09-17 10:15:09 +0530267 struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700268 list_del(&avp->av_bcbuf->list);
269
Sujith2660b812009-02-09 13:27:26 +0530270 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP ||
271 !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700272 int slot;
273 /*
Sujith17d79042009-02-09 13:27:03 +0530274 * Assign the vif to a beacon xmit slot. As
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700275 * above, this cannot fail to find one.
276 */
277 avp->av_bslot = 0;
278 for (slot = 0; slot < ATH_BCBUF; slot++)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200279 if (sc->beacon.bslot[slot] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700280 /*
281 * XXX hack, space out slots to better
282 * deal with misses
283 */
284 if (slot+1 < ATH_BCBUF &&
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200285 sc->beacon.bslot[slot+1] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700286 avp->av_bslot = slot+1;
287 break;
288 }
289 avp->av_bslot = slot;
290 /* NB: keep looking for a double slot */
291 }
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200292 BUG_ON(sc->beacon.bslot[avp->av_bslot] != NULL);
293 sc->beacon.bslot[avp->av_bslot] = vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200294 sc->beacon.bslot_aphy[avp->av_bslot] = aphy;
Sujith17d79042009-02-09 13:27:03 +0530295 sc->nbcnvifs++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700296 }
297 }
298
Sujith9fc9ab02009-03-03 10:16:51 +0530299 /* release the previous beacon frame, if it already exists. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700300 bf = avp->av_bcbuf;
301 if (bf->bf_mpdu != NULL) {
Sujitha22be222009-03-30 15:28:36 +0530302 skb = bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100303 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530304 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700305 dev_kfree_skb_any(skb);
306 bf->bf_mpdu = NULL;
307 }
308
Sujith9fc9ab02009-03-03 10:16:51 +0530309 /* NB: the beacon data buffer must be 32-bit aligned. */
Sujith5640b082008-10-29 10:16:06 +0530310 skb = ieee80211_beacon_get(sc->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700311 if (skb == NULL) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700312 DPRINTF(sc->sc_ah, ATH_DBG_BEACON, "cannot get skb\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700313 return -ENOMEM;
314 }
315
Sujith459f5f92008-09-17 10:15:36 +0530316 tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Sujithb77f4832008-12-07 21:44:03 +0530317 sc->beacon.bc_tstamp = le64_to_cpu(tstamp);
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200318 /* Calculate a TSF adjustment factor required for staggered beacons. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700319 if (avp->av_bslot > 0) {
320 u64 tsfadjust;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700321 int intval;
322
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200323 intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700324
325 /*
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200326 * Calculate the TSF offset for this beacon slot, i.e., the
327 * number of usecs that need to be added to the timestamp field
328 * in Beacon and Probe Response frames. Beacon slot 0 is
329 * processed at the correct offset, so it does not require TSF
330 * adjustment. Other slots are adjusted to get the timestamp
331 * close to the TBTT for the BSS.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700332 */
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200333 tsfadjust = intval * avp->av_bslot / ATH_BCBUF;
334 avp->tsf_adjust = cpu_to_le64(TU_TO_USEC(tsfadjust));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700335
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700336 DPRINTF(sc->sc_ah, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530337 "stagger beacons, bslot %d intval %u tsfadjust %llu\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700338 avp->av_bslot, intval, (unsigned long long)tsfadjust);
339
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200340 ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp =
341 avp->tsf_adjust;
342 } else
343 avp->tsf_adjust = cpu_to_le64(0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700344
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800345 bf->bf_mpdu = skb;
Jouni Malinena8fff502008-08-11 14:01:48 +0300346 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100347 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530348 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100349 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800350 dev_kfree_skb_any(skb);
351 bf->bf_mpdu = NULL;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700352 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Sujith9fc9ab02009-03-03 10:16:51 +0530353 "dma_mapping_error on beacon alloc\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800354 return -ENOMEM;
355 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700356
357 return 0;
358}
359
Sujith17d79042009-02-09 13:27:03 +0530360void ath_beacon_return(struct ath_softc *sc, struct ath_vif *avp)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700361{
362 if (avp->av_bcbuf != NULL) {
363 struct ath_buf *bf;
364
365 if (avp->av_bslot != -1) {
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200366 sc->beacon.bslot[avp->av_bslot] = NULL;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200367 sc->beacon.bslot_aphy[avp->av_bslot] = NULL;
Sujith17d79042009-02-09 13:27:03 +0530368 sc->nbcnvifs--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700369 }
370
371 bf = avp->av_bcbuf;
372 if (bf->bf_mpdu != NULL) {
Sujitha22be222009-03-30 15:28:36 +0530373 struct sk_buff *skb = bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100374 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530375 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700376 dev_kfree_skb_any(skb);
377 bf->bf_mpdu = NULL;
378 }
Sujithb77f4832008-12-07 21:44:03 +0530379 list_add_tail(&bf->list, &sc->beacon.bbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700380
381 avp->av_bcbuf = NULL;
382 }
383}
384
Sujith9fc9ab02009-03-03 10:16:51 +0530385void ath_beacon_tasklet(unsigned long data)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700386{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700387 struct ath_softc *sc = (struct ath_softc *)data;
Sujithcbe61d82009-02-09 13:27:12 +0530388 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700389 struct ath_buf *bf = NULL;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200390 struct ieee80211_vif *vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200391 struct ath_wiphy *aphy;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200392 int slot;
Sujith9546aae2009-03-03 10:16:53 +0530393 u32 bfaddr, bc = 0, tsftu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700394 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700395 u16 intval;
396
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700397 /*
398 * Check if the previous beacon has gone out. If
399 * not don't try to post another, skip this period
400 * and wait for the next. Missed beacons indicate
401 * a problem and should not occur. If we miss too
402 * many consecutive beacons reset the device.
403 */
Sujithb77f4832008-12-07 21:44:03 +0530404 if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0) {
405 sc->beacon.bmisscnt++;
Sujith9546aae2009-03-03 10:16:53 +0530406
Sujithb77f4832008-12-07 21:44:03 +0530407 if (sc->beacon.bmisscnt < BSTUCK_THRESH) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700408 DPRINTF(sc->sc_ah, ATH_DBG_BEACON,
Sujith9546aae2009-03-03 10:16:53 +0530409 "missed %u consecutive beacons\n",
410 sc->beacon.bmisscnt);
Sujithb77f4832008-12-07 21:44:03 +0530411 } else if (sc->beacon.bmisscnt >= BSTUCK_THRESH) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700412 DPRINTF(sc->sc_ah, ATH_DBG_BEACON,
Sujith9546aae2009-03-03 10:16:53 +0530413 "beacon is officially stuck\n");
Jeff Hansenb74444f2009-05-27 12:48:27 +0000414 sc->sc_flags |= SC_OP_TSF_RESET;
Sujith9546aae2009-03-03 10:16:53 +0530415 ath_reset(sc, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700416 }
Sujith9546aae2009-03-03 10:16:53 +0530417
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700418 return;
419 }
Sujith980b24d2008-09-17 10:15:09 +0530420
Sujithb77f4832008-12-07 21:44:03 +0530421 if (sc->beacon.bmisscnt != 0) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700422 DPRINTF(sc->sc_ah, ATH_DBG_BEACON,
Sujith9546aae2009-03-03 10:16:53 +0530423 "resume beacon xmit after %u misses\n",
424 sc->beacon.bmisscnt);
Sujithb77f4832008-12-07 21:44:03 +0530425 sc->beacon.bmisscnt = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426 }
427
428 /*
429 * Generate beacon frames. we are sending frames
430 * staggered so calculate the slot for this frame based
431 * on the tsf to safeguard against missing an swba.
432 */
433
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200434 intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700435
436 tsf = ath9k_hw_gettsf64(ah);
437 tsftu = TSF_TO_TU(tsf>>32, tsf);
438 slot = ((tsftu % intval) * ATH_BCBUF) / intval;
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200439 /*
440 * Reverse the slot order to get slot 0 on the TBTT offset that does
441 * not require TSF adjustment and other slots adding
442 * slot/ATH_BCBUF * beacon_int to timestamp. For example, with
443 * ATH_BCBUF = 4, we process beacon slots as follows: 3 2 1 0 3 2 1 ..
444 * and slot 0 is at correct offset to TBTT.
445 */
446 slot = ATH_BCBUF - slot - 1;
447 vif = sc->beacon.bslot[slot];
448 aphy = sc->beacon.bslot_aphy[slot];
Sujith980b24d2008-09-17 10:15:09 +0530449
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700450 DPRINTF(sc->sc_ah, ATH_DBG_BEACON,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200451 "slot %d [tsf %llu tsftu %u intval %u] vif %p\n",
452 slot, tsf, tsftu, intval, vif);
Sujith980b24d2008-09-17 10:15:09 +0530453
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454 bfaddr = 0;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200455 if (vif) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200456 bf = ath_beacon_generate(aphy->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 if (bf != NULL) {
458 bfaddr = bf->bf_daddr;
459 bc = 1;
460 }
461 }
Sujith9546aae2009-03-03 10:16:53 +0530462
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700463 /*
464 * Handle slot time change when a non-ERP station joins/leaves
465 * an 11g network. The 802.11 layer notifies us via callback,
466 * we mark updateslot, then wait one beacon before effecting
467 * the change. This gives associated stations at least one
468 * beacon interval to note the state change.
469 *
470 * NB: The slot time change state machine is clocked according
471 * to whether we are bursting or staggering beacons. We
472 * recognize the request to update and record the current
473 * slot then don't transition until that slot is reached
474 * again. If we miss a beacon for that slot then we'll be
475 * slow to transition but we'll be sure at least one beacon
476 * interval has passed. When bursting slot is always left
477 * set to ATH_BCBUF so this check is a noop.
478 */
Sujithb77f4832008-12-07 21:44:03 +0530479 if (sc->beacon.updateslot == UPDATE) {
480 sc->beacon.updateslot = COMMIT; /* commit next beacon */
481 sc->beacon.slotupdate = slot;
482 } else if (sc->beacon.updateslot == COMMIT && sc->beacon.slotupdate == slot) {
483 ath9k_hw_setslottime(sc->sc_ah, sc->beacon.slottime);
484 sc->beacon.updateslot = OK;
Sujithff37e332008-11-24 12:07:55 +0530485 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700486 if (bfaddr != 0) {
487 /*
488 * Stop any current dma and put the new frame(s) on the queue.
489 * This should never fail since we check above that no frames
490 * are still pending on the queue.
491 */
Sujithb77f4832008-12-07 21:44:03 +0530492 if (!ath9k_hw_stoptxdma(ah, sc->beacon.beaconq)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700493 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Sujithb77f4832008-12-07 21:44:03 +0530494 "beacon queue %u did not stop?\n", sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 }
496
497 /* NB: cabq traffic should already be queued and primed */
Sujithb77f4832008-12-07 21:44:03 +0530498 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bfaddr);
499 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700500
Sujith17d79042009-02-09 13:27:03 +0530501 sc->beacon.ast_be_xmit += bc; /* XXX per-vif? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700502 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700503}
504
Luis R. Rodriguez21526d52009-09-09 20:05:39 -0700505static void ath9k_beacon_init(struct ath_softc *sc,
506 u32 next_beacon,
507 u32 beacon_period)
508{
509 if (beacon_period & ATH9K_BEACON_RESET_TSF)
510 ath9k_ps_wakeup(sc);
511
512 ath9k_hw_beaconinit(sc->sc_ah, next_beacon, beacon_period);
513
514 if (beacon_period & ATH9K_BEACON_RESET_TSF)
515 ath9k_ps_restore(sc);
516}
517
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700518/*
Sujith5379c8a2009-03-03 10:16:54 +0530519 * For multi-bss ap support beacons are either staggered evenly over N slots or
520 * burst together. For the former arrange for the SWBA to be delivered for each
521 * slot. Slots that are not occupied will generate nothing.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700522 */
Sujith5379c8a2009-03-03 10:16:54 +0530523static void ath_beacon_config_ap(struct ath_softc *sc,
Vasanthakumar Thiagarajand31e20a2009-05-15 18:59:21 +0530524 struct ath_beacon_config *conf)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700525{
Sujith980b24d2008-09-17 10:15:09 +0530526 u32 nexttbtt, intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700527
Sujithb238e902009-03-03 10:16:56 +0530528 /* Configure the timers only when the TSF has to be reset */
529
530 if (!(sc->sc_flags & SC_OP_TSF_RESET))
531 return;
532
Sujith5379c8a2009-03-03 10:16:54 +0530533 /* NB: the beacon interval is kept internally in TU's */
534 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
535 intval /= ATH_BCBUF; /* for staggered beacons */
536 nexttbtt = intval;
537 intval |= ATH9K_BEACON_RESET_TSF;
538
539 /*
540 * In AP mode we enable the beacon timers and SWBA interrupts to
541 * prepare beacon frames.
542 */
543 intval |= ATH9K_BEACON_ENA;
544 sc->imask |= ATH9K_INT_SWBA;
545 ath_beaconq_config(sc);
546
547 /* Set the computed AP beacon timers */
548
549 ath9k_hw_set_interrupts(sc->sc_ah, 0);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -0700550 ath9k_beacon_init(sc, nexttbtt, intval);
Sujith5379c8a2009-03-03 10:16:54 +0530551 sc->beacon.bmisscnt = 0;
552 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
Sujithb238e902009-03-03 10:16:56 +0530553
554 /* Clear the reset TSF flag, so that subsequent beacon updation
555 will not reset the HW TSF. */
556
557 sc->sc_flags &= ~SC_OP_TSF_RESET;
Sujith5379c8a2009-03-03 10:16:54 +0530558}
559
560/*
561 * This sets up the beacon timers according to the timestamp of the last
562 * received beacon and the current TSF, configures PCF and DTIM
563 * handling, programs the sleep registers so the hardware will wakeup in
564 * time to receive beacons, and configures the beacon miss handling so
565 * we'll receive a BMISS interrupt when we stop seeing beacons from the AP
566 * we've associated with.
567 */
568static void ath_beacon_config_sta(struct ath_softc *sc,
Vasanthakumar Thiagarajand31e20a2009-05-15 18:59:21 +0530569 struct ath_beacon_config *conf)
Sujith5379c8a2009-03-03 10:16:54 +0530570{
571 struct ath9k_beacon_state bs;
572 int dtimperiod, dtimcount, sleepduration;
573 int cfpperiod, cfpcount;
574 u32 nexttbtt = 0, intval, tsftu;
575 u64 tsf;
Jouni Malinen267a9012009-05-20 21:56:39 +0300576 int num_beacons, offset, dtim_dec_count, cfp_dec_count;
Sujith5379c8a2009-03-03 10:16:54 +0530577
578 memset(&bs, 0, sizeof(bs));
579 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
580
581 /*
582 * Setup dtim and cfp parameters according to
583 * last beacon we received (which may be none).
584 */
585 dtimperiod = conf->dtim_period;
586 if (dtimperiod <= 0) /* NB: 0 if not known */
587 dtimperiod = 1;
588 dtimcount = conf->dtim_count;
589 if (dtimcount >= dtimperiod) /* NB: sanity check */
590 dtimcount = 0;
591 cfpperiod = 1; /* NB: no PCF support yet */
592 cfpcount = 0;
593
594 sleepduration = conf->listen_interval * intval;
595 if (sleepduration <= 0)
596 sleepduration = intval;
597
598 /*
599 * Pull nexttbtt forward to reflect the current
600 * TSF and calculate dtim+cfp state for the result.
601 */
602 tsf = ath9k_hw_gettsf64(sc->sc_ah);
603 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
Jouni Malinen267a9012009-05-20 21:56:39 +0300604
605 num_beacons = tsftu / intval + 1;
606 offset = tsftu % intval;
607 nexttbtt = tsftu - offset;
608 if (offset)
Sujith5379c8a2009-03-03 10:16:54 +0530609 nexttbtt += intval;
Jouni Malinen267a9012009-05-20 21:56:39 +0300610
611 /* DTIM Beacon every dtimperiod Beacon */
612 dtim_dec_count = num_beacons % dtimperiod;
613 /* CFP every cfpperiod DTIM Beacon */
614 cfp_dec_count = (num_beacons / dtimperiod) % cfpperiod;
615 if (dtim_dec_count)
616 cfp_dec_count++;
617
618 dtimcount -= dtim_dec_count;
619 if (dtimcount < 0)
620 dtimcount += dtimperiod;
621
622 cfpcount -= cfp_dec_count;
623 if (cfpcount < 0)
624 cfpcount += cfpperiod;
Sujith5379c8a2009-03-03 10:16:54 +0530625
626 bs.bs_intval = intval;
627 bs.bs_nexttbtt = nexttbtt;
628 bs.bs_dtimperiod = dtimperiod*intval;
629 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
630 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
631 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
632 bs.bs_cfpmaxduration = 0;
633
634 /*
635 * Calculate the number of consecutive beacons to miss* before taking
636 * a BMISS interrupt. The configuration is specified in TU so we only
637 * need calculate based on the beacon interval. Note that we clamp the
638 * result to at most 15 beacons.
639 */
640 if (sleepduration > intval) {
641 bs.bs_bmissthreshold = conf->listen_interval *
642 ATH_DEFAULT_BMISS_LIMIT / 2;
Sujith5640b082008-10-29 10:16:06 +0530643 } else {
Sujith5379c8a2009-03-03 10:16:54 +0530644 bs.bs_bmissthreshold = DIV_ROUND_UP(conf->bmiss_timeout, intval);
645 if (bs.bs_bmissthreshold > 15)
646 bs.bs_bmissthreshold = 15;
647 else if (bs.bs_bmissthreshold <= 0)
648 bs.bs_bmissthreshold = 1;
Sujith5640b082008-10-29 10:16:06 +0530649 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650
Sujith5379c8a2009-03-03 10:16:54 +0530651 /*
652 * Calculate sleep duration. The configuration is given in ms.
653 * We ensure a multiple of the beacon period is used. Also, if the sleep
654 * duration is greater than the DTIM period then it makes senses
655 * to make it a multiple of that.
656 *
657 * XXX fixed at 100ms
658 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700659
Sujith5379c8a2009-03-03 10:16:54 +0530660 bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100), sleepduration);
661 if (bs.bs_sleepduration > bs.bs_dtimperiod)
662 bs.bs_sleepduration = bs.bs_dtimperiod;
663
664 /* TSF out of range threshold fixed at 1 second */
665 bs.bs_tsfoor_threshold = ATH9K_TSFOOR_THRESHOLD;
666
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700667 DPRINTF(sc->sc_ah, ATH_DBG_BEACON, "tsf: %llu tsftu: %u\n", tsf, tsftu);
668 DPRINTF(sc->sc_ah, ATH_DBG_BEACON,
Sujith5379c8a2009-03-03 10:16:54 +0530669 "bmiss: %u sleep: %u cfp-period: %u maxdur: %u next: %u\n",
670 bs.bs_bmissthreshold, bs.bs_sleepduration,
671 bs.bs_cfpperiod, bs.bs_cfpmaxduration, bs.bs_cfpnext);
672
673 /* Set the computed STA beacon timers */
674
675 ath9k_hw_set_interrupts(sc->sc_ah, 0);
676 ath9k_hw_set_sta_beacon_timers(sc->sc_ah, &bs);
677 sc->imask |= ATH9K_INT_BMISS;
678 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
679}
680
681static void ath_beacon_config_adhoc(struct ath_softc *sc,
682 struct ath_beacon_config *conf,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200683 struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530684{
685 u64 tsf;
686 u32 tsftu, intval, nexttbtt;
687
688 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
689
Jouni Malinen546256f2009-05-28 19:25:28 +0300690
Sujith5379c8a2009-03-03 10:16:54 +0530691 /* Pull nexttbtt forward to reflect the current TSF */
692
693 nexttbtt = TSF_TO_TU(sc->beacon.bc_tstamp >> 32, sc->beacon.bc_tstamp);
694 if (nexttbtt == 0)
695 nexttbtt = intval;
696 else if (intval)
697 nexttbtt = roundup(nexttbtt, intval);
698
699 tsf = ath9k_hw_gettsf64(sc->sc_ah);
700 tsftu = TSF_TO_TU((u32)(tsf>>32), (u32)tsf) + FUDGE;
701 do {
702 nexttbtt += intval;
703 } while (nexttbtt < tsftu);
704
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700705 DPRINTF(sc->sc_ah, ATH_DBG_BEACON,
Sujith5379c8a2009-03-03 10:16:54 +0530706 "IBSS nexttbtt %u intval %u (%u)\n",
707 nexttbtt, intval, conf->beacon_interval);
708
709 /*
710 * In IBSS mode enable the beacon timers but only enable SWBA interrupts
711 * if we need to manually prepare beacon frames. Otherwise we use a
712 * self-linked tx descriptor and let the hardware deal with things.
713 */
714 intval |= ATH9K_BEACON_ENA;
715 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL))
716 sc->imask |= ATH9K_INT_SWBA;
717
718 ath_beaconq_config(sc);
719
720 /* Set the computed ADHOC beacon timers */
721
722 ath9k_hw_set_interrupts(sc->sc_ah, 0);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -0700723 ath9k_beacon_init(sc, nexttbtt, intval);
Sujith5379c8a2009-03-03 10:16:54 +0530724 sc->beacon.bmisscnt = 0;
725 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
726
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530727 /* FIXME: Handle properly when vif is NULL */
728 if (vif && sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200729 ath_beacon_start_adhoc(sc, vif);
Sujith5379c8a2009-03-03 10:16:54 +0530730}
731
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200732void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530733{
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530734 struct ath_beacon_config *cur_conf = &sc->cur_beacon_conf;
735 enum nl80211_iftype iftype;
Sujith5379c8a2009-03-03 10:16:54 +0530736
737 /* Setup the beacon configuration parameters */
738
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200739 if (vif) {
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530740 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
Sujith459f5f92008-09-17 10:15:36 +0530741
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530742 iftype = vif->type;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700743
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530744 cur_conf->beacon_interval = bss_conf->beacon_int;
745 cur_conf->dtim_period = bss_conf->dtim_period;
746 cur_conf->listen_interval = 1;
747 cur_conf->dtim_count = 1;
748 cur_conf->bmiss_timeout =
749 ATH_DEFAULT_BMISS_LIMIT * cur_conf->beacon_interval;
750 } else {
751 iftype = sc->sc_ah->opmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700752 }
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530753
Vasanthakumar Thiagarajanc4f9f162009-06-12 10:55:55 +0530754 /*
755 * It looks like mac80211 may end up using beacon interval of zero in
756 * some cases (at least for mesh point). Avoid getting into an
757 * infinite loop by using a bit safer value instead. To be safe,
758 * do sanity check on beacon interval for all operating modes.
759 */
760 if (cur_conf->beacon_interval == 0)
761 cur_conf->beacon_interval = 100;
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530762
763 switch (iftype) {
764 case NL80211_IFTYPE_AP:
765 ath_beacon_config_ap(sc, cur_conf);
766 break;
767 case NL80211_IFTYPE_ADHOC:
768 case NL80211_IFTYPE_MESH_POINT:
769 ath_beacon_config_adhoc(sc, cur_conf, vif);
770 break;
771 case NL80211_IFTYPE_STATION:
772 ath_beacon_config_sta(sc, cur_conf);
773 break;
774 default:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700775 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG,
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530776 "Unsupported beaconing mode\n");
777 return;
778 }
779
780 sc->sc_flags |= SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700781}