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