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" |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 63 | |
John W. Linville | 18cb6e3 | 2011-01-05 09:39:59 -0500 | [diff] [blame] | 64 | int ath5k_modparam_nohwcrypt; |
| 65 | module_param_named(nohwcrypt, ath5k_modparam_nohwcrypt, bool, S_IRUGO); |
Bob Copeland | 9ad9a26 | 2008-10-29 08:30:54 -0400 | [diff] [blame] | 66 | MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 67 | |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 68 | static int modparam_all_channels; |
Bob Copeland | 46802a4 | 2009-04-15 07:57:34 -0400 | [diff] [blame] | 69 | module_param_named(all_channels, modparam_all_channels, bool, S_IRUGO); |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 70 | MODULE_PARM_DESC(all_channels, "Expose all channels the device can use."); |
| 71 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 72 | /* Module info */ |
| 73 | MODULE_AUTHOR("Jiri Slaby"); |
| 74 | MODULE_AUTHOR("Nick Kossifidis"); |
| 75 | MODULE_DESCRIPTION("Support for 5xxx series of Atheros 802.11 wireless LAN cards."); |
| 76 | MODULE_SUPPORTED_DEVICE("Atheros 5xxx WLAN cards"); |
| 77 | MODULE_LICENSE("Dual BSD/GPL"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 78 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 79 | static int ath5k_init(struct ieee80211_hw *hw); |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 80 | static int ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan, |
| 81 | bool skip_pcu); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 82 | int ath5k_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif); |
| 83 | void ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 84 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 85 | /* Known SREVs */ |
Jiri Slaby | 2c91108c | 2009-03-07 10:26:41 +0100 | [diff] [blame] | 86 | static const struct ath5k_srev_name srev_names[] = { |
Felix Fietkau | a0b907e | 2010-12-02 10:27:16 +0100 | [diff] [blame] | 87 | #ifdef CONFIG_ATHEROS_AR231X |
| 88 | { "5312", AR5K_VERSION_MAC, AR5K_SREV_AR5312_R2 }, |
| 89 | { "5312", AR5K_VERSION_MAC, AR5K_SREV_AR5312_R7 }, |
| 90 | { "2313", AR5K_VERSION_MAC, AR5K_SREV_AR2313_R8 }, |
| 91 | { "2315", AR5K_VERSION_MAC, AR5K_SREV_AR2315_R6 }, |
| 92 | { "2315", AR5K_VERSION_MAC, AR5K_SREV_AR2315_R7 }, |
| 93 | { "2317", AR5K_VERSION_MAC, AR5K_SREV_AR2317_R1 }, |
| 94 | { "2317", AR5K_VERSION_MAC, AR5K_SREV_AR2317_R2 }, |
| 95 | #else |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 96 | { "5210", AR5K_VERSION_MAC, AR5K_SREV_AR5210 }, |
| 97 | { "5311", AR5K_VERSION_MAC, AR5K_SREV_AR5311 }, |
| 98 | { "5311A", AR5K_VERSION_MAC, AR5K_SREV_AR5311A }, |
| 99 | { "5311B", AR5K_VERSION_MAC, AR5K_SREV_AR5311B }, |
| 100 | { "5211", AR5K_VERSION_MAC, AR5K_SREV_AR5211 }, |
| 101 | { "5212", AR5K_VERSION_MAC, AR5K_SREV_AR5212 }, |
| 102 | { "5213", AR5K_VERSION_MAC, AR5K_SREV_AR5213 }, |
| 103 | { "5213A", AR5K_VERSION_MAC, AR5K_SREV_AR5213A }, |
| 104 | { "2413", AR5K_VERSION_MAC, AR5K_SREV_AR2413 }, |
| 105 | { "2414", AR5K_VERSION_MAC, AR5K_SREV_AR2414 }, |
| 106 | { "5424", AR5K_VERSION_MAC, AR5K_SREV_AR5424 }, |
| 107 | { "5413", AR5K_VERSION_MAC, AR5K_SREV_AR5413 }, |
| 108 | { "5414", AR5K_VERSION_MAC, AR5K_SREV_AR5414 }, |
| 109 | { "2415", AR5K_VERSION_MAC, AR5K_SREV_AR2415 }, |
| 110 | { "5416", AR5K_VERSION_MAC, AR5K_SREV_AR5416 }, |
| 111 | { "5418", AR5K_VERSION_MAC, AR5K_SREV_AR5418 }, |
| 112 | { "2425", AR5K_VERSION_MAC, AR5K_SREV_AR2425 }, |
| 113 | { "2417", AR5K_VERSION_MAC, AR5K_SREV_AR2417 }, |
Felix Fietkau | a0b907e | 2010-12-02 10:27:16 +0100 | [diff] [blame] | 114 | #endif |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 115 | { "xxxxx", AR5K_VERSION_MAC, AR5K_SREV_UNKNOWN }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 116 | { "5110", AR5K_VERSION_RAD, AR5K_SREV_RAD_5110 }, |
| 117 | { "5111", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111 }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 118 | { "5111A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111A }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 119 | { "2111", AR5K_VERSION_RAD, AR5K_SREV_RAD_2111 }, |
| 120 | { "5112", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112 }, |
| 121 | { "5112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112A }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 122 | { "5112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112B }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 123 | { "2112", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112 }, |
| 124 | { "2112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112A }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 125 | { "2112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112B }, |
| 126 | { "2413", AR5K_VERSION_RAD, AR5K_SREV_RAD_2413 }, |
| 127 | { "5413", AR5K_VERSION_RAD, AR5K_SREV_RAD_5413 }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 128 | { "5424", AR5K_VERSION_RAD, AR5K_SREV_RAD_5424 }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 129 | { "5133", AR5K_VERSION_RAD, AR5K_SREV_RAD_5133 }, |
Felix Fietkau | a0b907e | 2010-12-02 10:27:16 +0100 | [diff] [blame] | 130 | #ifdef CONFIG_ATHEROS_AR231X |
| 131 | { "2316", AR5K_VERSION_RAD, AR5K_SREV_RAD_2316 }, |
| 132 | { "2317", AR5K_VERSION_RAD, AR5K_SREV_RAD_2317 }, |
| 133 | #endif |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 134 | { "xxxxx", AR5K_VERSION_RAD, AR5K_SREV_UNKNOWN }, |
| 135 | }; |
| 136 | |
Jiri Slaby | 2c91108c | 2009-03-07 10:26:41 +0100 | [diff] [blame] | 137 | static const struct ieee80211_rate ath5k_rates[] = { |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 138 | { .bitrate = 10, |
| 139 | .hw_value = ATH5K_RATE_CODE_1M, }, |
| 140 | { .bitrate = 20, |
| 141 | .hw_value = ATH5K_RATE_CODE_2M, |
| 142 | .hw_value_short = ATH5K_RATE_CODE_2M | AR5K_SET_SHORT_PREAMBLE, |
| 143 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 144 | { .bitrate = 55, |
| 145 | .hw_value = ATH5K_RATE_CODE_5_5M, |
| 146 | .hw_value_short = ATH5K_RATE_CODE_5_5M | AR5K_SET_SHORT_PREAMBLE, |
| 147 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 148 | { .bitrate = 110, |
| 149 | .hw_value = ATH5K_RATE_CODE_11M, |
| 150 | .hw_value_short = ATH5K_RATE_CODE_11M | AR5K_SET_SHORT_PREAMBLE, |
| 151 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 152 | { .bitrate = 60, |
| 153 | .hw_value = ATH5K_RATE_CODE_6M, |
| 154 | .flags = 0 }, |
| 155 | { .bitrate = 90, |
| 156 | .hw_value = ATH5K_RATE_CODE_9M, |
| 157 | .flags = 0 }, |
| 158 | { .bitrate = 120, |
| 159 | .hw_value = ATH5K_RATE_CODE_12M, |
| 160 | .flags = 0 }, |
| 161 | { .bitrate = 180, |
| 162 | .hw_value = ATH5K_RATE_CODE_18M, |
| 163 | .flags = 0 }, |
| 164 | { .bitrate = 240, |
| 165 | .hw_value = ATH5K_RATE_CODE_24M, |
| 166 | .flags = 0 }, |
| 167 | { .bitrate = 360, |
| 168 | .hw_value = ATH5K_RATE_CODE_36M, |
| 169 | .flags = 0 }, |
| 170 | { .bitrate = 480, |
| 171 | .hw_value = ATH5K_RATE_CODE_48M, |
| 172 | .flags = 0 }, |
| 173 | { .bitrate = 540, |
| 174 | .hw_value = ATH5K_RATE_CODE_54M, |
| 175 | .flags = 0 }, |
| 176 | /* XR missing */ |
| 177 | }; |
| 178 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 179 | static inline u64 ath5k_extend_tsf(struct ath5k_hw *ah, u32 rstamp) |
| 180 | { |
| 181 | u64 tsf = ath5k_hw_get_tsf64(ah); |
| 182 | |
| 183 | if ((tsf & 0x7fff) < rstamp) |
| 184 | tsf -= 0x8000; |
| 185 | |
| 186 | return (tsf & ~0x7fff) | rstamp; |
| 187 | } |
| 188 | |
Felix Fietkau | e5b046d | 2010-12-02 10:27:01 +0100 | [diff] [blame] | 189 | const char * |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 190 | ath5k_chip_name(enum ath5k_srev_type type, u_int16_t val) |
| 191 | { |
| 192 | const char *name = "xxxxx"; |
| 193 | unsigned int i; |
| 194 | |
| 195 | for (i = 0; i < ARRAY_SIZE(srev_names); i++) { |
| 196 | if (srev_names[i].sr_type != type) |
| 197 | continue; |
Nick Kossifidis | 75d0edb | 2008-09-29 01:24:44 +0300 | [diff] [blame] | 198 | |
| 199 | if ((val & 0xf0) == srev_names[i].sr_val) |
| 200 | name = srev_names[i].sr_name; |
| 201 | |
| 202 | if ((val & 0xff) == srev_names[i].sr_val) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 203 | name = srev_names[i].sr_name; |
| 204 | break; |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | return name; |
| 209 | } |
Luis R. Rodriguez | e5aa847 | 2009-09-10 16:55:11 -0700 | [diff] [blame] | 210 | static unsigned int ath5k_ioread32(void *hw_priv, u32 reg_offset) |
| 211 | { |
| 212 | struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv; |
| 213 | return ath5k_hw_reg_read(ah, reg_offset); |
| 214 | } |
| 215 | |
| 216 | static void ath5k_iowrite32(void *hw_priv, u32 val, u32 reg_offset) |
| 217 | { |
| 218 | struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv; |
| 219 | ath5k_hw_reg_write(ah, val, reg_offset); |
| 220 | } |
| 221 | |
| 222 | static const struct ath_ops ath5k_common_ops = { |
| 223 | .read = ath5k_ioread32, |
| 224 | .write = ath5k_iowrite32, |
| 225 | }; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 226 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 227 | /***********************\ |
| 228 | * Driver Initialization * |
| 229 | \***********************/ |
| 230 | |
Bob Copeland | f769c36 | 2009-03-30 22:30:31 -0400 | [diff] [blame] | 231 | static int ath5k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request) |
| 232 | { |
| 233 | struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); |
| 234 | struct ath5k_softc *sc = hw->priv; |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 235 | struct ath_regulatory *regulatory = ath5k_hw_regulatory(sc->ah); |
Bob Copeland | f769c36 | 2009-03-30 22:30:31 -0400 | [diff] [blame] | 236 | |
Luis R. Rodriguez | 608b88c | 2009-08-17 18:07:23 -0700 | [diff] [blame] | 237 | return ath_reg_notifier_apply(wiphy, request, regulatory); |
Bob Copeland | f769c36 | 2009-03-30 22:30:31 -0400 | [diff] [blame] | 238 | } |
| 239 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 240 | /********************\ |
| 241 | * Channel/mode setup * |
| 242 | \********************/ |
| 243 | |
| 244 | /* |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 245 | * Returns true for the channel numbers used without all_channels modparam. |
| 246 | */ |
Bruno Randolf | 410e612 | 2011-01-19 18:20:57 +0900 | [diff] [blame] | 247 | static bool ath5k_is_standard_channel(short chan, enum ieee80211_band band) |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 248 | { |
Bruno Randolf | 410e612 | 2011-01-19 18:20:57 +0900 | [diff] [blame] | 249 | if (band == IEEE80211_BAND_2GHZ && chan <= 14) |
| 250 | return true; |
| 251 | |
| 252 | return /* UNII 1,2 */ |
| 253 | (((chan & 3) == 0 && chan >= 36 && chan <= 64) || |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 254 | /* midband */ |
| 255 | ((chan & 3) == 0 && chan >= 100 && chan <= 140) || |
| 256 | /* UNII-3 */ |
Bruno Randolf | 410e612 | 2011-01-19 18:20:57 +0900 | [diff] [blame] | 257 | ((chan & 3) == 1 && chan >= 149 && chan <= 165) || |
| 258 | /* 802.11j 5.030-5.080 GHz (20MHz) */ |
| 259 | (chan == 8 || chan == 12 || chan == 16) || |
| 260 | /* 802.11j 4.9GHz (20MHz) */ |
| 261 | (chan == 184 || chan == 188 || chan == 192 || chan == 196)); |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 262 | } |
| 263 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 264 | static unsigned int |
Bruno Randolf | 0810569 | 2011-01-19 18:20:47 +0900 | [diff] [blame] | 265 | ath5k_setup_channels(struct ath5k_hw *ah, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 266 | struct ieee80211_channel *channels, |
| 267 | unsigned int mode, |
| 268 | unsigned int max) |
| 269 | { |
Bruno Randolf | 2b1351a | 2011-01-21 12:19:52 +0900 | [diff] [blame^] | 270 | unsigned int count, size, chfreq, freq, ch; |
Bruno Randolf | 90c02d7 | 2011-01-19 18:20:36 +0900 | [diff] [blame] | 271 | enum ieee80211_band band; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 272 | |
| 273 | if (!test_bit(mode, ah->ah_modes)) |
| 274 | return 0; |
| 275 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 276 | switch (mode) { |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 277 | case AR5K_MODE_11A: |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 278 | /* 1..220, but 2GHz frequencies are filtered by check_channel */ |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 279 | size = 220 ; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 280 | chfreq = CHANNEL_5GHZ; |
Bruno Randolf | 90c02d7 | 2011-01-19 18:20:36 +0900 | [diff] [blame] | 281 | band = IEEE80211_BAND_5GHZ; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 282 | break; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 283 | case AR5K_MODE_11B: |
| 284 | case AR5K_MODE_11G: |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 285 | size = 26; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 286 | chfreq = CHANNEL_2GHZ; |
Bruno Randolf | 90c02d7 | 2011-01-19 18:20:36 +0900 | [diff] [blame] | 287 | band = IEEE80211_BAND_2GHZ; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 288 | break; |
| 289 | default: |
| 290 | ATH5K_WARN(ah->ah_sc, "bad mode, not copying channels\n"); |
| 291 | return 0; |
| 292 | } |
| 293 | |
Bruno Randolf | 2b1351a | 2011-01-21 12:19:52 +0900 | [diff] [blame^] | 294 | count = 0; |
| 295 | for (ch = 1; ch <= size && count < max; ch++) { |
Bruno Randolf | 90c02d7 | 2011-01-19 18:20:36 +0900 | [diff] [blame] | 296 | freq = ieee80211_channel_to_frequency(ch, band); |
| 297 | |
| 298 | if (freq == 0) /* mapping failed - not a standard channel */ |
| 299 | continue; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 300 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 301 | /* Check if channel is supported by the chipset */ |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 302 | if (!ath5k_channel_ok(ah, freq, chfreq)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 303 | continue; |
| 304 | |
Bruno Randolf | 410e612 | 2011-01-19 18:20:57 +0900 | [diff] [blame] | 305 | if (!modparam_all_channels && |
| 306 | !ath5k_is_standard_channel(ch, band)) |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 307 | continue; |
| 308 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 309 | /* Write channel info and increment counter */ |
| 310 | channels[count].center_freq = freq; |
Bruno Randolf | 90c02d7 | 2011-01-19 18:20:36 +0900 | [diff] [blame] | 311 | channels[count].band = band; |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 312 | switch (mode) { |
| 313 | case AR5K_MODE_11A: |
| 314 | case AR5K_MODE_11G: |
| 315 | channels[count].hw_value = chfreq | CHANNEL_OFDM; |
| 316 | break; |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 317 | case AR5K_MODE_11B: |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 318 | channels[count].hw_value = CHANNEL_B; |
| 319 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 320 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 321 | count++; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | return count; |
| 325 | } |
| 326 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 327 | static void |
| 328 | ath5k_setup_rate_idx(struct ath5k_softc *sc, struct ieee80211_supported_band *b) |
| 329 | { |
| 330 | u8 i; |
| 331 | |
| 332 | for (i = 0; i < AR5K_MAX_RATES; i++) |
| 333 | sc->rate_idx[b->band][i] = -1; |
| 334 | |
| 335 | for (i = 0; i < b->n_bitrates; i++) { |
| 336 | sc->rate_idx[b->band][b->bitrates[i].hw_value] = i; |
| 337 | if (b->bitrates[i].hw_value_short) |
| 338 | sc->rate_idx[b->band][b->bitrates[i].hw_value_short] = i; |
| 339 | } |
| 340 | } |
| 341 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 342 | static int |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 343 | ath5k_setup_bands(struct ieee80211_hw *hw) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 344 | { |
| 345 | struct ath5k_softc *sc = hw->priv; |
| 346 | struct ath5k_hw *ah = sc->ah; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 347 | struct ieee80211_supported_band *sband; |
| 348 | int max_c, count_c = 0; |
| 349 | int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 350 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 351 | BUILD_BUG_ON(ARRAY_SIZE(sc->sbands) < IEEE80211_NUM_BANDS); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 352 | max_c = ARRAY_SIZE(sc->channels); |
| 353 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 354 | /* 2GHz band */ |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 355 | sband = &sc->sbands[IEEE80211_BAND_2GHZ]; |
| 356 | sband->band = IEEE80211_BAND_2GHZ; |
| 357 | sband->bitrates = &sc->rates[IEEE80211_BAND_2GHZ][0]; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 358 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 359 | if (test_bit(AR5K_MODE_11G, sc->ah->ah_capabilities.cap_mode)) { |
| 360 | /* G mode */ |
| 361 | memcpy(sband->bitrates, &ath5k_rates[0], |
| 362 | sizeof(struct ieee80211_rate) * 12); |
| 363 | sband->n_bitrates = 12; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 364 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 365 | sband->channels = sc->channels; |
Bruno Randolf | 0810569 | 2011-01-19 18:20:47 +0900 | [diff] [blame] | 366 | sband->n_channels = ath5k_setup_channels(ah, sband->channels, |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 367 | AR5K_MODE_11G, max_c); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 368 | |
| 369 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 370 | count_c = sband->n_channels; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 371 | max_c -= count_c; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 372 | } else if (test_bit(AR5K_MODE_11B, sc->ah->ah_capabilities.cap_mode)) { |
| 373 | /* B mode */ |
| 374 | memcpy(sband->bitrates, &ath5k_rates[0], |
| 375 | sizeof(struct ieee80211_rate) * 4); |
| 376 | sband->n_bitrates = 4; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 377 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 378 | /* 5211 only supports B rates and uses 4bit rate codes |
| 379 | * (e.g normally we have 0x1B for 1M, but on 5211 we have 0x0B) |
| 380 | * fix them up here: |
| 381 | */ |
| 382 | if (ah->ah_version == AR5K_AR5211) { |
| 383 | for (i = 0; i < 4; i++) { |
| 384 | sband->bitrates[i].hw_value = |
| 385 | sband->bitrates[i].hw_value & 0xF; |
| 386 | sband->bitrates[i].hw_value_short = |
| 387 | sband->bitrates[i].hw_value_short & 0xF; |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | sband->channels = sc->channels; |
Bruno Randolf | 0810569 | 2011-01-19 18:20:47 +0900 | [diff] [blame] | 392 | sband->n_channels = ath5k_setup_channels(ah, sband->channels, |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 393 | AR5K_MODE_11B, max_c); |
| 394 | |
| 395 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband; |
| 396 | count_c = sband->n_channels; |
| 397 | max_c -= count_c; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 398 | } |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 399 | ath5k_setup_rate_idx(sc, sband); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 400 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 401 | /* 5GHz band, A mode */ |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 402 | if (test_bit(AR5K_MODE_11A, sc->ah->ah_capabilities.cap_mode)) { |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 403 | sband = &sc->sbands[IEEE80211_BAND_5GHZ]; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 404 | sband->band = IEEE80211_BAND_5GHZ; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 405 | sband->bitrates = &sc->rates[IEEE80211_BAND_5GHZ][0]; |
| 406 | |
| 407 | memcpy(sband->bitrates, &ath5k_rates[4], |
| 408 | sizeof(struct ieee80211_rate) * 8); |
| 409 | sband->n_bitrates = 8; |
| 410 | |
| 411 | sband->channels = &sc->channels[count_c]; |
Bruno Randolf | 0810569 | 2011-01-19 18:20:47 +0900 | [diff] [blame] | 412 | sband->n_channels = ath5k_setup_channels(ah, sband->channels, |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 413 | AR5K_MODE_11A, max_c); |
| 414 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 415 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = sband; |
| 416 | } |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 417 | ath5k_setup_rate_idx(sc, sband); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 418 | |
Luis R. Rodriguez | b446197 | 2008-02-04 10:03:54 -0500 | [diff] [blame] | 419 | ath5k_debug_dump_bands(sc); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 420 | |
| 421 | return 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | /* |
Joerg Albert | e30eb4a | 2009-08-05 01:52:07 +0200 | [diff] [blame] | 425 | * Set/change channels. We always reset the chip. |
| 426 | * To accomplish this we must first cleanup any pending DMA, |
| 427 | * then restart stuff after a la ath5k_init. |
Bob Copeland | be00937 | 2009-01-22 08:44:16 -0500 | [diff] [blame] | 428 | * |
| 429 | * Called with sc->lock. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 430 | */ |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 431 | int |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 432 | ath5k_chan_set(struct ath5k_softc *sc, struct ieee80211_channel *chan) |
| 433 | { |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 434 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 435 | "channel set, resetting (%u -> %u MHz)\n", |
| 436 | sc->curchan->center_freq, chan->center_freq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 437 | |
Joerg Albert | e30eb4a | 2009-08-05 01:52:07 +0200 | [diff] [blame] | 438 | /* |
| 439 | * To switch channels clear any pending DMA operations; |
| 440 | * wait long enough for the RX fifo to drain, reset the |
| 441 | * hardware at the new frequency, and then re-enable |
| 442 | * the relevant bits of the h/w. |
| 443 | */ |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 444 | return ath5k_reset(sc, chan, true); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 445 | } |
| 446 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 447 | struct ath_vif_iter_data { |
| 448 | const u8 *hw_macaddr; |
| 449 | u8 mask[ETH_ALEN]; |
| 450 | u8 active_mac[ETH_ALEN]; /* first active MAC */ |
| 451 | bool need_set_hw_addr; |
| 452 | bool found_active; |
| 453 | bool any_assoc; |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 454 | enum nl80211_iftype opmode; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 455 | }; |
| 456 | |
| 457 | static void ath_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif) |
| 458 | { |
| 459 | struct ath_vif_iter_data *iter_data = data; |
| 460 | int i; |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 461 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 462 | |
| 463 | if (iter_data->hw_macaddr) |
| 464 | for (i = 0; i < ETH_ALEN; i++) |
| 465 | iter_data->mask[i] &= |
| 466 | ~(iter_data->hw_macaddr[i] ^ mac[i]); |
| 467 | |
| 468 | if (!iter_data->found_active) { |
| 469 | iter_data->found_active = true; |
| 470 | memcpy(iter_data->active_mac, mac, ETH_ALEN); |
| 471 | } |
| 472 | |
| 473 | if (iter_data->need_set_hw_addr && iter_data->hw_macaddr) |
| 474 | if (compare_ether_addr(iter_data->hw_macaddr, mac) == 0) |
| 475 | iter_data->need_set_hw_addr = false; |
| 476 | |
| 477 | if (!iter_data->any_assoc) { |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 478 | if (avf->assoc) |
| 479 | iter_data->any_assoc = true; |
| 480 | } |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 481 | |
| 482 | /* Calculate combined mode - when APs are active, operate in AP mode. |
| 483 | * Otherwise use the mode of the new interface. This can currently |
| 484 | * only deal with combinations of APs and STAs. Only one ad-hoc |
Ben Greear | 7afbb2f | 2010-11-10 11:43:51 -0800 | [diff] [blame] | 485 | * interfaces is allowed. |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 486 | */ |
| 487 | if (avf->opmode == NL80211_IFTYPE_AP) |
| 488 | iter_data->opmode = NL80211_IFTYPE_AP; |
| 489 | else |
| 490 | if (iter_data->opmode == NL80211_IFTYPE_UNSPECIFIED) |
| 491 | iter_data->opmode = avf->opmode; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 492 | } |
| 493 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 494 | void |
| 495 | ath5k_update_bssid_mask_and_opmode(struct ath5k_softc *sc, |
| 496 | struct ieee80211_vif *vif) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 497 | { |
| 498 | struct ath_common *common = ath5k_hw_common(sc->ah); |
| 499 | struct ath_vif_iter_data iter_data; |
| 500 | |
| 501 | /* |
| 502 | * Use the hardware MAC address as reference, the hardware uses it |
| 503 | * together with the BSSID mask when matching addresses. |
| 504 | */ |
| 505 | iter_data.hw_macaddr = common->macaddr; |
| 506 | memset(&iter_data.mask, 0xff, ETH_ALEN); |
| 507 | iter_data.found_active = false; |
| 508 | iter_data.need_set_hw_addr = true; |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 509 | iter_data.opmode = NL80211_IFTYPE_UNSPECIFIED; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 510 | |
| 511 | if (vif) |
| 512 | ath_vif_iter(&iter_data, vif->addr, vif); |
| 513 | |
| 514 | /* Get list of all active MAC addresses */ |
| 515 | ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter, |
| 516 | &iter_data); |
| 517 | memcpy(sc->bssidmask, iter_data.mask, ETH_ALEN); |
| 518 | |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 519 | sc->opmode = iter_data.opmode; |
| 520 | if (sc->opmode == NL80211_IFTYPE_UNSPECIFIED) |
| 521 | /* Nothing active, default to station mode */ |
| 522 | sc->opmode = NL80211_IFTYPE_STATION; |
| 523 | |
Ben Greear | 7afbb2f | 2010-11-10 11:43:51 -0800 | [diff] [blame] | 524 | ath5k_hw_set_opmode(sc->ah, sc->opmode); |
| 525 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "mode setup opmode %d (%s)\n", |
| 526 | sc->opmode, ath_opmode_to_string(sc->opmode)); |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 527 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 528 | if (iter_data.need_set_hw_addr && iter_data.found_active) |
| 529 | ath5k_hw_set_lladdr(sc->ah, iter_data.active_mac); |
| 530 | |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 531 | if (ath5k_hw_hasbssidmask(sc->ah)) |
| 532 | ath5k_hw_set_bssid_mask(sc->ah, sc->bssidmask); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 533 | } |
| 534 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 535 | void |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 536 | ath5k_mode_setup(struct ath5k_softc *sc, struct ieee80211_vif *vif) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 537 | { |
| 538 | struct ath5k_hw *ah = sc->ah; |
| 539 | u32 rfilt; |
| 540 | |
| 541 | /* configure rx filter */ |
| 542 | rfilt = sc->filter_flags; |
| 543 | ath5k_hw_set_rx_filter(ah, rfilt); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 544 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "RX filter 0x%x\n", rfilt); |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 545 | |
| 546 | ath5k_update_bssid_mask_and_opmode(sc, vif); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 547 | } |
| 548 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 549 | static inline int |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 550 | ath5k_hw_to_driver_rix(struct ath5k_softc *sc, int hw_rix) |
| 551 | { |
Bob Copeland | b726604 | 2009-03-02 21:55:18 -0500 | [diff] [blame] | 552 | int rix; |
| 553 | |
| 554 | /* return base rate on errors */ |
| 555 | if (WARN(hw_rix < 0 || hw_rix >= AR5K_MAX_RATES, |
| 556 | "hw_rix out of bounds: %x\n", hw_rix)) |
| 557 | return 0; |
| 558 | |
Bruno Randolf | 930a762 | 2011-01-19 18:21:13 +0900 | [diff] [blame] | 559 | rix = sc->rate_idx[sc->curchan->band][hw_rix]; |
Bob Copeland | b726604 | 2009-03-02 21:55:18 -0500 | [diff] [blame] | 560 | if (WARN(rix < 0, "invalid hw_rix: %x\n", hw_rix)) |
| 561 | rix = 0; |
| 562 | |
| 563 | return rix; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 564 | } |
| 565 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 566 | /***************\ |
| 567 | * Buffers setup * |
| 568 | \***************/ |
| 569 | |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 570 | static |
| 571 | struct sk_buff *ath5k_rx_skb_alloc(struct ath5k_softc *sc, dma_addr_t *skb_addr) |
| 572 | { |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 573 | struct ath_common *common = ath5k_hw_common(sc->ah); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 574 | struct sk_buff *skb; |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 575 | |
| 576 | /* |
| 577 | * Allocate buffer with headroom_needed space for the |
| 578 | * fake physical layer header at the start. |
| 579 | */ |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 580 | skb = ath_rxbuf_alloc(common, |
Luis R. Rodriguez | dd84978 | 2009-11-04 09:44:50 -0800 | [diff] [blame] | 581 | common->rx_bufsize, |
Luis R. Rodriguez | aeb63cf | 2009-08-12 09:57:00 -0700 | [diff] [blame] | 582 | GFP_ATOMIC); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 583 | |
| 584 | if (!skb) { |
| 585 | ATH5K_ERR(sc, "can't alloc skbuff of size %u\n", |
Luis R. Rodriguez | dd84978 | 2009-11-04 09:44:50 -0800 | [diff] [blame] | 586 | common->rx_bufsize); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 587 | return NULL; |
| 588 | } |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 589 | |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 590 | *skb_addr = dma_map_single(sc->dev, |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 591 | skb->data, common->rx_bufsize, |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 592 | DMA_FROM_DEVICE); |
| 593 | |
| 594 | if (unlikely(dma_mapping_error(sc->dev, *skb_addr))) { |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 595 | ATH5K_ERR(sc, "%s: DMA mapping failed\n", __func__); |
| 596 | dev_kfree_skb(skb); |
| 597 | return NULL; |
| 598 | } |
| 599 | return skb; |
| 600 | } |
| 601 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 602 | static int |
| 603 | ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf) |
| 604 | { |
| 605 | struct ath5k_hw *ah = sc->ah; |
| 606 | struct sk_buff *skb = bf->skb; |
| 607 | struct ath5k_desc *ds; |
Bruno Randolf | b5eae9f | 2010-05-19 10:18:16 +0900 | [diff] [blame] | 608 | int ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 609 | |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 610 | if (!skb) { |
| 611 | skb = ath5k_rx_skb_alloc(sc, &bf->skbaddr); |
| 612 | if (!skb) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 613 | return -ENOMEM; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 614 | bf->skb = skb; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | /* |
| 618 | * Setup descriptors. For receive we always terminate |
| 619 | * the descriptor list with a self-linked entry so we'll |
| 620 | * not get overrun under high load (as can happen with a |
| 621 | * 5212 when ANI processing enables PHY error frames). |
| 622 | * |
Bruno Randolf | beade63 | 2010-06-16 19:11:25 +0900 | [diff] [blame] | 623 | * To ensure the last descriptor is self-linked we create |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 624 | * each descriptor as self-linked and add it to the end. As |
| 625 | * each additional descriptor is added the previous self-linked |
Bruno Randolf | beade63 | 2010-06-16 19:11:25 +0900 | [diff] [blame] | 626 | * entry is "fixed" naturally. This should be safe even |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 627 | * if DMA is happening. When processing RX interrupts we |
| 628 | * never remove/process the last, self-linked, entry on the |
Bruno Randolf | beade63 | 2010-06-16 19:11:25 +0900 | [diff] [blame] | 629 | * descriptor list. This ensures the hardware always has |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 630 | * someplace to write a new frame. |
| 631 | */ |
| 632 | ds = bf->desc; |
| 633 | ds->ds_link = bf->daddr; /* link to self */ |
| 634 | ds->ds_data = bf->skbaddr; |
Bruno Randolf | a666819 | 2010-06-16 19:12:01 +0900 | [diff] [blame] | 635 | 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] | 636 | if (ret) { |
| 637 | ATH5K_ERR(sc, "%s: could not setup RX desc\n", __func__); |
Bruno Randolf | b5eae9f | 2010-05-19 10:18:16 +0900 | [diff] [blame] | 638 | return ret; |
Bruno Randolf | 0452d4a | 2010-06-16 19:11:35 +0900 | [diff] [blame] | 639 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 640 | |
| 641 | if (sc->rxlink != NULL) |
| 642 | *sc->rxlink = bf->daddr; |
| 643 | sc->rxlink = &ds->ds_link; |
| 644 | return 0; |
| 645 | } |
| 646 | |
Bob Copeland | 2ac2927 | 2010-02-09 13:06:54 -0500 | [diff] [blame] | 647 | static enum ath5k_pkt_type get_hw_packet_type(struct sk_buff *skb) |
| 648 | { |
| 649 | struct ieee80211_hdr *hdr; |
| 650 | enum ath5k_pkt_type htype; |
| 651 | __le16 fc; |
| 652 | |
| 653 | hdr = (struct ieee80211_hdr *)skb->data; |
| 654 | fc = hdr->frame_control; |
| 655 | |
| 656 | if (ieee80211_is_beacon(fc)) |
| 657 | htype = AR5K_PKT_TYPE_BEACON; |
| 658 | else if (ieee80211_is_probe_resp(fc)) |
| 659 | htype = AR5K_PKT_TYPE_PROBE_RESP; |
| 660 | else if (ieee80211_is_atim(fc)) |
| 661 | htype = AR5K_PKT_TYPE_ATIM; |
| 662 | else if (ieee80211_is_pspoll(fc)) |
| 663 | htype = AR5K_PKT_TYPE_PSPOLL; |
| 664 | else |
| 665 | htype = AR5K_PKT_TYPE_NORMAL; |
| 666 | |
| 667 | return htype; |
| 668 | } |
| 669 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 670 | static int |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 671 | ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf, |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 672 | struct ath5k_txq *txq, int padsize) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 673 | { |
| 674 | struct ath5k_hw *ah = sc->ah; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 675 | struct ath5k_desc *ds = bf->desc; |
| 676 | struct sk_buff *skb = bf->skb; |
Johannes Berg | a888d52 | 2008-05-26 16:43:39 +0200 | [diff] [blame] | 677 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 678 | unsigned int pktlen, flags, keyidx = AR5K_TXKEYIX_INVALID; |
Felix Fietkau | 2f7fe870 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 679 | struct ieee80211_rate *rate; |
| 680 | unsigned int mrr_rate[3], mrr_tries[3]; |
| 681 | int i, ret; |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 682 | u16 hw_rate; |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 683 | u16 cts_rate = 0; |
| 684 | u16 duration = 0; |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 685 | u8 rc_flags; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 686 | |
| 687 | flags = AR5K_TXDESC_INTREQ | AR5K_TXDESC_CLRDMASK; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 688 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 689 | /* XXX endianness */ |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 690 | bf->skbaddr = dma_map_single(sc->dev, skb->data, skb->len, |
| 691 | DMA_TO_DEVICE); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 692 | |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 693 | rate = ieee80211_get_tx_rate(sc->hw, info); |
John W. Linville | d8e1ba7 | 2010-08-24 15:27:34 -0400 | [diff] [blame] | 694 | if (!rate) { |
| 695 | ret = -EINVAL; |
| 696 | goto err_unmap; |
| 697 | } |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 698 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 699 | if (info->flags & IEEE80211_TX_CTL_NO_ACK) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 700 | flags |= AR5K_TXDESC_NOACK; |
| 701 | |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 702 | rc_flags = info->control.rates[0].flags; |
| 703 | hw_rate = (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) ? |
| 704 | rate->hw_value_short : rate->hw_value; |
| 705 | |
Bruno Randolf | 281c56d | 2008-02-05 18:44:55 +0900 | [diff] [blame] | 706 | pktlen = skb->len; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 707 | |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 708 | /* FIXME: If we are in g mode and rate is a CCK rate |
| 709 | * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta |
| 710 | * from tx power (value is in dB units already) */ |
Bob Copeland | 362695e | 2009-02-15 12:06:12 -0500 | [diff] [blame] | 711 | if (info->control.hw_key) { |
| 712 | keyidx = info->control.hw_key->hw_key_idx; |
| 713 | pktlen += info->control.hw_key->icv_len; |
| 714 | } |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 715 | if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) { |
| 716 | flags |= AR5K_TXDESC_RTSENA; |
| 717 | cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value; |
| 718 | duration = le16_to_cpu(ieee80211_rts_duration(sc->hw, |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 719 | info->control.vif, pktlen, info)); |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 720 | } |
| 721 | if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) { |
| 722 | flags |= AR5K_TXDESC_CTSENA; |
| 723 | cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value; |
| 724 | duration = le16_to_cpu(ieee80211_ctstoself_duration(sc->hw, |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 725 | info->control.vif, pktlen, info)); |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 726 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 727 | ret = ah->ah_setup_tx_desc(ah, ds, pktlen, |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 728 | ieee80211_get_hdrlen_from_skb(skb), padsize, |
Bob Copeland | 2ac2927 | 2010-02-09 13:06:54 -0500 | [diff] [blame] | 729 | get_hw_packet_type(skb), |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 730 | (sc->power_level * 2), |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 731 | hw_rate, |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 732 | info->control.rates[0].count, keyidx, ah->ah_tx_ant, flags, |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 733 | cts_rate, duration); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 734 | if (ret) |
| 735 | goto err_unmap; |
| 736 | |
Felix Fietkau | 2f7fe870 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 737 | memset(mrr_rate, 0, sizeof(mrr_rate)); |
| 738 | memset(mrr_tries, 0, sizeof(mrr_tries)); |
| 739 | for (i = 0; i < 3; i++) { |
| 740 | rate = ieee80211_get_alt_retry_rate(sc->hw, info, i); |
| 741 | if (!rate) |
| 742 | break; |
| 743 | |
| 744 | mrr_rate[i] = rate->hw_value; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 745 | mrr_tries[i] = info->control.rates[i + 1].count; |
Felix Fietkau | 2f7fe870 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 746 | } |
| 747 | |
Bruno Randolf | a666819 | 2010-06-16 19:12:01 +0900 | [diff] [blame] | 748 | ath5k_hw_setup_mrr_tx_desc(ah, ds, |
Felix Fietkau | 2f7fe870 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 749 | mrr_rate[0], mrr_tries[0], |
| 750 | mrr_rate[1], mrr_tries[1], |
| 751 | mrr_rate[2], mrr_tries[2]); |
| 752 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 753 | ds->ds_link = 0; |
| 754 | ds->ds_data = bf->skbaddr; |
| 755 | |
| 756 | spin_lock_bh(&txq->lock); |
| 757 | list_add_tail(&bf->list, &txq->q); |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 758 | txq->txq_len++; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 759 | if (txq->link == NULL) /* is this first packet? */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 760 | ath5k_hw_set_txdp(ah, txq->qnum, bf->daddr); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 761 | else /* no, so only link it */ |
| 762 | *txq->link = bf->daddr; |
| 763 | |
| 764 | txq->link = &ds->ds_link; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 765 | ath5k_hw_start_tx_dma(ah, txq->qnum); |
Jiri Slaby | 274c7c3 | 2008-07-15 17:44:20 +0200 | [diff] [blame] | 766 | mmiowb(); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 767 | spin_unlock_bh(&txq->lock); |
| 768 | |
| 769 | return 0; |
| 770 | err_unmap: |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 771 | dma_unmap_single(sc->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 772 | return ret; |
| 773 | } |
| 774 | |
| 775 | /*******************\ |
| 776 | * Descriptors setup * |
| 777 | \*******************/ |
| 778 | |
| 779 | static int |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 780 | ath5k_desc_alloc(struct ath5k_softc *sc) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 781 | { |
| 782 | struct ath5k_desc *ds; |
| 783 | struct ath5k_buf *bf; |
| 784 | dma_addr_t da; |
| 785 | unsigned int i; |
| 786 | int ret; |
| 787 | |
| 788 | /* allocate descriptors */ |
| 789 | sc->desc_len = sizeof(struct ath5k_desc) * |
| 790 | (ATH_TXBUF + ATH_RXBUF + ATH_BCBUF + 1); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 791 | |
| 792 | sc->desc = dma_alloc_coherent(sc->dev, sc->desc_len, |
| 793 | &sc->desc_daddr, GFP_KERNEL); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 794 | if (sc->desc == NULL) { |
| 795 | ATH5K_ERR(sc, "can't allocate descriptors\n"); |
| 796 | ret = -ENOMEM; |
| 797 | goto err; |
| 798 | } |
| 799 | ds = sc->desc; |
| 800 | da = sc->desc_daddr; |
| 801 | ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "DMA map: %p (%zu) -> %llx\n", |
| 802 | ds, sc->desc_len, (unsigned long long)sc->desc_daddr); |
| 803 | |
| 804 | bf = kcalloc(1 + ATH_TXBUF + ATH_RXBUF + ATH_BCBUF, |
| 805 | sizeof(struct ath5k_buf), GFP_KERNEL); |
| 806 | if (bf == NULL) { |
| 807 | ATH5K_ERR(sc, "can't allocate bufptr\n"); |
| 808 | ret = -ENOMEM; |
| 809 | goto err_free; |
| 810 | } |
| 811 | sc->bufptr = bf; |
| 812 | |
| 813 | INIT_LIST_HEAD(&sc->rxbuf); |
| 814 | for (i = 0; i < ATH_RXBUF; i++, bf++, ds++, da += sizeof(*ds)) { |
| 815 | bf->desc = ds; |
| 816 | bf->daddr = da; |
| 817 | list_add_tail(&bf->list, &sc->rxbuf); |
| 818 | } |
| 819 | |
| 820 | INIT_LIST_HEAD(&sc->txbuf); |
| 821 | sc->txbuf_len = ATH_TXBUF; |
| 822 | for (i = 0; i < ATH_TXBUF; i++, bf++, ds++, |
| 823 | da += sizeof(*ds)) { |
| 824 | bf->desc = ds; |
| 825 | bf->daddr = da; |
| 826 | list_add_tail(&bf->list, &sc->txbuf); |
| 827 | } |
| 828 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 829 | /* beacon buffers */ |
| 830 | INIT_LIST_HEAD(&sc->bcbuf); |
| 831 | for (i = 0; i < ATH_BCBUF; i++, bf++, ds++, da += sizeof(*ds)) { |
| 832 | bf->desc = ds; |
| 833 | bf->daddr = da; |
| 834 | list_add_tail(&bf->list, &sc->bcbuf); |
| 835 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 836 | |
| 837 | return 0; |
| 838 | err_free: |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 839 | 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] | 840 | err: |
| 841 | sc->desc = NULL; |
| 842 | return ret; |
| 843 | } |
| 844 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 845 | void |
| 846 | ath5k_txbuf_free_skb(struct ath5k_softc *sc, struct ath5k_buf *bf) |
| 847 | { |
| 848 | BUG_ON(!bf); |
| 849 | if (!bf->skb) |
| 850 | return; |
| 851 | dma_unmap_single(sc->dev, bf->skbaddr, bf->skb->len, |
| 852 | DMA_TO_DEVICE); |
| 853 | dev_kfree_skb_any(bf->skb); |
| 854 | bf->skb = NULL; |
| 855 | bf->skbaddr = 0; |
| 856 | bf->desc->ds_data = 0; |
| 857 | } |
| 858 | |
| 859 | void |
| 860 | ath5k_rxbuf_free_skb(struct ath5k_softc *sc, struct ath5k_buf *bf) |
| 861 | { |
| 862 | struct ath5k_hw *ah = sc->ah; |
| 863 | struct ath_common *common = ath5k_hw_common(ah); |
| 864 | |
| 865 | BUG_ON(!bf); |
| 866 | if (!bf->skb) |
| 867 | return; |
| 868 | dma_unmap_single(sc->dev, bf->skbaddr, common->rx_bufsize, |
| 869 | DMA_FROM_DEVICE); |
| 870 | dev_kfree_skb_any(bf->skb); |
| 871 | bf->skb = NULL; |
| 872 | bf->skbaddr = 0; |
| 873 | bf->desc->ds_data = 0; |
| 874 | } |
| 875 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 876 | static void |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 877 | ath5k_desc_free(struct ath5k_softc *sc) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 878 | { |
| 879 | struct ath5k_buf *bf; |
| 880 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 881 | list_for_each_entry(bf, &sc->txbuf, list) |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 882 | ath5k_txbuf_free_skb(sc, bf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 883 | list_for_each_entry(bf, &sc->rxbuf, list) |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 884 | ath5k_rxbuf_free_skb(sc, bf); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 885 | list_for_each_entry(bf, &sc->bcbuf, list) |
| 886 | ath5k_txbuf_free_skb(sc, bf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 887 | |
| 888 | /* Free memory associated with all descriptors */ |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 889 | 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] | 890 | sc->desc = NULL; |
| 891 | sc->desc_daddr = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 892 | |
| 893 | kfree(sc->bufptr); |
| 894 | sc->bufptr = NULL; |
| 895 | } |
| 896 | |
| 897 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 898 | /**************\ |
| 899 | * Queues setup * |
| 900 | \**************/ |
| 901 | |
| 902 | static struct ath5k_txq * |
| 903 | ath5k_txq_setup(struct ath5k_softc *sc, |
| 904 | int qtype, int subtype) |
| 905 | { |
| 906 | struct ath5k_hw *ah = sc->ah; |
| 907 | struct ath5k_txq *txq; |
| 908 | struct ath5k_txq_info qi = { |
| 909 | .tqi_subtype = subtype, |
Bruno Randolf | de8af45 | 2010-09-17 11:37:12 +0900 | [diff] [blame] | 910 | /* XXX: default values not correct for B and XR channels, |
| 911 | * but who cares? */ |
| 912 | .tqi_aifs = AR5K_TUNE_AIFS, |
| 913 | .tqi_cw_min = AR5K_TUNE_CWMIN, |
| 914 | .tqi_cw_max = AR5K_TUNE_CWMAX |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 915 | }; |
| 916 | int qnum; |
| 917 | |
| 918 | /* |
| 919 | * Enable interrupts only for EOL and DESC conditions. |
| 920 | * We mark tx descriptors to receive a DESC interrupt |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 921 | * when a tx queue gets deep; otherwise we wait for the |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 922 | * EOL to reap descriptors. Note that this is done to |
| 923 | * reduce interrupt load and this only defers reaping |
| 924 | * descriptors, never transmitting frames. Aside from |
| 925 | * reducing interrupts this also permits more concurrency. |
| 926 | * The only potential downside is if the tx queue backs |
| 927 | * up in which case the top half of the kernel may backup |
| 928 | * due to a lack of tx descriptors. |
| 929 | */ |
| 930 | qi.tqi_flags = AR5K_TXQ_FLAG_TXEOLINT_ENABLE | |
| 931 | AR5K_TXQ_FLAG_TXDESCINT_ENABLE; |
| 932 | qnum = ath5k_hw_setup_tx_queue(ah, qtype, &qi); |
| 933 | if (qnum < 0) { |
| 934 | /* |
| 935 | * NB: don't print a message, this happens |
| 936 | * normally on parts with too few tx queues |
| 937 | */ |
| 938 | return ERR_PTR(qnum); |
| 939 | } |
| 940 | if (qnum >= ARRAY_SIZE(sc->txqs)) { |
| 941 | ATH5K_ERR(sc, "hw qnum %u out of range, max %tu!\n", |
| 942 | qnum, ARRAY_SIZE(sc->txqs)); |
| 943 | ath5k_hw_release_tx_queue(ah, qnum); |
| 944 | return ERR_PTR(-EINVAL); |
| 945 | } |
| 946 | txq = &sc->txqs[qnum]; |
| 947 | if (!txq->setup) { |
| 948 | txq->qnum = qnum; |
| 949 | txq->link = NULL; |
| 950 | INIT_LIST_HEAD(&txq->q); |
| 951 | spin_lock_init(&txq->lock); |
| 952 | txq->setup = true; |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 953 | txq->txq_len = 0; |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 954 | txq->txq_poll_mark = false; |
Bruno Randolf | 923e5b3 | 2010-09-17 11:37:02 +0900 | [diff] [blame] | 955 | txq->txq_stuck = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 956 | } |
| 957 | return &sc->txqs[qnum]; |
| 958 | } |
| 959 | |
| 960 | static int |
| 961 | ath5k_beaconq_setup(struct ath5k_hw *ah) |
| 962 | { |
| 963 | struct ath5k_txq_info qi = { |
Bruno Randolf | de8af45 | 2010-09-17 11:37:12 +0900 | [diff] [blame] | 964 | /* XXX: default values not correct for B and XR channels, |
| 965 | * but who cares? */ |
| 966 | .tqi_aifs = AR5K_TUNE_AIFS, |
| 967 | .tqi_cw_min = AR5K_TUNE_CWMIN, |
| 968 | .tqi_cw_max = AR5K_TUNE_CWMAX, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 969 | /* NB: for dynamic turbo, don't enable any other interrupts */ |
| 970 | .tqi_flags = AR5K_TXQ_FLAG_TXDESCINT_ENABLE |
| 971 | }; |
| 972 | |
| 973 | return ath5k_hw_setup_tx_queue(ah, AR5K_TX_QUEUE_BEACON, &qi); |
| 974 | } |
| 975 | |
| 976 | static int |
| 977 | ath5k_beaconq_config(struct ath5k_softc *sc) |
| 978 | { |
| 979 | struct ath5k_hw *ah = sc->ah; |
| 980 | struct ath5k_txq_info qi; |
| 981 | int ret; |
| 982 | |
| 983 | ret = ath5k_hw_get_tx_queueprops(ah, sc->bhalq, &qi); |
| 984 | if (ret) |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 985 | goto err; |
| 986 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 987 | if (sc->opmode == NL80211_IFTYPE_AP || |
| 988 | sc->opmode == NL80211_IFTYPE_MESH_POINT) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 989 | /* |
| 990 | * Always burst out beacon and CAB traffic |
| 991 | * (aifs = cwmin = cwmax = 0) |
| 992 | */ |
| 993 | qi.tqi_aifs = 0; |
| 994 | qi.tqi_cw_min = 0; |
| 995 | qi.tqi_cw_max = 0; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 996 | } else if (sc->opmode == NL80211_IFTYPE_ADHOC) { |
Bruno Randolf | 6d91e1d | 2008-01-19 18:18:41 +0900 | [diff] [blame] | 997 | /* |
| 998 | * Adhoc mode; backoff between 0 and (2 * cw_min). |
| 999 | */ |
| 1000 | qi.tqi_aifs = 0; |
| 1001 | qi.tqi_cw_min = 0; |
Bruno Randolf | de8af45 | 2010-09-17 11:37:12 +0900 | [diff] [blame] | 1002 | qi.tqi_cw_max = 2 * AR5K_TUNE_CWMIN; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1003 | } |
| 1004 | |
Bruno Randolf | 6d91e1d | 2008-01-19 18:18:41 +0900 | [diff] [blame] | 1005 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
| 1006 | "beacon queueprops tqi_aifs:%d tqi_cw_min:%d tqi_cw_max:%d\n", |
| 1007 | qi.tqi_aifs, qi.tqi_cw_min, qi.tqi_cw_max); |
| 1008 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1009 | ret = ath5k_hw_set_tx_queueprops(ah, sc->bhalq, &qi); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1010 | if (ret) { |
| 1011 | ATH5K_ERR(sc, "%s: unable to update parameters for beacon " |
| 1012 | "hardware queue!\n", __func__); |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 1013 | goto err; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1014 | } |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 1015 | ret = ath5k_hw_reset_tx_queue(ah, sc->bhalq); /* push to h/w */ |
| 1016 | if (ret) |
| 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 | /* reconfigure cabq with ready time to 80% of beacon_interval */ |
| 1020 | ret = ath5k_hw_get_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi); |
| 1021 | if (ret) |
| 1022 | goto err; |
| 1023 | |
| 1024 | qi.tqi_ready_time = (sc->bintval * 80) / 100; |
| 1025 | ret = ath5k_hw_set_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi); |
| 1026 | if (ret) |
| 1027 | goto err; |
| 1028 | |
| 1029 | ret = ath5k_hw_reset_tx_queue(ah, AR5K_TX_QUEUE_ID_CAB); |
| 1030 | err: |
| 1031 | return ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1032 | } |
| 1033 | |
Nick Kossifidis | 80dac9e | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1034 | /** |
| 1035 | * ath5k_drain_tx_buffs - Empty tx buffers |
| 1036 | * |
| 1037 | * @sc The &struct ath5k_softc |
| 1038 | * |
| 1039 | * Empty tx buffers from all queues in preparation |
| 1040 | * of a reset or during shutdown. |
| 1041 | * |
| 1042 | * NB: this assumes output has been stopped and |
| 1043 | * we do not need to block ath5k_tx_tasklet |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1044 | */ |
| 1045 | static void |
Nick Kossifidis | 80dac9e | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1046 | ath5k_drain_tx_buffs(struct ath5k_softc *sc) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1047 | { |
Nick Kossifidis | 80dac9e | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1048 | struct ath5k_txq *txq; |
| 1049 | struct ath5k_buf *bf, *bf0; |
| 1050 | int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1051 | |
Nick Kossifidis | 80dac9e | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1052 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) { |
| 1053 | if (sc->txqs[i].setup) { |
| 1054 | txq = &sc->txqs[i]; |
| 1055 | spin_lock_bh(&txq->lock); |
| 1056 | list_for_each_entry_safe(bf, bf0, &txq->q, list) { |
| 1057 | ath5k_debug_printtxbuf(sc, bf); |
| 1058 | |
| 1059 | ath5k_txbuf_free_skb(sc, bf); |
| 1060 | |
| 1061 | spin_lock_bh(&sc->txbuflock); |
| 1062 | list_move_tail(&bf->list, &sc->txbuf); |
| 1063 | sc->txbuf_len++; |
| 1064 | txq->txq_len--; |
| 1065 | spin_unlock_bh(&sc->txbuflock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1066 | } |
Nick Kossifidis | 80dac9e | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1067 | txq->link = NULL; |
| 1068 | txq->txq_poll_mark = false; |
| 1069 | spin_unlock_bh(&txq->lock); |
| 1070 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1071 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1072 | } |
| 1073 | |
| 1074 | static void |
| 1075 | ath5k_txq_release(struct ath5k_softc *sc) |
| 1076 | { |
| 1077 | struct ath5k_txq *txq = sc->txqs; |
| 1078 | unsigned int i; |
| 1079 | |
| 1080 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++, txq++) |
| 1081 | if (txq->setup) { |
| 1082 | ath5k_hw_release_tx_queue(sc->ah, txq->qnum); |
| 1083 | txq->setup = false; |
| 1084 | } |
| 1085 | } |
| 1086 | |
| 1087 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1088 | /*************\ |
| 1089 | * RX Handling * |
| 1090 | \*************/ |
| 1091 | |
| 1092 | /* |
| 1093 | * Enable the receive h/w following a reset. |
| 1094 | */ |
| 1095 | static int |
| 1096 | ath5k_rx_start(struct ath5k_softc *sc) |
| 1097 | { |
| 1098 | struct ath5k_hw *ah = sc->ah; |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 1099 | struct ath_common *common = ath5k_hw_common(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1100 | struct ath5k_buf *bf; |
| 1101 | int ret; |
| 1102 | |
Nick Kossifidis | b612798 | 2010-08-15 13:03:11 -0400 | [diff] [blame] | 1103 | common->rx_bufsize = roundup(IEEE80211_MAX_FRAME_LEN, common->cachelsz); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1104 | |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 1105 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "cachelsz %u rx_bufsize %u\n", |
| 1106 | common->cachelsz, common->rx_bufsize); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1107 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1108 | spin_lock_bh(&sc->rxbuflock); |
Bob Copeland | 2692504 | 2009-04-15 07:57:36 -0400 | [diff] [blame] | 1109 | sc->rxlink = NULL; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1110 | list_for_each_entry(bf, &sc->rxbuf, list) { |
| 1111 | ret = ath5k_rxbuf_setup(sc, bf); |
| 1112 | if (ret != 0) { |
| 1113 | spin_unlock_bh(&sc->rxbuflock); |
| 1114 | goto err; |
| 1115 | } |
| 1116 | } |
| 1117 | bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list); |
Bob Copeland | 2692504 | 2009-04-15 07:57:36 -0400 | [diff] [blame] | 1118 | ath5k_hw_set_rxdp(ah, bf->daddr); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1119 | spin_unlock_bh(&sc->rxbuflock); |
| 1120 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1121 | ath5k_hw_start_rx_dma(ah); /* enable recv descriptors */ |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1122 | ath5k_mode_setup(sc, NULL); /* set filters, etc. */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1123 | ath5k_hw_start_rx_pcu(ah); /* re-enable PCU/DMA engine */ |
| 1124 | |
| 1125 | return 0; |
| 1126 | err: |
| 1127 | return ret; |
| 1128 | } |
| 1129 | |
| 1130 | /* |
Nick Kossifidis | 80dac9e | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1131 | * Disable the receive logic on PCU (DRU) |
| 1132 | * In preparation for a shutdown. |
| 1133 | * |
| 1134 | * Note: Doesn't stop rx DMA, ath5k_hw_dma_stop |
| 1135 | * does. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1136 | */ |
| 1137 | static void |
| 1138 | ath5k_rx_stop(struct ath5k_softc *sc) |
| 1139 | { |
| 1140 | struct ath5k_hw *ah = sc->ah; |
| 1141 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1142 | ath5k_hw_set_rx_filter(ah, 0); /* clear recv filter */ |
Nick Kossifidis | 80dac9e | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 1143 | ath5k_hw_stop_rx_pcu(ah); /* disable PCU */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1144 | |
| 1145 | ath5k_debug_printrxbuffs(sc, ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | static unsigned int |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1149 | ath5k_rx_decrypted(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1150 | struct ath5k_rx_status *rs) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1151 | { |
Luis R. Rodriguez | dc1e001 | 2009-11-04 17:47:31 -0800 | [diff] [blame] | 1152 | struct ath5k_hw *ah = sc->ah; |
| 1153 | struct ath_common *common = ath5k_hw_common(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1154 | struct ieee80211_hdr *hdr = (void *)skb->data; |
Harvey Harrison | 798ee98 | 2008-07-15 18:44:02 -0700 | [diff] [blame] | 1155 | unsigned int keyix, hlen; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1156 | |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1157 | if (!(rs->rs_status & AR5K_RXERR_DECRYPT) && |
| 1158 | rs->rs_keyix != AR5K_RXKEYIX_INVALID) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1159 | return RX_FLAG_DECRYPTED; |
| 1160 | |
| 1161 | /* Apparently when a default key is used to decrypt the packet |
| 1162 | the hw does not set the index used to decrypt. In such cases |
| 1163 | get the index from the packet. */ |
Harvey Harrison | 798ee98 | 2008-07-15 18:44:02 -0700 | [diff] [blame] | 1164 | hlen = ieee80211_hdrlen(hdr->frame_control); |
Harvey Harrison | 24b56e7 | 2008-06-14 23:33:38 -0700 | [diff] [blame] | 1165 | if (ieee80211_has_protected(hdr->frame_control) && |
| 1166 | !(rs->rs_status & AR5K_RXERR_DECRYPT) && |
| 1167 | skb->len >= hlen + 4) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1168 | keyix = skb->data[hlen + 3] >> 6; |
| 1169 | |
Luis R. Rodriguez | dc1e001 | 2009-11-04 17:47:31 -0800 | [diff] [blame] | 1170 | if (test_bit(keyix, common->keymap)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1171 | return RX_FLAG_DECRYPTED; |
| 1172 | } |
| 1173 | |
| 1174 | return 0; |
| 1175 | } |
| 1176 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1177 | |
| 1178 | static void |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1179 | ath5k_check_ibss_tsf(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1180 | struct ieee80211_rx_status *rxs) |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1181 | { |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 1182 | struct ath_common *common = ath5k_hw_common(sc->ah); |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1183 | u64 tsf, bc_tstamp; |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1184 | u32 hw_tu; |
| 1185 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data; |
| 1186 | |
Harvey Harrison | 24b56e7 | 2008-06-14 23:33:38 -0700 | [diff] [blame] | 1187 | if (ieee80211_is_beacon(mgmt->frame_control) && |
Pavel Roskin | 38c07b4 | 2008-02-26 17:59:14 -0500 | [diff] [blame] | 1188 | le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS && |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 1189 | memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) == 0) { |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1190 | /* |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1191 | * Received an IBSS beacon with the same BSSID. Hardware *must* |
| 1192 | * have updated the local TSF. We have to work around various |
| 1193 | * hardware bugs, though... |
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 | tsf = ath5k_hw_get_tsf64(sc->ah); |
| 1196 | bc_tstamp = le64_to_cpu(mgmt->u.beacon.timestamp); |
| 1197 | hw_tu = TSF_TO_TU(tsf); |
| 1198 | |
| 1199 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 1200 | "beacon %llx mactime %llx (diff %lld) tsf now %llx\n", |
John W. Linville | 06501d2 | 2008-04-01 17:38:47 -0400 | [diff] [blame] | 1201 | (unsigned long long)bc_tstamp, |
| 1202 | (unsigned long long)rxs->mactime, |
| 1203 | (unsigned long long)(rxs->mactime - bc_tstamp), |
| 1204 | (unsigned long long)tsf); |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1205 | |
| 1206 | /* |
| 1207 | * Sometimes the HW will give us a wrong tstamp in the rx |
| 1208 | * status, causing the timestamp extension to go wrong. |
| 1209 | * (This seems to happen especially with beacon frames bigger |
| 1210 | * than 78 byte (incl. FCS)) |
| 1211 | * But we know that the receive timestamp must be later than the |
| 1212 | * timestamp of the beacon since HW must have synced to that. |
| 1213 | * |
| 1214 | * NOTE: here we assume mactime to be after the frame was |
| 1215 | * received, not like mac80211 which defines it at the start. |
| 1216 | */ |
| 1217 | if (bc_tstamp > rxs->mactime) { |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1218 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1219 | "fixing mactime from %llx to %llx\n", |
John W. Linville | 06501d2 | 2008-04-01 17:38:47 -0400 | [diff] [blame] | 1220 | (unsigned long long)rxs->mactime, |
| 1221 | (unsigned long long)tsf); |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1222 | rxs->mactime = tsf; |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1223 | } |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1224 | |
| 1225 | /* |
| 1226 | * Local TSF might have moved higher than our beacon timers, |
| 1227 | * in that case we have to update them to continue sending |
| 1228 | * beacons. This also takes care of synchronizing beacon sending |
| 1229 | * times with other stations. |
| 1230 | */ |
| 1231 | if (hw_tu >= sc->nexttbtt) |
| 1232 | ath5k_beacon_update_timers(sc, bc_tstamp); |
Bruno Randolf | 7f89612 | 2010-09-27 12:22:21 +0900 | [diff] [blame] | 1233 | |
| 1234 | /* Check if the beacon timers are still correct, because a TSF |
| 1235 | * update might have created a window between them - for a |
| 1236 | * longer description see the comment of this function: */ |
| 1237 | if (!ath5k_hw_check_beacon_timers(sc->ah, sc->bintval)) { |
| 1238 | ath5k_beacon_update_timers(sc, bc_tstamp); |
| 1239 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 1240 | "fixed beacon timers after beacon receive\n"); |
| 1241 | } |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1242 | } |
| 1243 | } |
| 1244 | |
Bruno Randolf | b4ea449 | 2010-03-25 14:49:25 +0900 | [diff] [blame] | 1245 | static void |
| 1246 | ath5k_update_beacon_rssi(struct ath5k_softc *sc, struct sk_buff *skb, int rssi) |
| 1247 | { |
| 1248 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data; |
| 1249 | struct ath5k_hw *ah = sc->ah; |
| 1250 | struct ath_common *common = ath5k_hw_common(ah); |
| 1251 | |
| 1252 | /* only beacons from our BSSID */ |
| 1253 | if (!ieee80211_is_beacon(mgmt->frame_control) || |
| 1254 | memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) != 0) |
| 1255 | return; |
| 1256 | |
Bruno Randolf | eef39be | 2010-11-16 10:58:43 +0900 | [diff] [blame] | 1257 | ewma_add(&ah->ah_beacon_rssi_avg, rssi); |
Bruno Randolf | b4ea449 | 2010-03-25 14:49:25 +0900 | [diff] [blame] | 1258 | |
| 1259 | /* in IBSS mode we should keep RSSI statistics per neighbour */ |
| 1260 | /* le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS */ |
| 1261 | } |
| 1262 | |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1263 | /* |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1264 | * Compute padding position. skb must contain an IEEE 802.11 frame |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1265 | */ |
| 1266 | static int ath5k_common_padpos(struct sk_buff *skb) |
| 1267 | { |
| 1268 | struct ieee80211_hdr * hdr = (struct ieee80211_hdr *)skb->data; |
| 1269 | __le16 frame_control = hdr->frame_control; |
| 1270 | int padpos = 24; |
| 1271 | |
| 1272 | if (ieee80211_has_a4(frame_control)) { |
| 1273 | padpos += ETH_ALEN; |
| 1274 | } |
| 1275 | if (ieee80211_is_data_qos(frame_control)) { |
| 1276 | padpos += IEEE80211_QOS_CTL_LEN; |
| 1277 | } |
| 1278 | |
| 1279 | return padpos; |
| 1280 | } |
| 1281 | |
| 1282 | /* |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1283 | * This function expects an 802.11 frame and returns the number of |
| 1284 | * bytes added, or -1 if we don't have enough header room. |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1285 | */ |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1286 | static int ath5k_add_padding(struct sk_buff *skb) |
| 1287 | { |
| 1288 | int padpos = ath5k_common_padpos(skb); |
| 1289 | int padsize = padpos & 3; |
| 1290 | |
| 1291 | if (padsize && skb->len>padpos) { |
| 1292 | |
| 1293 | if (skb_headroom(skb) < padsize) |
| 1294 | return -1; |
| 1295 | |
| 1296 | skb_push(skb, padsize); |
| 1297 | memmove(skb->data, skb->data+padsize, padpos); |
| 1298 | return padsize; |
| 1299 | } |
| 1300 | |
| 1301 | return 0; |
| 1302 | } |
| 1303 | |
| 1304 | /* |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1305 | * The MAC header is padded to have 32-bit boundary if the |
| 1306 | * packet payload is non-zero. The general calculation for |
| 1307 | * padsize would take into account odd header lengths: |
| 1308 | * padsize = 4 - (hdrlen & 3); however, since only |
| 1309 | * even-length headers are used, padding can only be 0 or 2 |
| 1310 | * bytes and we can optimize this a bit. We must not try to |
| 1311 | * remove padding from short control frames that do not have a |
| 1312 | * payload. |
| 1313 | * |
| 1314 | * This function expects an 802.11 frame and returns the number of |
| 1315 | * bytes removed. |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1316 | */ |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1317 | static int ath5k_remove_padding(struct sk_buff *skb) |
| 1318 | { |
| 1319 | int padpos = ath5k_common_padpos(skb); |
| 1320 | int padsize = padpos & 3; |
| 1321 | |
| 1322 | if (padsize && skb->len>=padpos+padsize) { |
| 1323 | memmove(skb->data + padsize, skb->data, padpos); |
| 1324 | skb_pull(skb, padsize); |
| 1325 | return padsize; |
| 1326 | } |
| 1327 | |
| 1328 | return 0; |
| 1329 | } |
| 1330 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1331 | static void |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1332 | ath5k_receive_frame(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1333 | struct ath5k_rx_status *rs) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1334 | { |
Bob Copeland | 1c5256b | 2009-08-24 23:00:32 -0400 | [diff] [blame] | 1335 | struct ieee80211_rx_status *rxs; |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1336 | |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1337 | ath5k_remove_padding(skb); |
| 1338 | |
| 1339 | rxs = IEEE80211_SKB_RXCB(skb); |
| 1340 | |
| 1341 | rxs->flag = 0; |
| 1342 | if (unlikely(rs->rs_status & AR5K_RXERR_MIC)) |
| 1343 | rxs->flag |= RX_FLAG_MMIC_ERROR; |
| 1344 | |
| 1345 | /* |
| 1346 | * always extend the mac timestamp, since this information is |
| 1347 | * also needed for proper IBSS merging. |
| 1348 | * |
| 1349 | * XXX: it might be too late to do it here, since rs_tstamp is |
| 1350 | * 15bit only. that means TSF extension has to be done within |
| 1351 | * 32768usec (about 32ms). it might be necessary to move this to |
| 1352 | * the interrupt handler, like it is done in madwifi. |
| 1353 | * |
| 1354 | * Unfortunately we don't know when the hardware takes the rx |
| 1355 | * timestamp (beginning of phy frame, data frame, end of rx?). |
| 1356 | * The only thing we know is that it is hardware specific... |
| 1357 | * On AR5213 it seems the rx timestamp is at the end of the |
| 1358 | * frame, but i'm not sure. |
| 1359 | * |
| 1360 | * NOTE: mac80211 defines mactime at the beginning of the first |
| 1361 | * data symbol. Since we don't have any time references it's |
| 1362 | * impossible to comply to that. This affects IBSS merge only |
| 1363 | * right now, so it's not too bad... |
| 1364 | */ |
| 1365 | rxs->mactime = ath5k_extend_tsf(sc->ah, rs->rs_tstamp); |
| 1366 | rxs->flag |= RX_FLAG_TSFT; |
| 1367 | |
| 1368 | rxs->freq = sc->curchan->center_freq; |
Bruno Randolf | 930a762 | 2011-01-19 18:21:13 +0900 | [diff] [blame] | 1369 | rxs->band = sc->curchan->band; |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1370 | |
| 1371 | rxs->signal = sc->ah->ah_noise_floor + rs->rs_rssi; |
| 1372 | |
| 1373 | rxs->antenna = rs->rs_antenna; |
| 1374 | |
| 1375 | if (rs->rs_antenna > 0 && rs->rs_antenna < 5) |
| 1376 | sc->stats.antenna_rx[rs->rs_antenna]++; |
| 1377 | else |
| 1378 | sc->stats.antenna_rx[0]++; /* invalid */ |
| 1379 | |
| 1380 | rxs->rate_idx = ath5k_hw_to_driver_rix(sc, rs->rs_rate); |
| 1381 | rxs->flag |= ath5k_rx_decrypted(sc, skb, rs); |
| 1382 | |
| 1383 | if (rxs->rate_idx >= 0 && rs->rs_rate == |
Bruno Randolf | 930a762 | 2011-01-19 18:21:13 +0900 | [diff] [blame] | 1384 | sc->sbands[sc->curchan->band].bitrates[rxs->rate_idx].hw_value_short) |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1385 | rxs->flag |= RX_FLAG_SHORTPRE; |
| 1386 | |
| 1387 | ath5k_debug_dump_skb(sc, skb, "RX ", 0); |
| 1388 | |
| 1389 | ath5k_update_beacon_rssi(sc, skb, rs->rs_rssi); |
| 1390 | |
| 1391 | /* check beacons in IBSS mode */ |
| 1392 | if (sc->opmode == NL80211_IFTYPE_ADHOC) |
| 1393 | ath5k_check_ibss_tsf(sc, skb, rxs); |
| 1394 | |
| 1395 | ieee80211_rx(sc->hw, skb); |
| 1396 | } |
| 1397 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1398 | /** ath5k_frame_receive_ok() - Do we want to receive this frame or not? |
| 1399 | * |
| 1400 | * Check if we want to further process this frame or not. Also update |
| 1401 | * statistics. Return true if we want this frame, false if not. |
| 1402 | */ |
| 1403 | static bool |
| 1404 | ath5k_receive_frame_ok(struct ath5k_softc *sc, struct ath5k_rx_status *rs) |
| 1405 | { |
| 1406 | sc->stats.rx_all_count++; |
Ben Greear | b72acdd | 2010-10-01 10:54:04 -0700 | [diff] [blame] | 1407 | sc->stats.rx_bytes_count += rs->rs_datalen; |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1408 | |
| 1409 | if (unlikely(rs->rs_status)) { |
| 1410 | if (rs->rs_status & AR5K_RXERR_CRC) |
| 1411 | sc->stats.rxerr_crc++; |
| 1412 | if (rs->rs_status & AR5K_RXERR_FIFO) |
| 1413 | sc->stats.rxerr_fifo++; |
| 1414 | if (rs->rs_status & AR5K_RXERR_PHY) { |
| 1415 | sc->stats.rxerr_phy++; |
| 1416 | if (rs->rs_phyerr > 0 && rs->rs_phyerr < 32) |
| 1417 | sc->stats.rxerr_phy_code[rs->rs_phyerr]++; |
| 1418 | return false; |
| 1419 | } |
| 1420 | if (rs->rs_status & AR5K_RXERR_DECRYPT) { |
| 1421 | /* |
| 1422 | * Decrypt error. If the error occurred |
| 1423 | * because there was no hardware key, then |
| 1424 | * let the frame through so the upper layers |
| 1425 | * can process it. This is necessary for 5210 |
| 1426 | * parts which have no way to setup a ``clear'' |
| 1427 | * key cache entry. |
| 1428 | * |
| 1429 | * XXX do key cache faulting |
| 1430 | */ |
| 1431 | sc->stats.rxerr_decrypt++; |
| 1432 | if (rs->rs_keyix == AR5K_RXKEYIX_INVALID && |
| 1433 | !(rs->rs_status & AR5K_RXERR_CRC)) |
| 1434 | return true; |
| 1435 | } |
| 1436 | if (rs->rs_status & AR5K_RXERR_MIC) { |
| 1437 | sc->stats.rxerr_mic++; |
| 1438 | return true; |
| 1439 | } |
| 1440 | |
Bob Copeland | 23538c2 | 2010-08-15 13:03:13 -0400 | [diff] [blame] | 1441 | /* reject any frames with non-crypto errors */ |
| 1442 | if (rs->rs_status & ~(AR5K_RXERR_DECRYPT)) |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1443 | return false; |
| 1444 | } |
| 1445 | |
| 1446 | if (unlikely(rs->rs_more)) { |
| 1447 | sc->stats.rxerr_jumbo++; |
| 1448 | return false; |
| 1449 | } |
| 1450 | return true; |
| 1451 | } |
| 1452 | |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1453 | static void |
| 1454 | ath5k_tasklet_rx(unsigned long data) |
| 1455 | { |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1456 | struct ath5k_rx_status rs = {}; |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 1457 | struct sk_buff *skb, *next_skb; |
| 1458 | dma_addr_t next_skb_addr; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1459 | struct ath5k_softc *sc = (void *)data; |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 1460 | struct ath5k_hw *ah = sc->ah; |
| 1461 | struct ath_common *common = ath5k_hw_common(ah); |
Bob Copeland | c57ca81 | 2009-04-15 07:57:35 -0400 | [diff] [blame] | 1462 | struct ath5k_buf *bf; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1463 | struct ath5k_desc *ds; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1464 | int ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1465 | |
| 1466 | spin_lock(&sc->rxbuflock); |
Jiri Slaby | 3a0f2c8 | 2008-07-15 17:44:18 +0200 | [diff] [blame] | 1467 | if (list_empty(&sc->rxbuf)) { |
| 1468 | ATH5K_WARN(sc, "empty rx buf pool\n"); |
| 1469 | goto unlock; |
| 1470 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1471 | do { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1472 | bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list); |
| 1473 | BUG_ON(bf->skb == NULL); |
| 1474 | skb = bf->skb; |
| 1475 | ds = bf->desc; |
| 1476 | |
Bob Copeland | c57ca81 | 2009-04-15 07:57:35 -0400 | [diff] [blame] | 1477 | /* bail if HW is still using self-linked descriptor */ |
| 1478 | if (ath5k_hw_get_rxdp(sc->ah) == bf->daddr) |
| 1479 | break; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1480 | |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1481 | ret = sc->ah->ah_proc_rx_desc(sc->ah, ds, &rs); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1482 | if (unlikely(ret == -EINPROGRESS)) |
| 1483 | break; |
| 1484 | else if (unlikely(ret)) { |
| 1485 | ATH5K_ERR(sc, "error in processing rx descriptor\n"); |
Bruno Randolf | 7644395 | 2010-03-09 16:56:00 +0900 | [diff] [blame] | 1486 | sc->stats.rxerr_proc++; |
Bruno Randolf | b16062f | 2010-06-16 19:11:46 +0900 | [diff] [blame] | 1487 | break; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1488 | } |
| 1489 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1490 | if (ath5k_receive_frame_ok(sc, &rs)) { |
| 1491 | next_skb = ath5k_rx_skb_alloc(sc, &next_skb_addr); |
Bruno Randolf | 7644395 | 2010-03-09 16:56:00 +0900 | [diff] [blame] | 1492 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1493 | /* |
| 1494 | * If we can't replace bf->skb with a new skb under |
| 1495 | * memory pressure, just skip this packet |
| 1496 | */ |
| 1497 | if (!next_skb) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1498 | goto next; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1499 | |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1500 | dma_unmap_single(sc->dev, bf->skbaddr, |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1501 | common->rx_bufsize, |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1502 | DMA_FROM_DEVICE); |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1503 | |
| 1504 | skb_put(skb, rs.rs_datalen); |
| 1505 | |
| 1506 | ath5k_receive_frame(sc, skb, &rs); |
| 1507 | |
| 1508 | bf->skb = next_skb; |
| 1509 | bf->skbaddr = next_skb_addr; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1510 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1511 | next: |
| 1512 | list_move_tail(&bf->list, &sc->rxbuf); |
| 1513 | } while (ath5k_rxbuf_setup(sc, bf) == 0); |
Jiri Slaby | 3a0f2c8 | 2008-07-15 17:44:18 +0200 | [diff] [blame] | 1514 | unlock: |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1515 | spin_unlock(&sc->rxbuflock); |
| 1516 | } |
| 1517 | |
| 1518 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1519 | /*************\ |
| 1520 | * TX Handling * |
| 1521 | \*************/ |
| 1522 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 1523 | int |
| 1524 | ath5k_tx_queue(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 1525 | struct ath5k_txq *txq) |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1526 | { |
| 1527 | struct ath5k_softc *sc = hw->priv; |
| 1528 | struct ath5k_buf *bf; |
| 1529 | unsigned long flags; |
| 1530 | int padsize; |
| 1531 | |
| 1532 | ath5k_debug_dump_skb(sc, skb, "TX ", 1); |
| 1533 | |
| 1534 | /* |
| 1535 | * The hardware expects the header padded to 4 byte boundaries. |
| 1536 | * If this is not the case, we add the padding after the header. |
| 1537 | */ |
| 1538 | padsize = ath5k_add_padding(skb); |
| 1539 | if (padsize < 0) { |
| 1540 | ATH5K_ERR(sc, "tx hdrlen not %%4: not enough" |
| 1541 | " headroom to pad"); |
| 1542 | goto drop_packet; |
| 1543 | } |
| 1544 | |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 1545 | if (txq->txq_len >= ATH5K_TXQ_LEN_MAX) |
| 1546 | ieee80211_stop_queue(hw, txq->qnum); |
| 1547 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1548 | spin_lock_irqsave(&sc->txbuflock, flags); |
| 1549 | if (list_empty(&sc->txbuf)) { |
| 1550 | ATH5K_ERR(sc, "no further txbuf available, dropping packet\n"); |
| 1551 | spin_unlock_irqrestore(&sc->txbuflock, flags); |
Bruno Randolf | 651d937 | 2010-09-17 11:36:46 +0900 | [diff] [blame] | 1552 | ieee80211_stop_queues(hw); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1553 | goto drop_packet; |
| 1554 | } |
| 1555 | bf = list_first_entry(&sc->txbuf, struct ath5k_buf, list); |
| 1556 | list_del(&bf->list); |
| 1557 | sc->txbuf_len--; |
| 1558 | if (list_empty(&sc->txbuf)) |
| 1559 | ieee80211_stop_queues(hw); |
| 1560 | spin_unlock_irqrestore(&sc->txbuflock, flags); |
| 1561 | |
| 1562 | bf->skb = skb; |
| 1563 | |
| 1564 | if (ath5k_txbuf_setup(sc, bf, txq, padsize)) { |
| 1565 | bf->skb = NULL; |
| 1566 | spin_lock_irqsave(&sc->txbuflock, flags); |
| 1567 | list_add_tail(&bf->list, &sc->txbuf); |
| 1568 | sc->txbuf_len++; |
| 1569 | spin_unlock_irqrestore(&sc->txbuflock, flags); |
| 1570 | goto drop_packet; |
| 1571 | } |
| 1572 | return NETDEV_TX_OK; |
| 1573 | |
| 1574 | drop_packet: |
| 1575 | dev_kfree_skb_any(skb); |
| 1576 | return NETDEV_TX_OK; |
| 1577 | } |
| 1578 | |
Bruno Randolf | 1440401 | 2010-09-17 11:36:51 +0900 | [diff] [blame] | 1579 | static void |
| 1580 | ath5k_tx_frame_completed(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1581 | struct ath5k_tx_status *ts) |
| 1582 | { |
| 1583 | struct ieee80211_tx_info *info; |
| 1584 | int i; |
| 1585 | |
| 1586 | sc->stats.tx_all_count++; |
Ben Greear | b72acdd | 2010-10-01 10:54:04 -0700 | [diff] [blame] | 1587 | sc->stats.tx_bytes_count += skb->len; |
Bruno Randolf | 1440401 | 2010-09-17 11:36:51 +0900 | [diff] [blame] | 1588 | info = IEEE80211_SKB_CB(skb); |
| 1589 | |
| 1590 | ieee80211_tx_info_clear_status(info); |
| 1591 | for (i = 0; i < 4; i++) { |
| 1592 | struct ieee80211_tx_rate *r = |
| 1593 | &info->status.rates[i]; |
| 1594 | |
| 1595 | if (ts->ts_rate[i]) { |
| 1596 | r->idx = ath5k_hw_to_driver_rix(sc, ts->ts_rate[i]); |
| 1597 | r->count = ts->ts_retry[i]; |
| 1598 | } else { |
| 1599 | r->idx = -1; |
| 1600 | r->count = 0; |
| 1601 | } |
| 1602 | } |
| 1603 | |
| 1604 | /* count the successful attempt as well */ |
| 1605 | info->status.rates[ts->ts_final_idx].count++; |
| 1606 | |
| 1607 | if (unlikely(ts->ts_status)) { |
| 1608 | sc->stats.ack_fail++; |
| 1609 | if (ts->ts_status & AR5K_TXERR_FILT) { |
| 1610 | info->flags |= IEEE80211_TX_STAT_TX_FILTERED; |
| 1611 | sc->stats.txerr_filt++; |
| 1612 | } |
| 1613 | if (ts->ts_status & AR5K_TXERR_XRETRY) |
| 1614 | sc->stats.txerr_retry++; |
| 1615 | if (ts->ts_status & AR5K_TXERR_FIFO) |
| 1616 | sc->stats.txerr_fifo++; |
| 1617 | } else { |
| 1618 | info->flags |= IEEE80211_TX_STAT_ACK; |
| 1619 | info->status.ack_signal = ts->ts_rssi; |
| 1620 | } |
| 1621 | |
| 1622 | /* |
| 1623 | * Remove MAC header padding before giving the frame |
| 1624 | * back to mac80211. |
| 1625 | */ |
| 1626 | ath5k_remove_padding(skb); |
| 1627 | |
| 1628 | if (ts->ts_antenna > 0 && ts->ts_antenna < 5) |
| 1629 | sc->stats.antenna_tx[ts->ts_antenna]++; |
| 1630 | else |
| 1631 | sc->stats.antenna_tx[0]++; /* invalid */ |
| 1632 | |
| 1633 | ieee80211_tx_status(sc->hw, skb); |
| 1634 | } |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1635 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1636 | static void |
| 1637 | ath5k_tx_processq(struct ath5k_softc *sc, struct ath5k_txq *txq) |
| 1638 | { |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1639 | struct ath5k_tx_status ts = {}; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1640 | struct ath5k_buf *bf, *bf0; |
| 1641 | struct ath5k_desc *ds; |
| 1642 | struct sk_buff *skb; |
Bruno Randolf | 1440401 | 2010-09-17 11:36:51 +0900 | [diff] [blame] | 1643 | int ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1644 | |
| 1645 | spin_lock(&txq->lock); |
| 1646 | list_for_each_entry_safe(bf, bf0, &txq->q, list) { |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1647 | |
| 1648 | txq->txq_poll_mark = false; |
| 1649 | |
| 1650 | /* skb might already have been processed last time. */ |
| 1651 | if (bf->skb != NULL) { |
| 1652 | ds = bf->desc; |
| 1653 | |
| 1654 | ret = sc->ah->ah_proc_tx_desc(sc->ah, ds, &ts); |
| 1655 | if (unlikely(ret == -EINPROGRESS)) |
| 1656 | break; |
| 1657 | else if (unlikely(ret)) { |
| 1658 | ATH5K_ERR(sc, |
| 1659 | "error %d while processing " |
| 1660 | "queue %u\n", ret, txq->qnum); |
| 1661 | break; |
| 1662 | } |
| 1663 | |
| 1664 | skb = bf->skb; |
| 1665 | bf->skb = NULL; |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1666 | |
| 1667 | dma_unmap_single(sc->dev, bf->skbaddr, skb->len, |
| 1668 | DMA_TO_DEVICE); |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1669 | ath5k_tx_frame_completed(sc, skb, &ts); |
| 1670 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1671 | |
Bob Copeland | a05988b | 2010-04-07 23:55:58 -0400 | [diff] [blame] | 1672 | /* |
| 1673 | * It's possible that the hardware can say the buffer is |
| 1674 | * completed when it hasn't yet loaded the ds_link from |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1675 | * host memory and moved on. |
| 1676 | * Always keep the last descriptor to avoid HW races... |
Bob Copeland | a05988b | 2010-04-07 23:55:58 -0400 | [diff] [blame] | 1677 | */ |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1678 | if (ath5k_hw_get_txdp(sc->ah, txq->qnum) != bf->daddr) { |
| 1679 | spin_lock(&sc->txbuflock); |
| 1680 | list_move_tail(&bf->list, &sc->txbuf); |
| 1681 | sc->txbuf_len++; |
| 1682 | txq->txq_len--; |
| 1683 | spin_unlock(&sc->txbuflock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1684 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1685 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1686 | spin_unlock(&txq->lock); |
Bruno Randolf | 4198a8d | 2010-10-05 13:27:17 +0900 | [diff] [blame] | 1687 | if (txq->txq_len < ATH5K_TXQ_LEN_LOW && txq->qnum < 4) |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 1688 | ieee80211_wake_queue(sc->hw, txq->qnum); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | static void |
| 1692 | ath5k_tasklet_tx(unsigned long data) |
| 1693 | { |
Bob Copeland | 8784d2e | 2009-07-29 17:32:28 -0400 | [diff] [blame] | 1694 | int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1695 | struct ath5k_softc *sc = (void *)data; |
| 1696 | |
Bob Copeland | 8784d2e | 2009-07-29 17:32:28 -0400 | [diff] [blame] | 1697 | for (i=0; i < AR5K_NUM_TX_QUEUES; i++) |
| 1698 | if (sc->txqs[i].setup && (sc->ah->ah_txq_isr & BIT(i))) |
| 1699 | ath5k_tx_processq(sc, &sc->txqs[i]); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1700 | } |
| 1701 | |
| 1702 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1703 | /*****************\ |
| 1704 | * Beacon handling * |
| 1705 | \*****************/ |
| 1706 | |
| 1707 | /* |
| 1708 | * Setup the beacon frame for transmit. |
| 1709 | */ |
| 1710 | static int |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1711 | ath5k_beacon_setup(struct ath5k_softc *sc, struct ath5k_buf *bf) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1712 | { |
| 1713 | struct sk_buff *skb = bf->skb; |
Johannes Berg | a888d52 | 2008-05-26 16:43:39 +0200 | [diff] [blame] | 1714 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1715 | struct ath5k_hw *ah = sc->ah; |
| 1716 | struct ath5k_desc *ds; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1717 | int ret = 0; |
| 1718 | u8 antenna; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1719 | u32 flags; |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1720 | const int padsize = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1721 | |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1722 | bf->skbaddr = dma_map_single(sc->dev, skb->data, skb->len, |
| 1723 | DMA_TO_DEVICE); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1724 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "skb %p [data %p len %u] " |
| 1725 | "skbaddr %llx\n", skb, skb->data, skb->len, |
| 1726 | (unsigned long long)bf->skbaddr); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1727 | |
| 1728 | if (dma_mapping_error(sc->dev, bf->skbaddr)) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1729 | ATH5K_ERR(sc, "beacon DMA mapping failed\n"); |
| 1730 | return -EIO; |
| 1731 | } |
| 1732 | |
| 1733 | ds = bf->desc; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1734 | antenna = ah->ah_tx_ant; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1735 | |
| 1736 | flags = AR5K_TXDESC_NOACK; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1737 | if (sc->opmode == NL80211_IFTYPE_ADHOC && ath5k_hw_hasveol(ah)) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1738 | ds->ds_link = bf->daddr; /* self-linked */ |
| 1739 | flags |= AR5K_TXDESC_VEOL; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1740 | } else |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1741 | ds->ds_link = 0; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1742 | |
| 1743 | /* |
| 1744 | * If we use multiple antennas on AP and use |
| 1745 | * the Sectored AP scenario, switch antenna every |
| 1746 | * 4 beacons to make sure everybody hears our AP. |
| 1747 | * When a client tries to associate, hw will keep |
| 1748 | * track of the tx antenna to be used for this client |
| 1749 | * automaticaly, based on ACKed packets. |
| 1750 | * |
| 1751 | * Note: AP still listens and transmits RTS on the |
| 1752 | * default antenna which is supposed to be an omni. |
| 1753 | * |
| 1754 | * Note2: On sectored scenarios it's possible to have |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1755 | * multiple antennas (1 omni -- the default -- and 14 |
| 1756 | * sectors), so if we choose to actually support this |
| 1757 | * mode, we need to allow the user to set how many antennas |
| 1758 | * we have and tweak the code below to send beacons |
| 1759 | * on all of them. |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1760 | */ |
| 1761 | if (ah->ah_ant_mode == AR5K_ANTMODE_SECTOR_AP) |
| 1762 | antenna = sc->bsent & 4 ? 2 : 1; |
| 1763 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1764 | |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 1765 | /* FIXME: If we are in g mode and rate is a CCK rate |
| 1766 | * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta |
| 1767 | * from tx power (value is in dB units already) */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1768 | ds->ds_data = bf->skbaddr; |
Bruno Randolf | 281c56d | 2008-02-05 18:44:55 +0900 | [diff] [blame] | 1769 | ret = ah->ah_setup_tx_desc(ah, ds, skb->len, |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1770 | ieee80211_get_hdrlen_from_skb(skb), padsize, |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 1771 | AR5K_PKT_TYPE_BEACON, (sc->power_level * 2), |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1772 | ieee80211_get_tx_rate(sc->hw, info)->hw_value, |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 1773 | 1, AR5K_TXKEYIX_INVALID, |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 1774 | antenna, flags, 0, 0); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1775 | if (ret) |
| 1776 | goto err_unmap; |
| 1777 | |
| 1778 | return 0; |
| 1779 | err_unmap: |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 1780 | dma_unmap_single(sc->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1781 | return ret; |
| 1782 | } |
| 1783 | |
| 1784 | /* |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1785 | * Updates the beacon that is sent by ath5k_beacon_send. For adhoc, |
| 1786 | * this is called only once at config_bss time, for AP we do it every |
| 1787 | * SWBA interrupt so that the TIM will reflect buffered frames. |
| 1788 | * |
| 1789 | * Called with the beacon lock. |
| 1790 | */ |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 1791 | int |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1792 | ath5k_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
| 1793 | { |
| 1794 | int ret; |
| 1795 | struct ath5k_softc *sc = hw->priv; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1796 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1797 | struct sk_buff *skb; |
| 1798 | |
| 1799 | if (WARN_ON(!vif)) { |
| 1800 | ret = -EINVAL; |
| 1801 | goto out; |
| 1802 | } |
| 1803 | |
| 1804 | skb = ieee80211_beacon_get(hw, vif); |
| 1805 | |
| 1806 | if (!skb) { |
| 1807 | ret = -ENOMEM; |
| 1808 | goto out; |
| 1809 | } |
| 1810 | |
| 1811 | ath5k_debug_dump_skb(sc, skb, "BC ", 1); |
| 1812 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1813 | ath5k_txbuf_free_skb(sc, avf->bbuf); |
| 1814 | avf->bbuf->skb = skb; |
| 1815 | ret = ath5k_beacon_setup(sc, avf->bbuf); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1816 | if (ret) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1817 | avf->bbuf->skb = NULL; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1818 | out: |
| 1819 | return ret; |
| 1820 | } |
| 1821 | |
| 1822 | /* |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1823 | * Transmit a beacon frame at SWBA. Dynamic updates to the |
| 1824 | * frame contents are done as needed and the slot time is |
| 1825 | * also adjusted based on current state. |
| 1826 | * |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 1827 | * This is called from software irq context (beacontq tasklets) |
| 1828 | * or user context from ath5k_beacon_config. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1829 | */ |
| 1830 | static void |
| 1831 | ath5k_beacon_send(struct ath5k_softc *sc) |
| 1832 | { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1833 | struct ath5k_hw *ah = sc->ah; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1834 | struct ieee80211_vif *vif; |
| 1835 | struct ath5k_vif *avf; |
| 1836 | struct ath5k_buf *bf; |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 1837 | struct sk_buff *skb; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1838 | |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1839 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "in beacon_send\n"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1840 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1841 | /* |
| 1842 | * Check if the previous beacon has gone out. If |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1843 | * not, don't don't try to post another: skip this |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1844 | * period and wait for the next. Missed beacons |
| 1845 | * indicate a problem and should not occur. If we |
| 1846 | * miss too many consecutive beacons reset the device. |
| 1847 | */ |
| 1848 | if (unlikely(ath5k_hw_num_tx_pending(ah, sc->bhalq) != 0)) { |
| 1849 | sc->bmisscount++; |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1850 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1851 | "missed %u consecutive beacons\n", sc->bmisscount); |
Nick Kossifidis | 428cbd4 | 2009-04-30 15:55:47 -0400 | [diff] [blame] | 1852 | if (sc->bmisscount > 10) { /* NB: 10 is a guess */ |
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 | "stuck beacon time (%u missed)\n", |
| 1855 | sc->bmisscount); |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 1856 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 1857 | "stuck beacon, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 1858 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1859 | } |
| 1860 | return; |
| 1861 | } |
| 1862 | if (unlikely(sc->bmisscount != 0)) { |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1863 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1864 | "resume beacon xmit after %u misses\n", |
| 1865 | sc->bmisscount); |
| 1866 | sc->bmisscount = 0; |
| 1867 | } |
| 1868 | |
Javier Cardona | b93996c | 2010-12-07 13:37:56 -0800 | [diff] [blame] | 1869 | if ((sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) || |
| 1870 | sc->opmode == NL80211_IFTYPE_MESH_POINT) { |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1871 | u64 tsf = ath5k_hw_get_tsf64(ah); |
| 1872 | u32 tsftu = TSF_TO_TU(tsf); |
| 1873 | int slot = ((tsftu % sc->bintval) * ATH_BCBUF) / sc->bintval; |
| 1874 | vif = sc->bslot[(slot + 1) % ATH_BCBUF]; |
| 1875 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
| 1876 | "tsf %llx tsftu %x intval %u slot %u vif %p\n", |
| 1877 | (unsigned long long)tsf, tsftu, sc->bintval, slot, vif); |
| 1878 | } else /* only one interface */ |
| 1879 | vif = sc->bslot[0]; |
| 1880 | |
| 1881 | if (!vif) |
| 1882 | return; |
| 1883 | |
| 1884 | avf = (void *)vif->drv_priv; |
| 1885 | bf = avf->bbuf; |
| 1886 | if (unlikely(bf->skb == NULL || sc->opmode == NL80211_IFTYPE_STATION || |
| 1887 | sc->opmode == NL80211_IFTYPE_MONITOR)) { |
| 1888 | ATH5K_WARN(sc, "bf=%p bf_skb=%p\n", bf, bf ? bf->skb : NULL); |
| 1889 | return; |
| 1890 | } |
| 1891 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1892 | /* |
| 1893 | * Stop any current dma and put the new frame on the queue. |
| 1894 | * This should never fail since we check above that no frames |
| 1895 | * are still pending on the queue. |
| 1896 | */ |
Nick Kossifidis | 14fae2d | 2010-11-23 20:55:17 +0200 | [diff] [blame] | 1897 | if (unlikely(ath5k_hw_stop_beacon_queue(ah, sc->bhalq))) { |
Nick Kossifidis | 428cbd4 | 2009-04-30 15:55:47 -0400 | [diff] [blame] | 1898 | 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] | 1899 | /* NB: hw still stops DMA, so proceed */ |
| 1900 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1901 | |
Javier Cardona | d82b577 | 2010-12-07 13:35:55 -0800 | [diff] [blame] | 1902 | /* refresh the beacon for AP or MESH mode */ |
| 1903 | if (sc->opmode == NL80211_IFTYPE_AP || |
| 1904 | sc->opmode == NL80211_IFTYPE_MESH_POINT) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1905 | ath5k_beacon_update(sc->hw, vif); |
Bob Copeland | 1071db8 | 2009-05-18 10:59:52 -0400 | [diff] [blame] | 1906 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1907 | ath5k_hw_set_txdp(ah, sc->bhalq, bf->daddr); |
| 1908 | ath5k_hw_start_tx_dma(ah, sc->bhalq); |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1909 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "TXDP[%u] = %llx (%p)\n", |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1910 | sc->bhalq, (unsigned long long)bf->daddr, bf->desc); |
| 1911 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1912 | skb = ieee80211_get_buffered_bc(sc->hw, vif); |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 1913 | while (skb) { |
| 1914 | ath5k_tx_queue(sc->hw, skb, sc->cabq); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1915 | skb = ieee80211_get_buffered_bc(sc->hw, vif); |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 1916 | } |
| 1917 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1918 | sc->bsent++; |
| 1919 | } |
| 1920 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1921 | /** |
| 1922 | * ath5k_beacon_update_timers - update beacon timers |
| 1923 | * |
| 1924 | * @sc: struct ath5k_softc pointer we are operating on |
| 1925 | * @bc_tsf: the timestamp of the beacon. 0 to reset the TSF. -1 to perform a |
| 1926 | * beacon timer update based on the current HW TSF. |
| 1927 | * |
| 1928 | * Calculate the next target beacon transmit time (TBTT) based on the timestamp |
| 1929 | * of a received beacon or the current local hardware TSF and write it to the |
| 1930 | * beacon timer registers. |
| 1931 | * |
| 1932 | * 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] | 1933 | * 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] | 1934 | * when we otherwise know we have to update the timers, but we keep it in this |
| 1935 | * function to have it all together in one place. |
| 1936 | */ |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 1937 | void |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1938 | ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1939 | { |
| 1940 | struct ath5k_hw *ah = sc->ah; |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1941 | u32 nexttbtt, intval, hw_tu, bc_tu; |
| 1942 | u64 hw_tsf; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1943 | |
| 1944 | intval = sc->bintval & AR5K_BEACON_PERIOD; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1945 | if (sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) { |
| 1946 | intval /= ATH_BCBUF; /* staggered multi-bss beacons */ |
| 1947 | if (intval < 15) |
| 1948 | ATH5K_WARN(sc, "intval %u is too low, min 15\n", |
| 1949 | intval); |
| 1950 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1951 | if (WARN_ON(!intval)) |
| 1952 | return; |
| 1953 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1954 | /* beacon TSF converted to TU */ |
| 1955 | bc_tu = TSF_TO_TU(bc_tsf); |
| 1956 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1957 | /* current TSF converted to TU */ |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1958 | hw_tsf = ath5k_hw_get_tsf64(ah); |
| 1959 | hw_tu = TSF_TO_TU(hw_tsf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1960 | |
Bruno Randolf | 11f21df | 2010-09-27 12:22:26 +0900 | [diff] [blame] | 1961 | #define FUDGE AR5K_TUNE_SW_BEACON_RESP + 3 |
| 1962 | /* We use FUDGE to make sure the next TBTT is ahead of the current TU. |
| 1963 | * Since we later substract AR5K_TUNE_SW_BEACON_RESP (10) in the timer |
| 1964 | * configuration we need to make sure it is bigger than that. */ |
| 1965 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1966 | if (bc_tsf == -1) { |
| 1967 | /* |
| 1968 | * no beacons received, called internally. |
| 1969 | * just need to refresh timers based on HW TSF. |
| 1970 | */ |
| 1971 | nexttbtt = roundup(hw_tu + FUDGE, intval); |
| 1972 | } else if (bc_tsf == 0) { |
| 1973 | /* |
| 1974 | * no beacon received, probably called by ath5k_reset_tsf(). |
| 1975 | * reset TSF to start with 0. |
| 1976 | */ |
| 1977 | nexttbtt = intval; |
| 1978 | intval |= AR5K_BEACON_RESET_TSF; |
| 1979 | } else if (bc_tsf > hw_tsf) { |
| 1980 | /* |
| 1981 | * beacon received, SW merge happend but HW TSF not yet updated. |
| 1982 | * not possible to reconfigure timers yet, but next time we |
| 1983 | * receive a beacon with the same BSSID, the hardware will |
| 1984 | * automatically update the TSF and then we need to reconfigure |
| 1985 | * the timers. |
| 1986 | */ |
| 1987 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 1988 | "need to wait for HW TSF sync\n"); |
| 1989 | return; |
| 1990 | } else { |
| 1991 | /* |
| 1992 | * most important case for beacon synchronization between STA. |
| 1993 | * |
| 1994 | * beacon received and HW TSF has been already updated by HW. |
| 1995 | * update next TBTT based on the TSF of the beacon, but make |
| 1996 | * sure it is ahead of our local TSF timer. |
| 1997 | */ |
| 1998 | nexttbtt = bc_tu + roundup(hw_tu + FUDGE - bc_tu, intval); |
| 1999 | } |
| 2000 | #undef FUDGE |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2001 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2002 | sc->nexttbtt = nexttbtt; |
| 2003 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2004 | intval |= AR5K_BEACON_ENA; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2005 | ath5k_hw_init_beacon(ah, nexttbtt, intval); |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 2006 | |
| 2007 | /* |
| 2008 | * debugging output last in order to preserve the time critical aspect |
| 2009 | * of this function |
| 2010 | */ |
| 2011 | if (bc_tsf == -1) |
| 2012 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2013 | "reconfigured timers based on HW TSF\n"); |
| 2014 | else if (bc_tsf == 0) |
| 2015 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2016 | "reset HW TSF and timers\n"); |
| 2017 | else |
| 2018 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2019 | "updated timers based on beacon TSF\n"); |
| 2020 | |
| 2021 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
David Miller | 04f93a8 | 2008-02-15 16:08:59 -0800 | [diff] [blame] | 2022 | "bc_tsf %llx hw_tsf %llx bc_tu %u hw_tu %u nexttbtt %u\n", |
| 2023 | (unsigned long long) bc_tsf, |
| 2024 | (unsigned long long) hw_tsf, bc_tu, hw_tu, nexttbtt); |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 2025 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "intval %u %s %s\n", |
| 2026 | intval & AR5K_BEACON_PERIOD, |
| 2027 | intval & AR5K_BEACON_ENA ? "AR5K_BEACON_ENA" : "", |
| 2028 | intval & AR5K_BEACON_RESET_TSF ? "AR5K_BEACON_RESET_TSF" : ""); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2029 | } |
| 2030 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2031 | /** |
| 2032 | * ath5k_beacon_config - Configure the beacon queues and interrupts |
| 2033 | * |
| 2034 | * @sc: struct ath5k_softc pointer we are operating on |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2035 | * |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2036 | * 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] | 2037 | * interrupts to detect TSF updates only. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2038 | */ |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 2039 | void |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2040 | ath5k_beacon_config(struct ath5k_softc *sc) |
| 2041 | { |
| 2042 | struct ath5k_hw *ah = sc->ah; |
Bob Copeland | b5f0395 | 2009-02-15 12:06:10 -0500 | [diff] [blame] | 2043 | unsigned long flags; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2044 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2045 | spin_lock_irqsave(&sc->block, flags); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2046 | sc->bmisscount = 0; |
Jiri Slaby | dc1968e | 2008-07-23 13:17:34 +0200 | [diff] [blame] | 2047 | sc->imask &= ~(AR5K_INT_BMISS | AR5K_INT_SWBA); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2048 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2049 | if (sc->enable_beacon) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2050 | /* |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2051 | * In IBSS mode we use a self-linked tx descriptor and let the |
| 2052 | * hardware send the beacons automatically. We have to load it |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2053 | * only once here. |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2054 | * We use the SWBA interrupt only to keep track of the beacon |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 2055 | * timers in order to detect automatic TSF updates. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2056 | */ |
| 2057 | ath5k_beaconq_config(sc); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2058 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2059 | sc->imask |= AR5K_INT_SWBA; |
| 2060 | |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2061 | if (sc->opmode == NL80211_IFTYPE_ADHOC) { |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2062 | if (ath5k_hw_hasveol(ah)) |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2063 | ath5k_beacon_send(sc); |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2064 | } else |
| 2065 | ath5k_beacon_update_timers(sc, -1); |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2066 | } else { |
Nick Kossifidis | 14fae2d | 2010-11-23 20:55:17 +0200 | [diff] [blame] | 2067 | ath5k_hw_stop_beacon_queue(sc->ah, sc->bhalq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2068 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2069 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 2070 | ath5k_hw_set_imr(ah, sc->imask); |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2071 | mmiowb(); |
| 2072 | spin_unlock_irqrestore(&sc->block, flags); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2073 | } |
| 2074 | |
Nick Kossifidis | 428cbd4 | 2009-04-30 15:55:47 -0400 | [diff] [blame] | 2075 | static void ath5k_tasklet_beacon(unsigned long data) |
| 2076 | { |
| 2077 | struct ath5k_softc *sc = (struct ath5k_softc *) data; |
| 2078 | |
| 2079 | /* |
| 2080 | * Software beacon alert--time to send a beacon. |
| 2081 | * |
| 2082 | * In IBSS mode we use this interrupt just to |
| 2083 | * keep track of the next TBTT (target beacon |
| 2084 | * transmission time) in order to detect wether |
| 2085 | * automatic TSF updates happened. |
| 2086 | */ |
| 2087 | if (sc->opmode == NL80211_IFTYPE_ADHOC) { |
| 2088 | /* XXX: only if VEOL suppported */ |
| 2089 | u64 tsf = ath5k_hw_get_tsf64(sc->ah); |
| 2090 | sc->nexttbtt += sc->bintval; |
| 2091 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
| 2092 | "SWBA nexttbtt: %x hw_tu: %x " |
| 2093 | "TSF: %llx\n", |
| 2094 | sc->nexttbtt, |
| 2095 | TSF_TO_TU(tsf), |
| 2096 | (unsigned long long) tsf); |
| 2097 | } else { |
| 2098 | spin_lock(&sc->block); |
| 2099 | ath5k_beacon_send(sc); |
| 2100 | spin_unlock(&sc->block); |
| 2101 | } |
| 2102 | } |
| 2103 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2104 | |
| 2105 | /********************\ |
| 2106 | * Interrupt handling * |
| 2107 | \********************/ |
| 2108 | |
Bruno Randolf | 6a8a3f6 | 2010-03-25 14:49:19 +0900 | [diff] [blame] | 2109 | static void |
| 2110 | ath5k_intr_calibration_poll(struct ath5k_hw *ah) |
| 2111 | { |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2112 | if (time_is_before_eq_jiffies(ah->ah_cal_next_ani) && |
| 2113 | !(ah->ah_cal_mask & AR5K_CALIBRATION_FULL)) { |
| 2114 | /* run ANI only when full calibration is not active */ |
| 2115 | ah->ah_cal_next_ani = jiffies + |
| 2116 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_ANI); |
| 2117 | tasklet_schedule(&ah->ah_sc->ani_tasklet); |
| 2118 | |
| 2119 | } else if (time_is_before_eq_jiffies(ah->ah_cal_next_full)) { |
Bruno Randolf | 6a8a3f6 | 2010-03-25 14:49:19 +0900 | [diff] [blame] | 2120 | ah->ah_cal_next_full = jiffies + |
| 2121 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_FULL); |
| 2122 | tasklet_schedule(&ah->ah_sc->calib); |
| 2123 | } |
| 2124 | /* we could use SWI to generate enough interrupts to meet our |
| 2125 | * calibration interval requirements, if necessary: |
| 2126 | * AR5K_REG_ENABLE_BITS(ah, AR5K_CR, AR5K_CR_SWI); */ |
| 2127 | } |
| 2128 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2129 | irqreturn_t |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2130 | ath5k_intr(int irq, void *dev_id) |
| 2131 | { |
| 2132 | struct ath5k_softc *sc = dev_id; |
| 2133 | struct ath5k_hw *ah = sc->ah; |
| 2134 | enum ath5k_int status; |
| 2135 | unsigned int counter = 1000; |
| 2136 | |
| 2137 | if (unlikely(test_bit(ATH_STAT_INVALID, sc->status) || |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 2138 | ((ath5k_get_bus_type(ah) != ATH_AHB) && |
| 2139 | !ath5k_hw_is_intr_pending(ah)))) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 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 | } |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 2205 | |
| 2206 | if (ath5k_get_bus_type(ah) == ATH_AHB) |
| 2207 | break; |
| 2208 | |
Bob Copeland | 2516baa | 2009-04-27 22:18:10 -0400 | [diff] [blame] | 2209 | } while (ath5k_hw_is_intr_pending(ah) && --counter > 0); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2210 | |
| 2211 | if (unlikely(!counter)) |
| 2212 | ATH5K_WARN(sc, "too many interrupts, giving up for now\n"); |
| 2213 | |
Bruno Randolf | 6a8a3f6 | 2010-03-25 14:49:19 +0900 | [diff] [blame] | 2214 | ath5k_intr_calibration_poll(ah); |
Nick Kossifidis | 6e220662 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2215 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2216 | return IRQ_HANDLED; |
| 2217 | } |
| 2218 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2219 | /* |
| 2220 | * Periodically recalibrate the PHY to account |
| 2221 | * for temperature/environment changes. |
| 2222 | */ |
| 2223 | static void |
Nick Kossifidis | 6e220662 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2224 | ath5k_tasklet_calibrate(unsigned long data) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2225 | { |
| 2226 | struct ath5k_softc *sc = (void *)data; |
| 2227 | struct ath5k_hw *ah = sc->ah; |
| 2228 | |
Nick Kossifidis | 6e220662 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2229 | /* Only full calibration for now */ |
Bruno Randolf | e65e1d7 | 2010-03-25 14:49:09 +0900 | [diff] [blame] | 2230 | ah->ah_cal_mask |= AR5K_CALIBRATION_FULL; |
Nick Kossifidis | 6e220662 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2231 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2232 | ATH5K_DBG(sc, ATH5K_DEBUG_CALIBRATE, "channel %u/%x\n", |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 2233 | ieee80211_frequency_to_channel(sc->curchan->center_freq), |
| 2234 | sc->curchan->hw_value); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2235 | |
Nick Kossifidis | 6f3b414 | 2009-02-09 06:03:41 +0200 | [diff] [blame] | 2236 | if (ath5k_hw_gainf_calibrate(ah) == AR5K_RFGAIN_NEED_CHANGE) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2237 | /* |
| 2238 | * Rfgain is out of bounds, reset the chip |
| 2239 | * to load new gain values. |
| 2240 | */ |
| 2241 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "calibration, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2242 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2243 | } |
| 2244 | if (ath5k_hw_phy_calibrate(ah, sc->curchan)) |
| 2245 | ATH5K_ERR(sc, "calibration of channel %u failed\n", |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 2246 | ieee80211_frequency_to_channel( |
| 2247 | sc->curchan->center_freq)); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2248 | |
Bruno Randolf | 0e8e02d | 2010-05-19 10:31:05 +0900 | [diff] [blame] | 2249 | /* Noise floor calibration interrupts rx/tx path while I/Q calibration |
Bruno Randolf | 651d937 | 2010-09-17 11:36:46 +0900 | [diff] [blame] | 2250 | * doesn't. |
| 2251 | * TODO: We should stop TX here, so that it doesn't interfere. |
| 2252 | * Note that stopping the queues is not enough to stop TX! */ |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2253 | if (time_is_before_eq_jiffies(ah->ah_cal_next_nf)) { |
| 2254 | ah->ah_cal_next_nf = jiffies + |
| 2255 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_NF); |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2256 | ath5k_hw_update_noise_floor(ah); |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2257 | } |
Nick Kossifidis | 6e220662 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2258 | |
Bruno Randolf | e65e1d7 | 2010-03-25 14:49:09 +0900 | [diff] [blame] | 2259 | ah->ah_cal_mask &= ~AR5K_CALIBRATION_FULL; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2260 | } |
| 2261 | |
| 2262 | |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2263 | static void |
| 2264 | ath5k_tasklet_ani(unsigned long data) |
| 2265 | { |
| 2266 | struct ath5k_softc *sc = (void *)data; |
| 2267 | struct ath5k_hw *ah = sc->ah; |
| 2268 | |
| 2269 | ah->ah_cal_mask |= AR5K_CALIBRATION_ANI; |
| 2270 | ath5k_ani_calibration(ah); |
| 2271 | ah->ah_cal_mask &= ~AR5K_CALIBRATION_ANI; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2272 | } |
| 2273 | |
| 2274 | |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2275 | static void |
| 2276 | ath5k_tx_complete_poll_work(struct work_struct *work) |
| 2277 | { |
| 2278 | struct ath5k_softc *sc = container_of(work, struct ath5k_softc, |
| 2279 | tx_complete_work.work); |
| 2280 | struct ath5k_txq *txq; |
| 2281 | int i; |
| 2282 | bool needreset = false; |
| 2283 | |
| 2284 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) { |
| 2285 | if (sc->txqs[i].setup) { |
| 2286 | txq = &sc->txqs[i]; |
| 2287 | spin_lock_bh(&txq->lock); |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 2288 | if (txq->txq_len > 1) { |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2289 | if (txq->txq_poll_mark) { |
| 2290 | ATH5K_DBG(sc, ATH5K_DEBUG_XMIT, |
| 2291 | "TX queue stuck %d\n", |
| 2292 | txq->qnum); |
| 2293 | needreset = true; |
Bruno Randolf | 923e5b3 | 2010-09-17 11:37:02 +0900 | [diff] [blame] | 2294 | txq->txq_stuck++; |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2295 | spin_unlock_bh(&txq->lock); |
| 2296 | break; |
| 2297 | } else { |
| 2298 | txq->txq_poll_mark = true; |
| 2299 | } |
| 2300 | } |
| 2301 | spin_unlock_bh(&txq->lock); |
| 2302 | } |
| 2303 | } |
| 2304 | |
| 2305 | if (needreset) { |
| 2306 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2307 | "TX queues stuck, resetting\n"); |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2308 | ath5k_reset(sc, NULL, true); |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2309 | } |
| 2310 | |
| 2311 | ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, |
| 2312 | msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT)); |
| 2313 | } |
| 2314 | |
| 2315 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2316 | /*************************\ |
| 2317 | * Initialization routines * |
| 2318 | \*************************/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2319 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2320 | int |
| 2321 | ath5k_init_softc(struct ath5k_softc *sc, const struct ath_bus_ops *bus_ops) |
| 2322 | { |
| 2323 | struct ieee80211_hw *hw = sc->hw; |
| 2324 | struct ath_common *common; |
| 2325 | int ret; |
| 2326 | int csz; |
| 2327 | |
| 2328 | /* Initialize driver private data */ |
| 2329 | SET_IEEE80211_DEV(hw, sc->dev); |
| 2330 | hw->flags = IEEE80211_HW_RX_INCLUDES_FCS | |
Nick Kossifidis | b9e61f1 | 2010-12-03 06:12:39 +0200 | [diff] [blame] | 2331 | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | |
| 2332 | IEEE80211_HW_SIGNAL_DBM | |
| 2333 | IEEE80211_HW_REPORTS_TX_ACK_STATUS; |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2334 | |
| 2335 | hw->wiphy->interface_modes = |
| 2336 | BIT(NL80211_IFTYPE_AP) | |
| 2337 | BIT(NL80211_IFTYPE_STATION) | |
| 2338 | BIT(NL80211_IFTYPE_ADHOC) | |
| 2339 | BIT(NL80211_IFTYPE_MESH_POINT); |
| 2340 | |
Bruno Randolf | 3de135d | 2010-12-16 11:30:33 +0900 | [diff] [blame] | 2341 | /* both antennas can be configured as RX or TX */ |
| 2342 | hw->wiphy->available_antennas_tx = 0x3; |
| 2343 | hw->wiphy->available_antennas_rx = 0x3; |
| 2344 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2345 | hw->extra_tx_headroom = 2; |
| 2346 | hw->channel_change_time = 5000; |
| 2347 | |
| 2348 | /* |
| 2349 | * Mark the device as detached to avoid processing |
| 2350 | * interrupts until setup is complete. |
| 2351 | */ |
| 2352 | __set_bit(ATH_STAT_INVALID, sc->status); |
| 2353 | |
| 2354 | sc->opmode = NL80211_IFTYPE_STATION; |
| 2355 | sc->bintval = 1000; |
| 2356 | mutex_init(&sc->lock); |
| 2357 | spin_lock_init(&sc->rxbuflock); |
| 2358 | spin_lock_init(&sc->txbuflock); |
| 2359 | spin_lock_init(&sc->block); |
| 2360 | |
| 2361 | |
| 2362 | /* Setup interrupt handler */ |
| 2363 | ret = request_irq(sc->irq, ath5k_intr, IRQF_SHARED, "ath", sc); |
| 2364 | if (ret) { |
| 2365 | ATH5K_ERR(sc, "request_irq failed\n"); |
| 2366 | goto err; |
| 2367 | } |
| 2368 | |
| 2369 | /* If we passed the test, malloc an ath5k_hw struct */ |
| 2370 | sc->ah = kzalloc(sizeof(struct ath5k_hw), GFP_KERNEL); |
| 2371 | if (!sc->ah) { |
| 2372 | ret = -ENOMEM; |
| 2373 | ATH5K_ERR(sc, "out of memory\n"); |
| 2374 | goto err_irq; |
| 2375 | } |
| 2376 | |
| 2377 | sc->ah->ah_sc = sc; |
| 2378 | sc->ah->ah_iobase = sc->iobase; |
| 2379 | common = ath5k_hw_common(sc->ah); |
| 2380 | common->ops = &ath5k_common_ops; |
| 2381 | common->bus_ops = bus_ops; |
| 2382 | common->ah = sc->ah; |
| 2383 | common->hw = hw; |
| 2384 | common->priv = sc; |
| 2385 | |
| 2386 | /* |
| 2387 | * Cache line size is used to size and align various |
| 2388 | * structures used to communicate with the hardware. |
| 2389 | */ |
| 2390 | ath5k_read_cachesize(common, &csz); |
| 2391 | common->cachelsz = csz << 2; /* convert to bytes */ |
| 2392 | |
| 2393 | spin_lock_init(&common->cc_lock); |
| 2394 | |
| 2395 | /* Initialize device */ |
| 2396 | ret = ath5k_hw_init(sc); |
| 2397 | if (ret) |
| 2398 | goto err_free_ah; |
| 2399 | |
| 2400 | /* set up multi-rate retry capabilities */ |
| 2401 | if (sc->ah->ah_version == AR5K_AR5212) { |
| 2402 | hw->max_rates = 4; |
| 2403 | hw->max_rate_tries = 11; |
| 2404 | } |
| 2405 | |
| 2406 | hw->vif_data_size = sizeof(struct ath5k_vif); |
| 2407 | |
| 2408 | /* Finish private driver data initialization */ |
| 2409 | ret = ath5k_init(hw); |
| 2410 | if (ret) |
| 2411 | goto err_ah; |
| 2412 | |
| 2413 | ATH5K_INFO(sc, "Atheros AR%s chip found (MAC: 0x%x, PHY: 0x%x)\n", |
| 2414 | ath5k_chip_name(AR5K_VERSION_MAC, sc->ah->ah_mac_srev), |
| 2415 | sc->ah->ah_mac_srev, |
| 2416 | sc->ah->ah_phy_revision); |
| 2417 | |
| 2418 | if (!sc->ah->ah_single_chip) { |
| 2419 | /* Single chip radio (!RF5111) */ |
| 2420 | if (sc->ah->ah_radio_5ghz_revision && |
| 2421 | !sc->ah->ah_radio_2ghz_revision) { |
| 2422 | /* No 5GHz support -> report 2GHz radio */ |
| 2423 | if (!test_bit(AR5K_MODE_11A, |
| 2424 | sc->ah->ah_capabilities.cap_mode)) { |
| 2425 | ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n", |
| 2426 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2427 | sc->ah->ah_radio_5ghz_revision), |
| 2428 | sc->ah->ah_radio_5ghz_revision); |
| 2429 | /* No 2GHz support (5110 and some |
| 2430 | * 5Ghz only cards) -> report 5Ghz radio */ |
| 2431 | } else if (!test_bit(AR5K_MODE_11B, |
| 2432 | sc->ah->ah_capabilities.cap_mode)) { |
| 2433 | ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n", |
| 2434 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2435 | sc->ah->ah_radio_5ghz_revision), |
| 2436 | sc->ah->ah_radio_5ghz_revision); |
| 2437 | /* Multiband radio */ |
| 2438 | } else { |
| 2439 | ATH5K_INFO(sc, "RF%s multiband radio found" |
| 2440 | " (0x%x)\n", |
| 2441 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2442 | sc->ah->ah_radio_5ghz_revision), |
| 2443 | sc->ah->ah_radio_5ghz_revision); |
| 2444 | } |
| 2445 | } |
| 2446 | /* Multi chip radio (RF5111 - RF2111) -> |
| 2447 | * report both 2GHz/5GHz radios */ |
| 2448 | else if (sc->ah->ah_radio_5ghz_revision && |
| 2449 | sc->ah->ah_radio_2ghz_revision){ |
| 2450 | ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n", |
| 2451 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2452 | sc->ah->ah_radio_5ghz_revision), |
| 2453 | sc->ah->ah_radio_5ghz_revision); |
| 2454 | ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n", |
| 2455 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 2456 | sc->ah->ah_radio_2ghz_revision), |
| 2457 | sc->ah->ah_radio_2ghz_revision); |
| 2458 | } |
| 2459 | } |
| 2460 | |
| 2461 | ath5k_debug_init_device(sc); |
| 2462 | |
| 2463 | /* ready to process interrupts */ |
| 2464 | __clear_bit(ATH_STAT_INVALID, sc->status); |
| 2465 | |
| 2466 | return 0; |
| 2467 | err_ah: |
| 2468 | ath5k_hw_deinit(sc->ah); |
| 2469 | err_free_ah: |
| 2470 | kfree(sc->ah); |
| 2471 | err_irq: |
| 2472 | free_irq(sc->irq, sc); |
| 2473 | err: |
| 2474 | return ret; |
| 2475 | } |
| 2476 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2477 | static int |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2478 | ath5k_stop_locked(struct ath5k_softc *sc) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2479 | { |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2480 | struct ath5k_hw *ah = sc->ah; |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 2481 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2482 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "invalid %u\n", |
| 2483 | test_bit(ATH_STAT_INVALID, sc->status)); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2484 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2485 | /* |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2486 | * Shutdown the hardware and driver: |
| 2487 | * stop output from above |
| 2488 | * disable interrupts |
| 2489 | * turn off timers |
| 2490 | * turn off the radio |
| 2491 | * clear transmit machinery |
| 2492 | * clear receive machinery |
| 2493 | * drain and release tx queues |
| 2494 | * reclaim beacon resources |
| 2495 | * power down hardware |
| 2496 | * |
| 2497 | * Note that some of this work is not possible if the |
| 2498 | * hardware is gone (invalid). |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2499 | */ |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2500 | ieee80211_stop_queues(sc->hw); |
| 2501 | |
| 2502 | if (!test_bit(ATH_STAT_INVALID, sc->status)) { |
| 2503 | ath5k_led_off(sc); |
| 2504 | ath5k_hw_set_imr(ah, 0); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2505 | synchronize_irq(sc->irq); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2506 | ath5k_rx_stop(sc); |
Nick Kossifidis | 80dac9e | 2010-11-23 20:45:38 +0200 | [diff] [blame] | 2507 | ath5k_hw_dma_stop(ah); |
| 2508 | ath5k_drain_tx_buffs(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2509 | ath5k_hw_phy_disable(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2510 | } |
| 2511 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2512 | return 0; |
| 2513 | } |
| 2514 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 2515 | int |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2516 | ath5k_init_hw(struct ath5k_softc *sc) |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2517 | { |
| 2518 | struct ath5k_hw *ah = sc->ah; |
| 2519 | struct ath_common *common = ath5k_hw_common(ah); |
| 2520 | int ret, i; |
| 2521 | |
| 2522 | mutex_lock(&sc->lock); |
| 2523 | |
| 2524 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "mode %d\n", sc->opmode); |
| 2525 | |
| 2526 | /* |
| 2527 | * Stop anything previously setup. This is safe |
| 2528 | * no matter this is the first time through or not. |
| 2529 | */ |
| 2530 | ath5k_stop_locked(sc); |
| 2531 | |
| 2532 | /* |
| 2533 | * The basic interface to setting the hardware in a good |
| 2534 | * state is ``reset''. On return the hardware is known to |
| 2535 | * be powered up and with interrupts disabled. This must |
| 2536 | * be followed by initialization of the appropriate bits |
| 2537 | * and then setup of the interrupt mask. |
| 2538 | */ |
| 2539 | sc->curchan = sc->hw->conf.channel; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2540 | sc->imask = AR5K_INT_RXOK | AR5K_INT_RXERR | AR5K_INT_RXEOL | |
| 2541 | AR5K_INT_RXORN | AR5K_INT_TXDESC | AR5K_INT_TXEOL | |
| 2542 | AR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB; |
| 2543 | |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2544 | ret = ath5k_reset(sc, NULL, false); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2545 | if (ret) |
| 2546 | goto done; |
| 2547 | |
| 2548 | ath5k_rfkill_hw_start(ah); |
| 2549 | |
| 2550 | /* |
| 2551 | * Reset the key cache since some parts do not reset the |
| 2552 | * contents on initial power up or resume from suspend. |
| 2553 | */ |
| 2554 | for (i = 0; i < common->keymax; i++) |
| 2555 | ath_hw_keyreset(common, (u16) i); |
| 2556 | |
Nick Kossifidis | 61cde03 | 2010-11-23 21:12:23 +0200 | [diff] [blame] | 2557 | /* Use higher rates for acks instead of base |
| 2558 | * rate */ |
| 2559 | ah->ah_ack_bitrate_high = true; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2560 | |
| 2561 | for (i = 0; i < ARRAY_SIZE(sc->bslot); i++) |
| 2562 | sc->bslot[i] = NULL; |
| 2563 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2564 | ret = 0; |
| 2565 | done: |
| 2566 | mmiowb(); |
| 2567 | mutex_unlock(&sc->lock); |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2568 | |
| 2569 | ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, |
| 2570 | msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT)); |
| 2571 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2572 | return ret; |
| 2573 | } |
| 2574 | |
| 2575 | static void stop_tasklets(struct ath5k_softc *sc) |
| 2576 | { |
| 2577 | tasklet_kill(&sc->rxtq); |
| 2578 | tasklet_kill(&sc->txtq); |
| 2579 | tasklet_kill(&sc->calib); |
| 2580 | tasklet_kill(&sc->beacontq); |
| 2581 | tasklet_kill(&sc->ani_tasklet); |
| 2582 | } |
| 2583 | |
| 2584 | /* |
| 2585 | * Stop the device, grabbing the top-level lock to protect |
| 2586 | * against concurrent entry through ath5k_init (which can happen |
| 2587 | * if another thread does a system call and the thread doing the |
| 2588 | * stop is preempted). |
| 2589 | */ |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 2590 | int |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2591 | ath5k_stop_hw(struct ath5k_softc *sc) |
| 2592 | { |
| 2593 | int ret; |
| 2594 | |
| 2595 | mutex_lock(&sc->lock); |
| 2596 | ret = ath5k_stop_locked(sc); |
| 2597 | if (ret == 0 && !test_bit(ATH_STAT_INVALID, sc->status)) { |
| 2598 | /* |
| 2599 | * Don't set the card in full sleep mode! |
| 2600 | * |
| 2601 | * a) When the device is in this state it must be carefully |
| 2602 | * woken up or references to registers in the PCI clock |
| 2603 | * domain may freeze the bus (and system). This varies |
| 2604 | * by chip and is mostly an issue with newer parts |
| 2605 | * (madwifi sources mentioned srev >= 0x78) that go to |
| 2606 | * sleep more quickly. |
| 2607 | * |
| 2608 | * b) On older chips full sleep results a weird behaviour |
| 2609 | * during wakeup. I tested various cards with srev < 0x78 |
| 2610 | * and they don't wake up after module reload, a second |
| 2611 | * module reload is needed to bring the card up again. |
| 2612 | * |
| 2613 | * Until we figure out what's going on don't enable |
| 2614 | * full chip reset on any chip (this is what Legacy HAL |
| 2615 | * and Sam's HAL do anyway). Instead Perform a full reset |
| 2616 | * on the device (same as initial state after attach) and |
| 2617 | * leave it idle (keep MAC/BB on warm reset) */ |
| 2618 | ret = ath5k_hw_on_hold(sc->ah); |
| 2619 | |
| 2620 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2621 | "putting device to sleep\n"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2622 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2623 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2624 | mmiowb(); |
| 2625 | mutex_unlock(&sc->lock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2626 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2627 | stop_tasklets(sc); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2628 | |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2629 | cancel_delayed_work_sync(&sc->tx_complete_work); |
| 2630 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2631 | ath5k_rfkill_hw_stop(sc->ah); |
| 2632 | |
| 2633 | return ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2634 | } |
| 2635 | |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2636 | /* |
| 2637 | * Reset the hardware. If chan is not NULL, then also pause rx/tx |
| 2638 | * and change to the given channel. |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2639 | * |
| 2640 | * This should be called with sc->lock. |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2641 | */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2642 | static int |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2643 | ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan, |
| 2644 | bool skip_pcu) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2645 | { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2646 | struct ath5k_hw *ah = sc->ah; |
Bruno Randolf | f15a4bb | 2010-12-16 16:22:20 +0900 | [diff] [blame] | 2647 | struct ath_common *common = ath5k_hw_common(ah); |
Nick Kossifidis | 344b54b | 2010-12-03 06:07:13 +0200 | [diff] [blame] | 2648 | int ret, ani_mode; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2649 | |
| 2650 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "resetting\n"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2651 | |
Bob Copeland | 450464d | 2010-07-13 11:32:41 -0400 | [diff] [blame] | 2652 | ath5k_hw_set_imr(ah, 0); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2653 | synchronize_irq(sc->irq); |
Bob Copeland | 450464d | 2010-07-13 11:32:41 -0400 | [diff] [blame] | 2654 | stop_tasklets(sc); |
| 2655 | |
Nick Kossifidis | 344b54b | 2010-12-03 06:07:13 +0200 | [diff] [blame] | 2656 | /* Save ani mode and disable ANI durring |
| 2657 | * reset. If we don't we might get false |
| 2658 | * PHY error interrupts. */ |
| 2659 | ani_mode = ah->ah_sc->ani_state.ani_mode; |
| 2660 | ath5k_ani_init(ah, ATH5K_ANI_MODE_OFF); |
| 2661 | |
Nick Kossifidis | 19252ec | 2010-12-03 06:05:19 +0200 | [diff] [blame] | 2662 | /* We are going to empty hw queues |
| 2663 | * so we should also free any remaining |
| 2664 | * tx buffers */ |
| 2665 | ath5k_drain_tx_buffs(sc); |
Bruno Randolf | 930a762 | 2011-01-19 18:21:13 +0900 | [diff] [blame] | 2666 | if (chan) |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2667 | sc->curchan = chan; |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2668 | ret = ath5k_hw_reset(ah, sc->opmode, sc->curchan, chan != NULL, |
| 2669 | skip_pcu); |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2670 | if (ret) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2671 | ATH5K_ERR(sc, "can't reset hardware (%d)\n", ret); |
| 2672 | goto err; |
| 2673 | } |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2674 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2675 | ret = ath5k_rx_start(sc); |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2676 | if (ret) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2677 | ATH5K_ERR(sc, "can't start recv logic\n"); |
| 2678 | goto err; |
| 2679 | } |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2680 | |
Nick Kossifidis | 344b54b | 2010-12-03 06:07:13 +0200 | [diff] [blame] | 2681 | ath5k_ani_init(ah, ani_mode); |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2682 | |
Bruno Randolf | ac55952 | 2010-05-19 10:30:55 +0900 | [diff] [blame] | 2683 | ah->ah_cal_next_full = jiffies; |
| 2684 | ah->ah_cal_next_ani = jiffies; |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2685 | ah->ah_cal_next_nf = jiffies; |
Bruno Randolf | 5dcc03f | 2010-12-02 19:12:31 +0900 | [diff] [blame] | 2686 | ewma_init(&ah->ah_beacon_rssi_avg, 1024, 8); |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2687 | |
Bruno Randolf | f15a4bb | 2010-12-16 16:22:20 +0900 | [diff] [blame] | 2688 | /* clear survey data and cycle counters */ |
| 2689 | memset(&sc->survey, 0, sizeof(sc->survey)); |
Bob Copeland | bb00755 | 2010-12-26 12:10:05 -0500 | [diff] [blame] | 2690 | spin_lock_bh(&common->cc_lock); |
Bruno Randolf | f15a4bb | 2010-12-16 16:22:20 +0900 | [diff] [blame] | 2691 | ath_hw_cycle_counters_update(common); |
| 2692 | memset(&common->cc_survey, 0, sizeof(common->cc_survey)); |
| 2693 | memset(&common->cc_ani, 0, sizeof(common->cc_ani)); |
Bob Copeland | bb00755 | 2010-12-26 12:10:05 -0500 | [diff] [blame] | 2694 | spin_unlock_bh(&common->cc_lock); |
Bruno Randolf | f15a4bb | 2010-12-16 16:22:20 +0900 | [diff] [blame] | 2695 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2696 | /* |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2697 | * Change channels and update the h/w rate map if we're switching; |
| 2698 | * e.g. 11a to 11b/g. |
| 2699 | * |
| 2700 | * We may be doing a reset in response to an ioctl that changes the |
| 2701 | * channel so update any state that might change as a result. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2702 | * |
| 2703 | * XXX needed? |
| 2704 | */ |
| 2705 | /* ath5k_chan_change(sc, c); */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2706 | |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2707 | ath5k_beacon_config(sc); |
| 2708 | /* intrs are enabled by ath5k_beacon_config */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2709 | |
Bruno Randolf | 397f385 | 2010-05-19 10:30:49 +0900 | [diff] [blame] | 2710 | ieee80211_wake_queues(sc->hw); |
| 2711 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2712 | return 0; |
| 2713 | err: |
| 2714 | return ret; |
| 2715 | } |
| 2716 | |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2717 | static void ath5k_reset_work(struct work_struct *work) |
| 2718 | { |
| 2719 | struct ath5k_softc *sc = container_of(work, struct ath5k_softc, |
| 2720 | reset_work); |
| 2721 | |
| 2722 | mutex_lock(&sc->lock); |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 2723 | ath5k_reset(sc, NULL, true); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2724 | mutex_unlock(&sc->lock); |
| 2725 | } |
| 2726 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2727 | static int |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2728 | ath5k_init(struct ieee80211_hw *hw) |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2729 | { |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2730 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2731 | struct ath5k_softc *sc = hw->priv; |
| 2732 | struct ath5k_hw *ah = sc->ah; |
| 2733 | struct ath_regulatory *regulatory = ath5k_hw_regulatory(ah); |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2734 | struct ath5k_txq *txq; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2735 | u8 mac[ETH_ALEN] = {}; |
| 2736 | int ret; |
| 2737 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2738 | |
| 2739 | /* |
| 2740 | * Check if the MAC has multi-rate retry support. |
| 2741 | * We do this by trying to setup a fake extended |
| 2742 | * descriptor. MACs that don't have support will |
| 2743 | * return false w/o doing anything. MACs that do |
| 2744 | * support it will return true w/o doing anything. |
| 2745 | */ |
| 2746 | ret = ath5k_hw_setup_mrr_tx_desc(ah, NULL, 0, 0, 0, 0, 0, 0); |
| 2747 | |
| 2748 | if (ret < 0) |
| 2749 | goto err; |
| 2750 | if (ret > 0) |
| 2751 | __set_bit(ATH_STAT_MRRETRY, sc->status); |
| 2752 | |
| 2753 | /* |
| 2754 | * Collect the channel list. The 802.11 layer |
| 2755 | * is resposible for filtering this list based |
| 2756 | * on settings like the phy mode and regulatory |
| 2757 | * domain restrictions. |
| 2758 | */ |
| 2759 | ret = ath5k_setup_bands(hw); |
| 2760 | if (ret) { |
| 2761 | ATH5K_ERR(sc, "can't get channels\n"); |
| 2762 | goto err; |
| 2763 | } |
| 2764 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2765 | /* |
| 2766 | * Allocate tx+rx descriptors and populate the lists. |
| 2767 | */ |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2768 | ret = ath5k_desc_alloc(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2769 | if (ret) { |
| 2770 | ATH5K_ERR(sc, "can't allocate descriptors\n"); |
| 2771 | goto err; |
| 2772 | } |
| 2773 | |
| 2774 | /* |
| 2775 | * Allocate hardware transmit queues: one queue for |
| 2776 | * beacon frames and one data queue for each QoS |
| 2777 | * priority. Note that hw functions handle resetting |
| 2778 | * these queues at the needed time. |
| 2779 | */ |
| 2780 | ret = ath5k_beaconq_setup(ah); |
| 2781 | if (ret < 0) { |
| 2782 | ATH5K_ERR(sc, "can't setup a beacon xmit queue\n"); |
| 2783 | goto err_desc; |
| 2784 | } |
| 2785 | sc->bhalq = ret; |
| 2786 | sc->cabq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_CAB, 0); |
| 2787 | if (IS_ERR(sc->cabq)) { |
| 2788 | ATH5K_ERR(sc, "can't setup cab queue\n"); |
| 2789 | ret = PTR_ERR(sc->cabq); |
| 2790 | goto err_bhal; |
| 2791 | } |
| 2792 | |
Bruno Randolf | 22d8d9f | 2010-12-07 11:08:12 +0900 | [diff] [blame] | 2793 | /* 5211 and 5212 usually support 10 queues but we better rely on the |
| 2794 | * capability information */ |
| 2795 | if (ah->ah_capabilities.cap_queues.q_tx_num >= 6) { |
| 2796 | /* This order matches mac80211's queue priority, so we can |
| 2797 | * directly use the mac80211 queue number without any mapping */ |
| 2798 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VO); |
| 2799 | if (IS_ERR(txq)) { |
| 2800 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2801 | ret = PTR_ERR(txq); |
| 2802 | goto err_queues; |
| 2803 | } |
| 2804 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VI); |
| 2805 | if (IS_ERR(txq)) { |
| 2806 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2807 | ret = PTR_ERR(txq); |
| 2808 | goto err_queues; |
| 2809 | } |
| 2810 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BE); |
| 2811 | if (IS_ERR(txq)) { |
| 2812 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2813 | ret = PTR_ERR(txq); |
| 2814 | goto err_queues; |
| 2815 | } |
| 2816 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BK); |
| 2817 | if (IS_ERR(txq)) { |
| 2818 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2819 | ret = PTR_ERR(txq); |
| 2820 | goto err_queues; |
| 2821 | } |
| 2822 | hw->queues = 4; |
| 2823 | } else { |
| 2824 | /* older hardware (5210) can only support one data queue */ |
| 2825 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BE); |
| 2826 | if (IS_ERR(txq)) { |
| 2827 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2828 | ret = PTR_ERR(txq); |
| 2829 | goto err_queues; |
| 2830 | } |
| 2831 | hw->queues = 1; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2832 | } |
| 2833 | |
| 2834 | tasklet_init(&sc->rxtq, ath5k_tasklet_rx, (unsigned long)sc); |
| 2835 | tasklet_init(&sc->txtq, ath5k_tasklet_tx, (unsigned long)sc); |
| 2836 | tasklet_init(&sc->calib, ath5k_tasklet_calibrate, (unsigned long)sc); |
| 2837 | tasklet_init(&sc->beacontq, ath5k_tasklet_beacon, (unsigned long)sc); |
| 2838 | tasklet_init(&sc->ani_tasklet, ath5k_tasklet_ani, (unsigned long)sc); |
| 2839 | |
| 2840 | INIT_WORK(&sc->reset_work, ath5k_reset_work); |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2841 | INIT_DELAYED_WORK(&sc->tx_complete_work, ath5k_tx_complete_poll_work); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2842 | |
| 2843 | ret = ath5k_eeprom_read_mac(ah, mac); |
| 2844 | if (ret) { |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2845 | ATH5K_ERR(sc, "unable to read address from EEPROM\n"); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2846 | goto err_queues; |
| 2847 | } |
| 2848 | |
| 2849 | SET_IEEE80211_PERM_ADDR(hw, mac); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2850 | memcpy(&sc->lladdr, mac, ETH_ALEN); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2851 | /* All MAC address bits matter for ACKs */ |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 2852 | ath5k_update_bssid_mask_and_opmode(sc, NULL); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2853 | |
| 2854 | regulatory->current_rd = ah->ah_capabilities.cap_eeprom.ee_regdomain; |
| 2855 | ret = ath_regd_init(regulatory, hw->wiphy, ath5k_reg_notifier); |
| 2856 | if (ret) { |
| 2857 | ATH5K_ERR(sc, "can't initialize regulatory system\n"); |
| 2858 | goto err_queues; |
| 2859 | } |
| 2860 | |
| 2861 | ret = ieee80211_register_hw(hw); |
| 2862 | if (ret) { |
| 2863 | ATH5K_ERR(sc, "can't register ieee80211 hw\n"); |
| 2864 | goto err_queues; |
| 2865 | } |
| 2866 | |
| 2867 | if (!ath_is_world_regd(regulatory)) |
| 2868 | regulatory_hint(hw->wiphy, regulatory->alpha2); |
| 2869 | |
| 2870 | ath5k_init_leds(sc); |
| 2871 | |
| 2872 | ath5k_sysfs_register(sc); |
| 2873 | |
| 2874 | return 0; |
| 2875 | err_queues: |
| 2876 | ath5k_txq_release(sc); |
| 2877 | err_bhal: |
| 2878 | ath5k_hw_release_tx_queue(ah, sc->bhalq); |
| 2879 | err_desc: |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2880 | ath5k_desc_free(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2881 | err: |
| 2882 | return ret; |
| 2883 | } |
| 2884 | |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2885 | void |
| 2886 | ath5k_deinit_softc(struct ath5k_softc *sc) |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2887 | { |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2888 | struct ieee80211_hw *hw = sc->hw; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2889 | |
| 2890 | /* |
| 2891 | * NB: the order of these is important: |
| 2892 | * o call the 802.11 layer before detaching ath5k_hw to |
| 2893 | * ensure callbacks into the driver to delete global |
| 2894 | * key cache entries can be handled |
| 2895 | * o reclaim the tx queue data structures after calling |
| 2896 | * the 802.11 layer as we'll get called back to reclaim |
| 2897 | * node state and potentially want to use them |
| 2898 | * o to cleanup the tx queues the hal is called, so detach |
| 2899 | * it last |
| 2900 | * XXX: ??? detach ath5k_hw ??? |
| 2901 | * Other than that, it's straightforward... |
| 2902 | */ |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2903 | ath5k_debug_finish_device(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2904 | ieee80211_unregister_hw(hw); |
Felix Fietkau | aeae4ac | 2010-12-02 10:26:51 +0100 | [diff] [blame] | 2905 | ath5k_desc_free(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2906 | ath5k_txq_release(sc); |
| 2907 | ath5k_hw_release_tx_queue(sc->ah, sc->bhalq); |
| 2908 | ath5k_unregister_leds(sc); |
| 2909 | |
| 2910 | ath5k_sysfs_unregister(sc); |
| 2911 | /* |
| 2912 | * NB: can't reclaim these until after ieee80211_ifdetach |
| 2913 | * returns because we'll get called back to reclaim node |
| 2914 | * state and potentially want to use them. |
| 2915 | */ |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 2916 | ath5k_hw_deinit(sc->ah); |
| 2917 | free_irq(sc->irq, sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2918 | } |
| 2919 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 2920 | bool |
| 2921 | ath_any_vif_assoc(struct ath5k_softc *sc) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2922 | { |
| 2923 | struct ath_vif_iter_data iter_data; |
| 2924 | iter_data.hw_macaddr = NULL; |
| 2925 | iter_data.any_assoc = false; |
| 2926 | iter_data.need_set_hw_addr = false; |
| 2927 | iter_data.found_active = true; |
| 2928 | |
| 2929 | ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter, |
| 2930 | &iter_data); |
| 2931 | return iter_data.any_assoc; |
| 2932 | } |
| 2933 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 2934 | void |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 2935 | set_beacon_filter(struct ieee80211_hw *hw, bool enable) |
| 2936 | { |
| 2937 | struct ath5k_softc *sc = hw->priv; |
| 2938 | struct ath5k_hw *ah = sc->ah; |
| 2939 | u32 rfilt; |
| 2940 | rfilt = ath5k_hw_get_rx_filter(ah); |
| 2941 | if (enable) |
| 2942 | rfilt |= AR5K_RX_FILTER_BEACON; |
| 2943 | else |
| 2944 | rfilt &= ~AR5K_RX_FILTER_BEACON; |
| 2945 | ath5k_hw_set_rx_filter(ah, rfilt); |
| 2946 | sc->filter_flags = rfilt; |
| 2947 | } |