blob: 88fbfe5bb7b5a2d8499cda70d8582234a5e82e18 [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
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070017#include "core.h"
18
19/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070020 * This function will modify certain transmit queue properties depending on
21 * the operating mode of the station (AP or AdHoc). Parameters are AIFS
22 * settings and channel width min/max
23*/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024static int ath_beaconq_config(struct ath_softc *sc)
25{
26 struct ath_hal *ah = sc->sc_ah;
Sujithea9880f2008-08-07 10:53:10 +053027 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070028
Sujithea9880f2008-08-07 10:53:10 +053029 ath9k_hw_get_txq_props(ah, sc->sc_bhalq, &qi);
Sujithb4696c8b2008-08-11 14:04:52 +053030 if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070031 /* Always burst out beacon and CAB traffic. */
32 qi.tqi_aifs = 1;
33 qi.tqi_cwmin = 0;
34 qi.tqi_cwmax = 0;
35 } else {
36 /* Adhoc mode; important thing is to use 2x cwmin. */
37 qi.tqi_aifs = sc->sc_beacon_qi.tqi_aifs;
38 qi.tqi_cwmin = 2*sc->sc_beacon_qi.tqi_cwmin;
39 qi.tqi_cwmax = sc->sc_beacon_qi.tqi_cwmax;
40 }
41
Sujithea9880f2008-08-07 10:53:10 +053042 if (!ath9k_hw_set_txq_props(ah, sc->sc_bhalq, &qi)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070043 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +053044 "unable to update h/w beacon queue parameters\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070045 return 0;
46 } else {
47 ath9k_hw_resettxqueue(ah, sc->sc_bhalq); /* push to h/w */
48 return 1;
49 }
50}
51
Sujithff37e332008-11-24 12:07:55 +053052static void ath_bstuck_process(struct ath_softc *sc)
53{
54 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +053055 "stuck beacon; resetting (bmiss count %u)\n",
56 sc->sc_bmisscount);
Sujithff37e332008-11-24 12:07:55 +053057 ath_reset(sc, false);
58}
59
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070060/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070061 * Associates the beacon frame buffer with a transmit descriptor. Will set
62 * up all required antenna switch parameters, rate codes, and channel flags.
63 * Beacons are always sent out at the lowest rate, and are not retried.
64*/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070065static void ath_beacon_setup(struct ath_softc *sc,
Sujith980b24d2008-09-17 10:15:09 +053066 struct ath_vap *avp, struct ath_buf *bf)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070067{
68 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
69 struct ath_hal *ah = sc->sc_ah;
70 struct ath_desc *ds;
Sujith980b24d2008-09-17 10:15:09 +053071 struct ath9k_11n_rate_series series[4];
Sujithe63835b2008-11-18 09:07:53 +053072 struct ath_rate_table *rt;
Sujith980b24d2008-09-17 10:15:09 +053073 int flags, antenna;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070074 u8 rix, rate;
75 int ctsrate = 0;
76 int ctsduration = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070077
Sujith04bd4632008-11-28 22:18:05 +053078 DPRINTF(sc, ATH_DBG_BEACON, "m %p len %u\n", skb, skb->len);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070079
80 /* setup descriptors */
81 ds = bf->bf_desc;
82
83 flags = ATH9K_TXDESC_NOACK;
84
Sujithb4696c8b2008-08-11 14:04:52 +053085 if (sc->sc_ah->ah_opmode == ATH9K_M_IBSS &&
Sujith60b67f52008-08-07 10:52:38 +053086 (ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070087 ds->ds_link = bf->bf_daddr; /* self-linked */
88 flags |= ATH9K_TXDESC_VEOL;
89 /* Let hardware handle antenna switching. */
90 antenna = 0;
91 } else {
92 ds->ds_link = 0;
93 /*
94 * Switch antenna every beacon.
95 * Should only switch every beacon period, not for every
96 * SWBA's
97 * XXX assumes two antenna
98 */
99 antenna = ((sc->ast_be_xmit / sc->sc_nbcnvaps) & 1 ? 2 : 1);
100 }
101
102 ds->ds_data = bf->bf_buf_addr;
103
104 /*
105 * Calculate rate code.
106 * XXX everything at min xmit rate
107 */
Sujith86b89ee2008-08-07 10:54:57 +0530108 rix = 0;
Sujithe63835b2008-11-18 09:07:53 +0530109 rt = sc->hw_rate_table[sc->sc_curmode];
110 rate = rt->info[rix].ratecode;
Sujith672840a2008-08-11 14:05:08 +0530111 if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
Sujithe63835b2008-11-18 09:07:53 +0530112 rate |= rt->info[rix].short_preamble;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700113
Sujithff9b6622008-08-14 13:27:16 +0530114 ath9k_hw_set11n_txdesc(ah, ds,
Sujith980b24d2008-09-17 10:15:09 +0530115 skb->len + FCS_LEN, /* frame length */
116 ATH9K_PKT_TYPE_BEACON, /* Atheros packet type */
Sujith528f0c62008-10-29 10:14:26 +0530117 MAX_RATE_POWER, /* FIXME */
Sujith980b24d2008-09-17 10:15:09 +0530118 ATH9K_TXKEYIX_INVALID, /* no encryption */
119 ATH9K_KEY_TYPE_CLEAR, /* no encryption */
120 flags /* no ack,
121 veol for beacons */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700122 );
123
124 /* NB: beacon's BufLen must be a multiple of 4 bytes */
Sujithff9b6622008-08-14 13:27:16 +0530125 ath9k_hw_filltxdesc(ah, ds,
126 roundup(skb->len, 4), /* buffer length */
Sujith980b24d2008-09-17 10:15:09 +0530127 true, /* first segment */
128 true, /* last segment */
129 ds /* first descriptor */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700130 );
131
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700132 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700133 series[0].Tries = 1;
134 series[0].Rate = rate;
135 series[0].ChSel = sc->sc_tx_chainmask;
136 series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0;
137 ath9k_hw_set11n_ratescenario(ah, ds, ds, 0,
138 ctsrate, ctsduration, series, 4, 0);
139}
140
Sujithff37e332008-11-24 12:07:55 +0530141/* Generate beacon frame and queue cab data for a vap */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700142static struct ath_buf *ath_beacon_generate(struct ath_softc *sc, int if_id)
143{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700144 struct ath_buf *bf;
145 struct ath_vap *avp;
146 struct sk_buff *skb;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700147 struct ath_txq *cabq;
Sujith5640b082008-10-29 10:16:06 +0530148 struct ieee80211_vif *vif;
Jouni Malinen147583c2008-08-11 14:01:50 +0300149 struct ieee80211_tx_info *info;
Sujith980b24d2008-09-17 10:15:09 +0530150 int cabq_depth;
151
Sujith5640b082008-10-29 10:16:06 +0530152 vif = sc->sc_vaps[if_id];
153 ASSERT(vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700154
Sujith5640b082008-10-29 10:16:06 +0530155 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700156 cabq = sc->sc_cabq;
157
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700158 if (avp->av_bcbuf == NULL) {
Sujith04bd4632008-11-28 22:18:05 +0530159 DPRINTF(sc, ATH_DBG_BEACON, "avp=%p av_bcbuf=%p\n",
160 avp, avp->av_bcbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700161 return NULL;
162 }
Sujith980b24d2008-09-17 10:15:09 +0530163
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700164 bf = avp->av_bcbuf;
Sujith980b24d2008-09-17 10:15:09 +0530165 skb = (struct sk_buff *)bf->bf_mpdu;
Jouni Malinena8fff502008-08-11 14:01:48 +0300166 if (skb) {
167 pci_unmap_single(sc->pdev, bf->bf_dmacontext,
Luis R. Rodriguezca0c7e52008-11-20 17:15:12 -0800168 skb->len,
Jouni Malinena8fff502008-08-11 14:01:48 +0300169 PCI_DMA_TODEVICE);
170 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700171
Sujith5640b082008-10-29 10:16:06 +0530172 skb = ieee80211_beacon_get(sc->hw, vif);
Jouni Malinena8fff502008-08-11 14:01:48 +0300173 bf->bf_mpdu = skb;
174 if (skb == NULL)
175 return NULL;
Sujith980b24d2008-09-17 10:15:09 +0530176
Jouni Malinen147583c2008-08-11 14:01:50 +0300177 info = IEEE80211_SKB_CB(skb);
178 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
179 /*
180 * TODO: make sure the seq# gets assigned properly (vs. other
181 * TX frames)
182 */
Sujith980b24d2008-09-17 10:15:09 +0530183 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Jouni Malinen147583c2008-08-11 14:01:50 +0300184 sc->seq_no += 0x10;
185 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
186 hdr->seq_ctrl |= cpu_to_le16(sc->seq_no);
187 }
Sujith980b24d2008-09-17 10:15:09 +0530188
Jouni Malinena8fff502008-08-11 14:01:48 +0300189 bf->bf_buf_addr = bf->bf_dmacontext =
190 pci_map_single(sc->pdev, skb->data,
Luis R. Rodriguezca0c7e52008-11-20 17:15:12 -0800191 skb->len,
Jouni Malinena8fff502008-08-11 14:01:48 +0300192 PCI_DMA_TODEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700193
Sujith5640b082008-10-29 10:16:06 +0530194 skb = ieee80211_get_buffered_bc(sc->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700195
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700196 /*
197 * if the CABQ traffic from previous DTIM is pending and the current
198 * beacon is also a DTIM.
199 * 1) if there is only one vap let the cab traffic continue.
200 * 2) if there are more than one vap and we are using staggered
201 * beacons, then drain the cabq by dropping all the frames in
202 * the cabq so that the current vaps cab traffic can be scheduled.
203 */
204 spin_lock_bh(&cabq->axq_lock);
205 cabq_depth = cabq->axq_depth;
206 spin_unlock_bh(&cabq->axq_lock);
207
Jouni Malinene022edb2008-08-22 17:31:33 +0300208 if (skb && cabq_depth) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700209 /*
210 * Unlock the cabq lock as ath_tx_draintxq acquires
211 * the lock again which is a common function and that
212 * acquires txq lock inside.
213 */
214 if (sc->sc_nvaps > 1) {
215 ath_tx_draintxq(sc, cabq, false);
216 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530217 "flush previous cabq traffic\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700218 }
219 }
220
221 /* Construct tx descriptor. */
222 ath_beacon_setup(sc, avp, bf);
223
224 /*
225 * Enable the CAB queue before the beacon queue to
226 * insure cab frames are triggered by this beacon.
227 */
Jouni Malinene022edb2008-08-22 17:31:33 +0300228 while (skb) {
229 ath_tx_cabq(sc, skb);
Sujith5640b082008-10-29 10:16:06 +0530230 skb = ieee80211_get_buffered_bc(sc->hw, vif);
Jouni Malinene022edb2008-08-22 17:31:33 +0300231 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700232
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700233 return bf;
234}
235
236/*
237 * Startup beacon transmission for adhoc mode when they are sent entirely
238 * by the hardware using the self-linked descriptor + veol trick.
239*/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700240static void ath_beacon_start_adhoc(struct ath_softc *sc, int if_id)
241{
Sujith5640b082008-10-29 10:16:06 +0530242 struct ieee80211_vif *vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700243 struct ath_hal *ah = sc->sc_ah;
244 struct ath_buf *bf;
245 struct ath_vap *avp;
246 struct sk_buff *skb;
247
Sujith5640b082008-10-29 10:16:06 +0530248 vif = sc->sc_vaps[if_id];
249 ASSERT(vif);
250
251 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700252
253 if (avp->av_bcbuf == NULL) {
Sujith04bd4632008-11-28 22:18:05 +0530254 DPRINTF(sc, ATH_DBG_BEACON, "avp=%p av_bcbuf=%p\n",
255 avp, avp != NULL ? avp->av_bcbuf : NULL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700256 return;
257 }
258 bf = avp->av_bcbuf;
259 skb = (struct sk_buff *) bf->bf_mpdu;
260
261 /* Construct tx descriptor. */
262 ath_beacon_setup(sc, avp, bf);
263
264 /* NB: caller is known to have already stopped tx dma */
265 ath9k_hw_puttxbuf(ah, sc->sc_bhalq, bf->bf_daddr);
266 ath9k_hw_txstart(ah, sc->sc_bhalq);
Sujith04bd4632008-11-28 22:18:05 +0530267 DPRINTF(sc, ATH_DBG_BEACON, "TXDP%u = %llx (%p)\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700268 sc->sc_bhalq, ito64(bf->bf_daddr), bf->bf_desc);
269}
270
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700271int ath_beaconq_setup(struct ath_hal *ah)
272{
Sujithea9880f2008-08-07 10:53:10 +0530273 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700274
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700275 memset(&qi, 0, sizeof(qi));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700276 qi.tqi_aifs = 1;
277 qi.tqi_cwmin = 0;
278 qi.tqi_cwmax = 0;
279 /* NB: don't enable any interrupts */
280 return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
281}
282
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700283int ath_beacon_alloc(struct ath_softc *sc, int if_id)
284{
Sujith5640b082008-10-29 10:16:06 +0530285 struct ieee80211_vif *vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700286 struct ath_vap *avp;
Sujith980b24d2008-09-17 10:15:09 +0530287 struct ieee80211_hdr *hdr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700288 struct ath_buf *bf;
289 struct sk_buff *skb;
Sujith459f5f92008-09-17 10:15:36 +0530290 __le64 tstamp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700291
Sujith5640b082008-10-29 10:16:06 +0530292 vif = sc->sc_vaps[if_id];
293 ASSERT(vif);
294
295 avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700296
297 /* Allocate a beacon descriptor if we haven't done so. */
298 if (!avp->av_bcbuf) {
Sujith980b24d2008-09-17 10:15:09 +0530299 /* Allocate beacon state for hostap/ibss. We know
300 * a buffer is available. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700301 avp->av_bcbuf = list_first_entry(&sc->sc_bbuf,
Sujith980b24d2008-09-17 10:15:09 +0530302 struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700303 list_del(&avp->av_bcbuf->list);
304
Sujithb4696c8b2008-08-11 14:04:52 +0530305 if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP ||
Sujith60b67f52008-08-07 10:52:38 +0530306 !(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700307 int slot;
308 /*
309 * Assign the vap to a beacon xmit slot. As
310 * above, this cannot fail to find one.
311 */
312 avp->av_bslot = 0;
313 for (slot = 0; slot < ATH_BCBUF; slot++)
314 if (sc->sc_bslot[slot] == ATH_IF_ID_ANY) {
315 /*
316 * XXX hack, space out slots to better
317 * deal with misses
318 */
319 if (slot+1 < ATH_BCBUF &&
320 sc->sc_bslot[slot+1] ==
321 ATH_IF_ID_ANY) {
322 avp->av_bslot = slot+1;
323 break;
324 }
325 avp->av_bslot = slot;
326 /* NB: keep looking for a double slot */
327 }
328 BUG_ON(sc->sc_bslot[avp->av_bslot] != ATH_IF_ID_ANY);
329 sc->sc_bslot[avp->av_bslot] = if_id;
330 sc->sc_nbcnvaps++;
331 }
332 }
333
334 /* release the previous beacon frame , if it already exists. */
335 bf = avp->av_bcbuf;
336 if (bf->bf_mpdu != NULL) {
337 skb = (struct sk_buff *)bf->bf_mpdu;
Jouni Malinena8fff502008-08-11 14:01:48 +0300338 pci_unmap_single(sc->pdev, bf->bf_dmacontext,
Luis R. Rodriguezca0c7e52008-11-20 17:15:12 -0800339 skb->len,
Jouni Malinena8fff502008-08-11 14:01:48 +0300340 PCI_DMA_TODEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700341 dev_kfree_skb_any(skb);
342 bf->bf_mpdu = NULL;
343 }
344
345 /*
Sujith980b24d2008-09-17 10:15:09 +0530346 * NB: the beacon data buffer must be 32-bit aligned.
Jouni Malinene022edb2008-08-22 17:31:33 +0300347 * FIXME: Fill avp->av_btxctl.txpower and
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700348 * avp->av_btxctl.shortPreamble
349 */
Sujith5640b082008-10-29 10:16:06 +0530350 skb = ieee80211_beacon_get(sc->hw, vif);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700351 if (skb == NULL) {
Sujith04bd4632008-11-28 22:18:05 +0530352 DPRINTF(sc, ATH_DBG_BEACON, "cannot get skb\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700353 return -ENOMEM;
354 }
355
Sujith459f5f92008-09-17 10:15:36 +0530356 tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
357 sc->bc_tstamp = le64_to_cpu(tstamp);
358
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700359 /*
360 * Calculate a TSF adjustment factor required for
361 * staggered beacons. Note that we assume the format
362 * of the beacon frame leaves the tstamp field immediately
363 * following the header.
364 */
365 if (avp->av_bslot > 0) {
366 u64 tsfadjust;
367 __le64 val;
368 int intval;
369
Jouni Malinena8fff502008-08-11 14:01:48 +0300370 intval = sc->hw->conf.beacon_int ?
371 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700372
373 /*
374 * The beacon interval is in TU's; the TSF in usecs.
375 * We figure out how many TU's to add to align the
376 * timestamp then convert to TSF units and handle
377 * byte swapping before writing it in the frame.
378 * The hardware will then add this each time a beacon
379 * frame is sent. Note that we align vap's 1..N
380 * and leave vap 0 untouched. This means vap 0
381 * has a timestamp in one beacon interval while the
382 * others get a timestamp aligned to the next interval.
383 */
384 tsfadjust = (intval * (ATH_BCBUF - avp->av_bslot)) / ATH_BCBUF;
385 val = cpu_to_le64(tsfadjust << 10); /* TU->TSF */
386
387 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530388 "stagger beacons, bslot %d intval %u tsfadjust %llu\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700389 avp->av_bslot, intval, (unsigned long long)tsfadjust);
390
Sujith980b24d2008-09-17 10:15:09 +0530391 hdr = (struct ieee80211_hdr *)skb->data;
392 memcpy(&hdr[1], &val, sizeof(val));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700393 }
394
Jouni Malinena8fff502008-08-11 14:01:48 +0300395 bf->bf_buf_addr = bf->bf_dmacontext =
396 pci_map_single(sc->pdev, skb->data,
Luis R. Rodriguezca0c7e52008-11-20 17:15:12 -0800397 skb->len,
Jouni Malinena8fff502008-08-11 14:01:48 +0300398 PCI_DMA_TODEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700399 bf->bf_mpdu = skb;
400
401 return 0;
402}
403
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700404void ath_beacon_return(struct ath_softc *sc, struct ath_vap *avp)
405{
406 if (avp->av_bcbuf != NULL) {
407 struct ath_buf *bf;
408
409 if (avp->av_bslot != -1) {
410 sc->sc_bslot[avp->av_bslot] = ATH_IF_ID_ANY;
411 sc->sc_nbcnvaps--;
412 }
413
414 bf = avp->av_bcbuf;
415 if (bf->bf_mpdu != NULL) {
416 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
Jouni Malinena8fff502008-08-11 14:01:48 +0300417 pci_unmap_single(sc->pdev, bf->bf_dmacontext,
Luis R. Rodriguezca0c7e52008-11-20 17:15:12 -0800418 skb->len,
Jouni Malinena8fff502008-08-11 14:01:48 +0300419 PCI_DMA_TODEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700420 dev_kfree_skb_any(skb);
421 bf->bf_mpdu = NULL;
422 }
423 list_add_tail(&bf->list, &sc->sc_bbuf);
424
425 avp->av_bcbuf = NULL;
426 }
427}
428
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429void ath9k_beacon_tasklet(unsigned long data)
430{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700431 struct ath_softc *sc = (struct ath_softc *)data;
432 struct ath_hal *ah = sc->sc_ah;
433 struct ath_buf *bf = NULL;
434 int slot, if_id;
435 u32 bfaddr;
436 u32 rx_clear = 0, rx_frame = 0, tx_frame = 0;
437 u32 show_cycles = 0;
438 u32 bc = 0; /* beacon count */
439 u64 tsf;
440 u32 tsftu;
441 u16 intval;
442
Sujith98deeea2008-08-11 14:05:46 +0530443 if (sc->sc_flags & SC_OP_NO_RESET) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700444 show_cycles = ath9k_hw_GetMibCycleCountsPct(ah,
Sujithff37e332008-11-24 12:07:55 +0530445 &rx_clear, &rx_frame, &tx_frame);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700446 }
447
448 /*
449 * Check if the previous beacon has gone out. If
450 * not don't try to post another, skip this period
451 * and wait for the next. Missed beacons indicate
452 * a problem and should not occur. If we miss too
453 * many consecutive beacons reset the device.
Sujith980b24d2008-09-17 10:15:09 +0530454 *
455 * FIXME: Clean up this mess !!
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700456 */
457 if (ath9k_hw_numtxpending(ah, sc->sc_bhalq) != 0) {
458 sc->sc_bmisscount++;
459 /* XXX: doth needs the chanchange IE countdown decremented.
460 * We should consider adding a mac80211 call to indicate
461 * a beacon miss so appropriate action could be taken
462 * (in that layer).
463 */
464 if (sc->sc_bmisscount < BSTUCK_THRESH) {
Sujith98deeea2008-08-11 14:05:46 +0530465 if (sc->sc_flags & SC_OP_NO_RESET) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700466 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530467 "missed %u consecutive beacons\n",
468 sc->sc_bmisscount);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700469 if (show_cycles) {
470 /*
Sujith980b24d2008-09-17 10:15:09 +0530471 * Display cycle counter stats from HW
472 * to aide in debug of stickiness.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700473 */
Sujith980b24d2008-09-17 10:15:09 +0530474 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530475 "busy times: rx_clear=%d, "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700476 "rx_frame=%d, tx_frame=%d\n",
Sujith04bd4632008-11-28 22:18:05 +0530477 rx_clear, rx_frame,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700478 tx_frame);
479 } else {
Sujith980b24d2008-09-17 10:15:09 +0530480 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530481 "unable to obtain "
482 "busy times\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700483 }
484 } else {
485 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530486 "missed %u consecutive beacons\n",
487 sc->sc_bmisscount);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700488 }
489 } else if (sc->sc_bmisscount >= BSTUCK_THRESH) {
Sujith98deeea2008-08-11 14:05:46 +0530490 if (sc->sc_flags & SC_OP_NO_RESET) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700491 if (sc->sc_bmisscount == BSTUCK_THRESH) {
Sujith980b24d2008-09-17 10:15:09 +0530492 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530493 "beacon is officially "
494 "stuck\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 ath9k_hw_dmaRegDump(ah);
496 }
497 } else {
498 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530499 "beacon is officially stuck\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700500 ath_bstuck_process(sc);
501 }
502 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700503 return;
504 }
Sujith980b24d2008-09-17 10:15:09 +0530505
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700506 if (sc->sc_bmisscount != 0) {
Sujith98deeea2008-08-11 14:05:46 +0530507 if (sc->sc_flags & SC_OP_NO_RESET) {
Sujith980b24d2008-09-17 10:15:09 +0530508 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530509 "resume beacon xmit after %u misses\n",
510 sc->sc_bmisscount);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700511 } else {
512 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530513 "resume beacon xmit after %u misses\n",
514 sc->sc_bmisscount);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700515 }
516 sc->sc_bmisscount = 0;
517 }
518
519 /*
520 * Generate beacon frames. we are sending frames
521 * staggered so calculate the slot for this frame based
522 * on the tsf to safeguard against missing an swba.
523 */
524
Jouni Malinena8fff502008-08-11 14:01:48 +0300525 intval = sc->hw->conf.beacon_int ?
526 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700527
528 tsf = ath9k_hw_gettsf64(ah);
529 tsftu = TSF_TO_TU(tsf>>32, tsf);
530 slot = ((tsftu % intval) * ATH_BCBUF) / intval;
531 if_id = sc->sc_bslot[(slot + 1) % ATH_BCBUF];
Sujith980b24d2008-09-17 10:15:09 +0530532
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700533 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530534 "slot %d [tsf %llu tsftu %u intval %u] if_id %d\n",
535 slot, (unsigned long long)tsf, tsftu,
Sujith980b24d2008-09-17 10:15:09 +0530536 intval, if_id);
537
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700538 bfaddr = 0;
539 if (if_id != ATH_IF_ID_ANY) {
540 bf = ath_beacon_generate(sc, if_id);
541 if (bf != NULL) {
542 bfaddr = bf->bf_daddr;
543 bc = 1;
544 }
545 }
546 /*
547 * Handle slot time change when a non-ERP station joins/leaves
548 * an 11g network. The 802.11 layer notifies us via callback,
549 * we mark updateslot, then wait one beacon before effecting
550 * the change. This gives associated stations at least one
551 * beacon interval to note the state change.
552 *
553 * NB: The slot time change state machine is clocked according
554 * to whether we are bursting or staggering beacons. We
555 * recognize the request to update and record the current
556 * slot then don't transition until that slot is reached
557 * again. If we miss a beacon for that slot then we'll be
558 * slow to transition but we'll be sure at least one beacon
559 * interval has passed. When bursting slot is always left
560 * set to ATH_BCBUF so this check is a noop.
561 */
562 /* XXX locking */
563 if (sc->sc_updateslot == UPDATE) {
564 sc->sc_updateslot = COMMIT; /* commit next beacon */
565 sc->sc_slotupdate = slot;
Sujithff37e332008-11-24 12:07:55 +0530566 } else if (sc->sc_updateslot == COMMIT && sc->sc_slotupdate == slot) {
567 ath9k_hw_setslottime(sc->sc_ah, sc->sc_slottime);
568 sc->sc_updateslot = OK;
569 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700570 if (bfaddr != 0) {
571 /*
572 * Stop any current dma and put the new frame(s) on the queue.
573 * This should never fail since we check above that no frames
574 * are still pending on the queue.
575 */
576 if (!ath9k_hw_stoptxdma(ah, sc->sc_bhalq)) {
577 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530578 "beacon queue %u did not stop?\n", sc->sc_bhalq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700579 /* NB: the HAL still stops DMA, so proceed */
580 }
581
582 /* NB: cabq traffic should already be queued and primed */
583 ath9k_hw_puttxbuf(ah, sc->sc_bhalq, bfaddr);
584 ath9k_hw_txstart(ah, sc->sc_bhalq);
585
586 sc->ast_be_xmit += bc; /* XXX per-vap? */
587 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700588}
589
590/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700591 * Configure the beacon and sleep timers.
592 *
593 * When operating as an AP this resets the TSF and sets
594 * up the hardware to notify us when we need to issue beacons.
595 *
596 * When operating in station mode this sets up the beacon
597 * timers according to the timestamp of the last received
598 * beacon and the current TSF, configures PCF and DTIM
599 * handling, programs the sleep registers so the hardware
600 * will wakeup in time to receive beacons, and configures
601 * the beacon miss handling so we'll receive a BMISS
602 * interrupt when we stop seeing beacons from the AP
603 * we've associated with.
604 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700605void ath_beacon_config(struct ath_softc *sc, int if_id)
606{
Sujith5640b082008-10-29 10:16:06 +0530607 struct ieee80211_vif *vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700609 struct ath_beacon_config conf;
Sujith5640b082008-10-29 10:16:06 +0530610 struct ath_vap *avp;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700611 enum ath9k_opmode av_opmode;
Sujith980b24d2008-09-17 10:15:09 +0530612 u32 nexttbtt, intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700613
Sujith5640b082008-10-29 10:16:06 +0530614 if (if_id != ATH_IF_ID_ANY) {
615 vif = sc->sc_vaps[if_id];
616 ASSERT(vif);
617 avp = (void *)vif->drv_priv;
618 av_opmode = avp->av_opmode;
619 } else {
Sujithb4696c8b2008-08-11 14:04:52 +0530620 av_opmode = sc->sc_ah->ah_opmode;
Sujith5640b082008-10-29 10:16:06 +0530621 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700622
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700623 memset(&conf, 0, sizeof(struct ath_beacon_config));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700624
Jouni Malinena8fff502008-08-11 14:01:48 +0300625 conf.beacon_interval = sc->hw->conf.beacon_int ?
626 sc->hw->conf.beacon_int : ATH_DEFAULT_BINTVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700627 conf.listen_interval = 1;
628 conf.dtim_period = conf.beacon_interval;
629 conf.dtim_count = 1;
630 conf.bmiss_timeout = ATH_DEFAULT_BMISS_LIMIT * conf.beacon_interval;
631
632 /* extract tstamp from last beacon and convert to TU */
Sujith459f5f92008-09-17 10:15:36 +0530633 nexttbtt = TSF_TO_TU(sc->bc_tstamp >> 32, sc->bc_tstamp);
634
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700635 /* XXX conditionalize multi-bss support? */
Sujithb4696c8b2008-08-11 14:04:52 +0530636 if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700637 /*
638 * For multi-bss ap support beacons are either staggered
639 * evenly over N slots or burst together. For the former
640 * arrange for the SWBA to be delivered for each slot.
641 * Slots that are not occupied will generate nothing.
642 */
643 /* NB: the beacon interval is kept internally in TU's */
644 intval = conf.beacon_interval & ATH9K_BEACON_PERIOD;
645 intval /= ATH_BCBUF; /* for staggered beacons */
646 } else {
647 intval = conf.beacon_interval & ATH9K_BEACON_PERIOD;
648 }
649
Sujith980b24d2008-09-17 10:15:09 +0530650 if (nexttbtt == 0) /* e.g. for ap mode */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700651 nexttbtt = intval;
Sujith980b24d2008-09-17 10:15:09 +0530652 else if (intval) /* NB: can be 0 for monitor mode */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700653 nexttbtt = roundup(nexttbtt, intval);
Sujith980b24d2008-09-17 10:15:09 +0530654
Sujith04bd4632008-11-28 22:18:05 +0530655 DPRINTF(sc, ATH_DBG_BEACON, "nexttbtt %u intval %u (%u)\n",
656 nexttbtt, intval, conf.beacon_interval);
Sujith980b24d2008-09-17 10:15:09 +0530657
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700658 /* Check for ATH9K_M_HOSTAP and sc_nostabeacons for WDS client */
Sujithb4696c8b2008-08-11 14:04:52 +0530659 if (sc->sc_ah->ah_opmode == ATH9K_M_STA) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700660 struct ath9k_beacon_state bs;
661 u64 tsf;
662 u32 tsftu;
663 int dtimperiod, dtimcount, sleepduration;
664 int cfpperiod, cfpcount;
665
666 /*
667 * Setup dtim and cfp parameters according to
668 * last beacon we received (which may be none).
669 */
670 dtimperiod = conf.dtim_period;
Sujith980b24d2008-09-17 10:15:09 +0530671 if (dtimperiod <= 0) /* NB: 0 if not known */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700672 dtimperiod = 1;
673 dtimcount = conf.dtim_count;
Sujith980b24d2008-09-17 10:15:09 +0530674 if (dtimcount >= dtimperiod) /* NB: sanity check */
675 dtimcount = 0;
676 cfpperiod = 1; /* NB: no PCF support yet */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700677 cfpcount = 0;
678
679 sleepduration = conf.listen_interval * intval;
680 if (sleepduration <= 0)
681 sleepduration = intval;
682
Sujith980b24d2008-09-17 10:15:09 +0530683#define FUDGE 2
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700684 /*
685 * Pull nexttbtt forward to reflect the current
686 * TSF and calculate dtim+cfp state for the result.
687 */
688 tsf = ath9k_hw_gettsf64(ah);
689 tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE;
690 do {
691 nexttbtt += intval;
692 if (--dtimcount < 0) {
693 dtimcount = dtimperiod - 1;
694 if (--cfpcount < 0)
695 cfpcount = cfpperiod - 1;
696 }
697 } while (nexttbtt < tsftu);
698#undef FUDGE
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700699 memset(&bs, 0, sizeof(bs));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700700 bs.bs_intval = intval;
701 bs.bs_nexttbtt = nexttbtt;
702 bs.bs_dtimperiod = dtimperiod*intval;
703 bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval;
704 bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod;
705 bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod;
706 bs.bs_cfpmaxduration = 0;
Sujith980b24d2008-09-17 10:15:09 +0530707
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700708 /*
709 * Calculate the number of consecutive beacons to miss
710 * before taking a BMISS interrupt. The configuration
711 * is specified in TU so we only need calculate based
712 * on the beacon interval. Note that we clamp the
713 * result to at most 15 beacons.
714 */
715 if (sleepduration > intval) {
Sujith980b24d2008-09-17 10:15:09 +0530716 bs.bs_bmissthreshold = conf.listen_interval *
717 ATH_DEFAULT_BMISS_LIMIT / 2;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700718 } else {
719 bs.bs_bmissthreshold =
720 DIV_ROUND_UP(conf.bmiss_timeout, intval);
721 if (bs.bs_bmissthreshold > 15)
722 bs.bs_bmissthreshold = 15;
723 else if (bs.bs_bmissthreshold <= 0)
724 bs.bs_bmissthreshold = 1;
725 }
726
727 /*
728 * Calculate sleep duration. The configuration is
729 * given in ms. We insure a multiple of the beacon
730 * period is used. Also, if the sleep duration is
731 * greater than the DTIM period then it makes senses
732 * to make it a multiple of that.
733 *
734 * XXX fixed at 100ms
735 */
736
Sujith980b24d2008-09-17 10:15:09 +0530737 bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100),
738 sleepduration);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700739 if (bs.bs_sleepduration > bs.bs_dtimperiod)
740 bs.bs_sleepduration = bs.bs_dtimperiod;
741
742 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530743 "tsf %llu "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700744 "tsf:tu %u "
745 "intval %u "
746 "nexttbtt %u "
747 "dtim %u "
748 "nextdtim %u "
749 "bmiss %u "
750 "sleep %u "
751 "cfp:period %u "
752 "maxdur %u "
753 "next %u "
Sujithff9b6622008-08-14 13:27:16 +0530754 "timoffset %u\n",
Sujithff9b6622008-08-14 13:27:16 +0530755 (unsigned long long)tsf, tsftu,
756 bs.bs_intval,
757 bs.bs_nexttbtt,
758 bs.bs_dtimperiod,
759 bs.bs_nextdtim,
760 bs.bs_bmissthreshold,
761 bs.bs_sleepduration,
762 bs.bs_cfpperiod,
763 bs.bs_cfpmaxduration,
764 bs.bs_cfpnext,
765 bs.bs_timoffset
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700766 );
767
768 ath9k_hw_set_interrupts(ah, 0);
769 ath9k_hw_set_sta_beacon_timers(ah, &bs);
770 sc->sc_imask |= ATH9K_INT_BMISS;
771 ath9k_hw_set_interrupts(ah, sc->sc_imask);
772 } else {
773 u64 tsf;
774 u32 tsftu;
775 ath9k_hw_set_interrupts(ah, 0);
776 if (nexttbtt == intval)
777 intval |= ATH9K_BEACON_RESET_TSF;
Sujithb4696c8b2008-08-11 14:04:52 +0530778 if (sc->sc_ah->ah_opmode == ATH9K_M_IBSS) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 /*
780 * Pull nexttbtt forward to reflect the current
Sujith980b24d2008-09-17 10:15:09 +0530781 * TSF
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700782 */
Sujith980b24d2008-09-17 10:15:09 +0530783#define FUDGE 2
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 if (!(intval & ATH9K_BEACON_RESET_TSF)) {
785 tsf = ath9k_hw_gettsf64(ah);
786 tsftu = TSF_TO_TU((u32)(tsf>>32),
787 (u32)tsf) + FUDGE;
788 do {
789 nexttbtt += intval;
790 } while (nexttbtt < tsftu);
791 }
792#undef FUDGE
793 DPRINTF(sc, ATH_DBG_BEACON,
Sujith04bd4632008-11-28 22:18:05 +0530794 "IBSS nexttbtt %u intval %u (%u)\n",
795 nexttbtt,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700796 intval & ~ATH9K_BEACON_RESET_TSF,
797 conf.beacon_interval);
798
799 /*
800 * In IBSS mode enable the beacon timers but only
801 * enable SWBA interrupts if we need to manually
802 * prepare beacon frames. Otherwise we use a
803 * self-linked tx descriptor and let the hardware
804 * deal with things.
805 */
806 intval |= ATH9K_BEACON_ENA;
Sujith60b67f52008-08-07 10:52:38 +0530807 if (!(ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700808 sc->sc_imask |= ATH9K_INT_SWBA;
809 ath_beaconq_config(sc);
Sujithb4696c8b2008-08-11 14:04:52 +0530810 } else if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700811 /*
812 * In AP mode we enable the beacon timers and
813 * SWBA interrupts to prepare beacon frames.
814 */
815 intval |= ATH9K_BEACON_ENA;
816 sc->sc_imask |= ATH9K_INT_SWBA; /* beacon prepare */
817 ath_beaconq_config(sc);
818 }
819 ath9k_hw_beaconinit(ah, nexttbtt, intval);
820 sc->sc_bmisscount = 0;
821 ath9k_hw_set_interrupts(ah, sc->sc_imask);
822 /*
823 * When using a self-linked beacon descriptor in
824 * ibss mode load it once here.
825 */
Sujithb4696c8b2008-08-11 14:04:52 +0530826 if (sc->sc_ah->ah_opmode == ATH9K_M_IBSS &&
Sujith60b67f52008-08-07 10:52:38 +0530827 (ah->ah_caps.hw_caps & ATH9K_HW_CAP_VEOL))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700828 ath_beacon_start_adhoc(sc, 0);
829 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700830}
831
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700832void ath_beacon_sync(struct ath_softc *sc, int if_id)
833{
834 /*
835 * Resync beacon timers using the tsf of the
836 * beacon frame we just received.
837 */
838 ath_beacon_config(sc, if_id);
Sujith672840a2008-08-11 14:05:08 +0530839 sc->sc_flags |= SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700840}