blob: 760f5b80f79e4bc0c31d6f24b70b3f7c4ced1d28 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
2 * Copyright (c) 2008 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Sujith394cf0a2009-02-09 13:26:54 +053017#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070018
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,
Sujith04bd46382008-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
Sujith2660b812009-02-09 13:27:26 +053073 if (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC &&
74 (ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070075 ds->ds_link = bf->bf_daddr; /* self-linked */
76 flags |= ATH9K_TXDESC_VEOL;
77 /* Let hardware handle antenna switching. */
78 antenna = 0;
79 } else {
80 ds->ds_link = 0;
81 /*
82 * Switch antenna every beacon.
Sujith9fc9ab02009-03-03 10:16:51 +053083 * Should only switch every beacon period, not for every SWBA
84 * XXX assumes two antennae
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070085 */
Sujith17d79042009-02-09 13:27:03 +053086 antenna = ((sc->beacon.ast_be_xmit / sc->nbcnvifs) & 1 ? 2 : 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070087 }
88
89 ds->ds_data = bf->bf_buf_addr;
90
Sujith3706de62008-12-07 21:42:10 +053091 rt = sc->cur_rate_table;
Sujith9fc9ab02009-03-03 10:16:51 +053092 rate = rt->info[0].ratecode;
Sujith672840a2008-08-11 14:05:08 +053093 if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
Sujith9fc9ab02009-03-03 10:16:51 +053094 rate |= rt->info[0].short_preamble;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070095
Sujith9fc9ab02009-03-03 10:16:51 +053096 ath9k_hw_set11n_txdesc(ah, ds, skb->len + FCS_LEN,
97 ATH9K_PKT_TYPE_BEACON,
98 MAX_RATE_POWER,
99 ATH9K_TXKEYIX_INVALID,
100 ATH9K_KEY_TYPE_CLEAR,
101 flags);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700102
103 /* NB: beacon's BufLen must be a multiple of 4 bytes */
Sujith9fc9ab02009-03-03 10:16:51 +0530104 ath9k_hw_filltxdesc(ah, ds, roundup(skb->len, 4),
105 true, true, ds);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700106
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700107 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700108 series[0].Tries = 1;
109 series[0].Rate = rate;
Sujith17d79042009-02-09 13:27:03 +0530110 series[0].ChSel = sc->tx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700111 series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0;
Sujith9fc9ab02009-03-03 10:16:51 +0530112 ath9k_hw_set11n_ratescenario(ah, ds, ds, 0, ctsrate, ctsduration,
113 series, 4, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700114}
115
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200116static struct ath_buf *ath_beacon_generate(struct ieee80211_hw *hw,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200117 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700118{
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200119 struct ath_wiphy *aphy = hw->priv;
120 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700121 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530122 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700123 struct sk_buff *skb;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700124 struct ath_txq *cabq;
Jouni Malinen147583c2008-08-11 14:01:50 +0300125 struct ieee80211_tx_info *info;
Sujith980b24d2008-09-17 10:15:09 +0530126 int cabq_depth;
127
Sujith5640b082008-10-29 10:16:06 +0530128 avp = (void *)vif->drv_priv;
Sujithb77f4832008-12-07 21:44:03 +0530129 cabq = sc->beacon.cabq;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700130
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700131 if (avp->av_bcbuf == NULL) {
Sujith04bd46382008-11-28 22:18:05 +0530132 DPRINTF(sc, ATH_DBG_BEACON, "avp=%p av_bcbuf=%p\n",
133 avp, avp->av_bcbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700134 return NULL;
135 }
Sujith980b24d2008-09-17 10:15:09 +0530136
Sujith9fc9ab02009-03-03 10:16:51 +0530137 /* Release the old beacon first */
138
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700139 bf = avp->av_bcbuf;
Sujith980b24d2008-09-17 10:15:09 +0530140 skb = (struct sk_buff *)bf->bf_mpdu;
Jouni Malinena8fff502008-08-11 14:01:48 +0300141 if (skb) {
Gabor Juhos7da3c552009-01-14 20:17:03 +0100142 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530143 skb->len, DMA_TO_DEVICE);
Jouni Malinen3fbb9d92008-12-05 20:42:45 +0200144 dev_kfree_skb_any(skb);
Jouni Malinena8fff502008-08-11 14:01:48 +0300145 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700146
Sujith9fc9ab02009-03-03 10:16:51 +0530147 /* Get a new beacon from mac80211 */
148
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200149 skb = ieee80211_beacon_get(hw, vif);
Jouni Malinena8fff502008-08-11 14:01:48 +0300150 bf->bf_mpdu = skb;
151 if (skb == NULL)
152 return NULL;
Sujith980b24d2008-09-17 10:15:09 +0530153
Jouni Malinen147583c2008-08-11 14:01:50 +0300154 info = IEEE80211_SKB_CB(skb);
155 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
156 /*
157 * TODO: make sure the seq# gets assigned properly (vs. other
158 * TX frames)
159 */
Sujith980b24d2008-09-17 10:15:09 +0530160 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithb77f4832008-12-07 21:44:03 +0530161 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +0300162 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +0530163 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +0300164 }
Sujith980b24d2008-09-17 10:15:09 +0530165
Jouni Malinena8fff502008-08-11 14:01:48 +0300166 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100167 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530168 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100169 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800170 dev_kfree_skb_any(skb);
171 bf->bf_mpdu = NULL;
Sujith9fc9ab02009-03-03 10:16:51 +0530172 DPRINTF(sc, ATH_DBG_FATAL, "dma_mapping_error on beaconing\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800173 return NULL;
174 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700175
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200176 skb = ieee80211_get_buffered_bc(hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700177
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700178 /*
179 * if the CABQ traffic from previous DTIM is pending and the current
180 * beacon is also a DTIM.
Sujith17d79042009-02-09 13:27:03 +0530181 * 1) if there is only one vif let the cab traffic continue.
182 * 2) if there are more than one vif and we are using staggered
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700183 * beacons, then drain the cabq by dropping all the frames in
Sujith17d79042009-02-09 13:27:03 +0530184 * the cabq so that the current vifs cab traffic can be scheduled.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700185 */
186 spin_lock_bh(&cabq->axq_lock);
187 cabq_depth = cabq->axq_depth;
188 spin_unlock_bh(&cabq->axq_lock);
189
Jouni Malinene022edb2008-08-22 17:31:33 +0300190 if (skb && cabq_depth) {
Sujith17d79042009-02-09 13:27:03 +0530191 if (sc->nvifs > 1) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700192 DPRINTF(sc, ATH_DBG_BEACON,
Sujith9fc9ab02009-03-03 10:16:51 +0530193 "Flushing previous cabq traffic\n");
194 ath_draintxq(sc, cabq, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700195 }
196 }
197
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700198 ath_beacon_setup(sc, avp, bf);
199
Jouni Malinene022edb2008-08-22 17:31:33 +0300200 while (skb) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200201 ath_tx_cabq(hw, skb);
202 skb = ieee80211_get_buffered_bc(hw, vif);
Jouni Malinene022edb2008-08-22 17:31:33 +0300203 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700204
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700205 return bf;
206}
207
208/*
209 * Startup beacon transmission for adhoc mode when they are sent entirely
210 * by the hardware using the self-linked descriptor + veol trick.
211*/
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200212static void ath_beacon_start_adhoc(struct ath_softc *sc,
213 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700214{
Sujithcbe61d82009-02-09 13:27:12 +0530215 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700216 struct ath_buf *bf;
Sujith17d79042009-02-09 13:27:03 +0530217 struct ath_vif *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700218 struct sk_buff *skb;
219
Sujith5640b082008-10-29 10:16:06 +0530220 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700221
Sujith9fc9ab02009-03-03 10:16:51 +0530222 if (avp->av_bcbuf == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700223 return;
Sujith9fc9ab02009-03-03 10:16:51 +0530224
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700225 bf = avp->av_bcbuf;
226 skb = (struct sk_buff *) bf->bf_mpdu;
227
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700228 ath_beacon_setup(sc, avp, bf);
229
230 /* NB: caller is known to have already stopped tx dma */
Sujithb77f4832008-12-07 21:44:03 +0530231 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bf->bf_daddr);
232 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Sujith04bd46382008-11-28 22:18:05 +0530233 DPRINTF(sc, ATH_DBG_BEACON, "TXDP%u = %llx (%p)\n",
Sujithb77f4832008-12-07 21:44:03 +0530234 sc->beacon.beaconq, ito64(bf->bf_daddr), bf->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700235}
236
Sujithcbe61d82009-02-09 13:27:12 +0530237int ath_beaconq_setup(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700238{
Sujithea9880f2008-08-07 10:53:10 +0530239 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700240
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700241 memset(&qi, 0, sizeof(qi));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700242 qi.tqi_aifs = 1;
243 qi.tqi_cwmin = 0;
244 qi.tqi_cwmax = 0;
245 /* NB: don't enable any interrupts */
246 return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
247}
248
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200249int ath_beacon_alloc(struct ath_wiphy *aphy, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700250{
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200251 struct ath_softc *sc = aphy->sc;
Sujith17d79042009-02-09 13:27:03 +0530252 struct ath_vif *avp;
Sujith980b24d2008-09-17 10:15:09 +0530253 struct ieee80211_hdr *hdr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700254 struct ath_buf *bf;
255 struct sk_buff *skb;
Sujith459f5f92008-09-17 10:15:36 +0530256 __le64 tstamp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700257
Sujith5640b082008-10-29 10:16:06 +0530258 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700259
260 /* Allocate a beacon descriptor if we haven't done so. */
261 if (!avp->av_bcbuf) {
Sujith980b24d2008-09-17 10:15:09 +0530262 /* Allocate beacon state for hostap/ibss. We know
263 * a buffer is available. */
Sujithb77f4832008-12-07 21:44:03 +0530264 avp->av_bcbuf = list_first_entry(&sc->beacon.bbuf,
Sujith980b24d2008-09-17 10:15:09 +0530265 struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700266 list_del(&avp->av_bcbuf->list);
267
Sujith2660b812009-02-09 13:27:26 +0530268 if (sc->sc_ah->opmode == NL80211_IFTYPE_AP ||
269 !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700270 int slot;
271 /*
Sujith17d79042009-02-09 13:27:03 +0530272 * Assign the vif to a beacon xmit slot. As
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700273 * above, this cannot fail to find one.
274 */
275 avp->av_bslot = 0;
276 for (slot = 0; slot < ATH_BCBUF; slot++)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200277 if (sc->beacon.bslot[slot] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700278 /*
279 * XXX hack, space out slots to better
280 * deal with misses
281 */
282 if (slot+1 < ATH_BCBUF &&
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200283 sc->beacon.bslot[slot+1] == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700284 avp->av_bslot = slot+1;
285 break;
286 }
287 avp->av_bslot = slot;
288 /* NB: keep looking for a double slot */
289 }
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200290 BUG_ON(sc->beacon.bslot[avp->av_bslot] != NULL);
291 sc->beacon.bslot[avp->av_bslot] = vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200292 sc->beacon.bslot_aphy[avp->av_bslot] = aphy;
Sujith17d79042009-02-09 13:27:03 +0530293 sc->nbcnvifs++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700294 }
295 }
296
Sujith9fc9ab02009-03-03 10:16:51 +0530297 /* release the previous beacon frame, if it already exists. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700298 bf = avp->av_bcbuf;
299 if (bf->bf_mpdu != NULL) {
300 skb = (struct sk_buff *)bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100301 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530302 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700303 dev_kfree_skb_any(skb);
304 bf->bf_mpdu = NULL;
305 }
306
Sujith9fc9ab02009-03-03 10:16:51 +0530307 /* NB: the beacon data buffer must be 32-bit aligned. */
Sujith5640b082008-10-29 10:16:06 +0530308 skb = ieee80211_beacon_get(sc->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700309 if (skb == NULL) {
Sujith04bd46382008-11-28 22:18:05 +0530310 DPRINTF(sc, ATH_DBG_BEACON, "cannot get skb\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700311 return -ENOMEM;
312 }
313
Sujith459f5f92008-09-17 10:15:36 +0530314 tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Sujithb77f4832008-12-07 21:44:03 +0530315 sc->beacon.bc_tstamp = le64_to_cpu(tstamp);
Sujith459f5f92008-09-17 10:15:36 +0530316
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700317 /*
318 * Calculate a TSF adjustment factor required for
319 * staggered beacons. Note that we assume the format
320 * of the beacon frame leaves the tstamp field immediately
321 * following the header.
322 */
323 if (avp->av_bslot > 0) {
324 u64 tsfadjust;
325 __le64 val;
326 int intval;
327
Jouni Malinena8fff502008-08-11 14:01:48 +0300328 intval = sc->hw->conf.beacon_int ?
329 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700330
331 /*
332 * The beacon interval is in TU's; the TSF in usecs.
333 * We figure out how many TU's to add to align the
334 * timestamp then convert to TSF units and handle
335 * byte swapping before writing it in the frame.
336 * The hardware will then add this each time a beacon
Sujith17d79042009-02-09 13:27:03 +0530337 * frame is sent. Note that we align vif's 1..N
338 * and leave vif 0 untouched. This means vap 0
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700339 * has a timestamp in one beacon interval while the
340 * others get a timestamp aligned to the next interval.
341 */
342 tsfadjust = (intval * (ATH_BCBUF - avp->av_bslot)) / ATH_BCBUF;
343 val = cpu_to_le64(tsfadjust << 10); /* TU->TSF */
344
345 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd46382008-11-28 22:18:05 +0530346 "stagger beacons, bslot %d intval %u tsfadjust %llu\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700347 avp->av_bslot, intval, (unsigned long long)tsfadjust);
348
Sujith980b24d2008-09-17 10:15:09 +0530349 hdr = (struct ieee80211_hdr *)skb->data;
350 memcpy(&hdr[1], &val, sizeof(val));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700351 }
352
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800353 bf->bf_mpdu = skb;
Jouni Malinena8fff502008-08-11 14:01:48 +0300354 bf->bf_buf_addr = bf->bf_dmacontext =
Gabor Juhos7da3c552009-01-14 20:17:03 +0100355 dma_map_single(sc->dev, skb->data,
Sujith9fc9ab02009-03-03 10:16:51 +0530356 skb->len, DMA_TO_DEVICE);
Gabor Juhos7da3c552009-01-14 20:17:03 +0100357 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800358 dev_kfree_skb_any(skb);
359 bf->bf_mpdu = NULL;
Sujith9fc9ab02009-03-03 10:16:51 +0530360 DPRINTF(sc, ATH_DBG_FATAL,
361 "dma_mapping_error on beacon alloc\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800362 return -ENOMEM;
363 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700364
365 return 0;
366}
367
Sujith17d79042009-02-09 13:27:03 +0530368void ath_beacon_return(struct ath_softc *sc, struct ath_vif *avp)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700369{
370 if (avp->av_bcbuf != NULL) {
371 struct ath_buf *bf;
372
373 if (avp->av_bslot != -1) {
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200374 sc->beacon.bslot[avp->av_bslot] = NULL;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200375 sc->beacon.bslot_aphy[avp->av_bslot] = NULL;
Sujith17d79042009-02-09 13:27:03 +0530376 sc->nbcnvifs--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700377 }
378
379 bf = avp->av_bcbuf;
380 if (bf->bf_mpdu != NULL) {
381 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100382 dma_unmap_single(sc->dev, bf->bf_dmacontext,
Sujith9fc9ab02009-03-03 10:16:51 +0530383 skb->len, DMA_TO_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700384 dev_kfree_skb_any(skb);
385 bf->bf_mpdu = NULL;
386 }
Sujithb77f4832008-12-07 21:44:03 +0530387 list_add_tail(&bf->list, &sc->beacon.bbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700388
389 avp->av_bcbuf = NULL;
390 }
391}
392
Sujith9fc9ab02009-03-03 10:16:51 +0530393void ath_beacon_tasklet(unsigned long data)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700394{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700395 struct ath_softc *sc = (struct ath_softc *)data;
Sujithcbe61d82009-02-09 13:27:12 +0530396 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700397 struct ath_buf *bf = NULL;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200398 struct ieee80211_vif *vif;
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200399 struct ath_wiphy *aphy;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200400 int slot;
Sujith9546aae2009-03-03 10:16:53 +0530401 u32 bfaddr, bc = 0, tsftu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700402 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700403 u16 intval;
404
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700405 /*
406 * Check if the previous beacon has gone out. If
407 * not don't try to post another, skip this period
408 * and wait for the next. Missed beacons indicate
409 * a problem and should not occur. If we miss too
410 * many consecutive beacons reset the device.
411 */
Sujithb77f4832008-12-07 21:44:03 +0530412 if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0) {
413 sc->beacon.bmisscnt++;
Sujith9546aae2009-03-03 10:16:53 +0530414
Sujithb77f4832008-12-07 21:44:03 +0530415 if (sc->beacon.bmisscnt < BSTUCK_THRESH) {
Sujith9546aae2009-03-03 10:16:53 +0530416 DPRINTF(sc, ATH_DBG_BEACON,
417 "missed %u consecutive beacons\n",
418 sc->beacon.bmisscnt);
Sujithb77f4832008-12-07 21:44:03 +0530419 } else if (sc->beacon.bmisscnt >= BSTUCK_THRESH) {
Sujith9546aae2009-03-03 10:16:53 +0530420 DPRINTF(sc, ATH_DBG_BEACON,
421 "beacon is officially stuck\n");
422 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) {
Sujith9546aae2009-03-03 10:16:53 +0530429 DPRINTF(sc, 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
Jouni Malinena8fff502008-08-11 14:01:48 +0300441 intval = sc->hw->conf.beacon_int ?
442 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443
444 tsf = ath9k_hw_gettsf64(ah);
445 tsftu = TSF_TO_TU(tsf>>32, tsf);
446 slot = ((tsftu % intval) * ATH_BCBUF) / intval;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200447 vif = sc->beacon.bslot[(slot + 1) % ATH_BCBUF];
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200448 aphy = sc->beacon.bslot_aphy[(slot + 1) % ATH_BCBUF];
Sujith980b24d2008-09-17 10:15:09 +0530449
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450 DPRINTF(sc, ATH_DBG_BEACON,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200451 "slot %d [tsf %llu tsftu %u intval %u] vif %p\n",
452 slot, tsf, tsftu, intval, vif);
Sujith980b24d2008-09-17 10:15:09 +0530453
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454 bfaddr = 0;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200455 if (vif) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200456 bf = ath_beacon_generate(aphy->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 if (bf != NULL) {
458 bfaddr = bf->bf_daddr;
459 bc = 1;
460 }
461 }
Sujith9546aae2009-03-03 10:16:53 +0530462
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700463 /*
464 * Handle slot time change when a non-ERP station joins/leaves
465 * an 11g network. The 802.11 layer notifies us via callback,
466 * we mark updateslot, then wait one beacon before effecting
467 * the change. This gives associated stations at least one
468 * beacon interval to note the state change.
469 *
470 * NB: The slot time change state machine is clocked according
471 * to whether we are bursting or staggering beacons. We
472 * recognize the request to update and record the current
473 * slot then don't transition until that slot is reached
474 * again. If we miss a beacon for that slot then we'll be
475 * slow to transition but we'll be sure at least one beacon
476 * interval has passed. When bursting slot is always left
477 * set to ATH_BCBUF so this check is a noop.
478 */
Sujithb77f4832008-12-07 21:44:03 +0530479 if (sc->beacon.updateslot == UPDATE) {
480 sc->beacon.updateslot = COMMIT; /* commit next beacon */
481 sc->beacon.slotupdate = slot;
482 } else if (sc->beacon.updateslot == COMMIT && sc->beacon.slotupdate == slot) {
483 ath9k_hw_setslottime(sc->sc_ah, sc->beacon.slottime);
484 sc->beacon.updateslot = OK;
Sujithff37e332008-11-24 12:07:55 +0530485 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700486 if (bfaddr != 0) {
487 /*
488 * Stop any current dma and put the new frame(s) on the queue.
489 * This should never fail since we check above that no frames
490 * are still pending on the queue.
491 */
Sujithb77f4832008-12-07 21:44:03 +0530492 if (!ath9k_hw_stoptxdma(ah, sc->beacon.beaconq)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700493 DPRINTF(sc, ATH_DBG_FATAL,
Sujithb77f4832008-12-07 21:44:03 +0530494 "beacon queue %u did not stop?\n", sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 }
496
497 /* NB: cabq traffic should already be queued and primed */
Sujithb77f4832008-12-07 21:44:03 +0530498 ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bfaddr);
499 ath9k_hw_txstart(ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700500
Sujith17d79042009-02-09 13:27:03 +0530501 sc->beacon.ast_be_xmit += bc; /* XXX per-vif? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700502 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700503}
504
505/*
Sujith5379c8a2009-03-03 10:16:54 +0530506 * For multi-bss ap support beacons are either staggered evenly over N slots or
507 * burst together. For the former arrange for the SWBA to be delivered for each
508 * slot. Slots that are not occupied will generate nothing.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700509 */
Sujith5379c8a2009-03-03 10:16:54 +0530510static void ath_beacon_config_ap(struct ath_softc *sc,
511 struct ath_beacon_config *conf,
512 struct ath_vif *avp)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700513{
Sujith980b24d2008-09-17 10:15:09 +0530514 u32 nexttbtt, intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700515
Sujithb238e902009-03-03 10:16:56 +0530516 /* Configure the timers only when the TSF has to be reset */
517
518 if (!(sc->sc_flags & SC_OP_TSF_RESET))
519 return;
520
Sujith5379c8a2009-03-03 10:16:54 +0530521 /* NB: the beacon interval is kept internally in TU's */
522 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
523 intval /= ATH_BCBUF; /* for staggered beacons */
524 nexttbtt = intval;
525 intval |= ATH9K_BEACON_RESET_TSF;
526
527 /*
528 * In AP mode we enable the beacon timers and SWBA interrupts to
529 * prepare beacon frames.
530 */
531 intval |= ATH9K_BEACON_ENA;
532 sc->imask |= ATH9K_INT_SWBA;
533 ath_beaconq_config(sc);
534
535 /* Set the computed AP beacon timers */
536
537 ath9k_hw_set_interrupts(sc->sc_ah, 0);
538 ath9k_hw_beaconinit(sc->sc_ah, nexttbtt, intval);
539 sc->beacon.bmisscnt = 0;
540 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
Sujithb238e902009-03-03 10:16:56 +0530541
542 /* Clear the reset TSF flag, so that subsequent beacon updation
543 will not reset the HW TSF. */
544
545 sc->sc_flags &= ~SC_OP_TSF_RESET;
Sujith5379c8a2009-03-03 10:16:54 +0530546}
547
548/*
549 * This sets up the beacon timers according to the timestamp of the last
550 * received beacon and the current TSF, configures PCF and DTIM
551 * handling, programs the sleep registers so the hardware will wakeup in
552 * time to receive beacons, and configures the beacon miss handling so
553 * we'll receive a BMISS interrupt when we stop seeing beacons from the AP
554 * we've associated with.
555 */
556static void ath_beacon_config_sta(struct ath_softc *sc,
557 struct ath_beacon_config *conf,
558 struct ath_vif *avp)
559{
560 struct ath9k_beacon_state bs;
561 int dtimperiod, dtimcount, sleepduration;
562 int cfpperiod, cfpcount;
563 u32 nexttbtt = 0, intval, tsftu;
564 u64 tsf;
565
566 memset(&bs, 0, sizeof(bs));
567 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
568
569 /*
570 * Setup dtim and cfp parameters according to
571 * last beacon we received (which may be none).
572 */
573 dtimperiod = conf->dtim_period;
574 if (dtimperiod <= 0) /* NB: 0 if not known */
575 dtimperiod = 1;
576 dtimcount = conf->dtim_count;
577 if (dtimcount >= dtimperiod) /* NB: sanity check */
578 dtimcount = 0;
579 cfpperiod = 1; /* NB: no PCF support yet */
580 cfpcount = 0;
581
582 sleepduration = conf->listen_interval * intval;
583 if (sleepduration <= 0)
584 sleepduration = intval;
585
586 /*
587 * Pull nexttbtt forward to reflect the current
588 * TSF and calculate dtim+cfp state for the result.
589 */
590 tsf = ath9k_hw_gettsf64(sc->sc_ah);
591 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
592 do {
593 nexttbtt += intval;
594 if (--dtimcount < 0) {
595 dtimcount = dtimperiod - 1;
596 if (--cfpcount < 0)
597 cfpcount = cfpperiod - 1;
598 }
599 } while (nexttbtt < tsftu);
600
601 bs.bs_intval = intval;
602 bs.bs_nexttbtt = nexttbtt;
603 bs.bs_dtimperiod = dtimperiod*intval;
604 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
605 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
606 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
607 bs.bs_cfpmaxduration = 0;
608
609 /*
610 * Calculate the number of consecutive beacons to miss* before taking
611 * a BMISS interrupt. The configuration is specified in TU so we only
612 * need calculate based on the beacon interval. Note that we clamp the
613 * result to at most 15 beacons.
614 */
615 if (sleepduration > intval) {
616 bs.bs_bmissthreshold = conf->listen_interval *
617 ATH_DEFAULT_BMISS_LIMIT / 2;
Sujith5640b082008-10-29 10:16:06 +0530618 } else {
Sujith5379c8a2009-03-03 10:16:54 +0530619 bs.bs_bmissthreshold = DIV_ROUND_UP(conf->bmiss_timeout, intval);
620 if (bs.bs_bmissthreshold > 15)
621 bs.bs_bmissthreshold = 15;
622 else if (bs.bs_bmissthreshold <= 0)
623 bs.bs_bmissthreshold = 1;
Sujith5640b082008-10-29 10:16:06 +0530624 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700625
Sujith5379c8a2009-03-03 10:16:54 +0530626 /*
627 * Calculate sleep duration. The configuration is given in ms.
628 * We ensure a multiple of the beacon period is used. Also, if the sleep
629 * duration is greater than the DTIM period then it makes senses
630 * to make it a multiple of that.
631 *
632 * XXX fixed at 100ms
633 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700634
Sujith5379c8a2009-03-03 10:16:54 +0530635 bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100), sleepduration);
636 if (bs.bs_sleepduration > bs.bs_dtimperiod)
637 bs.bs_sleepduration = bs.bs_dtimperiod;
638
639 /* TSF out of range threshold fixed at 1 second */
640 bs.bs_tsfoor_threshold = ATH9K_TSFOOR_THRESHOLD;
641
642 DPRINTF(sc, ATH_DBG_BEACON, "tsf: %llu tsftu: %u\n", tsf, tsftu);
643 DPRINTF(sc, ATH_DBG_BEACON,
644 "bmiss: %u sleep: %u cfp-period: %u maxdur: %u next: %u\n",
645 bs.bs_bmissthreshold, bs.bs_sleepduration,
646 bs.bs_cfpperiod, bs.bs_cfpmaxduration, bs.bs_cfpnext);
647
648 /* Set the computed STA beacon timers */
649
650 ath9k_hw_set_interrupts(sc->sc_ah, 0);
651 ath9k_hw_set_sta_beacon_timers(sc->sc_ah, &bs);
652 sc->imask |= ATH9K_INT_BMISS;
653 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
654}
655
656static void ath_beacon_config_adhoc(struct ath_softc *sc,
657 struct ath_beacon_config *conf,
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200658 struct ath_vif *avp,
659 struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530660{
661 u64 tsf;
662 u32 tsftu, intval, nexttbtt;
663
664 intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
665
666 /* Pull nexttbtt forward to reflect the current TSF */
667
668 nexttbtt = TSF_TO_TU(sc->beacon.bc_tstamp >> 32, sc->beacon.bc_tstamp);
669 if (nexttbtt == 0)
670 nexttbtt = intval;
671 else if (intval)
672 nexttbtt = roundup(nexttbtt, intval);
673
674 tsf = ath9k_hw_gettsf64(sc->sc_ah);
675 tsftu = TSF_TO_TU((u32)(tsf>>32), (u32)tsf) + FUDGE;
676 do {
677 nexttbtt += intval;
678 } while (nexttbtt < tsftu);
679
680 DPRINTF(sc, ATH_DBG_BEACON,
681 "IBSS nexttbtt %u intval %u (%u)\n",
682 nexttbtt, intval, conf->beacon_interval);
683
684 /*
685 * In IBSS mode enable the beacon timers but only enable SWBA interrupts
686 * if we need to manually prepare beacon frames. Otherwise we use a
687 * self-linked tx descriptor and let the hardware deal with things.
688 */
689 intval |= ATH9K_BEACON_ENA;
690 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL))
691 sc->imask |= ATH9K_INT_SWBA;
692
693 ath_beaconq_config(sc);
694
695 /* Set the computed ADHOC beacon timers */
696
697 ath9k_hw_set_interrupts(sc->sc_ah, 0);
698 ath9k_hw_beaconinit(sc->sc_ah, nexttbtt, intval);
699 sc->beacon.bmisscnt = 0;
700 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
701
702 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200703 ath_beacon_start_adhoc(sc, vif);
Sujith5379c8a2009-03-03 10:16:54 +0530704}
705
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200706void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif)
Sujith5379c8a2009-03-03 10:16:54 +0530707{
708 struct ath_beacon_config conf;
Sujith5379c8a2009-03-03 10:16:54 +0530709
710 /* Setup the beacon configuration parameters */
711
712 memset(&conf, 0, sizeof(struct ath_beacon_config));
Jouni Malinena8fff502008-08-11 14:01:48 +0300713 conf.beacon_interval = sc->hw->conf.beacon_int ?
714 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700715 conf.listen_interval = 1;
716 conf.dtim_period = conf.beacon_interval;
717 conf.dtim_count = 1;
718 conf.bmiss_timeout = ATH_DEFAULT_BMISS_LIMIT * conf.beacon_interval;
719
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200720 if (vif) {
721 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Sujith459f5f92008-09-17 10:15:36 +0530722
Sujith5379c8a2009-03-03 10:16:54 +0530723 switch(avp->av_opmode) {
724 case NL80211_IFTYPE_AP:
725 ath_beacon_config_ap(sc, &conf, avp);
726 break;
727 case NL80211_IFTYPE_ADHOC:
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200728 ath_beacon_config_adhoc(sc, &conf, avp, vif);
Sujith5379c8a2009-03-03 10:16:54 +0530729 break;
730 case NL80211_IFTYPE_STATION:
731 ath_beacon_config_sta(sc, &conf, avp);
732 break;
733 default:
734 DPRINTF(sc, ATH_DBG_CONFIG,
735 "Unsupported beaconing mode\n");
736 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700737 }
738
Sujith5379c8a2009-03-03 10:16:54 +0530739 sc->sc_flags |= SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700741}