blob: ec995730632ddeacb4f9e2a0b4eb7337abcad2f9 [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. Rodriguezf078f202008-08-04 00:16:41 -070045 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +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{
62 struct sk_buff *skb = (struct sk_buff *)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];
Sujithe63835b2008-11-18 09:07:53 +053066 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
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700135 if (avp->av_bcbuf == NULL) {
Sujith04bd4632008-11-28 22:18:05 +0530136 DPRINTF(sc, ATH_DBG_BEACON, "avp=%p av_bcbuf=%p\n",
137 avp, avp->av_bcbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700138 return NULL;
139 }
Sujith980b24d2008-09-17 10:15:09 +0530140
Sujith9fc9ab02009-03-03 10:16:51 +0530141 /* Release the old beacon first */
142
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700143 bf = avp->av_bcbuf;
Sujith980b24d2008-09-17 10:15:09 +0530144 skb = (struct sk_buff *)bf->bf_mpdu;
Jouni Malinena8fff502008-08-11 14:01:48 +0300145 if (skb) {
Gabor Juhos7da3c552009-01-14 20:17:03 +0100146 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530147 skb->len, DMA_TO_DEVICE);
Jouni Malinen3fbb9d92008-12-05 20:42:45 +0200148 dev_kfree_skb_any(skb);
Jouni Malinena8fff502008-08-11 14:01:48 +0300149 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700150
Sujith9fc9ab02009-03-03 10:16:51 +0530151 /* Get a new beacon from mac80211 */
152
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;
Sujith9fc9ab02009-03-03 10:16:51 +0530178 DPRINTF(sc, ATH_DBG_FATAL, "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. Rodriguezf078f202008-08-04 00:16:41 -0700198 DPRINTF(sc, ATH_DBG_BEACON,
Sujith9fc9ab02009-03-03 10:16:51 +0530199 "Flushing previous cabq traffic\n");
200 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. Rodriguezf078f202008-08-04 00:16:41 -0700222 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530223 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700224 struct sk_buff *skb;
225
Sujith5640b082008-10-29 10:16:06 +0530226 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700227
Sujith9fc9ab02009-03-03 10:16:51 +0530228 if (avp->av_bcbuf == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700229 return;
Sujith9fc9ab02009-03-03 10:16:51 +0530230
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700231 bf = avp->av_bcbuf;
232 skb = (struct sk_buff *) bf->bf_mpdu;
233
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700234 ath_beacon_setup(sc, avp, bf);
235
236 /* NB: caller is known to have already stopped tx dma */
Sujithb77f4832008-12-07 21:44:03 +0530237 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bf->bf_daddr);
238 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Sujith04bd4632008-11-28 22:18:05 +0530239 DPRINTF(sc, ATH_DBG_BEACON, "TXDP%u = %llx (%p)\n",
Sujithb77f4832008-12-07 21:44:03 +0530240 sc->beacon.beaconq, ito64(bf->bf_daddr), bf->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700241}
242
Sujithcbe61d82009-02-09 13:27:12 +0530243int ath_beaconq_setup(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700244{
Sujithea9880f2008-08-07 10:53:10 +0530245 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700246
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700247 memset(&qi, 0, sizeof(qi));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700248 qi.tqi_aifs = 1;
249 qi.tqi_cwmin = 0;
250 qi.tqi_cwmax = 0;
251 /* NB: don't enable any interrupts */
252 return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
253}
254
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200255int ath_beacon_alloc(struct ath_wiphy *aphy, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700256{
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200257 struct ath_softc *sc = aphy->sc;
Sujith17d79042009-02-09 13:27:03 +0530258 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700259 struct ath_buf *bf;
260 struct sk_buff *skb;
Sujith459f5f92008-09-17 10:15:36 +0530261 __le64 tstamp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700262
Sujith5640b082008-10-29 10:16:06 +0530263 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700264
265 /* Allocate a beacon descriptor if we haven't done so. */
266 if (!avp->av_bcbuf) {
Sujith980b24d2008-09-17 10:15:09 +0530267 /* Allocate beacon state for hostap/ibss. We know
268 * a buffer is available. */
Sujithb77f4832008-12-07 21:44:03 +0530269 avp->av_bcbuf = list_first_entry(&sc->beacon.bbuf,
Sujith980b24d2008-09-17 10:15:09 +0530270 struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700271 list_del(&avp->av_bcbuf->list);
272
Sujith2660b812009-02-09 13:27:26 +0530273 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP ||
274 !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700275 int slot;
276 /*
Sujith17d79042009-02-09 13:27:03 +0530277 * Assign the vif to a beacon xmit slot. As
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700278 * above, this cannot fail to find one.
279 */
280 avp->av_bslot = 0;
281 for (slot = 0; slot < ATH_BCBUF; slot++)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200282 if (sc->beacon.bslot[slot] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700283 /*
284 * XXX hack, space out slots to better
285 * deal with misses
286 */
287 if (slot+1 < ATH_BCBUF &&
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200288 sc->beacon.bslot[slot+1] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700289 avp->av_bslot = slot+1;
290 break;
291 }
292 avp->av_bslot = slot;
293 /* NB: keep looking for a double slot */
294 }
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200295 BUG_ON(sc->beacon.bslot[avp->av_bslot] != NULL);
296 sc->beacon.bslot[avp->av_bslot] = vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200297 sc->beacon.bslot_aphy[avp->av_bslot] = aphy;
Sujith17d79042009-02-09 13:27:03 +0530298 sc->nbcnvifs++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700299 }
300 }
301
Sujith9fc9ab02009-03-03 10:16:51 +0530302 /* release the previous beacon frame, if it already exists. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700303 bf = avp->av_bcbuf;
304 if (bf->bf_mpdu != NULL) {
305 skb = (struct sk_buff *)bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100306 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530307 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700308 dev_kfree_skb_any(skb);
309 bf->bf_mpdu = NULL;
310 }
311
Sujith9fc9ab02009-03-03 10:16:51 +0530312 /* NB: the beacon data buffer must be 32-bit aligned. */
Sujith5640b082008-10-29 10:16:06 +0530313 skb = ieee80211_beacon_get(sc->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700314 if (skb == NULL) {
Sujith04bd4632008-11-28 22:18:05 +0530315 DPRINTF(sc, ATH_DBG_BEACON, "cannot get skb\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700316 return -ENOMEM;
317 }
318
Sujith459f5f92008-09-17 10:15:36 +0530319 tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Sujithb77f4832008-12-07 21:44:03 +0530320 sc->beacon.bc_tstamp = le64_to_cpu(tstamp);
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200321 /* Calculate a TSF adjustment factor required for staggered beacons. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700322 if (avp->av_bslot > 0) {
323 u64 tsfadjust;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700324 int intval;
325
Jouni Malinena8fff502008-08-11 14:01:48 +0300326 intval = sc->hw->conf.beacon_int ?
327 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700328
329 /*
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200330 * Calculate the TSF offset for this beacon slot, i.e., the
331 * number of usecs that need to be added to the timestamp field
332 * in Beacon and Probe Response frames. Beacon slot 0 is
333 * processed at the correct offset, so it does not require TSF
334 * adjustment. Other slots are adjusted to get the timestamp
335 * close to the TBTT for the BSS.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700336 */
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200337 tsfadjust = intval * avp->av_bslot / ATH_BCBUF;
338 avp->tsf_adjust = cpu_to_le64(TU_TO_USEC(tsfadjust));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700339
340 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530341 "stagger beacons, bslot %d intval %u tsfadjust %llu\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700342 avp->av_bslot, intval, (unsigned long long)tsfadjust);
343
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200344 ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp =
345 avp->tsf_adjust;
346 } else
347 avp->tsf_adjust = cpu_to_le64(0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700348
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800349 bf->bf_mpdu = skb;
Jouni Malinena8fff502008-08-11 14:01:48 +0300350 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100351 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530352 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100353 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800354 dev_kfree_skb_any(skb);
355 bf->bf_mpdu = NULL;
Sujith9fc9ab02009-03-03 10:16:51 +0530356 DPRINTF(sc, ATH_DBG_FATAL,
357 "dma_mapping_error on beacon alloc\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800358 return -ENOMEM;
359 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700360
361 return 0;
362}
363
Sujith17d79042009-02-09 13:27:03 +0530364void ath_beacon_return(struct ath_softc *sc, struct ath_vif *avp)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700365{
366 if (avp->av_bcbuf != NULL) {
367 struct ath_buf *bf;
368
369 if (avp->av_bslot != -1) {
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200370 sc->beacon.bslot[avp->av_bslot] = NULL;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200371 sc->beacon.bslot_aphy[avp->av_bslot] = NULL;
Sujith17d79042009-02-09 13:27:03 +0530372 sc->nbcnvifs--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700373 }
374
375 bf = avp->av_bcbuf;
376 if (bf->bf_mpdu != NULL) {
377 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100378 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530379 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700380 dev_kfree_skb_any(skb);
381 bf->bf_mpdu = NULL;
382 }
Sujithb77f4832008-12-07 21:44:03 +0530383 list_add_tail(&bf->list, &sc->beacon.bbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700384
385 avp->av_bcbuf = NULL;
386 }
387}
388
Sujith9fc9ab02009-03-03 10:16:51 +0530389void ath_beacon_tasklet(unsigned long data)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700390{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700391 struct ath_softc *sc = (struct ath_softc *)data;
Sujithcbe61d82009-02-09 13:27:12 +0530392 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700393 struct ath_buf *bf = NULL;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200394 struct ieee80211_vif *vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200395 struct ath_wiphy *aphy;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200396 int slot;
Sujith9546aae2009-03-03 10:16:53 +0530397 u32 bfaddr, bc = 0, tsftu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700398 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700399 u16 intval;
400
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700401 /*
402 * Check if the previous beacon has gone out. If
403 * not don't try to post another, skip this period
404 * and wait for the next. Missed beacons indicate
405 * a problem and should not occur. If we miss too
406 * many consecutive beacons reset the device.
407 */
Sujithb77f4832008-12-07 21:44:03 +0530408 if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0) {
409 sc->beacon.bmisscnt++;
Sujith9546aae2009-03-03 10:16:53 +0530410
Sujithb77f4832008-12-07 21:44:03 +0530411 if (sc->beacon.bmisscnt < BSTUCK_THRESH) {
Sujith9546aae2009-03-03 10:16:53 +0530412 DPRINTF(sc, ATH_DBG_BEACON,
413 "missed %u consecutive beacons\n",
414 sc->beacon.bmisscnt);
Sujithb77f4832008-12-07 21:44:03 +0530415 } else if (sc->beacon.bmisscnt >= BSTUCK_THRESH) {
Sujith9546aae2009-03-03 10:16:53 +0530416 DPRINTF(sc, ATH_DBG_BEACON,
417 "beacon is officially stuck\n");
418 ath_reset(sc, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700419 }
Sujith9546aae2009-03-03 10:16:53 +0530420
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700421 return;
422 }
Sujith980b24d2008-09-17 10:15:09 +0530423
Sujithb77f4832008-12-07 21:44:03 +0530424 if (sc->beacon.bmisscnt != 0) {
Sujith9546aae2009-03-03 10:16:53 +0530425 DPRINTF(sc, ATH_DBG_BEACON,
426 "resume beacon xmit after %u misses\n",
427 sc->beacon.bmisscnt);
Sujithb77f4832008-12-07 21:44:03 +0530428 sc->beacon.bmisscnt = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429 }
430
431 /*
432 * Generate beacon frames. we are sending frames
433 * staggered so calculate the slot for this frame based
434 * on the tsf to safeguard against missing an swba.
435 */
436
Jouni Malinena8fff502008-08-11 14:01:48 +0300437 intval = sc->hw->conf.beacon_int ?
438 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700439
440 tsf = ath9k_hw_gettsf64(ah);
441 tsftu = TSF_TO_TU(tsf>>32, tsf);
442 slot = ((tsftu % intval) * ATH_BCBUF) / intval;
Jouni Malinen4ed96f02009-03-12 21:53:23 +0200443 /*
444 * Reverse the slot order to get slot 0 on the TBTT offset that does
445 * not require TSF adjustment and other slots adding
446 * slot/ATH_BCBUF * beacon_int to timestamp. For example, with
447 * ATH_BCBUF = 4, we process beacon slots as follows: 3 2 1 0 3 2 1 ..
448 * and slot 0 is at correct offset to TBTT.
449 */
450 slot = ATH_BCBUF - slot - 1;
451 vif = sc->beacon.bslot[slot];
452 aphy = sc->beacon.bslot_aphy[slot];
Sujith980b24d2008-09-17 10:15:09 +0530453
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454 DPRINTF(sc, ATH_DBG_BEACON,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200455 "slot %d [tsf %llu tsftu %u intval %u] vif %p\n",
456 slot, tsf, tsftu, intval, vif);
Sujith980b24d2008-09-17 10:15:09 +0530457
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700458 bfaddr = 0;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200459 if (vif) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200460 bf = ath_beacon_generate(aphy->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461 if (bf != NULL) {
462 bfaddr = bf->bf_daddr;
463 bc = 1;
464 }
465 }
Sujith9546aae2009-03-03 10:16:53 +0530466
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467 /*
468 * Handle slot time change when a non-ERP station joins/leaves
469 * an 11g network. The 802.11 layer notifies us via callback,
470 * we mark updateslot, then wait one beacon before effecting
471 * the change. This gives associated stations at least one
472 * beacon interval to note the state change.
473 *
474 * NB: The slot time change state machine is clocked according
475 * to whether we are bursting or staggering beacons. We
476 * recognize the request to update and record the current
477 * slot then don't transition until that slot is reached
478 * again. If we miss a beacon for that slot then we'll be
479 * slow to transition but we'll be sure at least one beacon
480 * interval has passed. When bursting slot is always left
481 * set to ATH_BCBUF so this check is a noop.
482 */
Sujithb77f4832008-12-07 21:44:03 +0530483 if (sc->beacon.updateslot == UPDATE) {
484 sc->beacon.updateslot = COMMIT; /* commit next beacon */
485 sc->beacon.slotupdate = slot;
486 } else if (sc->beacon.updateslot == COMMIT && sc->beacon.slotupdate == slot) {
487 ath9k_hw_setslottime(sc->sc_ah, sc->beacon.slottime);
488 sc->beacon.updateslot = OK;
Sujithff37e332008-11-24 12:07:55 +0530489 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700490 if (bfaddr != 0) {
491 /*
492 * Stop any current dma and put the new frame(s) on the queue.
493 * This should never fail since we check above that no frames
494 * are still pending on the queue.
495 */
Sujithb77f4832008-12-07 21:44:03 +0530496 if (!ath9k_hw_stoptxdma(ah, sc->beacon.beaconq)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700497 DPRINTF(sc, ATH_DBG_FATAL,
Sujithb77f4832008-12-07 21:44:03 +0530498 "beacon queue %u did not stop?\n", sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700499 }
500
501 /* NB: cabq traffic should already be queued and primed */
Sujithb77f4832008-12-07 21:44:03 +0530502 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bfaddr);
503 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700504
Sujith17d79042009-02-09 13:27:03 +0530505 sc->beacon.ast_be_xmit += bc; /* XXX per-vif? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700506 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700507}
508
509/*
Sujith5379c8a2009-03-03 10:16:54 +0530510 * For multi-bss ap support beacons are either staggered evenly over N slots or
511 * burst together. For the former arrange for the SWBA to be delivered for each
512 * slot. Slots that are not occupied will generate nothing.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700513 */
Sujith5379c8a2009-03-03 10:16:54 +0530514static void ath_beacon_config_ap(struct ath_softc *sc,
515 struct ath_beacon_config *conf,
516 struct ath_vif *avp)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700517{
Sujith980b24d2008-09-17 10:15:09 +0530518 u32 nexttbtt, intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700519
Sujithb238e902009-03-03 10:16:56 +0530520 /* Configure the timers only when the TSF has to be reset */
521
522 if (!(sc->sc_flags & SC_OP_TSF_RESET))
523 return;
524
Sujith5379c8a2009-03-03 10:16:54 +0530525 /* NB: the beacon interval is kept internally in TU's */
526 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
527 intval /= ATH_BCBUF; /* for staggered beacons */
528 nexttbtt = intval;
529 intval |= ATH9K_BEACON_RESET_TSF;
530
531 /*
532 * In AP mode we enable the beacon timers and SWBA interrupts to
533 * prepare beacon frames.
534 */
535 intval |= ATH9K_BEACON_ENA;
536 sc->imask |= ATH9K_INT_SWBA;
537 ath_beaconq_config(sc);
538
539 /* Set the computed AP beacon timers */
540
541 ath9k_hw_set_interrupts(sc->sc_ah, 0);
542 ath9k_hw_beaconinit(sc->sc_ah, nexttbtt, intval);
543 sc->beacon.bmisscnt = 0;
544 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
Sujithb238e902009-03-03 10:16:56 +0530545
546 /* Clear the reset TSF flag, so that subsequent beacon updation
547 will not reset the HW TSF. */
548
549 sc->sc_flags &= ~SC_OP_TSF_RESET;
Sujith5379c8a2009-03-03 10:16:54 +0530550}
551
552/*
553 * This sets up the beacon timers according to the timestamp of the last
554 * received beacon and the current TSF, configures PCF and DTIM
555 * handling, programs the sleep registers so the hardware will wakeup in
556 * time to receive beacons, and configures the beacon miss handling so
557 * we'll receive a BMISS interrupt when we stop seeing beacons from the AP
558 * we've associated with.
559 */
560static void ath_beacon_config_sta(struct ath_softc *sc,
561 struct ath_beacon_config *conf,
562 struct ath_vif *avp)
563{
564 struct ath9k_beacon_state bs;
565 int dtimperiod, dtimcount, sleepduration;
566 int cfpperiod, cfpcount;
567 u32 nexttbtt = 0, intval, tsftu;
568 u64 tsf;
569
570 memset(&bs, 0, sizeof(bs));
571 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
572
573 /*
574 * Setup dtim and cfp parameters according to
575 * last beacon we received (which may be none).
576 */
577 dtimperiod = conf->dtim_period;
578 if (dtimperiod <= 0) /* NB: 0 if not known */
579 dtimperiod = 1;
580 dtimcount = conf->dtim_count;
581 if (dtimcount >= dtimperiod) /* NB: sanity check */
582 dtimcount = 0;
583 cfpperiod = 1; /* NB: no PCF support yet */
584 cfpcount = 0;
585
586 sleepduration = conf->listen_interval * intval;
587 if (sleepduration <= 0)
588 sleepduration = intval;
589
590 /*
591 * Pull nexttbtt forward to reflect the current
592 * TSF and calculate dtim+cfp state for the result.
593 */
594 tsf = ath9k_hw_gettsf64(sc->sc_ah);
595 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
596 do {
597 nexttbtt += intval;
598 if (--dtimcount < 0) {
599 dtimcount = dtimperiod - 1;
600 if (--cfpcount < 0)
601 cfpcount = cfpperiod - 1;
602 }
603 } while (nexttbtt < tsftu);
604
605 bs.bs_intval = intval;
606 bs.bs_nexttbtt = nexttbtt;
607 bs.bs_dtimperiod = dtimperiod*intval;
608 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
609 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
610 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
611 bs.bs_cfpmaxduration = 0;
612
613 /*
614 * Calculate the number of consecutive beacons to miss* before taking
615 * a BMISS interrupt. The configuration is specified in TU so we only
616 * need calculate based on the beacon interval. Note that we clamp the
617 * result to at most 15 beacons.
618 */
619 if (sleepduration > intval) {
620 bs.bs_bmissthreshold = conf->listen_interval *
621 ATH_DEFAULT_BMISS_LIMIT / 2;
Sujith5640b082008-10-29 10:16:06 +0530622 } else {
Sujith5379c8a2009-03-03 10:16:54 +0530623 bs.bs_bmissthreshold = DIV_ROUND_UP(conf->bmiss_timeout, intval);
624 if (bs.bs_bmissthreshold > 15)
625 bs.bs_bmissthreshold = 15;
626 else if (bs.bs_bmissthreshold <= 0)
627 bs.bs_bmissthreshold = 1;
Sujith5640b082008-10-29 10:16:06 +0530628 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700629
Sujith5379c8a2009-03-03 10:16:54 +0530630 /*
631 * Calculate sleep duration. The configuration is given in ms.
632 * We ensure a multiple of the beacon period is used. Also, if the sleep
633 * duration is greater than the DTIM period then it makes senses
634 * to make it a multiple of that.
635 *
636 * XXX fixed at 100ms
637 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700638
Sujith5379c8a2009-03-03 10:16:54 +0530639 bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100), sleepduration);
640 if (bs.bs_sleepduration > bs.bs_dtimperiod)
641 bs.bs_sleepduration = bs.bs_dtimperiod;
642
643 /* TSF out of range threshold fixed at 1 second */
644 bs.bs_tsfoor_threshold = ATH9K_TSFOOR_THRESHOLD;
645
646 DPRINTF(sc, ATH_DBG_BEACON, "tsf: %llu tsftu: %u\n", tsf, tsftu);
647 DPRINTF(sc, ATH_DBG_BEACON,
648 "bmiss: %u sleep: %u cfp-period: %u maxdur: %u next: %u\n",
649 bs.bs_bmissthreshold, bs.bs_sleepduration,
650 bs.bs_cfpperiod, bs.bs_cfpmaxduration, bs.bs_cfpnext);
651
652 /* Set the computed STA beacon timers */
653
654 ath9k_hw_set_interrupts(sc->sc_ah, 0);
655 ath9k_hw_set_sta_beacon_timers(sc->sc_ah, &bs);
656 sc->imask |= ATH9K_INT_BMISS;
657 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
658}
659
660static void ath_beacon_config_adhoc(struct ath_softc *sc,
661 struct ath_beacon_config *conf,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200662 struct ath_vif *avp,
663 struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530664{
665 u64 tsf;
666 u32 tsftu, intval, nexttbtt;
667
668 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
669
670 /* Pull nexttbtt forward to reflect the current TSF */
671
672 nexttbtt = TSF_TO_TU(sc->beacon.bc_tstamp >> 32, sc->beacon.bc_tstamp);
673 if (nexttbtt == 0)
674 nexttbtt = intval;
675 else if (intval)
676 nexttbtt = roundup(nexttbtt, intval);
677
678 tsf = ath9k_hw_gettsf64(sc->sc_ah);
679 tsftu = TSF_TO_TU((u32)(tsf>>32), (u32)tsf) + FUDGE;
680 do {
681 nexttbtt += intval;
682 } while (nexttbtt < tsftu);
683
684 DPRINTF(sc, ATH_DBG_BEACON,
685 "IBSS nexttbtt %u intval %u (%u)\n",
686 nexttbtt, intval, conf->beacon_interval);
687
688 /*
689 * In IBSS mode enable the beacon timers but only enable SWBA interrupts
690 * if we need to manually prepare beacon frames. Otherwise we use a
691 * self-linked tx descriptor and let the hardware deal with things.
692 */
693 intval |= ATH9K_BEACON_ENA;
694 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL))
695 sc->imask |= ATH9K_INT_SWBA;
696
697 ath_beaconq_config(sc);
698
699 /* Set the computed ADHOC beacon timers */
700
701 ath9k_hw_set_interrupts(sc->sc_ah, 0);
702 ath9k_hw_beaconinit(sc->sc_ah, nexttbtt, intval);
703 sc->beacon.bmisscnt = 0;
704 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
705
706 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200707 ath_beacon_start_adhoc(sc, vif);
Sujith5379c8a2009-03-03 10:16:54 +0530708}
709
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200710void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530711{
712 struct ath_beacon_config conf;
Sujith5379c8a2009-03-03 10:16:54 +0530713
714 /* Setup the beacon configuration parameters */
715
716 memset(&conf, 0, sizeof(struct ath_beacon_config));
Jouni Malinena8fff502008-08-11 14:01:48 +0300717 conf.beacon_interval = sc->hw->conf.beacon_int ?
718 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700719 conf.listen_interval = 1;
720 conf.dtim_period = conf.beacon_interval;
721 conf.dtim_count = 1;
722 conf.bmiss_timeout = ATH_DEFAULT_BMISS_LIMIT * conf.beacon_interval;
723
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200724 if (vif) {
725 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Sujith459f5f92008-09-17 10:15:36 +0530726
Sujith5379c8a2009-03-03 10:16:54 +0530727 switch(avp->av_opmode) {
728 case NL80211_IFTYPE_AP:
729 ath_beacon_config_ap(sc, &conf, avp);
730 break;
731 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400732 case NL80211_IFTYPE_MESH_POINT:
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200733 ath_beacon_config_adhoc(sc, &conf, avp, vif);
Sujith5379c8a2009-03-03 10:16:54 +0530734 break;
735 case NL80211_IFTYPE_STATION:
736 ath_beacon_config_sta(sc, &conf, avp);
737 break;
738 default:
739 DPRINTF(sc, ATH_DBG_CONFIG,
740 "Unsupported beaconing mode\n");
741 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700742 }
743
Sujith5379c8a2009-03-03 10:16:54 +0530744 sc->sc_flags |= SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700745 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700746}