blob: c18d310089785795e368199e9cb5c5dc247e0e10 [file] [log] [blame]
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001/*-
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 Slabyfa1c1142007-08-12 17:33:16 +020043#include <linux/module.h>
44#include <linux/delay.h>
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000045#include <linux/dma-mapping.h>
Jiri Slaby274c7c32008-07-15 17:44:20 +020046#include <linux/hardirq.h>
Jiri Slabyfa1c1142007-08-12 17:33:16 +020047#include <linux/if.h>
Jiri Slaby274c7c32008-07-15 17:44:20 +020048#include <linux/io.h>
Jiri Slabyfa1c1142007-08-12 17:33:16 +020049#include <linux/netdevice.h>
50#include <linux/cache.h>
Jiri Slabyfa1c1142007-08-12 17:33:16 +020051#include <linux/ethtool.h>
52#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Ben Greearb1ae1ed2010-09-30 12:22:58 -070054#include <linux/etherdevice.h>
Pavel Roskin931be262011-07-26 22:26:59 -040055#include <linux/nl80211.h>
Jiri Slabyfa1c1142007-08-12 17:33:16 +020056
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 Randolf2111ac02010-04-02 18:44:08 +090064#include "ani.h"
Pavel Roskin931be262011-07-26 22:26:59 -040065#include "ath5k.h"
66#include "../regd.h"
Jiri Slabyfa1c1142007-08-12 17:33:16 +020067
Bob Copeland0e472252011-01-24 23:32:55 -050068#define CREATE_TRACE_POINTS
69#include "trace.h"
70
John W. Linville18cb6e32011-01-05 09:39:59 -050071int ath5k_modparam_nohwcrypt;
72module_param_named(nohwcrypt, ath5k_modparam_nohwcrypt, bool, S_IRUGO);
Bob Copeland9ad9a262008-10-29 08:30:54 -040073MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
Jiri Slabyfa1c1142007-08-12 17:33:16 +020074
Bob Copeland42639fc2009-03-30 08:05:29 -040075static int modparam_all_channels;
Bob Copeland46802a42009-04-15 07:57:34 -040076module_param_named(all_channels, modparam_all_channels, bool, S_IRUGO);
Bob Copeland42639fc2009-03-30 08:05:29 -040077MODULE_PARM_DESC(all_channels, "Expose all channels the device can use.");
78
Nick Kossifidisa99168e2011-06-02 03:09:48 +030079static int modparam_fastchanswitch;
80module_param_named(fastchanswitch, modparam_fastchanswitch, bool, S_IRUGO);
81MODULE_PARM_DESC(fastchanswitch, "Enable fast channel switching for AR2413/AR5413 radios.");
82
83
Jiri Slabyfa1c1142007-08-12 17:33:16 +020084/* Module info */
85MODULE_AUTHOR("Jiri Slaby");
86MODULE_AUTHOR("Nick Kossifidis");
87MODULE_DESCRIPTION("Support for 5xxx series of Atheros 802.11 wireless LAN cards.");
88MODULE_SUPPORTED_DEVICE("Atheros 5xxx WLAN cards");
89MODULE_LICENSE("Dual BSD/GPL");
Jiri Slabyfa1c1142007-08-12 17:33:16 +020090
Felix Fietkau132b1c32010-12-02 10:26:56 +010091static int ath5k_init(struct ieee80211_hw *hw);
Pavel Roskine0d687b2011-07-14 20:21:55 -040092static int ath5k_reset(struct ath5k_hw *ah, struct ieee80211_channel *chan,
Nick Kossifidis8aec7af2010-11-23 21:39:28 +020093 bool skip_pcu);
Jiri Slabyfa1c1142007-08-12 17:33:16 +020094
Jiri Slabyfa1c1142007-08-12 17:33:16 +020095/* Known SREVs */
Jiri Slaby2c91108c2009-03-07 10:26:41 +010096static const struct ath5k_srev_name srev_names[] = {
Felix Fietkaua0b907e2010-12-02 10:27:16 +010097#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 Kossifidis1bef0162008-09-29 02:09:09 +0300106 { "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 Fietkaua0b907e2010-12-02 10:27:16 +0100124#endif
Nick Kossifidis1bef0162008-09-29 02:09:09 +0300125 { "xxxxx", AR5K_VERSION_MAC, AR5K_SREV_UNKNOWN },
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200126 { "5110", AR5K_VERSION_RAD, AR5K_SREV_RAD_5110 },
127 { "5111", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111 },
Nick Kossifidis1bef0162008-09-29 02:09:09 +0300128 { "5111A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111A },
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200129 { "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 Kossifidis1bef0162008-09-29 02:09:09 +0300132 { "5112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112B },
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200133 { "2112", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112 },
134 { "2112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112A },
Nick Kossifidis1bef0162008-09-29 02:09:09 +0300135 { "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 Kossifidis1bef0162008-09-29 02:09:09 +0300138 { "5424", AR5K_VERSION_RAD, AR5K_SREV_RAD_5424 },
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200139 { "5133", AR5K_VERSION_RAD, AR5K_SREV_RAD_5133 },
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100140#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 Slabyfa1c1142007-08-12 17:33:16 +0200144 { "xxxxx", AR5K_VERSION_RAD, AR5K_SREV_UNKNOWN },
145};
146
Jiri Slaby2c91108c2009-03-07 10:26:41 +0100147static const struct ieee80211_rate ath5k_rates[] = {
Bruno Randolf63266a62008-07-30 17:12:58 +0200148 { .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 Slabyfa1c1142007-08-12 17:33:16 +0200189static 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 Fietkaue5b046d2010-12-02 10:27:01 +0100199const char *
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200200ath5k_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 Kossifidis75d0edb2008-09-29 01:24:44 +0300208
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 Slabyfa1c1142007-08-12 17:33:16 +0200213 name = srev_names[i].sr_name;
214 break;
215 }
216 }
217
218 return name;
219}
Luis R. Rodrigueze5aa8472009-09-10 16:55:11 -0700220static 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
226static 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
232static const struct ath_ops ath5k_common_ops = {
233 .read = ath5k_ioread32,
234 .write = ath5k_iowrite32,
235};
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200236
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200237/***********************\
238* Driver Initialization *
239\***********************/
240
Bob Copelandf769c362009-03-30 22:30:31 -0400241static int ath5k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request)
242{
243 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
Pavel Roskine0d687b2011-07-14 20:21:55 -0400244 struct ath5k_hw *ah = hw->priv;
245 struct ath_regulatory *regulatory = ath5k_hw_regulatory(ah);
Bob Copelandf769c362009-03-30 22:30:31 -0400246
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700247 return ath_reg_notifier_apply(wiphy, request, regulatory);
Bob Copelandf769c362009-03-30 22:30:31 -0400248}
249
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200250/********************\
251* Channel/mode setup *
252\********************/
253
254/*
Bob Copeland42639fc2009-03-30 08:05:29 -0400255 * Returns true for the channel numbers used without all_channels modparam.
256 */
Bruno Randolf410e6122011-01-19 18:20:57 +0900257static bool ath5k_is_standard_channel(short chan, enum ieee80211_band band)
Bob Copeland42639fc2009-03-30 08:05:29 -0400258{
Bruno Randolf410e6122011-01-19 18:20:57 +0900259 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 Copeland42639fc2009-03-30 08:05:29 -0400264 /* midband */
265 ((chan & 3) == 0 && chan >= 100 && chan <= 140) ||
266 /* UNII-3 */
Bruno Randolf410e6122011-01-19 18:20:57 +0900267 ((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 Copeland42639fc2009-03-30 08:05:29 -0400272}
273
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200274static unsigned int
Bruno Randolf97d9c3a2011-01-19 18:20:52 +0900275ath5k_setup_channels(struct ath5k_hw *ah, struct ieee80211_channel *channels,
276 unsigned int mode, unsigned int max)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200277{
Pavel Roskin32c25462011-07-23 09:29:09 -0400278 unsigned int count, size, freq, ch;
Bruno Randolf90c02d72011-01-19 18:20:36 +0900279 enum ieee80211_band band;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200280
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200281 switch (mode) {
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500282 case AR5K_MODE_11A:
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200283 /* 1..220, but 2GHz frequencies are filtered by check_channel */
Bruno Randolf97d9c3a2011-01-19 18:20:52 +0900284 size = 220;
Bruno Randolf90c02d72011-01-19 18:20:36 +0900285 band = IEEE80211_BAND_5GHZ;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200286 break;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500287 case AR5K_MODE_11B:
288 case AR5K_MODE_11G:
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500289 size = 26;
Bruno Randolf90c02d72011-01-19 18:20:36 +0900290 band = IEEE80211_BAND_2GHZ;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200291 break;
292 default:
Pavel Roskine0d687b2011-07-14 20:21:55 -0400293 ATH5K_WARN(ah, "bad mode, not copying channels\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200294 return 0;
295 }
296
Bruno Randolf2b1351a2011-01-21 12:19:52 +0900297 count = 0;
298 for (ch = 1; ch <= size && count < max; ch++) {
Bruno Randolf90c02d72011-01-19 18:20:36 +0900299 freq = ieee80211_channel_to_frequency(ch, band);
300
301 if (freq == 0) /* mapping failed - not a standard channel */
302 continue;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500303
Pavel Roskin32c25462011-07-23 09:29:09 -0400304 /* 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 Slabyfa1c1142007-08-12 17:33:16 +0200309 /* Check if channel is supported by the chipset */
Pavel Roskin32c25462011-07-23 09:29:09 -0400310 if (!ath5k_channel_ok(ah, &channels[count]))
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200311 continue;
312
Bruno Randolf410e6122011-01-19 18:20:57 +0900313 if (!modparam_all_channels &&
314 !ath5k_is_standard_channel(ch, band))
Bob Copeland42639fc2009-03-30 08:05:29 -0400315 continue;
316
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200317 count++;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200318 }
319
320 return count;
321}
322
Bruno Randolf63266a62008-07-30 17:12:58 +0200323static void
Pavel Roskine0d687b2011-07-14 20:21:55 -0400324ath5k_setup_rate_idx(struct ath5k_hw *ah, struct ieee80211_supported_band *b)
Bruno Randolf63266a62008-07-30 17:12:58 +0200325{
326 u8 i;
327
328 for (i = 0; i < AR5K_MAX_RATES; i++)
Pavel Roskine0d687b2011-07-14 20:21:55 -0400329 ah->rate_idx[b->band][i] = -1;
Bruno Randolf63266a62008-07-30 17:12:58 +0200330
331 for (i = 0; i < b->n_bitrates; i++) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400332 ah->rate_idx[b->band][b->bitrates[i].hw_value] = i;
Bruno Randolf63266a62008-07-30 17:12:58 +0200333 if (b->bitrates[i].hw_value_short)
Pavel Roskine0d687b2011-07-14 20:21:55 -0400334 ah->rate_idx[b->band][b->bitrates[i].hw_value_short] = i;
Bruno Randolf63266a62008-07-30 17:12:58 +0200335 }
336}
337
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200338static int
Bruno Randolf63266a62008-07-30 17:12:58 +0200339ath5k_setup_bands(struct ieee80211_hw *hw)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200340{
Pavel Roskine0d687b2011-07-14 20:21:55 -0400341 struct ath5k_hw *ah = hw->priv;
Bruno Randolf63266a62008-07-30 17:12:58 +0200342 struct ieee80211_supported_band *sband;
343 int max_c, count_c = 0;
344 int i;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200345
Pavel Roskine0d687b2011-07-14 20:21:55 -0400346 BUILD_BUG_ON(ARRAY_SIZE(ah->sbands) < IEEE80211_NUM_BANDS);
347 max_c = ARRAY_SIZE(ah->channels);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200348
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500349 /* 2GHz band */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400350 sband = &ah->sbands[IEEE80211_BAND_2GHZ];
Bruno Randolf63266a62008-07-30 17:12:58 +0200351 sband->band = IEEE80211_BAND_2GHZ;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400352 sband->bitrates = &ah->rates[IEEE80211_BAND_2GHZ][0];
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200353
Pavel Roskine0d687b2011-07-14 20:21:55 -0400354 if (test_bit(AR5K_MODE_11G, ah->ah_capabilities.cap_mode)) {
Bruno Randolf63266a62008-07-30 17:12:58 +0200355 /* G mode */
356 memcpy(sband->bitrates, &ath5k_rates[0],
357 sizeof(struct ieee80211_rate) * 12);
358 sband->n_bitrates = 12;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200359
Pavel Roskine0d687b2011-07-14 20:21:55 -0400360 sband->channels = ah->channels;
Bruno Randolf08105692011-01-19 18:20:47 +0900361 sband->n_channels = ath5k_setup_channels(ah, sband->channels,
Bruno Randolf63266a62008-07-30 17:12:58 +0200362 AR5K_MODE_11G, max_c);
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500363
364 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband;
Bruno Randolf63266a62008-07-30 17:12:58 +0200365 count_c = sband->n_channels;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500366 max_c -= count_c;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400367 } else if (test_bit(AR5K_MODE_11B, ah->ah_capabilities.cap_mode)) {
Bruno Randolf63266a62008-07-30 17:12:58 +0200368 /* B mode */
369 memcpy(sband->bitrates, &ath5k_rates[0],
370 sizeof(struct ieee80211_rate) * 4);
371 sband->n_bitrates = 4;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500372
Bruno Randolf63266a62008-07-30 17:12:58 +0200373 /* 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 Roskine0d687b2011-07-14 20:21:55 -0400386 sband->channels = ah->channels;
Bruno Randolf08105692011-01-19 18:20:47 +0900387 sband->n_channels = ath5k_setup_channels(ah, sband->channels,
Bruno Randolf63266a62008-07-30 17:12:58 +0200388 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. Rodriguezd8ee3982008-02-03 21:51:04 -0500393 }
Pavel Roskine0d687b2011-07-14 20:21:55 -0400394 ath5k_setup_rate_idx(ah, sband);
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500395
Bruno Randolf63266a62008-07-30 17:12:58 +0200396 /* 5GHz band, A mode */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400397 if (test_bit(AR5K_MODE_11A, ah->ah_capabilities.cap_mode)) {
398 sband = &ah->sbands[IEEE80211_BAND_5GHZ];
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500399 sband->band = IEEE80211_BAND_5GHZ;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400400 sband->bitrates = &ah->rates[IEEE80211_BAND_5GHZ][0];
Bruno Randolf63266a62008-07-30 17:12:58 +0200401
402 memcpy(sband->bitrates, &ath5k_rates[4],
403 sizeof(struct ieee80211_rate) * 8);
404 sband->n_bitrates = 8;
405
Pavel Roskine0d687b2011-07-14 20:21:55 -0400406 sband->channels = &ah->channels[count_c];
Bruno Randolf08105692011-01-19 18:20:47 +0900407 sband->n_channels = ath5k_setup_channels(ah, sband->channels,
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500408 AR5K_MODE_11A, max_c);
409
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500410 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = sband;
411 }
Pavel Roskine0d687b2011-07-14 20:21:55 -0400412 ath5k_setup_rate_idx(ah, sband);
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500413
Pavel Roskine0d687b2011-07-14 20:21:55 -0400414 ath5k_debug_dump_bands(ah);
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500415
416 return 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200417}
418
419/*
Joerg Alberte30eb4a2009-08-05 01:52:07 +0200420 * 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 Copelandbe009372009-01-22 08:44:16 -0500423 *
Pavel Roskine0d687b2011-07-14 20:21:55 -0400424 * Called with ah->lock.
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200425 */
Bruno Randolfcd2c5482010-12-22 19:20:32 +0900426int
Pavel Roskine0d687b2011-07-14 20:21:55 -0400427ath5k_chan_set(struct ath5k_hw *ah, struct ieee80211_channel *chan)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200428{
Pavel Roskine0d687b2011-07-14 20:21:55 -0400429 ATH5K_DBG(ah, ATH5K_DEBUG_RESET,
Bruno Randolf8d67a032010-06-16 19:11:12 +0900430 "channel set, resetting (%u -> %u MHz)\n",
Pavel Roskine0d687b2011-07-14 20:21:55 -0400431 ah->curchan->center_freq, chan->center_freq);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200432
Joerg Alberte30eb4a2009-08-05 01:52:07 +0200433 /*
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 Roskine0d687b2011-07-14 20:21:55 -0400439 return ath5k_reset(ah, chan, true);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200440}
441
Ben Greeare4b0b322011-03-03 14:39:05 -0800442void ath5k_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700443{
Ben Greeare4b0b322011-03-03 14:39:05 -0800444 struct ath5k_vif_iter_data *iter_data = data;
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700445 int i;
Ben Greear62c58fb2010-10-08 12:01:15 -0700446 struct ath5k_vif *avf = (void *)vif->drv_priv;
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700447
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 Greearb1ae1ed2010-09-30 12:22:58 -0700463 if (avf->assoc)
464 iter_data->any_assoc = true;
465 }
Ben Greear62c58fb2010-10-08 12:01:15 -0700466
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 Greear7afbb2f2010-11-10 11:43:51 -0800470 * interfaces is allowed.
Ben Greear62c58fb2010-10-08 12:01:15 -0700471 */
472 if (avf->opmode == NL80211_IFTYPE_AP)
473 iter_data->opmode = NL80211_IFTYPE_AP;
Ben Greeare4b0b322011-03-03 14:39:05 -0800474 else {
475 if (avf->opmode == NL80211_IFTYPE_STATION)
476 iter_data->n_stas++;
Ben Greear62c58fb2010-10-08 12:01:15 -0700477 if (iter_data->opmode == NL80211_IFTYPE_UNSPECIFIED)
478 iter_data->opmode = avf->opmode;
Ben Greeare4b0b322011-03-03 14:39:05 -0800479 }
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700480}
481
Bruno Randolfcd2c5482010-12-22 19:20:32 +0900482void
Pavel Roskine0d687b2011-07-14 20:21:55 -0400483ath5k_update_bssid_mask_and_opmode(struct ath5k_hw *ah,
Bruno Randolfcd2c5482010-12-22 19:20:32 +0900484 struct ieee80211_vif *vif)
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700485{
Pavel Roskine0d687b2011-07-14 20:21:55 -0400486 struct ath_common *common = ath5k_hw_common(ah);
Ben Greeare4b0b322011-03-03 14:39:05 -0800487 struct ath5k_vif_iter_data iter_data;
488 u32 rfilt;
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700489
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 Greear62c58fb2010-10-08 12:01:15 -0700498 iter_data.opmode = NL80211_IFTYPE_UNSPECIFIED;
Ben Greeare4b0b322011-03-03 14:39:05 -0800499 iter_data.n_stas = 0;
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700500
501 if (vif)
Ben Greeare4b0b322011-03-03 14:39:05 -0800502 ath5k_vif_iter(&iter_data, vif->addr, vif);
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700503
504 /* Get list of all active MAC addresses */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400505 ieee80211_iterate_active_interfaces_atomic(ah->hw, ath5k_vif_iter,
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700506 &iter_data);
Pavel Roskine0d687b2011-07-14 20:21:55 -0400507 memcpy(ah->bssidmask, iter_data.mask, ETH_ALEN);
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700508
Pavel Roskine0d687b2011-07-14 20:21:55 -0400509 ah->opmode = iter_data.opmode;
510 if (ah->opmode == NL80211_IFTYPE_UNSPECIFIED)
Ben Greear62c58fb2010-10-08 12:01:15 -0700511 /* Nothing active, default to station mode */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400512 ah->opmode = NL80211_IFTYPE_STATION;
Ben Greear62c58fb2010-10-08 12:01:15 -0700513
Pavel Roskine0d687b2011-07-14 20:21:55 -0400514 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 Greear62c58fb2010-10-08 12:01:15 -0700517
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700518 if (iter_data.need_set_hw_addr && iter_data.found_active)
Pavel Roskine0d687b2011-07-14 20:21:55 -0400519 ath5k_hw_set_lladdr(ah, iter_data.active_mac);
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700520
Pavel Roskine0d687b2011-07-14 20:21:55 -0400521 if (ath5k_hw_hasbssidmask(ah))
522 ath5k_hw_set_bssid_mask(ah, ah->bssidmask);
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700523
Ben Greeare4b0b322011-03-03 14:39:05 -0800524 /* 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 Roskin6a2a0e72011-07-09 00:17:51 -0400528 * Enabling PROMISC appears to fix that problem.
Ben Greeare4b0b322011-03-03 14:39:05 -0800529 */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400530 ah->filter_flags |= AR5K_RX_FILTER_PROM;
Ben Greeare4b0b322011-03-03 14:39:05 -0800531 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200532
Pavel Roskine0d687b2011-07-14 20:21:55 -0400533 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 Slabyfa1c1142007-08-12 17:33:16 +0200536}
537
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500538static inline int
Pavel Roskine0d687b2011-07-14 20:21:55 -0400539ath5k_hw_to_driver_rix(struct ath5k_hw *ah, int hw_rix)
Bruno Randolf63266a62008-07-30 17:12:58 +0200540{
Bob Copelandb7266042009-03-02 21:55:18 -0500541 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 Roskine0d687b2011-07-14 20:21:55 -0400548 rix = ah->rate_idx[ah->curchan->band][hw_rix];
Bob Copelandb7266042009-03-02 21:55:18 -0500549 if (WARN(rix < 0, "invalid hw_rix: %x\n", hw_rix))
550 rix = 0;
551
552 return rix;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500553}
554
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200555/***************\
556* Buffers setup *
557\***************/
558
Bob Copelandb6ea0352009-01-10 14:42:54 -0500559static
Pavel Roskine0d687b2011-07-14 20:21:55 -0400560struct sk_buff *ath5k_rx_skb_alloc(struct ath5k_hw *ah, dma_addr_t *skb_addr)
Bob Copelandb6ea0352009-01-10 14:42:54 -0500561{
Pavel Roskine0d687b2011-07-14 20:21:55 -0400562 struct ath_common *common = ath5k_hw_common(ah);
Bob Copelandb6ea0352009-01-10 14:42:54 -0500563 struct sk_buff *skb;
Bob Copelandb6ea0352009-01-10 14:42:54 -0500564
565 /*
566 * Allocate buffer with headroom_needed space for the
567 * fake physical layer header at the start.
568 */
Luis R. Rodriguezdb719712009-09-10 11:20:57 -0700569 skb = ath_rxbuf_alloc(common,
Luis R. Rodriguezdd849782009-11-04 09:44:50 -0800570 common->rx_bufsize,
Luis R. Rodriguezaeb63cf2009-08-12 09:57:00 -0700571 GFP_ATOMIC);
Bob Copelandb6ea0352009-01-10 14:42:54 -0500572
573 if (!skb) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400574 ATH5K_ERR(ah, "can't alloc skbuff of size %u\n",
Luis R. Rodriguezdd849782009-11-04 09:44:50 -0800575 common->rx_bufsize);
Bob Copelandb6ea0352009-01-10 14:42:54 -0500576 return NULL;
577 }
Bob Copelandb6ea0352009-01-10 14:42:54 -0500578
Pavel Roskine0d687b2011-07-14 20:21:55 -0400579 *skb_addr = dma_map_single(ah->dev,
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -0800580 skb->data, common->rx_bufsize,
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100581 DMA_FROM_DEVICE);
582
Pavel Roskine0d687b2011-07-14 20:21:55 -0400583 if (unlikely(dma_mapping_error(ah->dev, *skb_addr))) {
584 ATH5K_ERR(ah, "%s: DMA mapping failed\n", __func__);
Bob Copelandb6ea0352009-01-10 14:42:54 -0500585 dev_kfree_skb(skb);
586 return NULL;
587 }
588 return skb;
589}
590
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200591static int
Pavel Roskine0d687b2011-07-14 20:21:55 -0400592ath5k_rxbuf_setup(struct ath5k_hw *ah, struct ath5k_buf *bf)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200593{
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200594 struct sk_buff *skb = bf->skb;
595 struct ath5k_desc *ds;
Bruno Randolfb5eae9f2010-05-19 10:18:16 +0900596 int ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200597
Bob Copelandb6ea0352009-01-10 14:42:54 -0500598 if (!skb) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400599 skb = ath5k_rx_skb_alloc(ah, &bf->skbaddr);
Bob Copelandb6ea0352009-01-10 14:42:54 -0500600 if (!skb)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200601 return -ENOMEM;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200602 bf->skb = skb;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200603 }
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 Randolfbeade632010-06-16 19:11:25 +0900611 * To ensure the last descriptor is self-linked we create
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200612 * each descriptor as self-linked and add it to the end. As
613 * each additional descriptor is added the previous self-linked
Bruno Randolfbeade632010-06-16 19:11:25 +0900614 * entry is "fixed" naturally. This should be safe even
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200615 * if DMA is happening. When processing RX interrupts we
616 * never remove/process the last, self-linked, entry on the
Bruno Randolfbeade632010-06-16 19:11:25 +0900617 * descriptor list. This ensures the hardware always has
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200618 * 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 Randolfa6668192010-06-16 19:12:01 +0900623 ret = ath5k_hw_setup_rx_desc(ah, ds, ah->common.rx_bufsize, 0);
Bruno Randolf0452d4a2010-06-16 19:11:35 +0900624 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400625 ATH5K_ERR(ah, "%s: could not setup RX desc\n", __func__);
Bruno Randolfb5eae9f2010-05-19 10:18:16 +0900626 return ret;
Bruno Randolf0452d4a2010-06-16 19:11:35 +0900627 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200628
Pavel Roskine0d687b2011-07-14 20:21:55 -0400629 if (ah->rxlink != NULL)
630 *ah->rxlink = bf->daddr;
631 ah->rxlink = &ds->ds_link;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200632 return 0;
633}
634
Bob Copeland2ac29272010-02-09 13:06:54 -0500635static 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 Slabyfa1c1142007-08-12 17:33:16 +0200658static int
Pavel Roskine0d687b2011-07-14 20:21:55 -0400659ath5k_txbuf_setup(struct ath5k_hw *ah, struct ath5k_buf *bf,
Benoit Papillault8127fbd2010-02-27 23:05:26 +0100660 struct ath5k_txq *txq, int padsize)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200661{
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200662 struct ath5k_desc *ds = bf->desc;
663 struct sk_buff *skb = bf->skb;
Johannes Berga888d522008-05-26 16:43:39 +0200664 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200665 unsigned int pktlen, flags, keyidx = AR5K_TXKEYIX_INVALID;
Felix Fietkau2f7fe8702008-10-05 18:05:48 +0200666 struct ieee80211_rate *rate;
667 unsigned int mrr_rate[3], mrr_tries[3];
668 int i, ret;
Bob Copeland8902ff42009-01-22 08:44:20 -0500669 u16 hw_rate;
Bob Copeland07c1e852009-01-22 08:44:21 -0500670 u16 cts_rate = 0;
671 u16 duration = 0;
Bob Copeland8902ff42009-01-22 08:44:20 -0500672 u8 rc_flags;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200673
674 flags = AR5K_TXDESC_INTREQ | AR5K_TXDESC_CLRDMASK;
Johannes Berge039fa42008-05-15 12:55:29 +0200675
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200676 /* XXX endianness */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400677 bf->skbaddr = dma_map_single(ah->dev, skb->data, skb->len,
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100678 DMA_TO_DEVICE);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200679
Pavel Roskine0d687b2011-07-14 20:21:55 -0400680 rate = ieee80211_get_tx_rate(ah->hw, info);
John W. Linvilled8e1ba72010-08-24 15:27:34 -0400681 if (!rate) {
682 ret = -EINVAL;
683 goto err_unmap;
684 }
Bob Copeland8902ff42009-01-22 08:44:20 -0500685
Johannes Berge039fa42008-05-15 12:55:29 +0200686 if (info->flags & IEEE80211_TX_CTL_NO_ACK)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200687 flags |= AR5K_TXDESC_NOACK;
688
Bob Copeland8902ff42009-01-22 08:44:20 -0500689 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 Randolf281c56d2008-02-05 18:44:55 +0900693 pktlen = skb->len;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200694
Nick Kossifidis8f655dd2009-03-15 22:20:35 +0200695 /* 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 Copeland362695e2009-02-15 12:06:12 -0500698 if (info->control.hw_key) {
699 keyidx = info->control.hw_key->hw_key_idx;
700 pktlen += info->control.hw_key->icv_len;
701 }
Bob Copeland07c1e852009-01-22 08:44:21 -0500702 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
703 flags |= AR5K_TXDESC_RTSENA;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400704 cts_rate = ieee80211_get_rts_cts_rate(ah->hw, info)->hw_value;
705 duration = le16_to_cpu(ieee80211_rts_duration(ah->hw,
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700706 info->control.vif, pktlen, info));
Bob Copeland07c1e852009-01-22 08:44:21 -0500707 }
708 if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
709 flags |= AR5K_TXDESC_CTSENA;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400710 cts_rate = ieee80211_get_rts_cts_rate(ah->hw, info)->hw_value;
711 duration = le16_to_cpu(ieee80211_ctstoself_duration(ah->hw,
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700712 info->control.vif, pktlen, info));
Bob Copeland07c1e852009-01-22 08:44:21 -0500713 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200714 ret = ah->ah_setup_tx_desc(ah, ds, pktlen,
Benoit Papillault8127fbd2010-02-27 23:05:26 +0100715 ieee80211_get_hdrlen_from_skb(skb), padsize,
Bob Copeland2ac29272010-02-09 13:06:54 -0500716 get_hw_packet_type(skb),
Pavel Roskine0d687b2011-07-14 20:21:55 -0400717 (ah->power_level * 2),
Bob Copeland8902ff42009-01-22 08:44:20 -0500718 hw_rate,
Nick Kossifidis2bed03e2009-04-30 15:55:49 -0400719 info->control.rates[0].count, keyidx, ah->ah_tx_ant, flags,
Bob Copeland07c1e852009-01-22 08:44:21 -0500720 cts_rate, duration);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200721 if (ret)
722 goto err_unmap;
723
Felix Fietkau2f7fe8702008-10-05 18:05:48 +0200724 memset(mrr_rate, 0, sizeof(mrr_rate));
725 memset(mrr_tries, 0, sizeof(mrr_tries));
726 for (i = 0; i < 3; i++) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400727 rate = ieee80211_get_alt_retry_rate(ah->hw, info, i);
Felix Fietkau2f7fe8702008-10-05 18:05:48 +0200728 if (!rate)
729 break;
730
731 mrr_rate[i] = rate->hw_value;
Johannes Berge6a98542008-10-21 12:40:02 +0200732 mrr_tries[i] = info->control.rates[i + 1].count;
Felix Fietkau2f7fe8702008-10-05 18:05:48 +0200733 }
734
Bruno Randolfa6668192010-06-16 19:12:01 +0900735 ath5k_hw_setup_mrr_tx_desc(ah, ds,
Felix Fietkau2f7fe8702008-10-05 18:05:48 +0200736 mrr_rate[0], mrr_tries[0],
737 mrr_rate[1], mrr_tries[1],
738 mrr_rate[2], mrr_tries[2]);
739
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200740 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 Randolf925e0b02010-09-17 11:36:35 +0900745 txq->txq_len++;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200746 if (txq->link == NULL) /* is this first packet? */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300747 ath5k_hw_set_txdp(ah, txq->qnum, bf->daddr);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200748 else /* no, so only link it */
749 *txq->link = bf->daddr;
750
751 txq->link = &ds->ds_link;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300752 ath5k_hw_start_tx_dma(ah, txq->qnum);
Jiri Slaby274c7c32008-07-15 17:44:20 +0200753 mmiowb();
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200754 spin_unlock_bh(&txq->lock);
755
756 return 0;
757err_unmap:
Pavel Roskine0d687b2011-07-14 20:21:55 -0400758 dma_unmap_single(ah->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200759 return ret;
760}
761
762/*******************\
763* Descriptors setup *
764\*******************/
765
766static int
Pavel Roskine0d687b2011-07-14 20:21:55 -0400767ath5k_desc_alloc(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200768{
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 Roskine0d687b2011-07-14 20:21:55 -0400776 ah->desc_len = sizeof(struct ath5k_desc) *
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200777 (ATH_TXBUF + ATH_RXBUF + ATH_BCBUF + 1);
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100778
Pavel Roskine0d687b2011-07-14 20:21:55 -0400779 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 Slabyfa1c1142007-08-12 17:33:16 +0200783 ret = -ENOMEM;
784 goto err;
785 }
Pavel Roskine0d687b2011-07-14 20:21:55 -0400786 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 Slabyfa1c1142007-08-12 17:33:16 +0200790
791 bf = kcalloc(1 + ATH_TXBUF + ATH_RXBUF + ATH_BCBUF,
792 sizeof(struct ath5k_buf), GFP_KERNEL);
793 if (bf == NULL) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400794 ATH5K_ERR(ah, "can't allocate bufptr\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200795 ret = -ENOMEM;
796 goto err_free;
797 }
Pavel Roskine0d687b2011-07-14 20:21:55 -0400798 ah->bufptr = bf;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200799
Pavel Roskine0d687b2011-07-14 20:21:55 -0400800 INIT_LIST_HEAD(&ah->rxbuf);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200801 for (i = 0; i < ATH_RXBUF; i++, bf++, ds++, da += sizeof(*ds)) {
802 bf->desc = ds;
803 bf->daddr = da;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400804 list_add_tail(&bf->list, &ah->rxbuf);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200805 }
806
Pavel Roskine0d687b2011-07-14 20:21:55 -0400807 INIT_LIST_HEAD(&ah->txbuf);
808 ah->txbuf_len = ATH_TXBUF;
Pavel Roskine4bbf2f2011-07-07 18:14:13 -0400809 for (i = 0; i < ATH_TXBUF; i++, bf++, ds++, da += sizeof(*ds)) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200810 bf->desc = ds;
811 bf->daddr = da;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400812 list_add_tail(&bf->list, &ah->txbuf);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200813 }
814
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700815 /* beacon buffers */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400816 INIT_LIST_HEAD(&ah->bcbuf);
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700817 for (i = 0; i < ATH_BCBUF; i++, bf++, ds++, da += sizeof(*ds)) {
818 bf->desc = ds;
819 bf->daddr = da;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400820 list_add_tail(&bf->list, &ah->bcbuf);
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700821 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200822
823 return 0;
824err_free:
Pavel Roskine0d687b2011-07-14 20:21:55 -0400825 dma_free_coherent(ah->dev, ah->desc_len, ah->desc, ah->desc_daddr);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200826err:
Pavel Roskine0d687b2011-07-14 20:21:55 -0400827 ah->desc = NULL;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200828 return ret;
829}
830
Bruno Randolfcd2c5482010-12-22 19:20:32 +0900831void
Pavel Roskine0d687b2011-07-14 20:21:55 -0400832ath5k_txbuf_free_skb(struct ath5k_hw *ah, struct ath5k_buf *bf)
Bruno Randolfcd2c5482010-12-22 19:20:32 +0900833{
834 BUG_ON(!bf);
835 if (!bf->skb)
836 return;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400837 dma_unmap_single(ah->dev, bf->skbaddr, bf->skb->len,
Bruno Randolfcd2c5482010-12-22 19:20:32 +0900838 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
845void
Pavel Roskine0d687b2011-07-14 20:21:55 -0400846ath5k_rxbuf_free_skb(struct ath5k_hw *ah, struct ath5k_buf *bf)
Bruno Randolfcd2c5482010-12-22 19:20:32 +0900847{
Bruno Randolfcd2c5482010-12-22 19:20:32 +0900848 struct ath_common *common = ath5k_hw_common(ah);
849
850 BUG_ON(!bf);
851 if (!bf->skb)
852 return;
Pavel Roskine0d687b2011-07-14 20:21:55 -0400853 dma_unmap_single(ah->dev, bf->skbaddr, common->rx_bufsize,
Bruno Randolfcd2c5482010-12-22 19:20:32 +0900854 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 Slabyfa1c1142007-08-12 17:33:16 +0200861static void
Pavel Roskine0d687b2011-07-14 20:21:55 -0400862ath5k_desc_free(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200863{
864 struct ath5k_buf *bf;
865
Pavel Roskine0d687b2011-07-14 20:21:55 -0400866 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 Slabyfa1c1142007-08-12 17:33:16 +0200872
873 /* Free memory associated with all descriptors */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400874 dma_free_coherent(ah->dev, ah->desc_len, ah->desc, ah->desc_daddr);
875 ah->desc = NULL;
876 ah->desc_daddr = 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200877
Pavel Roskine0d687b2011-07-14 20:21:55 -0400878 kfree(ah->bufptr);
879 ah->bufptr = NULL;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200880}
881
882
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200883/**************\
884* Queues setup *
885\**************/
886
887static struct ath5k_txq *
Pavel Roskine0d687b2011-07-14 20:21:55 -0400888ath5k_txq_setup(struct ath5k_hw *ah,
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200889 int qtype, int subtype)
890{
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200891 struct ath5k_txq *txq;
892 struct ath5k_txq_info qi = {
893 .tqi_subtype = subtype,
Bruno Randolfde8af452010-09-17 11:37:12 +0900894 /* 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 Slabyfa1c1142007-08-12 17:33:16 +0200899 };
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 Copelanda180a132010-08-15 13:03:12 -0400905 * when a tx queue gets deep; otherwise we wait for the
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200906 * 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 Roskine0d687b2011-07-14 20:21:55 -0400924 txq = &ah->txqs[qnum];
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200925 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 Randolf925e0b02010-09-17 11:36:35 +0900931 txq->txq_len = 0;
John W. Linville81266ba2011-03-07 16:32:59 -0500932 txq->txq_max = ATH5K_TXQ_LEN_MAX;
Bruno Randolf4edd7612010-09-17 11:36:56 +0900933 txq->txq_poll_mark = false;
Bruno Randolf923e5b32010-09-17 11:37:02 +0900934 txq->txq_stuck = 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200935 }
Pavel Roskine0d687b2011-07-14 20:21:55 -0400936 return &ah->txqs[qnum];
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200937}
938
939static int
940ath5k_beaconq_setup(struct ath5k_hw *ah)
941{
942 struct ath5k_txq_info qi = {
Bruno Randolfde8af452010-09-17 11:37:12 +0900943 /* 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 Slabyfa1c1142007-08-12 17:33:16 +0200948 /* 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
955static int
Pavel Roskine0d687b2011-07-14 20:21:55 -0400956ath5k_beaconq_config(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200957{
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200958 struct ath5k_txq_info qi;
959 int ret;
960
Pavel Roskine0d687b2011-07-14 20:21:55 -0400961 ret = ath5k_hw_get_tx_queueprops(ah, ah->bhalq, &qi);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200962 if (ret)
Bob Copelanda951ae22010-01-20 23:51:04 -0500963 goto err;
964
Pavel Roskine0d687b2011-07-14 20:21:55 -0400965 if (ah->opmode == NL80211_IFTYPE_AP ||
966 ah->opmode == NL80211_IFTYPE_MESH_POINT) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200967 /*
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 Roskine0d687b2011-07-14 20:21:55 -0400974 } else if (ah->opmode == NL80211_IFTYPE_ADHOC) {
Bruno Randolf6d91e1d2008-01-19 18:18:41 +0900975 /*
976 * Adhoc mode; backoff between 0 and (2 * cw_min).
977 */
978 qi.tqi_aifs = 0;
979 qi.tqi_cw_min = 0;
Bruno Randolfde8af452010-09-17 11:37:12 +0900980 qi.tqi_cw_max = 2 * AR5K_TUNE_CWMIN;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200981 }
982
Pavel Roskine0d687b2011-07-14 20:21:55 -0400983 ATH5K_DBG(ah, ATH5K_DEBUG_BEACON,
Bruno Randolf6d91e1d2008-01-19 18:18:41 +0900984 "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 Roskine0d687b2011-07-14 20:21:55 -0400987 ret = ath5k_hw_set_tx_queueprops(ah, ah->bhalq, &qi);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200988 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400989 ATH5K_ERR(ah, "%s: unable to update parameters for beacon "
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200990 "hardware queue!\n", __func__);
Bob Copelanda951ae22010-01-20 23:51:04 -0500991 goto err;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200992 }
Pavel Roskine0d687b2011-07-14 20:21:55 -0400993 ret = ath5k_hw_reset_tx_queue(ah, ah->bhalq); /* push to h/w */
Bob Copelanda951ae22010-01-20 23:51:04 -0500994 if (ret)
995 goto err;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200996
Bob Copelanda951ae22010-01-20 23:51:04 -0500997 /* 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 Roskine0d687b2011-07-14 20:21:55 -04001002 qi.tqi_ready_time = (ah->bintval * 80) / 100;
Bob Copelanda951ae22010-01-20 23:51:04 -05001003 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);
1008err:
1009 return ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001010}
1011
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001012/**
1013 * ath5k_drain_tx_buffs - Empty tx buffers
1014 *
Pavel Roskine0d687b2011-07-14 20:21:55 -04001015 * @ah The &struct ath5k_hw
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001016 *
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 Slabyfa1c1142007-08-12 17:33:16 +02001022 */
1023static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001024ath5k_drain_tx_buffs(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001025{
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001026 struct ath5k_txq *txq;
1027 struct ath5k_buf *bf, *bf0;
1028 int i;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001029
Pavel Roskine0d687b2011-07-14 20:21:55 -04001030 for (i = 0; i < ARRAY_SIZE(ah->txqs); i++) {
1031 if (ah->txqs[i].setup) {
1032 txq = &ah->txqs[i];
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001033 spin_lock_bh(&txq->lock);
1034 list_for_each_entry_safe(bf, bf0, &txq->q, list) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001035 ath5k_debug_printtxbuf(ah, bf);
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001036
Pavel Roskine0d687b2011-07-14 20:21:55 -04001037 ath5k_txbuf_free_skb(ah, bf);
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001038
Pavel Roskine0d687b2011-07-14 20:21:55 -04001039 spin_lock_bh(&ah->txbuflock);
1040 list_move_tail(&bf->list, &ah->txbuf);
1041 ah->txbuf_len++;
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001042 txq->txq_len--;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001043 spin_unlock_bh(&ah->txbuflock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001044 }
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001045 txq->link = NULL;
1046 txq->txq_poll_mark = false;
1047 spin_unlock_bh(&txq->lock);
1048 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001049 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001050}
1051
1052static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001053ath5k_txq_release(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001054{
Pavel Roskine0d687b2011-07-14 20:21:55 -04001055 struct ath5k_txq *txq = ah->txqs;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001056 unsigned int i;
1057
Pavel Roskine0d687b2011-07-14 20:21:55 -04001058 for (i = 0; i < ARRAY_SIZE(ah->txqs); i++, txq++)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001059 if (txq->setup) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001060 ath5k_hw_release_tx_queue(ah, txq->qnum);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001061 txq->setup = false;
1062 }
1063}
1064
1065
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001066/*************\
1067* RX Handling *
1068\*************/
1069
1070/*
1071 * Enable the receive h/w following a reset.
1072 */
1073static int
Pavel Roskine0d687b2011-07-14 20:21:55 -04001074ath5k_rx_start(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001075{
Luis R. Rodriguezdb719712009-09-10 11:20:57 -07001076 struct ath_common *common = ath5k_hw_common(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001077 struct ath5k_buf *bf;
1078 int ret;
1079
Nick Kossifidisb6127982010-08-15 13:03:11 -04001080 common->rx_bufsize = roundup(IEEE80211_MAX_FRAME_LEN, common->cachelsz);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001081
Pavel Roskine0d687b2011-07-14 20:21:55 -04001082 ATH5K_DBG(ah, ATH5K_DEBUG_RESET, "cachelsz %u rx_bufsize %u\n",
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -08001083 common->cachelsz, common->rx_bufsize);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001084
Pavel Roskine0d687b2011-07-14 20:21:55 -04001085 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 Slabyfa1c1142007-08-12 17:33:16 +02001089 if (ret != 0) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001090 spin_unlock_bh(&ah->rxbuflock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001091 goto err;
1092 }
1093 }
Pavel Roskine0d687b2011-07-14 20:21:55 -04001094 bf = list_first_entry(&ah->rxbuf, struct ath5k_buf, list);
Bob Copeland26925042009-04-15 07:57:36 -04001095 ath5k_hw_set_rxdp(ah, bf->daddr);
Pavel Roskine0d687b2011-07-14 20:21:55 -04001096 spin_unlock_bh(&ah->rxbuflock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001097
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001098 ath5k_hw_start_rx_dma(ah); /* enable recv descriptors */
Pavel Roskine0d687b2011-07-14 20:21:55 -04001099 ath5k_update_bssid_mask_and_opmode(ah, NULL); /* set filters, etc. */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001100 ath5k_hw_start_rx_pcu(ah); /* re-enable PCU/DMA engine */
1101
1102 return 0;
1103err:
1104 return ret;
1105}
1106
1107/*
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001108 * 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 Slabyfa1c1142007-08-12 17:33:16 +02001113 */
1114static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001115ath5k_rx_stop(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001116{
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001117
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001118 ath5k_hw_set_rx_filter(ah, 0); /* clear recv filter */
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02001119 ath5k_hw_stop_rx_pcu(ah); /* disable PCU */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001120
Pavel Roskine0d687b2011-07-14 20:21:55 -04001121 ath5k_debug_printrxbuffs(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001122}
1123
1124static unsigned int
Pavel Roskine0d687b2011-07-14 20:21:55 -04001125ath5k_rx_decrypted(struct ath5k_hw *ah, struct sk_buff *skb,
Bruno Randolf8a89f062010-06-16 19:11:51 +09001126 struct ath5k_rx_status *rs)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001127{
Luis R. Rodriguezdc1e0012009-11-04 17:47:31 -08001128 struct ath_common *common = ath5k_hw_common(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001129 struct ieee80211_hdr *hdr = (void *)skb->data;
Harvey Harrison798ee982008-07-15 18:44:02 -07001130 unsigned int keyix, hlen;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001131
Bruno Randolfb47f4072008-03-05 18:35:45 +09001132 if (!(rs->rs_status & AR5K_RXERR_DECRYPT) &&
1133 rs->rs_keyix != AR5K_RXKEYIX_INVALID)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001134 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 Harrison798ee982008-07-15 18:44:02 -07001139 hlen = ieee80211_hdrlen(hdr->frame_control);
Harvey Harrison24b56e72008-06-14 23:33:38 -07001140 if (ieee80211_has_protected(hdr->frame_control) &&
1141 !(rs->rs_status & AR5K_RXERR_DECRYPT) &&
1142 skb->len >= hlen + 4) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001143 keyix = skb->data[hlen + 3] >> 6;
1144
Luis R. Rodriguezdc1e0012009-11-04 17:47:31 -08001145 if (test_bit(keyix, common->keymap))
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001146 return RX_FLAG_DECRYPTED;
1147 }
1148
1149 return 0;
1150}
1151
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001152
1153static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001154ath5k_check_ibss_tsf(struct ath5k_hw *ah, struct sk_buff *skb,
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001155 struct ieee80211_rx_status *rxs)
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001156{
Pavel Roskine0d687b2011-07-14 20:21:55 -04001157 struct ath_common *common = ath5k_hw_common(ah);
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001158 u64 tsf, bc_tstamp;
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001159 u32 hw_tu;
1160 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
1161
Harvey Harrison24b56e72008-06-14 23:33:38 -07001162 if (ieee80211_is_beacon(mgmt->frame_control) &&
Pavel Roskin38c07b42008-02-26 17:59:14 -05001163 le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS &&
Luis R. Rodriguez954fece2009-09-10 10:51:33 -07001164 memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) == 0) {
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001165 /*
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001166 * 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 Randolf036cd1e2008-01-19 18:18:21 +09001169 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04001170 tsf = ath5k_hw_get_tsf64(ah);
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001171 bc_tstamp = le64_to_cpu(mgmt->u.beacon.timestamp);
1172 hw_tu = TSF_TO_TU(tsf);
1173
Pavel Roskine0d687b2011-07-14 20:21:55 -04001174 ATH5K_DBG_UNLIMIT(ah, ATH5K_DEBUG_BEACON,
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001175 "beacon %llx mactime %llx (diff %lld) tsf now %llx\n",
John W. Linville06501d22008-04-01 17:38:47 -04001176 (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 Randolf6ba81c22008-03-05 18:36:26 +09001180
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 Roskine0d687b2011-07-14 20:21:55 -04001193 ATH5K_DBG_UNLIMIT(ah, ATH5K_DEBUG_BEACON,
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001194 "fixing mactime from %llx to %llx\n",
John W. Linville06501d22008-04-01 17:38:47 -04001195 (unsigned long long)rxs->mactime,
1196 (unsigned long long)tsf);
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001197 rxs->mactime = tsf;
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001198 }
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001199
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 Roskine0d687b2011-07-14 20:21:55 -04001206 if (hw_tu >= ah->nexttbtt)
1207 ath5k_beacon_update_timers(ah, bc_tstamp);
Bruno Randolf7f896122010-09-27 12:22:21 +09001208
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 Roskine0d687b2011-07-14 20:21:55 -04001212 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 Randolf7f896122010-09-27 12:22:21 +09001215 "fixed beacon timers after beacon receive\n");
1216 }
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001217 }
1218}
1219
Bruno Randolfb4ea4492010-03-25 14:49:25 +09001220static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001221ath5k_update_beacon_rssi(struct ath5k_hw *ah, struct sk_buff *skb, int rssi)
Bruno Randolfb4ea4492010-03-25 14:49:25 +09001222{
1223 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
Bruno Randolfb4ea4492010-03-25 14:49:25 +09001224 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 Randolfeef39be2010-11-16 10:58:43 +09001231 ewma_add(&ah->ah_beacon_rssi_avg, rssi);
Bruno Randolfb4ea4492010-03-25 14:49:25 +09001232
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 Papillault8127fbd2010-02-27 23:05:26 +01001237/*
Bob Copelanda180a132010-08-15 13:03:12 -04001238 * Compute padding position. skb must contain an IEEE 802.11 frame
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001239 */
1240static int ath5k_common_padpos(struct sk_buff *skb)
1241{
Pavel Roskine4bbf2f2011-07-07 18:14:13 -04001242 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001243 __le16 frame_control = hdr->frame_control;
1244 int padpos = 24;
1245
Pavel Roskind2c7f772011-07-07 18:14:07 -04001246 if (ieee80211_has_a4(frame_control))
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001247 padpos += ETH_ALEN;
Pavel Roskind2c7f772011-07-07 18:14:07 -04001248
1249 if (ieee80211_is_data_qos(frame_control))
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001250 padpos += IEEE80211_QOS_CTL_LEN;
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001251
1252 return padpos;
1253}
1254
1255/*
Bob Copelanda180a132010-08-15 13:03:12 -04001256 * 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 Papillault8127fbd2010-02-27 23:05:26 +01001258 */
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001259static int ath5k_add_padding(struct sk_buff *skb)
1260{
1261 int padpos = ath5k_common_padpos(skb);
1262 int padsize = padpos & 3;
1263
Pavel Roskine4bbf2f2011-07-07 18:14:13 -04001264 if (padsize && skb->len > padpos) {
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001265
1266 if (skb_headroom(skb) < padsize)
1267 return -1;
1268
1269 skb_push(skb, padsize);
Pavel Roskine4bbf2f2011-07-07 18:14:13 -04001270 memmove(skb->data, skb->data + padsize, padpos);
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001271 return padsize;
1272 }
1273
1274 return 0;
1275}
1276
1277/*
Bob Copelanda180a132010-08-15 13:03:12 -04001278 * 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 Papillault8127fbd2010-02-27 23:05:26 +01001289 */
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001290static int ath5k_remove_padding(struct sk_buff *skb)
1291{
1292 int padpos = ath5k_common_padpos(skb);
1293 int padsize = padpos & 3;
1294
Pavel Roskine4bbf2f2011-07-07 18:14:13 -04001295 if (padsize && skb->len >= padpos + padsize) {
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001296 memmove(skb->data + padsize, skb->data, padpos);
1297 skb_pull(skb, padsize);
1298 return padsize;
1299 }
1300
1301 return 0;
1302}
1303
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001304static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001305ath5k_receive_frame(struct ath5k_hw *ah, struct sk_buff *skb,
Bruno Randolf8a89f062010-06-16 19:11:51 +09001306 struct ath5k_rx_status *rs)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001307{
Bob Copeland1c5256b2009-08-24 23:00:32 -04001308 struct ieee80211_rx_status *rxs;
Bruno Randolf8a89f062010-06-16 19:11:51 +09001309
Bruno Randolf8a89f062010-06-16 19:11:51 +09001310 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 Roskin6a2a0e72011-07-09 00:17:51 -04001331 * frame, but I'm not sure.
Bruno Randolf8a89f062010-06-16 19:11:51 +09001332 *
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 Roskine0d687b2011-07-14 20:21:55 -04001338 rxs->mactime = ath5k_extend_tsf(ah, rs->rs_tstamp);
Johannes Berg6ebacbb2011-02-23 15:06:08 +01001339 rxs->flag |= RX_FLAG_MACTIME_MPDU;
Bruno Randolf8a89f062010-06-16 19:11:51 +09001340
Pavel Roskine0d687b2011-07-14 20:21:55 -04001341 rxs->freq = ah->curchan->center_freq;
1342 rxs->band = ah->curchan->band;
Bruno Randolf8a89f062010-06-16 19:11:51 +09001343
Pavel Roskine0d687b2011-07-14 20:21:55 -04001344 rxs->signal = ah->ah_noise_floor + rs->rs_rssi;
Bruno Randolf8a89f062010-06-16 19:11:51 +09001345
1346 rxs->antenna = rs->rs_antenna;
1347
1348 if (rs->rs_antenna > 0 && rs->rs_antenna < 5)
Pavel Roskine0d687b2011-07-14 20:21:55 -04001349 ah->stats.antenna_rx[rs->rs_antenna]++;
Bruno Randolf8a89f062010-06-16 19:11:51 +09001350 else
Pavel Roskine0d687b2011-07-14 20:21:55 -04001351 ah->stats.antenna_rx[0]++; /* invalid */
Bruno Randolf8a89f062010-06-16 19:11:51 +09001352
Pavel Roskine0d687b2011-07-14 20:21:55 -04001353 rxs->rate_idx = ath5k_hw_to_driver_rix(ah, rs->rs_rate);
1354 rxs->flag |= ath5k_rx_decrypted(ah, skb, rs);
Bruno Randolf8a89f062010-06-16 19:11:51 +09001355
1356 if (rxs->rate_idx >= 0 && rs->rs_rate ==
Pavel Roskine0d687b2011-07-14 20:21:55 -04001357 ah->sbands[ah->curchan->band].bitrates[rxs->rate_idx].hw_value_short)
Bruno Randolf8a89f062010-06-16 19:11:51 +09001358 rxs->flag |= RX_FLAG_SHORTPRE;
1359
Pavel Roskine0d687b2011-07-14 20:21:55 -04001360 trace_ath5k_rx(ah, skb);
Bruno Randolf8a89f062010-06-16 19:11:51 +09001361
Pavel Roskine0d687b2011-07-14 20:21:55 -04001362 ath5k_update_beacon_rssi(ah, skb, rs->rs_rssi);
Bruno Randolf8a89f062010-06-16 19:11:51 +09001363
1364 /* check beacons in IBSS mode */
Pavel Roskine0d687b2011-07-14 20:21:55 -04001365 if (ah->opmode == NL80211_IFTYPE_ADHOC)
1366 ath5k_check_ibss_tsf(ah, skb, rxs);
Bruno Randolf8a89f062010-06-16 19:11:51 +09001367
Pavel Roskine0d687b2011-07-14 20:21:55 -04001368 ieee80211_rx(ah->hw, skb);
Bruno Randolf8a89f062010-06-16 19:11:51 +09001369}
1370
Bruno Randolf02a78b42010-06-16 19:11:56 +09001371/** 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 */
1376static bool
Pavel Roskine0d687b2011-07-14 20:21:55 -04001377ath5k_receive_frame_ok(struct ath5k_hw *ah, struct ath5k_rx_status *rs)
Bruno Randolf02a78b42010-06-16 19:11:56 +09001378{
Pavel Roskine0d687b2011-07-14 20:21:55 -04001379 ah->stats.rx_all_count++;
1380 ah->stats.rx_bytes_count += rs->rs_datalen;
Bruno Randolf02a78b42010-06-16 19:11:56 +09001381
1382 if (unlikely(rs->rs_status)) {
1383 if (rs->rs_status & AR5K_RXERR_CRC)
Pavel Roskine0d687b2011-07-14 20:21:55 -04001384 ah->stats.rxerr_crc++;
Bruno Randolf02a78b42010-06-16 19:11:56 +09001385 if (rs->rs_status & AR5K_RXERR_FIFO)
Pavel Roskine0d687b2011-07-14 20:21:55 -04001386 ah->stats.rxerr_fifo++;
Bruno Randolf02a78b42010-06-16 19:11:56 +09001387 if (rs->rs_status & AR5K_RXERR_PHY) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001388 ah->stats.rxerr_phy++;
Bruno Randolf02a78b42010-06-16 19:11:56 +09001389 if (rs->rs_phyerr > 0 && rs->rs_phyerr < 32)
Pavel Roskine0d687b2011-07-14 20:21:55 -04001390 ah->stats.rxerr_phy_code[rs->rs_phyerr]++;
Bruno Randolf02a78b42010-06-16 19:11:56 +09001391 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 Roskine0d687b2011-07-14 20:21:55 -04001404 ah->stats.rxerr_decrypt++;
Bruno Randolf02a78b42010-06-16 19:11:56 +09001405 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 Roskine0d687b2011-07-14 20:21:55 -04001410 ah->stats.rxerr_mic++;
Bruno Randolf02a78b42010-06-16 19:11:56 +09001411 return true;
1412 }
1413
Bob Copeland23538c22010-08-15 13:03:13 -04001414 /* reject any frames with non-crypto errors */
1415 if (rs->rs_status & ~(AR5K_RXERR_DECRYPT))
Bruno Randolf02a78b42010-06-16 19:11:56 +09001416 return false;
1417 }
1418
1419 if (unlikely(rs->rs_more)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001420 ah->stats.rxerr_jumbo++;
Bruno Randolf02a78b42010-06-16 19:11:56 +09001421 return false;
1422 }
1423 return true;
1424}
1425
Bruno Randolf8a89f062010-06-16 19:11:51 +09001426static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001427ath5k_set_current_imask(struct ath5k_hw *ah)
Felix Fietkauc266c712011-04-10 18:32:19 +02001428{
Pavel Roskin4fc54012011-07-07 18:14:25 -04001429 enum ath5k_int imask;
Felix Fietkauc266c712011-04-10 18:32:19 +02001430 unsigned long flags;
1431
Pavel Roskine0d687b2011-07-14 20:21:55 -04001432 spin_lock_irqsave(&ah->irqlock, flags);
1433 imask = ah->imask;
1434 if (ah->rx_pending)
Felix Fietkauc266c712011-04-10 18:32:19 +02001435 imask &= ~AR5K_INT_RX_ALL;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001436 if (ah->tx_pending)
Felix Fietkauc266c712011-04-10 18:32:19 +02001437 imask &= ~AR5K_INT_TX_ALL;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001438 ath5k_hw_set_imr(ah, imask);
1439 spin_unlock_irqrestore(&ah->irqlock, flags);
Felix Fietkauc266c712011-04-10 18:32:19 +02001440}
1441
1442static void
Bruno Randolf8a89f062010-06-16 19:11:51 +09001443ath5k_tasklet_rx(unsigned long data)
1444{
Bruno Randolfb47f4072008-03-05 18:35:45 +09001445 struct ath5k_rx_status rs = {};
Bob Copelandb6ea0352009-01-10 14:42:54 -05001446 struct sk_buff *skb, *next_skb;
1447 dma_addr_t next_skb_addr;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001448 struct ath5k_hw *ah = (void *)data;
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -08001449 struct ath_common *common = ath5k_hw_common(ah);
Bob Copelandc57ca812009-04-15 07:57:35 -04001450 struct ath5k_buf *bf;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001451 struct ath5k_desc *ds;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001452 int ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001453
Pavel Roskine0d687b2011-07-14 20:21:55 -04001454 spin_lock(&ah->rxbuflock);
1455 if (list_empty(&ah->rxbuf)) {
1456 ATH5K_WARN(ah, "empty rx buf pool\n");
Jiri Slaby3a0f2c82008-07-15 17:44:18 +02001457 goto unlock;
1458 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001459 do {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001460 bf = list_first_entry(&ah->rxbuf, struct ath5k_buf, list);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001461 BUG_ON(bf->skb == NULL);
1462 skb = bf->skb;
1463 ds = bf->desc;
1464
Bob Copelandc57ca812009-04-15 07:57:35 -04001465 /* bail if HW is still using self-linked descriptor */
Pavel Roskine0d687b2011-07-14 20:21:55 -04001466 if (ath5k_hw_get_rxdp(ah) == bf->daddr)
Bob Copelandc57ca812009-04-15 07:57:35 -04001467 break;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001468
Pavel Roskine0d687b2011-07-14 20:21:55 -04001469 ret = ah->ah_proc_rx_desc(ah, ds, &rs);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001470 if (unlikely(ret == -EINPROGRESS))
1471 break;
1472 else if (unlikely(ret)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001473 ATH5K_ERR(ah, "error in processing rx descriptor\n");
1474 ah->stats.rxerr_proc++;
Bruno Randolfb16062f2010-06-16 19:11:46 +09001475 break;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001476 }
1477
Pavel Roskine0d687b2011-07-14 20:21:55 -04001478 if (ath5k_receive_frame_ok(ah, &rs)) {
1479 next_skb = ath5k_rx_skb_alloc(ah, &next_skb_addr);
Bruno Randolf76443952010-03-09 16:56:00 +09001480
Bruno Randolf02a78b42010-06-16 19:11:56 +09001481 /*
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 Slabyfa1c1142007-08-12 17:33:16 +02001486 goto next;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001487
Pavel Roskine0d687b2011-07-14 20:21:55 -04001488 dma_unmap_single(ah->dev, bf->skbaddr,
Bruno Randolf02a78b42010-06-16 19:11:56 +09001489 common->rx_bufsize,
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001490 DMA_FROM_DEVICE);
Bruno Randolf02a78b42010-06-16 19:11:56 +09001491
1492 skb_put(skb, rs.rs_datalen);
1493
Pavel Roskine0d687b2011-07-14 20:21:55 -04001494 ath5k_receive_frame(ah, skb, &rs);
Bruno Randolf02a78b42010-06-16 19:11:56 +09001495
1496 bf->skb = next_skb;
1497 bf->skbaddr = next_skb_addr;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001498 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001499next:
Pavel Roskine0d687b2011-07-14 20:21:55 -04001500 list_move_tail(&bf->list, &ah->rxbuf);
1501 } while (ath5k_rxbuf_setup(ah, bf) == 0);
Jiri Slaby3a0f2c82008-07-15 17:44:18 +02001502unlock:
Pavel Roskine0d687b2011-07-14 20:21:55 -04001503 spin_unlock(&ah->rxbuflock);
1504 ah->rx_pending = false;
1505 ath5k_set_current_imask(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001506}
1507
1508
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001509/*************\
1510* TX Handling *
1511\*************/
1512
Johannes Berg7bb45682011-02-24 14:42:06 +01001513void
Bruno Randolfcd2c5482010-12-22 19:20:32 +09001514ath5k_tx_queue(struct ieee80211_hw *hw, struct sk_buff *skb,
1515 struct ath5k_txq *txq)
Bob Copeland8a63fac2010-09-17 12:45:07 +09001516{
Pavel Roskine0d687b2011-07-14 20:21:55 -04001517 struct ath5k_hw *ah = hw->priv;
Bob Copeland8a63fac2010-09-17 12:45:07 +09001518 struct ath5k_buf *bf;
1519 unsigned long flags;
1520 int padsize;
1521
Pavel Roskine0d687b2011-07-14 20:21:55 -04001522 trace_ath5k_tx(ah, skb, txq);
Bob Copeland8a63fac2010-09-17 12:45:07 +09001523
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 Roskine0d687b2011-07-14 20:21:55 -04001530 ATH5K_ERR(ah, "tx hdrlen not %%4: not enough"
Bob Copeland8a63fac2010-09-17 12:45:07 +09001531 " headroom to pad");
1532 goto drop_packet;
1533 }
1534
Felix Fietkau4e868792011-07-12 09:02:05 +08001535 if (txq->txq_len >= txq->txq_max &&
1536 txq->qnum <= AR5K_TX_QUEUE_ID_DATA_MAX)
Bruno Randolf925e0b02010-09-17 11:36:35 +09001537 ieee80211_stop_queue(hw, txq->qnum);
1538
Pavel Roskine0d687b2011-07-14 20:21:55 -04001539 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 Randolf651d9372010-09-17 11:36:46 +09001543 ieee80211_stop_queues(hw);
Bob Copeland8a63fac2010-09-17 12:45:07 +09001544 goto drop_packet;
1545 }
Pavel Roskine0d687b2011-07-14 20:21:55 -04001546 bf = list_first_entry(&ah->txbuf, struct ath5k_buf, list);
Bob Copeland8a63fac2010-09-17 12:45:07 +09001547 list_del(&bf->list);
Pavel Roskine0d687b2011-07-14 20:21:55 -04001548 ah->txbuf_len--;
1549 if (list_empty(&ah->txbuf))
Bob Copeland8a63fac2010-09-17 12:45:07 +09001550 ieee80211_stop_queues(hw);
Pavel Roskine0d687b2011-07-14 20:21:55 -04001551 spin_unlock_irqrestore(&ah->txbuflock, flags);
Bob Copeland8a63fac2010-09-17 12:45:07 +09001552
1553 bf->skb = skb;
1554
Pavel Roskine0d687b2011-07-14 20:21:55 -04001555 if (ath5k_txbuf_setup(ah, bf, txq, padsize)) {
Bob Copeland8a63fac2010-09-17 12:45:07 +09001556 bf->skb = NULL;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001557 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 Copeland8a63fac2010-09-17 12:45:07 +09001561 goto drop_packet;
1562 }
Johannes Berg7bb45682011-02-24 14:42:06 +01001563 return;
Bob Copeland8a63fac2010-09-17 12:45:07 +09001564
1565drop_packet:
1566 dev_kfree_skb_any(skb);
Bob Copeland8a63fac2010-09-17 12:45:07 +09001567}
1568
Bruno Randolf14404012010-09-17 11:36:51 +09001569static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001570ath5k_tx_frame_completed(struct ath5k_hw *ah, struct sk_buff *skb,
Bob Copeland0e472252011-01-24 23:32:55 -05001571 struct ath5k_txq *txq, struct ath5k_tx_status *ts)
Bruno Randolf14404012010-09-17 11:36:51 +09001572{
1573 struct ieee80211_tx_info *info;
Felix Fietkaued895082011-04-10 18:32:17 +02001574 u8 tries[3];
Bruno Randolf14404012010-09-17 11:36:51 +09001575 int i;
1576
Pavel Roskine0d687b2011-07-14 20:21:55 -04001577 ah->stats.tx_all_count++;
1578 ah->stats.tx_bytes_count += skb->len;
Bruno Randolf14404012010-09-17 11:36:51 +09001579 info = IEEE80211_SKB_CB(skb);
1580
Felix Fietkaued895082011-04-10 18:32:17 +02001581 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 Randolf14404012010-09-17 11:36:51 +09001585 ieee80211_tx_info_clear_status(info);
Felix Fietkaued895082011-04-10 18:32:17 +02001586
1587 for (i = 0; i < ts->ts_final_idx; i++) {
Bruno Randolf14404012010-09-17 11:36:51 +09001588 struct ieee80211_tx_rate *r =
1589 &info->status.rates[i];
1590
Felix Fietkaued895082011-04-10 18:32:17 +02001591 r->count = tries[i];
Bruno Randolf14404012010-09-17 11:36:51 +09001592 }
1593
Felix Fietkaued895082011-04-10 18:32:17 +02001594 info->status.rates[ts->ts_final_idx].count = ts->ts_final_retry;
Felix Fietkau6d7b97b2011-04-09 21:37:14 +02001595 info->status.rates[ts->ts_final_idx + 1].idx = -1;
Bruno Randolf14404012010-09-17 11:36:51 +09001596
1597 if (unlikely(ts->ts_status)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001598 ah->stats.ack_fail++;
Bruno Randolf14404012010-09-17 11:36:51 +09001599 if (ts->ts_status & AR5K_TXERR_FILT) {
1600 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001601 ah->stats.txerr_filt++;
Bruno Randolf14404012010-09-17 11:36:51 +09001602 }
1603 if (ts->ts_status & AR5K_TXERR_XRETRY)
Pavel Roskine0d687b2011-07-14 20:21:55 -04001604 ah->stats.txerr_retry++;
Bruno Randolf14404012010-09-17 11:36:51 +09001605 if (ts->ts_status & AR5K_TXERR_FIFO)
Pavel Roskine0d687b2011-07-14 20:21:55 -04001606 ah->stats.txerr_fifo++;
Bruno Randolf14404012010-09-17 11:36:51 +09001607 } else {
1608 info->flags |= IEEE80211_TX_STAT_ACK;
1609 info->status.ack_signal = ts->ts_rssi;
Felix Fietkau6d7b97b2011-04-09 21:37:14 +02001610
1611 /* count the successful attempt as well */
1612 info->status.rates[ts->ts_final_idx].count++;
Bruno Randolf14404012010-09-17 11:36:51 +09001613 }
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 Roskine0d687b2011-07-14 20:21:55 -04001622 ah->stats.antenna_tx[ts->ts_antenna]++;
Bruno Randolf14404012010-09-17 11:36:51 +09001623 else
Pavel Roskine0d687b2011-07-14 20:21:55 -04001624 ah->stats.antenna_tx[0]++; /* invalid */
Bruno Randolf14404012010-09-17 11:36:51 +09001625
Pavel Roskine0d687b2011-07-14 20:21:55 -04001626 trace_ath5k_tx_complete(ah, skb, txq, ts);
1627 ieee80211_tx_status(ah->hw, skb);
Bruno Randolf14404012010-09-17 11:36:51 +09001628}
Bob Copeland8a63fac2010-09-17 12:45:07 +09001629
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001630static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001631ath5k_tx_processq(struct ath5k_hw *ah, struct ath5k_txq *txq)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001632{
Bruno Randolfb47f4072008-03-05 18:35:45 +09001633 struct ath5k_tx_status ts = {};
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001634 struct ath5k_buf *bf, *bf0;
1635 struct ath5k_desc *ds;
1636 struct sk_buff *skb;
Bruno Randolf14404012010-09-17 11:36:51 +09001637 int ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001638
1639 spin_lock(&txq->lock);
1640 list_for_each_entry_safe(bf, bf0, &txq->q, list) {
Bruno Randolf23413292010-09-17 11:37:07 +09001641
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 Roskine0d687b2011-07-14 20:21:55 -04001648 ret = ah->ah_proc_tx_desc(ah, ds, &ts);
Bruno Randolf23413292010-09-17 11:37:07 +09001649 if (unlikely(ret == -EINPROGRESS))
1650 break;
1651 else if (unlikely(ret)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001652 ATH5K_ERR(ah,
Bruno Randolf23413292010-09-17 11:37:07 +09001653 "error %d while processing "
1654 "queue %u\n", ret, txq->qnum);
1655 break;
1656 }
1657
1658 skb = bf->skb;
1659 bf->skb = NULL;
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001660
Pavel Roskine0d687b2011-07-14 20:21:55 -04001661 dma_unmap_single(ah->dev, bf->skbaddr, skb->len,
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001662 DMA_TO_DEVICE);
Pavel Roskine0d687b2011-07-14 20:21:55 -04001663 ath5k_tx_frame_completed(ah, skb, txq, &ts);
Bruno Randolf23413292010-09-17 11:37:07 +09001664 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001665
Bob Copelanda05988b2010-04-07 23:55:58 -04001666 /*
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 Randolf23413292010-09-17 11:37:07 +09001669 * host memory and moved on.
1670 * Always keep the last descriptor to avoid HW races...
Bob Copelanda05988b2010-04-07 23:55:58 -04001671 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04001672 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 Randolf23413292010-09-17 11:37:07 +09001676 txq->txq_len--;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001677 spin_unlock(&ah->txbuflock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001678 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001679 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001680 spin_unlock(&txq->lock);
Bruno Randolf4198a8d2010-10-05 13:27:17 +09001681 if (txq->txq_len < ATH5K_TXQ_LEN_LOW && txq->qnum < 4)
Pavel Roskine0d687b2011-07-14 20:21:55 -04001682 ieee80211_wake_queue(ah->hw, txq->qnum);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001683}
1684
1685static void
1686ath5k_tasklet_tx(unsigned long data)
1687{
Bob Copeland8784d2e2009-07-29 17:32:28 -04001688 int i;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001689 struct ath5k_hw *ah = (void *)data;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001690
Pavel Roskine4bbf2f2011-07-07 18:14:13 -04001691 for (i = 0; i < AR5K_NUM_TX_QUEUES; i++)
Nick Kossifidis7ff7c822011-11-25 20:40:20 +02001692 if (ah->txqs[i].setup && (ah->ah_txq_isr_txok_all & BIT(i)))
Pavel Roskine0d687b2011-07-14 20:21:55 -04001693 ath5k_tx_processq(ah, &ah->txqs[i]);
Felix Fietkauc266c712011-04-10 18:32:19 +02001694
Pavel Roskine0d687b2011-07-14 20:21:55 -04001695 ah->tx_pending = false;
1696 ath5k_set_current_imask(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001697}
1698
1699
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001700/*****************\
1701* Beacon handling *
1702\*****************/
1703
1704/*
1705 * Setup the beacon frame for transmit.
1706 */
1707static int
Pavel Roskine0d687b2011-07-14 20:21:55 -04001708ath5k_beacon_setup(struct ath5k_hw *ah, struct ath5k_buf *bf)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001709{
1710 struct sk_buff *skb = bf->skb;
Johannes Berga888d522008-05-26 16:43:39 +02001711 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001712 struct ath5k_desc *ds;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001713 int ret = 0;
1714 u8 antenna;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001715 u32 flags;
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001716 const int padsize = 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001717
Pavel Roskine0d687b2011-07-14 20:21:55 -04001718 bf->skbaddr = dma_map_single(ah->dev, skb->data, skb->len,
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001719 DMA_TO_DEVICE);
Pavel Roskine0d687b2011-07-14 20:21:55 -04001720 ATH5K_DBG(ah, ATH5K_DEBUG_BEACON, "skb %p [data %p len %u] "
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001721 "skbaddr %llx\n", skb, skb->data, skb->len,
1722 (unsigned long long)bf->skbaddr);
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001723
Pavel Roskine0d687b2011-07-14 20:21:55 -04001724 if (dma_mapping_error(ah->dev, bf->skbaddr)) {
1725 ATH5K_ERR(ah, "beacon DMA mapping failed\n");
Bob Copelandbdc71bc2011-08-07 19:36:07 -04001726 dev_kfree_skb_any(skb);
1727 bf->skb = NULL;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001728 return -EIO;
1729 }
1730
1731 ds = bf->desc;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001732 antenna = ah->ah_tx_ant;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001733
1734 flags = AR5K_TXDESC_NOACK;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001735 if (ah->opmode == NL80211_IFTYPE_ADHOC && ath5k_hw_hasveol(ah)) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001736 ds->ds_link = bf->daddr; /* self-linked */
1737 flags |= AR5K_TXDESC_VEOL;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001738 } else
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001739 ds->ds_link = 0;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001740
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 Roskin6a2a0e72011-07-09 00:17:51 -04001747 * automatically, based on ACKed packets.
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001748 *
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 Copelanda180a132010-08-15 13:03:12 -04001753 * 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 Kossifidis2bed03e2009-04-30 15:55:49 -04001758 */
1759 if (ah->ah_ant_mode == AR5K_ANTMODE_SECTOR_AP)
Pavel Roskine0d687b2011-07-14 20:21:55 -04001760 antenna = ah->bsent & 4 ? 2 : 1;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001761
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001762
Nick Kossifidis8f655dd2009-03-15 22:20:35 +02001763 /* 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 Slabyfa1c1142007-08-12 17:33:16 +02001766 ds->ds_data = bf->skbaddr;
Bruno Randolf281c56d2008-02-05 18:44:55 +09001767 ret = ah->ah_setup_tx_desc(ah, ds, skb->len,
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001768 ieee80211_get_hdrlen_from_skb(skb), padsize,
Pavel Roskine0d687b2011-07-14 20:21:55 -04001769 AR5K_PKT_TYPE_BEACON, (ah->power_level * 2),
1770 ieee80211_get_tx_rate(ah->hw, info)->hw_value,
Johannes Berg2e92e6f2008-05-15 12:55:27 +02001771 1, AR5K_TXKEYIX_INVALID,
Luis R. Rodriguez400ec452008-02-03 21:51:49 -05001772 antenna, flags, 0, 0);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001773 if (ret)
1774 goto err_unmap;
1775
1776 return 0;
1777err_unmap:
Pavel Roskine0d687b2011-07-14 20:21:55 -04001778 dma_unmap_single(ah->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001779 return ret;
1780}
1781
1782/*
Bob Copeland8a63fac2010-09-17 12:45:07 +09001783 * 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 Randolfcd2c5482010-12-22 19:20:32 +09001789int
Bob Copeland8a63fac2010-09-17 12:45:07 +09001790ath5k_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
1791{
1792 int ret;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001793 struct ath5k_hw *ah = hw->priv;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001794 struct ath5k_vif *avf = (void *)vif->drv_priv;
Bob Copeland8a63fac2010-09-17 12:45:07 +09001795 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 Roskine0d687b2011-07-14 20:21:55 -04001809 ath5k_txbuf_free_skb(ah, avf->bbuf);
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001810 avf->bbuf->skb = skb;
Pavel Roskine0d687b2011-07-14 20:21:55 -04001811 ret = ath5k_beacon_setup(ah, avf->bbuf);
Bob Copeland8a63fac2010-09-17 12:45:07 +09001812out:
1813 return ret;
1814}
1815
1816/*
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001817 * 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 Copeland5faaff72010-07-13 11:32:40 -04001821 * This is called from software irq context (beacontq tasklets)
1822 * or user context from ath5k_beacon_config.
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001823 */
1824static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001825ath5k_beacon_send(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001826{
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001827 struct ieee80211_vif *vif;
1828 struct ath5k_vif *avf;
1829 struct ath5k_buf *bf;
Bob Copelandcec8db22009-07-04 12:59:51 -04001830 struct sk_buff *skb;
Bob Copelandbdc71bc2011-08-07 19:36:07 -04001831 int err;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001832
Pavel Roskine0d687b2011-07-14 20:21:55 -04001833 ATH5K_DBG_UNLIMIT(ah, ATH5K_DEBUG_BEACON, "in beacon_send\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001834
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001835 /*
1836 * Check if the previous beacon has gone out. If
Bob Copelanda180a132010-08-15 13:03:12 -04001837 * not, don't don't try to post another: skip this
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001838 * 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 Roskine0d687b2011-07-14 20:21:55 -04001842 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 Slabyfa1c1142007-08-12 17:33:16 +02001848 "stuck beacon time (%u missed)\n",
Pavel Roskine0d687b2011-07-14 20:21:55 -04001849 ah->bmisscount);
1850 ATH5K_DBG(ah, ATH5K_DEBUG_RESET,
Bruno Randolf8d67a032010-06-16 19:11:12 +09001851 "stuck beacon, resetting\n");
Pavel Roskine0d687b2011-07-14 20:21:55 -04001852 ieee80211_queue_work(ah->hw, &ah->reset_work);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001853 }
1854 return;
1855 }
Pavel Roskine0d687b2011-07-14 20:21:55 -04001856 if (unlikely(ah->bmisscount != 0)) {
1857 ATH5K_DBG(ah, ATH5K_DEBUG_BEACON,
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001858 "resume beacon xmit after %u misses\n",
Pavel Roskine0d687b2011-07-14 20:21:55 -04001859 ah->bmisscount);
1860 ah->bmisscount = 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001861 }
1862
Pavel Roskine0d687b2011-07-14 20:21:55 -04001863 if ((ah->opmode == NL80211_IFTYPE_AP && ah->num_ap_vifs > 1) ||
1864 ah->opmode == NL80211_IFTYPE_MESH_POINT) {
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001865 u64 tsf = ath5k_hw_get_tsf64(ah);
1866 u32 tsftu = TSF_TO_TU(tsf);
Pavel Roskine0d687b2011-07-14 20:21:55 -04001867 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 Greearb1ae1ed2010-09-30 12:22:58 -07001870 "tsf %llx tsftu %x intval %u slot %u vif %p\n",
Pavel Roskine0d687b2011-07-14 20:21:55 -04001871 (unsigned long long)tsf, tsftu, ah->bintval, slot, vif);
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001872 } else /* only one interface */
Pavel Roskine0d687b2011-07-14 20:21:55 -04001873 vif = ah->bslot[0];
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001874
1875 if (!vif)
1876 return;
1877
1878 avf = (void *)vif->drv_priv;
1879 bf = avf->bbuf;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001880
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001881 /*
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 Roskine0d687b2011-07-14 20:21:55 -04001886 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 Slabyfa1c1142007-08-12 17:33:16 +02001888 /* NB: hw still stops DMA, so proceed */
1889 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001890
Javier Cardonad82b5772010-12-07 13:35:55 -08001891 /* refresh the beacon for AP or MESH mode */
Pavel Roskine0d687b2011-07-14 20:21:55 -04001892 if (ah->opmode == NL80211_IFTYPE_AP ||
Bob Copelandbdc71bc2011-08-07 19:36:07 -04001893 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 Copeland1071db82009-05-18 10:59:52 -04001904
Pavel Roskine0d687b2011-07-14 20:21:55 -04001905 trace_ath5k_tx(ah, bf->skb, &ah->txqs[ah->bhalq]);
Bob Copeland0e472252011-01-24 23:32:55 -05001906
Pavel Roskine0d687b2011-07-14 20:21:55 -04001907 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 Slabyfa1c1142007-08-12 17:33:16 +02001911
Pavel Roskine0d687b2011-07-14 20:21:55 -04001912 skb = ieee80211_get_buffered_bc(ah->hw, vif);
Bob Copelandcec8db22009-07-04 12:59:51 -04001913 while (skb) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04001914 ath5k_tx_queue(ah->hw, skb, ah->cabq);
Felix Fietkau4e868792011-07-12 09:02:05 +08001915
Pavel Roskine0d687b2011-07-14 20:21:55 -04001916 if (ah->cabq->txq_len >= ah->cabq->txq_max)
Felix Fietkau4e868792011-07-12 09:02:05 +08001917 break;
1918
Pavel Roskine0d687b2011-07-14 20:21:55 -04001919 skb = ieee80211_get_buffered_bc(ah->hw, vif);
Bob Copelandcec8db22009-07-04 12:59:51 -04001920 }
1921
Pavel Roskine0d687b2011-07-14 20:21:55 -04001922 ah->bsent++;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001923}
1924
Bruno Randolf9804b982008-01-19 18:17:59 +09001925/**
1926 * ath5k_beacon_update_timers - update beacon timers
1927 *
Pavel Roskine0d687b2011-07-14 20:21:55 -04001928 * @ah: struct ath5k_hw pointer we are operating on
Bruno Randolf9804b982008-01-19 18:17:59 +09001929 * @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 Randolf6ba81c22008-03-05 18:36:26 +09001937 * when a TSF update has been detected, but also when an new IBSS is created or
Bruno Randolf9804b982008-01-19 18:17:59 +09001938 * 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 Randolfcd2c5482010-12-22 19:20:32 +09001941void
Pavel Roskine0d687b2011-07-14 20:21:55 -04001942ath5k_beacon_update_timers(struct ath5k_hw *ah, u64 bc_tsf)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001943{
Bruno Randolf9804b982008-01-19 18:17:59 +09001944 u32 nexttbtt, intval, hw_tu, bc_tu;
1945 u64 hw_tsf;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001946
Pavel Roskine0d687b2011-07-14 20:21:55 -04001947 intval = ah->bintval & AR5K_BEACON_PERIOD;
1948 if (ah->opmode == NL80211_IFTYPE_AP && ah->num_ap_vifs > 1) {
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001949 intval /= ATH_BCBUF; /* staggered multi-bss beacons */
1950 if (intval < 15)
Pavel Roskine0d687b2011-07-14 20:21:55 -04001951 ATH5K_WARN(ah, "intval %u is too low, min 15\n",
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001952 intval);
1953 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001954 if (WARN_ON(!intval))
1955 return;
1956
Bruno Randolf9804b982008-01-19 18:17:59 +09001957 /* beacon TSF converted to TU */
1958 bc_tu = TSF_TO_TU(bc_tsf);
1959
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001960 /* current TSF converted to TU */
Bruno Randolf9804b982008-01-19 18:17:59 +09001961 hw_tsf = ath5k_hw_get_tsf64(ah);
1962 hw_tu = TSF_TO_TU(hw_tsf);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001963
Pavel Roskin633d0062011-07-07 18:14:01 -04001964#define FUDGE (AR5K_TUNE_SW_BEACON_RESP + 3)
Bruno Randolf11f21df2010-09-27 12:22:26 +09001965 /* We use FUDGE to make sure the next TBTT is ahead of the current TU.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001966 * Since we later subtract AR5K_TUNE_SW_BEACON_RESP (10) in the timer
Bruno Randolf11f21df2010-09-27 12:22:26 +09001967 * configuration we need to make sure it is bigger than that. */
1968
Bruno Randolf9804b982008-01-19 18:17:59 +09001969 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 Marchi25985ed2011-03-30 22:57:33 -03001984 * beacon received, SW merge happened but HW TSF not yet updated.
Bruno Randolf9804b982008-01-19 18:17:59 +09001985 * 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 Roskine0d687b2011-07-14 20:21:55 -04001990 ATH5K_DBG_UNLIMIT(ah, ATH5K_DEBUG_BEACON,
Bruno Randolf9804b982008-01-19 18:17:59 +09001991 "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 Slabyfa1c1142007-08-12 17:33:16 +02002004
Pavel Roskine0d687b2011-07-14 20:21:55 -04002005 ah->nexttbtt = nexttbtt;
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002006
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002007 intval |= AR5K_BEACON_ENA;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002008 ath5k_hw_init_beacon(ah, nexttbtt, intval);
Bruno Randolf9804b982008-01-19 18:17:59 +09002009
2010 /*
2011 * debugging output last in order to preserve the time critical aspect
2012 * of this function
2013 */
2014 if (bc_tsf == -1)
Pavel Roskine0d687b2011-07-14 20:21:55 -04002015 ATH5K_DBG_UNLIMIT(ah, ATH5K_DEBUG_BEACON,
Bruno Randolf9804b982008-01-19 18:17:59 +09002016 "reconfigured timers based on HW TSF\n");
2017 else if (bc_tsf == 0)
Pavel Roskine0d687b2011-07-14 20:21:55 -04002018 ATH5K_DBG_UNLIMIT(ah, ATH5K_DEBUG_BEACON,
Bruno Randolf9804b982008-01-19 18:17:59 +09002019 "reset HW TSF and timers\n");
2020 else
Pavel Roskine0d687b2011-07-14 20:21:55 -04002021 ATH5K_DBG_UNLIMIT(ah, ATH5K_DEBUG_BEACON,
Bruno Randolf9804b982008-01-19 18:17:59 +09002022 "updated timers based on beacon TSF\n");
2023
Pavel Roskine0d687b2011-07-14 20:21:55 -04002024 ATH5K_DBG_UNLIMIT(ah, ATH5K_DEBUG_BEACON,
David Miller04f93a82008-02-15 16:08:59 -08002025 "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 Roskine0d687b2011-07-14 20:21:55 -04002028 ATH5K_DBG_UNLIMIT(ah, ATH5K_DEBUG_BEACON, "intval %u %s %s\n",
Bruno Randolf9804b982008-01-19 18:17:59 +09002029 intval & AR5K_BEACON_PERIOD,
2030 intval & AR5K_BEACON_ENA ? "AR5K_BEACON_ENA" : "",
2031 intval & AR5K_BEACON_RESET_TSF ? "AR5K_BEACON_RESET_TSF" : "");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002032}
2033
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002034/**
2035 * ath5k_beacon_config - Configure the beacon queues and interrupts
2036 *
Pavel Roskine0d687b2011-07-14 20:21:55 -04002037 * @ah: struct ath5k_hw pointer we are operating on
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002038 *
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002039 * In IBSS mode we use a self-linked tx descriptor if possible. We enable SWBA
Bruno Randolf6ba81c22008-03-05 18:36:26 +09002040 * interrupts to detect TSF updates only.
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002041 */
Bruno Randolfcd2c5482010-12-22 19:20:32 +09002042void
Pavel Roskine0d687b2011-07-14 20:21:55 -04002043ath5k_beacon_config(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002044{
Bob Copelandb5f03952009-02-15 12:06:10 -05002045 unsigned long flags;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002046
Pavel Roskine0d687b2011-07-14 20:21:55 -04002047 spin_lock_irqsave(&ah->block, flags);
2048 ah->bmisscount = 0;
2049 ah->imask &= ~(AR5K_INT_BMISS | AR5K_INT_SWBA);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002050
Pavel Roskine0d687b2011-07-14 20:21:55 -04002051 if (ah->enable_beacon) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002052 /*
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002053 * 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 Slabyfa1c1142007-08-12 17:33:16 +02002055 * only once here.
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002056 * We use the SWBA interrupt only to keep track of the beacon
Bruno Randolf6ba81c22008-03-05 18:36:26 +09002057 * timers in order to detect automatic TSF updates.
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002058 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002059 ath5k_beaconq_config(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002060
Pavel Roskine0d687b2011-07-14 20:21:55 -04002061 ah->imask |= AR5K_INT_SWBA;
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002062
Pavel Roskine0d687b2011-07-14 20:21:55 -04002063 if (ah->opmode == NL80211_IFTYPE_ADHOC) {
Bob Copeland21800492009-07-04 12:59:52 -04002064 if (ath5k_hw_hasveol(ah))
Pavel Roskine0d687b2011-07-14 20:21:55 -04002065 ath5k_beacon_send(ah);
Jiri Slabyda966bc2008-10-12 22:54:10 +02002066 } else
Pavel Roskine0d687b2011-07-14 20:21:55 -04002067 ath5k_beacon_update_timers(ah, -1);
Bob Copeland21800492009-07-04 12:59:52 -04002068 } else {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002069 ath5k_hw_stop_beacon_queue(ah, ah->bhalq);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002070 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002071
Pavel Roskine0d687b2011-07-14 20:21:55 -04002072 ath5k_hw_set_imr(ah, ah->imask);
Bob Copeland21800492009-07-04 12:59:52 -04002073 mmiowb();
Pavel Roskine0d687b2011-07-14 20:21:55 -04002074 spin_unlock_irqrestore(&ah->block, flags);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002075}
2076
Nick Kossifidis428cbd42009-04-30 15:55:47 -04002077static void ath5k_tasklet_beacon(unsigned long data)
2078{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002079 struct ath5k_hw *ah = (struct ath5k_hw *) data;
Nick Kossifidis428cbd42009-04-30 15:55:47 -04002080
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 Roskin6a2a0e72011-07-09 00:17:51 -04002086 * transmission time) in order to detect whether
Nick Kossifidis428cbd42009-04-30 15:55:47 -04002087 * automatic TSF updates happened.
2088 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002089 if (ah->opmode == NL80211_IFTYPE_ADHOC) {
Pavel Roskin6a2a0e72011-07-09 00:17:51 -04002090 /* XXX: only if VEOL supported */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002091 u64 tsf = ath5k_hw_get_tsf64(ah);
2092 ah->nexttbtt += ah->bintval;
2093 ATH5K_DBG(ah, ATH5K_DEBUG_BEACON,
Nick Kossifidis428cbd42009-04-30 15:55:47 -04002094 "SWBA nexttbtt: %x hw_tu: %x "
2095 "TSF: %llx\n",
Pavel Roskine0d687b2011-07-14 20:21:55 -04002096 ah->nexttbtt,
Nick Kossifidis428cbd42009-04-30 15:55:47 -04002097 TSF_TO_TU(tsf),
2098 (unsigned long long) tsf);
2099 } else {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002100 spin_lock(&ah->block);
2101 ath5k_beacon_send(ah);
2102 spin_unlock(&ah->block);
Nick Kossifidis428cbd42009-04-30 15:55:47 -04002103 }
2104}
2105
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002106
2107/********************\
2108* Interrupt handling *
2109\********************/
2110
Bruno Randolf6a8a3f62010-03-25 14:49:19 +09002111static void
2112ath5k_intr_calibration_poll(struct ath5k_hw *ah)
2113{
Bruno Randolf2111ac02010-04-02 18:44:08 +09002114 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 Roskine0d687b2011-07-14 20:21:55 -04002119 tasklet_schedule(&ah->ani_tasklet);
Bruno Randolf2111ac02010-04-02 18:44:08 +09002120
2121 } else if (time_is_before_eq_jiffies(ah->ah_cal_next_full)) {
Bruno Randolf6a8a3f62010-03-25 14:49:19 +09002122 ah->ah_cal_next_full = jiffies +
2123 msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_FULL);
Pavel Roskine0d687b2011-07-14 20:21:55 -04002124 tasklet_schedule(&ah->calib);
Bruno Randolf6a8a3f62010-03-25 14:49:19 +09002125 }
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 Fietkauc266c712011-04-10 18:32:19 +02002131static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04002132ath5k_schedule_rx(struct ath5k_hw *ah)
Felix Fietkauc266c712011-04-10 18:32:19 +02002133{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002134 ah->rx_pending = true;
2135 tasklet_schedule(&ah->rxtq);
Felix Fietkauc266c712011-04-10 18:32:19 +02002136}
2137
2138static void
Pavel Roskine0d687b2011-07-14 20:21:55 -04002139ath5k_schedule_tx(struct ath5k_hw *ah)
Felix Fietkauc266c712011-04-10 18:32:19 +02002140{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002141 ah->tx_pending = true;
2142 tasklet_schedule(&ah->txtq);
Felix Fietkauc266c712011-04-10 18:32:19 +02002143}
2144
Pavel Roskinf5cbc8b2011-06-15 18:03:22 -04002145static irqreturn_t
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002146ath5k_intr(int irq, void *dev_id)
2147{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002148 struct ath5k_hw *ah = dev_id;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002149 enum ath5k_int status;
2150 unsigned int counter = 1000;
2151
Pavel Roskine0d687b2011-07-14 20:21:55 -04002152 if (unlikely(test_bit(ATH_STAT_INVALID, ah->status) ||
Felix Fietkau4cebb342010-12-02 10:27:21 +01002153 ((ath5k_get_bus_type(ah) != ATH_AHB) &&
2154 !ath5k_hw_is_intr_pending(ah))))
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002155 return IRQ_NONE;
2156
2157 do {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002158 ath5k_hw_get_isr(ah, &status); /* NB: clears IRQ too */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002159 ATH5K_DBG(ah, ATH5K_DEBUG_INTR, "status 0x%x/0x%x\n",
2160 status, ah->imask);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002161 if (unlikely(status & AR5K_INT_FATAL)) {
2162 /*
2163 * Fatal errors are unrecoverable.
2164 * Typically these are caused by DMA errors.
2165 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002166 ATH5K_DBG(ah, ATH5K_DEBUG_RESET,
Bruno Randolf8d67a032010-06-16 19:11:12 +09002167 "fatal int, resetting\n");
Pavel Roskine0d687b2011-07-14 20:21:55 -04002168 ieee80211_queue_work(ah->hw, &ah->reset_work);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002169 } else if (unlikely(status & AR5K_INT_RXORN)) {
Bruno Randolf87d77c42010-04-12 16:38:52 +09002170 /*
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 Roskine0d687b2011-07-14 20:21:55 -04002179 ah->stats.rxorn_intr++;
Bruno Randolf8d67a032010-06-16 19:11:12 +09002180 if (ah->ah_mac_srev < AR5K_SREV_AR5212) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002181 ATH5K_DBG(ah, ATH5K_DEBUG_RESET,
Bruno Randolf8d67a032010-06-16 19:11:12 +09002182 "rx overrun, resetting\n");
Pavel Roskine0d687b2011-07-14 20:21:55 -04002183 ieee80211_queue_work(ah->hw, &ah->reset_work);
Pavel Roskind2c7f772011-07-07 18:14:07 -04002184 } else
Pavel Roskine0d687b2011-07-14 20:21:55 -04002185 ath5k_schedule_rx(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002186 } else {
Pavel Roskind2c7f772011-07-07 18:14:07 -04002187 if (status & AR5K_INT_SWBA)
Pavel Roskine0d687b2011-07-14 20:21:55 -04002188 tasklet_hi_schedule(&ah->beacontq);
Pavel Roskind2c7f772011-07-07 18:14:07 -04002189
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002190 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 Roskine0d687b2011-07-14 20:21:55 -04002196 ah->stats.rxeol_intr++;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002197 }
2198 if (status & AR5K_INT_TXURN) {
2199 /* bump tx trigger level */
2200 ath5k_hw_update_tx_triglevel(ah, true);
2201 }
Nick Kossifidis4c674c62008-10-26 20:40:25 +02002202 if (status & (AR5K_INT_RXOK | AR5K_INT_RXERR))
Pavel Roskine0d687b2011-07-14 20:21:55 -04002203 ath5k_schedule_rx(ah);
Nick Kossifidis4c674c62008-10-26 20:40:25 +02002204 if (status & (AR5K_INT_TXOK | AR5K_INT_TXDESC
2205 | AR5K_INT_TXERR | AR5K_INT_TXEOL))
Pavel Roskine0d687b2011-07-14 20:21:55 -04002206 ath5k_schedule_tx(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002207 if (status & AR5K_INT_BMISS) {
Nick Kossifidis1e3e6e82009-02-09 06:15:42 +02002208 /* TODO */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002209 }
2210 if (status & AR5K_INT_MIB) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002211 ah->stats.mib_intr++;
Bruno Randolf495391d2010-03-25 14:49:36 +09002212 ath5k_hw_update_mib_counters(ah);
Bruno Randolf2111ac02010-04-02 18:44:08 +09002213 ath5k_ani_mib_intr(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002214 }
Tobias Doerffele6a3b612009-06-09 17:33:27 +02002215 if (status & AR5K_INT_GPIO)
Pavel Roskine0d687b2011-07-14 20:21:55 -04002216 tasklet_schedule(&ah->rf_kill.toggleq);
Bob Copelanda6ae0712009-06-09 23:43:11 -04002217
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002218 }
Felix Fietkau4cebb342010-12-02 10:27:21 +01002219
2220 if (ath5k_get_bus_type(ah) == ATH_AHB)
2221 break;
2222
Bob Copeland2516baa2009-04-27 22:18:10 -04002223 } while (ath5k_hw_is_intr_pending(ah) && --counter > 0);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002224
Pavel Roskine0d687b2011-07-14 20:21:55 -04002225 if (ah->rx_pending || ah->tx_pending)
2226 ath5k_set_current_imask(ah);
Felix Fietkauc266c712011-04-10 18:32:19 +02002227
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002228 if (unlikely(!counter))
Pavel Roskine0d687b2011-07-14 20:21:55 -04002229 ATH5K_WARN(ah, "too many interrupts, giving up for now\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002230
Bruno Randolf6a8a3f62010-03-25 14:49:19 +09002231 ath5k_intr_calibration_poll(ah);
Nick Kossifidis6e2206622009-08-10 03:31:31 +03002232
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002233 return IRQ_HANDLED;
2234}
2235
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002236/*
2237 * Periodically recalibrate the PHY to account
2238 * for temperature/environment changes.
2239 */
2240static void
Nick Kossifidis6e2206622009-08-10 03:31:31 +03002241ath5k_tasklet_calibrate(unsigned long data)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002242{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002243 struct ath5k_hw *ah = (void *)data;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002244
Nick Kossifidis6e2206622009-08-10 03:31:31 +03002245 /* Only full calibration for now */
Bruno Randolfe65e1d72010-03-25 14:49:09 +09002246 ah->ah_cal_mask |= AR5K_CALIBRATION_FULL;
Nick Kossifidis6e2206622009-08-10 03:31:31 +03002247
Pavel Roskine0d687b2011-07-14 20:21:55 -04002248 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 Slabyfa1c1142007-08-12 17:33:16 +02002251
Nick Kossifidis6f3b4142009-02-09 06:03:41 +02002252 if (ath5k_hw_gainf_calibrate(ah) == AR5K_RFGAIN_NEED_CHANGE) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002253 /*
2254 * Rfgain is out of bounds, reset the chip
2255 * to load new gain values.
2256 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002257 ATH5K_DBG(ah, ATH5K_DEBUG_RESET, "calibration, resetting\n");
2258 ieee80211_queue_work(ah->hw, &ah->reset_work);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002259 }
Pavel Roskine0d687b2011-07-14 20:21:55 -04002260 if (ath5k_hw_phy_calibrate(ah, ah->curchan))
2261 ATH5K_ERR(ah, "calibration of channel %u failed\n",
Luis R. Rodriguez400ec452008-02-03 21:51:49 -05002262 ieee80211_frequency_to_channel(
Pavel Roskine0d687b2011-07-14 20:21:55 -04002263 ah->curchan->center_freq));
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002264
Bruno Randolf0e8e02d2010-05-19 10:31:05 +09002265 /* Noise floor calibration interrupts rx/tx path while I/Q calibration
Bruno Randolf651d9372010-09-17 11:36:46 +09002266 * 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 Randolfafe86282010-05-19 10:31:10 +09002269 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 Randolfafe86282010-05-19 10:31:10 +09002272 ath5k_hw_update_noise_floor(ah);
Bruno Randolfafe86282010-05-19 10:31:10 +09002273 }
Nick Kossifidis6e2206622009-08-10 03:31:31 +03002274
Bruno Randolfe65e1d72010-03-25 14:49:09 +09002275 ah->ah_cal_mask &= ~AR5K_CALIBRATION_FULL;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002276}
2277
2278
Bruno Randolf2111ac02010-04-02 18:44:08 +09002279static void
2280ath5k_tasklet_ani(unsigned long data)
2281{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002282 struct ath5k_hw *ah = (void *)data;
Bruno Randolf2111ac02010-04-02 18:44:08 +09002283
2284 ah->ah_cal_mask |= AR5K_CALIBRATION_ANI;
2285 ath5k_ani_calibration(ah);
2286 ah->ah_cal_mask &= ~AR5K_CALIBRATION_ANI;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002287}
2288
2289
Bruno Randolf4edd7612010-09-17 11:36:56 +09002290static void
2291ath5k_tx_complete_poll_work(struct work_struct *work)
2292{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002293 struct ath5k_hw *ah = container_of(work, struct ath5k_hw,
Bruno Randolf4edd7612010-09-17 11:36:56 +09002294 tx_complete_work.work);
2295 struct ath5k_txq *txq;
2296 int i;
2297 bool needreset = false;
2298
Pavel Roskine0d687b2011-07-14 20:21:55 -04002299 mutex_lock(&ah->lock);
Bob Copeland599b13a2011-01-18 08:06:43 -05002300
Pavel Roskine0d687b2011-07-14 20:21:55 -04002301 for (i = 0; i < ARRAY_SIZE(ah->txqs); i++) {
2302 if (ah->txqs[i].setup) {
2303 txq = &ah->txqs[i];
Bruno Randolf4edd7612010-09-17 11:36:56 +09002304 spin_lock_bh(&txq->lock);
Bruno Randolf23413292010-09-17 11:37:07 +09002305 if (txq->txq_len > 1) {
Bruno Randolf4edd7612010-09-17 11:36:56 +09002306 if (txq->txq_poll_mark) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002307 ATH5K_DBG(ah, ATH5K_DEBUG_XMIT,
Bruno Randolf4edd7612010-09-17 11:36:56 +09002308 "TX queue stuck %d\n",
2309 txq->qnum);
2310 needreset = true;
Bruno Randolf923e5b32010-09-17 11:37:02 +09002311 txq->txq_stuck++;
Bruno Randolf4edd7612010-09-17 11:36:56 +09002312 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 Roskine0d687b2011-07-14 20:21:55 -04002323 ATH5K_DBG(ah, ATH5K_DEBUG_RESET,
Bruno Randolf4edd7612010-09-17 11:36:56 +09002324 "TX queues stuck, resetting\n");
Pavel Roskine0d687b2011-07-14 20:21:55 -04002325 ath5k_reset(ah, NULL, true);
Bruno Randolf4edd7612010-09-17 11:36:56 +09002326 }
2327
Pavel Roskine0d687b2011-07-14 20:21:55 -04002328 mutex_unlock(&ah->lock);
Bob Copeland599b13a2011-01-18 08:06:43 -05002329
Pavel Roskine0d687b2011-07-14 20:21:55 -04002330 ieee80211_queue_delayed_work(ah->hw, &ah->tx_complete_work,
Bruno Randolf4edd7612010-09-17 11:36:56 +09002331 msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT));
2332}
2333
2334
Bob Copeland8a63fac2010-09-17 12:45:07 +09002335/*************************\
2336* Initialization routines *
2337\*************************/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002338
Pavel Roskin25380d82011-07-07 18:13:42 -04002339int __devinit
Pavel Roskinbb1f3ad2011-07-26 22:27:05 -04002340ath5k_init_ah(struct ath5k_hw *ah, const struct ath_bus_ops *bus_ops)
Felix Fietkau132b1c32010-12-02 10:26:56 +01002341{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002342 struct ieee80211_hw *hw = ah->hw;
Felix Fietkau132b1c32010-12-02 10:26:56 +01002343 struct ath_common *common;
2344 int ret;
2345 int csz;
2346
2347 /* Initialize driver private data */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002348 SET_IEEE80211_DEV(hw, ah->dev);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002349 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
Nick Kossifidisb9e61f12010-12-03 06:12:39 +02002350 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
2351 IEEE80211_HW_SIGNAL_DBM |
2352 IEEE80211_HW_REPORTS_TX_ACK_STATUS;
Felix Fietkau132b1c32010-12-02 10:26:56 +01002353
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 Randolf3de135d2010-12-16 11:30:33 +09002360 /* 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 Fietkau132b1c32010-12-02 10:26:56 +01002364 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 Roskine0d687b2011-07-14 20:21:55 -04002371 __set_bit(ATH_STAT_INVALID, ah->status);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002372
Pavel Roskine0d687b2011-07-14 20:21:55 -04002373 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 Fietkau132b1c32010-12-02 10:26:56 +01002380
2381 /* Setup interrupt handler */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002382 ret = request_irq(ah->irq, ath5k_intr, IRQF_SHARED, "ath", ah);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002383 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002384 ATH5K_ERR(ah, "request_irq failed\n");
Felix Fietkau132b1c32010-12-02 10:26:56 +01002385 goto err;
2386 }
2387
Pavel Roskine0d687b2011-07-14 20:21:55 -04002388 common = ath5k_hw_common(ah);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002389 common->ops = &ath5k_common_ops;
2390 common->bus_ops = bus_ops;
Pavel Roskine0d687b2011-07-14 20:21:55 -04002391 common->ah = ah;
Felix Fietkau132b1c32010-12-02 10:26:56 +01002392 common->hw = hw;
Pavel Roskine0d687b2011-07-14 20:21:55 -04002393 common->priv = ah;
Felix Fietkau26d16d22011-07-12 09:02:01 +08002394 common->clockrate = 40;
Felix Fietkau132b1c32010-12-02 10:26:56 +01002395
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 Roskine0d687b2011-07-14 20:21:55 -04002406 ret = ath5k_hw_init(ah);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002407 if (ret)
Pavel Roskine0d687b2011-07-14 20:21:55 -04002408 goto err_irq;
Felix Fietkau132b1c32010-12-02 10:26:56 +01002409
2410 /* set up multi-rate retry capabilities */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002411 if (ah->ah_version == AR5K_AR5212) {
Felix Fietkau132b1c32010-12-02 10:26:56 +01002412 hw->max_rates = 4;
Bruno Randolf76a9f6f2011-01-28 16:52:11 +09002413 hw->max_rate_tries = max(AR5K_INIT_RETRY_SHORT,
2414 AR5K_INIT_RETRY_LONG);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002415 }
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 Roskine0d687b2011-07-14 20:21:55 -04002424 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 Fietkau132b1c32010-12-02 10:26:56 +01002428
Pavel Roskine0d687b2011-07-14 20:21:55 -04002429 if (!ah->ah_single_chip) {
Felix Fietkau132b1c32010-12-02 10:26:56 +01002430 /* Single chip radio (!RF5111) */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002431 if (ah->ah_radio_5ghz_revision &&
2432 !ah->ah_radio_2ghz_revision) {
Felix Fietkau132b1c32010-12-02 10:26:56 +01002433 /* No 5GHz support -> report 2GHz radio */
2434 if (!test_bit(AR5K_MODE_11A,
Pavel Roskine0d687b2011-07-14 20:21:55 -04002435 ah->ah_capabilities.cap_mode)) {
2436 ATH5K_INFO(ah, "RF%s 2GHz radio found (0x%x)\n",
Felix Fietkau132b1c32010-12-02 10:26:56 +01002437 ath5k_chip_name(AR5K_VERSION_RAD,
Pavel Roskine0d687b2011-07-14 20:21:55 -04002438 ah->ah_radio_5ghz_revision),
2439 ah->ah_radio_5ghz_revision);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002440 /* No 2GHz support (5110 and some
Pavel Roskin6a2a0e72011-07-09 00:17:51 -04002441 * 5GHz only cards) -> report 5GHz radio */
Felix Fietkau132b1c32010-12-02 10:26:56 +01002442 } else if (!test_bit(AR5K_MODE_11B,
Pavel Roskine0d687b2011-07-14 20:21:55 -04002443 ah->ah_capabilities.cap_mode)) {
2444 ATH5K_INFO(ah, "RF%s 5GHz radio found (0x%x)\n",
Felix Fietkau132b1c32010-12-02 10:26:56 +01002445 ath5k_chip_name(AR5K_VERSION_RAD,
Pavel Roskine0d687b2011-07-14 20:21:55 -04002446 ah->ah_radio_5ghz_revision),
2447 ah->ah_radio_5ghz_revision);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002448 /* Multiband radio */
2449 } else {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002450 ATH5K_INFO(ah, "RF%s multiband radio found"
Felix Fietkau132b1c32010-12-02 10:26:56 +01002451 " (0x%x)\n",
2452 ath5k_chip_name(AR5K_VERSION_RAD,
Pavel Roskine0d687b2011-07-14 20:21:55 -04002453 ah->ah_radio_5ghz_revision),
2454 ah->ah_radio_5ghz_revision);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002455 }
2456 }
2457 /* Multi chip radio (RF5111 - RF2111) ->
2458 * report both 2GHz/5GHz radios */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002459 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 Fietkau132b1c32010-12-02 10:26:56 +01002462 ath5k_chip_name(AR5K_VERSION_RAD,
Pavel Roskine0d687b2011-07-14 20:21:55 -04002463 ah->ah_radio_5ghz_revision),
2464 ah->ah_radio_5ghz_revision);
2465 ATH5K_INFO(ah, "RF%s 2GHz radio found (0x%x)\n",
Felix Fietkau132b1c32010-12-02 10:26:56 +01002466 ath5k_chip_name(AR5K_VERSION_RAD,
Pavel Roskine0d687b2011-07-14 20:21:55 -04002467 ah->ah_radio_2ghz_revision),
2468 ah->ah_radio_2ghz_revision);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002469 }
2470 }
2471
Pavel Roskine0d687b2011-07-14 20:21:55 -04002472 ath5k_debug_init_device(ah);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002473
2474 /* ready to process interrupts */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002475 __clear_bit(ATH_STAT_INVALID, ah->status);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002476
2477 return 0;
2478err_ah:
Pavel Roskine0d687b2011-07-14 20:21:55 -04002479 ath5k_hw_deinit(ah);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002480err_irq:
Pavel Roskine0d687b2011-07-14 20:21:55 -04002481 free_irq(ah->irq, ah);
Felix Fietkau132b1c32010-12-02 10:26:56 +01002482err:
2483 return ret;
2484}
2485
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002486static int
Pavel Roskine0d687b2011-07-14 20:21:55 -04002487ath5k_stop_locked(struct ath5k_hw *ah)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002488{
Bob Copelandcec8db22009-07-04 12:59:51 -04002489
Pavel Roskine0d687b2011-07-14 20:21:55 -04002490 ATH5K_DBG(ah, ATH5K_DEBUG_RESET, "invalid %u\n",
2491 test_bit(ATH_STAT_INVALID, ah->status));
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002492
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002493 /*
Bob Copeland8a63fac2010-09-17 12:45:07 +09002494 * 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 Slabyfa1c1142007-08-12 17:33:16 +02002507 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002508 ieee80211_stop_queues(ah->hw);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002509
Pavel Roskine0d687b2011-07-14 20:21:55 -04002510 if (!test_bit(ATH_STAT_INVALID, ah->status)) {
2511 ath5k_led_off(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002512 ath5k_hw_set_imr(ah, 0);
Pavel Roskine0d687b2011-07-14 20:21:55 -04002513 synchronize_irq(ah->irq);
2514 ath5k_rx_stop(ah);
Nick Kossifidis80dac9e2010-11-23 20:45:38 +02002515 ath5k_hw_dma_stop(ah);
Pavel Roskine0d687b2011-07-14 20:21:55 -04002516 ath5k_drain_tx_buffs(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002517 ath5k_hw_phy_disable(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002518 }
2519
Bob Copeland8a63fac2010-09-17 12:45:07 +09002520 return 0;
2521}
2522
Pavel Roskinfabba042011-07-21 13:36:28 -04002523int ath5k_start(struct ieee80211_hw *hw)
Bob Copeland8a63fac2010-09-17 12:45:07 +09002524{
Pavel Roskinfabba042011-07-21 13:36:28 -04002525 struct ath5k_hw *ah = hw->priv;
Bob Copeland8a63fac2010-09-17 12:45:07 +09002526 struct ath_common *common = ath5k_hw_common(ah);
2527 int ret, i;
2528
Pavel Roskine0d687b2011-07-14 20:21:55 -04002529 mutex_lock(&ah->lock);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002530
Pavel Roskine0d687b2011-07-14 20:21:55 -04002531 ATH5K_DBG(ah, ATH5K_DEBUG_RESET, "mode %d\n", ah->opmode);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002532
2533 /*
2534 * Stop anything previously setup. This is safe
2535 * no matter this is the first time through or not.
2536 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002537 ath5k_stop_locked(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002538
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 Roskine0d687b2011-07-14 20:21:55 -04002546 ah->curchan = ah->hw->conf.channel;
2547 ah->imask = AR5K_INT_RXOK | AR5K_INT_RXERR | AR5K_INT_RXEOL |
Bob Copeland8a63fac2010-09-17 12:45:07 +09002548 AR5K_INT_RXORN | AR5K_INT_TXDESC | AR5K_INT_TXEOL |
2549 AR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB;
2550
Pavel Roskine0d687b2011-07-14 20:21:55 -04002551 ret = ath5k_reset(ah, NULL, false);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002552 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 Kossifidis61cde032010-11-23 21:12:23 +02002564 /* Use higher rates for acks instead of base
2565 * rate */
2566 ah->ah_ack_bitrate_high = true;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002567
Pavel Roskine0d687b2011-07-14 20:21:55 -04002568 for (i = 0; i < ARRAY_SIZE(ah->bslot); i++)
2569 ah->bslot[i] = NULL;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002570
Bob Copeland8a63fac2010-09-17 12:45:07 +09002571 ret = 0;
2572done:
2573 mmiowb();
Pavel Roskine0d687b2011-07-14 20:21:55 -04002574 mutex_unlock(&ah->lock);
Bruno Randolf4edd7612010-09-17 11:36:56 +09002575
Pavel Roskine0d687b2011-07-14 20:21:55 -04002576 ieee80211_queue_delayed_work(ah->hw, &ah->tx_complete_work,
Bruno Randolf4edd7612010-09-17 11:36:56 +09002577 msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT));
2578
Bob Copeland8a63fac2010-09-17 12:45:07 +09002579 return ret;
2580}
2581
Pavel Roskine0d687b2011-07-14 20:21:55 -04002582static void ath5k_stop_tasklets(struct ath5k_hw *ah)
Bob Copeland8a63fac2010-09-17 12:45:07 +09002583{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002584 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 Copeland8a63fac2010-09-17 12:45:07 +09002591}
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 Roskinfabba042011-07-21 13:36:28 -04002599void ath5k_stop(struct ieee80211_hw *hw)
Bob Copeland8a63fac2010-09-17 12:45:07 +09002600{
Pavel Roskinfabba042011-07-21 13:36:28 -04002601 struct ath5k_hw *ah = hw->priv;
Bob Copeland8a63fac2010-09-17 12:45:07 +09002602 int ret;
2603
Pavel Roskine0d687b2011-07-14 20:21:55 -04002604 mutex_lock(&ah->lock);
2605 ret = ath5k_stop_locked(ah);
2606 if (ret == 0 && !test_bit(ATH_STAT_INVALID, ah->status)) {
Bob Copeland8a63fac2010-09-17 12:45:07 +09002607 /*
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 Roskine0d687b2011-07-14 20:21:55 -04002627 ret = ath5k_hw_on_hold(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002628
Pavel Roskine0d687b2011-07-14 20:21:55 -04002629 ATH5K_DBG(ah, ATH5K_DEBUG_RESET,
Bob Copeland8a63fac2010-09-17 12:45:07 +09002630 "putting device to sleep\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002631 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002632
Bob Copeland8a63fac2010-09-17 12:45:07 +09002633 mmiowb();
Pavel Roskine0d687b2011-07-14 20:21:55 -04002634 mutex_unlock(&ah->lock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002635
Pavel Roskine0d687b2011-07-14 20:21:55 -04002636 ath5k_stop_tasklets(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002637
Pavel Roskine0d687b2011-07-14 20:21:55 -04002638 cancel_delayed_work_sync(&ah->tx_complete_work);
Bruno Randolf4edd7612010-09-17 11:36:56 +09002639
Pavel Roskine0d687b2011-07-14 20:21:55 -04002640 ath5k_rfkill_hw_stop(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002641}
2642
Bob Copeland209d8892009-05-07 08:09:08 -04002643/*
2644 * Reset the hardware. If chan is not NULL, then also pause rx/tx
2645 * and change to the given channel.
Bob Copeland5faaff72010-07-13 11:32:40 -04002646 *
Pavel Roskine0d687b2011-07-14 20:21:55 -04002647 * This should be called with ah->lock.
Bob Copeland209d8892009-05-07 08:09:08 -04002648 */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002649static int
Pavel Roskine0d687b2011-07-14 20:21:55 -04002650ath5k_reset(struct ath5k_hw *ah, struct ieee80211_channel *chan,
Nick Kossifidis8aec7af2010-11-23 21:39:28 +02002651 bool skip_pcu)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002652{
Bruno Randolff15a4bb2010-12-16 16:22:20 +09002653 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidis344b54b2010-12-03 06:07:13 +02002654 int ret, ani_mode;
Nick Kossifidisa99168e2011-06-02 03:09:48 +03002655 bool fast;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002656
Pavel Roskine0d687b2011-07-14 20:21:55 -04002657 ATH5K_DBG(ah, ATH5K_DEBUG_RESET, "resetting\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002658
Bob Copeland450464d2010-07-13 11:32:41 -04002659 ath5k_hw_set_imr(ah, 0);
Pavel Roskine0d687b2011-07-14 20:21:55 -04002660 synchronize_irq(ah->irq);
2661 ath5k_stop_tasklets(ah);
Bob Copeland450464d2010-07-13 11:32:41 -04002662
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002663 /* Save ani mode and disable ANI during
Nick Kossifidis344b54b2010-12-03 06:07:13 +02002664 * reset. If we don't we might get false
2665 * PHY error interrupts. */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002666 ani_mode = ah->ani_state.ani_mode;
Nick Kossifidis344b54b2010-12-03 06:07:13 +02002667 ath5k_ani_init(ah, ATH5K_ANI_MODE_OFF);
2668
Nick Kossifidis19252ec2010-12-03 06:05:19 +02002669 /* We are going to empty hw queues
2670 * so we should also free any remaining
2671 * tx buffers */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002672 ath5k_drain_tx_buffs(ah);
Bruno Randolf930a7622011-01-19 18:21:13 +09002673 if (chan)
Pavel Roskine0d687b2011-07-14 20:21:55 -04002674 ah->curchan = chan;
Nick Kossifidisa99168e2011-06-02 03:09:48 +03002675
2676 fast = ((chan != NULL) && modparam_fastchanswitch) ? 1 : 0;
2677
Pavel Roskine0d687b2011-07-14 20:21:55 -04002678 ret = ath5k_hw_reset(ah, ah->opmode, ah->curchan, fast, skip_pcu);
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002679 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002680 ATH5K_ERR(ah, "can't reset hardware (%d)\n", ret);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002681 goto err;
2682 }
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002683
Pavel Roskine0d687b2011-07-14 20:21:55 -04002684 ret = ath5k_rx_start(ah);
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002685 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002686 ATH5K_ERR(ah, "can't start recv logic\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002687 goto err;
2688 }
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002689
Nick Kossifidis344b54b2010-12-03 06:07:13 +02002690 ath5k_ani_init(ah, ani_mode);
Bruno Randolf2111ac02010-04-02 18:44:08 +09002691
Felix Fietkaufe00deb2011-07-12 09:02:02 +08002692 ah->ah_cal_next_full = jiffies + msecs_to_jiffies(100);
Bruno Randolfac559522010-05-19 10:30:55 +09002693 ah->ah_cal_next_ani = jiffies;
Bruno Randolfafe86282010-05-19 10:31:10 +09002694 ah->ah_cal_next_nf = jiffies;
Bruno Randolf5dcc03f2010-12-02 19:12:31 +09002695 ewma_init(&ah->ah_beacon_rssi_avg, 1024, 8);
Bruno Randolfafe86282010-05-19 10:31:10 +09002696
Bruno Randolff15a4bb2010-12-16 16:22:20 +09002697 /* clear survey data and cycle counters */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002698 memset(&ah->survey, 0, sizeof(ah->survey));
Bob Copelandbb007552010-12-26 12:10:05 -05002699 spin_lock_bh(&common->cc_lock);
Bruno Randolff15a4bb2010-12-16 16:22:20 +09002700 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 Copelandbb007552010-12-26 12:10:05 -05002703 spin_unlock_bh(&common->cc_lock);
Bruno Randolff15a4bb2010-12-16 16:22:20 +09002704
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002705 /*
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002706 * 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 Slabyfa1c1142007-08-12 17:33:16 +02002711 *
2712 * XXX needed?
2713 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002714/* ath5k_chan_change(ah, c); */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002715
Pavel Roskine0d687b2011-07-14 20:21:55 -04002716 ath5k_beacon_config(ah);
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002717 /* intrs are enabled by ath5k_beacon_config */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002718
Pavel Roskine0d687b2011-07-14 20:21:55 -04002719 ieee80211_wake_queues(ah->hw);
Bruno Randolf397f3852010-05-19 10:30:49 +09002720
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002721 return 0;
2722err:
2723 return ret;
2724}
2725
Bob Copeland5faaff72010-07-13 11:32:40 -04002726static void ath5k_reset_work(struct work_struct *work)
2727{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002728 struct ath5k_hw *ah = container_of(work, struct ath5k_hw,
Bob Copeland5faaff72010-07-13 11:32:40 -04002729 reset_work);
2730
Pavel Roskine0d687b2011-07-14 20:21:55 -04002731 mutex_lock(&ah->lock);
2732 ath5k_reset(ah, NULL, true);
2733 mutex_unlock(&ah->lock);
Bob Copeland5faaff72010-07-13 11:32:40 -04002734}
2735
Pavel Roskin25380d82011-07-07 18:13:42 -04002736static int __devinit
Felix Fietkau132b1c32010-12-02 10:26:56 +01002737ath5k_init(struct ieee80211_hw *hw)
Bob Copeland8a63fac2010-09-17 12:45:07 +09002738{
Felix Fietkau132b1c32010-12-02 10:26:56 +01002739
Pavel Roskine0d687b2011-07-14 20:21:55 -04002740 struct ath5k_hw *ah = hw->priv;
Bob Copeland8a63fac2010-09-17 12:45:07 +09002741 struct ath_regulatory *regulatory = ath5k_hw_regulatory(ah);
Bruno Randolf925e0b02010-09-17 11:36:35 +09002742 struct ath5k_txq *txq;
Bob Copeland8a63fac2010-09-17 12:45:07 +09002743 u8 mac[ETH_ALEN] = {};
2744 int ret;
2745
Bob Copeland8a63fac2010-09-17 12:45:07 +09002746
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 Roskine0d687b2011-07-14 20:21:55 -04002759 __set_bit(ATH_STAT_MRRETRY, ah->status);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002760
2761 /*
2762 * Collect the channel list. The 802.11 layer
Pavel Roskin6a2a0e72011-07-09 00:17:51 -04002763 * is responsible for filtering this list based
Bob Copeland8a63fac2010-09-17 12:45:07 +09002764 * on settings like the phy mode and regulatory
2765 * domain restrictions.
2766 */
2767 ret = ath5k_setup_bands(hw);
2768 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002769 ATH5K_ERR(ah, "can't get channels\n");
Bob Copeland8a63fac2010-09-17 12:45:07 +09002770 goto err;
2771 }
2772
Bob Copeland8a63fac2010-09-17 12:45:07 +09002773 /*
2774 * Allocate tx+rx descriptors and populate the lists.
2775 */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002776 ret = ath5k_desc_alloc(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002777 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002778 ATH5K_ERR(ah, "can't allocate descriptors\n");
Bob Copeland8a63fac2010-09-17 12:45:07 +09002779 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 Roskine0d687b2011-07-14 20:21:55 -04002790 ATH5K_ERR(ah, "can't setup a beacon xmit queue\n");
Bob Copeland8a63fac2010-09-17 12:45:07 +09002791 goto err_desc;
2792 }
Pavel Roskine0d687b2011-07-14 20:21:55 -04002793 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 Copeland8a63fac2010-09-17 12:45:07 +09002798 goto err_bhal;
2799 }
2800
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002801 /* 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 Roskine0d687b2011-07-14 20:21:55 -04002806 txq = ath5k_txq_setup(ah, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VO);
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002807 if (IS_ERR(txq)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002808 ATH5K_ERR(ah, "can't setup xmit queue\n");
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002809 ret = PTR_ERR(txq);
2810 goto err_queues;
2811 }
Pavel Roskine0d687b2011-07-14 20:21:55 -04002812 txq = ath5k_txq_setup(ah, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VI);
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002813 if (IS_ERR(txq)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002814 ATH5K_ERR(ah, "can't setup xmit queue\n");
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002815 ret = PTR_ERR(txq);
2816 goto err_queues;
2817 }
Pavel Roskine0d687b2011-07-14 20:21:55 -04002818 txq = ath5k_txq_setup(ah, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BE);
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002819 if (IS_ERR(txq)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002820 ATH5K_ERR(ah, "can't setup xmit queue\n");
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002821 ret = PTR_ERR(txq);
2822 goto err_queues;
2823 }
Pavel Roskine0d687b2011-07-14 20:21:55 -04002824 txq = ath5k_txq_setup(ah, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BK);
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002825 if (IS_ERR(txq)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002826 ATH5K_ERR(ah, "can't setup xmit queue\n");
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002827 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 Roskine0d687b2011-07-14 20:21:55 -04002833 txq = ath5k_txq_setup(ah, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BE);
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002834 if (IS_ERR(txq)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002835 ATH5K_ERR(ah, "can't setup xmit queue\n");
Bruno Randolf22d8d9f2010-12-07 11:08:12 +09002836 ret = PTR_ERR(txq);
2837 goto err_queues;
2838 }
2839 hw->queues = 1;
Bob Copeland8a63fac2010-09-17 12:45:07 +09002840 }
2841
Pavel Roskine0d687b2011-07-14 20:21:55 -04002842 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 Copeland8a63fac2010-09-17 12:45:07 +09002847
Pavel Roskine0d687b2011-07-14 20:21:55 -04002848 INIT_WORK(&ah->reset_work, ath5k_reset_work);
2849 INIT_DELAYED_WORK(&ah->tx_complete_work, ath5k_tx_complete_poll_work);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002850
Felix Fietkaufa9bfd62011-04-13 21:56:44 +02002851 ret = ath5k_hw_common(ah)->bus_ops->eeprom_read_mac(ah, mac);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002852 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002853 ATH5K_ERR(ah, "unable to read address from EEPROM\n");
Bob Copeland8a63fac2010-09-17 12:45:07 +09002854 goto err_queues;
2855 }
2856
2857 SET_IEEE80211_PERM_ADDR(hw, mac);
2858 /* All MAC address bits matter for ACKs */
Pavel Roskine0d687b2011-07-14 20:21:55 -04002859 ath5k_update_bssid_mask_and_opmode(ah, NULL);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002860
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 Roskine0d687b2011-07-14 20:21:55 -04002864 ATH5K_ERR(ah, "can't initialize regulatory system\n");
Bob Copeland8a63fac2010-09-17 12:45:07 +09002865 goto err_queues;
2866 }
2867
2868 ret = ieee80211_register_hw(hw);
2869 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -04002870 ATH5K_ERR(ah, "can't register ieee80211 hw\n");
Bob Copeland8a63fac2010-09-17 12:45:07 +09002871 goto err_queues;
2872 }
2873
2874 if (!ath_is_world_regd(regulatory))
2875 regulatory_hint(hw->wiphy, regulatory->alpha2);
2876
Pavel Roskine0d687b2011-07-14 20:21:55 -04002877 ath5k_init_leds(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002878
Pavel Roskine0d687b2011-07-14 20:21:55 -04002879 ath5k_sysfs_register(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002880
2881 return 0;
2882err_queues:
Pavel Roskine0d687b2011-07-14 20:21:55 -04002883 ath5k_txq_release(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002884err_bhal:
Pavel Roskine0d687b2011-07-14 20:21:55 -04002885 ath5k_hw_release_tx_queue(ah, ah->bhalq);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002886err_desc:
Pavel Roskine0d687b2011-07-14 20:21:55 -04002887 ath5k_desc_free(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002888err:
2889 return ret;
2890}
2891
Felix Fietkau132b1c32010-12-02 10:26:56 +01002892void
Pavel Roskinbb1f3ad2011-07-26 22:27:05 -04002893ath5k_deinit_ah(struct ath5k_hw *ah)
Bob Copeland8a63fac2010-09-17 12:45:07 +09002894{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002895 struct ieee80211_hw *hw = ah->hw;
Bob Copeland8a63fac2010-09-17 12:45:07 +09002896
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 Roskine0d687b2011-07-14 20:21:55 -04002911 ath5k_desc_free(ah);
2912 ath5k_txq_release(ah);
2913 ath5k_hw_release_tx_queue(ah, ah->bhalq);
2914 ath5k_unregister_leds(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002915
Pavel Roskine0d687b2011-07-14 20:21:55 -04002916 ath5k_sysfs_unregister(ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002917 /*
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 Roskine0d687b2011-07-14 20:21:55 -04002922 ath5k_hw_deinit(ah);
2923 free_irq(ah->irq, ah);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002924}
2925
Bruno Randolfcd2c5482010-12-22 19:20:32 +09002926bool
Pavel Roskine0d687b2011-07-14 20:21:55 -04002927ath5k_any_vif_assoc(struct ath5k_hw *ah)
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002928{
Ben Greeare4b0b322011-03-03 14:39:05 -08002929 struct ath5k_vif_iter_data iter_data;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002930 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 Roskine0d687b2011-07-14 20:21:55 -04002935 ieee80211_iterate_active_interfaces_atomic(ah->hw, ath5k_vif_iter,
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002936 &iter_data);
2937 return iter_data.any_assoc;
2938}
2939
Bruno Randolfcd2c5482010-12-22 19:20:32 +09002940void
Pavel Roskinf5cbc8b2011-06-15 18:03:22 -04002941ath5k_set_beacon_filter(struct ieee80211_hw *hw, bool enable)
Martin Xu02969b32008-11-24 10:49:27 +08002942{
Pavel Roskine0d687b2011-07-14 20:21:55 -04002943 struct ath5k_hw *ah = hw->priv;
Martin Xu02969b32008-11-24 10:49:27 +08002944 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 Roskine0d687b2011-07-14 20:21:55 -04002951 ah->filter_flags = rfilt;
Martin Xu02969b32008-11-24 10:49:27 +08002952}