blob: 2f003132463bb7094f8f437020332e667fb24d53 [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;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070029 struct ath_common *common = ath9k_hw_common(ah);
Sujithea9880f2008-08-07 10:53:10 +053030 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070031
Sujithb77f4832008-12-07 21:44:03 +053032 ath9k_hw_get_txq_props(ah, sc->beacon.beaconq, &qi);
Sujith2660b812009-02-09 13:27:26 +053033 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070034 /* Always burst out beacon and CAB traffic. */
35 qi.tqi_aifs = 1;
36 qi.tqi_cwmin = 0;
37 qi.tqi_cwmax = 0;
38 } else {
39 /* Adhoc mode; important thing is to use 2x cwmin. */
Sujithb77f4832008-12-07 21:44:03 +053040 qi.tqi_aifs = sc->beacon.beacon_qi.tqi_aifs;
41 qi.tqi_cwmin = 2*sc->beacon.beacon_qi.tqi_cwmin;
42 qi.tqi_cwmax = sc->beacon.beacon_qi.tqi_cwmax;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070043 }
44
Sujithb77f4832008-12-07 21:44:03 +053045 if (!ath9k_hw_set_txq_props(ah, sc->beacon.beaconq, &qi)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070046 ath_print(common, ATH_DBG_FATAL,
47 "Unable to update h/w beacon queue parameters\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070048 return 0;
49 } else {
Sujith9fc9ab02009-03-03 10:16:51 +053050 ath9k_hw_resettxqueue(ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070051 return 1;
52 }
53}
54
55/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070056 * Associates the beacon frame buffer with a transmit descriptor. Will set
57 * up all required antenna switch parameters, rate codes, and channel flags.
58 * Beacons are always sent out at the lowest rate, and are not retried.
59*/
Sujith9fc9ab02009-03-03 10:16:51 +053060static void ath_beacon_setup(struct ath_softc *sc, struct ath_vif *avp,
61 struct ath_buf *bf)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070062{
Sujitha22be222009-03-30 15:28:36 +053063 struct sk_buff *skb = bf->bf_mpdu;
Sujithcbe61d82009-02-09 13:27:12 +053064 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070065 struct ath_desc *ds;
Sujith980b24d2008-09-17 10:15:09 +053066 struct ath9k_11n_rate_series series[4];
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -040067 const struct ath_rate_table *rt;
Sujith9fc9ab02009-03-03 10:16:51 +053068 int flags, antenna, ctsrate = 0, ctsduration = 0;
69 u8 rate;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070070
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070071 ds = bf->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070072 flags = ATH9K_TXDESC_NOACK;
73
Pat Erley9cb54122009-03-20 22:59:59 -040074 if (((sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) ||
75 (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) &&
Sujith2660b812009-02-09 13:27:26 +053076 (ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070077 ds->ds_link = bf->bf_daddr; /* self-linked */
78 flags |= ATH9K_TXDESC_VEOL;
79 /* Let hardware handle antenna switching. */
80 antenna = 0;
81 } else {
82 ds->ds_link = 0;
83 /*
84 * Switch antenna every beacon.
Sujith9fc9ab02009-03-03 10:16:51 +053085 * Should only switch every beacon period, not for every SWBA
86 * XXX assumes two antennae
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070087 */
Sujith17d79042009-02-09 13:27:03 +053088 antenna = ((sc->beacon.ast_be_xmit / sc->nbcnvifs) & 1 ? 2 : 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070089 }
90
91 ds->ds_data = bf->bf_buf_addr;
92
Sujith3706de62008-12-07 21:42:10 +053093 rt = sc->cur_rate_table;
Sujith9fc9ab02009-03-03 10:16:51 +053094 rate = rt->info[0].ratecode;
Sujith672840a2008-08-11 14:05:08 +053095 if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
Sujith9fc9ab02009-03-03 10:16:51 +053096 rate |= rt->info[0].short_preamble;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070097
Sujith9fc9ab02009-03-03 10:16:51 +053098 ath9k_hw_set11n_txdesc(ah, ds, skb->len + FCS_LEN,
99 ATH9K_PKT_TYPE_BEACON,
100 MAX_RATE_POWER,
101 ATH9K_TXKEYIX_INVALID,
102 ATH9K_KEY_TYPE_CLEAR,
103 flags);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700104
105 /* NB: beacon's BufLen must be a multiple of 4 bytes */
Sujith9fc9ab02009-03-03 10:16:51 +0530106 ath9k_hw_filltxdesc(ah, ds, roundup(skb->len, 4),
107 true, true, ds);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700108
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700109 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700110 series[0].Tries = 1;
111 series[0].Rate = rate;
Sujith17d79042009-02-09 13:27:03 +0530112 series[0].ChSel = sc->tx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700113 series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0;
Sujith9fc9ab02009-03-03 10:16:51 +0530114 ath9k_hw_set11n_ratescenario(ah, ds, ds, 0, ctsrate, ctsduration,
115 series, 4, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700116}
117
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200118static struct ath_buf *ath_beacon_generate(struct ieee80211_hw *hw,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200119 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700120{
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200121 struct ath_wiphy *aphy = hw->priv;
122 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700123 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700124 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530125 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700126 struct sk_buff *skb;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700127 struct ath_txq *cabq;
Jouni Malinen147583c2008-08-11 14:01:50 +0300128 struct ieee80211_tx_info *info;
Sujith980b24d2008-09-17 10:15:09 +0530129 int cabq_depth;
130
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200131 if (aphy->state != ATH_WIPHY_ACTIVE)
132 return NULL;
133
Sujith5640b082008-10-29 10:16:06 +0530134 avp = (void *)vif->drv_priv;
Sujithb77f4832008-12-07 21:44:03 +0530135 cabq = sc->beacon.cabq;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700136
Sujithd8baa932009-03-30 15:28:25 +0530137 if (avp->av_bcbuf == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700138 return NULL;
Sujith980b24d2008-09-17 10:15:09 +0530139
Sujith9fc9ab02009-03-03 10:16:51 +0530140 /* Release the old beacon first */
141
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700142 bf = avp->av_bcbuf;
Sujitha22be222009-03-30 15:28:36 +0530143 skb = bf->bf_mpdu;
Jouni Malinena8fff502008-08-11 14:01:48 +0300144 if (skb) {
Gabor Juhos7da3c552009-01-14 20:17:03 +0100145 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530146 skb->len, DMA_TO_DEVICE);
Jouni Malinen3fbb9d92008-12-05 20:42:45 +0200147 dev_kfree_skb_any(skb);
Jouni Malinena8fff502008-08-11 14:01:48 +0300148 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700149
Sujith9fc9ab02009-03-03 10:16:51 +0530150 /* Get a new beacon from mac80211 */
151
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200152 skb = ieee80211_beacon_get(hw, vif);
Jouni Malinena8fff502008-08-11 14:01:48 +0300153 bf->bf_mpdu = skb;
154 if (skb == NULL)
155 return NULL;
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200156 ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp =
157 avp->tsf_adjust;
Sujith980b24d2008-09-17 10:15:09 +0530158
Jouni Malinen147583c2008-08-11 14:01:50 +0300159 info = IEEE80211_SKB_CB(skb);
160 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
161 /*
162 * TODO: make sure the seq# gets assigned properly (vs. other
163 * TX frames)
164 */
Sujith980b24d2008-09-17 10:15:09 +0530165 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithb77f4832008-12-07 21:44:03 +0530166 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +0300167 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +0530168 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +0300169 }
Sujith980b24d2008-09-17 10:15:09 +0530170
Jouni Malinena8fff502008-08-11 14:01:48 +0300171 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100172 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530173 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100174 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800175 dev_kfree_skb_any(skb);
176 bf->bf_mpdu = NULL;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700177 ath_print(common, ATH_DBG_FATAL,
178 "dma_mapping_error on beaconing\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800179 return NULL;
180 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700181
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200182 skb = ieee80211_get_buffered_bc(hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700183
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700184 /*
185 * if the CABQ traffic from previous DTIM is pending and the current
186 * beacon is also a DTIM.
Sujith17d79042009-02-09 13:27:03 +0530187 * 1) if there is only one vif let the cab traffic continue.
188 * 2) if there are more than one vif and we are using staggered
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700189 * beacons, then drain the cabq by dropping all the frames in
Sujith17d79042009-02-09 13:27:03 +0530190 * the cabq so that the current vifs cab traffic can be scheduled.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700191 */
192 spin_lock_bh(&cabq->axq_lock);
193 cabq_depth = cabq->axq_depth;
194 spin_unlock_bh(&cabq->axq_lock);
195
Jouni Malinene022edb2008-08-22 17:31:33 +0300196 if (skb && cabq_depth) {
Sujith17d79042009-02-09 13:27:03 +0530197 if (sc->nvifs > 1) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700198 ath_print(common, ATH_DBG_BEACON,
199 "Flushing previous cabq traffic\n");
Sujith9fc9ab02009-03-03 10:16:51 +0530200 ath_draintxq(sc, cabq, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700201 }
202 }
203
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700204 ath_beacon_setup(sc, avp, bf);
205
Jouni Malinene022edb2008-08-22 17:31:33 +0300206 while (skb) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200207 ath_tx_cabq(hw, skb);
208 skb = ieee80211_get_buffered_bc(hw, vif);
Jouni Malinene022edb2008-08-22 17:31:33 +0300209 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700210
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700211 return bf;
212}
213
214/*
215 * Startup beacon transmission for adhoc mode when they are sent entirely
216 * by the hardware using the self-linked descriptor + veol trick.
217*/
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200218static void ath_beacon_start_adhoc(struct ath_softc *sc,
219 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700220{
Sujithcbe61d82009-02-09 13:27:12 +0530221 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700222 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700223 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530224 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700225 struct sk_buff *skb;
226
Sujith5640b082008-10-29 10:16:06 +0530227 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700228
Sujith9fc9ab02009-03-03 10:16:51 +0530229 if (avp->av_bcbuf == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700230 return;
Sujith9fc9ab02009-03-03 10:16:51 +0530231
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700232 bf = avp->av_bcbuf;
Sujitha22be222009-03-30 15:28:36 +0530233 skb = bf->bf_mpdu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700234
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700235 ath_beacon_setup(sc, avp, bf);
236
237 /* NB: caller is known to have already stopped tx dma */
Sujithb77f4832008-12-07 21:44:03 +0530238 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bf->bf_daddr);
239 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700240 ath_print(common, ATH_DBG_BEACON, "TXDP%u = %llx (%p)\n",
241 sc->beacon.beaconq, ito64(bf->bf_daddr), bf->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700242}
243
Sujithcbe61d82009-02-09 13:27:12 +0530244int ath_beaconq_setup(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700245{
Sujithea9880f2008-08-07 10:53:10 +0530246 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700247
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700248 memset(&qi, 0, sizeof(qi));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700249 qi.tqi_aifs = 1;
250 qi.tqi_cwmin = 0;
251 qi.tqi_cwmax = 0;
252 /* NB: don't enable any interrupts */
253 return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
254}
255
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200256int ath_beacon_alloc(struct ath_wiphy *aphy, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700257{
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200258 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700259 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith17d79042009-02-09 13:27:03 +0530260 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700261 struct ath_buf *bf;
262 struct sk_buff *skb;
Sujith459f5f92008-09-17 10:15:36 +0530263 __le64 tstamp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700264
Sujith5640b082008-10-29 10:16:06 +0530265 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700266
267 /* Allocate a beacon descriptor if we haven't done so. */
268 if (!avp->av_bcbuf) {
Sujith980b24d2008-09-17 10:15:09 +0530269 /* Allocate beacon state for hostap/ibss. We know
270 * a buffer is available. */
Sujithb77f4832008-12-07 21:44:03 +0530271 avp->av_bcbuf = list_first_entry(&sc->beacon.bbuf,
Sujith980b24d2008-09-17 10:15:09 +0530272 struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700273 list_del(&avp->av_bcbuf->list);
274
Sujith2660b812009-02-09 13:27:26 +0530275 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP ||
276 !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700277 int slot;
278 /*
Sujith17d79042009-02-09 13:27:03 +0530279 * Assign the vif to a beacon xmit slot. As
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700280 * above, this cannot fail to find one.
281 */
282 avp->av_bslot = 0;
283 for (slot = 0; slot < ATH_BCBUF; slot++)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200284 if (sc->beacon.bslot[slot] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700285 /*
286 * XXX hack, space out slots to better
287 * deal with misses
288 */
289 if (slot+1 < ATH_BCBUF &&
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200290 sc->beacon.bslot[slot+1] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700291 avp->av_bslot = slot+1;
292 break;
293 }
294 avp->av_bslot = slot;
295 /* NB: keep looking for a double slot */
296 }
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200297 BUG_ON(sc->beacon.bslot[avp->av_bslot] != NULL);
298 sc->beacon.bslot[avp->av_bslot] = vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200299 sc->beacon.bslot_aphy[avp->av_bslot] = aphy;
Sujith17d79042009-02-09 13:27:03 +0530300 sc->nbcnvifs++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700301 }
302 }
303
Sujith9fc9ab02009-03-03 10:16:51 +0530304 /* release the previous beacon frame, if it already exists. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700305 bf = avp->av_bcbuf;
306 if (bf->bf_mpdu != NULL) {
Sujitha22be222009-03-30 15:28:36 +0530307 skb = bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100308 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530309 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700310 dev_kfree_skb_any(skb);
311 bf->bf_mpdu = NULL;
312 }
313
Sujith9fc9ab02009-03-03 10:16:51 +0530314 /* NB: the beacon data buffer must be 32-bit aligned. */
Sujith5640b082008-10-29 10:16:06 +0530315 skb = ieee80211_beacon_get(sc->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700316 if (skb == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700317 ath_print(common, ATH_DBG_BEACON, "cannot get skb\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700318 return -ENOMEM;
319 }
320
Sujith459f5f92008-09-17 10:15:36 +0530321 tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Sujithb77f4832008-12-07 21:44:03 +0530322 sc->beacon.bc_tstamp = le64_to_cpu(tstamp);
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200323 /* Calculate a TSF adjustment factor required for staggered beacons. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700324 if (avp->av_bslot > 0) {
325 u64 tsfadjust;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700326 int intval;
327
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200328 intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700329
330 /*
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200331 * Calculate the TSF offset for this beacon slot, i.e., the
332 * number of usecs that need to be added to the timestamp field
333 * in Beacon and Probe Response frames. Beacon slot 0 is
334 * processed at the correct offset, so it does not require TSF
335 * adjustment. Other slots are adjusted to get the timestamp
336 * close to the TBTT for the BSS.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700337 */
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200338 tsfadjust = intval * avp->av_bslot / ATH_BCBUF;
339 avp->tsf_adjust = cpu_to_le64(TU_TO_USEC(tsfadjust));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700340
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700341 ath_print(common, ATH_DBG_BEACON,
342 "stagger beacons, bslot %d intval "
343 "%u tsfadjust %llu\n",
344 avp->av_bslot, intval, (unsigned long long)tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700345
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200346 ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp =
347 avp->tsf_adjust;
348 } else
349 avp->tsf_adjust = cpu_to_le64(0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700350
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800351 bf->bf_mpdu = skb;
Jouni Malinena8fff502008-08-11 14:01:48 +0300352 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100353 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530354 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100355 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800356 dev_kfree_skb_any(skb);
357 bf->bf_mpdu = NULL;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700358 ath_print(common, ATH_DBG_FATAL,
359 "dma_mapping_error on beacon alloc\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800360 return -ENOMEM;
361 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700362
363 return 0;
364}
365
Sujith17d79042009-02-09 13:27:03 +0530366void ath_beacon_return(struct ath_softc *sc, struct ath_vif *avp)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700367{
368 if (avp->av_bcbuf != NULL) {
369 struct ath_buf *bf;
370
371 if (avp->av_bslot != -1) {
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200372 sc->beacon.bslot[avp->av_bslot] = NULL;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200373 sc->beacon.bslot_aphy[avp->av_bslot] = NULL;
Sujith17d79042009-02-09 13:27:03 +0530374 sc->nbcnvifs--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700375 }
376
377 bf = avp->av_bcbuf;
378 if (bf->bf_mpdu != NULL) {
Sujitha22be222009-03-30 15:28:36 +0530379 struct sk_buff *skb = bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100380 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530381 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700382 dev_kfree_skb_any(skb);
383 bf->bf_mpdu = NULL;
384 }
Sujithb77f4832008-12-07 21:44:03 +0530385 list_add_tail(&bf->list, &sc->beacon.bbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700386
387 avp->av_bcbuf = NULL;
388 }
389}
390
Sujith9fc9ab02009-03-03 10:16:51 +0530391void ath_beacon_tasklet(unsigned long data)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700392{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700393 struct ath_softc *sc = (struct ath_softc *)data;
Sujithcbe61d82009-02-09 13:27:12 +0530394 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700395 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700396 struct ath_buf *bf = NULL;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200397 struct ieee80211_vif *vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200398 struct ath_wiphy *aphy;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200399 int slot;
Sujith9546aae2009-03-03 10:16:53 +0530400 u32 bfaddr, bc = 0, tsftu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700401 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700402 u16 intval;
403
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700404 /*
405 * Check if the previous beacon has gone out. If
406 * not don't try to post another, skip this period
407 * and wait for the next. Missed beacons indicate
408 * a problem and should not occur. If we miss too
409 * many consecutive beacons reset the device.
410 */
Sujithb77f4832008-12-07 21:44:03 +0530411 if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0) {
412 sc->beacon.bmisscnt++;
Sujith9546aae2009-03-03 10:16:53 +0530413
Sujithb77f4832008-12-07 21:44:03 +0530414 if (sc->beacon.bmisscnt < BSTUCK_THRESH) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700415 ath_print(common, ATH_DBG_BEACON,
416 "missed %u consecutive beacons\n",
417 sc->beacon.bmisscnt);
Sujithb77f4832008-12-07 21:44:03 +0530418 } else if (sc->beacon.bmisscnt >= BSTUCK_THRESH) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700419 ath_print(common, ATH_DBG_BEACON,
420 "beacon is officially stuck\n");
Jeff Hansenb74444f2009-05-27 12:48:27 +0000421 sc->sc_flags |= SC_OP_TSF_RESET;
Sujith9546aae2009-03-03 10:16:53 +0530422 ath_reset(sc, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700423 }
Sujith9546aae2009-03-03 10:16:53 +0530424
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700425 return;
426 }
Sujith980b24d2008-09-17 10:15:09 +0530427
Sujithb77f4832008-12-07 21:44:03 +0530428 if (sc->beacon.bmisscnt != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700429 ath_print(common, ATH_DBG_BEACON,
430 "resume beacon xmit after %u misses\n",
431 sc->beacon.bmisscnt);
Sujithb77f4832008-12-07 21:44:03 +0530432 sc->beacon.bmisscnt = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700433 }
434
435 /*
436 * Generate beacon frames. we are sending frames
437 * staggered so calculate the slot for this frame based
438 * on the tsf to safeguard against missing an swba.
439 */
440
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200441 intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442
443 tsf = ath9k_hw_gettsf64(ah);
444 tsftu = TSF_TO_TU(tsf>>32, tsf);
445 slot = ((tsftu % intval) * ATH_BCBUF) / intval;
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200446 /*
447 * Reverse the slot order to get slot 0 on the TBTT offset that does
448 * not require TSF adjustment and other slots adding
449 * slot/ATH_BCBUF * beacon_int to timestamp. For example, with
450 * ATH_BCBUF = 4, we process beacon slots as follows: 3 2 1 0 3 2 1 ..
451 * and slot 0 is at correct offset to TBTT.
452 */
453 slot = ATH_BCBUF - slot - 1;
454 vif = sc->beacon.bslot[slot];
455 aphy = sc->beacon.bslot_aphy[slot];
Sujith980b24d2008-09-17 10:15:09 +0530456
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700457 ath_print(common, ATH_DBG_BEACON,
458 "slot %d [tsf %llu tsftu %u intval %u] vif %p\n",
459 slot, tsf, tsftu, intval, vif);
Sujith980b24d2008-09-17 10:15:09 +0530460
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461 bfaddr = 0;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200462 if (vif) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200463 bf = ath_beacon_generate(aphy->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700464 if (bf != NULL) {
465 bfaddr = bf->bf_daddr;
466 bc = 1;
467 }
468 }
Sujith9546aae2009-03-03 10:16:53 +0530469
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700470 /*
471 * Handle slot time change when a non-ERP station joins/leaves
472 * an 11g network. The 802.11 layer notifies us via callback,
473 * we mark updateslot, then wait one beacon before effecting
474 * the change. This gives associated stations at least one
475 * beacon interval to note the state change.
476 *
477 * NB: The slot time change state machine is clocked according
478 * to whether we are bursting or staggering beacons. We
479 * recognize the request to update and record the current
480 * slot then don't transition until that slot is reached
481 * again. If we miss a beacon for that slot then we'll be
482 * slow to transition but we'll be sure at least one beacon
483 * interval has passed. When bursting slot is always left
484 * set to ATH_BCBUF so this check is a noop.
485 */
Sujithb77f4832008-12-07 21:44:03 +0530486 if (sc->beacon.updateslot == UPDATE) {
487 sc->beacon.updateslot = COMMIT; /* commit next beacon */
488 sc->beacon.slotupdate = slot;
489 } else if (sc->beacon.updateslot == COMMIT && sc->beacon.slotupdate == slot) {
490 ath9k_hw_setslottime(sc->sc_ah, sc->beacon.slottime);
491 sc->beacon.updateslot = OK;
Sujithff37e332008-11-24 12:07:55 +0530492 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700493 if (bfaddr != 0) {
494 /*
495 * Stop any current dma and put the new frame(s) on the queue.
496 * This should never fail since we check above that no frames
497 * are still pending on the queue.
498 */
Sujithb77f4832008-12-07 21:44:03 +0530499 if (!ath9k_hw_stoptxdma(ah, sc->beacon.beaconq)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700500 ath_print(common, ATH_DBG_FATAL,
Sujithb77f4832008-12-07 21:44:03 +0530501 "beacon queue %u did not stop?\n", sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700502 }
503
504 /* NB: cabq traffic should already be queued and primed */
Sujithb77f4832008-12-07 21:44:03 +0530505 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bfaddr);
506 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700507
Sujith17d79042009-02-09 13:27:03 +0530508 sc->beacon.ast_be_xmit += bc; /* XXX per-vif? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700509 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700510}
511
Luis R. Rodriguez21526d52009-09-09 20:05:39 -0700512static void ath9k_beacon_init(struct ath_softc *sc,
513 u32 next_beacon,
514 u32 beacon_period)
515{
516 if (beacon_period & ATH9K_BEACON_RESET_TSF)
517 ath9k_ps_wakeup(sc);
518
519 ath9k_hw_beaconinit(sc->sc_ah, next_beacon, beacon_period);
520
521 if (beacon_period & ATH9K_BEACON_RESET_TSF)
522 ath9k_ps_restore(sc);
523}
524
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700525/*
Sujith5379c8a2009-03-03 10:16:54 +0530526 * For multi-bss ap support beacons are either staggered evenly over N slots or
527 * burst together. For the former arrange for the SWBA to be delivered for each
528 * slot. Slots that are not occupied will generate nothing.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700529 */
Sujith5379c8a2009-03-03 10:16:54 +0530530static void ath_beacon_config_ap(struct ath_softc *sc,
Vasanthakumar Thiagarajand31e20a2009-05-15 18:59:21 +0530531 struct ath_beacon_config *conf)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700532{
Sujith980b24d2008-09-17 10:15:09 +0530533 u32 nexttbtt, intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700534
Sujithb238e902009-03-03 10:16:56 +0530535 /* Configure the timers only when the TSF has to be reset */
536
537 if (!(sc->sc_flags & SC_OP_TSF_RESET))
538 return;
539
Sujith5379c8a2009-03-03 10:16:54 +0530540 /* NB: the beacon interval is kept internally in TU's */
541 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
542 intval /= ATH_BCBUF; /* for staggered beacons */
543 nexttbtt = intval;
544 intval |= ATH9K_BEACON_RESET_TSF;
545
546 /*
547 * In AP mode we enable the beacon timers and SWBA interrupts to
548 * prepare beacon frames.
549 */
550 intval |= ATH9K_BEACON_ENA;
551 sc->imask |= ATH9K_INT_SWBA;
552 ath_beaconq_config(sc);
553
554 /* Set the computed AP beacon timers */
555
556 ath9k_hw_set_interrupts(sc->sc_ah, 0);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -0700557 ath9k_beacon_init(sc, nexttbtt, intval);
Sujith5379c8a2009-03-03 10:16:54 +0530558 sc->beacon.bmisscnt = 0;
559 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
Sujithb238e902009-03-03 10:16:56 +0530560
561 /* Clear the reset TSF flag, so that subsequent beacon updation
562 will not reset the HW TSF. */
563
564 sc->sc_flags &= ~SC_OP_TSF_RESET;
Sujith5379c8a2009-03-03 10:16:54 +0530565}
566
567/*
568 * This sets up the beacon timers according to the timestamp of the last
569 * received beacon and the current TSF, configures PCF and DTIM
570 * handling, programs the sleep registers so the hardware will wakeup in
571 * time to receive beacons, and configures the beacon miss handling so
572 * we'll receive a BMISS interrupt when we stop seeing beacons from the AP
573 * we've associated with.
574 */
575static void ath_beacon_config_sta(struct ath_softc *sc,
Vasanthakumar Thiagarajand31e20a2009-05-15 18:59:21 +0530576 struct ath_beacon_config *conf)
Sujith5379c8a2009-03-03 10:16:54 +0530577{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700578 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith5379c8a2009-03-03 10:16:54 +0530579 struct ath9k_beacon_state bs;
580 int dtimperiod, dtimcount, sleepduration;
581 int cfpperiod, cfpcount;
582 u32 nexttbtt = 0, intval, tsftu;
583 u64 tsf;
Jouni Malinen267a9012009-05-20 21:56:39 +0300584 int num_beacons, offset, dtim_dec_count, cfp_dec_count;
Sujith5379c8a2009-03-03 10:16:54 +0530585
586 memset(&bs, 0, sizeof(bs));
587 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
588
589 /*
590 * Setup dtim and cfp parameters according to
591 * last beacon we received (which may be none).
592 */
593 dtimperiod = conf->dtim_period;
594 if (dtimperiod <= 0) /* NB: 0 if not known */
595 dtimperiod = 1;
596 dtimcount = conf->dtim_count;
597 if (dtimcount >= dtimperiod) /* NB: sanity check */
598 dtimcount = 0;
599 cfpperiod = 1; /* NB: no PCF support yet */
600 cfpcount = 0;
601
602 sleepduration = conf->listen_interval * intval;
603 if (sleepduration <= 0)
604 sleepduration = intval;
605
606 /*
607 * Pull nexttbtt forward to reflect the current
608 * TSF and calculate dtim+cfp state for the result.
609 */
610 tsf = ath9k_hw_gettsf64(sc->sc_ah);
611 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
Jouni Malinen267a9012009-05-20 21:56:39 +0300612
613 num_beacons = tsftu / intval + 1;
614 offset = tsftu % intval;
615 nexttbtt = tsftu - offset;
616 if (offset)
Sujith5379c8a2009-03-03 10:16:54 +0530617 nexttbtt += intval;
Jouni Malinen267a9012009-05-20 21:56:39 +0300618
619 /* DTIM Beacon every dtimperiod Beacon */
620 dtim_dec_count = num_beacons % dtimperiod;
621 /* CFP every cfpperiod DTIM Beacon */
622 cfp_dec_count = (num_beacons / dtimperiod) % cfpperiod;
623 if (dtim_dec_count)
624 cfp_dec_count++;
625
626 dtimcount -= dtim_dec_count;
627 if (dtimcount < 0)
628 dtimcount += dtimperiod;
629
630 cfpcount -= cfp_dec_count;
631 if (cfpcount < 0)
632 cfpcount += cfpperiod;
Sujith5379c8a2009-03-03 10:16:54 +0530633
634 bs.bs_intval = intval;
635 bs.bs_nexttbtt = nexttbtt;
636 bs.bs_dtimperiod = dtimperiod*intval;
637 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
638 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
639 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
640 bs.bs_cfpmaxduration = 0;
641
642 /*
643 * Calculate the number of consecutive beacons to miss* before taking
644 * a BMISS interrupt. The configuration is specified in TU so we only
645 * need calculate based on the beacon interval. Note that we clamp the
646 * result to at most 15 beacons.
647 */
648 if (sleepduration > intval) {
649 bs.bs_bmissthreshold = conf->listen_interval *
650 ATH_DEFAULT_BMISS_LIMIT / 2;
Sujith5640b082008-10-29 10:16:06 +0530651 } else {
Sujith5379c8a2009-03-03 10:16:54 +0530652 bs.bs_bmissthreshold = DIV_ROUND_UP(conf->bmiss_timeout, intval);
653 if (bs.bs_bmissthreshold > 15)
654 bs.bs_bmissthreshold = 15;
655 else if (bs.bs_bmissthreshold <= 0)
656 bs.bs_bmissthreshold = 1;
Sujith5640b082008-10-29 10:16:06 +0530657 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700658
Sujith5379c8a2009-03-03 10:16:54 +0530659 /*
660 * Calculate sleep duration. The configuration is given in ms.
661 * We ensure a multiple of the beacon period is used. Also, if the sleep
662 * duration is greater than the DTIM period then it makes senses
663 * to make it a multiple of that.
664 *
665 * XXX fixed at 100ms
666 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700667
Sujith5379c8a2009-03-03 10:16:54 +0530668 bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100), sleepduration);
669 if (bs.bs_sleepduration > bs.bs_dtimperiod)
670 bs.bs_sleepduration = bs.bs_dtimperiod;
671
672 /* TSF out of range threshold fixed at 1 second */
673 bs.bs_tsfoor_threshold = ATH9K_TSFOOR_THRESHOLD;
674
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700675 ath_print(common, ATH_DBG_BEACON, "tsf: %llu tsftu: %u\n", tsf, tsftu);
676 ath_print(common, ATH_DBG_BEACON,
677 "bmiss: %u sleep: %u cfp-period: %u maxdur: %u next: %u\n",
678 bs.bs_bmissthreshold, bs.bs_sleepduration,
679 bs.bs_cfpperiod, bs.bs_cfpmaxduration, bs.bs_cfpnext);
Sujith5379c8a2009-03-03 10:16:54 +0530680
681 /* Set the computed STA beacon timers */
682
683 ath9k_hw_set_interrupts(sc->sc_ah, 0);
684 ath9k_hw_set_sta_beacon_timers(sc->sc_ah, &bs);
685 sc->imask |= ATH9K_INT_BMISS;
686 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
687}
688
689static void ath_beacon_config_adhoc(struct ath_softc *sc,
690 struct ath_beacon_config *conf,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200691 struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530692{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700693 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith5379c8a2009-03-03 10:16:54 +0530694 u64 tsf;
695 u32 tsftu, intval, nexttbtt;
696
697 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
698
Jouni Malinen546256f2009-05-28 19:25:28 +0300699
Sujith5379c8a2009-03-03 10:16:54 +0530700 /* Pull nexttbtt forward to reflect the current TSF */
701
702 nexttbtt = TSF_TO_TU(sc->beacon.bc_tstamp >> 32, sc->beacon.bc_tstamp);
703 if (nexttbtt == 0)
704 nexttbtt = intval;
705 else if (intval)
706 nexttbtt = roundup(nexttbtt, intval);
707
708 tsf = ath9k_hw_gettsf64(sc->sc_ah);
709 tsftu = TSF_TO_TU((u32)(tsf>>32), (u32)tsf) + FUDGE;
710 do {
711 nexttbtt += intval;
712 } while (nexttbtt < tsftu);
713
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700714 ath_print(common, ATH_DBG_BEACON,
715 "IBSS nexttbtt %u intval %u (%u)\n",
716 nexttbtt, intval, conf->beacon_interval);
Sujith5379c8a2009-03-03 10:16:54 +0530717
718 /*
719 * In IBSS mode enable the beacon timers but only enable SWBA interrupts
720 * if we need to manually prepare beacon frames. Otherwise we use a
721 * self-linked tx descriptor and let the hardware deal with things.
722 */
723 intval |= ATH9K_BEACON_ENA;
724 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL))
725 sc->imask |= ATH9K_INT_SWBA;
726
727 ath_beaconq_config(sc);
728
729 /* Set the computed ADHOC beacon timers */
730
731 ath9k_hw_set_interrupts(sc->sc_ah, 0);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -0700732 ath9k_beacon_init(sc, nexttbtt, intval);
Sujith5379c8a2009-03-03 10:16:54 +0530733 sc->beacon.bmisscnt = 0;
734 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
735
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530736 /* FIXME: Handle properly when vif is NULL */
737 if (vif && sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200738 ath_beacon_start_adhoc(sc, vif);
Sujith5379c8a2009-03-03 10:16:54 +0530739}
740
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200741void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530742{
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530743 struct ath_beacon_config *cur_conf = &sc->cur_beacon_conf;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700744 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530745 enum nl80211_iftype iftype;
Sujith5379c8a2009-03-03 10:16:54 +0530746
747 /* Setup the beacon configuration parameters */
748
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200749 if (vif) {
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530750 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
Sujith459f5f92008-09-17 10:15:36 +0530751
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530752 iftype = vif->type;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700753
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530754 cur_conf->beacon_interval = bss_conf->beacon_int;
755 cur_conf->dtim_period = bss_conf->dtim_period;
756 cur_conf->listen_interval = 1;
757 cur_conf->dtim_count = 1;
758 cur_conf->bmiss_timeout =
759 ATH_DEFAULT_BMISS_LIMIT * cur_conf->beacon_interval;
760 } else {
761 iftype = sc->sc_ah->opmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700762 }
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530763
Vasanthakumar Thiagarajanc4f9f162009-06-12 10:55:55 +0530764 /*
765 * It looks like mac80211 may end up using beacon interval of zero in
766 * some cases (at least for mesh point). Avoid getting into an
767 * infinite loop by using a bit safer value instead. To be safe,
768 * do sanity check on beacon interval for all operating modes.
769 */
770 if (cur_conf->beacon_interval == 0)
771 cur_conf->beacon_interval = 100;
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530772
773 switch (iftype) {
774 case NL80211_IFTYPE_AP:
775 ath_beacon_config_ap(sc, cur_conf);
776 break;
777 case NL80211_IFTYPE_ADHOC:
778 case NL80211_IFTYPE_MESH_POINT:
779 ath_beacon_config_adhoc(sc, cur_conf, vif);
780 break;
781 case NL80211_IFTYPE_STATION:
782 ath_beacon_config_sta(sc, cur_conf);
783 break;
784 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700785 ath_print(common, ATH_DBG_CONFIG,
786 "Unsupported beaconing mode\n");
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530787 return;
788 }
789
790 sc->sc_flags |= SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700791}