blob: cb774cc828a3ff112b4f716335ba209345e79ec0 [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. Rodriguez43c27612009-09-13 21:07:07 -070065 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070066 struct ath_desc *ds;
Sujith980b24d2008-09-17 10:15:09 +053067 struct ath9k_11n_rate_series series[4];
Sujith9fc9ab02009-03-03 10:16:51 +053068 int flags, antenna, ctsrate = 0, ctsduration = 0;
Felix Fietkau545750d2009-11-23 22:21:01 +010069 struct ieee80211_supported_band *sband;
70 u8 rate = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070071
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070072 ds = bf->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070073 flags = ATH9K_TXDESC_NOACK;
74
Pat Erley9cb54122009-03-20 22:59:59 -040075 if (((sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) ||
76 (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) &&
Sujith2660b812009-02-09 13:27:26 +053077 (ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070078 ds->ds_link = bf->bf_daddr; /* self-linked */
79 flags |= ATH9K_TXDESC_VEOL;
80 /* Let hardware handle antenna switching. */
81 antenna = 0;
82 } else {
83 ds->ds_link = 0;
84 /*
85 * Switch antenna every beacon.
Sujith9fc9ab02009-03-03 10:16:51 +053086 * Should only switch every beacon period, not for every SWBA
87 * XXX assumes two antennae
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070088 */
Sujith17d79042009-02-09 13:27:03 +053089 antenna = ((sc->beacon.ast_be_xmit / sc->nbcnvifs) & 1 ? 2 : 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070090 }
91
92 ds->ds_data = bf->bf_buf_addr;
93
Felix Fietkau545750d2009-11-23 22:21:01 +010094 sband = &sc->sbands[common->hw->conf.channel->band];
95 rate = sband->bitrates[0].hw_value;
Sujith672840a2008-08-11 14:05:08 +053096 if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
Felix Fietkau545750d2009-11-23 22:21:01 +010097 rate |= sband->bitrates[0].hw_value_short;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070098
Sujith9fc9ab02009-03-03 10:16:51 +053099 ath9k_hw_set11n_txdesc(ah, ds, skb->len + FCS_LEN,
100 ATH9K_PKT_TYPE_BEACON,
101 MAX_RATE_POWER,
102 ATH9K_TXKEYIX_INVALID,
103 ATH9K_KEY_TYPE_CLEAR,
104 flags);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700105
106 /* NB: beacon's BufLen must be a multiple of 4 bytes */
Sujith9fc9ab02009-03-03 10:16:51 +0530107 ath9k_hw_filltxdesc(ah, ds, roundup(skb->len, 4),
108 true, true, ds);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700109
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700110 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700111 series[0].Tries = 1;
112 series[0].Rate = rate;
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700113 series[0].ChSel = common->tx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700114 series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0;
Sujith9fc9ab02009-03-03 10:16:51 +0530115 ath9k_hw_set11n_ratescenario(ah, ds, ds, 0, ctsrate, ctsduration,
116 series, 4, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700117}
118
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200119static struct ath_buf *ath_beacon_generate(struct ieee80211_hw *hw,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200120 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700121{
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200122 struct ath_wiphy *aphy = hw->priv;
123 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700124 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700125 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530126 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700127 struct sk_buff *skb;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700128 struct ath_txq *cabq;
Jouni Malinen147583c2008-08-11 14:01:50 +0300129 struct ieee80211_tx_info *info;
Sujith980b24d2008-09-17 10:15:09 +0530130 int cabq_depth;
131
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200132 if (aphy->state != ATH_WIPHY_ACTIVE)
133 return NULL;
134
Sujith5640b082008-10-29 10:16:06 +0530135 avp = (void *)vif->drv_priv;
Sujithb77f4832008-12-07 21:44:03 +0530136 cabq = sc->beacon.cabq;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700137
Sujithd8baa932009-03-30 15:28:25 +0530138 if (avp->av_bcbuf == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700139 return NULL;
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;
Sujitha22be222009-03-30 15:28:36 +0530144 skb = 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
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200153 skb = ieee80211_beacon_get(hw, vif);
Jouni Malinena8fff502008-08-11 14:01:48 +0300154 bf->bf_mpdu = skb;
155 if (skb == NULL)
156 return NULL;
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200157 ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp =
158 avp->tsf_adjust;
Sujith980b24d2008-09-17 10:15:09 +0530159
Jouni Malinen147583c2008-08-11 14:01:50 +0300160 info = IEEE80211_SKB_CB(skb);
161 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
162 /*
163 * TODO: make sure the seq# gets assigned properly (vs. other
164 * TX frames)
165 */
Sujith980b24d2008-09-17 10:15:09 +0530166 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithb77f4832008-12-07 21:44:03 +0530167 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +0300168 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +0530169 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +0300170 }
Sujith980b24d2008-09-17 10:15:09 +0530171
Jouni Malinena8fff502008-08-11 14:01:48 +0300172 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100173 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530174 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100175 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800176 dev_kfree_skb_any(skb);
177 bf->bf_mpdu = NULL;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700178 ath_print(common, ATH_DBG_FATAL,
179 "dma_mapping_error on beaconing\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800180 return NULL;
181 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700182
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200183 skb = ieee80211_get_buffered_bc(hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700184
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700185 /*
186 * if the CABQ traffic from previous DTIM is pending and the current
187 * beacon is also a DTIM.
Sujith17d79042009-02-09 13:27:03 +0530188 * 1) if there is only one vif let the cab traffic continue.
189 * 2) if there are more than one vif and we are using staggered
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700190 * beacons, then drain the cabq by dropping all the frames in
Sujith17d79042009-02-09 13:27:03 +0530191 * the cabq so that the current vifs cab traffic can be scheduled.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700192 */
193 spin_lock_bh(&cabq->axq_lock);
194 cabq_depth = cabq->axq_depth;
195 spin_unlock_bh(&cabq->axq_lock);
196
Jouni Malinene022edb2008-08-22 17:31:33 +0300197 if (skb && cabq_depth) {
Sujith17d79042009-02-09 13:27:03 +0530198 if (sc->nvifs > 1) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700199 ath_print(common, ATH_DBG_BEACON,
200 "Flushing previous cabq traffic\n");
Sujith9fc9ab02009-03-03 10:16:51 +0530201 ath_draintxq(sc, cabq, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700202 }
203 }
204
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700205 ath_beacon_setup(sc, avp, bf);
206
Jouni Malinene022edb2008-08-22 17:31:33 +0300207 while (skb) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200208 ath_tx_cabq(hw, skb);
209 skb = ieee80211_get_buffered_bc(hw, vif);
Jouni Malinene022edb2008-08-22 17:31:33 +0300210 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700211
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700212 return bf;
213}
214
215/*
216 * Startup beacon transmission for adhoc mode when they are sent entirely
217 * by the hardware using the self-linked descriptor + veol trick.
218*/
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200219static void ath_beacon_start_adhoc(struct ath_softc *sc,
220 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700221{
Sujithcbe61d82009-02-09 13:27:12 +0530222 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700223 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700224 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530225 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700226 struct sk_buff *skb;
227
Sujith5640b082008-10-29 10:16:06 +0530228 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700229
Sujith9fc9ab02009-03-03 10:16:51 +0530230 if (avp->av_bcbuf == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700231 return;
Sujith9fc9ab02009-03-03 10:16:51 +0530232
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700233 bf = avp->av_bcbuf;
Sujitha22be222009-03-30 15:28:36 +0530234 skb = bf->bf_mpdu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700235
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700236 ath_beacon_setup(sc, avp, bf);
237
238 /* NB: caller is known to have already stopped tx dma */
Sujithb77f4832008-12-07 21:44:03 +0530239 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bf->bf_daddr);
240 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700241 ath_print(common, ATH_DBG_BEACON, "TXDP%u = %llx (%p)\n",
242 sc->beacon.beaconq, ito64(bf->bf_daddr), bf->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700243}
244
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200245int ath_beacon_alloc(struct ath_wiphy *aphy, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700246{
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200247 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700248 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith17d79042009-02-09 13:27:03 +0530249 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700250 struct ath_buf *bf;
251 struct sk_buff *skb;
Sujith459f5f92008-09-17 10:15:36 +0530252 __le64 tstamp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700253
Sujith5640b082008-10-29 10:16:06 +0530254 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700255
256 /* Allocate a beacon descriptor if we haven't done so. */
257 if (!avp->av_bcbuf) {
Sujith980b24d2008-09-17 10:15:09 +0530258 /* Allocate beacon state for hostap/ibss. We know
259 * a buffer is available. */
Sujithb77f4832008-12-07 21:44:03 +0530260 avp->av_bcbuf = list_first_entry(&sc->beacon.bbuf,
Sujith980b24d2008-09-17 10:15:09 +0530261 struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700262 list_del(&avp->av_bcbuf->list);
263
Sujith2660b812009-02-09 13:27:26 +0530264 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP ||
265 !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700266 int slot;
267 /*
Sujith17d79042009-02-09 13:27:03 +0530268 * Assign the vif to a beacon xmit slot. As
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700269 * above, this cannot fail to find one.
270 */
271 avp->av_bslot = 0;
272 for (slot = 0; slot < ATH_BCBUF; slot++)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200273 if (sc->beacon.bslot[slot] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700274 /*
275 * XXX hack, space out slots to better
276 * deal with misses
277 */
278 if (slot+1 < ATH_BCBUF &&
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200279 sc->beacon.bslot[slot+1] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700280 avp->av_bslot = slot+1;
281 break;
282 }
283 avp->av_bslot = slot;
284 /* NB: keep looking for a double slot */
285 }
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200286 BUG_ON(sc->beacon.bslot[avp->av_bslot] != NULL);
287 sc->beacon.bslot[avp->av_bslot] = vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200288 sc->beacon.bslot_aphy[avp->av_bslot] = aphy;
Sujith17d79042009-02-09 13:27:03 +0530289 sc->nbcnvifs++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700290 }
291 }
292
Sujith9fc9ab02009-03-03 10:16:51 +0530293 /* release the previous beacon frame, if it already exists. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700294 bf = avp->av_bcbuf;
295 if (bf->bf_mpdu != NULL) {
Sujitha22be222009-03-30 15:28:36 +0530296 skb = bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100297 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530298 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700299 dev_kfree_skb_any(skb);
300 bf->bf_mpdu = NULL;
301 }
302
Sujith9fc9ab02009-03-03 10:16:51 +0530303 /* NB: the beacon data buffer must be 32-bit aligned. */
Sujith5640b082008-10-29 10:16:06 +0530304 skb = ieee80211_beacon_get(sc->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700305 if (skb == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700306 ath_print(common, ATH_DBG_BEACON, "cannot get skb\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700307 return -ENOMEM;
308 }
309
Sujith459f5f92008-09-17 10:15:36 +0530310 tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Sujithb77f4832008-12-07 21:44:03 +0530311 sc->beacon.bc_tstamp = le64_to_cpu(tstamp);
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200312 /* Calculate a TSF adjustment factor required for staggered beacons. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700313 if (avp->av_bslot > 0) {
314 u64 tsfadjust;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700315 int intval;
316
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200317 intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700318
319 /*
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200320 * Calculate the TSF offset for this beacon slot, i.e., the
321 * number of usecs that need to be added to the timestamp field
322 * in Beacon and Probe Response frames. Beacon slot 0 is
323 * processed at the correct offset, so it does not require TSF
324 * adjustment. Other slots are adjusted to get the timestamp
325 * close to the TBTT for the BSS.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700326 */
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200327 tsfadjust = intval * avp->av_bslot / ATH_BCBUF;
328 avp->tsf_adjust = cpu_to_le64(TU_TO_USEC(tsfadjust));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700329
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700330 ath_print(common, ATH_DBG_BEACON,
331 "stagger beacons, bslot %d intval "
332 "%u tsfadjust %llu\n",
333 avp->av_bslot, intval, (unsigned long long)tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700334
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200335 ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp =
336 avp->tsf_adjust;
337 } else
338 avp->tsf_adjust = cpu_to_le64(0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700339
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800340 bf->bf_mpdu = skb;
Jouni Malinena8fff502008-08-11 14:01:48 +0300341 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100342 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530343 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100344 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800345 dev_kfree_skb_any(skb);
346 bf->bf_mpdu = NULL;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700347 ath_print(common, ATH_DBG_FATAL,
348 "dma_mapping_error on beacon alloc\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800349 return -ENOMEM;
350 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700351
352 return 0;
353}
354
Sujith17d79042009-02-09 13:27:03 +0530355void ath_beacon_return(struct ath_softc *sc, struct ath_vif *avp)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700356{
357 if (avp->av_bcbuf != NULL) {
358 struct ath_buf *bf;
359
360 if (avp->av_bslot != -1) {
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200361 sc->beacon.bslot[avp->av_bslot] = NULL;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200362 sc->beacon.bslot_aphy[avp->av_bslot] = NULL;
Sujith17d79042009-02-09 13:27:03 +0530363 sc->nbcnvifs--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700364 }
365
366 bf = avp->av_bcbuf;
367 if (bf->bf_mpdu != NULL) {
Sujitha22be222009-03-30 15:28:36 +0530368 struct sk_buff *skb = bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100369 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530370 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700371 dev_kfree_skb_any(skb);
372 bf->bf_mpdu = NULL;
373 }
Sujithb77f4832008-12-07 21:44:03 +0530374 list_add_tail(&bf->list, &sc->beacon.bbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700375
376 avp->av_bcbuf = NULL;
377 }
378}
379
Sujith9fc9ab02009-03-03 10:16:51 +0530380void ath_beacon_tasklet(unsigned long data)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700381{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700382 struct ath_softc *sc = (struct ath_softc *)data;
Sujithcbe61d82009-02-09 13:27:12 +0530383 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700384 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700385 struct ath_buf *bf = NULL;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200386 struct ieee80211_vif *vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200387 struct ath_wiphy *aphy;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200388 int slot;
Sujith9546aae2009-03-03 10:16:53 +0530389 u32 bfaddr, bc = 0, tsftu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700390 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700391 u16 intval;
392
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700393 /*
394 * Check if the previous beacon has gone out. If
395 * not don't try to post another, skip this period
396 * and wait for the next. Missed beacons indicate
397 * a problem and should not occur. If we miss too
398 * many consecutive beacons reset the device.
399 */
Sujithb77f4832008-12-07 21:44:03 +0530400 if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0) {
401 sc->beacon.bmisscnt++;
Sujith9546aae2009-03-03 10:16:53 +0530402
Sujithb77f4832008-12-07 21:44:03 +0530403 if (sc->beacon.bmisscnt < BSTUCK_THRESH) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700404 ath_print(common, ATH_DBG_BEACON,
405 "missed %u consecutive beacons\n",
406 sc->beacon.bmisscnt);
Sujithb77f4832008-12-07 21:44:03 +0530407 } else if (sc->beacon.bmisscnt >= BSTUCK_THRESH) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700408 ath_print(common, ATH_DBG_BEACON,
409 "beacon is officially stuck\n");
Jeff Hansenb74444f2009-05-27 12:48:27 +0000410 sc->sc_flags |= SC_OP_TSF_RESET;
Sujith9546aae2009-03-03 10:16:53 +0530411 ath_reset(sc, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700412 }
Sujith9546aae2009-03-03 10:16:53 +0530413
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700414 return;
415 }
Sujith980b24d2008-09-17 10:15:09 +0530416
Sujithb77f4832008-12-07 21:44:03 +0530417 if (sc->beacon.bmisscnt != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700418 ath_print(common, ATH_DBG_BEACON,
419 "resume beacon xmit after %u misses\n",
420 sc->beacon.bmisscnt);
Sujithb77f4832008-12-07 21:44:03 +0530421 sc->beacon.bmisscnt = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700422 }
423
424 /*
425 * Generate beacon frames. we are sending frames
426 * staggered so calculate the slot for this frame based
427 * on the tsf to safeguard against missing an swba.
428 */
429
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200430 intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700431
432 tsf = ath9k_hw_gettsf64(ah);
433 tsftu = TSF_TO_TU(tsf>>32, tsf);
434 slot = ((tsftu % intval) * ATH_BCBUF) / intval;
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200435 /*
436 * Reverse the slot order to get slot 0 on the TBTT offset that does
437 * not require TSF adjustment and other slots adding
438 * slot/ATH_BCBUF * beacon_int to timestamp. For example, with
439 * ATH_BCBUF = 4, we process beacon slots as follows: 3 2 1 0 3 2 1 ..
440 * and slot 0 is at correct offset to TBTT.
441 */
442 slot = ATH_BCBUF - slot - 1;
443 vif = sc->beacon.bslot[slot];
444 aphy = sc->beacon.bslot_aphy[slot];
Sujith980b24d2008-09-17 10:15:09 +0530445
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700446 ath_print(common, ATH_DBG_BEACON,
447 "slot %d [tsf %llu tsftu %u intval %u] vif %p\n",
448 slot, tsf, tsftu, intval, vif);
Sujith980b24d2008-09-17 10:15:09 +0530449
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450 bfaddr = 0;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200451 if (vif) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200452 bf = ath_beacon_generate(aphy->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453 if (bf != NULL) {
454 bfaddr = bf->bf_daddr;
455 bc = 1;
456 }
457 }
Sujith9546aae2009-03-03 10:16:53 +0530458
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700459 /*
460 * Handle slot time change when a non-ERP station joins/leaves
461 * an 11g network. The 802.11 layer notifies us via callback,
462 * we mark updateslot, then wait one beacon before effecting
463 * the change. This gives associated stations at least one
464 * beacon interval to note the state change.
465 *
466 * NB: The slot time change state machine is clocked according
467 * to whether we are bursting or staggering beacons. We
468 * recognize the request to update and record the current
469 * slot then don't transition until that slot is reached
470 * again. If we miss a beacon for that slot then we'll be
471 * slow to transition but we'll be sure at least one beacon
472 * interval has passed. When bursting slot is always left
473 * set to ATH_BCBUF so this check is a noop.
474 */
Sujithb77f4832008-12-07 21:44:03 +0530475 if (sc->beacon.updateslot == UPDATE) {
476 sc->beacon.updateslot = COMMIT; /* commit next beacon */
477 sc->beacon.slotupdate = slot;
478 } else if (sc->beacon.updateslot == COMMIT && sc->beacon.slotupdate == slot) {
479 ath9k_hw_setslottime(sc->sc_ah, sc->beacon.slottime);
480 sc->beacon.updateslot = OK;
Sujithff37e332008-11-24 12:07:55 +0530481 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700482 if (bfaddr != 0) {
483 /*
484 * Stop any current dma and put the new frame(s) on the queue.
485 * This should never fail since we check above that no frames
486 * are still pending on the queue.
487 */
Sujithb77f4832008-12-07 21:44:03 +0530488 if (!ath9k_hw_stoptxdma(ah, sc->beacon.beaconq)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700489 ath_print(common, ATH_DBG_FATAL,
Sujithb77f4832008-12-07 21:44:03 +0530490 "beacon queue %u did not stop?\n", sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700491 }
492
493 /* NB: cabq traffic should already be queued and primed */
Sujithb77f4832008-12-07 21:44:03 +0530494 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bfaddr);
495 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700496
Sujith17d79042009-02-09 13:27:03 +0530497 sc->beacon.ast_be_xmit += bc; /* XXX per-vif? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700498 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700499}
500
Luis R. Rodriguez21526d52009-09-09 20:05:39 -0700501static void ath9k_beacon_init(struct ath_softc *sc,
502 u32 next_beacon,
503 u32 beacon_period)
504{
505 if (beacon_period & ATH9K_BEACON_RESET_TSF)
506 ath9k_ps_wakeup(sc);
507
508 ath9k_hw_beaconinit(sc->sc_ah, next_beacon, beacon_period);
509
510 if (beacon_period & ATH9K_BEACON_RESET_TSF)
511 ath9k_ps_restore(sc);
512}
513
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700514/*
Sujith5379c8a2009-03-03 10:16:54 +0530515 * For multi-bss ap support beacons are either staggered evenly over N slots or
516 * burst together. For the former arrange for the SWBA to be delivered for each
517 * slot. Slots that are not occupied will generate nothing.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700518 */
Sujith5379c8a2009-03-03 10:16:54 +0530519static void ath_beacon_config_ap(struct ath_softc *sc,
Vasanthakumar Thiagarajand31e20a2009-05-15 18:59:21 +0530520 struct ath_beacon_config *conf)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700521{
Sujith980b24d2008-09-17 10:15:09 +0530522 u32 nexttbtt, intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700523
Sujithb238e902009-03-03 10:16:56 +0530524 /* Configure the timers only when the TSF has to be reset */
525
526 if (!(sc->sc_flags & SC_OP_TSF_RESET))
527 return;
528
Sujith5379c8a2009-03-03 10:16:54 +0530529 /* NB: the beacon interval is kept internally in TU's */
530 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
531 intval /= ATH_BCBUF; /* for staggered beacons */
532 nexttbtt = intval;
533 intval |= ATH9K_BEACON_RESET_TSF;
534
535 /*
536 * In AP mode we enable the beacon timers and SWBA interrupts to
537 * prepare beacon frames.
538 */
539 intval |= ATH9K_BEACON_ENA;
540 sc->imask |= ATH9K_INT_SWBA;
541 ath_beaconq_config(sc);
542
543 /* Set the computed AP beacon timers */
544
545 ath9k_hw_set_interrupts(sc->sc_ah, 0);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -0700546 ath9k_beacon_init(sc, nexttbtt, intval);
Sujith5379c8a2009-03-03 10:16:54 +0530547 sc->beacon.bmisscnt = 0;
548 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
Sujithb238e902009-03-03 10:16:56 +0530549
550 /* Clear the reset TSF flag, so that subsequent beacon updation
551 will not reset the HW TSF. */
552
553 sc->sc_flags &= ~SC_OP_TSF_RESET;
Sujith5379c8a2009-03-03 10:16:54 +0530554}
555
556/*
557 * This sets up the beacon timers according to the timestamp of the last
558 * received beacon and the current TSF, configures PCF and DTIM
559 * handling, programs the sleep registers so the hardware will wakeup in
560 * time to receive beacons, and configures the beacon miss handling so
561 * we'll receive a BMISS interrupt when we stop seeing beacons from the AP
562 * we've associated with.
563 */
564static void ath_beacon_config_sta(struct ath_softc *sc,
Vasanthakumar Thiagarajand31e20a2009-05-15 18:59:21 +0530565 struct ath_beacon_config *conf)
Sujith5379c8a2009-03-03 10:16:54 +0530566{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700567 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith5379c8a2009-03-03 10:16:54 +0530568 struct ath9k_beacon_state bs;
569 int dtimperiod, dtimcount, sleepduration;
570 int cfpperiod, cfpcount;
571 u32 nexttbtt = 0, intval, tsftu;
572 u64 tsf;
Jouni Malinen267a9012009-05-20 21:56:39 +0300573 int num_beacons, offset, dtim_dec_count, cfp_dec_count;
Sujith5379c8a2009-03-03 10:16:54 +0530574
575 memset(&bs, 0, sizeof(bs));
576 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
577
578 /*
579 * Setup dtim and cfp parameters according to
580 * last beacon we received (which may be none).
581 */
582 dtimperiod = conf->dtim_period;
583 if (dtimperiod <= 0) /* NB: 0 if not known */
584 dtimperiod = 1;
585 dtimcount = conf->dtim_count;
586 if (dtimcount >= dtimperiod) /* NB: sanity check */
587 dtimcount = 0;
588 cfpperiod = 1; /* NB: no PCF support yet */
589 cfpcount = 0;
590
591 sleepduration = conf->listen_interval * intval;
592 if (sleepduration <= 0)
593 sleepduration = intval;
594
595 /*
596 * Pull nexttbtt forward to reflect the current
597 * TSF and calculate dtim+cfp state for the result.
598 */
599 tsf = ath9k_hw_gettsf64(sc->sc_ah);
600 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
Jouni Malinen267a9012009-05-20 21:56:39 +0300601
602 num_beacons = tsftu / intval + 1;
603 offset = tsftu % intval;
604 nexttbtt = tsftu - offset;
605 if (offset)
Sujith5379c8a2009-03-03 10:16:54 +0530606 nexttbtt += intval;
Jouni Malinen267a9012009-05-20 21:56:39 +0300607
608 /* DTIM Beacon every dtimperiod Beacon */
609 dtim_dec_count = num_beacons % dtimperiod;
610 /* CFP every cfpperiod DTIM Beacon */
611 cfp_dec_count = (num_beacons / dtimperiod) % cfpperiod;
612 if (dtim_dec_count)
613 cfp_dec_count++;
614
615 dtimcount -= dtim_dec_count;
616 if (dtimcount < 0)
617 dtimcount += dtimperiod;
618
619 cfpcount -= cfp_dec_count;
620 if (cfpcount < 0)
621 cfpcount += cfpperiod;
Sujith5379c8a2009-03-03 10:16:54 +0530622
623 bs.bs_intval = intval;
624 bs.bs_nexttbtt = nexttbtt;
625 bs.bs_dtimperiod = dtimperiod*intval;
626 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
627 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
628 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
629 bs.bs_cfpmaxduration = 0;
630
631 /*
632 * Calculate the number of consecutive beacons to miss* before taking
633 * a BMISS interrupt. The configuration is specified in TU so we only
634 * need calculate based on the beacon interval. Note that we clamp the
635 * result to at most 15 beacons.
636 */
637 if (sleepduration > intval) {
638 bs.bs_bmissthreshold = conf->listen_interval *
639 ATH_DEFAULT_BMISS_LIMIT / 2;
Sujith5640b082008-10-29 10:16:06 +0530640 } else {
Sujith5379c8a2009-03-03 10:16:54 +0530641 bs.bs_bmissthreshold = DIV_ROUND_UP(conf->bmiss_timeout, intval);
642 if (bs.bs_bmissthreshold > 15)
643 bs.bs_bmissthreshold = 15;
644 else if (bs.bs_bmissthreshold <= 0)
645 bs.bs_bmissthreshold = 1;
Sujith5640b082008-10-29 10:16:06 +0530646 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647
Sujith5379c8a2009-03-03 10:16:54 +0530648 /*
649 * Calculate sleep duration. The configuration is given in ms.
650 * We ensure a multiple of the beacon period is used. Also, if the sleep
651 * duration is greater than the DTIM period then it makes senses
652 * to make it a multiple of that.
653 *
654 * XXX fixed at 100ms
655 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700656
Sujith5379c8a2009-03-03 10:16:54 +0530657 bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100), sleepduration);
658 if (bs.bs_sleepduration > bs.bs_dtimperiod)
659 bs.bs_sleepduration = bs.bs_dtimperiod;
660
661 /* TSF out of range threshold fixed at 1 second */
662 bs.bs_tsfoor_threshold = ATH9K_TSFOOR_THRESHOLD;
663
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700664 ath_print(common, ATH_DBG_BEACON, "tsf: %llu tsftu: %u\n", tsf, tsftu);
665 ath_print(common, ATH_DBG_BEACON,
666 "bmiss: %u sleep: %u cfp-period: %u maxdur: %u next: %u\n",
667 bs.bs_bmissthreshold, bs.bs_sleepduration,
668 bs.bs_cfpperiod, bs.bs_cfpmaxduration, bs.bs_cfpnext);
Sujith5379c8a2009-03-03 10:16:54 +0530669
670 /* Set the computed STA beacon timers */
671
672 ath9k_hw_set_interrupts(sc->sc_ah, 0);
673 ath9k_hw_set_sta_beacon_timers(sc->sc_ah, &bs);
674 sc->imask |= ATH9K_INT_BMISS;
675 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
676}
677
678static void ath_beacon_config_adhoc(struct ath_softc *sc,
679 struct ath_beacon_config *conf,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200680 struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530681{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700682 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith5379c8a2009-03-03 10:16:54 +0530683 u64 tsf;
684 u32 tsftu, intval, nexttbtt;
685
686 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
687
Jouni Malinen546256f2009-05-28 19:25:28 +0300688
Sujith5379c8a2009-03-03 10:16:54 +0530689 /* Pull nexttbtt forward to reflect the current TSF */
690
691 nexttbtt = TSF_TO_TU(sc->beacon.bc_tstamp >> 32, sc->beacon.bc_tstamp);
692 if (nexttbtt == 0)
693 nexttbtt = intval;
694 else if (intval)
695 nexttbtt = roundup(nexttbtt, intval);
696
697 tsf = ath9k_hw_gettsf64(sc->sc_ah);
698 tsftu = TSF_TO_TU((u32)(tsf>>32), (u32)tsf) + FUDGE;
699 do {
700 nexttbtt += intval;
701 } while (nexttbtt < tsftu);
702
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700703 ath_print(common, ATH_DBG_BEACON,
704 "IBSS nexttbtt %u intval %u (%u)\n",
705 nexttbtt, intval, conf->beacon_interval);
Sujith5379c8a2009-03-03 10:16:54 +0530706
707 /*
708 * In IBSS mode enable the beacon timers but only enable SWBA interrupts
709 * if we need to manually prepare beacon frames. Otherwise we use a
710 * self-linked tx descriptor and let the hardware deal with things.
711 */
712 intval |= ATH9K_BEACON_ENA;
713 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL))
714 sc->imask |= ATH9K_INT_SWBA;
715
716 ath_beaconq_config(sc);
717
718 /* Set the computed ADHOC beacon timers */
719
720 ath9k_hw_set_interrupts(sc->sc_ah, 0);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -0700721 ath9k_beacon_init(sc, nexttbtt, intval);
Sujith5379c8a2009-03-03 10:16:54 +0530722 sc->beacon.bmisscnt = 0;
723 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
724
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530725 /* FIXME: Handle properly when vif is NULL */
726 if (vif && sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200727 ath_beacon_start_adhoc(sc, vif);
Sujith5379c8a2009-03-03 10:16:54 +0530728}
729
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200730void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530731{
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530732 struct ath_beacon_config *cur_conf = &sc->cur_beacon_conf;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700733 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530734 enum nl80211_iftype iftype;
Sujith5379c8a2009-03-03 10:16:54 +0530735
736 /* Setup the beacon configuration parameters */
737
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200738 if (vif) {
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530739 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
Sujith459f5f92008-09-17 10:15:36 +0530740
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530741 iftype = vif->type;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700742
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530743 cur_conf->beacon_interval = bss_conf->beacon_int;
744 cur_conf->dtim_period = bss_conf->dtim_period;
745 cur_conf->listen_interval = 1;
746 cur_conf->dtim_count = 1;
747 cur_conf->bmiss_timeout =
748 ATH_DEFAULT_BMISS_LIMIT * cur_conf->beacon_interval;
749 } else {
750 iftype = sc->sc_ah->opmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700751 }
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530752
Vasanthakumar Thiagarajanc4f9f162009-06-12 10:55:55 +0530753 /*
754 * It looks like mac80211 may end up using beacon interval of zero in
755 * some cases (at least for mesh point). Avoid getting into an
756 * infinite loop by using a bit safer value instead. To be safe,
757 * do sanity check on beacon interval for all operating modes.
758 */
759 if (cur_conf->beacon_interval == 0)
760 cur_conf->beacon_interval = 100;
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530761
762 switch (iftype) {
763 case NL80211_IFTYPE_AP:
764 ath_beacon_config_ap(sc, cur_conf);
765 break;
766 case NL80211_IFTYPE_ADHOC:
767 case NL80211_IFTYPE_MESH_POINT:
768 ath_beacon_config_adhoc(sc, cur_conf, vif);
769 break;
770 case NL80211_IFTYPE_STATION:
771 ath_beacon_config_sta(sc, cur_conf);
772 break;
773 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700774 ath_print(common, ATH_DBG_CONFIG,
775 "Unsupported beaconing mode\n");
Vasanthakumar Thiagarajan6b96f932009-05-15 18:59:22 +0530776 return;
777 }
778
779 sc->sc_flags |= SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780}