Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1 | /* |
Sujith | cee075a | 2009-03-13 09:07:23 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2009 Atheros Communications Inc. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 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 | |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 17 | #include "ath9k.h" |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 18 | |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 19 | #define FUDGE 2 |
| 20 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 21 | /* |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 22 | * 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. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 26 | static int ath_beaconq_config(struct ath_softc *sc) |
| 27 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 28 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 29 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 30 | struct ath9k_tx_queue_info qi; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 31 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 32 | ath9k_hw_get_txq_props(ah, sc->beacon.beaconq, &qi); |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 33 | if (sc->sc_ah->opmode == NL80211_IFTYPE_AP) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 34 | /* Always burst out beacon and CAB traffic. */ |
| 35 | qi.tqi_aifs = 1; |
| 36 | qi.tqi_cwmin = 0; |
| 37 | qi.tqi_cwmax = 0; |
| 38 | } else { |
| 39 | /* Adhoc mode; important thing is to use 2x cwmin. */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 40 | qi.tqi_aifs = sc->beacon.beacon_qi.tqi_aifs; |
| 41 | qi.tqi_cwmin = 2*sc->beacon.beacon_qi.tqi_cwmin; |
| 42 | qi.tqi_cwmax = sc->beacon.beacon_qi.tqi_cwmax; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 45 | if (!ath9k_hw_set_txq_props(ah, sc->beacon.beaconq, &qi)) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 46 | ath_print(common, ATH_DBG_FATAL, |
| 47 | "Unable to update h/w beacon queue parameters\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 48 | return 0; |
| 49 | } else { |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 50 | ath9k_hw_resettxqueue(ah, sc->beacon.beaconq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 51 | return 1; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | /* |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 56 | * Associates the beacon frame buffer with a transmit descriptor. Will set |
| 57 | * up all required antenna switch parameters, rate codes, and channel flags. |
| 58 | * Beacons are always sent out at the lowest rate, and are not retried. |
| 59 | */ |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 60 | static void ath_beacon_setup(struct ath_softc *sc, struct ath_vif *avp, |
| 61 | struct ath_buf *bf) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 62 | { |
Sujith | a22be22 | 2009-03-30 15:28:36 +0530 | [diff] [blame] | 63 | struct sk_buff *skb = bf->bf_mpdu; |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 64 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame^] | 65 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 66 | struct ath_desc *ds; |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 67 | struct ath9k_11n_rate_series series[4]; |
Luis R. Rodriguez | 4f0fc7c | 2009-05-06 02:20:00 -0400 | [diff] [blame] | 68 | const struct ath_rate_table *rt; |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 69 | int flags, antenna, ctsrate = 0, ctsduration = 0; |
| 70 | u8 rate; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 71 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 72 | ds = bf->bf_desc; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 73 | flags = ATH9K_TXDESC_NOACK; |
| 74 | |
Pat Erley | 9cb5412 | 2009-03-20 22:59:59 -0400 | [diff] [blame] | 75 | if (((sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) || |
| 76 | (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) && |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 77 | (ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 78 | ds->ds_link = bf->bf_daddr; /* self-linked */ |
| 79 | flags |= ATH9K_TXDESC_VEOL; |
| 80 | /* Let hardware handle antenna switching. */ |
| 81 | antenna = 0; |
| 82 | } else { |
| 83 | ds->ds_link = 0; |
| 84 | /* |
| 85 | * Switch antenna every beacon. |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 86 | * Should only switch every beacon period, not for every SWBA |
| 87 | * XXX assumes two antennae |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 88 | */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 89 | antenna = ((sc->beacon.ast_be_xmit / sc->nbcnvifs) & 1 ? 2 : 1); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | ds->ds_data = bf->bf_buf_addr; |
| 93 | |
Sujith | 3706de6 | 2008-12-07 21:42:10 +0530 | [diff] [blame] | 94 | rt = sc->cur_rate_table; |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 95 | rate = rt->info[0].ratecode; |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 96 | if (sc->sc_flags & SC_OP_PREAMBLE_SHORT) |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 97 | rate |= rt->info[0].short_preamble; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 98 | |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 99 | ath9k_hw_set11n_txdesc(ah, ds, skb->len + FCS_LEN, |
| 100 | ATH9K_PKT_TYPE_BEACON, |
| 101 | MAX_RATE_POWER, |
| 102 | ATH9K_TXKEYIX_INVALID, |
| 103 | ATH9K_KEY_TYPE_CLEAR, |
| 104 | flags); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 105 | |
| 106 | /* NB: beacon's BufLen must be a multiple of 4 bytes */ |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 107 | ath9k_hw_filltxdesc(ah, ds, roundup(skb->len, 4), |
| 108 | true, true, ds); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 109 | |
Luis R. Rodriguez | 0345f37 | 2008-10-03 15:45:25 -0700 | [diff] [blame] | 110 | memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 111 | series[0].Tries = 1; |
| 112 | series[0].Rate = rate; |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame^] | 113 | series[0].ChSel = common->tx_chainmask; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 114 | series[0].RateFlags = (ctsrate) ? ATH9K_RATESERIES_RTS_CTS : 0; |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 115 | ath9k_hw_set11n_ratescenario(ah, ds, ds, 0, ctsrate, ctsduration, |
| 116 | series, 4, 0); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 119 | static struct ath_buf *ath_beacon_generate(struct ieee80211_hw *hw, |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 120 | struct ieee80211_vif *vif) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 121 | { |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 122 | struct ath_wiphy *aphy = hw->priv; |
| 123 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 124 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 125 | struct ath_buf *bf; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 126 | struct ath_vif *avp; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 127 | struct sk_buff *skb; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 128 | struct ath_txq *cabq; |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 129 | struct ieee80211_tx_info *info; |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 130 | int cabq_depth; |
| 131 | |
Jouni Malinen | f0ed85c | 2009-03-03 19:23:31 +0200 | [diff] [blame] | 132 | if (aphy->state != ATH_WIPHY_ACTIVE) |
| 133 | return NULL; |
| 134 | |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 135 | avp = (void *)vif->drv_priv; |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 136 | cabq = sc->beacon.cabq; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 137 | |
Sujith | d8baa93 | 2009-03-30 15:28:25 +0530 | [diff] [blame] | 138 | if (avp->av_bcbuf == NULL) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 139 | return NULL; |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 140 | |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 141 | /* Release the old beacon first */ |
| 142 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 143 | bf = avp->av_bcbuf; |
Sujith | a22be22 | 2009-03-30 15:28:36 +0530 | [diff] [blame] | 144 | skb = bf->bf_mpdu; |
Jouni Malinen | a8fff50 | 2008-08-11 14:01:48 +0300 | [diff] [blame] | 145 | if (skb) { |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 146 | dma_unmap_single(sc->dev, bf->bf_dmacontext, |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 147 | skb->len, DMA_TO_DEVICE); |
Jouni Malinen | 3fbb9d9 | 2008-12-05 20:42:45 +0200 | [diff] [blame] | 148 | dev_kfree_skb_any(skb); |
Jouni Malinen | a8fff50 | 2008-08-11 14:01:48 +0300 | [diff] [blame] | 149 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 150 | |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 151 | /* Get a new beacon from mac80211 */ |
| 152 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 153 | skb = ieee80211_beacon_get(hw, vif); |
Jouni Malinen | a8fff50 | 2008-08-11 14:01:48 +0300 | [diff] [blame] | 154 | bf->bf_mpdu = skb; |
| 155 | if (skb == NULL) |
| 156 | return NULL; |
Jouni Malinen | 4ed96f0 | 2009-03-12 21:53:23 +0200 | [diff] [blame] | 157 | ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp = |
| 158 | avp->tsf_adjust; |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 159 | |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 160 | 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 | */ |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 166 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 167 | sc->tx.seq_no += 0x10; |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 168 | hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 169 | hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no); |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 170 | } |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 171 | |
Jouni Malinen | a8fff50 | 2008-08-11 14:01:48 +0300 | [diff] [blame] | 172 | bf->bf_buf_addr = bf->bf_dmacontext = |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 173 | dma_map_single(sc->dev, skb->data, |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 174 | skb->len, DMA_TO_DEVICE); |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 175 | if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) { |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 176 | dev_kfree_skb_any(skb); |
| 177 | bf->bf_mpdu = NULL; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 178 | ath_print(common, ATH_DBG_FATAL, |
| 179 | "dma_mapping_error on beaconing\n"); |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 180 | return NULL; |
| 181 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 182 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 183 | skb = ieee80211_get_buffered_bc(hw, vif); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 184 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 185 | /* |
| 186 | * if the CABQ traffic from previous DTIM is pending and the current |
| 187 | * beacon is also a DTIM. |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 188 | * 1) if there is only one vif let the cab traffic continue. |
| 189 | * 2) if there are more than one vif and we are using staggered |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 190 | * beacons, then drain the cabq by dropping all the frames in |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 191 | * the cabq so that the current vifs cab traffic can be scheduled. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 192 | */ |
| 193 | spin_lock_bh(&cabq->axq_lock); |
| 194 | cabq_depth = cabq->axq_depth; |
| 195 | spin_unlock_bh(&cabq->axq_lock); |
| 196 | |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 197 | if (skb && cabq_depth) { |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 198 | if (sc->nvifs > 1) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 199 | ath_print(common, ATH_DBG_BEACON, |
| 200 | "Flushing previous cabq traffic\n"); |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 201 | ath_draintxq(sc, cabq, false); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 202 | } |
| 203 | } |
| 204 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 205 | ath_beacon_setup(sc, avp, bf); |
| 206 | |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 207 | while (skb) { |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 208 | ath_tx_cabq(hw, skb); |
| 209 | skb = ieee80211_get_buffered_bc(hw, vif); |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 210 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 211 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 212 | return bf; |
| 213 | } |
| 214 | |
| 215 | /* |
| 216 | * Startup beacon transmission for adhoc mode when they are sent entirely |
| 217 | * by the hardware using the self-linked descriptor + veol trick. |
| 218 | */ |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 219 | static void ath_beacon_start_adhoc(struct ath_softc *sc, |
| 220 | struct ieee80211_vif *vif) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 221 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 222 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 223 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 224 | struct ath_buf *bf; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 225 | struct ath_vif *avp; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 226 | struct sk_buff *skb; |
| 227 | |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 228 | avp = (void *)vif->drv_priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 229 | |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 230 | if (avp->av_bcbuf == NULL) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 231 | return; |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 232 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 233 | bf = avp->av_bcbuf; |
Sujith | a22be22 | 2009-03-30 15:28:36 +0530 | [diff] [blame] | 234 | skb = bf->bf_mpdu; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 235 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 236 | ath_beacon_setup(sc, avp, bf); |
| 237 | |
| 238 | /* NB: caller is known to have already stopped tx dma */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 239 | ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bf->bf_daddr); |
| 240 | ath9k_hw_txstart(ah, sc->beacon.beaconq); |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 241 | ath_print(common, ATH_DBG_BEACON, "TXDP%u = %llx (%p)\n", |
| 242 | sc->beacon.beaconq, ito64(bf->bf_daddr), bf->bf_desc); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 243 | } |
| 244 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 245 | int ath_beaconq_setup(struct ath_hw *ah) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 246 | { |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 247 | struct ath9k_tx_queue_info qi; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 248 | |
Luis R. Rodriguez | 0345f37 | 2008-10-03 15:45:25 -0700 | [diff] [blame] | 249 | memset(&qi, 0, sizeof(qi)); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 250 | qi.tqi_aifs = 1; |
| 251 | qi.tqi_cwmin = 0; |
| 252 | qi.tqi_cwmax = 0; |
| 253 | /* NB: don't enable any interrupts */ |
| 254 | return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi); |
| 255 | } |
| 256 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 257 | int ath_beacon_alloc(struct ath_wiphy *aphy, struct ieee80211_vif *vif) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 258 | { |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 259 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 260 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 261 | struct ath_vif *avp; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 262 | struct ath_buf *bf; |
| 263 | struct sk_buff *skb; |
Sujith | 459f5f9 | 2008-09-17 10:15:36 +0530 | [diff] [blame] | 264 | __le64 tstamp; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 265 | |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 266 | avp = (void *)vif->drv_priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 267 | |
| 268 | /* Allocate a beacon descriptor if we haven't done so. */ |
| 269 | if (!avp->av_bcbuf) { |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 270 | /* Allocate beacon state for hostap/ibss. We know |
| 271 | * a buffer is available. */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 272 | avp->av_bcbuf = list_first_entry(&sc->beacon.bbuf, |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 273 | struct ath_buf, list); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 274 | list_del(&avp->av_bcbuf->list); |
| 275 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 276 | if (sc->sc_ah->opmode == NL80211_IFTYPE_AP || |
| 277 | !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 278 | int slot; |
| 279 | /* |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 280 | * Assign the vif to a beacon xmit slot. As |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 281 | * above, this cannot fail to find one. |
| 282 | */ |
| 283 | avp->av_bslot = 0; |
| 284 | for (slot = 0; slot < ATH_BCBUF; slot++) |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 285 | if (sc->beacon.bslot[slot] == NULL) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 286 | /* |
| 287 | * XXX hack, space out slots to better |
| 288 | * deal with misses |
| 289 | */ |
| 290 | if (slot+1 < ATH_BCBUF && |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 291 | sc->beacon.bslot[slot+1] == NULL) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 292 | avp->av_bslot = slot+1; |
| 293 | break; |
| 294 | } |
| 295 | avp->av_bslot = slot; |
| 296 | /* NB: keep looking for a double slot */ |
| 297 | } |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 298 | BUG_ON(sc->beacon.bslot[avp->av_bslot] != NULL); |
| 299 | sc->beacon.bslot[avp->av_bslot] = vif; |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 300 | sc->beacon.bslot_aphy[avp->av_bslot] = aphy; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 301 | sc->nbcnvifs++; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 302 | } |
| 303 | } |
| 304 | |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 305 | /* release the previous beacon frame, if it already exists. */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 306 | bf = avp->av_bcbuf; |
| 307 | if (bf->bf_mpdu != NULL) { |
Sujith | a22be22 | 2009-03-30 15:28:36 +0530 | [diff] [blame] | 308 | skb = bf->bf_mpdu; |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 309 | dma_unmap_single(sc->dev, bf->bf_dmacontext, |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 310 | skb->len, DMA_TO_DEVICE); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 311 | dev_kfree_skb_any(skb); |
| 312 | bf->bf_mpdu = NULL; |
| 313 | } |
| 314 | |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 315 | /* NB: the beacon data buffer must be 32-bit aligned. */ |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 316 | skb = ieee80211_beacon_get(sc->hw, vif); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 317 | if (skb == NULL) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 318 | ath_print(common, ATH_DBG_BEACON, "cannot get skb\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 319 | return -ENOMEM; |
| 320 | } |
| 321 | |
Sujith | 459f5f9 | 2008-09-17 10:15:36 +0530 | [diff] [blame] | 322 | tstamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp; |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 323 | sc->beacon.bc_tstamp = le64_to_cpu(tstamp); |
Jouni Malinen | 4ed96f0 | 2009-03-12 21:53:23 +0200 | [diff] [blame] | 324 | /* Calculate a TSF adjustment factor required for staggered beacons. */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 325 | if (avp->av_bslot > 0) { |
| 326 | u64 tsfadjust; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 327 | int intval; |
| 328 | |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 329 | intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 330 | |
| 331 | /* |
Jouni Malinen | 4ed96f0 | 2009-03-12 21:53:23 +0200 | [diff] [blame] | 332 | * Calculate the TSF offset for this beacon slot, i.e., the |
| 333 | * number of usecs that need to be added to the timestamp field |
| 334 | * in Beacon and Probe Response frames. Beacon slot 0 is |
| 335 | * processed at the correct offset, so it does not require TSF |
| 336 | * adjustment. Other slots are adjusted to get the timestamp |
| 337 | * close to the TBTT for the BSS. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 338 | */ |
Jouni Malinen | 4ed96f0 | 2009-03-12 21:53:23 +0200 | [diff] [blame] | 339 | tsfadjust = intval * avp->av_bslot / ATH_BCBUF; |
| 340 | avp->tsf_adjust = cpu_to_le64(TU_TO_USEC(tsfadjust)); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 341 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 342 | ath_print(common, ATH_DBG_BEACON, |
| 343 | "stagger beacons, bslot %d intval " |
| 344 | "%u tsfadjust %llu\n", |
| 345 | avp->av_bslot, intval, (unsigned long long)tsfadjust); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 346 | |
Jouni Malinen | 4ed96f0 | 2009-03-12 21:53:23 +0200 | [diff] [blame] | 347 | ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp = |
| 348 | avp->tsf_adjust; |
| 349 | } else |
| 350 | avp->tsf_adjust = cpu_to_le64(0); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 351 | |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 352 | bf->bf_mpdu = skb; |
Jouni Malinen | a8fff50 | 2008-08-11 14:01:48 +0300 | [diff] [blame] | 353 | bf->bf_buf_addr = bf->bf_dmacontext = |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 354 | dma_map_single(sc->dev, skb->data, |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 355 | skb->len, DMA_TO_DEVICE); |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 356 | if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) { |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 357 | dev_kfree_skb_any(skb); |
| 358 | bf->bf_mpdu = NULL; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 359 | ath_print(common, ATH_DBG_FATAL, |
| 360 | "dma_mapping_error on beacon alloc\n"); |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 361 | return -ENOMEM; |
| 362 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 363 | |
| 364 | return 0; |
| 365 | } |
| 366 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 367 | void ath_beacon_return(struct ath_softc *sc, struct ath_vif *avp) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 368 | { |
| 369 | if (avp->av_bcbuf != NULL) { |
| 370 | struct ath_buf *bf; |
| 371 | |
| 372 | if (avp->av_bslot != -1) { |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 373 | sc->beacon.bslot[avp->av_bslot] = NULL; |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 374 | sc->beacon.bslot_aphy[avp->av_bslot] = NULL; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 375 | sc->nbcnvifs--; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | bf = avp->av_bcbuf; |
| 379 | if (bf->bf_mpdu != NULL) { |
Sujith | a22be22 | 2009-03-30 15:28:36 +0530 | [diff] [blame] | 380 | struct sk_buff *skb = bf->bf_mpdu; |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 381 | dma_unmap_single(sc->dev, bf->bf_dmacontext, |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 382 | skb->len, DMA_TO_DEVICE); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 383 | dev_kfree_skb_any(skb); |
| 384 | bf->bf_mpdu = NULL; |
| 385 | } |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 386 | list_add_tail(&bf->list, &sc->beacon.bbuf); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 387 | |
| 388 | avp->av_bcbuf = NULL; |
| 389 | } |
| 390 | } |
| 391 | |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 392 | void ath_beacon_tasklet(unsigned long data) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 393 | { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 394 | struct ath_softc *sc = (struct ath_softc *)data; |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 395 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 396 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 397 | struct ath_buf *bf = NULL; |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 398 | struct ieee80211_vif *vif; |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 399 | struct ath_wiphy *aphy; |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 400 | int slot; |
Sujith | 9546aae | 2009-03-03 10:16:53 +0530 | [diff] [blame] | 401 | u32 bfaddr, bc = 0, tsftu; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 402 | u64 tsf; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 403 | u16 intval; |
| 404 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 405 | /* |
| 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 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 412 | if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0) { |
| 413 | sc->beacon.bmisscnt++; |
Sujith | 9546aae | 2009-03-03 10:16:53 +0530 | [diff] [blame] | 414 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 415 | if (sc->beacon.bmisscnt < BSTUCK_THRESH) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 416 | ath_print(common, ATH_DBG_BEACON, |
| 417 | "missed %u consecutive beacons\n", |
| 418 | sc->beacon.bmisscnt); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 419 | } else if (sc->beacon.bmisscnt >= BSTUCK_THRESH) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 420 | ath_print(common, ATH_DBG_BEACON, |
| 421 | "beacon is officially stuck\n"); |
Jeff Hansen | b74444f | 2009-05-27 12:48:27 +0000 | [diff] [blame] | 422 | sc->sc_flags |= SC_OP_TSF_RESET; |
Sujith | 9546aae | 2009-03-03 10:16:53 +0530 | [diff] [blame] | 423 | ath_reset(sc, false); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 424 | } |
Sujith | 9546aae | 2009-03-03 10:16:53 +0530 | [diff] [blame] | 425 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 426 | return; |
| 427 | } |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 428 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 429 | if (sc->beacon.bmisscnt != 0) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 430 | ath_print(common, ATH_DBG_BEACON, |
| 431 | "resume beacon xmit after %u misses\n", |
| 432 | sc->beacon.bmisscnt); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 433 | sc->beacon.bmisscnt = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | /* |
| 437 | * Generate beacon frames. we are sending frames |
| 438 | * staggered so calculate the slot for this frame based |
| 439 | * on the tsf to safeguard against missing an swba. |
| 440 | */ |
| 441 | |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 442 | intval = sc->beacon_interval ? : ATH_DEFAULT_BINTVAL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 443 | |
| 444 | tsf = ath9k_hw_gettsf64(ah); |
| 445 | tsftu = TSF_TO_TU(tsf>>32, tsf); |
| 446 | slot = ((tsftu % intval) * ATH_BCBUF) / intval; |
Jouni Malinen | 4ed96f0 | 2009-03-12 21:53:23 +0200 | [diff] [blame] | 447 | /* |
| 448 | * Reverse the slot order to get slot 0 on the TBTT offset that does |
| 449 | * not require TSF adjustment and other slots adding |
| 450 | * slot/ATH_BCBUF * beacon_int to timestamp. For example, with |
| 451 | * ATH_BCBUF = 4, we process beacon slots as follows: 3 2 1 0 3 2 1 .. |
| 452 | * and slot 0 is at correct offset to TBTT. |
| 453 | */ |
| 454 | slot = ATH_BCBUF - slot - 1; |
| 455 | vif = sc->beacon.bslot[slot]; |
| 456 | aphy = sc->beacon.bslot_aphy[slot]; |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 457 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 458 | ath_print(common, ATH_DBG_BEACON, |
| 459 | "slot %d [tsf %llu tsftu %u intval %u] vif %p\n", |
| 460 | slot, tsf, tsftu, intval, vif); |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 461 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 462 | bfaddr = 0; |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 463 | if (vif) { |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 464 | bf = ath_beacon_generate(aphy->hw, vif); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 465 | if (bf != NULL) { |
| 466 | bfaddr = bf->bf_daddr; |
| 467 | bc = 1; |
| 468 | } |
| 469 | } |
Sujith | 9546aae | 2009-03-03 10:16:53 +0530 | [diff] [blame] | 470 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 471 | /* |
| 472 | * Handle slot time change when a non-ERP station joins/leaves |
| 473 | * an 11g network. The 802.11 layer notifies us via callback, |
| 474 | * we mark updateslot, then wait one beacon before effecting |
| 475 | * the change. This gives associated stations at least one |
| 476 | * beacon interval to note the state change. |
| 477 | * |
| 478 | * NB: The slot time change state machine is clocked according |
| 479 | * to whether we are bursting or staggering beacons. We |
| 480 | * recognize the request to update and record the current |
| 481 | * slot then don't transition until that slot is reached |
| 482 | * again. If we miss a beacon for that slot then we'll be |
| 483 | * slow to transition but we'll be sure at least one beacon |
| 484 | * interval has passed. When bursting slot is always left |
| 485 | * set to ATH_BCBUF so this check is a noop. |
| 486 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 487 | if (sc->beacon.updateslot == UPDATE) { |
| 488 | sc->beacon.updateslot = COMMIT; /* commit next beacon */ |
| 489 | sc->beacon.slotupdate = slot; |
| 490 | } else if (sc->beacon.updateslot == COMMIT && sc->beacon.slotupdate == slot) { |
| 491 | ath9k_hw_setslottime(sc->sc_ah, sc->beacon.slottime); |
| 492 | sc->beacon.updateslot = OK; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 493 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 494 | if (bfaddr != 0) { |
| 495 | /* |
| 496 | * Stop any current dma and put the new frame(s) on the queue. |
| 497 | * This should never fail since we check above that no frames |
| 498 | * are still pending on the queue. |
| 499 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 500 | if (!ath9k_hw_stoptxdma(ah, sc->beacon.beaconq)) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 501 | ath_print(common, ATH_DBG_FATAL, |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 502 | "beacon queue %u did not stop?\n", sc->beacon.beaconq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | /* NB: cabq traffic should already be queued and primed */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 506 | ath9k_hw_puttxbuf(ah, sc->beacon.beaconq, bfaddr); |
| 507 | ath9k_hw_txstart(ah, sc->beacon.beaconq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 508 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 509 | sc->beacon.ast_be_xmit += bc; /* XXX per-vif? */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 510 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 511 | } |
| 512 | |
Luis R. Rodriguez | 21526d5 | 2009-09-09 20:05:39 -0700 | [diff] [blame] | 513 | static void ath9k_beacon_init(struct ath_softc *sc, |
| 514 | u32 next_beacon, |
| 515 | u32 beacon_period) |
| 516 | { |
| 517 | if (beacon_period & ATH9K_BEACON_RESET_TSF) |
| 518 | ath9k_ps_wakeup(sc); |
| 519 | |
| 520 | ath9k_hw_beaconinit(sc->sc_ah, next_beacon, beacon_period); |
| 521 | |
| 522 | if (beacon_period & ATH9K_BEACON_RESET_TSF) |
| 523 | ath9k_ps_restore(sc); |
| 524 | } |
| 525 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 526 | /* |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 527 | * For multi-bss ap support beacons are either staggered evenly over N slots or |
| 528 | * burst together. For the former arrange for the SWBA to be delivered for each |
| 529 | * slot. Slots that are not occupied will generate nothing. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 530 | */ |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 531 | static void ath_beacon_config_ap(struct ath_softc *sc, |
Vasanthakumar Thiagarajan | d31e20a | 2009-05-15 18:59:21 +0530 | [diff] [blame] | 532 | struct ath_beacon_config *conf) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 533 | { |
Sujith | 980b24d | 2008-09-17 10:15:09 +0530 | [diff] [blame] | 534 | u32 nexttbtt, intval; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 535 | |
Sujith | b238e90 | 2009-03-03 10:16:56 +0530 | [diff] [blame] | 536 | /* Configure the timers only when the TSF has to be reset */ |
| 537 | |
| 538 | if (!(sc->sc_flags & SC_OP_TSF_RESET)) |
| 539 | return; |
| 540 | |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 541 | /* NB: the beacon interval is kept internally in TU's */ |
| 542 | intval = conf->beacon_interval & ATH9K_BEACON_PERIOD; |
| 543 | intval /= ATH_BCBUF; /* for staggered beacons */ |
| 544 | nexttbtt = intval; |
| 545 | intval |= ATH9K_BEACON_RESET_TSF; |
| 546 | |
| 547 | /* |
| 548 | * In AP mode we enable the beacon timers and SWBA interrupts to |
| 549 | * prepare beacon frames. |
| 550 | */ |
| 551 | intval |= ATH9K_BEACON_ENA; |
| 552 | sc->imask |= ATH9K_INT_SWBA; |
| 553 | ath_beaconq_config(sc); |
| 554 | |
| 555 | /* Set the computed AP beacon timers */ |
| 556 | |
| 557 | ath9k_hw_set_interrupts(sc->sc_ah, 0); |
Luis R. Rodriguez | 21526d5 | 2009-09-09 20:05:39 -0700 | [diff] [blame] | 558 | ath9k_beacon_init(sc, nexttbtt, intval); |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 559 | sc->beacon.bmisscnt = 0; |
| 560 | ath9k_hw_set_interrupts(sc->sc_ah, sc->imask); |
Sujith | b238e90 | 2009-03-03 10:16:56 +0530 | [diff] [blame] | 561 | |
| 562 | /* Clear the reset TSF flag, so that subsequent beacon updation |
| 563 | will not reset the HW TSF. */ |
| 564 | |
| 565 | sc->sc_flags &= ~SC_OP_TSF_RESET; |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | /* |
| 569 | * This sets up the beacon timers according to the timestamp of the last |
| 570 | * received beacon and the current TSF, configures PCF and DTIM |
| 571 | * handling, programs the sleep registers so the hardware will wakeup in |
| 572 | * time to receive beacons, and configures the beacon miss handling so |
| 573 | * we'll receive a BMISS interrupt when we stop seeing beacons from the AP |
| 574 | * we've associated with. |
| 575 | */ |
| 576 | static void ath_beacon_config_sta(struct ath_softc *sc, |
Vasanthakumar Thiagarajan | d31e20a | 2009-05-15 18:59:21 +0530 | [diff] [blame] | 577 | struct ath_beacon_config *conf) |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 578 | { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 579 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 580 | struct ath9k_beacon_state bs; |
| 581 | int dtimperiod, dtimcount, sleepduration; |
| 582 | int cfpperiod, cfpcount; |
| 583 | u32 nexttbtt = 0, intval, tsftu; |
| 584 | u64 tsf; |
Jouni Malinen | 267a901 | 2009-05-20 21:56:39 +0300 | [diff] [blame] | 585 | int num_beacons, offset, dtim_dec_count, cfp_dec_count; |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 586 | |
| 587 | memset(&bs, 0, sizeof(bs)); |
| 588 | intval = conf->beacon_interval & ATH9K_BEACON_PERIOD; |
| 589 | |
| 590 | /* |
| 591 | * Setup dtim and cfp parameters according to |
| 592 | * last beacon we received (which may be none). |
| 593 | */ |
| 594 | dtimperiod = conf->dtim_period; |
| 595 | if (dtimperiod <= 0) /* NB: 0 if not known */ |
| 596 | dtimperiod = 1; |
| 597 | dtimcount = conf->dtim_count; |
| 598 | if (dtimcount >= dtimperiod) /* NB: sanity check */ |
| 599 | dtimcount = 0; |
| 600 | cfpperiod = 1; /* NB: no PCF support yet */ |
| 601 | cfpcount = 0; |
| 602 | |
| 603 | sleepduration = conf->listen_interval * intval; |
| 604 | if (sleepduration <= 0) |
| 605 | sleepduration = intval; |
| 606 | |
| 607 | /* |
| 608 | * Pull nexttbtt forward to reflect the current |
| 609 | * TSF and calculate dtim+cfp state for the result. |
| 610 | */ |
| 611 | tsf = ath9k_hw_gettsf64(sc->sc_ah); |
| 612 | tsftu = TSF_TO_TU(tsf>>32, tsf) + FUDGE; |
Jouni Malinen | 267a901 | 2009-05-20 21:56:39 +0300 | [diff] [blame] | 613 | |
| 614 | num_beacons = tsftu / intval + 1; |
| 615 | offset = tsftu % intval; |
| 616 | nexttbtt = tsftu - offset; |
| 617 | if (offset) |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 618 | nexttbtt += intval; |
Jouni Malinen | 267a901 | 2009-05-20 21:56:39 +0300 | [diff] [blame] | 619 | |
| 620 | /* DTIM Beacon every dtimperiod Beacon */ |
| 621 | dtim_dec_count = num_beacons % dtimperiod; |
| 622 | /* CFP every cfpperiod DTIM Beacon */ |
| 623 | cfp_dec_count = (num_beacons / dtimperiod) % cfpperiod; |
| 624 | if (dtim_dec_count) |
| 625 | cfp_dec_count++; |
| 626 | |
| 627 | dtimcount -= dtim_dec_count; |
| 628 | if (dtimcount < 0) |
| 629 | dtimcount += dtimperiod; |
| 630 | |
| 631 | cfpcount -= cfp_dec_count; |
| 632 | if (cfpcount < 0) |
| 633 | cfpcount += cfpperiod; |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 634 | |
| 635 | bs.bs_intval = intval; |
| 636 | bs.bs_nexttbtt = nexttbtt; |
| 637 | bs.bs_dtimperiod = dtimperiod*intval; |
| 638 | bs.bs_nextdtim = bs.bs_nexttbtt + dtimcount*intval; |
| 639 | bs.bs_cfpperiod = cfpperiod*bs.bs_dtimperiod; |
| 640 | bs.bs_cfpnext = bs.bs_nextdtim + cfpcount*bs.bs_dtimperiod; |
| 641 | bs.bs_cfpmaxduration = 0; |
| 642 | |
| 643 | /* |
| 644 | * Calculate the number of consecutive beacons to miss* before taking |
| 645 | * a BMISS interrupt. The configuration is specified in TU so we only |
| 646 | * need calculate based on the beacon interval. Note that we clamp the |
| 647 | * result to at most 15 beacons. |
| 648 | */ |
| 649 | if (sleepduration > intval) { |
| 650 | bs.bs_bmissthreshold = conf->listen_interval * |
| 651 | ATH_DEFAULT_BMISS_LIMIT / 2; |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 652 | } else { |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 653 | bs.bs_bmissthreshold = DIV_ROUND_UP(conf->bmiss_timeout, intval); |
| 654 | if (bs.bs_bmissthreshold > 15) |
| 655 | bs.bs_bmissthreshold = 15; |
| 656 | else if (bs.bs_bmissthreshold <= 0) |
| 657 | bs.bs_bmissthreshold = 1; |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 658 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 659 | |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 660 | /* |
| 661 | * Calculate sleep duration. The configuration is given in ms. |
| 662 | * We ensure a multiple of the beacon period is used. Also, if the sleep |
| 663 | * duration is greater than the DTIM period then it makes senses |
| 664 | * to make it a multiple of that. |
| 665 | * |
| 666 | * XXX fixed at 100ms |
| 667 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 668 | |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 669 | bs.bs_sleepduration = roundup(IEEE80211_MS_TO_TU(100), sleepduration); |
| 670 | if (bs.bs_sleepduration > bs.bs_dtimperiod) |
| 671 | bs.bs_sleepduration = bs.bs_dtimperiod; |
| 672 | |
| 673 | /* TSF out of range threshold fixed at 1 second */ |
| 674 | bs.bs_tsfoor_threshold = ATH9K_TSFOOR_THRESHOLD; |
| 675 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 676 | ath_print(common, ATH_DBG_BEACON, "tsf: %llu tsftu: %u\n", tsf, tsftu); |
| 677 | ath_print(common, ATH_DBG_BEACON, |
| 678 | "bmiss: %u sleep: %u cfp-period: %u maxdur: %u next: %u\n", |
| 679 | bs.bs_bmissthreshold, bs.bs_sleepduration, |
| 680 | bs.bs_cfpperiod, bs.bs_cfpmaxduration, bs.bs_cfpnext); |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 681 | |
| 682 | /* Set the computed STA beacon timers */ |
| 683 | |
| 684 | ath9k_hw_set_interrupts(sc->sc_ah, 0); |
| 685 | ath9k_hw_set_sta_beacon_timers(sc->sc_ah, &bs); |
| 686 | sc->imask |= ATH9K_INT_BMISS; |
| 687 | ath9k_hw_set_interrupts(sc->sc_ah, sc->imask); |
| 688 | } |
| 689 | |
| 690 | static void ath_beacon_config_adhoc(struct ath_softc *sc, |
| 691 | struct ath_beacon_config *conf, |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 692 | struct ieee80211_vif *vif) |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 693 | { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 694 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 695 | u64 tsf; |
| 696 | u32 tsftu, intval, nexttbtt; |
| 697 | |
| 698 | intval = conf->beacon_interval & ATH9K_BEACON_PERIOD; |
| 699 | |
Jouni Malinen | 546256f | 2009-05-28 19:25:28 +0300 | [diff] [blame] | 700 | |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 701 | /* Pull nexttbtt forward to reflect the current TSF */ |
| 702 | |
| 703 | nexttbtt = TSF_TO_TU(sc->beacon.bc_tstamp >> 32, sc->beacon.bc_tstamp); |
| 704 | if (nexttbtt == 0) |
| 705 | nexttbtt = intval; |
| 706 | else if (intval) |
| 707 | nexttbtt = roundup(nexttbtt, intval); |
| 708 | |
| 709 | tsf = ath9k_hw_gettsf64(sc->sc_ah); |
| 710 | tsftu = TSF_TO_TU((u32)(tsf>>32), (u32)tsf) + FUDGE; |
| 711 | do { |
| 712 | nexttbtt += intval; |
| 713 | } while (nexttbtt < tsftu); |
| 714 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 715 | ath_print(common, ATH_DBG_BEACON, |
| 716 | "IBSS nexttbtt %u intval %u (%u)\n", |
| 717 | nexttbtt, intval, conf->beacon_interval); |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 718 | |
| 719 | /* |
| 720 | * In IBSS mode enable the beacon timers but only enable SWBA interrupts |
| 721 | * if we need to manually prepare beacon frames. Otherwise we use a |
| 722 | * self-linked tx descriptor and let the hardware deal with things. |
| 723 | */ |
| 724 | intval |= ATH9K_BEACON_ENA; |
| 725 | if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL)) |
| 726 | sc->imask |= ATH9K_INT_SWBA; |
| 727 | |
| 728 | ath_beaconq_config(sc); |
| 729 | |
| 730 | /* Set the computed ADHOC beacon timers */ |
| 731 | |
| 732 | ath9k_hw_set_interrupts(sc->sc_ah, 0); |
Luis R. Rodriguez | 21526d5 | 2009-09-09 20:05:39 -0700 | [diff] [blame] | 733 | ath9k_beacon_init(sc, nexttbtt, intval); |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 734 | sc->beacon.bmisscnt = 0; |
| 735 | ath9k_hw_set_interrupts(sc->sc_ah, sc->imask); |
| 736 | |
Vasanthakumar Thiagarajan | 6b96f93 | 2009-05-15 18:59:22 +0530 | [diff] [blame] | 737 | /* FIXME: Handle properly when vif is NULL */ |
| 738 | if (vif && sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_VEOL) |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 739 | ath_beacon_start_adhoc(sc, vif); |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 740 | } |
| 741 | |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 742 | void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif) |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 743 | { |
Vasanthakumar Thiagarajan | 6b96f93 | 2009-05-15 18:59:22 +0530 | [diff] [blame] | 744 | struct ath_beacon_config *cur_conf = &sc->cur_beacon_conf; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 745 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Vasanthakumar Thiagarajan | 6b96f93 | 2009-05-15 18:59:22 +0530 | [diff] [blame] | 746 | enum nl80211_iftype iftype; |
Sujith | 5379c8a | 2009-03-03 10:16:54 +0530 | [diff] [blame] | 747 | |
| 748 | /* Setup the beacon configuration parameters */ |
| 749 | |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 750 | if (vif) { |
Vasanthakumar Thiagarajan | 6b96f93 | 2009-05-15 18:59:22 +0530 | [diff] [blame] | 751 | struct ieee80211_bss_conf *bss_conf = &vif->bss_conf; |
Sujith | 459f5f9 | 2008-09-17 10:15:36 +0530 | [diff] [blame] | 752 | |
Vasanthakumar Thiagarajan | 6b96f93 | 2009-05-15 18:59:22 +0530 | [diff] [blame] | 753 | iftype = vif->type; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 754 | |
Vasanthakumar Thiagarajan | 6b96f93 | 2009-05-15 18:59:22 +0530 | [diff] [blame] | 755 | cur_conf->beacon_interval = bss_conf->beacon_int; |
| 756 | cur_conf->dtim_period = bss_conf->dtim_period; |
| 757 | cur_conf->listen_interval = 1; |
| 758 | cur_conf->dtim_count = 1; |
| 759 | cur_conf->bmiss_timeout = |
| 760 | ATH_DEFAULT_BMISS_LIMIT * cur_conf->beacon_interval; |
| 761 | } else { |
| 762 | iftype = sc->sc_ah->opmode; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 763 | } |
Vasanthakumar Thiagarajan | 6b96f93 | 2009-05-15 18:59:22 +0530 | [diff] [blame] | 764 | |
Vasanthakumar Thiagarajan | c4f9f16 | 2009-06-12 10:55:55 +0530 | [diff] [blame] | 765 | /* |
| 766 | * It looks like mac80211 may end up using beacon interval of zero in |
| 767 | * some cases (at least for mesh point). Avoid getting into an |
| 768 | * infinite loop by using a bit safer value instead. To be safe, |
| 769 | * do sanity check on beacon interval for all operating modes. |
| 770 | */ |
| 771 | if (cur_conf->beacon_interval == 0) |
| 772 | cur_conf->beacon_interval = 100; |
Vasanthakumar Thiagarajan | 6b96f93 | 2009-05-15 18:59:22 +0530 | [diff] [blame] | 773 | |
| 774 | switch (iftype) { |
| 775 | case NL80211_IFTYPE_AP: |
| 776 | ath_beacon_config_ap(sc, cur_conf); |
| 777 | break; |
| 778 | case NL80211_IFTYPE_ADHOC: |
| 779 | case NL80211_IFTYPE_MESH_POINT: |
| 780 | ath_beacon_config_adhoc(sc, cur_conf, vif); |
| 781 | break; |
| 782 | case NL80211_IFTYPE_STATION: |
| 783 | ath_beacon_config_sta(sc, cur_conf); |
| 784 | break; |
| 785 | default: |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 786 | ath_print(common, ATH_DBG_CONFIG, |
| 787 | "Unsupported beaconing mode\n"); |
Vasanthakumar Thiagarajan | 6b96f93 | 2009-05-15 18:59:22 +0530 | [diff] [blame] | 788 | return; |
| 789 | } |
| 790 | |
| 791 | sc->sc_flags |= SC_OP_BEACONS; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 792 | } |