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