Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1 | /*- |
| 2 | * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting |
| 3 | * Copyright (c) 2004-2005 Atheros Communications, Inc. |
| 4 | * Copyright (c) 2006 Devicescape Software, Inc. |
| 5 | * Copyright (c) 2007 Jiri Slaby <jirislaby@gmail.com> |
| 6 | * Copyright (c) 2007 Luis R. Rodriguez <mcgrof@winlab.rutgers.edu> |
| 7 | * |
| 8 | * All rights reserved. |
| 9 | * |
| 10 | * Redistribution and use in source and binary forms, with or without |
| 11 | * modification, are permitted provided that the following conditions |
| 12 | * are met: |
| 13 | * 1. Redistributions of source code must retain the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer, |
| 15 | * without modification. |
| 16 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 17 | * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any |
| 18 | * redistribution must be conditioned upon including a substantially |
| 19 | * similar Disclaimer requirement for further binary redistribution. |
| 20 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 21 | * of any contributors may be used to endorse or promote products derived |
| 22 | * from this software without specific prior written permission. |
| 23 | * |
| 24 | * Alternatively, this software may be distributed under the terms of the |
| 25 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 26 | * Software Foundation. |
| 27 | * |
| 28 | * NO WARRANTY |
| 29 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 30 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 31 | * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY |
| 32 | * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 33 | * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, |
| 34 | * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 35 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 36 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
| 37 | * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 38 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 39 | * THE POSSIBILITY OF SUCH DAMAGES. |
| 40 | * |
| 41 | */ |
| 42 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 43 | #include <linux/module.h> |
| 44 | #include <linux/delay.h> |
Jiri Slaby | 274c7c3 | 2008-07-15 17:44:20 +0200 | [diff] [blame] | 45 | #include <linux/hardirq.h> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 46 | #include <linux/if.h> |
Jiri Slaby | 274c7c3 | 2008-07-15 17:44:20 +0200 | [diff] [blame] | 47 | #include <linux/io.h> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 48 | #include <linux/netdevice.h> |
| 49 | #include <linux/cache.h> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 50 | #include <linux/ethtool.h> |
| 51 | #include <linux/uaccess.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 52 | #include <linux/slab.h> |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 53 | #include <linux/etherdevice.h> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 54 | |
| 55 | #include <net/ieee80211_radiotap.h> |
| 56 | |
| 57 | #include <asm/unaligned.h> |
| 58 | |
| 59 | #include "base.h" |
| 60 | #include "reg.h" |
| 61 | #include "debug.h" |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 62 | #include "ani.h" |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 63 | #include "../debug.h" |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 64 | |
Bob Copeland | 9ad9a26 | 2008-10-29 08:30:54 -0400 | [diff] [blame] | 65 | static int modparam_nohwcrypt; |
Bob Copeland | 46802a4 | 2009-04-15 07:57:34 -0400 | [diff] [blame] | 66 | module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); |
Bob Copeland | 9ad9a26 | 2008-10-29 08:30:54 -0400 | [diff] [blame] | 67 | MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 68 | |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 69 | static int modparam_all_channels; |
Bob Copeland | 46802a4 | 2009-04-15 07:57:34 -0400 | [diff] [blame] | 70 | module_param_named(all_channels, modparam_all_channels, bool, S_IRUGO); |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 71 | MODULE_PARM_DESC(all_channels, "Expose all channels the device can use."); |
| 72 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 73 | /* Module info */ |
| 74 | MODULE_AUTHOR("Jiri Slaby"); |
| 75 | MODULE_AUTHOR("Nick Kossifidis"); |
| 76 | MODULE_DESCRIPTION("Support for 5xxx series of Atheros 802.11 wireless LAN cards."); |
| 77 | MODULE_SUPPORTED_DEVICE("Atheros 5xxx WLAN cards"); |
| 78 | MODULE_LICENSE("Dual BSD/GPL"); |
Nick Kossifidis | 0d5f031 | 2008-09-29 01:27:27 +0300 | [diff] [blame] | 79 | MODULE_VERSION("0.6.0 (EXPERIMENTAL)"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 80 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 81 | static int ath5k_init(struct ieee80211_hw *hw); |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 82 | static int ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan, |
| 83 | bool skip_pcu); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 84 | static int ath5k_beacon_update(struct ieee80211_hw *hw, |
| 85 | struct ieee80211_vif *vif); |
| 86 | static void ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 87 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 88 | /* Known SREVs */ |
Jiri Slaby | 2c91108c | 2009-03-07 10:26:41 +0100 | [diff] [blame] | 89 | static const struct ath5k_srev_name srev_names[] = { |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 90 | { "5210", AR5K_VERSION_MAC, AR5K_SREV_AR5210 }, |
| 91 | { "5311", AR5K_VERSION_MAC, AR5K_SREV_AR5311 }, |
| 92 | { "5311A", AR5K_VERSION_MAC, AR5K_SREV_AR5311A }, |
| 93 | { "5311B", AR5K_VERSION_MAC, AR5K_SREV_AR5311B }, |
| 94 | { "5211", AR5K_VERSION_MAC, AR5K_SREV_AR5211 }, |
| 95 | { "5212", AR5K_VERSION_MAC, AR5K_SREV_AR5212 }, |
| 96 | { "5213", AR5K_VERSION_MAC, AR5K_SREV_AR5213 }, |
| 97 | { "5213A", AR5K_VERSION_MAC, AR5K_SREV_AR5213A }, |
| 98 | { "2413", AR5K_VERSION_MAC, AR5K_SREV_AR2413 }, |
| 99 | { "2414", AR5K_VERSION_MAC, AR5K_SREV_AR2414 }, |
| 100 | { "5424", AR5K_VERSION_MAC, AR5K_SREV_AR5424 }, |
| 101 | { "5413", AR5K_VERSION_MAC, AR5K_SREV_AR5413 }, |
| 102 | { "5414", AR5K_VERSION_MAC, AR5K_SREV_AR5414 }, |
| 103 | { "2415", AR5K_VERSION_MAC, AR5K_SREV_AR2415 }, |
| 104 | { "5416", AR5K_VERSION_MAC, AR5K_SREV_AR5416 }, |
| 105 | { "5418", AR5K_VERSION_MAC, AR5K_SREV_AR5418 }, |
| 106 | { "2425", AR5K_VERSION_MAC, AR5K_SREV_AR2425 }, |
| 107 | { "2417", AR5K_VERSION_MAC, AR5K_SREV_AR2417 }, |
| 108 | { "xxxxx", AR5K_VERSION_MAC, AR5K_SREV_UNKNOWN }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 109 | { "5110", AR5K_VERSION_RAD, AR5K_SREV_RAD_5110 }, |
| 110 | { "5111", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111 }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 111 | { "5111A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111A }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 112 | { "2111", AR5K_VERSION_RAD, AR5K_SREV_RAD_2111 }, |
| 113 | { "5112", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112 }, |
| 114 | { "5112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112A }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 115 | { "5112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112B }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 116 | { "2112", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112 }, |
| 117 | { "2112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112A }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 118 | { "2112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112B }, |
| 119 | { "2413", AR5K_VERSION_RAD, AR5K_SREV_RAD_2413 }, |
| 120 | { "5413", AR5K_VERSION_RAD, AR5K_SREV_RAD_5413 }, |
| 121 | { "2316", AR5K_VERSION_RAD, AR5K_SREV_RAD_2316 }, |
| 122 | { "2317", AR5K_VERSION_RAD, AR5K_SREV_RAD_2317 }, |
| 123 | { "5424", AR5K_VERSION_RAD, AR5K_SREV_RAD_5424 }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 124 | { "5133", AR5K_VERSION_RAD, AR5K_SREV_RAD_5133 }, |
| 125 | { "xxxxx", AR5K_VERSION_RAD, AR5K_SREV_UNKNOWN }, |
| 126 | }; |
| 127 | |
Jiri Slaby | 2c91108c | 2009-03-07 10:26:41 +0100 | [diff] [blame] | 128 | static const struct ieee80211_rate ath5k_rates[] = { |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 129 | { .bitrate = 10, |
| 130 | .hw_value = ATH5K_RATE_CODE_1M, }, |
| 131 | { .bitrate = 20, |
| 132 | .hw_value = ATH5K_RATE_CODE_2M, |
| 133 | .hw_value_short = ATH5K_RATE_CODE_2M | AR5K_SET_SHORT_PREAMBLE, |
| 134 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 135 | { .bitrate = 55, |
| 136 | .hw_value = ATH5K_RATE_CODE_5_5M, |
| 137 | .hw_value_short = ATH5K_RATE_CODE_5_5M | AR5K_SET_SHORT_PREAMBLE, |
| 138 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 139 | { .bitrate = 110, |
| 140 | .hw_value = ATH5K_RATE_CODE_11M, |
| 141 | .hw_value_short = ATH5K_RATE_CODE_11M | AR5K_SET_SHORT_PREAMBLE, |
| 142 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 143 | { .bitrate = 60, |
| 144 | .hw_value = ATH5K_RATE_CODE_6M, |
| 145 | .flags = 0 }, |
| 146 | { .bitrate = 90, |
| 147 | .hw_value = ATH5K_RATE_CODE_9M, |
| 148 | .flags = 0 }, |
| 149 | { .bitrate = 120, |
| 150 | .hw_value = ATH5K_RATE_CODE_12M, |
| 151 | .flags = 0 }, |
| 152 | { .bitrate = 180, |
| 153 | .hw_value = ATH5K_RATE_CODE_18M, |
| 154 | .flags = 0 }, |
| 155 | { .bitrate = 240, |
| 156 | .hw_value = ATH5K_RATE_CODE_24M, |
| 157 | .flags = 0 }, |
| 158 | { .bitrate = 360, |
| 159 | .hw_value = ATH5K_RATE_CODE_36M, |
| 160 | .flags = 0 }, |
| 161 | { .bitrate = 480, |
| 162 | .hw_value = ATH5K_RATE_CODE_48M, |
| 163 | .flags = 0 }, |
| 164 | { .bitrate = 540, |
| 165 | .hw_value = ATH5K_RATE_CODE_54M, |
| 166 | .flags = 0 }, |
| 167 | /* XR missing */ |
| 168 | }; |
| 169 | |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 170 | static inline void ath5k_txbuf_free_skb(struct ath5k_softc *sc, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 171 | struct ath5k_buf *bf) |
| 172 | { |
| 173 | BUG_ON(!bf); |
| 174 | if (!bf->skb) |
| 175 | return; |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 176 | dma_unmap_single(sc->dev, bf->skbaddr, bf->skb->len, |
| 177 | DMA_TO_DEVICE); |
Jiri Slaby | 0048297 | 2008-08-18 21:45:27 +0200 | [diff] [blame] | 178 | dev_kfree_skb_any(bf->skb); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 179 | bf->skb = NULL; |
Bruno Randolf | 39d63f2 | 2010-06-16 19:11:41 +0900 | [diff] [blame] | 180 | bf->skbaddr = 0; |
| 181 | bf->desc->ds_data = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 182 | } |
| 183 | |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 184 | static inline void ath5k_rxbuf_free_skb(struct ath5k_softc *sc, |
Felix Fietkau | a6c8d37 | 2009-01-30 01:36:48 +0100 | [diff] [blame] | 185 | struct ath5k_buf *bf) |
| 186 | { |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 187 | struct ath5k_hw *ah = sc->ah; |
| 188 | struct ath_common *common = ath5k_hw_common(ah); |
| 189 | |
Felix Fietkau | a6c8d37 | 2009-01-30 01:36:48 +0100 | [diff] [blame] | 190 | BUG_ON(!bf); |
| 191 | if (!bf->skb) |
| 192 | return; |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 193 | dma_unmap_single(sc->dev, bf->skbaddr, common->rx_bufsize, |
| 194 | DMA_FROM_DEVICE); |
Felix Fietkau | a6c8d37 | 2009-01-30 01:36:48 +0100 | [diff] [blame] | 195 | dev_kfree_skb_any(bf->skb); |
| 196 | bf->skb = NULL; |
Bruno Randolf | 39d63f2 | 2010-06-16 19:11:41 +0900 | [diff] [blame] | 197 | bf->skbaddr = 0; |
| 198 | bf->desc->ds_data = 0; |
Felix Fietkau | a6c8d37 | 2009-01-30 01:36:48 +0100 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 202 | static inline u64 ath5k_extend_tsf(struct ath5k_hw *ah, u32 rstamp) |
| 203 | { |
| 204 | u64 tsf = ath5k_hw_get_tsf64(ah); |
| 205 | |
| 206 | if ((tsf & 0x7fff) < rstamp) |
| 207 | tsf -= 0x8000; |
| 208 | |
| 209 | return (tsf & ~0x7fff) | rstamp; |
| 210 | } |
| 211 | |
Felix Fietkau | e5b046d | 2010-12-02 10:27:01 +0100 | [diff] [blame^] | 212 | const char * |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 213 | ath5k_chip_name(enum ath5k_srev_type type, u_int16_t val) |
| 214 | { |
| 215 | const char *name = "xxxxx"; |
| 216 | unsigned int i; |
| 217 | |
| 218 | for (i = 0; i < ARRAY_SIZE(srev_names); i++) { |
| 219 | if (srev_names[i].sr_type != type) |
| 220 | continue; |
Nick Kossifidis | 75d0edb | 2008-09-29 01:24:44 +0300 | [diff] [blame] | 221 | |
| 222 | if ((val & 0xf0) == srev_names[i].sr_val) |
| 223 | name = srev_names[i].sr_name; |
| 224 | |
| 225 | if ((val & 0xff) == srev_names[i].sr_val) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 226 | name = srev_names[i].sr_name; |
| 227 | break; |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | return name; |
| 232 | } |
Luis R. Rodriguez | e5aa847 | 2009-09-10 16:55:11 -0700 | [diff] [blame] | 233 | static unsigned int ath5k_ioread32(void *hw_priv, u32 reg_offset) |
| 234 | { |
| 235 | struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv; |
| 236 | return ath5k_hw_reg_read(ah, reg_offset); |
| 237 | } |
| 238 | |
| 239 | static void ath5k_iowrite32(void *hw_priv, u32 val, u32 reg_offset) |
| 240 | { |
| 241 | struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv; |
| 242 | ath5k_hw_reg_write(ah, val, reg_offset); |
| 243 | } |
| 244 | |
| 245 | static const struct ath_ops ath5k_common_ops = { |
| 246 | .read = ath5k_ioread32, |
| 247 | .write = ath5k_iowrite32, |
| 248 | }; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 249 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 250 | /***********************\ |
| 251 | * Driver Initialization * |
| 252 | \***********************/ |
| 253 | |
Bob Copeland | f769c36 | 2009-03-30 22:30:31 -0400 | [diff] [blame] | 254 | static int ath5k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request) |
| 255 | { |
| 256 | struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); |
| 257 | struct ath5k_softc *sc = hw->priv; |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 258 | struct ath_regulatory *regulatory = ath5k_hw_regulatory(sc->ah); |
Bob Copeland | f769c36 | 2009-03-30 22:30:31 -0400 | [diff] [blame] | 259 | |
Luis R. Rodriguez | 608b88c | 2009-08-17 18:07:23 -0700 | [diff] [blame] | 260 | return ath_reg_notifier_apply(wiphy, request, regulatory); |
Bob Copeland | f769c36 | 2009-03-30 22:30:31 -0400 | [diff] [blame] | 261 | } |
| 262 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 263 | /********************\ |
| 264 | * Channel/mode setup * |
| 265 | \********************/ |
| 266 | |
| 267 | /* |
| 268 | * Convert IEEE channel number to MHz frequency. |
| 269 | */ |
| 270 | static inline short |
| 271 | ath5k_ieee2mhz(short chan) |
| 272 | { |
| 273 | if (chan <= 14 || chan >= 27) |
| 274 | return ieee80211chan2mhz(chan); |
| 275 | else |
| 276 | return 2212 + chan * 20; |
| 277 | } |
| 278 | |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 279 | /* |
| 280 | * Returns true for the channel numbers used without all_channels modparam. |
| 281 | */ |
| 282 | static bool ath5k_is_standard_channel(short chan) |
| 283 | { |
| 284 | return ((chan <= 14) || |
| 285 | /* UNII 1,2 */ |
| 286 | ((chan & 3) == 0 && chan >= 36 && chan <= 64) || |
| 287 | /* midband */ |
| 288 | ((chan & 3) == 0 && chan >= 100 && chan <= 140) || |
| 289 | /* UNII-3 */ |
| 290 | ((chan & 3) == 1 && chan >= 149 && chan <= 165)); |
| 291 | } |
| 292 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 293 | static unsigned int |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 294 | ath5k_copy_channels(struct ath5k_hw *ah, |
| 295 | struct ieee80211_channel *channels, |
| 296 | unsigned int mode, |
| 297 | unsigned int max) |
| 298 | { |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 299 | unsigned int i, count, size, chfreq, freq, ch; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 300 | |
| 301 | if (!test_bit(mode, ah->ah_modes)) |
| 302 | return 0; |
| 303 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 304 | switch (mode) { |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 305 | case AR5K_MODE_11A: |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 306 | /* 1..220, but 2GHz frequencies are filtered by check_channel */ |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 307 | size = 220 ; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 308 | chfreq = CHANNEL_5GHZ; |
| 309 | break; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 310 | case AR5K_MODE_11B: |
| 311 | case AR5K_MODE_11G: |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 312 | size = 26; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 313 | chfreq = CHANNEL_2GHZ; |
| 314 | break; |
| 315 | default: |
| 316 | ATH5K_WARN(ah->ah_sc, "bad mode, not copying channels\n"); |
| 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | for (i = 0, count = 0; i < size && max > 0; i++) { |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 321 | ch = i + 1 ; |
| 322 | freq = ath5k_ieee2mhz(ch); |
| 323 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 324 | /* Check if channel is supported by the chipset */ |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 325 | if (!ath5k_channel_ok(ah, freq, chfreq)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 326 | continue; |
| 327 | |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 328 | if (!modparam_all_channels && !ath5k_is_standard_channel(ch)) |
| 329 | continue; |
| 330 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 331 | /* Write channel info and increment counter */ |
| 332 | channels[count].center_freq = freq; |
Luis R. Rodriguez | a3f4b91 | 2008-02-03 21:52:10 -0500 | [diff] [blame] | 333 | channels[count].band = (chfreq == CHANNEL_2GHZ) ? |
| 334 | IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 335 | switch (mode) { |
| 336 | case AR5K_MODE_11A: |
| 337 | case AR5K_MODE_11G: |
| 338 | channels[count].hw_value = chfreq | CHANNEL_OFDM; |
| 339 | break; |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 340 | case AR5K_MODE_11B: |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 341 | channels[count].hw_value = CHANNEL_B; |
| 342 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 343 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 344 | count++; |
| 345 | max--; |
| 346 | } |
| 347 | |
| 348 | return count; |
| 349 | } |
| 350 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 351 | static void |
| 352 | ath5k_setup_rate_idx(struct ath5k_softc *sc, struct ieee80211_supported_band *b) |
| 353 | { |
| 354 | u8 i; |
| 355 | |
| 356 | for (i = 0; i < AR5K_MAX_RATES; i++) |
| 357 | sc->rate_idx[b->band][i] = -1; |
| 358 | |
| 359 | for (i = 0; i < b->n_bitrates; i++) { |
| 360 | sc->rate_idx[b->band][b->bitrates[i].hw_value] = i; |
| 361 | if (b->bitrates[i].hw_value_short) |
| 362 | sc->rate_idx[b->band][b->bitrates[i].hw_value_short] = i; |
| 363 | } |
| 364 | } |
| 365 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 366 | static int |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 367 | ath5k_setup_bands(struct ieee80211_hw *hw) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 368 | { |
| 369 | struct ath5k_softc *sc = hw->priv; |
| 370 | struct ath5k_hw *ah = sc->ah; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 371 | struct ieee80211_supported_band *sband; |
| 372 | int max_c, count_c = 0; |
| 373 | int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 374 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 375 | BUILD_BUG_ON(ARRAY_SIZE(sc->sbands) < IEEE80211_NUM_BANDS); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 376 | max_c = ARRAY_SIZE(sc->channels); |
| 377 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 378 | /* 2GHz band */ |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 379 | sband = &sc->sbands[IEEE80211_BAND_2GHZ]; |
| 380 | sband->band = IEEE80211_BAND_2GHZ; |
| 381 | sband->bitrates = &sc->rates[IEEE80211_BAND_2GHZ][0]; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 382 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 383 | if (test_bit(AR5K_MODE_11G, sc->ah->ah_capabilities.cap_mode)) { |
| 384 | /* G mode */ |
| 385 | memcpy(sband->bitrates, &ath5k_rates[0], |
| 386 | sizeof(struct ieee80211_rate) * 12); |
| 387 | sband->n_bitrates = 12; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 388 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 389 | sband->channels = sc->channels; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 390 | sband->n_channels = ath5k_copy_channels(ah, sband->channels, |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 391 | AR5K_MODE_11G, max_c); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 392 | |
| 393 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 394 | count_c = sband->n_channels; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 395 | max_c -= count_c; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 396 | } else if (test_bit(AR5K_MODE_11B, sc->ah->ah_capabilities.cap_mode)) { |
| 397 | /* B mode */ |
| 398 | memcpy(sband->bitrates, &ath5k_rates[0], |
| 399 | sizeof(struct ieee80211_rate) * 4); |
| 400 | sband->n_bitrates = 4; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 401 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 402 | /* 5211 only supports B rates and uses 4bit rate codes |
| 403 | * (e.g normally we have 0x1B for 1M, but on 5211 we have 0x0B) |
| 404 | * fix them up here: |
| 405 | */ |
| 406 | if (ah->ah_version == AR5K_AR5211) { |
| 407 | for (i = 0; i < 4; i++) { |
| 408 | sband->bitrates[i].hw_value = |
| 409 | sband->bitrates[i].hw_value & 0xF; |
| 410 | sband->bitrates[i].hw_value_short = |
| 411 | sband->bitrates[i].hw_value_short & 0xF; |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | sband->channels = sc->channels; |
| 416 | sband->n_channels = ath5k_copy_channels(ah, sband->channels, |
| 417 | AR5K_MODE_11B, max_c); |
| 418 | |
| 419 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband; |
| 420 | count_c = sband->n_channels; |
| 421 | max_c -= count_c; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 422 | } |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 423 | ath5k_setup_rate_idx(sc, sband); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 424 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 425 | /* 5GHz band, A mode */ |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 426 | if (test_bit(AR5K_MODE_11A, sc->ah->ah_capabilities.cap_mode)) { |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 427 | sband = &sc->sbands[IEEE80211_BAND_5GHZ]; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 428 | sband->band = IEEE80211_BAND_5GHZ; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 429 | sband->bitrates = &sc->rates[IEEE80211_BAND_5GHZ][0]; |
| 430 | |
| 431 | memcpy(sband->bitrates, &ath5k_rates[4], |
| 432 | sizeof(struct ieee80211_rate) * 8); |
| 433 | sband->n_bitrates = 8; |
| 434 | |
| 435 | sband->channels = &sc->channels[count_c]; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 436 | sband->n_channels = ath5k_copy_channels(ah, sband->channels, |
| 437 | AR5K_MODE_11A, max_c); |
| 438 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 439 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = sband; |
| 440 | } |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 441 | ath5k_setup_rate_idx(sc, sband); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 442 | |
Luis R. Rodriguez | b446197 | 2008-02-04 10:03:54 -0500 | [diff] [blame] | 443 | ath5k_debug_dump_bands(sc); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 444 | |
| 445 | return 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | /* |
Joerg Albert | e30eb4a | 2009-08-05 01:52:07 +0200 | [diff] [blame] | 449 | * Set/change channels. We always reset the chip. |
| 450 | * To accomplish this we must first cleanup any pending DMA, |
| 451 | * then restart stuff after a la ath5k_init. |
Bob Copeland | be00937 | 2009-01-22 08:44:16 -0500 | [diff] [blame] | 452 | * |
| 453 | * Called with sc->lock. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 454 | */ |
| 455 | static int |
| 456 | ath5k_chan_set(struct ath5k_softc *sc, struct ieee80211_channel *chan) |
| 457 | { |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 458 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 459 | "channel set, resetting (%u -> %u MHz)\n", |
| 460 | sc->curchan->center_freq, chan->center_freq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 461 | |
Joerg Albert | e30eb4a | 2009-08-05 01:52:07 +0200 | [diff] [blame] | 462 | /* |
| 463 | * To switch channels clear any pending DMA operations; |
| 464 | * wait long enough for the RX fifo to drain, reset the |
| 465 | * hardware at the new frequency, and then re-enable |
| 466 | * the relevant bits of the h/w. |
| 467 | */ |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 468 | return ath5k_reset(sc, chan, true); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | static void |
| 472 | ath5k_setcurmode(struct ath5k_softc *sc, unsigned int mode) |
| 473 | { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 474 | sc->curmode = mode; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 475 | |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 476 | if (mode == AR5K_MODE_11A) { |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 477 | sc->curband = &sc->sbands[IEEE80211_BAND_5GHZ]; |
| 478 | } else { |
| 479 | sc->curband = &sc->sbands[IEEE80211_BAND_2GHZ]; |
| 480 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 481 | } |
| 482 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 483 | struct ath_vif_iter_data { |
| 484 | const u8 *hw_macaddr; |
| 485 | u8 mask[ETH_ALEN]; |
| 486 | u8 active_mac[ETH_ALEN]; /* first active MAC */ |
| 487 | bool need_set_hw_addr; |
| 488 | bool found_active; |
| 489 | bool any_assoc; |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 490 | enum nl80211_iftype opmode; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 491 | }; |
| 492 | |
| 493 | static void ath_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif) |
| 494 | { |
| 495 | struct ath_vif_iter_data *iter_data = data; |
| 496 | int i; |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 497 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 498 | |
| 499 | if (iter_data->hw_macaddr) |
| 500 | for (i = 0; i < ETH_ALEN; i++) |
| 501 | iter_data->mask[i] &= |
| 502 | ~(iter_data->hw_macaddr[i] ^ mac[i]); |
| 503 | |
| 504 | if (!iter_data->found_active) { |
| 505 | iter_data->found_active = true; |
| 506 | memcpy(iter_data->active_mac, mac, ETH_ALEN); |
| 507 | } |
| 508 | |
| 509 | if (iter_data->need_set_hw_addr && iter_data->hw_macaddr) |
| 510 | if (compare_ether_addr(iter_data->hw_macaddr, mac) == 0) |
| 511 | iter_data->need_set_hw_addr = false; |
| 512 | |
| 513 | if (!iter_data->any_assoc) { |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 514 | if (avf->assoc) |
| 515 | iter_data->any_assoc = true; |
| 516 | } |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 517 | |
| 518 | /* Calculate combined mode - when APs are active, operate in AP mode. |
| 519 | * Otherwise use the mode of the new interface. This can currently |
| 520 | * only deal with combinations of APs and STAs. Only one ad-hoc |
Ben Greear | 7afbb2f | 2010-11-10 11:43:51 -0800 | [diff] [blame] | 521 | * interfaces is allowed. |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 522 | */ |
| 523 | if (avf->opmode == NL80211_IFTYPE_AP) |
| 524 | iter_data->opmode = NL80211_IFTYPE_AP; |
| 525 | else |
| 526 | if (iter_data->opmode == NL80211_IFTYPE_UNSPECIFIED) |
| 527 | iter_data->opmode = avf->opmode; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 528 | } |
| 529 | |
Luis R. Rodriguez | 14fb7c1 | 2010-10-20 06:59:38 -0700 | [diff] [blame] | 530 | static void ath5k_update_bssid_mask_and_opmode(struct ath5k_softc *sc, |
| 531 | struct ieee80211_vif *vif) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 532 | { |
| 533 | struct ath_common *common = ath5k_hw_common(sc->ah); |
| 534 | struct ath_vif_iter_data iter_data; |
| 535 | |
| 536 | /* |
| 537 | * Use the hardware MAC address as reference, the hardware uses it |
| 538 | * together with the BSSID mask when matching addresses. |
| 539 | */ |
| 540 | iter_data.hw_macaddr = common->macaddr; |
| 541 | memset(&iter_data.mask, 0xff, ETH_ALEN); |
| 542 | iter_data.found_active = false; |
| 543 | iter_data.need_set_hw_addr = true; |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 544 | iter_data.opmode = NL80211_IFTYPE_UNSPECIFIED; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 545 | |
| 546 | if (vif) |
| 547 | ath_vif_iter(&iter_data, vif->addr, vif); |
| 548 | |
| 549 | /* Get list of all active MAC addresses */ |
| 550 | ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter, |
| 551 | &iter_data); |
| 552 | memcpy(sc->bssidmask, iter_data.mask, ETH_ALEN); |
| 553 | |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 554 | sc->opmode = iter_data.opmode; |
| 555 | if (sc->opmode == NL80211_IFTYPE_UNSPECIFIED) |
| 556 | /* Nothing active, default to station mode */ |
| 557 | sc->opmode = NL80211_IFTYPE_STATION; |
| 558 | |
Ben Greear | 7afbb2f | 2010-11-10 11:43:51 -0800 | [diff] [blame] | 559 | ath5k_hw_set_opmode(sc->ah, sc->opmode); |
| 560 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "mode setup opmode %d (%s)\n", |
| 561 | sc->opmode, ath_opmode_to_string(sc->opmode)); |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 562 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 563 | if (iter_data.need_set_hw_addr && iter_data.found_active) |
| 564 | ath5k_hw_set_lladdr(sc->ah, iter_data.active_mac); |
| 565 | |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 566 | if (ath5k_hw_hasbssidmask(sc->ah)) |
| 567 | ath5k_hw_set_bssid_mask(sc->ah, sc->bssidmask); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 568 | } |
| 569 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 570 | static void |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 571 | ath5k_mode_setup(struct ath5k_softc *sc, struct ieee80211_vif *vif) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 572 | { |
| 573 | struct ath5k_hw *ah = sc->ah; |
| 574 | u32 rfilt; |
| 575 | |
| 576 | /* configure rx filter */ |
| 577 | rfilt = sc->filter_flags; |
| 578 | ath5k_hw_set_rx_filter(ah, rfilt); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 579 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "RX filter 0x%x\n", rfilt); |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 580 | |
| 581 | ath5k_update_bssid_mask_and_opmode(sc, vif); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 582 | } |
| 583 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 584 | static inline int |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 585 | ath5k_hw_to_driver_rix(struct ath5k_softc *sc, int hw_rix) |
| 586 | { |
Bob Copeland | b726604 | 2009-03-02 21:55:18 -0500 | [diff] [blame] | 587 | int rix; |
| 588 | |
| 589 | /* return base rate on errors */ |
| 590 | if (WARN(hw_rix < 0 || hw_rix >= AR5K_MAX_RATES, |
| 591 | "hw_rix out of bounds: %x\n", hw_rix)) |
| 592 | return 0; |
| 593 | |
| 594 | rix = sc->rate_idx[sc->curband->band][hw_rix]; |
| 595 | if (WARN(rix < 0, "invalid hw_rix: %x\n", hw_rix)) |
| 596 | rix = 0; |
| 597 | |
| 598 | return rix; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 599 | } |
| 600 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 601 | /***************\ |
| 602 | * Buffers setup * |
| 603 | \***************/ |
| 604 | |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 605 | static |
| 606 | struct sk_buff *ath5k_rx_skb_alloc(struct ath5k_softc *sc, dma_addr_t *skb_addr) |
| 607 | { |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 608 | struct ath_common *common = ath5k_hw_common(sc->ah); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 609 | struct sk_buff *skb; |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 610 | |
| 611 | /* |
| 612 | * Allocate buffer with headroom_needed space for the |
| 613 | * fake physical layer header at the start. |
| 614 | */ |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 615 | skb = ath_rxbuf_alloc(common, |
Luis R. Rodriguez | dd84978 | 2009-11-04 09:44:50 -0800 | [diff] [blame] | 616 | common->rx_bufsize, |
Luis R. Rodriguez | aeb63cf | 2009-08-12 09:57:00 -0700 | [diff] [blame] | 617 | GFP_ATOMIC); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 618 | |
| 619 | if (!skb) { |
| 620 | ATH5K_ERR(sc, "can't alloc skbuff of size %u\n", |
Luis R. Rodriguez | dd84978 | 2009-11-04 09:44:50 -0800 | [diff] [blame] | 621 | common->rx_bufsize); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 622 | return NULL; |
| 623 | } |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 624 | |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 625 | *skb_addr = dma_map_single(sc->dev, |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 626 | skb->data, common->rx_bufsize, |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 627 | DMA_FROM_DEVICE); |
| 628 | |
| 629 | if (unlikely(dma_mapping_error(sc->dev, *skb_addr))) { |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 630 | ATH5K_ERR(sc, "%s: DMA mapping failed\n", __func__); |
| 631 | dev_kfree_skb(skb); |
| 632 | return NULL; |
| 633 | } |
| 634 | return skb; |
| 635 | } |
| 636 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 637 | static int |
| 638 | ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf) |
| 639 | { |
| 640 | struct ath5k_hw *ah = sc->ah; |
| 641 | struct sk_buff *skb = bf->skb; |
| 642 | struct ath5k_desc *ds; |
Bruno Randolf | b5eae9f | 2010-05-19 10:18:16 +0900 | [diff] [blame] | 643 | int ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 644 | |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 645 | if (!skb) { |
| 646 | skb = ath5k_rx_skb_alloc(sc, &bf->skbaddr); |
| 647 | if (!skb) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 648 | return -ENOMEM; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 649 | bf->skb = skb; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | /* |
| 653 | * Setup descriptors. For receive we always terminate |
| 654 | * the descriptor list with a self-linked entry so we'll |
| 655 | * not get overrun under high load (as can happen with a |
| 656 | * 5212 when ANI processing enables PHY error frames). |
| 657 | * |
Bruno Randolf | beade63 | 2010-06-16 19:11:25 +0900 | [diff] [blame] | 658 | * To ensure the last descriptor is self-linked we create |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 659 | * each descriptor as self-linked and add it to the end. As |
| 660 | * each additional descriptor is added the previous self-linked |
Bruno Randolf | beade63 | 2010-06-16 19:11:25 +0900 | [diff] [blame] | 661 | * entry is "fixed" naturally. This should be safe even |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 662 | * if DMA is happening. When processing RX interrupts we |
| 663 | * never remove/process the last, self-linked, entry on the |
Bruno Randolf | beade63 | 2010-06-16 19:11:25 +0900 | [diff] [blame] | 664 | * descriptor list. This ensures the hardware always has |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 665 | * someplace to write a new frame. |
| 666 | */ |
| 667 | ds = bf->desc; |
| 668 | ds->ds_link = bf->daddr; /* link to self */ |
| 669 | ds->ds_data = bf->skbaddr; |
Bruno Randolf | a666819 | 2010-06-16 19:12:01 +0900 | [diff] [blame] | 670 | ret = ath5k_hw_setup_rx_desc(ah, ds, ah->common.rx_bufsize, 0); |
Bruno Randolf | 0452d4a | 2010-06-16 19:11:35 +0900 | [diff] [blame] | 671 | if (ret) { |
| 672 | ATH5K_ERR(sc, "%s: could not setup RX desc\n", __func__); |
Bruno Randolf | b5eae9f | 2010-05-19 10:18:16 +0900 | [diff] [blame] | 673 | return ret; |
Bruno Randolf | 0452d4a | 2010-06-16 19:11:35 +0900 | [diff] [blame] | 674 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 675 | |
| 676 | if (sc->rxlink != NULL) |
| 677 | *sc->rxlink = bf->daddr; |
| 678 | sc->rxlink = &ds->ds_link; |
| 679 | return 0; |
| 680 | } |
| 681 | |
Bob Copeland | 2ac2927 | 2010-02-09 13:06:54 -0500 | [diff] [blame] | 682 | static enum ath5k_pkt_type get_hw_packet_type(struct sk_buff *skb) |
| 683 | { |
| 684 | struct ieee80211_hdr *hdr; |
| 685 | enum ath5k_pkt_type htype; |
| 686 | __le16 fc; |
| 687 | |
| 688 | hdr = (struct ieee80211_hdr *)skb->data; |
| 689 | fc = hdr->frame_control; |
| 690 | |
| 691 | if (ieee80211_is_beacon(fc)) |
| 692 | htype = AR5K_PKT_TYPE_BEACON; |
| 693 | else if (ieee80211_is_probe_resp(fc)) |
| 694 | htype = AR5K_PKT_TYPE_PROBE_RESP; |
| 695 | else if (ieee80211_is_atim(fc)) |
| 696 | htype = AR5K_PKT_TYPE_ATIM; |
| 697 | else if (ieee80211_is_pspoll(fc)) |
| 698 | htype = AR5K_PKT_TYPE_PSPOLL; |
| 699 | else |
| 700 | htype = AR5K_PKT_TYPE_NORMAL; |
| 701 | |
| 702 | return htype; |
| 703 | } |
| 704 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 705 | static int |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 706 | ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf, |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 707 | struct ath5k_txq *txq, int padsize) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 708 | { |
| 709 | struct ath5k_hw *ah = sc->ah; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 710 | struct ath5k_desc *ds = bf->desc; |
| 711 | struct sk_buff *skb = bf->skb; |
Johannes Berg | a888d52 | 2008-05-26 16:43:39 +0200 | [diff] [blame] | 712 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 713 | unsigned int pktlen, flags, keyidx = AR5K_TXKEYIX_INVALID; |
Felix Fietkau | 2f7fe87 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 714 | struct ieee80211_rate *rate; |
| 715 | unsigned int mrr_rate[3], mrr_tries[3]; |
| 716 | int i, ret; |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 717 | u16 hw_rate; |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 718 | u16 cts_rate = 0; |
| 719 | u16 duration = 0; |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 720 | u8 rc_flags; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 721 | |
| 722 | flags = AR5K_TXDESC_INTREQ | AR5K_TXDESC_CLRDMASK; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 723 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 724 | /* XXX endianness */ |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 725 | bf->skbaddr = dma_map_single(sc->dev, skb->data, skb->len, |
| 726 | DMA_TO_DEVICE); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 727 | |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 728 | rate = ieee80211_get_tx_rate(sc->hw, info); |
John W. Linville | d8e1ba7 | 2010-08-24 15:27:34 -0400 | [diff] [blame] | 729 | if (!rate) { |
| 730 | ret = -EINVAL; |
| 731 | goto err_unmap; |
| 732 | } |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 733 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 734 | if (info->flags & IEEE80211_TX_CTL_NO_ACK) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 735 | flags |= AR5K_TXDESC_NOACK; |
| 736 | |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 737 | rc_flags = info->control.rates[0].flags; |
| 738 | hw_rate = (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) ? |
| 739 | rate->hw_value_short : rate->hw_value; |
| 740 | |
Bruno Randolf | 281c56d | 2008-02-05 18:44:55 +0900 | [diff] [blame] | 741 | pktlen = skb->len; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 742 | |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 743 | /* FIXME: If we are in g mode and rate is a CCK rate |
| 744 | * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta |
| 745 | * from tx power (value is in dB units already) */ |
Bob Copeland | 362695e | 2009-02-15 12:06:12 -0500 | [diff] [blame] | 746 | if (info->control.hw_key) { |
| 747 | keyidx = info->control.hw_key->hw_key_idx; |
| 748 | pktlen += info->control.hw_key->icv_len; |
| 749 | } |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 750 | if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) { |
| 751 | flags |= AR5K_TXDESC_RTSENA; |
| 752 | cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value; |
| 753 | duration = le16_to_cpu(ieee80211_rts_duration(sc->hw, |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 754 | info->control.vif, pktlen, info)); |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 755 | } |
| 756 | if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) { |
| 757 | flags |= AR5K_TXDESC_CTSENA; |
| 758 | cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value; |
| 759 | duration = le16_to_cpu(ieee80211_ctstoself_duration(sc->hw, |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 760 | info->control.vif, pktlen, info)); |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 761 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 762 | ret = ah->ah_setup_tx_desc(ah, ds, pktlen, |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 763 | ieee80211_get_hdrlen_from_skb(skb), padsize, |
Bob Copeland | 2ac2927 | 2010-02-09 13:06:54 -0500 | [diff] [blame] | 764 | get_hw_packet_type(skb), |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 765 | (sc->power_level * 2), |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 766 | hw_rate, |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 767 | info->control.rates[0].count, keyidx, ah->ah_tx_ant, flags, |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 768 | cts_rate, duration); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 769 | if (ret) |
| 770 | goto err_unmap; |
| 771 | |
Felix Fietkau | 2f7fe87 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 772 | memset(mrr_rate, 0, sizeof(mrr_rate)); |
| 773 | memset(mrr_tries, 0, sizeof(mrr_tries)); |
| 774 | for (i = 0; i < 3; i++) { |
| 775 | rate = ieee80211_get_alt_retry_rate(sc->hw, info, i); |
| 776 | if (!rate) |
| 777 | break; |
| 778 | |
| 779 | mrr_rate[i] = rate->hw_value; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 780 | mrr_tries[i] = info->control.rates[i + 1].count; |
Felix Fietkau | 2f7fe87 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 781 | } |
| 782 | |
Bruno Randolf | a666819 | 2010-06-16 19:12:01 +0900 | [diff] [blame] | 783 | ath5k_hw_setup_mrr_tx_desc(ah, ds, |
Felix Fietkau | 2f7fe87 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 784 | mrr_rate[0], mrr_tries[0], |
| 785 | mrr_rate[1], mrr_tries[1], |
| 786 | mrr_rate[2], mrr_tries[2]); |
| 787 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 788 | ds->ds_link = 0; |
| 789 | ds->ds_data = bf->skbaddr; |
| 790 | |
| 791 | spin_lock_bh(&txq->lock); |
| 792 | list_add_tail(&bf->list, &txq->q); |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 793 | txq->txq_len++; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 794 | if (txq->link == NULL) /* is this first packet? */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 795 | ath5k_hw_set_txdp(ah, txq->qnum, bf->daddr); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 796 | else /* no, so only link it */ |
| 797 | *txq->link = bf->daddr; |
| 798 | |
| 799 | txq->link = &ds->ds_link; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 800 | ath5k_hw_start_tx_dma(ah, txq->qnum); |
Jiri Slaby | 274c7c3 | 2008-07-15 17:44:20 +0200 | [diff] [blame] | 801 | mmiowb(); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 802 | spin_unlock_bh(&txq->lock); |
| 803 | |
| 804 | return 0; |
| 805 | err_unmap: |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 806 | dma_unmap_single(sc->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 807 | return ret; |
| 808 | } |
| 809 | |
| 810 | /*******************\ |
| 811 | * Descriptors setup * |
| 812 | \*******************/ |
| 813 | |
| 814 | static int |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 815 | ath5k_desc_alloc(struct ath5k_softc *sc) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 816 | { |
| 817 | struct ath5k_desc *ds; |
| 818 | struct ath5k_buf *bf; |
| 819 | dma_addr_t da; |
| 820 | unsigned int i; |
| 821 | int ret; |
| 822 | |
| 823 | /* allocate descriptors */ |
| 824 | sc->desc_len = sizeof(struct ath5k_desc) * |
| 825 | (ATH_TXBUF + ATH_RXBUF + ATH_BCBUF + 1); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 826 | |
| 827 | sc->desc = dma_alloc_coherent(sc->dev, sc->desc_len, |
| 828 | &sc->desc_daddr, GFP_KERNEL); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 829 | if (sc->desc == NULL) { |
| 830 | ATH5K_ERR(sc, "can't allocate descriptors\n"); |
| 831 | ret = -ENOMEM; |
| 832 | goto err; |
| 833 | } |
| 834 | ds = sc->desc; |
| 835 | da = sc->desc_daddr; |
| 836 | ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "DMA map: %p (%zu) -> %llx\n", |
| 837 | ds, sc->desc_len, (unsigned long long)sc->desc_daddr); |
| 838 | |
| 839 | bf = kcalloc(1 + ATH_TXBUF + ATH_RXBUF + ATH_BCBUF, |
| 840 | sizeof(struct ath5k_buf), GFP_KERNEL); |
| 841 | if (bf == NULL) { |
| 842 | ATH5K_ERR(sc, "can't allocate bufptr\n"); |
| 843 | ret = -ENOMEM; |
| 844 | goto err_free; |
| 845 | } |
| 846 | sc->bufptr = bf; |
| 847 | |
| 848 | INIT_LIST_HEAD(&sc->rxbuf); |
| 849 | for (i = 0; i < ATH_RXBUF; i++, bf++, ds++, da += sizeof(*ds)) { |
| 850 | bf->desc = ds; |
| 851 | bf->daddr = da; |
| 852 | list_add_tail(&bf->list, &sc->rxbuf); |
| 853 | } |
| 854 | |
| 855 | INIT_LIST_HEAD(&sc->txbuf); |
| 856 | sc->txbuf_len = ATH_TXBUF; |
| 857 | for (i = 0; i < ATH_TXBUF; i++, bf++, ds++, |
| 858 | da += sizeof(*ds)) { |
| 859 | bf->desc = ds; |
| 860 | bf->daddr = da; |
| 861 | list_add_tail(&bf->list, &sc->txbuf); |
| 862 | } |
| 863 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 864 | /* beacon buffers */ |
| 865 | INIT_LIST_HEAD(&sc->bcbuf); |
| 866 | for (i = 0; i < ATH_BCBUF; i++, bf++, ds++, da += sizeof(*ds)) { |
| 867 | bf->desc = ds; |
| 868 | bf->daddr = da; |
| 869 | list_add_tail(&bf->list, &sc->bcbuf); |
| 870 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 871 | |
| 872 | return 0; |
| 873 | err_free: |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 874 | dma_free_coherent(sc->dev, sc->desc_len, sc->desc, sc->desc_daddr); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 875 | err: |
| 876 | sc->desc = NULL; |
| 877 | return ret; |
| 878 | } |
| 879 | |
| 880 | static void |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 881 | ath5k_desc_free(struct ath5k_softc *sc) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 882 | { |
| 883 | struct ath5k_buf *bf; |
| 884 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 885 | list_for_each_entry(bf, &sc->txbuf, list) |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 886 | ath5k_txbuf_free_skb(sc, bf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 887 | list_for_each_entry(bf, &sc->rxbuf, list) |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 888 | ath5k_rxbuf_free_skb(sc, bf); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 889 | list_for_each_entry(bf, &sc->bcbuf, list) |
| 890 | ath5k_txbuf_free_skb(sc, bf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 891 | |
| 892 | /* Free memory associated with all descriptors */ |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 893 | dma_free_coherent(sc->dev, sc->desc_len, sc->desc, sc->desc_daddr); |
Bruno Randolf | 39d63f2 | 2010-06-16 19:11:41 +0900 | [diff] [blame] | 894 | sc->desc = NULL; |
| 895 | sc->desc_daddr = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 896 | |
| 897 | kfree(sc->bufptr); |
| 898 | sc->bufptr = NULL; |
| 899 | } |
| 900 | |
| 901 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 902 | /**************\ |
| 903 | * Queues setup * |
| 904 | \**************/ |
| 905 | |
| 906 | static struct ath5k_txq * |
| 907 | ath5k_txq_setup(struct ath5k_softc *sc, |
| 908 | int qtype, int subtype) |
| 909 | { |
| 910 | struct ath5k_hw *ah = sc->ah; |
| 911 | struct ath5k_txq *txq; |
| 912 | struct ath5k_txq_info qi = { |
| 913 | .tqi_subtype = subtype, |
Bruno Randolf | de8af45 | 2010-09-17 11:37:12 +0900 | [diff] [blame] | 914 | /* XXX: default values not correct for B and XR channels, |
| 915 | * but who cares? */ |
| 916 | .tqi_aifs = AR5K_TUNE_AIFS, |
| 917 | .tqi_cw_min = AR5K_TUNE_CWMIN, |
| 918 | .tqi_cw_max = AR5K_TUNE_CWMAX |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 919 | }; |
| 920 | int qnum; |
| 921 | |
| 922 | /* |
| 923 | * Enable interrupts only for EOL and DESC conditions. |
| 924 | * We mark tx descriptors to receive a DESC interrupt |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 925 | * when a tx queue gets deep; otherwise we wait for the |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 926 | * EOL to reap descriptors. Note that this is done to |
| 927 | * reduce interrupt load and this only defers reaping |
| 928 | * descriptors, never transmitting frames. Aside from |
| 929 | * reducing interrupts this also permits more concurrency. |
| 930 | * The only potential downside is if the tx queue backs |
| 931 | * up in which case the top half of the kernel may backup |
| 932 | * due to a lack of tx descriptors. |
| 933 | */ |
| 934 | qi.tqi_flags = AR5K_TXQ_FLAG_TXEOLINT_ENABLE | |
| 935 | AR5K_TXQ_FLAG_TXDESCINT_ENABLE; |
| 936 | qnum = ath5k_hw_setup_tx_queue(ah, qtype, &qi); |
| 937 | if (qnum < 0) { |
| 938 | /* |
| 939 | * NB: don't print a message, this happens |
| 940 | * normally on parts with too few tx queues |
| 941 | */ |
| 942 | return ERR_PTR(qnum); |
| 943 | } |
| 944 | if (qnum >= ARRAY_SIZE(sc->txqs)) { |
| 945 | ATH5K_ERR(sc, "hw qnum %u out of range, max %tu!\n", |
| 946 | qnum, ARRAY_SIZE(sc->txqs)); |
| 947 | ath5k_hw_release_tx_queue(ah, qnum); |
| 948 | return ERR_PTR(-EINVAL); |
| 949 | } |
| 950 | txq = &sc->txqs[qnum]; |
| 951 | if (!txq->setup) { |
| 952 | txq->qnum = qnum; |
| 953 | txq->link = NULL; |
| 954 | INIT_LIST_HEAD(&txq->q); |
| 955 | spin_lock_init(&txq->lock); |
| 956 | txq->setup = true; |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 957 | txq->txq_len = 0; |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 958 | txq->txq_poll_mark = false; |
Bruno Randolf | 923e5b3 | 2010-09-17 11:37:02 +0900 | [diff] [blame] | 959 | txq->txq_stuck = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 960 | } |
| 961 | return &sc->txqs[qnum]; |
| 962 | } |
| 963 | |
| 964 | static int |
| 965 | ath5k_beaconq_setup(struct ath5k_hw *ah) |
| 966 | { |
| 967 | struct ath5k_txq_info qi = { |
Bruno Randolf | de8af45 | 2010-09-17 11:37:12 +0900 | [diff] [blame] | 968 | /* XXX: default values not correct for B and XR channels, |
| 969 | * but who cares? */ |
| 970 | .tqi_aifs = AR5K_TUNE_AIFS, |
| 971 | .tqi_cw_min = AR5K_TUNE_CWMIN, |
| 972 | .tqi_cw_max = AR5K_TUNE_CWMAX, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 973 | /* NB: for dynamic turbo, don't enable any other interrupts */ |
| 974 | .tqi_flags = AR5K_TXQ_FLAG_TXDESCINT_ENABLE |
| 975 | }; |
| 976 | |
| 977 | return ath5k_hw_setup_tx_queue(ah, AR5K_TX_QUEUE_BEACON, &qi); |
| 978 | } |
| 979 | |
| 980 | static int |
| 981 | ath5k_beaconq_config(struct ath5k_softc *sc) |
| 982 | { |
| 983 | struct ath5k_hw *ah = sc->ah; |
| 984 | struct ath5k_txq_info qi; |
| 985 | int ret; |
| 986 | |
| 987 | ret = ath5k_hw_get_tx_queueprops(ah, sc->bhalq, &qi); |
| 988 | if (ret) |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 989 | goto err; |
| 990 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 991 | if (sc->opmode == NL80211_IFTYPE_AP || |
| 992 | sc->opmode == NL80211_IFTYPE_MESH_POINT) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 993 | /* |
| 994 | * Always burst out beacon and CAB traffic |
| 995 | * (aifs = cwmin = cwmax = 0) |
| 996 | */ |
| 997 | qi.tqi_aifs = 0; |
| 998 | qi.tqi_cw_min = 0; |
| 999 | qi.tqi_cw_max = 0; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1000 | } else if (sc->opmode == NL80211_IFTYPE_ADHOC) { |
Bruno Randolf | 6d91e1d | 2008-01-19 18:18:41 +0900 | [diff] [blame] | 1001 | /* |
| 1002 | * Adhoc mode; backoff between 0 and (2 * cw_min). |
| 1003 | */ |
| 1004 | qi.tqi_aifs = 0; |
| 1005 | qi.tqi_cw_min = 0; |
Bruno Randolf | de8af45 | 2010-09-17 11:37:12 +0900 | [diff] [blame] | 1006 | qi.tqi_cw_max = 2 * AR5K_TUNE_CWMIN; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1007 | } |
| 1008 | |
Bruno Randolf | 6d91e1d | 2008-01-19 18:18:41 +0900 | [diff] [blame] | 1009 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
| 1010 | "beacon queueprops tqi_aifs:%d tqi_cw_min:%d tqi_cw_max:%d\n", |
| 1011 | qi.tqi_aifs, qi.tqi_cw_min, qi.tqi_cw_max); |
| 1012 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1013 | ret = ath5k_hw_set_tx_queueprops(ah, sc->bhalq, &qi); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1014 | if (ret) { |
| 1015 | ATH5K_ERR(sc, "%s: unable to update parameters for beacon " |
| 1016 | "hardware queue!\n", __func__); |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 1017 | goto err; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1018 | } |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 1019 | ret = ath5k_hw_reset_tx_queue(ah, sc->bhalq); /* push to h/w */ |
| 1020 | if (ret) |
| 1021 | goto err; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1022 | |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 1023 | /* reconfigure cabq with ready time to 80% of beacon_interval */ |
| 1024 | ret = ath5k_hw_get_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi); |
| 1025 | if (ret) |
| 1026 | goto err; |
| 1027 | |
| 1028 | qi.tqi_ready_time = (sc->bintval * 80) / 100; |
| 1029 | ret = ath5k_hw_set_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi); |
| 1030 | if (ret) |
| 1031 | goto err; |
| 1032 | |
| 1033 | ret = ath5k_hw_reset_tx_queue(ah, AR5K_TX_QUEUE_ID_CAB); |
| 1034 | err: |
| 1035 | return ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1036 | } |
| 1037 | |
Nick Kossifidis | 80dac9ee | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1038 | /** |
| 1039 | * ath5k_drain_tx_buffs - Empty tx buffers |
| 1040 | * |
| 1041 | * @sc The &struct ath5k_softc |
| 1042 | * |
| 1043 | * Empty tx buffers from all queues in preparation |
| 1044 | * of a reset or during shutdown. |
| 1045 | * |
| 1046 | * NB: this assumes output has been stopped and |
| 1047 | * we do not need to block ath5k_tx_tasklet |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1048 | */ |
| 1049 | static void |
Nick Kossifidis | 80dac9ee | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1050 | ath5k_drain_tx_buffs(struct ath5k_softc *sc) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1051 | { |
Nick Kossifidis | 80dac9ee | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1052 | struct ath5k_txq *txq; |
| 1053 | struct ath5k_buf *bf, *bf0; |
| 1054 | int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1055 | |
Nick Kossifidis | 80dac9ee | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1056 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) { |
| 1057 | if (sc->txqs[i].setup) { |
| 1058 | txq = &sc->txqs[i]; |
| 1059 | spin_lock_bh(&txq->lock); |
| 1060 | list_for_each_entry_safe(bf, bf0, &txq->q, list) { |
| 1061 | ath5k_debug_printtxbuf(sc, bf); |
| 1062 | |
| 1063 | ath5k_txbuf_free_skb(sc, bf); |
| 1064 | |
| 1065 | spin_lock_bh(&sc->txbuflock); |
| 1066 | list_move_tail(&bf->list, &sc->txbuf); |
| 1067 | sc->txbuf_len++; |
| 1068 | txq->txq_len--; |
| 1069 | spin_unlock_bh(&sc->txbuflock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1070 | } |
Nick Kossifidis | 80dac9ee | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1071 | txq->link = NULL; |
| 1072 | txq->txq_poll_mark = false; |
| 1073 | spin_unlock_bh(&txq->lock); |
| 1074 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1075 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1076 | } |
| 1077 | |
| 1078 | static void |
| 1079 | ath5k_txq_release(struct ath5k_softc *sc) |
| 1080 | { |
| 1081 | struct ath5k_txq *txq = sc->txqs; |
| 1082 | unsigned int i; |
| 1083 | |
| 1084 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++, txq++) |
| 1085 | if (txq->setup) { |
| 1086 | ath5k_hw_release_tx_queue(sc->ah, txq->qnum); |
| 1087 | txq->setup = false; |
| 1088 | } |
| 1089 | } |
| 1090 | |
| 1091 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1092 | /*************\ |
| 1093 | * RX Handling * |
| 1094 | \*************/ |
| 1095 | |
| 1096 | /* |
| 1097 | * Enable the receive h/w following a reset. |
| 1098 | */ |
| 1099 | static int |
| 1100 | ath5k_rx_start(struct ath5k_softc *sc) |
| 1101 | { |
| 1102 | struct ath5k_hw *ah = sc->ah; |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 1103 | struct ath_common *common = ath5k_hw_common(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1104 | struct ath5k_buf *bf; |
| 1105 | int ret; |
| 1106 | |
Nick Kossifidis | b612798 | 2010-08-15 13:03:11 -0400 | [diff] [blame] | 1107 | common->rx_bufsize = roundup(IEEE80211_MAX_FRAME_LEN, common->cachelsz); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1108 | |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 1109 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "cachelsz %u rx_bufsize %u\n", |
| 1110 | common->cachelsz, common->rx_bufsize); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1111 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1112 | spin_lock_bh(&sc->rxbuflock); |
Bob Copeland | 2692504 | 2009-04-15 07:57:36 -0400 | [diff] [blame] | 1113 | sc->rxlink = NULL; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1114 | list_for_each_entry(bf, &sc->rxbuf, list) { |
| 1115 | ret = ath5k_rxbuf_setup(sc, bf); |
| 1116 | if (ret != 0) { |
| 1117 | spin_unlock_bh(&sc->rxbuflock); |
| 1118 | goto err; |
| 1119 | } |
| 1120 | } |
| 1121 | bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list); |
Bob Copeland | 2692504 | 2009-04-15 07:57:36 -0400 | [diff] [blame] | 1122 | ath5k_hw_set_rxdp(ah, bf->daddr); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1123 | spin_unlock_bh(&sc->rxbuflock); |
| 1124 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1125 | ath5k_hw_start_rx_dma(ah); /* enable recv descriptors */ |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1126 | ath5k_mode_setup(sc, NULL); /* set filters, etc. */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1127 | ath5k_hw_start_rx_pcu(ah); /* re-enable PCU/DMA engine */ |
| 1128 | |
| 1129 | return 0; |
| 1130 | err: |
| 1131 | return ret; |
| 1132 | } |
| 1133 | |
| 1134 | /* |
Nick Kossifidis | 80dac9ee | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1135 | * Disable the receive logic on PCU (DRU) |
| 1136 | * In preparation for a shutdown. |
| 1137 | * |
| 1138 | * Note: Doesn't stop rx DMA, ath5k_hw_dma_stop |
| 1139 | * does. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1140 | */ |
| 1141 | static void |
| 1142 | ath5k_rx_stop(struct ath5k_softc *sc) |
| 1143 | { |
| 1144 | struct ath5k_hw *ah = sc->ah; |
| 1145 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1146 | ath5k_hw_set_rx_filter(ah, 0); /* clear recv filter */ |
Nick Kossifidis | 80dac9ee | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1147 | ath5k_hw_stop_rx_pcu(ah); /* disable PCU */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1148 | |
| 1149 | ath5k_debug_printrxbuffs(sc, ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1150 | } |
| 1151 | |
| 1152 | static unsigned int |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1153 | ath5k_rx_decrypted(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1154 | struct ath5k_rx_status *rs) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1155 | { |
Luis R. Rodriguez | dc1e001 | 2009-11-04 17:47:31 -0800 | [diff] [blame] | 1156 | struct ath5k_hw *ah = sc->ah; |
| 1157 | struct ath_common *common = ath5k_hw_common(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1158 | struct ieee80211_hdr *hdr = (void *)skb->data; |
Harvey Harrison | 798ee98 | 2008-07-15 18:44:02 -0700 | [diff] [blame] | 1159 | unsigned int keyix, hlen; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1160 | |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1161 | if (!(rs->rs_status & AR5K_RXERR_DECRYPT) && |
| 1162 | rs->rs_keyix != AR5K_RXKEYIX_INVALID) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1163 | return RX_FLAG_DECRYPTED; |
| 1164 | |
| 1165 | /* Apparently when a default key is used to decrypt the packet |
| 1166 | the hw does not set the index used to decrypt. In such cases |
| 1167 | get the index from the packet. */ |
Harvey Harrison | 798ee98 | 2008-07-15 18:44:02 -0700 | [diff] [blame] | 1168 | hlen = ieee80211_hdrlen(hdr->frame_control); |
Harvey Harrison | 24b56e7 | 2008-06-14 23:33:38 -0700 | [diff] [blame] | 1169 | if (ieee80211_has_protected(hdr->frame_control) && |
| 1170 | !(rs->rs_status & AR5K_RXERR_DECRYPT) && |
| 1171 | skb->len >= hlen + 4) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1172 | keyix = skb->data[hlen + 3] >> 6; |
| 1173 | |
Luis R. Rodriguez | dc1e001 | 2009-11-04 17:47:31 -0800 | [diff] [blame] | 1174 | if (test_bit(keyix, common->keymap)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1175 | return RX_FLAG_DECRYPTED; |
| 1176 | } |
| 1177 | |
| 1178 | return 0; |
| 1179 | } |
| 1180 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1181 | |
| 1182 | static void |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1183 | ath5k_check_ibss_tsf(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1184 | struct ieee80211_rx_status *rxs) |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1185 | { |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 1186 | struct ath_common *common = ath5k_hw_common(sc->ah); |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1187 | u64 tsf, bc_tstamp; |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1188 | u32 hw_tu; |
| 1189 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data; |
| 1190 | |
Harvey Harrison | 24b56e7 | 2008-06-14 23:33:38 -0700 | [diff] [blame] | 1191 | if (ieee80211_is_beacon(mgmt->frame_control) && |
Pavel Roskin | 38c07b4 | 2008-02-26 17:59:14 -0500 | [diff] [blame] | 1192 | le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS && |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 1193 | memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) == 0) { |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1194 | /* |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1195 | * Received an IBSS beacon with the same BSSID. Hardware *must* |
| 1196 | * have updated the local TSF. We have to work around various |
| 1197 | * hardware bugs, though... |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1198 | */ |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1199 | tsf = ath5k_hw_get_tsf64(sc->ah); |
| 1200 | bc_tstamp = le64_to_cpu(mgmt->u.beacon.timestamp); |
| 1201 | hw_tu = TSF_TO_TU(tsf); |
| 1202 | |
| 1203 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 1204 | "beacon %llx mactime %llx (diff %lld) tsf now %llx\n", |
John W. Linville | 06501d2 | 2008-04-01 17:38:47 -0400 | [diff] [blame] | 1205 | (unsigned long long)bc_tstamp, |
| 1206 | (unsigned long long)rxs->mactime, |
| 1207 | (unsigned long long)(rxs->mactime - bc_tstamp), |
| 1208 | (unsigned long long)tsf); |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1209 | |
| 1210 | /* |
| 1211 | * Sometimes the HW will give us a wrong tstamp in the rx |
| 1212 | * status, causing the timestamp extension to go wrong. |
| 1213 | * (This seems to happen especially with beacon frames bigger |
| 1214 | * than 78 byte (incl. FCS)) |
| 1215 | * But we know that the receive timestamp must be later than the |
| 1216 | * timestamp of the beacon since HW must have synced to that. |
| 1217 | * |
| 1218 | * NOTE: here we assume mactime to be after the frame was |
| 1219 | * received, not like mac80211 which defines it at the start. |
| 1220 | */ |
| 1221 | if (bc_tstamp > rxs->mactime) { |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1222 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1223 | "fixing mactime from %llx to %llx\n", |
John W. Linville | 06501d2 | 2008-04-01 17:38:47 -0400 | [diff] [blame] | 1224 | (unsigned long long)rxs->mactime, |
| 1225 | (unsigned long long)tsf); |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1226 | rxs->mactime = tsf; |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1227 | } |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1228 | |
| 1229 | /* |
| 1230 | * Local TSF might have moved higher than our beacon timers, |
| 1231 | * in that case we have to update them to continue sending |
| 1232 | * beacons. This also takes care of synchronizing beacon sending |
| 1233 | * times with other stations. |
| 1234 | */ |
| 1235 | if (hw_tu >= sc->nexttbtt) |
| 1236 | ath5k_beacon_update_timers(sc, bc_tstamp); |
Bruno Randolf | 7f89612 | 2010-09-27 12:22:21 +0900 | [diff] [blame] | 1237 | |
| 1238 | /* Check if the beacon timers are still correct, because a TSF |
| 1239 | * update might have created a window between them - for a |
| 1240 | * longer description see the comment of this function: */ |
| 1241 | if (!ath5k_hw_check_beacon_timers(sc->ah, sc->bintval)) { |
| 1242 | ath5k_beacon_update_timers(sc, bc_tstamp); |
| 1243 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 1244 | "fixed beacon timers after beacon receive\n"); |
| 1245 | } |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1246 | } |
| 1247 | } |
| 1248 | |
Bruno Randolf | b4ea449 | 2010-03-25 14:49:25 +0900 | [diff] [blame] | 1249 | static void |
| 1250 | ath5k_update_beacon_rssi(struct ath5k_softc *sc, struct sk_buff *skb, int rssi) |
| 1251 | { |
| 1252 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data; |
| 1253 | struct ath5k_hw *ah = sc->ah; |
| 1254 | struct ath_common *common = ath5k_hw_common(ah); |
| 1255 | |
| 1256 | /* only beacons from our BSSID */ |
| 1257 | if (!ieee80211_is_beacon(mgmt->frame_control) || |
| 1258 | memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) != 0) |
| 1259 | return; |
| 1260 | |
Bruno Randolf | eef39be | 2010-11-16 10:58:43 +0900 | [diff] [blame] | 1261 | ewma_add(&ah->ah_beacon_rssi_avg, rssi); |
Bruno Randolf | b4ea449 | 2010-03-25 14:49:25 +0900 | [diff] [blame] | 1262 | |
| 1263 | /* in IBSS mode we should keep RSSI statistics per neighbour */ |
| 1264 | /* le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS */ |
| 1265 | } |
| 1266 | |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1267 | /* |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1268 | * Compute padding position. skb must contain an IEEE 802.11 frame |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1269 | */ |
| 1270 | static int ath5k_common_padpos(struct sk_buff *skb) |
| 1271 | { |
| 1272 | struct ieee80211_hdr * hdr = (struct ieee80211_hdr *)skb->data; |
| 1273 | __le16 frame_control = hdr->frame_control; |
| 1274 | int padpos = 24; |
| 1275 | |
| 1276 | if (ieee80211_has_a4(frame_control)) { |
| 1277 | padpos += ETH_ALEN; |
| 1278 | } |
| 1279 | if (ieee80211_is_data_qos(frame_control)) { |
| 1280 | padpos += IEEE80211_QOS_CTL_LEN; |
| 1281 | } |
| 1282 | |
| 1283 | return padpos; |
| 1284 | } |
| 1285 | |
| 1286 | /* |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1287 | * This function expects an 802.11 frame and returns the number of |
| 1288 | * bytes added, or -1 if we don't have enough header room. |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1289 | */ |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1290 | static int ath5k_add_padding(struct sk_buff *skb) |
| 1291 | { |
| 1292 | int padpos = ath5k_common_padpos(skb); |
| 1293 | int padsize = padpos & 3; |
| 1294 | |
| 1295 | if (padsize && skb->len>padpos) { |
| 1296 | |
| 1297 | if (skb_headroom(skb) < padsize) |
| 1298 | return -1; |
| 1299 | |
| 1300 | skb_push(skb, padsize); |
| 1301 | memmove(skb->data, skb->data+padsize, padpos); |
| 1302 | return padsize; |
| 1303 | } |
| 1304 | |
| 1305 | return 0; |
| 1306 | } |
| 1307 | |
| 1308 | /* |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1309 | * The MAC header is padded to have 32-bit boundary if the |
| 1310 | * packet payload is non-zero. The general calculation for |
| 1311 | * padsize would take into account odd header lengths: |
| 1312 | * padsize = 4 - (hdrlen & 3); however, since only |
| 1313 | * even-length headers are used, padding can only be 0 or 2 |
| 1314 | * bytes and we can optimize this a bit. We must not try to |
| 1315 | * remove padding from short control frames that do not have a |
| 1316 | * payload. |
| 1317 | * |
| 1318 | * This function expects an 802.11 frame and returns the number of |
| 1319 | * bytes removed. |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1320 | */ |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1321 | static int ath5k_remove_padding(struct sk_buff *skb) |
| 1322 | { |
| 1323 | int padpos = ath5k_common_padpos(skb); |
| 1324 | int padsize = padpos & 3; |
| 1325 | |
| 1326 | if (padsize && skb->len>=padpos+padsize) { |
| 1327 | memmove(skb->data + padsize, skb->data, padpos); |
| 1328 | skb_pull(skb, padsize); |
| 1329 | return padsize; |
| 1330 | } |
| 1331 | |
| 1332 | return 0; |
| 1333 | } |
| 1334 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1335 | static void |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1336 | ath5k_receive_frame(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1337 | struct ath5k_rx_status *rs) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1338 | { |
Bob Copeland | 1c5256b | 2009-08-24 23:00:32 -0400 | [diff] [blame] | 1339 | struct ieee80211_rx_status *rxs; |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1340 | |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1341 | ath5k_remove_padding(skb); |
| 1342 | |
| 1343 | rxs = IEEE80211_SKB_RXCB(skb); |
| 1344 | |
| 1345 | rxs->flag = 0; |
| 1346 | if (unlikely(rs->rs_status & AR5K_RXERR_MIC)) |
| 1347 | rxs->flag |= RX_FLAG_MMIC_ERROR; |
| 1348 | |
| 1349 | /* |
| 1350 | * always extend the mac timestamp, since this information is |
| 1351 | * also needed for proper IBSS merging. |
| 1352 | * |
| 1353 | * XXX: it might be too late to do it here, since rs_tstamp is |
| 1354 | * 15bit only. that means TSF extension has to be done within |
| 1355 | * 32768usec (about 32ms). it might be necessary to move this to |
| 1356 | * the interrupt handler, like it is done in madwifi. |
| 1357 | * |
| 1358 | * Unfortunately we don't know when the hardware takes the rx |
| 1359 | * timestamp (beginning of phy frame, data frame, end of rx?). |
| 1360 | * The only thing we know is that it is hardware specific... |
| 1361 | * On AR5213 it seems the rx timestamp is at the end of the |
| 1362 | * frame, but i'm not sure. |
| 1363 | * |
| 1364 | * NOTE: mac80211 defines mactime at the beginning of the first |
| 1365 | * data symbol. Since we don't have any time references it's |
| 1366 | * impossible to comply to that. This affects IBSS merge only |
| 1367 | * right now, so it's not too bad... |
| 1368 | */ |
| 1369 | rxs->mactime = ath5k_extend_tsf(sc->ah, rs->rs_tstamp); |
| 1370 | rxs->flag |= RX_FLAG_TSFT; |
| 1371 | |
| 1372 | rxs->freq = sc->curchan->center_freq; |
| 1373 | rxs->band = sc->curband->band; |
| 1374 | |
| 1375 | rxs->signal = sc->ah->ah_noise_floor + rs->rs_rssi; |
| 1376 | |
| 1377 | rxs->antenna = rs->rs_antenna; |
| 1378 | |
| 1379 | if (rs->rs_antenna > 0 && rs->rs_antenna < 5) |
| 1380 | sc->stats.antenna_rx[rs->rs_antenna]++; |
| 1381 | else |
| 1382 | sc->stats.antenna_rx[0]++; /* invalid */ |
| 1383 | |
| 1384 | rxs->rate_idx = ath5k_hw_to_driver_rix(sc, rs->rs_rate); |
| 1385 | rxs->flag |= ath5k_rx_decrypted(sc, skb, rs); |
| 1386 | |
| 1387 | if (rxs->rate_idx >= 0 && rs->rs_rate == |
| 1388 | sc->curband->bitrates[rxs->rate_idx].hw_value_short) |
| 1389 | rxs->flag |= RX_FLAG_SHORTPRE; |
| 1390 | |
| 1391 | ath5k_debug_dump_skb(sc, skb, "RX ", 0); |
| 1392 | |
| 1393 | ath5k_update_beacon_rssi(sc, skb, rs->rs_rssi); |
| 1394 | |
| 1395 | /* check beacons in IBSS mode */ |
| 1396 | if (sc->opmode == NL80211_IFTYPE_ADHOC) |
| 1397 | ath5k_check_ibss_tsf(sc, skb, rxs); |
| 1398 | |
| 1399 | ieee80211_rx(sc->hw, skb); |
| 1400 | } |
| 1401 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1402 | /** ath5k_frame_receive_ok() - Do we want to receive this frame or not? |
| 1403 | * |
| 1404 | * Check if we want to further process this frame or not. Also update |
| 1405 | * statistics. Return true if we want this frame, false if not. |
| 1406 | */ |
| 1407 | static bool |
| 1408 | ath5k_receive_frame_ok(struct ath5k_softc *sc, struct ath5k_rx_status *rs) |
| 1409 | { |
| 1410 | sc->stats.rx_all_count++; |
Ben Greear | b72acdd | 2010-10-01 10:54:04 -0700 | [diff] [blame] | 1411 | sc->stats.rx_bytes_count += rs->rs_datalen; |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1412 | |
| 1413 | if (unlikely(rs->rs_status)) { |
| 1414 | if (rs->rs_status & AR5K_RXERR_CRC) |
| 1415 | sc->stats.rxerr_crc++; |
| 1416 | if (rs->rs_status & AR5K_RXERR_FIFO) |
| 1417 | sc->stats.rxerr_fifo++; |
| 1418 | if (rs->rs_status & AR5K_RXERR_PHY) { |
| 1419 | sc->stats.rxerr_phy++; |
| 1420 | if (rs->rs_phyerr > 0 && rs->rs_phyerr < 32) |
| 1421 | sc->stats.rxerr_phy_code[rs->rs_phyerr]++; |
| 1422 | return false; |
| 1423 | } |
| 1424 | if (rs->rs_status & AR5K_RXERR_DECRYPT) { |
| 1425 | /* |
| 1426 | * Decrypt error. If the error occurred |
| 1427 | * because there was no hardware key, then |
| 1428 | * let the frame through so the upper layers |
| 1429 | * can process it. This is necessary for 5210 |
| 1430 | * parts which have no way to setup a ``clear'' |
| 1431 | * key cache entry. |
| 1432 | * |
| 1433 | * XXX do key cache faulting |
| 1434 | */ |
| 1435 | sc->stats.rxerr_decrypt++; |
| 1436 | if (rs->rs_keyix == AR5K_RXKEYIX_INVALID && |
| 1437 | !(rs->rs_status & AR5K_RXERR_CRC)) |
| 1438 | return true; |
| 1439 | } |
| 1440 | if (rs->rs_status & AR5K_RXERR_MIC) { |
| 1441 | sc->stats.rxerr_mic++; |
| 1442 | return true; |
| 1443 | } |
| 1444 | |
Bob Copeland | 23538c2 | 2010-08-15 13:03:13 -0400 | [diff] [blame] | 1445 | /* reject any frames with non-crypto errors */ |
| 1446 | if (rs->rs_status & ~(AR5K_RXERR_DECRYPT)) |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1447 | return false; |
| 1448 | } |
| 1449 | |
| 1450 | if (unlikely(rs->rs_more)) { |
| 1451 | sc->stats.rxerr_jumbo++; |
| 1452 | return false; |
| 1453 | } |
| 1454 | return true; |
| 1455 | } |
| 1456 | |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1457 | static void |
| 1458 | ath5k_tasklet_rx(unsigned long data) |
| 1459 | { |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1460 | struct ath5k_rx_status rs = {}; |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 1461 | struct sk_buff *skb, *next_skb; |
| 1462 | dma_addr_t next_skb_addr; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1463 | struct ath5k_softc *sc = (void *)data; |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 1464 | struct ath5k_hw *ah = sc->ah; |
| 1465 | struct ath_common *common = ath5k_hw_common(ah); |
Bob Copeland | c57ca81 | 2009-04-15 07:57:35 -0400 | [diff] [blame] | 1466 | struct ath5k_buf *bf; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1467 | struct ath5k_desc *ds; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1468 | int ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1469 | |
| 1470 | spin_lock(&sc->rxbuflock); |
Jiri Slaby | 3a0f2c8 | 2008-07-15 17:44:18 +0200 | [diff] [blame] | 1471 | if (list_empty(&sc->rxbuf)) { |
| 1472 | ATH5K_WARN(sc, "empty rx buf pool\n"); |
| 1473 | goto unlock; |
| 1474 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1475 | do { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1476 | bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list); |
| 1477 | BUG_ON(bf->skb == NULL); |
| 1478 | skb = bf->skb; |
| 1479 | ds = bf->desc; |
| 1480 | |
Bob Copeland | c57ca81 | 2009-04-15 07:57:35 -0400 | [diff] [blame] | 1481 | /* bail if HW is still using self-linked descriptor */ |
| 1482 | if (ath5k_hw_get_rxdp(sc->ah) == bf->daddr) |
| 1483 | break; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1484 | |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1485 | ret = sc->ah->ah_proc_rx_desc(sc->ah, ds, &rs); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1486 | if (unlikely(ret == -EINPROGRESS)) |
| 1487 | break; |
| 1488 | else if (unlikely(ret)) { |
| 1489 | ATH5K_ERR(sc, "error in processing rx descriptor\n"); |
Bruno Randolf | 7644395 | 2010-03-09 16:56:00 +0900 | [diff] [blame] | 1490 | sc->stats.rxerr_proc++; |
Bruno Randolf | b16062f | 2010-06-16 19:11:46 +0900 | [diff] [blame] | 1491 | break; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1492 | } |
| 1493 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1494 | if (ath5k_receive_frame_ok(sc, &rs)) { |
| 1495 | next_skb = ath5k_rx_skb_alloc(sc, &next_skb_addr); |
Bruno Randolf | 7644395 | 2010-03-09 16:56:00 +0900 | [diff] [blame] | 1496 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1497 | /* |
| 1498 | * If we can't replace bf->skb with a new skb under |
| 1499 | * memory pressure, just skip this packet |
| 1500 | */ |
| 1501 | if (!next_skb) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1502 | goto next; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1503 | |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1504 | dma_unmap_single(sc->dev, bf->skbaddr, |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1505 | common->rx_bufsize, |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1506 | DMA_FROM_DEVICE); |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1507 | |
| 1508 | skb_put(skb, rs.rs_datalen); |
| 1509 | |
| 1510 | ath5k_receive_frame(sc, skb, &rs); |
| 1511 | |
| 1512 | bf->skb = next_skb; |
| 1513 | bf->skbaddr = next_skb_addr; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1514 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1515 | next: |
| 1516 | list_move_tail(&bf->list, &sc->rxbuf); |
| 1517 | } while (ath5k_rxbuf_setup(sc, bf) == 0); |
Jiri Slaby | 3a0f2c8 | 2008-07-15 17:44:18 +0200 | [diff] [blame] | 1518 | unlock: |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1519 | spin_unlock(&sc->rxbuflock); |
| 1520 | } |
| 1521 | |
| 1522 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1523 | /*************\ |
| 1524 | * TX Handling * |
| 1525 | \*************/ |
| 1526 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1527 | static int ath5k_tx_queue(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 1528 | struct ath5k_txq *txq) |
| 1529 | { |
| 1530 | struct ath5k_softc *sc = hw->priv; |
| 1531 | struct ath5k_buf *bf; |
| 1532 | unsigned long flags; |
| 1533 | int padsize; |
| 1534 | |
| 1535 | ath5k_debug_dump_skb(sc, skb, "TX ", 1); |
| 1536 | |
| 1537 | /* |
| 1538 | * The hardware expects the header padded to 4 byte boundaries. |
| 1539 | * If this is not the case, we add the padding after the header. |
| 1540 | */ |
| 1541 | padsize = ath5k_add_padding(skb); |
| 1542 | if (padsize < 0) { |
| 1543 | ATH5K_ERR(sc, "tx hdrlen not %%4: not enough" |
| 1544 | " headroom to pad"); |
| 1545 | goto drop_packet; |
| 1546 | } |
| 1547 | |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 1548 | if (txq->txq_len >= ATH5K_TXQ_LEN_MAX) |
| 1549 | ieee80211_stop_queue(hw, txq->qnum); |
| 1550 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1551 | spin_lock_irqsave(&sc->txbuflock, flags); |
| 1552 | if (list_empty(&sc->txbuf)) { |
| 1553 | ATH5K_ERR(sc, "no further txbuf available, dropping packet\n"); |
| 1554 | spin_unlock_irqrestore(&sc->txbuflock, flags); |
Bruno Randolf | 651d937 | 2010-09-17 11:36:46 +0900 | [diff] [blame] | 1555 | ieee80211_stop_queues(hw); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1556 | goto drop_packet; |
| 1557 | } |
| 1558 | bf = list_first_entry(&sc->txbuf, struct ath5k_buf, list); |
| 1559 | list_del(&bf->list); |
| 1560 | sc->txbuf_len--; |
| 1561 | if (list_empty(&sc->txbuf)) |
| 1562 | ieee80211_stop_queues(hw); |
| 1563 | spin_unlock_irqrestore(&sc->txbuflock, flags); |
| 1564 | |
| 1565 | bf->skb = skb; |
| 1566 | |
| 1567 | if (ath5k_txbuf_setup(sc, bf, txq, padsize)) { |
| 1568 | bf->skb = NULL; |
| 1569 | spin_lock_irqsave(&sc->txbuflock, flags); |
| 1570 | list_add_tail(&bf->list, &sc->txbuf); |
| 1571 | sc->txbuf_len++; |
| 1572 | spin_unlock_irqrestore(&sc->txbuflock, flags); |
| 1573 | goto drop_packet; |
| 1574 | } |
| 1575 | return NETDEV_TX_OK; |
| 1576 | |
| 1577 | drop_packet: |
| 1578 | dev_kfree_skb_any(skb); |
| 1579 | return NETDEV_TX_OK; |
| 1580 | } |
| 1581 | |
Bruno Randolf | 1440401 | 2010-09-17 11:36:51 +0900 | [diff] [blame] | 1582 | static void |
| 1583 | ath5k_tx_frame_completed(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1584 | struct ath5k_tx_status *ts) |
| 1585 | { |
| 1586 | struct ieee80211_tx_info *info; |
| 1587 | int i; |
| 1588 | |
| 1589 | sc->stats.tx_all_count++; |
Ben Greear | b72acdd | 2010-10-01 10:54:04 -0700 | [diff] [blame] | 1590 | sc->stats.tx_bytes_count += skb->len; |
Bruno Randolf | 1440401 | 2010-09-17 11:36:51 +0900 | [diff] [blame] | 1591 | info = IEEE80211_SKB_CB(skb); |
| 1592 | |
| 1593 | ieee80211_tx_info_clear_status(info); |
| 1594 | for (i = 0; i < 4; i++) { |
| 1595 | struct ieee80211_tx_rate *r = |
| 1596 | &info->status.rates[i]; |
| 1597 | |
| 1598 | if (ts->ts_rate[i]) { |
| 1599 | r->idx = ath5k_hw_to_driver_rix(sc, ts->ts_rate[i]); |
| 1600 | r->count = ts->ts_retry[i]; |
| 1601 | } else { |
| 1602 | r->idx = -1; |
| 1603 | r->count = 0; |
| 1604 | } |
| 1605 | } |
| 1606 | |
| 1607 | /* count the successful attempt as well */ |
| 1608 | info->status.rates[ts->ts_final_idx].count++; |
| 1609 | |
| 1610 | if (unlikely(ts->ts_status)) { |
| 1611 | sc->stats.ack_fail++; |
| 1612 | if (ts->ts_status & AR5K_TXERR_FILT) { |
| 1613 | info->flags |= IEEE80211_TX_STAT_TX_FILTERED; |
| 1614 | sc->stats.txerr_filt++; |
| 1615 | } |
| 1616 | if (ts->ts_status & AR5K_TXERR_XRETRY) |
| 1617 | sc->stats.txerr_retry++; |
| 1618 | if (ts->ts_status & AR5K_TXERR_FIFO) |
| 1619 | sc->stats.txerr_fifo++; |
| 1620 | } else { |
| 1621 | info->flags |= IEEE80211_TX_STAT_ACK; |
| 1622 | info->status.ack_signal = ts->ts_rssi; |
| 1623 | } |
| 1624 | |
| 1625 | /* |
| 1626 | * Remove MAC header padding before giving the frame |
| 1627 | * back to mac80211. |
| 1628 | */ |
| 1629 | ath5k_remove_padding(skb); |
| 1630 | |
| 1631 | if (ts->ts_antenna > 0 && ts->ts_antenna < 5) |
| 1632 | sc->stats.antenna_tx[ts->ts_antenna]++; |
| 1633 | else |
| 1634 | sc->stats.antenna_tx[0]++; /* invalid */ |
| 1635 | |
| 1636 | ieee80211_tx_status(sc->hw, skb); |
| 1637 | } |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1638 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1639 | static void |
| 1640 | ath5k_tx_processq(struct ath5k_softc *sc, struct ath5k_txq *txq) |
| 1641 | { |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1642 | struct ath5k_tx_status ts = {}; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1643 | struct ath5k_buf *bf, *bf0; |
| 1644 | struct ath5k_desc *ds; |
| 1645 | struct sk_buff *skb; |
Bruno Randolf | 1440401 | 2010-09-17 11:36:51 +0900 | [diff] [blame] | 1646 | int ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1647 | |
| 1648 | spin_lock(&txq->lock); |
| 1649 | list_for_each_entry_safe(bf, bf0, &txq->q, list) { |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1650 | |
| 1651 | txq->txq_poll_mark = false; |
| 1652 | |
| 1653 | /* skb might already have been processed last time. */ |
| 1654 | if (bf->skb != NULL) { |
| 1655 | ds = bf->desc; |
| 1656 | |
| 1657 | ret = sc->ah->ah_proc_tx_desc(sc->ah, ds, &ts); |
| 1658 | if (unlikely(ret == -EINPROGRESS)) |
| 1659 | break; |
| 1660 | else if (unlikely(ret)) { |
| 1661 | ATH5K_ERR(sc, |
| 1662 | "error %d while processing " |
| 1663 | "queue %u\n", ret, txq->qnum); |
| 1664 | break; |
| 1665 | } |
| 1666 | |
| 1667 | skb = bf->skb; |
| 1668 | bf->skb = NULL; |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1669 | |
| 1670 | dma_unmap_single(sc->dev, bf->skbaddr, skb->len, |
| 1671 | DMA_TO_DEVICE); |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1672 | ath5k_tx_frame_completed(sc, skb, &ts); |
| 1673 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1674 | |
Bob Copeland | a05988b | 2010-04-07 23:55:58 -0400 | [diff] [blame] | 1675 | /* |
| 1676 | * It's possible that the hardware can say the buffer is |
| 1677 | * completed when it hasn't yet loaded the ds_link from |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1678 | * host memory and moved on. |
| 1679 | * Always keep the last descriptor to avoid HW races... |
Bob Copeland | a05988b | 2010-04-07 23:55:58 -0400 | [diff] [blame] | 1680 | */ |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1681 | if (ath5k_hw_get_txdp(sc->ah, txq->qnum) != bf->daddr) { |
| 1682 | spin_lock(&sc->txbuflock); |
| 1683 | list_move_tail(&bf->list, &sc->txbuf); |
| 1684 | sc->txbuf_len++; |
| 1685 | txq->txq_len--; |
| 1686 | spin_unlock(&sc->txbuflock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1687 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1688 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1689 | spin_unlock(&txq->lock); |
Bruno Randolf | 4198a8d | 2010-10-05 13:27:17 +0900 | [diff] [blame] | 1690 | if (txq->txq_len < ATH5K_TXQ_LEN_LOW && txq->qnum < 4) |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 1691 | ieee80211_wake_queue(sc->hw, txq->qnum); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1692 | } |
| 1693 | |
| 1694 | static void |
| 1695 | ath5k_tasklet_tx(unsigned long data) |
| 1696 | { |
Bob Copeland | 8784d2e | 2009-07-29 17:32:28 -0400 | [diff] [blame] | 1697 | int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1698 | struct ath5k_softc *sc = (void *)data; |
| 1699 | |
Bob Copeland | 8784d2e | 2009-07-29 17:32:28 -0400 | [diff] [blame] | 1700 | for (i=0; i < AR5K_NUM_TX_QUEUES; i++) |
| 1701 | if (sc->txqs[i].setup && (sc->ah->ah_txq_isr & BIT(i))) |
| 1702 | ath5k_tx_processq(sc, &sc->txqs[i]); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1703 | } |
| 1704 | |
| 1705 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1706 | /*****************\ |
| 1707 | * Beacon handling * |
| 1708 | \*****************/ |
| 1709 | |
| 1710 | /* |
| 1711 | * Setup the beacon frame for transmit. |
| 1712 | */ |
| 1713 | static int |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1714 | ath5k_beacon_setup(struct ath5k_softc *sc, struct ath5k_buf *bf) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1715 | { |
| 1716 | struct sk_buff *skb = bf->skb; |
Johannes Berg | a888d52 | 2008-05-26 16:43:39 +0200 | [diff] [blame] | 1717 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1718 | struct ath5k_hw *ah = sc->ah; |
| 1719 | struct ath5k_desc *ds; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1720 | int ret = 0; |
| 1721 | u8 antenna; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1722 | u32 flags; |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1723 | const int padsize = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1724 | |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1725 | bf->skbaddr = dma_map_single(sc->dev, skb->data, skb->len, |
| 1726 | DMA_TO_DEVICE); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1727 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "skb %p [data %p len %u] " |
| 1728 | "skbaddr %llx\n", skb, skb->data, skb->len, |
| 1729 | (unsigned long long)bf->skbaddr); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1730 | |
| 1731 | if (dma_mapping_error(sc->dev, bf->skbaddr)) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1732 | ATH5K_ERR(sc, "beacon DMA mapping failed\n"); |
| 1733 | return -EIO; |
| 1734 | } |
| 1735 | |
| 1736 | ds = bf->desc; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1737 | antenna = ah->ah_tx_ant; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1738 | |
| 1739 | flags = AR5K_TXDESC_NOACK; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1740 | if (sc->opmode == NL80211_IFTYPE_ADHOC && ath5k_hw_hasveol(ah)) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1741 | ds->ds_link = bf->daddr; /* self-linked */ |
| 1742 | flags |= AR5K_TXDESC_VEOL; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1743 | } else |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1744 | ds->ds_link = 0; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1745 | |
| 1746 | /* |
| 1747 | * If we use multiple antennas on AP and use |
| 1748 | * the Sectored AP scenario, switch antenna every |
| 1749 | * 4 beacons to make sure everybody hears our AP. |
| 1750 | * When a client tries to associate, hw will keep |
| 1751 | * track of the tx antenna to be used for this client |
| 1752 | * automaticaly, based on ACKed packets. |
| 1753 | * |
| 1754 | * Note: AP still listens and transmits RTS on the |
| 1755 | * default antenna which is supposed to be an omni. |
| 1756 | * |
| 1757 | * Note2: On sectored scenarios it's possible to have |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1758 | * multiple antennas (1 omni -- the default -- and 14 |
| 1759 | * sectors), so if we choose to actually support this |
| 1760 | * mode, we need to allow the user to set how many antennas |
| 1761 | * we have and tweak the code below to send beacons |
| 1762 | * on all of them. |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1763 | */ |
| 1764 | if (ah->ah_ant_mode == AR5K_ANTMODE_SECTOR_AP) |
| 1765 | antenna = sc->bsent & 4 ? 2 : 1; |
| 1766 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1767 | |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 1768 | /* FIXME: If we are in g mode and rate is a CCK rate |
| 1769 | * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta |
| 1770 | * from tx power (value is in dB units already) */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1771 | ds->ds_data = bf->skbaddr; |
Bruno Randolf | 281c56d | 2008-02-05 18:44:55 +0900 | [diff] [blame] | 1772 | ret = ah->ah_setup_tx_desc(ah, ds, skb->len, |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1773 | ieee80211_get_hdrlen_from_skb(skb), padsize, |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 1774 | AR5K_PKT_TYPE_BEACON, (sc->power_level * 2), |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1775 | ieee80211_get_tx_rate(sc->hw, info)->hw_value, |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 1776 | 1, AR5K_TXKEYIX_INVALID, |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 1777 | antenna, flags, 0, 0); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1778 | if (ret) |
| 1779 | goto err_unmap; |
| 1780 | |
| 1781 | return 0; |
| 1782 | err_unmap: |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1783 | dma_unmap_single(sc->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1784 | return ret; |
| 1785 | } |
| 1786 | |
| 1787 | /* |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1788 | * Updates the beacon that is sent by ath5k_beacon_send. For adhoc, |
| 1789 | * this is called only once at config_bss time, for AP we do it every |
| 1790 | * SWBA interrupt so that the TIM will reflect buffered frames. |
| 1791 | * |
| 1792 | * Called with the beacon lock. |
| 1793 | */ |
| 1794 | static int |
| 1795 | ath5k_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
| 1796 | { |
| 1797 | int ret; |
| 1798 | struct ath5k_softc *sc = hw->priv; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1799 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1800 | struct sk_buff *skb; |
| 1801 | |
| 1802 | if (WARN_ON(!vif)) { |
| 1803 | ret = -EINVAL; |
| 1804 | goto out; |
| 1805 | } |
| 1806 | |
| 1807 | skb = ieee80211_beacon_get(hw, vif); |
| 1808 | |
| 1809 | if (!skb) { |
| 1810 | ret = -ENOMEM; |
| 1811 | goto out; |
| 1812 | } |
| 1813 | |
| 1814 | ath5k_debug_dump_skb(sc, skb, "BC ", 1); |
| 1815 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1816 | ath5k_txbuf_free_skb(sc, avf->bbuf); |
| 1817 | avf->bbuf->skb = skb; |
| 1818 | ret = ath5k_beacon_setup(sc, avf->bbuf); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1819 | if (ret) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1820 | avf->bbuf->skb = NULL; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1821 | out: |
| 1822 | return ret; |
| 1823 | } |
| 1824 | |
| 1825 | /* |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1826 | * Transmit a beacon frame at SWBA. Dynamic updates to the |
| 1827 | * frame contents are done as needed and the slot time is |
| 1828 | * also adjusted based on current state. |
| 1829 | * |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 1830 | * This is called from software irq context (beacontq tasklets) |
| 1831 | * or user context from ath5k_beacon_config. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1832 | */ |
| 1833 | static void |
| 1834 | ath5k_beacon_send(struct ath5k_softc *sc) |
| 1835 | { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1836 | struct ath5k_hw *ah = sc->ah; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1837 | struct ieee80211_vif *vif; |
| 1838 | struct ath5k_vif *avf; |
| 1839 | struct ath5k_buf *bf; |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 1840 | struct sk_buff *skb; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1841 | |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1842 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "in beacon_send\n"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1843 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1844 | /* |
| 1845 | * Check if the previous beacon has gone out. If |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1846 | * not, don't don't try to post another: skip this |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1847 | * period and wait for the next. Missed beacons |
| 1848 | * indicate a problem and should not occur. If we |
| 1849 | * miss too many consecutive beacons reset the device. |
| 1850 | */ |
| 1851 | if (unlikely(ath5k_hw_num_tx_pending(ah, sc->bhalq) != 0)) { |
| 1852 | sc->bmisscount++; |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1853 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1854 | "missed %u consecutive beacons\n", sc->bmisscount); |
Nick Kossifidis | 428cbd4 | 2009-04-30 15:55:47 -0400 | [diff] [blame] | 1855 | if (sc->bmisscount > 10) { /* NB: 10 is a guess */ |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1856 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1857 | "stuck beacon time (%u missed)\n", |
| 1858 | sc->bmisscount); |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 1859 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 1860 | "stuck beacon, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 1861 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1862 | } |
| 1863 | return; |
| 1864 | } |
| 1865 | if (unlikely(sc->bmisscount != 0)) { |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1866 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1867 | "resume beacon xmit after %u misses\n", |
| 1868 | sc->bmisscount); |
| 1869 | sc->bmisscount = 0; |
| 1870 | } |
| 1871 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1872 | if (sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) { |
| 1873 | u64 tsf = ath5k_hw_get_tsf64(ah); |
| 1874 | u32 tsftu = TSF_TO_TU(tsf); |
| 1875 | int slot = ((tsftu % sc->bintval) * ATH_BCBUF) / sc->bintval; |
| 1876 | vif = sc->bslot[(slot + 1) % ATH_BCBUF]; |
| 1877 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
| 1878 | "tsf %llx tsftu %x intval %u slot %u vif %p\n", |
| 1879 | (unsigned long long)tsf, tsftu, sc->bintval, slot, vif); |
| 1880 | } else /* only one interface */ |
| 1881 | vif = sc->bslot[0]; |
| 1882 | |
| 1883 | if (!vif) |
| 1884 | return; |
| 1885 | |
| 1886 | avf = (void *)vif->drv_priv; |
| 1887 | bf = avf->bbuf; |
| 1888 | if (unlikely(bf->skb == NULL || sc->opmode == NL80211_IFTYPE_STATION || |
| 1889 | sc->opmode == NL80211_IFTYPE_MONITOR)) { |
| 1890 | ATH5K_WARN(sc, "bf=%p bf_skb=%p\n", bf, bf ? bf->skb : NULL); |
| 1891 | return; |
| 1892 | } |
| 1893 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1894 | /* |
| 1895 | * Stop any current dma and put the new frame on the queue. |
| 1896 | * This should never fail since we check above that no frames |
| 1897 | * are still pending on the queue. |
| 1898 | */ |
Nick Kossifidis | 14fae2d | 2010-11-23 20:55:17 +0200 | [diff] [blame] | 1899 | if (unlikely(ath5k_hw_stop_beacon_queue(ah, sc->bhalq))) { |
Nick Kossifidis | 428cbd4 | 2009-04-30 15:55:47 -0400 | [diff] [blame] | 1900 | ATH5K_WARN(sc, "beacon queue %u didn't start/stop ?\n", sc->bhalq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1901 | /* NB: hw still stops DMA, so proceed */ |
| 1902 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1903 | |
Bob Copeland | 1071db8 | 2009-05-18 10:59:52 -0400 | [diff] [blame] | 1904 | /* refresh the beacon for AP mode */ |
| 1905 | if (sc->opmode == NL80211_IFTYPE_AP) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1906 | ath5k_beacon_update(sc->hw, vif); |
Bob Copeland | 1071db8 | 2009-05-18 10:59:52 -0400 | [diff] [blame] | 1907 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1908 | ath5k_hw_set_txdp(ah, sc->bhalq, bf->daddr); |
| 1909 | ath5k_hw_start_tx_dma(ah, sc->bhalq); |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1910 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "TXDP[%u] = %llx (%p)\n", |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1911 | sc->bhalq, (unsigned long long)bf->daddr, bf->desc); |
| 1912 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1913 | skb = ieee80211_get_buffered_bc(sc->hw, vif); |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 1914 | while (skb) { |
| 1915 | ath5k_tx_queue(sc->hw, skb, sc->cabq); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1916 | skb = ieee80211_get_buffered_bc(sc->hw, vif); |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 1917 | } |
| 1918 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1919 | sc->bsent++; |
| 1920 | } |
| 1921 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1922 | /** |
| 1923 | * ath5k_beacon_update_timers - update beacon timers |
| 1924 | * |
| 1925 | * @sc: struct ath5k_softc pointer we are operating on |
| 1926 | * @bc_tsf: the timestamp of the beacon. 0 to reset the TSF. -1 to perform a |
| 1927 | * beacon timer update based on the current HW TSF. |
| 1928 | * |
| 1929 | * Calculate the next target beacon transmit time (TBTT) based on the timestamp |
| 1930 | * of a received beacon or the current local hardware TSF and write it to the |
| 1931 | * beacon timer registers. |
| 1932 | * |
| 1933 | * This is called in a variety of situations, e.g. when a beacon is received, |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1934 | * when a TSF update has been detected, but also when an new IBSS is created or |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1935 | * when we otherwise know we have to update the timers, but we keep it in this |
| 1936 | * function to have it all together in one place. |
| 1937 | */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1938 | static void |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1939 | ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1940 | { |
| 1941 | struct ath5k_hw *ah = sc->ah; |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1942 | u32 nexttbtt, intval, hw_tu, bc_tu; |
| 1943 | u64 hw_tsf; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1944 | |
| 1945 | intval = sc->bintval & AR5K_BEACON_PERIOD; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1946 | if (sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) { |
| 1947 | intval /= ATH_BCBUF; /* staggered multi-bss beacons */ |
| 1948 | if (intval < 15) |
| 1949 | ATH5K_WARN(sc, "intval %u is too low, min 15\n", |
| 1950 | intval); |
| 1951 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1952 | if (WARN_ON(!intval)) |
| 1953 | return; |
| 1954 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1955 | /* beacon TSF converted to TU */ |
| 1956 | bc_tu = TSF_TO_TU(bc_tsf); |
| 1957 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1958 | /* current TSF converted to TU */ |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1959 | hw_tsf = ath5k_hw_get_tsf64(ah); |
| 1960 | hw_tu = TSF_TO_TU(hw_tsf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1961 | |
Bruno Randolf | 11f21df | 2010-09-27 12:22:26 +0900 | [diff] [blame] | 1962 | #define FUDGE AR5K_TUNE_SW_BEACON_RESP + 3 |
| 1963 | /* We use FUDGE to make sure the next TBTT is ahead of the current TU. |
| 1964 | * Since we later substract AR5K_TUNE_SW_BEACON_RESP (10) in the timer |
| 1965 | * configuration we need to make sure it is bigger than that. */ |
| 1966 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1967 | if (bc_tsf == -1) { |
| 1968 | /* |
| 1969 | * no beacons received, called internally. |
| 1970 | * just need to refresh timers based on HW TSF. |
| 1971 | */ |
| 1972 | nexttbtt = roundup(hw_tu + FUDGE, intval); |
| 1973 | } else if (bc_tsf == 0) { |
| 1974 | /* |
| 1975 | * no beacon received, probably called by ath5k_reset_tsf(). |
| 1976 | * reset TSF to start with 0. |
| 1977 | */ |
| 1978 | nexttbtt = intval; |
| 1979 | intval |= AR5K_BEACON_RESET_TSF; |
| 1980 | } else if (bc_tsf > hw_tsf) { |
| 1981 | /* |
| 1982 | * beacon received, SW merge happend but HW TSF not yet updated. |
| 1983 | * not possible to reconfigure timers yet, but next time we |
| 1984 | * receive a beacon with the same BSSID, the hardware will |
| 1985 | * automatically update the TSF and then we need to reconfigure |
| 1986 | * the timers. |
| 1987 | */ |
| 1988 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 1989 | "need to wait for HW TSF sync\n"); |
| 1990 | return; |
| 1991 | } else { |
| 1992 | /* |
| 1993 | * most important case for beacon synchronization between STA. |
| 1994 | * |
| 1995 | * beacon received and HW TSF has been already updated by HW. |
| 1996 | * update next TBTT based on the TSF of the beacon, but make |
| 1997 | * sure it is ahead of our local TSF timer. |
| 1998 | */ |
| 1999 | nexttbtt = bc_tu + roundup(hw_tu + FUDGE - bc_tu, intval); |
| 2000 | } |
| 2001 | #undef FUDGE |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2002 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2003 | sc->nexttbtt = nexttbtt; |
| 2004 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2005 | intval |= AR5K_BEACON_ENA; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2006 | ath5k_hw_init_beacon(ah, nexttbtt, intval); |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 2007 | |
| 2008 | /* |
| 2009 | * debugging output last in order to preserve the time critical aspect |
| 2010 | * of this function |
| 2011 | */ |
| 2012 | if (bc_tsf == -1) |
| 2013 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2014 | "reconfigured timers based on HW TSF\n"); |
| 2015 | else if (bc_tsf == 0) |
| 2016 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2017 | "reset HW TSF and timers\n"); |
| 2018 | else |
| 2019 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2020 | "updated timers based on beacon TSF\n"); |
| 2021 | |
| 2022 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
David Miller | 04f93a8 | 2008-02-15 16:08:59 -0800 | [diff] [blame] | 2023 | "bc_tsf %llx hw_tsf %llx bc_tu %u hw_tu %u nexttbtt %u\n", |
| 2024 | (unsigned long long) bc_tsf, |
| 2025 | (unsigned long long) hw_tsf, bc_tu, hw_tu, nexttbtt); |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 2026 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "intval %u %s %s\n", |
| 2027 | intval & AR5K_BEACON_PERIOD, |
| 2028 | intval & AR5K_BEACON_ENA ? "AR5K_BEACON_ENA" : "", |
| 2029 | intval & AR5K_BEACON_RESET_TSF ? "AR5K_BEACON_RESET_TSF" : ""); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2030 | } |
| 2031 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2032 | /** |
| 2033 | * ath5k_beacon_config - Configure the beacon queues and interrupts |
| 2034 | * |
| 2035 | * @sc: struct ath5k_softc pointer we are operating on |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2036 | * |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2037 | * In IBSS mode we use a self-linked tx descriptor if possible. We enable SWBA |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 2038 | * interrupts to detect TSF updates only. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2039 | */ |
| 2040 | static void |
| 2041 | ath5k_beacon_config(struct ath5k_softc *sc) |
| 2042 | { |
| 2043 | struct ath5k_hw *ah = sc->ah; |
Bob Copeland | b5f0395 | 2009-02-15 12:06:10 -0500 | [diff] [blame] | 2044 | unsigned long flags; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2045 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2046 | spin_lock_irqsave(&sc->block, flags); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2047 | sc->bmisscount = 0; |
Jiri Slaby | dc1968e | 2008-07-23 13:17:34 +0200 | [diff] [blame] | 2048 | sc->imask &= ~(AR5K_INT_BMISS | AR5K_INT_SWBA); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2049 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2050 | if (sc->enable_beacon) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2051 | /* |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2052 | * In IBSS mode we use a self-linked tx descriptor and let the |
| 2053 | * hardware send the beacons automatically. We have to load it |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2054 | * only once here. |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2055 | * We use the SWBA interrupt only to keep track of the beacon |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 2056 | * timers in order to detect automatic TSF updates. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2057 | */ |
| 2058 | ath5k_beaconq_config(sc); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2059 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2060 | sc->imask |= AR5K_INT_SWBA; |
| 2061 | |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2062 | if (sc->opmode == NL80211_IFTYPE_ADHOC) { |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2063 | if (ath5k_hw_hasveol(ah)) |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2064 | ath5k_beacon_send(sc); |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2065 | } else |
| 2066 | ath5k_beacon_update_timers(sc, -1); |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2067 | } else { |
Nick Kossifidis | 14fae2d | 2010-11-23 20:55:17 +0200 | [diff] [blame] | 2068 | ath5k_hw_stop_beacon_queue(sc->ah, sc->bhalq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2069 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2070 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 2071 | ath5k_hw_set_imr(ah, sc->imask); |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2072 | mmiowb(); |
| 2073 | spin_unlock_irqrestore(&sc->block, flags); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2074 | } |
| 2075 | |
Nick Kossifidis | 428cbd4 | 2009-04-30 15:55:47 -0400 | [diff] [blame] | 2076 | static void ath5k_tasklet_beacon(unsigned long data) |
| 2077 | { |
| 2078 | struct ath5k_softc *sc = (struct ath5k_softc *) data; |
| 2079 | |
| 2080 | /* |
| 2081 | * Software beacon alert--time to send a beacon. |
| 2082 | * |
| 2083 | * In IBSS mode we use this interrupt just to |
| 2084 | * keep track of the next TBTT (target beacon |
| 2085 | * transmission time) in order to detect wether |
| 2086 | * automatic TSF updates happened. |
| 2087 | */ |
| 2088 | if (sc->opmode == NL80211_IFTYPE_ADHOC) { |
| 2089 | /* XXX: only if VEOL suppported */ |
| 2090 | u64 tsf = ath5k_hw_get_tsf64(sc->ah); |
| 2091 | sc->nexttbtt += sc->bintval; |
| 2092 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
| 2093 | "SWBA nexttbtt: %x hw_tu: %x " |
| 2094 | "TSF: %llx\n", |
| 2095 | sc->nexttbtt, |
| 2096 | TSF_TO_TU(tsf), |
| 2097 | (unsigned long long) tsf); |
| 2098 | } else { |
| 2099 | spin_lock(&sc->block); |
| 2100 | ath5k_beacon_send(sc); |
| 2101 | spin_unlock(&sc->block); |
| 2102 | } |
| 2103 | } |
| 2104 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2105 | |
| 2106 | /********************\ |
| 2107 | * Interrupt handling * |
| 2108 | \********************/ |
| 2109 | |
Bruno Randolf | 6a8a3f6 | 2010-03-25 14:49:19 +0900 | [diff] [blame] | 2110 | static void |
| 2111 | ath5k_intr_calibration_poll(struct ath5k_hw *ah) |
| 2112 | { |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2113 | if (time_is_before_eq_jiffies(ah->ah_cal_next_ani) && |
| 2114 | !(ah->ah_cal_mask & AR5K_CALIBRATION_FULL)) { |
| 2115 | /* run ANI only when full calibration is not active */ |
| 2116 | ah->ah_cal_next_ani = jiffies + |
| 2117 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_ANI); |
| 2118 | tasklet_schedule(&ah->ah_sc->ani_tasklet); |
| 2119 | |
| 2120 | } else if (time_is_before_eq_jiffies(ah->ah_cal_next_full)) { |
Bruno Randolf | 6a8a3f6 | 2010-03-25 14:49:19 +0900 | [diff] [blame] | 2121 | ah->ah_cal_next_full = jiffies + |
| 2122 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_FULL); |
| 2123 | tasklet_schedule(&ah->ah_sc->calib); |
| 2124 | } |
| 2125 | /* we could use SWI to generate enough interrupts to meet our |
| 2126 | * calibration interval requirements, if necessary: |
| 2127 | * AR5K_REG_ENABLE_BITS(ah, AR5K_CR, AR5K_CR_SWI); */ |
| 2128 | } |
| 2129 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2130 | irqreturn_t |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2131 | ath5k_intr(int irq, void *dev_id) |
| 2132 | { |
| 2133 | struct ath5k_softc *sc = dev_id; |
| 2134 | struct ath5k_hw *ah = sc->ah; |
| 2135 | enum ath5k_int status; |
| 2136 | unsigned int counter = 1000; |
| 2137 | |
| 2138 | if (unlikely(test_bit(ATH_STAT_INVALID, sc->status) || |
| 2139 | !ath5k_hw_is_intr_pending(ah))) |
| 2140 | return IRQ_NONE; |
| 2141 | |
| 2142 | do { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2143 | ath5k_hw_get_isr(ah, &status); /* NB: clears IRQ too */ |
| 2144 | ATH5K_DBG(sc, ATH5K_DEBUG_INTR, "status 0x%x/0x%x\n", |
| 2145 | status, sc->imask); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2146 | if (unlikely(status & AR5K_INT_FATAL)) { |
| 2147 | /* |
| 2148 | * Fatal errors are unrecoverable. |
| 2149 | * Typically these are caused by DMA errors. |
| 2150 | */ |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 2151 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2152 | "fatal int, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2153 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2154 | } else if (unlikely(status & AR5K_INT_RXORN)) { |
Bruno Randolf | 87d77c4 | 2010-04-12 16:38:52 +0900 | [diff] [blame] | 2155 | /* |
| 2156 | * Receive buffers are full. Either the bus is busy or |
| 2157 | * the CPU is not fast enough to process all received |
| 2158 | * frames. |
| 2159 | * Older chipsets need a reset to come out of this |
| 2160 | * condition, but we treat it as RX for newer chips. |
| 2161 | * We don't know exactly which versions need a reset - |
| 2162 | * this guess is copied from the HAL. |
| 2163 | */ |
| 2164 | sc->stats.rxorn_intr++; |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 2165 | if (ah->ah_mac_srev < AR5K_SREV_AR5212) { |
| 2166 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2167 | "rx overrun, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2168 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 2169 | } |
Bruno Randolf | 87d77c4 | 2010-04-12 16:38:52 +0900 | [diff] [blame] | 2170 | else |
| 2171 | tasklet_schedule(&sc->rxtq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2172 | } else { |
| 2173 | if (status & AR5K_INT_SWBA) { |
Bob Copeland | 56d2ac7 | 2009-04-15 07:57:33 -0400 | [diff] [blame] | 2174 | tasklet_hi_schedule(&sc->beacontq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2175 | } |
| 2176 | if (status & AR5K_INT_RXEOL) { |
| 2177 | /* |
| 2178 | * NB: the hardware should re-read the link when |
| 2179 | * RXE bit is written, but it doesn't work at |
| 2180 | * least on older hardware revs. |
| 2181 | */ |
Bruno Randolf | b3f194e | 2010-07-14 10:53:29 +0900 | [diff] [blame] | 2182 | sc->stats.rxeol_intr++; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2183 | } |
| 2184 | if (status & AR5K_INT_TXURN) { |
| 2185 | /* bump tx trigger level */ |
| 2186 | ath5k_hw_update_tx_triglevel(ah, true); |
| 2187 | } |
Nick Kossifidis | 4c674c6 | 2008-10-26 20:40:25 +0200 | [diff] [blame] | 2188 | if (status & (AR5K_INT_RXOK | AR5K_INT_RXERR)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2189 | tasklet_schedule(&sc->rxtq); |
Nick Kossifidis | 4c674c6 | 2008-10-26 20:40:25 +0200 | [diff] [blame] | 2190 | if (status & (AR5K_INT_TXOK | AR5K_INT_TXDESC |
| 2191 | | AR5K_INT_TXERR | AR5K_INT_TXEOL)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2192 | tasklet_schedule(&sc->txtq); |
| 2193 | if (status & AR5K_INT_BMISS) { |
Nick Kossifidis | 1e3e6e8 | 2009-02-09 06:15:42 +0200 | [diff] [blame] | 2194 | /* TODO */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2195 | } |
| 2196 | if (status & AR5K_INT_MIB) { |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2197 | sc->stats.mib_intr++; |
Bruno Randolf | 495391d | 2010-03-25 14:49:36 +0900 | [diff] [blame] | 2198 | ath5k_hw_update_mib_counters(ah); |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2199 | ath5k_ani_mib_intr(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2200 | } |
Tobias Doerffel | e6a3b61 | 2009-06-09 17:33:27 +0200 | [diff] [blame] | 2201 | if (status & AR5K_INT_GPIO) |
Tobias Doerffel | e6a3b61 | 2009-06-09 17:33:27 +0200 | [diff] [blame] | 2202 | tasklet_schedule(&sc->rf_kill.toggleq); |
Bob Copeland | a6ae071 | 2009-06-09 23:43:11 -0400 | [diff] [blame] | 2203 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2204 | } |
Bob Copeland | 2516baa | 2009-04-27 22:18:10 -0400 | [diff] [blame] | 2205 | } while (ath5k_hw_is_intr_pending(ah) && --counter > 0); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2206 | |
| 2207 | if (unlikely(!counter)) |
| 2208 | ATH5K_WARN(sc, "too many interrupts, giving up for now\n"); |
| 2209 | |
Bruno Randolf | 6a8a3f6 | 2010-03-25 14:49:19 +0900 | [diff] [blame] | 2210 | ath5k_intr_calibration_poll(ah); |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2211 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2212 | return IRQ_HANDLED; |
| 2213 | } |
| 2214 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2215 | /* |
| 2216 | * Periodically recalibrate the PHY to account |
| 2217 | * for temperature/environment changes. |
| 2218 | */ |
| 2219 | static void |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2220 | ath5k_tasklet_calibrate(unsigned long data) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2221 | { |
| 2222 | struct ath5k_softc *sc = (void *)data; |
| 2223 | struct ath5k_hw *ah = sc->ah; |
| 2224 | |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2225 | /* Only full calibration for now */ |
Bruno Randolf | e65e1d7 | 2010-03-25 14:49:09 +0900 | [diff] [blame] | 2226 | ah->ah_cal_mask |= AR5K_CALIBRATION_FULL; |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2227 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2228 | ATH5K_DBG(sc, ATH5K_DEBUG_CALIBRATE, "channel %u/%x\n", |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 2229 | ieee80211_frequency_to_channel(sc->curchan->center_freq), |
| 2230 | sc->curchan->hw_value); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2231 | |
Nick Kossifidis | 6f3b414 | 2009-02-09 06:03:41 +0200 | [diff] [blame] | 2232 | if (ath5k_hw_gainf_calibrate(ah) == AR5K_RFGAIN_NEED_CHANGE) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2233 | /* |
| 2234 | * Rfgain is out of bounds, reset the chip |
| 2235 | * to load new gain values. |
| 2236 | */ |
| 2237 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "calibration, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2238 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2239 | } |
| 2240 | if (ath5k_hw_phy_calibrate(ah, sc->curchan)) |
| 2241 | ATH5K_ERR(sc, "calibration of channel %u failed\n", |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 2242 | ieee80211_frequency_to_channel( |
| 2243 | sc->curchan->center_freq)); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2244 | |
Bruno Randolf | 0e8e02d | 2010-05-19 10:31:05 +0900 | [diff] [blame] | 2245 | /* Noise floor calibration interrupts rx/tx path while I/Q calibration |
Bruno Randolf | 651d937 | 2010-09-17 11:36:46 +0900 | [diff] [blame] | 2246 | * doesn't. |
| 2247 | * TODO: We should stop TX here, so that it doesn't interfere. |
| 2248 | * Note that stopping the queues is not enough to stop TX! */ |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2249 | if (time_is_before_eq_jiffies(ah->ah_cal_next_nf)) { |
| 2250 | ah->ah_cal_next_nf = jiffies + |
| 2251 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_NF); |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2252 | ath5k_hw_update_noise_floor(ah); |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2253 | } |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2254 | |
Bruno Randolf | e65e1d7 | 2010-03-25 14:49:09 +0900 | [diff] [blame] | 2255 | ah->ah_cal_mask &= ~AR5K_CALIBRATION_FULL; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2256 | } |
| 2257 | |
| 2258 | |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2259 | static void |
| 2260 | ath5k_tasklet_ani(unsigned long data) |
| 2261 | { |
| 2262 | struct ath5k_softc *sc = (void *)data; |
| 2263 | struct ath5k_hw *ah = sc->ah; |
| 2264 | |
| 2265 | ah->ah_cal_mask |= AR5K_CALIBRATION_ANI; |
| 2266 | ath5k_ani_calibration(ah); |
| 2267 | ah->ah_cal_mask &= ~AR5K_CALIBRATION_ANI; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2268 | } |
| 2269 | |
| 2270 | |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2271 | static void |
| 2272 | ath5k_tx_complete_poll_work(struct work_struct *work) |
| 2273 | { |
| 2274 | struct ath5k_softc *sc = container_of(work, struct ath5k_softc, |
| 2275 | tx_complete_work.work); |
| 2276 | struct ath5k_txq *txq; |
| 2277 | int i; |
| 2278 | bool needreset = false; |
| 2279 | |
| 2280 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) { |
| 2281 | if (sc->txqs[i].setup) { |
| 2282 | txq = &sc->txqs[i]; |
| 2283 | spin_lock_bh(&txq->lock); |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 2284 | if (txq->txq_len > 1) { |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2285 | if (txq->txq_poll_mark) { |
| 2286 | ATH5K_DBG(sc, ATH5K_DEBUG_XMIT, |
| 2287 | "TX queue stuck %d\n", |
| 2288 | txq->qnum); |
| 2289 | needreset = true; |
Bruno Randolf | 923e5b3 | 2010-09-17 11:37:02 +0900 | [diff] [blame] | 2290 | txq->txq_stuck++; |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2291 | spin_unlock_bh(&txq->lock); |
| 2292 | break; |
| 2293 | } else { |
| 2294 | txq->txq_poll_mark = true; |
| 2295 | } |
| 2296 | } |
| 2297 | spin_unlock_bh(&txq->lock); |
| 2298 | } |
| 2299 | } |
| 2300 | |
| 2301 | if (needreset) { |
| 2302 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2303 | "TX queues stuck, resetting\n"); |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2304 | ath5k_reset(sc, NULL, true); |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2305 | } |
| 2306 | |
| 2307 | ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, |
| 2308 | msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT)); |
| 2309 | } |
| 2310 | |
| 2311 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2312 | /*************************\ |
| 2313 | * Initialization routines * |
| 2314 | \*************************/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2315 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2316 | int |
| 2317 | ath5k_init_softc(struct ath5k_softc *sc, const struct ath_bus_ops *bus_ops) |
| 2318 | { |
| 2319 | struct ieee80211_hw *hw = sc->hw; |
| 2320 | struct ath_common *common; |
| 2321 | int ret; |
| 2322 | int csz; |
| 2323 | |
| 2324 | /* Initialize driver private data */ |
| 2325 | SET_IEEE80211_DEV(hw, sc->dev); |
| 2326 | hw->flags = IEEE80211_HW_RX_INCLUDES_FCS | |
| 2327 | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | |
| 2328 | IEEE80211_HW_SIGNAL_DBM; |
| 2329 | |
| 2330 | hw->wiphy->interface_modes = |
| 2331 | BIT(NL80211_IFTYPE_AP) | |
| 2332 | BIT(NL80211_IFTYPE_STATION) | |
| 2333 | BIT(NL80211_IFTYPE_ADHOC) | |
| 2334 | BIT(NL80211_IFTYPE_MESH_POINT); |
| 2335 | |
| 2336 | hw->extra_tx_headroom = 2; |
| 2337 | hw->channel_change_time = 5000; |
| 2338 | |
| 2339 | /* |
| 2340 | * Mark the device as detached to avoid processing |
| 2341 | * interrupts until setup is complete. |
| 2342 | */ |
| 2343 | __set_bit(ATH_STAT_INVALID, sc->status); |
| 2344 | |
| 2345 | sc->opmode = NL80211_IFTYPE_STATION; |
| 2346 | sc->bintval = 1000; |
| 2347 | mutex_init(&sc->lock); |
| 2348 | spin_lock_init(&sc->rxbuflock); |
| 2349 | spin_lock_init(&sc->txbuflock); |
| 2350 | spin_lock_init(&sc->block); |
| 2351 | |
| 2352 | |
| 2353 | /* Setup interrupt handler */ |
| 2354 | ret = request_irq(sc->irq, ath5k_intr, IRQF_SHARED, "ath", sc); |
| 2355 | if (ret) { |
| 2356 | ATH5K_ERR(sc, "request_irq failed\n"); |
| 2357 | goto err; |
| 2358 | } |
| 2359 | |
| 2360 | /* If we passed the test, malloc an ath5k_hw struct */ |
| 2361 | sc->ah = kzalloc(sizeof(struct ath5k_hw), GFP_KERNEL); |
| 2362 | if (!sc->ah) { |
| 2363 | ret = -ENOMEM; |
| 2364 | ATH5K_ERR(sc, "out of memory\n"); |
| 2365 | goto err_irq; |
| 2366 | } |
| 2367 | |
| 2368 | sc->ah->ah_sc = sc; |
| 2369 | sc->ah->ah_iobase = sc->iobase; |
| 2370 | common = ath5k_hw_common(sc->ah); |
| 2371 | common->ops = &ath5k_common_ops; |
| 2372 | common->bus_ops = bus_ops; |
| 2373 | common->ah = sc->ah; |
| 2374 | common->hw = hw; |
| 2375 | common->priv = sc; |
| 2376 | |
| 2377 | /* |
| 2378 | * Cache line size is used to size and align various |
| 2379 | * structures used to communicate with the hardware. |
| 2380 | */ |
| 2381 | ath5k_read_cachesize(common, &csz); |
| 2382 | common->cachelsz = csz << 2; /* convert to bytes */ |
| 2383 | |
| 2384 | spin_lock_init(&common->cc_lock); |
| 2385 | |
| 2386 | /* Initialize device */ |
| 2387 | ret = ath5k_hw_init(sc); |
| 2388 | if (ret) |
| 2389 | goto err_free_ah; |
| 2390 | |
| 2391 | /* set up multi-rate retry capabilities */ |
| 2392 | if (sc->ah->ah_version == AR5K_AR5212) { |
| 2393 | hw->max_rates = 4; |
| 2394 | hw->max_rate_tries = 11; |
| 2395 | } |
| 2396 | |
| 2397 | hw->vif_data_size = sizeof(struct ath5k_vif); |
| 2398 | |
| 2399 | /* Finish private driver data initialization */ |
| 2400 | ret = ath5k_init(hw); |
| 2401 | if (ret) |
| 2402 | goto err_ah; |
| 2403 | |
| 2404 | ATH5K_INFO(sc, "Atheros AR%s chip found (MAC: 0x%x, PHY: 0x%x)\n", |
| 2405 | ath5k_chip_name(AR5K_VERSION_MAC, sc->ah->ah_mac_srev), |
| 2406 | sc->ah->ah_mac_srev, |
| 2407 | sc->ah->ah_phy_revision); |
| 2408 | |
| 2409 | if (!sc->ah->ah_single_chip) { |
| 2410 | /* Single chip radio (!RF5111) */ |
| 2411 | if (sc->ah->ah_radio_5ghz_revision && |
| 2412 | !sc->ah->ah_radio_2ghz_revision) { |
| 2413 | /* No 5GHz support -> report 2GHz radio */ |
| 2414 | if (!test_bit(AR5K_MODE_11A, |
| 2415 | sc->ah->ah_capabilities.cap_mode)) { |
| 2416 | ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n", |
| 2417 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2418 | sc->ah->ah_radio_5ghz_revision), |
| 2419 | sc->ah->ah_radio_5ghz_revision); |
| 2420 | /* No 2GHz support (5110 and some |
| 2421 | * 5Ghz only cards) -> report 5Ghz radio */ |
| 2422 | } else if (!test_bit(AR5K_MODE_11B, |
| 2423 | sc->ah->ah_capabilities.cap_mode)) { |
| 2424 | ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n", |
| 2425 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2426 | sc->ah->ah_radio_5ghz_revision), |
| 2427 | sc->ah->ah_radio_5ghz_revision); |
| 2428 | /* Multiband radio */ |
| 2429 | } else { |
| 2430 | ATH5K_INFO(sc, "RF%s multiband radio found" |
| 2431 | " (0x%x)\n", |
| 2432 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2433 | sc->ah->ah_radio_5ghz_revision), |
| 2434 | sc->ah->ah_radio_5ghz_revision); |
| 2435 | } |
| 2436 | } |
| 2437 | /* Multi chip radio (RF5111 - RF2111) -> |
| 2438 | * report both 2GHz/5GHz radios */ |
| 2439 | else if (sc->ah->ah_radio_5ghz_revision && |
| 2440 | sc->ah->ah_radio_2ghz_revision){ |
| 2441 | ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n", |
| 2442 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2443 | sc->ah->ah_radio_5ghz_revision), |
| 2444 | sc->ah->ah_radio_5ghz_revision); |
| 2445 | ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n", |
| 2446 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2447 | sc->ah->ah_radio_2ghz_revision), |
| 2448 | sc->ah->ah_radio_2ghz_revision); |
| 2449 | } |
| 2450 | } |
| 2451 | |
| 2452 | ath5k_debug_init_device(sc); |
| 2453 | |
| 2454 | /* ready to process interrupts */ |
| 2455 | __clear_bit(ATH_STAT_INVALID, sc->status); |
| 2456 | |
| 2457 | return 0; |
| 2458 | err_ah: |
| 2459 | ath5k_hw_deinit(sc->ah); |
| 2460 | err_free_ah: |
| 2461 | kfree(sc->ah); |
| 2462 | err_irq: |
| 2463 | free_irq(sc->irq, sc); |
| 2464 | err: |
| 2465 | return ret; |
| 2466 | } |
| 2467 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2468 | static int |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2469 | ath5k_stop_locked(struct ath5k_softc *sc) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2470 | { |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2471 | struct ath5k_hw *ah = sc->ah; |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 2472 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2473 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "invalid %u\n", |
| 2474 | test_bit(ATH_STAT_INVALID, sc->status)); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2475 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2476 | /* |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2477 | * Shutdown the hardware and driver: |
| 2478 | * stop output from above |
| 2479 | * disable interrupts |
| 2480 | * turn off timers |
| 2481 | * turn off the radio |
| 2482 | * clear transmit machinery |
| 2483 | * clear receive machinery |
| 2484 | * drain and release tx queues |
| 2485 | * reclaim beacon resources |
| 2486 | * power down hardware |
| 2487 | * |
| 2488 | * Note that some of this work is not possible if the |
| 2489 | * hardware is gone (invalid). |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2490 | */ |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2491 | ieee80211_stop_queues(sc->hw); |
| 2492 | |
| 2493 | if (!test_bit(ATH_STAT_INVALID, sc->status)) { |
| 2494 | ath5k_led_off(sc); |
| 2495 | ath5k_hw_set_imr(ah, 0); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2496 | synchronize_irq(sc->irq); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2497 | ath5k_rx_stop(sc); |
Nick Kossifidis | 80dac9ee | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 2498 | ath5k_hw_dma_stop(ah); |
| 2499 | ath5k_drain_tx_buffs(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2500 | ath5k_hw_phy_disable(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2501 | } |
| 2502 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2503 | return 0; |
| 2504 | } |
| 2505 | |
| 2506 | static int |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2507 | ath5k_init_hw(struct ath5k_softc *sc) |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2508 | { |
| 2509 | struct ath5k_hw *ah = sc->ah; |
| 2510 | struct ath_common *common = ath5k_hw_common(ah); |
| 2511 | int ret, i; |
| 2512 | |
| 2513 | mutex_lock(&sc->lock); |
| 2514 | |
| 2515 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "mode %d\n", sc->opmode); |
| 2516 | |
| 2517 | /* |
| 2518 | * Stop anything previously setup. This is safe |
| 2519 | * no matter this is the first time through or not. |
| 2520 | */ |
| 2521 | ath5k_stop_locked(sc); |
| 2522 | |
| 2523 | /* |
| 2524 | * The basic interface to setting the hardware in a good |
| 2525 | * state is ``reset''. On return the hardware is known to |
| 2526 | * be powered up and with interrupts disabled. This must |
| 2527 | * be followed by initialization of the appropriate bits |
| 2528 | * and then setup of the interrupt mask. |
| 2529 | */ |
| 2530 | sc->curchan = sc->hw->conf.channel; |
| 2531 | sc->curband = &sc->sbands[sc->curchan->band]; |
| 2532 | sc->imask = AR5K_INT_RXOK | AR5K_INT_RXERR | AR5K_INT_RXEOL | |
| 2533 | AR5K_INT_RXORN | AR5K_INT_TXDESC | AR5K_INT_TXEOL | |
| 2534 | AR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB; |
| 2535 | |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2536 | ret = ath5k_reset(sc, NULL, false); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2537 | if (ret) |
| 2538 | goto done; |
| 2539 | |
| 2540 | ath5k_rfkill_hw_start(ah); |
| 2541 | |
| 2542 | /* |
| 2543 | * Reset the key cache since some parts do not reset the |
| 2544 | * contents on initial power up or resume from suspend. |
| 2545 | */ |
| 2546 | for (i = 0; i < common->keymax; i++) |
| 2547 | ath_hw_keyreset(common, (u16) i); |
| 2548 | |
Nick Kossifidis | 61cde03 | 2010-11-23 21:12:23 +0200 | [diff] [blame] | 2549 | /* Use higher rates for acks instead of base |
| 2550 | * rate */ |
| 2551 | ah->ah_ack_bitrate_high = true; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2552 | |
| 2553 | for (i = 0; i < ARRAY_SIZE(sc->bslot); i++) |
| 2554 | sc->bslot[i] = NULL; |
| 2555 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2556 | ret = 0; |
| 2557 | done: |
| 2558 | mmiowb(); |
| 2559 | mutex_unlock(&sc->lock); |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2560 | |
| 2561 | ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, |
| 2562 | msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT)); |
| 2563 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2564 | return ret; |
| 2565 | } |
| 2566 | |
| 2567 | static void stop_tasklets(struct ath5k_softc *sc) |
| 2568 | { |
| 2569 | tasklet_kill(&sc->rxtq); |
| 2570 | tasklet_kill(&sc->txtq); |
| 2571 | tasklet_kill(&sc->calib); |
| 2572 | tasklet_kill(&sc->beacontq); |
| 2573 | tasklet_kill(&sc->ani_tasklet); |
| 2574 | } |
| 2575 | |
| 2576 | /* |
| 2577 | * Stop the device, grabbing the top-level lock to protect |
| 2578 | * against concurrent entry through ath5k_init (which can happen |
| 2579 | * if another thread does a system call and the thread doing the |
| 2580 | * stop is preempted). |
| 2581 | */ |
| 2582 | static int |
| 2583 | ath5k_stop_hw(struct ath5k_softc *sc) |
| 2584 | { |
| 2585 | int ret; |
| 2586 | |
| 2587 | mutex_lock(&sc->lock); |
| 2588 | ret = ath5k_stop_locked(sc); |
| 2589 | if (ret == 0 && !test_bit(ATH_STAT_INVALID, sc->status)) { |
| 2590 | /* |
| 2591 | * Don't set the card in full sleep mode! |
| 2592 | * |
| 2593 | * a) When the device is in this state it must be carefully |
| 2594 | * woken up or references to registers in the PCI clock |
| 2595 | * domain may freeze the bus (and system). This varies |
| 2596 | * by chip and is mostly an issue with newer parts |
| 2597 | * (madwifi sources mentioned srev >= 0x78) that go to |
| 2598 | * sleep more quickly. |
| 2599 | * |
| 2600 | * b) On older chips full sleep results a weird behaviour |
| 2601 | * during wakeup. I tested various cards with srev < 0x78 |
| 2602 | * and they don't wake up after module reload, a second |
| 2603 | * module reload is needed to bring the card up again. |
| 2604 | * |
| 2605 | * Until we figure out what's going on don't enable |
| 2606 | * full chip reset on any chip (this is what Legacy HAL |
| 2607 | * and Sam's HAL do anyway). Instead Perform a full reset |
| 2608 | * on the device (same as initial state after attach) and |
| 2609 | * leave it idle (keep MAC/BB on warm reset) */ |
| 2610 | ret = ath5k_hw_on_hold(sc->ah); |
| 2611 | |
| 2612 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2613 | "putting device to sleep\n"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2614 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2615 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2616 | mmiowb(); |
| 2617 | mutex_unlock(&sc->lock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2618 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2619 | stop_tasklets(sc); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2620 | |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2621 | cancel_delayed_work_sync(&sc->tx_complete_work); |
| 2622 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2623 | ath5k_rfkill_hw_stop(sc->ah); |
| 2624 | |
| 2625 | return ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2626 | } |
| 2627 | |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2628 | /* |
| 2629 | * Reset the hardware. If chan is not NULL, then also pause rx/tx |
| 2630 | * and change to the given channel. |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2631 | * |
| 2632 | * This should be called with sc->lock. |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2633 | */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2634 | static int |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2635 | ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan, |
| 2636 | bool skip_pcu) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2637 | { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2638 | struct ath5k_hw *ah = sc->ah; |
| 2639 | int ret; |
| 2640 | |
| 2641 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "resetting\n"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2642 | |
Bob Copeland | 450464d | 2010-07-13 11:32:41 -0400 | [diff] [blame] | 2643 | ath5k_hw_set_imr(ah, 0); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2644 | synchronize_irq(sc->irq); |
Bob Copeland | 450464d | 2010-07-13 11:32:41 -0400 | [diff] [blame] | 2645 | stop_tasklets(sc); |
| 2646 | |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2647 | if (chan) { |
Nick Kossifidis | 80dac9ee | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 2648 | ath5k_drain_tx_buffs(sc); |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2649 | |
| 2650 | sc->curchan = chan; |
| 2651 | sc->curband = &sc->sbands[chan->band]; |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2652 | } |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2653 | ret = ath5k_hw_reset(ah, sc->opmode, sc->curchan, chan != NULL, |
| 2654 | skip_pcu); |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2655 | if (ret) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2656 | ATH5K_ERR(sc, "can't reset hardware (%d)\n", ret); |
| 2657 | goto err; |
| 2658 | } |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2659 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2660 | ret = ath5k_rx_start(sc); |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2661 | if (ret) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2662 | ATH5K_ERR(sc, "can't start recv logic\n"); |
| 2663 | goto err; |
| 2664 | } |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2665 | |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2666 | ath5k_ani_init(ah, ah->ah_sc->ani_state.ani_mode); |
| 2667 | |
Bruno Randolf | ac55952 | 2010-05-19 10:30:55 +0900 | [diff] [blame] | 2668 | ah->ah_cal_next_full = jiffies; |
| 2669 | ah->ah_cal_next_ani = jiffies; |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2670 | ah->ah_cal_next_nf = jiffies; |
Bruno Randolf | eef39be | 2010-11-16 10:58:43 +0900 | [diff] [blame] | 2671 | ewma_init(&ah->ah_beacon_rssi_avg, 1000, 8); |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2672 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2673 | /* |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2674 | * Change channels and update the h/w rate map if we're switching; |
| 2675 | * e.g. 11a to 11b/g. |
| 2676 | * |
| 2677 | * We may be doing a reset in response to an ioctl that changes the |
| 2678 | * channel so update any state that might change as a result. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2679 | * |
| 2680 | * XXX needed? |
| 2681 | */ |
| 2682 | /* ath5k_chan_change(sc, c); */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2683 | |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2684 | ath5k_beacon_config(sc); |
| 2685 | /* intrs are enabled by ath5k_beacon_config */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2686 | |
Bruno Randolf | 397f385 | 2010-05-19 10:30:49 +0900 | [diff] [blame] | 2687 | ieee80211_wake_queues(sc->hw); |
| 2688 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2689 | return 0; |
| 2690 | err: |
| 2691 | return ret; |
| 2692 | } |
| 2693 | |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2694 | static void ath5k_reset_work(struct work_struct *work) |
| 2695 | { |
| 2696 | struct ath5k_softc *sc = container_of(work, struct ath5k_softc, |
| 2697 | reset_work); |
| 2698 | |
| 2699 | mutex_lock(&sc->lock); |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2700 | ath5k_reset(sc, NULL, true); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2701 | mutex_unlock(&sc->lock); |
| 2702 | } |
| 2703 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2704 | static int |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2705 | ath5k_init(struct ieee80211_hw *hw) |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2706 | { |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2707 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2708 | struct ath5k_softc *sc = hw->priv; |
| 2709 | struct ath5k_hw *ah = sc->ah; |
| 2710 | struct ath_regulatory *regulatory = ath5k_hw_regulatory(ah); |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2711 | struct ath5k_txq *txq; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2712 | u8 mac[ETH_ALEN] = {}; |
| 2713 | int ret; |
| 2714 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2715 | |
| 2716 | /* |
| 2717 | * Check if the MAC has multi-rate retry support. |
| 2718 | * We do this by trying to setup a fake extended |
| 2719 | * descriptor. MACs that don't have support will |
| 2720 | * return false w/o doing anything. MACs that do |
| 2721 | * support it will return true w/o doing anything. |
| 2722 | */ |
| 2723 | ret = ath5k_hw_setup_mrr_tx_desc(ah, NULL, 0, 0, 0, 0, 0, 0); |
| 2724 | |
| 2725 | if (ret < 0) |
| 2726 | goto err; |
| 2727 | if (ret > 0) |
| 2728 | __set_bit(ATH_STAT_MRRETRY, sc->status); |
| 2729 | |
| 2730 | /* |
| 2731 | * Collect the channel list. The 802.11 layer |
| 2732 | * is resposible for filtering this list based |
| 2733 | * on settings like the phy mode and regulatory |
| 2734 | * domain restrictions. |
| 2735 | */ |
| 2736 | ret = ath5k_setup_bands(hw); |
| 2737 | if (ret) { |
| 2738 | ATH5K_ERR(sc, "can't get channels\n"); |
| 2739 | goto err; |
| 2740 | } |
| 2741 | |
| 2742 | /* NB: setup here so ath5k_rate_update is happy */ |
| 2743 | if (test_bit(AR5K_MODE_11A, ah->ah_modes)) |
| 2744 | ath5k_setcurmode(sc, AR5K_MODE_11A); |
| 2745 | else |
| 2746 | ath5k_setcurmode(sc, AR5K_MODE_11B); |
| 2747 | |
| 2748 | /* |
| 2749 | * Allocate tx+rx descriptors and populate the lists. |
| 2750 | */ |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2751 | ret = ath5k_desc_alloc(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2752 | if (ret) { |
| 2753 | ATH5K_ERR(sc, "can't allocate descriptors\n"); |
| 2754 | goto err; |
| 2755 | } |
| 2756 | |
| 2757 | /* |
| 2758 | * Allocate hardware transmit queues: one queue for |
| 2759 | * beacon frames and one data queue for each QoS |
| 2760 | * priority. Note that hw functions handle resetting |
| 2761 | * these queues at the needed time. |
| 2762 | */ |
| 2763 | ret = ath5k_beaconq_setup(ah); |
| 2764 | if (ret < 0) { |
| 2765 | ATH5K_ERR(sc, "can't setup a beacon xmit queue\n"); |
| 2766 | goto err_desc; |
| 2767 | } |
| 2768 | sc->bhalq = ret; |
| 2769 | sc->cabq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_CAB, 0); |
| 2770 | if (IS_ERR(sc->cabq)) { |
| 2771 | ATH5K_ERR(sc, "can't setup cab queue\n"); |
| 2772 | ret = PTR_ERR(sc->cabq); |
| 2773 | goto err_bhal; |
| 2774 | } |
| 2775 | |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2776 | /* This order matches mac80211's queue priority, so we can |
| 2777 | * directly use the mac80211 queue number without any mapping */ |
| 2778 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VO); |
| 2779 | if (IS_ERR(txq)) { |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2780 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2781 | ret = PTR_ERR(txq); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2782 | goto err_queues; |
| 2783 | } |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2784 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VI); |
| 2785 | if (IS_ERR(txq)) { |
| 2786 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2787 | ret = PTR_ERR(txq); |
| 2788 | goto err_queues; |
| 2789 | } |
| 2790 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BE); |
| 2791 | if (IS_ERR(txq)) { |
| 2792 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2793 | ret = PTR_ERR(txq); |
| 2794 | goto err_queues; |
| 2795 | } |
| 2796 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BK); |
| 2797 | if (IS_ERR(txq)) { |
| 2798 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2799 | ret = PTR_ERR(txq); |
| 2800 | goto err_queues; |
| 2801 | } |
| 2802 | hw->queues = 4; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2803 | |
| 2804 | tasklet_init(&sc->rxtq, ath5k_tasklet_rx, (unsigned long)sc); |
| 2805 | tasklet_init(&sc->txtq, ath5k_tasklet_tx, (unsigned long)sc); |
| 2806 | tasklet_init(&sc->calib, ath5k_tasklet_calibrate, (unsigned long)sc); |
| 2807 | tasklet_init(&sc->beacontq, ath5k_tasklet_beacon, (unsigned long)sc); |
| 2808 | tasklet_init(&sc->ani_tasklet, ath5k_tasklet_ani, (unsigned long)sc); |
| 2809 | |
| 2810 | INIT_WORK(&sc->reset_work, ath5k_reset_work); |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2811 | INIT_DELAYED_WORK(&sc->tx_complete_work, ath5k_tx_complete_poll_work); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2812 | |
| 2813 | ret = ath5k_eeprom_read_mac(ah, mac); |
| 2814 | if (ret) { |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2815 | ATH5K_ERR(sc, "unable to read address from EEPROM\n"); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2816 | goto err_queues; |
| 2817 | } |
| 2818 | |
| 2819 | SET_IEEE80211_PERM_ADDR(hw, mac); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2820 | memcpy(&sc->lladdr, mac, ETH_ALEN); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2821 | /* All MAC address bits matter for ACKs */ |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 2822 | ath5k_update_bssid_mask_and_opmode(sc, NULL); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2823 | |
| 2824 | regulatory->current_rd = ah->ah_capabilities.cap_eeprom.ee_regdomain; |
| 2825 | ret = ath_regd_init(regulatory, hw->wiphy, ath5k_reg_notifier); |
| 2826 | if (ret) { |
| 2827 | ATH5K_ERR(sc, "can't initialize regulatory system\n"); |
| 2828 | goto err_queues; |
| 2829 | } |
| 2830 | |
| 2831 | ret = ieee80211_register_hw(hw); |
| 2832 | if (ret) { |
| 2833 | ATH5K_ERR(sc, "can't register ieee80211 hw\n"); |
| 2834 | goto err_queues; |
| 2835 | } |
| 2836 | |
| 2837 | if (!ath_is_world_regd(regulatory)) |
| 2838 | regulatory_hint(hw->wiphy, regulatory->alpha2); |
| 2839 | |
| 2840 | ath5k_init_leds(sc); |
| 2841 | |
| 2842 | ath5k_sysfs_register(sc); |
| 2843 | |
| 2844 | return 0; |
| 2845 | err_queues: |
| 2846 | ath5k_txq_release(sc); |
| 2847 | err_bhal: |
| 2848 | ath5k_hw_release_tx_queue(ah, sc->bhalq); |
| 2849 | err_desc: |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2850 | ath5k_desc_free(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2851 | err: |
| 2852 | return ret; |
| 2853 | } |
| 2854 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2855 | void |
| 2856 | ath5k_deinit_softc(struct ath5k_softc *sc) |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2857 | { |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2858 | struct ieee80211_hw *hw = sc->hw; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2859 | |
| 2860 | /* |
| 2861 | * NB: the order of these is important: |
| 2862 | * o call the 802.11 layer before detaching ath5k_hw to |
| 2863 | * ensure callbacks into the driver to delete global |
| 2864 | * key cache entries can be handled |
| 2865 | * o reclaim the tx queue data structures after calling |
| 2866 | * the 802.11 layer as we'll get called back to reclaim |
| 2867 | * node state and potentially want to use them |
| 2868 | * o to cleanup the tx queues the hal is called, so detach |
| 2869 | * it last |
| 2870 | * XXX: ??? detach ath5k_hw ??? |
| 2871 | * Other than that, it's straightforward... |
| 2872 | */ |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2873 | ath5k_debug_finish_device(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2874 | ieee80211_unregister_hw(hw); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2875 | ath5k_desc_free(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2876 | ath5k_txq_release(sc); |
| 2877 | ath5k_hw_release_tx_queue(sc->ah, sc->bhalq); |
| 2878 | ath5k_unregister_leds(sc); |
| 2879 | |
| 2880 | ath5k_sysfs_unregister(sc); |
| 2881 | /* |
| 2882 | * NB: can't reclaim these until after ieee80211_ifdetach |
| 2883 | * returns because we'll get called back to reclaim node |
| 2884 | * state and potentially want to use them. |
| 2885 | */ |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2886 | ath5k_hw_deinit(sc->ah); |
| 2887 | free_irq(sc->irq, sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2888 | } |
| 2889 | |
| 2890 | /********************\ |
| 2891 | * Mac80211 functions * |
| 2892 | \********************/ |
| 2893 | |
| 2894 | static int |
| 2895 | ath5k_tx(struct ieee80211_hw *hw, struct sk_buff *skb) |
| 2896 | { |
| 2897 | struct ath5k_softc *sc = hw->priv; |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2898 | u16 qnum = skb_get_queue_mapping(skb); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2899 | |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2900 | if (WARN_ON(qnum >= sc->ah->ah_capabilities.cap_queues.q_tx_num)) { |
| 2901 | dev_kfree_skb_any(skb); |
| 2902 | return 0; |
| 2903 | } |
| 2904 | |
| 2905 | return ath5k_tx_queue(hw, skb, &sc->txqs[qnum]); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2906 | } |
| 2907 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2908 | static int ath5k_start(struct ieee80211_hw *hw) |
| 2909 | { |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2910 | return ath5k_init_hw(hw->priv); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2911 | } |
| 2912 | |
| 2913 | static void ath5k_stop(struct ieee80211_hw *hw) |
| 2914 | { |
Bob Copeland | bb2beca | 2009-01-19 11:20:54 -0500 | [diff] [blame] | 2915 | ath5k_stop_hw(hw->priv); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2916 | } |
| 2917 | |
| 2918 | static int ath5k_add_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 2919 | struct ieee80211_vif *vif) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2920 | { |
| 2921 | struct ath5k_softc *sc = hw->priv; |
| 2922 | int ret; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2923 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2924 | |
| 2925 | mutex_lock(&sc->lock); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2926 | |
| 2927 | if ((vif->type == NL80211_IFTYPE_AP || |
| 2928 | vif->type == NL80211_IFTYPE_ADHOC) |
| 2929 | && (sc->num_ap_vifs + sc->num_adhoc_vifs) >= ATH_BCBUF) { |
| 2930 | ret = -ELNRNG; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2931 | goto end; |
| 2932 | } |
| 2933 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2934 | /* Don't allow other interfaces if one ad-hoc is configured. |
| 2935 | * TODO: Fix the problems with ad-hoc and multiple other interfaces. |
| 2936 | * We would need to operate the HW in ad-hoc mode to allow TSF updates |
| 2937 | * for the IBSS, but this breaks with additional AP or STA interfaces |
| 2938 | * at the moment. */ |
| 2939 | if (sc->num_adhoc_vifs || |
| 2940 | (sc->nvifs && vif->type == NL80211_IFTYPE_ADHOC)) { |
| 2941 | ATH5K_ERR(sc, "Only one single ad-hoc interface is allowed.\n"); |
| 2942 | ret = -ELNRNG; |
| 2943 | goto end; |
| 2944 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2945 | |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 2946 | switch (vif->type) { |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2947 | case NL80211_IFTYPE_AP: |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2948 | case NL80211_IFTYPE_STATION: |
| 2949 | case NL80211_IFTYPE_ADHOC: |
Andrey Yurovsky | b706e65 | 2008-10-13 18:23:07 -0700 | [diff] [blame] | 2950 | case NL80211_IFTYPE_MESH_POINT: |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2951 | avf->opmode = vif->type; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2952 | break; |
| 2953 | default: |
| 2954 | ret = -EOPNOTSUPP; |
| 2955 | goto end; |
| 2956 | } |
Jiri Slaby | 67d2e2d | 2008-08-18 21:45:28 +0200 | [diff] [blame] | 2957 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2958 | sc->nvifs++; |
| 2959 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "add interface mode %d\n", avf->opmode); |
Bruno Randolf | ccfe555 | 2010-03-09 16:55:38 +0900 | [diff] [blame] | 2960 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2961 | /* Assign the vap/adhoc to a beacon xmit slot. */ |
| 2962 | if ((avf->opmode == NL80211_IFTYPE_AP) || |
| 2963 | (avf->opmode == NL80211_IFTYPE_ADHOC)) { |
| 2964 | int slot; |
| 2965 | |
| 2966 | WARN_ON(list_empty(&sc->bcbuf)); |
| 2967 | avf->bbuf = list_first_entry(&sc->bcbuf, struct ath5k_buf, |
| 2968 | list); |
| 2969 | list_del(&avf->bbuf->list); |
| 2970 | |
| 2971 | avf->bslot = 0; |
| 2972 | for (slot = 0; slot < ATH_BCBUF; slot++) { |
| 2973 | if (!sc->bslot[slot]) { |
| 2974 | avf->bslot = slot; |
| 2975 | break; |
| 2976 | } |
| 2977 | } |
| 2978 | BUG_ON(sc->bslot[avf->bslot] != NULL); |
| 2979 | sc->bslot[avf->bslot] = vif; |
| 2980 | if (avf->opmode == NL80211_IFTYPE_AP) |
| 2981 | sc->num_ap_vifs++; |
| 2982 | else |
| 2983 | sc->num_adhoc_vifs++; |
| 2984 | } |
| 2985 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2986 | /* Any MAC address is fine, all others are included through the |
| 2987 | * filter. |
| 2988 | */ |
| 2989 | memcpy(&sc->lladdr, vif->addr, ETH_ALEN); |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 2990 | ath5k_hw_set_lladdr(sc->ah, vif->addr); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2991 | |
| 2992 | memcpy(&avf->lladdr, vif->addr, ETH_ALEN); |
| 2993 | |
| 2994 | ath5k_mode_setup(sc, vif); |
Jiri Slaby | 67d2e2d | 2008-08-18 21:45:28 +0200 | [diff] [blame] | 2995 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2996 | ret = 0; |
| 2997 | end: |
| 2998 | mutex_unlock(&sc->lock); |
| 2999 | return ret; |
| 3000 | } |
| 3001 | |
| 3002 | static void |
| 3003 | ath5k_remove_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 3004 | struct ieee80211_vif *vif) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3005 | { |
| 3006 | struct ath5k_softc *sc = hw->priv; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3007 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
| 3008 | unsigned int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3009 | |
| 3010 | mutex_lock(&sc->lock); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3011 | sc->nvifs--; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3012 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3013 | if (avf->bbuf) { |
| 3014 | ath5k_txbuf_free_skb(sc, avf->bbuf); |
| 3015 | list_add_tail(&avf->bbuf->list, &sc->bcbuf); |
| 3016 | for (i = 0; i < ATH_BCBUF; i++) { |
| 3017 | if (sc->bslot[i] == vif) { |
| 3018 | sc->bslot[i] = NULL; |
| 3019 | break; |
| 3020 | } |
| 3021 | } |
| 3022 | avf->bbuf = NULL; |
| 3023 | } |
| 3024 | if (avf->opmode == NL80211_IFTYPE_AP) |
| 3025 | sc->num_ap_vifs--; |
| 3026 | else if (avf->opmode == NL80211_IFTYPE_ADHOC) |
| 3027 | sc->num_adhoc_vifs--; |
| 3028 | |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 3029 | ath5k_update_bssid_mask_and_opmode(sc, NULL); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3030 | mutex_unlock(&sc->lock); |
| 3031 | } |
| 3032 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 3033 | /* |
| 3034 | * TODO: Phy disable/diversity etc |
| 3035 | */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3036 | static int |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 3037 | ath5k_config(struct ieee80211_hw *hw, u32 changed) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3038 | { |
| 3039 | struct ath5k_softc *sc = hw->priv; |
Nick Kossifidis | a082381 | 2009-04-30 15:55:44 -0400 | [diff] [blame] | 3040 | struct ath5k_hw *ah = sc->ah; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 3041 | struct ieee80211_conf *conf = &hw->conf; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 3042 | int ret = 0; |
Bob Copeland | be00937 | 2009-01-22 08:44:16 -0500 | [diff] [blame] | 3043 | |
| 3044 | mutex_lock(&sc->lock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3045 | |
Joerg Albert | e30eb4a | 2009-08-05 01:52:07 +0200 | [diff] [blame] | 3046 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { |
| 3047 | ret = ath5k_chan_set(sc, conf->channel); |
| 3048 | if (ret < 0) |
| 3049 | goto unlock; |
| 3050 | } |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 3051 | |
Nick Kossifidis | a082381 | 2009-04-30 15:55:44 -0400 | [diff] [blame] | 3052 | if ((changed & IEEE80211_CONF_CHANGE_POWER) && |
| 3053 | (sc->power_level != conf->power_level)) { |
| 3054 | sc->power_level = conf->power_level; |
| 3055 | |
| 3056 | /* Half dB steps */ |
| 3057 | ath5k_hw_set_txpower_limit(ah, (conf->power_level * 2)); |
| 3058 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3059 | |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 3060 | /* TODO: |
| 3061 | * 1) Move this on config_interface and handle each case |
| 3062 | * separately eg. when we have only one STA vif, use |
| 3063 | * AR5K_ANTMODE_SINGLE_AP |
| 3064 | * |
| 3065 | * 2) Allow the user to change antenna mode eg. when only |
| 3066 | * one antenna is present |
| 3067 | * |
| 3068 | * 3) Allow the user to set default/tx antenna when possible |
| 3069 | * |
| 3070 | * 4) Default mode should handle 90% of the cases, together |
| 3071 | * with fixed a/b and single AP modes we should be able to |
| 3072 | * handle 99%. Sectored modes are extreme cases and i still |
| 3073 | * haven't found a usage for them. If we decide to support them, |
| 3074 | * then we must allow the user to set how many tx antennas we |
| 3075 | * have available |
| 3076 | */ |
Bruno Randolf | caec911 | 2010-03-09 16:55:28 +0900 | [diff] [blame] | 3077 | ath5k_hw_set_antenna_mode(ah, ah->ah_ant_mode); |
Bob Copeland | be00937 | 2009-01-22 08:44:16 -0500 | [diff] [blame] | 3078 | |
John W. Linville | 55aa4e0 | 2009-05-25 21:28:47 +0200 | [diff] [blame] | 3079 | unlock: |
Bob Copeland | be00937 | 2009-01-22 08:44:16 -0500 | [diff] [blame] | 3080 | mutex_unlock(&sc->lock); |
John W. Linville | 55aa4e0 | 2009-05-25 21:28:47 +0200 | [diff] [blame] | 3081 | return ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3082 | } |
| 3083 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3084 | static u64 ath5k_prepare_multicast(struct ieee80211_hw *hw, |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3085 | struct netdev_hw_addr_list *mc_list) |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3086 | { |
| 3087 | u32 mfilt[2], val; |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3088 | u8 pos; |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3089 | struct netdev_hw_addr *ha; |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3090 | |
| 3091 | mfilt[0] = 0; |
| 3092 | mfilt[1] = 1; |
| 3093 | |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3094 | netdev_hw_addr_list_for_each(ha, mc_list) { |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3095 | /* calculate XOR of eight 6-bit values */ |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3096 | val = get_unaligned_le32(ha->addr + 0); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3097 | pos = (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val; |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3098 | val = get_unaligned_le32(ha->addr + 3); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3099 | pos ^= (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val; |
| 3100 | pos &= 0x3f; |
| 3101 | mfilt[pos / 32] |= (1 << (pos % 32)); |
| 3102 | /* XXX: we might be able to just do this instead, |
| 3103 | * but not sure, needs testing, if we do use this we'd |
| 3104 | * neet to inform below to not reset the mcast */ |
| 3105 | /* ath5k_hw_set_mcast_filterindex(ah, |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3106 | * ha->addr[5]); */ |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3107 | } |
| 3108 | |
| 3109 | return ((u64)(mfilt[1]) << 32) | mfilt[0]; |
| 3110 | } |
| 3111 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3112 | static bool ath_any_vif_assoc(struct ath5k_softc *sc) |
| 3113 | { |
| 3114 | struct ath_vif_iter_data iter_data; |
| 3115 | iter_data.hw_macaddr = NULL; |
| 3116 | iter_data.any_assoc = false; |
| 3117 | iter_data.need_set_hw_addr = false; |
| 3118 | iter_data.found_active = true; |
| 3119 | |
| 3120 | ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter, |
| 3121 | &iter_data); |
| 3122 | return iter_data.any_assoc; |
| 3123 | } |
| 3124 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3125 | #define SUPPORTED_FIF_FLAGS \ |
| 3126 | FIF_PROMISC_IN_BSS | FIF_ALLMULTI | FIF_FCSFAIL | \ |
| 3127 | FIF_PLCPFAIL | FIF_CONTROL | FIF_OTHER_BSS | \ |
| 3128 | FIF_BCN_PRBRESP_PROMISC |
| 3129 | /* |
| 3130 | * o always accept unicast, broadcast, and multicast traffic |
| 3131 | * o multicast traffic for all BSSIDs will be enabled if mac80211 |
| 3132 | * says it should be |
| 3133 | * o maintain current state of phy ofdm or phy cck error reception. |
| 3134 | * If the hardware detects any of these type of errors then |
| 3135 | * ath5k_hw_get_rx_filter() will pass to us the respective |
| 3136 | * hardware filters to be able to receive these type of frames. |
| 3137 | * o probe request frames are accepted only when operating in |
| 3138 | * hostap, adhoc, or monitor modes |
| 3139 | * o enable promiscuous mode according to the interface state |
| 3140 | * o accept beacons: |
| 3141 | * - when operating in adhoc mode so the 802.11 layer creates |
| 3142 | * node table entries for peers, |
| 3143 | * - when operating in station mode for collecting rssi data when |
| 3144 | * the station is otherwise quiet, or |
| 3145 | * - when scanning |
| 3146 | */ |
| 3147 | static void ath5k_configure_filter(struct ieee80211_hw *hw, |
| 3148 | unsigned int changed_flags, |
| 3149 | unsigned int *new_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3150 | u64 multicast) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3151 | { |
| 3152 | struct ath5k_softc *sc = hw->priv; |
| 3153 | struct ath5k_hw *ah = sc->ah; |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3154 | u32 mfilt[2], rfilt; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3155 | |
Bob Copeland | 56d1de0 | 2009-08-24 23:00:30 -0400 | [diff] [blame] | 3156 | mutex_lock(&sc->lock); |
| 3157 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3158 | mfilt[0] = multicast; |
| 3159 | mfilt[1] = multicast >> 32; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3160 | |
| 3161 | /* Only deal with supported flags */ |
| 3162 | changed_flags &= SUPPORTED_FIF_FLAGS; |
| 3163 | *new_flags &= SUPPORTED_FIF_FLAGS; |
| 3164 | |
| 3165 | /* If HW detects any phy or radar errors, leave those filters on. |
| 3166 | * Also, always enable Unicast, Broadcasts and Multicast |
| 3167 | * XXX: move unicast, bssid broadcasts and multicast to mac80211 */ |
| 3168 | rfilt = (ath5k_hw_get_rx_filter(ah) & (AR5K_RX_FILTER_PHYERR)) | |
| 3169 | (AR5K_RX_FILTER_UCAST | AR5K_RX_FILTER_BCAST | |
| 3170 | AR5K_RX_FILTER_MCAST); |
| 3171 | |
| 3172 | if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) { |
| 3173 | if (*new_flags & FIF_PROMISC_IN_BSS) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3174 | __set_bit(ATH_STAT_PROMISC, sc->status); |
John Daiker | 0bbac08 | 2008-10-17 12:16:00 -0700 | [diff] [blame] | 3175 | } else { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3176 | __clear_bit(ATH_STAT_PROMISC, sc->status); |
John Daiker | 0bbac08 | 2008-10-17 12:16:00 -0700 | [diff] [blame] | 3177 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3178 | } |
| 3179 | |
Bob Copeland | 6b5dccc | 2010-06-04 08:14:14 -0400 | [diff] [blame] | 3180 | if (test_bit(ATH_STAT_PROMISC, sc->status)) |
| 3181 | rfilt |= AR5K_RX_FILTER_PROM; |
| 3182 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3183 | /* Note, AR5K_RX_FILTER_MCAST is already enabled */ |
| 3184 | if (*new_flags & FIF_ALLMULTI) { |
| 3185 | mfilt[0] = ~0; |
| 3186 | mfilt[1] = ~0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3187 | } |
| 3188 | |
| 3189 | /* This is the best we can do */ |
| 3190 | if (*new_flags & (FIF_FCSFAIL | FIF_PLCPFAIL)) |
| 3191 | rfilt |= AR5K_RX_FILTER_PHYERR; |
| 3192 | |
| 3193 | /* FIF_BCN_PRBRESP_PROMISC really means to enable beacons |
Bob Copeland | 30bf416 | 2010-08-15 13:03:15 -0400 | [diff] [blame] | 3194 | * and probes for any BSSID */ |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3195 | if ((*new_flags & FIF_BCN_PRBRESP_PROMISC) || (sc->nvifs > 1)) |
Bob Copeland | 30bf416 | 2010-08-15 13:03:15 -0400 | [diff] [blame] | 3196 | rfilt |= AR5K_RX_FILTER_BEACON; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3197 | |
| 3198 | /* FIF_CONTROL doc says that if FIF_PROMISC_IN_BSS is not |
| 3199 | * set we should only pass on control frames for this |
| 3200 | * station. This needs testing. I believe right now this |
| 3201 | * enables *all* control frames, which is OK.. but |
| 3202 | * but we should see if we can improve on granularity */ |
| 3203 | if (*new_flags & FIF_CONTROL) |
| 3204 | rfilt |= AR5K_RX_FILTER_CONTROL; |
| 3205 | |
| 3206 | /* Additional settings per mode -- this is per ath5k */ |
| 3207 | |
| 3208 | /* XXX move these to mac80211, and add a beacon IFF flag to mac80211 */ |
| 3209 | |
Bob Copeland | 56d1de0 | 2009-08-24 23:00:30 -0400 | [diff] [blame] | 3210 | switch (sc->opmode) { |
| 3211 | case NL80211_IFTYPE_MESH_POINT: |
Bob Copeland | 56d1de0 | 2009-08-24 23:00:30 -0400 | [diff] [blame] | 3212 | rfilt |= AR5K_RX_FILTER_CONTROL | |
| 3213 | AR5K_RX_FILTER_BEACON | |
| 3214 | AR5K_RX_FILTER_PROBEREQ | |
| 3215 | AR5K_RX_FILTER_PROM; |
| 3216 | break; |
| 3217 | case NL80211_IFTYPE_AP: |
| 3218 | case NL80211_IFTYPE_ADHOC: |
| 3219 | rfilt |= AR5K_RX_FILTER_PROBEREQ | |
| 3220 | AR5K_RX_FILTER_BEACON; |
| 3221 | break; |
| 3222 | case NL80211_IFTYPE_STATION: |
| 3223 | if (sc->assoc) |
| 3224 | rfilt |= AR5K_RX_FILTER_BEACON; |
| 3225 | default: |
| 3226 | break; |
| 3227 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3228 | |
| 3229 | /* Set filters */ |
John Daiker | 0bbac08 | 2008-10-17 12:16:00 -0700 | [diff] [blame] | 3230 | ath5k_hw_set_rx_filter(ah, rfilt); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3231 | |
| 3232 | /* Set multicast bits */ |
| 3233 | ath5k_hw_set_mcast_filter(ah, mfilt[0], mfilt[1]); |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 3234 | /* Set the cached hw filter flags, this will later actually |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3235 | * be set in HW */ |
| 3236 | sc->filter_flags = rfilt; |
Bob Copeland | 56d1de0 | 2009-08-24 23:00:30 -0400 | [diff] [blame] | 3237 | |
| 3238 | mutex_unlock(&sc->lock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3239 | } |
| 3240 | |
| 3241 | static int |
| 3242 | ath5k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 3243 | struct ieee80211_vif *vif, struct ieee80211_sta *sta, |
| 3244 | struct ieee80211_key_conf *key) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3245 | { |
| 3246 | struct ath5k_softc *sc = hw->priv; |
Luis R. Rodriguez | dc1e001 | 2009-11-04 17:47:31 -0800 | [diff] [blame] | 3247 | struct ath5k_hw *ah = sc->ah; |
| 3248 | struct ath_common *common = ath5k_hw_common(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3249 | int ret = 0; |
| 3250 | |
Bob Copeland | 9ad9a26 | 2008-10-29 08:30:54 -0400 | [diff] [blame] | 3251 | if (modparam_nohwcrypt) |
| 3252 | return -EOPNOTSUPP; |
| 3253 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 3254 | switch (key->cipher) { |
| 3255 | case WLAN_CIPHER_SUITE_WEP40: |
| 3256 | case WLAN_CIPHER_SUITE_WEP104: |
| 3257 | case WLAN_CIPHER_SUITE_TKIP: |
Bob Copeland | 3f64b43 | 2008-10-29 23:19:14 -0400 | [diff] [blame] | 3258 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 3259 | case WLAN_CIPHER_SUITE_CCMP: |
Bruno Randolf | 781f313 | 2010-09-08 16:04:59 +0900 | [diff] [blame] | 3260 | if (common->crypt_caps & ATH_CRYPT_CAP_CIPHER_AESCCM) |
Bob Copeland | 1c81874 | 2009-08-24 23:00:33 -0400 | [diff] [blame] | 3261 | break; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3262 | return -EOPNOTSUPP; |
| 3263 | default: |
| 3264 | WARN_ON(1); |
| 3265 | return -EINVAL; |
| 3266 | } |
| 3267 | |
| 3268 | mutex_lock(&sc->lock); |
| 3269 | |
| 3270 | switch (cmd) { |
| 3271 | case SET_KEY: |
Bruno Randolf | e0f8c2a | 2010-09-08 16:04:43 +0900 | [diff] [blame] | 3272 | ret = ath_key_config(common, vif, sta, key); |
| 3273 | if (ret >= 0) { |
| 3274 | key->hw_key_idx = ret; |
| 3275 | /* push IV and Michael MIC generation to stack */ |
| 3276 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 3277 | if (key->cipher == WLAN_CIPHER_SUITE_TKIP) |
| 3278 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
| 3279 | if (key->cipher == WLAN_CIPHER_SUITE_CCMP) |
| 3280 | key->flags |= IEEE80211_KEY_FLAG_SW_MGMT; |
| 3281 | ret = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3282 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3283 | break; |
| 3284 | case DISABLE_KEY: |
Bruno Randolf | e0f8c2a | 2010-09-08 16:04:43 +0900 | [diff] [blame] | 3285 | ath_key_delete(common, key); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3286 | break; |
| 3287 | default: |
| 3288 | ret = -EINVAL; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3289 | } |
| 3290 | |
Jiri Slaby | 274c7c3 | 2008-07-15 17:44:20 +0200 | [diff] [blame] | 3291 | mmiowb(); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3292 | mutex_unlock(&sc->lock); |
| 3293 | return ret; |
| 3294 | } |
| 3295 | |
| 3296 | static int |
| 3297 | ath5k_get_stats(struct ieee80211_hw *hw, |
| 3298 | struct ieee80211_low_level_stats *stats) |
| 3299 | { |
| 3300 | struct ath5k_softc *sc = hw->priv; |
Nick Kossifidis | 194828a | 2008-04-16 18:49:02 +0300 | [diff] [blame] | 3301 | |
| 3302 | /* Force update */ |
Bruno Randolf | 495391d | 2010-03-25 14:49:36 +0900 | [diff] [blame] | 3303 | ath5k_hw_update_mib_counters(sc->ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3304 | |
Bruno Randolf | 495391d | 2010-03-25 14:49:36 +0900 | [diff] [blame] | 3305 | stats->dot11ACKFailureCount = sc->stats.ack_fail; |
| 3306 | stats->dot11RTSFailureCount = sc->stats.rts_fail; |
| 3307 | stats->dot11RTSSuccessCount = sc->stats.rts_ok; |
| 3308 | stats->dot11FCSErrorCount = sc->stats.fcs_error; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3309 | |
| 3310 | return 0; |
| 3311 | } |
| 3312 | |
Holger Schurig | 55ee82b | 2010-04-19 10:24:22 +0200 | [diff] [blame] | 3313 | static int ath5k_get_survey(struct ieee80211_hw *hw, int idx, |
| 3314 | struct survey_info *survey) |
| 3315 | { |
| 3316 | struct ath5k_softc *sc = hw->priv; |
| 3317 | struct ieee80211_conf *conf = &hw->conf; |
Bruno Randolf | edb40a2 | 2010-10-19 16:56:54 +0900 | [diff] [blame] | 3318 | struct ath_common *common = ath5k_hw_common(sc->ah); |
| 3319 | struct ath_cycle_counters *cc = &common->cc_survey; |
| 3320 | unsigned int div = common->clockrate * 1000; |
Holger Schurig | 55ee82b | 2010-04-19 10:24:22 +0200 | [diff] [blame] | 3321 | |
Bruno Randolf | edb40a2 | 2010-10-19 16:56:54 +0900 | [diff] [blame] | 3322 | if (idx != 0) |
Holger Schurig | 55ee82b | 2010-04-19 10:24:22 +0200 | [diff] [blame] | 3323 | return -ENOENT; |
| 3324 | |
| 3325 | survey->channel = conf->channel; |
| 3326 | survey->filled = SURVEY_INFO_NOISE_DBM; |
| 3327 | survey->noise = sc->ah->ah_noise_floor; |
| 3328 | |
Bruno Randolf | edb40a2 | 2010-10-19 16:56:54 +0900 | [diff] [blame] | 3329 | spin_lock_bh(&common->cc_lock); |
| 3330 | ath_hw_cycle_counters_update(common); |
| 3331 | if (cc->cycles > 0) { |
| 3332 | survey->filled |= SURVEY_INFO_CHANNEL_TIME | |
| 3333 | SURVEY_INFO_CHANNEL_TIME_BUSY | |
| 3334 | SURVEY_INFO_CHANNEL_TIME_RX | |
| 3335 | SURVEY_INFO_CHANNEL_TIME_TX; |
| 3336 | survey->channel_time += cc->cycles / div; |
| 3337 | survey->channel_time_busy += cc->rx_busy / div; |
| 3338 | survey->channel_time_rx += cc->rx_frame / div; |
| 3339 | survey->channel_time_tx += cc->tx_frame / div; |
| 3340 | } |
| 3341 | memset(cc, 0, sizeof(*cc)); |
| 3342 | spin_unlock_bh(&common->cc_lock); |
| 3343 | |
Holger Schurig | 55ee82b | 2010-04-19 10:24:22 +0200 | [diff] [blame] | 3344 | return 0; |
| 3345 | } |
| 3346 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3347 | static u64 |
| 3348 | ath5k_get_tsf(struct ieee80211_hw *hw) |
| 3349 | { |
| 3350 | struct ath5k_softc *sc = hw->priv; |
| 3351 | |
| 3352 | return ath5k_hw_get_tsf64(sc->ah); |
| 3353 | } |
| 3354 | |
| 3355 | static void |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 3356 | ath5k_set_tsf(struct ieee80211_hw *hw, u64 tsf) |
| 3357 | { |
| 3358 | struct ath5k_softc *sc = hw->priv; |
| 3359 | |
| 3360 | ath5k_hw_set_tsf64(sc->ah, tsf); |
| 3361 | } |
| 3362 | |
| 3363 | static void |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3364 | ath5k_reset_tsf(struct ieee80211_hw *hw) |
| 3365 | { |
| 3366 | struct ath5k_softc *sc = hw->priv; |
| 3367 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 3368 | /* |
| 3369 | * in IBSS mode we need to update the beacon timers too. |
| 3370 | * this will also reset the TSF if we call it with 0 |
| 3371 | */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 3372 | if (sc->opmode == NL80211_IFTYPE_ADHOC) |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 3373 | ath5k_beacon_update_timers(sc, 0); |
| 3374 | else |
| 3375 | ath5k_hw_reset_tsf(sc->ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3376 | } |
| 3377 | |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3378 | static void |
| 3379 | set_beacon_filter(struct ieee80211_hw *hw, bool enable) |
| 3380 | { |
| 3381 | struct ath5k_softc *sc = hw->priv; |
| 3382 | struct ath5k_hw *ah = sc->ah; |
| 3383 | u32 rfilt; |
| 3384 | rfilt = ath5k_hw_get_rx_filter(ah); |
| 3385 | if (enable) |
| 3386 | rfilt |= AR5K_RX_FILTER_BEACON; |
| 3387 | else |
| 3388 | rfilt &= ~AR5K_RX_FILTER_BEACON; |
| 3389 | ath5k_hw_set_rx_filter(ah, rfilt); |
| 3390 | sc->filter_flags = rfilt; |
| 3391 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3392 | |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3393 | static void ath5k_bss_info_changed(struct ieee80211_hw *hw, |
| 3394 | struct ieee80211_vif *vif, |
| 3395 | struct ieee80211_bss_conf *bss_conf, |
| 3396 | u32 changes) |
| 3397 | { |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3398 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3399 | struct ath5k_softc *sc = hw->priv; |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3400 | struct ath5k_hw *ah = sc->ah; |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 3401 | struct ath_common *common = ath5k_hw_common(ah); |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 3402 | unsigned long flags; |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3403 | |
| 3404 | mutex_lock(&sc->lock); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3405 | |
| 3406 | if (changes & BSS_CHANGED_BSSID) { |
| 3407 | /* Cache for later use during resets */ |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 3408 | memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN); |
Luis R. Rodriguez | 8ce54c5 | 2009-10-06 20:44:34 -0400 | [diff] [blame] | 3409 | common->curaid = 0; |
Nick Kossifidis | 418de6d | 2010-08-15 13:03:10 -0400 | [diff] [blame] | 3410 | ath5k_hw_set_bssid(ah); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3411 | mmiowb(); |
| 3412 | } |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 3413 | |
| 3414 | if (changes & BSS_CHANGED_BEACON_INT) |
| 3415 | sc->bintval = bss_conf->beacon_int; |
| 3416 | |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3417 | if (changes & BSS_CHANGED_ASSOC) { |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3418 | avf->assoc = bss_conf->assoc; |
| 3419 | if (bss_conf->assoc) |
| 3420 | sc->assoc = bss_conf->assoc; |
| 3421 | else |
| 3422 | sc->assoc = ath_any_vif_assoc(sc); |
| 3423 | |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3424 | if (sc->opmode == NL80211_IFTYPE_STATION) |
| 3425 | set_beacon_filter(hw, sc->assoc); |
Bob Copeland | f0f3d38 | 2009-06-10 22:22:21 -0400 | [diff] [blame] | 3426 | ath5k_hw_set_ledstate(sc->ah, sc->assoc ? |
| 3427 | AR5K_LED_ASSOC : AR5K_LED_INIT); |
Luis R. Rodriguez | 8ce54c5 | 2009-10-06 20:44:34 -0400 | [diff] [blame] | 3428 | if (bss_conf->assoc) { |
| 3429 | ATH5K_DBG(sc, ATH5K_DEBUG_ANY, |
| 3430 | "Bss Info ASSOC %d, bssid: %pM\n", |
| 3431 | bss_conf->aid, common->curbssid); |
| 3432 | common->curaid = bss_conf->aid; |
Nick Kossifidis | 418de6d | 2010-08-15 13:03:10 -0400 | [diff] [blame] | 3433 | ath5k_hw_set_bssid(ah); |
Luis R. Rodriguez | 8ce54c5 | 2009-10-06 20:44:34 -0400 | [diff] [blame] | 3434 | /* Once ANI is available you would start it here */ |
| 3435 | } |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3436 | } |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3437 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 3438 | if (changes & BSS_CHANGED_BEACON) { |
| 3439 | spin_lock_irqsave(&sc->block, flags); |
| 3440 | ath5k_beacon_update(hw, vif); |
| 3441 | spin_unlock_irqrestore(&sc->block, flags); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3442 | } |
| 3443 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 3444 | if (changes & BSS_CHANGED_BEACON_ENABLED) |
| 3445 | sc->enable_beacon = bss_conf->enable_beacon; |
| 3446 | |
| 3447 | if (changes & (BSS_CHANGED_BEACON | BSS_CHANGED_BEACON_ENABLED | |
| 3448 | BSS_CHANGED_BEACON_INT)) |
| 3449 | ath5k_beacon_config(sc); |
| 3450 | |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3451 | mutex_unlock(&sc->lock); |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3452 | } |
Bob Copeland | f0f3d38 | 2009-06-10 22:22:21 -0400 | [diff] [blame] | 3453 | |
| 3454 | static void ath5k_sw_scan_start(struct ieee80211_hw *hw) |
| 3455 | { |
| 3456 | struct ath5k_softc *sc = hw->priv; |
| 3457 | if (!sc->assoc) |
| 3458 | ath5k_hw_set_ledstate(sc->ah, AR5K_LED_SCAN); |
| 3459 | } |
| 3460 | |
| 3461 | static void ath5k_sw_scan_complete(struct ieee80211_hw *hw) |
| 3462 | { |
| 3463 | struct ath5k_softc *sc = hw->priv; |
| 3464 | ath5k_hw_set_ledstate(sc->ah, sc->assoc ? |
| 3465 | AR5K_LED_ASSOC : AR5K_LED_INIT); |
| 3466 | } |
Lukáš Turek | 6e08d22 | 2009-12-21 22:50:51 +0100 | [diff] [blame] | 3467 | |
| 3468 | /** |
| 3469 | * ath5k_set_coverage_class - Set IEEE 802.11 coverage class |
| 3470 | * |
| 3471 | * @hw: struct ieee80211_hw pointer |
| 3472 | * @coverage_class: IEEE 802.11 coverage class number |
| 3473 | * |
| 3474 | * Mac80211 callback. Sets slot time, ACK timeout and CTS timeout for given |
| 3475 | * coverage class. The values are persistent, they are restored after device |
| 3476 | * reset. |
| 3477 | */ |
| 3478 | static void ath5k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class) |
| 3479 | { |
| 3480 | struct ath5k_softc *sc = hw->priv; |
| 3481 | |
| 3482 | mutex_lock(&sc->lock); |
| 3483 | ath5k_hw_set_coverage_class(sc->ah, coverage_class); |
| 3484 | mutex_unlock(&sc->lock); |
| 3485 | } |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3486 | |
Bruno Randolf | e0b1cc5 | 2010-09-17 11:37:18 +0900 | [diff] [blame] | 3487 | static int ath5k_conf_tx(struct ieee80211_hw *hw, u16 queue, |
| 3488 | const struct ieee80211_tx_queue_params *params) |
| 3489 | { |
| 3490 | struct ath5k_softc *sc = hw->priv; |
| 3491 | struct ath5k_hw *ah = sc->ah; |
| 3492 | struct ath5k_txq_info qi; |
| 3493 | int ret = 0; |
| 3494 | |
| 3495 | if (queue >= ah->ah_capabilities.cap_queues.q_tx_num) |
| 3496 | return 0; |
| 3497 | |
| 3498 | mutex_lock(&sc->lock); |
| 3499 | |
| 3500 | ath5k_hw_get_tx_queueprops(ah, queue, &qi); |
| 3501 | |
| 3502 | qi.tqi_aifs = params->aifs; |
| 3503 | qi.tqi_cw_min = params->cw_min; |
| 3504 | qi.tqi_cw_max = params->cw_max; |
| 3505 | qi.tqi_burst_time = params->txop; |
| 3506 | |
| 3507 | ATH5K_DBG(sc, ATH5K_DEBUG_ANY, |
| 3508 | "Configure tx [queue %d], " |
| 3509 | "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n", |
| 3510 | queue, params->aifs, params->cw_min, |
| 3511 | params->cw_max, params->txop); |
| 3512 | |
| 3513 | if (ath5k_hw_set_tx_queueprops(ah, queue, &qi)) { |
| 3514 | ATH5K_ERR(sc, |
| 3515 | "Unable to update hardware queue %u!\n", queue); |
| 3516 | ret = -EIO; |
| 3517 | } else |
| 3518 | ath5k_hw_reset_tx_queue(ah, queue); |
| 3519 | |
| 3520 | mutex_unlock(&sc->lock); |
| 3521 | |
| 3522 | return ret; |
| 3523 | } |
| 3524 | |
Bruno Randolf | 72a8011 | 2010-11-10 12:51:01 +0900 | [diff] [blame] | 3525 | static int ath5k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant) |
| 3526 | { |
| 3527 | struct ath5k_softc *sc = hw->priv; |
| 3528 | |
| 3529 | if (tx_ant == 1 && rx_ant == 1) |
| 3530 | ath5k_hw_set_antenna_mode(sc->ah, AR5K_ANTMODE_FIXED_A); |
| 3531 | else if (tx_ant == 2 && rx_ant == 2) |
| 3532 | ath5k_hw_set_antenna_mode(sc->ah, AR5K_ANTMODE_FIXED_B); |
| 3533 | else if ((tx_ant & 3) == 3 && (rx_ant & 3) == 3) |
| 3534 | ath5k_hw_set_antenna_mode(sc->ah, AR5K_ANTMODE_DEFAULT); |
| 3535 | else |
| 3536 | return -EINVAL; |
| 3537 | return 0; |
| 3538 | } |
| 3539 | |
| 3540 | static int ath5k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant) |
| 3541 | { |
| 3542 | struct ath5k_softc *sc = hw->priv; |
| 3543 | |
| 3544 | switch (sc->ah->ah_ant_mode) { |
| 3545 | case AR5K_ANTMODE_FIXED_A: |
| 3546 | *tx_ant = 1; *rx_ant = 1; break; |
| 3547 | case AR5K_ANTMODE_FIXED_B: |
| 3548 | *tx_ant = 2; *rx_ant = 2; break; |
| 3549 | case AR5K_ANTMODE_DEFAULT: |
| 3550 | *tx_ant = 3; *rx_ant = 3; break; |
| 3551 | } |
| 3552 | return 0; |
| 3553 | } |
| 3554 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 3555 | const struct ieee80211_ops ath5k_hw_ops = { |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3556 | .tx = ath5k_tx, |
| 3557 | .start = ath5k_start, |
| 3558 | .stop = ath5k_stop, |
| 3559 | .add_interface = ath5k_add_interface, |
| 3560 | .remove_interface = ath5k_remove_interface, |
| 3561 | .config = ath5k_config, |
| 3562 | .prepare_multicast = ath5k_prepare_multicast, |
| 3563 | .configure_filter = ath5k_configure_filter, |
| 3564 | .set_key = ath5k_set_key, |
| 3565 | .get_stats = ath5k_get_stats, |
| 3566 | .get_survey = ath5k_get_survey, |
Bruno Randolf | e0b1cc5 | 2010-09-17 11:37:18 +0900 | [diff] [blame] | 3567 | .conf_tx = ath5k_conf_tx, |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3568 | .get_tsf = ath5k_get_tsf, |
| 3569 | .set_tsf = ath5k_set_tsf, |
| 3570 | .reset_tsf = ath5k_reset_tsf, |
| 3571 | .bss_info_changed = ath5k_bss_info_changed, |
| 3572 | .sw_scan_start = ath5k_sw_scan_start, |
| 3573 | .sw_scan_complete = ath5k_sw_scan_complete, |
| 3574 | .set_coverage_class = ath5k_set_coverage_class, |
Bruno Randolf | 72a8011 | 2010-11-10 12:51:01 +0900 | [diff] [blame] | 3575 | .set_antenna = ath5k_set_antenna, |
| 3576 | .get_antenna = ath5k_get_antenna, |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3577 | }; |