blob: 685de2d75725be33ffdea948728d86006bc6e019 [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>
Jiri Slaby274c7c32008-07-15 17:44:20 +020045#include <linux/hardirq.h>
Jiri Slabyfa1c1142007-08-12 17:33:16 +020046#include <linux/if.h>
Jiri Slaby274c7c32008-07-15 17:44:20 +020047#include <linux/io.h>
Jiri Slabyfa1c1142007-08-12 17:33:16 +020048#include <linux/netdevice.h>
49#include <linux/cache.h>
Jiri Slabyfa1c1142007-08-12 17:33:16 +020050#include <linux/ethtool.h>
51#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Ben Greearb1ae1ed2010-09-30 12:22:58 -070053#include <linux/etherdevice.h>
Jiri Slabyfa1c1142007-08-12 17:33:16 +020054
55#include <net/ieee80211_radiotap.h>
56
57#include <asm/unaligned.h>
58
59#include "base.h"
60#include "reg.h"
61#include "debug.h"
Bruno Randolf2111ac02010-04-02 18:44:08 +090062#include "ani.h"
Ben Greear62c58fb2010-10-08 12:01:15 -070063#include "../debug.h"
Jiri Slabyfa1c1142007-08-12 17:33:16 +020064
Bob Copeland9ad9a262008-10-29 08:30:54 -040065static int modparam_nohwcrypt;
Bob Copeland46802a42009-04-15 07:57:34 -040066module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
Bob Copeland9ad9a262008-10-29 08:30:54 -040067MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
Jiri Slabyfa1c1142007-08-12 17:33:16 +020068
Bob Copeland42639fc2009-03-30 08:05:29 -040069static int modparam_all_channels;
Bob Copeland46802a42009-04-15 07:57:34 -040070module_param_named(all_channels, modparam_all_channels, bool, S_IRUGO);
Bob Copeland42639fc2009-03-30 08:05:29 -040071MODULE_PARM_DESC(all_channels, "Expose all channels the device can use.");
72
Jiri Slabyfa1c1142007-08-12 17:33:16 +020073/* Module info */
74MODULE_AUTHOR("Jiri Slaby");
75MODULE_AUTHOR("Nick Kossifidis");
76MODULE_DESCRIPTION("Support for 5xxx series of Atheros 802.11 wireless LAN cards.");
77MODULE_SUPPORTED_DEVICE("Atheros 5xxx WLAN cards");
78MODULE_LICENSE("Dual BSD/GPL");
Nick Kossifidis0d5f0312008-09-29 01:27:27 +030079MODULE_VERSION("0.6.0 (EXPERIMENTAL)");
Jiri Slabyfa1c1142007-08-12 17:33:16 +020080
Felix Fietkau132b1c32010-12-02 10:26:56 +010081static int ath5k_init(struct ieee80211_hw *hw);
Nick Kossifidis8aec7af2010-11-23 21:39:28 +020082static int ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan,
83 bool skip_pcu);
Bob Copeland8a63fac2010-09-17 12:45:07 +090084static int ath5k_beacon_update(struct ieee80211_hw *hw,
85 struct ieee80211_vif *vif);
86static void ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf);
Jiri Slabyfa1c1142007-08-12 17:33:16 +020087
Jiri Slabyfa1c1142007-08-12 17:33:16 +020088/* Known SREVs */
Jiri Slaby2c91108c2009-03-07 10:26:41 +010089static const struct ath5k_srev_name srev_names[] = {
Felix Fietkaua0b907e2010-12-02 10:27:16 +010090#ifdef CONFIG_ATHEROS_AR231X
91 { "5312", AR5K_VERSION_MAC, AR5K_SREV_AR5312_R2 },
92 { "5312", AR5K_VERSION_MAC, AR5K_SREV_AR5312_R7 },
93 { "2313", AR5K_VERSION_MAC, AR5K_SREV_AR2313_R8 },
94 { "2315", AR5K_VERSION_MAC, AR5K_SREV_AR2315_R6 },
95 { "2315", AR5K_VERSION_MAC, AR5K_SREV_AR2315_R7 },
96 { "2317", AR5K_VERSION_MAC, AR5K_SREV_AR2317_R1 },
97 { "2317", AR5K_VERSION_MAC, AR5K_SREV_AR2317_R2 },
98#else
Nick Kossifidis1bef0162008-09-29 02:09:09 +030099 { "5210", AR5K_VERSION_MAC, AR5K_SREV_AR5210 },
100 { "5311", AR5K_VERSION_MAC, AR5K_SREV_AR5311 },
101 { "5311A", AR5K_VERSION_MAC, AR5K_SREV_AR5311A },
102 { "5311B", AR5K_VERSION_MAC, AR5K_SREV_AR5311B },
103 { "5211", AR5K_VERSION_MAC, AR5K_SREV_AR5211 },
104 { "5212", AR5K_VERSION_MAC, AR5K_SREV_AR5212 },
105 { "5213", AR5K_VERSION_MAC, AR5K_SREV_AR5213 },
106 { "5213A", AR5K_VERSION_MAC, AR5K_SREV_AR5213A },
107 { "2413", AR5K_VERSION_MAC, AR5K_SREV_AR2413 },
108 { "2414", AR5K_VERSION_MAC, AR5K_SREV_AR2414 },
109 { "5424", AR5K_VERSION_MAC, AR5K_SREV_AR5424 },
110 { "5413", AR5K_VERSION_MAC, AR5K_SREV_AR5413 },
111 { "5414", AR5K_VERSION_MAC, AR5K_SREV_AR5414 },
112 { "2415", AR5K_VERSION_MAC, AR5K_SREV_AR2415 },
113 { "5416", AR5K_VERSION_MAC, AR5K_SREV_AR5416 },
114 { "5418", AR5K_VERSION_MAC, AR5K_SREV_AR5418 },
115 { "2425", AR5K_VERSION_MAC, AR5K_SREV_AR2425 },
116 { "2417", AR5K_VERSION_MAC, AR5K_SREV_AR2417 },
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100117#endif
Nick Kossifidis1bef0162008-09-29 02:09:09 +0300118 { "xxxxx", AR5K_VERSION_MAC, AR5K_SREV_UNKNOWN },
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200119 { "5110", AR5K_VERSION_RAD, AR5K_SREV_RAD_5110 },
120 { "5111", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111 },
Nick Kossifidis1bef0162008-09-29 02:09:09 +0300121 { "5111A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111A },
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200122 { "2111", AR5K_VERSION_RAD, AR5K_SREV_RAD_2111 },
123 { "5112", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112 },
124 { "5112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112A },
Nick Kossifidis1bef0162008-09-29 02:09:09 +0300125 { "5112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112B },
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200126 { "2112", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112 },
127 { "2112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112A },
Nick Kossifidis1bef0162008-09-29 02:09:09 +0300128 { "2112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112B },
129 { "2413", AR5K_VERSION_RAD, AR5K_SREV_RAD_2413 },
130 { "5413", AR5K_VERSION_RAD, AR5K_SREV_RAD_5413 },
Nick Kossifidis1bef0162008-09-29 02:09:09 +0300131 { "5424", AR5K_VERSION_RAD, AR5K_SREV_RAD_5424 },
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200132 { "5133", AR5K_VERSION_RAD, AR5K_SREV_RAD_5133 },
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100133#ifdef CONFIG_ATHEROS_AR231X
134 { "2316", AR5K_VERSION_RAD, AR5K_SREV_RAD_2316 },
135 { "2317", AR5K_VERSION_RAD, AR5K_SREV_RAD_2317 },
136#endif
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200137 { "xxxxx", AR5K_VERSION_RAD, AR5K_SREV_UNKNOWN },
138};
139
Jiri Slaby2c91108c2009-03-07 10:26:41 +0100140static const struct ieee80211_rate ath5k_rates[] = {
Bruno Randolf63266a62008-07-30 17:12:58 +0200141 { .bitrate = 10,
142 .hw_value = ATH5K_RATE_CODE_1M, },
143 { .bitrate = 20,
144 .hw_value = ATH5K_RATE_CODE_2M,
145 .hw_value_short = ATH5K_RATE_CODE_2M | AR5K_SET_SHORT_PREAMBLE,
146 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
147 { .bitrate = 55,
148 .hw_value = ATH5K_RATE_CODE_5_5M,
149 .hw_value_short = ATH5K_RATE_CODE_5_5M | AR5K_SET_SHORT_PREAMBLE,
150 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
151 { .bitrate = 110,
152 .hw_value = ATH5K_RATE_CODE_11M,
153 .hw_value_short = ATH5K_RATE_CODE_11M | AR5K_SET_SHORT_PREAMBLE,
154 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
155 { .bitrate = 60,
156 .hw_value = ATH5K_RATE_CODE_6M,
157 .flags = 0 },
158 { .bitrate = 90,
159 .hw_value = ATH5K_RATE_CODE_9M,
160 .flags = 0 },
161 { .bitrate = 120,
162 .hw_value = ATH5K_RATE_CODE_12M,
163 .flags = 0 },
164 { .bitrate = 180,
165 .hw_value = ATH5K_RATE_CODE_18M,
166 .flags = 0 },
167 { .bitrate = 240,
168 .hw_value = ATH5K_RATE_CODE_24M,
169 .flags = 0 },
170 { .bitrate = 360,
171 .hw_value = ATH5K_RATE_CODE_36M,
172 .flags = 0 },
173 { .bitrate = 480,
174 .hw_value = ATH5K_RATE_CODE_48M,
175 .flags = 0 },
176 { .bitrate = 540,
177 .hw_value = ATH5K_RATE_CODE_54M,
178 .flags = 0 },
179 /* XR missing */
180};
181
Bruno Randolf9e4e43f2010-06-16 19:11:17 +0900182static inline void ath5k_txbuf_free_skb(struct ath5k_softc *sc,
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200183 struct ath5k_buf *bf)
184{
185 BUG_ON(!bf);
186 if (!bf->skb)
187 return;
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100188 dma_unmap_single(sc->dev, bf->skbaddr, bf->skb->len,
189 DMA_TO_DEVICE);
Jiri Slaby00482972008-08-18 21:45:27 +0200190 dev_kfree_skb_any(bf->skb);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200191 bf->skb = NULL;
Bruno Randolf39d63f22010-06-16 19:11:41 +0900192 bf->skbaddr = 0;
193 bf->desc->ds_data = 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200194}
195
Bruno Randolf9e4e43f2010-06-16 19:11:17 +0900196static inline void ath5k_rxbuf_free_skb(struct ath5k_softc *sc,
Felix Fietkaua6c8d372009-01-30 01:36:48 +0100197 struct ath5k_buf *bf)
198{
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -0800199 struct ath5k_hw *ah = sc->ah;
200 struct ath_common *common = ath5k_hw_common(ah);
201
Felix Fietkaua6c8d372009-01-30 01:36:48 +0100202 BUG_ON(!bf);
203 if (!bf->skb)
204 return;
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100205 dma_unmap_single(sc->dev, bf->skbaddr, common->rx_bufsize,
206 DMA_FROM_DEVICE);
Felix Fietkaua6c8d372009-01-30 01:36:48 +0100207 dev_kfree_skb_any(bf->skb);
208 bf->skb = NULL;
Bruno Randolf39d63f22010-06-16 19:11:41 +0900209 bf->skbaddr = 0;
210 bf->desc->ds_data = 0;
Felix Fietkaua6c8d372009-01-30 01:36:48 +0100211}
212
213
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200214static inline u64 ath5k_extend_tsf(struct ath5k_hw *ah, u32 rstamp)
215{
216 u64 tsf = ath5k_hw_get_tsf64(ah);
217
218 if ((tsf & 0x7fff) < rstamp)
219 tsf -= 0x8000;
220
221 return (tsf & ~0x7fff) | rstamp;
222}
223
Felix Fietkaue5b046d2010-12-02 10:27:01 +0100224const char *
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200225ath5k_chip_name(enum ath5k_srev_type type, u_int16_t val)
226{
227 const char *name = "xxxxx";
228 unsigned int i;
229
230 for (i = 0; i < ARRAY_SIZE(srev_names); i++) {
231 if (srev_names[i].sr_type != type)
232 continue;
Nick Kossifidis75d0edb2008-09-29 01:24:44 +0300233
234 if ((val & 0xf0) == srev_names[i].sr_val)
235 name = srev_names[i].sr_name;
236
237 if ((val & 0xff) == srev_names[i].sr_val) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200238 name = srev_names[i].sr_name;
239 break;
240 }
241 }
242
243 return name;
244}
Luis R. Rodrigueze5aa8472009-09-10 16:55:11 -0700245static unsigned int ath5k_ioread32(void *hw_priv, u32 reg_offset)
246{
247 struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv;
248 return ath5k_hw_reg_read(ah, reg_offset);
249}
250
251static void ath5k_iowrite32(void *hw_priv, u32 val, u32 reg_offset)
252{
253 struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv;
254 ath5k_hw_reg_write(ah, val, reg_offset);
255}
256
257static const struct ath_ops ath5k_common_ops = {
258 .read = ath5k_ioread32,
259 .write = ath5k_iowrite32,
260};
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200261
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200262/***********************\
263* Driver Initialization *
264\***********************/
265
Bob Copelandf769c362009-03-30 22:30:31 -0400266static int ath5k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request)
267{
268 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
269 struct ath5k_softc *sc = hw->priv;
Luis R. Rodriguezdb719712009-09-10 11:20:57 -0700270 struct ath_regulatory *regulatory = ath5k_hw_regulatory(sc->ah);
Bob Copelandf769c362009-03-30 22:30:31 -0400271
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700272 return ath_reg_notifier_apply(wiphy, request, regulatory);
Bob Copelandf769c362009-03-30 22:30:31 -0400273}
274
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200275/********************\
276* Channel/mode setup *
277\********************/
278
279/*
280 * Convert IEEE channel number to MHz frequency.
281 */
282static inline short
283ath5k_ieee2mhz(short chan)
284{
285 if (chan <= 14 || chan >= 27)
286 return ieee80211chan2mhz(chan);
287 else
288 return 2212 + chan * 20;
289}
290
Bob Copeland42639fc2009-03-30 08:05:29 -0400291/*
292 * Returns true for the channel numbers used without all_channels modparam.
293 */
294static bool ath5k_is_standard_channel(short chan)
295{
296 return ((chan <= 14) ||
297 /* UNII 1,2 */
298 ((chan & 3) == 0 && chan >= 36 && chan <= 64) ||
299 /* midband */
300 ((chan & 3) == 0 && chan >= 100 && chan <= 140) ||
301 /* UNII-3 */
302 ((chan & 3) == 1 && chan >= 149 && chan <= 165));
303}
304
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200305static unsigned int
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200306ath5k_copy_channels(struct ath5k_hw *ah,
307 struct ieee80211_channel *channels,
308 unsigned int mode,
309 unsigned int max)
310{
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500311 unsigned int i, count, size, chfreq, freq, ch;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200312
313 if (!test_bit(mode, ah->ah_modes))
314 return 0;
315
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200316 switch (mode) {
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500317 case AR5K_MODE_11A:
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200318 /* 1..220, but 2GHz frequencies are filtered by check_channel */
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500319 size = 220 ;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200320 chfreq = CHANNEL_5GHZ;
321 break;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500322 case AR5K_MODE_11B:
323 case AR5K_MODE_11G:
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500324 size = 26;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200325 chfreq = CHANNEL_2GHZ;
326 break;
327 default:
328 ATH5K_WARN(ah->ah_sc, "bad mode, not copying channels\n");
329 return 0;
330 }
331
332 for (i = 0, count = 0; i < size && max > 0; i++) {
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500333 ch = i + 1 ;
334 freq = ath5k_ieee2mhz(ch);
335
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200336 /* Check if channel is supported by the chipset */
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500337 if (!ath5k_channel_ok(ah, freq, chfreq))
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200338 continue;
339
Bob Copeland42639fc2009-03-30 08:05:29 -0400340 if (!modparam_all_channels && !ath5k_is_standard_channel(ch))
341 continue;
342
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500343 /* Write channel info and increment counter */
344 channels[count].center_freq = freq;
Luis R. Rodrigueza3f4b912008-02-03 21:52:10 -0500345 channels[count].band = (chfreq == CHANNEL_2GHZ) ?
346 IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
Luis R. Rodriguez400ec452008-02-03 21:51:49 -0500347 switch (mode) {
348 case AR5K_MODE_11A:
349 case AR5K_MODE_11G:
350 channels[count].hw_value = chfreq | CHANNEL_OFDM;
351 break;
Luis R. Rodriguez400ec452008-02-03 21:51:49 -0500352 case AR5K_MODE_11B:
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500353 channels[count].hw_value = CHANNEL_B;
354 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200355
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200356 count++;
357 max--;
358 }
359
360 return count;
361}
362
Bruno Randolf63266a62008-07-30 17:12:58 +0200363static void
364ath5k_setup_rate_idx(struct ath5k_softc *sc, struct ieee80211_supported_band *b)
365{
366 u8 i;
367
368 for (i = 0; i < AR5K_MAX_RATES; i++)
369 sc->rate_idx[b->band][i] = -1;
370
371 for (i = 0; i < b->n_bitrates; i++) {
372 sc->rate_idx[b->band][b->bitrates[i].hw_value] = i;
373 if (b->bitrates[i].hw_value_short)
374 sc->rate_idx[b->band][b->bitrates[i].hw_value_short] = i;
375 }
376}
377
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200378static int
Bruno Randolf63266a62008-07-30 17:12:58 +0200379ath5k_setup_bands(struct ieee80211_hw *hw)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200380{
381 struct ath5k_softc *sc = hw->priv;
382 struct ath5k_hw *ah = sc->ah;
Bruno Randolf63266a62008-07-30 17:12:58 +0200383 struct ieee80211_supported_band *sband;
384 int max_c, count_c = 0;
385 int i;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200386
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500387 BUILD_BUG_ON(ARRAY_SIZE(sc->sbands) < IEEE80211_NUM_BANDS);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200388 max_c = ARRAY_SIZE(sc->channels);
389
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500390 /* 2GHz band */
Bruno Randolf63266a62008-07-30 17:12:58 +0200391 sband = &sc->sbands[IEEE80211_BAND_2GHZ];
392 sband->band = IEEE80211_BAND_2GHZ;
393 sband->bitrates = &sc->rates[IEEE80211_BAND_2GHZ][0];
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200394
Bruno Randolf63266a62008-07-30 17:12:58 +0200395 if (test_bit(AR5K_MODE_11G, sc->ah->ah_capabilities.cap_mode)) {
396 /* G mode */
397 memcpy(sband->bitrates, &ath5k_rates[0],
398 sizeof(struct ieee80211_rate) * 12);
399 sband->n_bitrates = 12;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200400
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500401 sband->channels = sc->channels;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500402 sband->n_channels = ath5k_copy_channels(ah, sband->channels,
Bruno Randolf63266a62008-07-30 17:12:58 +0200403 AR5K_MODE_11G, max_c);
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500404
405 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband;
Bruno Randolf63266a62008-07-30 17:12:58 +0200406 count_c = sband->n_channels;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500407 max_c -= count_c;
Bruno Randolf63266a62008-07-30 17:12:58 +0200408 } else if (test_bit(AR5K_MODE_11B, sc->ah->ah_capabilities.cap_mode)) {
409 /* B mode */
410 memcpy(sband->bitrates, &ath5k_rates[0],
411 sizeof(struct ieee80211_rate) * 4);
412 sband->n_bitrates = 4;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500413
Bruno Randolf63266a62008-07-30 17:12:58 +0200414 /* 5211 only supports B rates and uses 4bit rate codes
415 * (e.g normally we have 0x1B for 1M, but on 5211 we have 0x0B)
416 * fix them up here:
417 */
418 if (ah->ah_version == AR5K_AR5211) {
419 for (i = 0; i < 4; i++) {
420 sband->bitrates[i].hw_value =
421 sband->bitrates[i].hw_value & 0xF;
422 sband->bitrates[i].hw_value_short =
423 sband->bitrates[i].hw_value_short & 0xF;
424 }
425 }
426
427 sband->channels = sc->channels;
428 sband->n_channels = ath5k_copy_channels(ah, sband->channels,
429 AR5K_MODE_11B, max_c);
430
431 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband;
432 count_c = sband->n_channels;
433 max_c -= count_c;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500434 }
Bruno Randolf63266a62008-07-30 17:12:58 +0200435 ath5k_setup_rate_idx(sc, sband);
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500436
Bruno Randolf63266a62008-07-30 17:12:58 +0200437 /* 5GHz band, A mode */
Luis R. Rodriguez400ec452008-02-03 21:51:49 -0500438 if (test_bit(AR5K_MODE_11A, sc->ah->ah_capabilities.cap_mode)) {
Bruno Randolf63266a62008-07-30 17:12:58 +0200439 sband = &sc->sbands[IEEE80211_BAND_5GHZ];
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500440 sband->band = IEEE80211_BAND_5GHZ;
Bruno Randolf63266a62008-07-30 17:12:58 +0200441 sband->bitrates = &sc->rates[IEEE80211_BAND_5GHZ][0];
442
443 memcpy(sband->bitrates, &ath5k_rates[4],
444 sizeof(struct ieee80211_rate) * 8);
445 sband->n_bitrates = 8;
446
447 sband->channels = &sc->channels[count_c];
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500448 sband->n_channels = ath5k_copy_channels(ah, sband->channels,
449 AR5K_MODE_11A, max_c);
450
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500451 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = sband;
452 }
Bruno Randolf63266a62008-07-30 17:12:58 +0200453 ath5k_setup_rate_idx(sc, sband);
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500454
Luis R. Rodriguezb4461972008-02-04 10:03:54 -0500455 ath5k_debug_dump_bands(sc);
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500456
457 return 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200458}
459
460/*
Joerg Alberte30eb4a2009-08-05 01:52:07 +0200461 * Set/change channels. We always reset the chip.
462 * To accomplish this we must first cleanup any pending DMA,
463 * then restart stuff after a la ath5k_init.
Bob Copelandbe009372009-01-22 08:44:16 -0500464 *
465 * Called with sc->lock.
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200466 */
467static int
468ath5k_chan_set(struct ath5k_softc *sc, struct ieee80211_channel *chan)
469{
Bruno Randolf8d67a032010-06-16 19:11:12 +0900470 ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
471 "channel set, resetting (%u -> %u MHz)\n",
472 sc->curchan->center_freq, chan->center_freq);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200473
Joerg Alberte30eb4a2009-08-05 01:52:07 +0200474 /*
475 * To switch channels clear any pending DMA operations;
476 * wait long enough for the RX fifo to drain, reset the
477 * hardware at the new frequency, and then re-enable
478 * the relevant bits of the h/w.
479 */
Nick Kossifidis8aec7af2010-11-23 21:39:28 +0200480 return ath5k_reset(sc, chan, true);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200481}
482
483static void
484ath5k_setcurmode(struct ath5k_softc *sc, unsigned int mode)
485{
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200486 sc->curmode = mode;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500487
Luis R. Rodriguez400ec452008-02-03 21:51:49 -0500488 if (mode == AR5K_MODE_11A) {
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500489 sc->curband = &sc->sbands[IEEE80211_BAND_5GHZ];
490 } else {
491 sc->curband = &sc->sbands[IEEE80211_BAND_2GHZ];
492 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200493}
494
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700495struct ath_vif_iter_data {
496 const u8 *hw_macaddr;
497 u8 mask[ETH_ALEN];
498 u8 active_mac[ETH_ALEN]; /* first active MAC */
499 bool need_set_hw_addr;
500 bool found_active;
501 bool any_assoc;
Ben Greear62c58fb2010-10-08 12:01:15 -0700502 enum nl80211_iftype opmode;
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700503};
504
505static void ath_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
506{
507 struct ath_vif_iter_data *iter_data = data;
508 int i;
Ben Greear62c58fb2010-10-08 12:01:15 -0700509 struct ath5k_vif *avf = (void *)vif->drv_priv;
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700510
511 if (iter_data->hw_macaddr)
512 for (i = 0; i < ETH_ALEN; i++)
513 iter_data->mask[i] &=
514 ~(iter_data->hw_macaddr[i] ^ mac[i]);
515
516 if (!iter_data->found_active) {
517 iter_data->found_active = true;
518 memcpy(iter_data->active_mac, mac, ETH_ALEN);
519 }
520
521 if (iter_data->need_set_hw_addr && iter_data->hw_macaddr)
522 if (compare_ether_addr(iter_data->hw_macaddr, mac) == 0)
523 iter_data->need_set_hw_addr = false;
524
525 if (!iter_data->any_assoc) {
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700526 if (avf->assoc)
527 iter_data->any_assoc = true;
528 }
Ben Greear62c58fb2010-10-08 12:01:15 -0700529
530 /* Calculate combined mode - when APs are active, operate in AP mode.
531 * Otherwise use the mode of the new interface. This can currently
532 * only deal with combinations of APs and STAs. Only one ad-hoc
Ben Greear7afbb2f2010-11-10 11:43:51 -0800533 * interfaces is allowed.
Ben Greear62c58fb2010-10-08 12:01:15 -0700534 */
535 if (avf->opmode == NL80211_IFTYPE_AP)
536 iter_data->opmode = NL80211_IFTYPE_AP;
537 else
538 if (iter_data->opmode == NL80211_IFTYPE_UNSPECIFIED)
539 iter_data->opmode = avf->opmode;
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700540}
541
Luis R. Rodriguez14fb7c12010-10-20 06:59:38 -0700542static void ath5k_update_bssid_mask_and_opmode(struct ath5k_softc *sc,
543 struct ieee80211_vif *vif)
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700544{
545 struct ath_common *common = ath5k_hw_common(sc->ah);
546 struct ath_vif_iter_data iter_data;
547
548 /*
549 * Use the hardware MAC address as reference, the hardware uses it
550 * together with the BSSID mask when matching addresses.
551 */
552 iter_data.hw_macaddr = common->macaddr;
553 memset(&iter_data.mask, 0xff, ETH_ALEN);
554 iter_data.found_active = false;
555 iter_data.need_set_hw_addr = true;
Ben Greear62c58fb2010-10-08 12:01:15 -0700556 iter_data.opmode = NL80211_IFTYPE_UNSPECIFIED;
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700557
558 if (vif)
559 ath_vif_iter(&iter_data, vif->addr, vif);
560
561 /* Get list of all active MAC addresses */
562 ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter,
563 &iter_data);
564 memcpy(sc->bssidmask, iter_data.mask, ETH_ALEN);
565
Ben Greear62c58fb2010-10-08 12:01:15 -0700566 sc->opmode = iter_data.opmode;
567 if (sc->opmode == NL80211_IFTYPE_UNSPECIFIED)
568 /* Nothing active, default to station mode */
569 sc->opmode = NL80211_IFTYPE_STATION;
570
Ben Greear7afbb2f2010-11-10 11:43:51 -0800571 ath5k_hw_set_opmode(sc->ah, sc->opmode);
572 ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "mode setup opmode %d (%s)\n",
573 sc->opmode, ath_opmode_to_string(sc->opmode));
Ben Greear62c58fb2010-10-08 12:01:15 -0700574
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700575 if (iter_data.need_set_hw_addr && iter_data.found_active)
576 ath5k_hw_set_lladdr(sc->ah, iter_data.active_mac);
577
Ben Greear62c58fb2010-10-08 12:01:15 -0700578 if (ath5k_hw_hasbssidmask(sc->ah))
579 ath5k_hw_set_bssid_mask(sc->ah, sc->bssidmask);
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700580}
581
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200582static void
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700583ath5k_mode_setup(struct ath5k_softc *sc, struct ieee80211_vif *vif)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200584{
585 struct ath5k_hw *ah = sc->ah;
586 u32 rfilt;
587
588 /* configure rx filter */
589 rfilt = sc->filter_flags;
590 ath5k_hw_set_rx_filter(ah, rfilt);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200591 ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "RX filter 0x%x\n", rfilt);
Ben Greear62c58fb2010-10-08 12:01:15 -0700592
593 ath5k_update_bssid_mask_and_opmode(sc, vif);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200594}
595
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500596static inline int
Bruno Randolf63266a62008-07-30 17:12:58 +0200597ath5k_hw_to_driver_rix(struct ath5k_softc *sc, int hw_rix)
598{
Bob Copelandb7266042009-03-02 21:55:18 -0500599 int rix;
600
601 /* return base rate on errors */
602 if (WARN(hw_rix < 0 || hw_rix >= AR5K_MAX_RATES,
603 "hw_rix out of bounds: %x\n", hw_rix))
604 return 0;
605
606 rix = sc->rate_idx[sc->curband->band][hw_rix];
607 if (WARN(rix < 0, "invalid hw_rix: %x\n", hw_rix))
608 rix = 0;
609
610 return rix;
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -0500611}
612
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200613/***************\
614* Buffers setup *
615\***************/
616
Bob Copelandb6ea0352009-01-10 14:42:54 -0500617static
618struct sk_buff *ath5k_rx_skb_alloc(struct ath5k_softc *sc, dma_addr_t *skb_addr)
619{
Luis R. Rodriguezdb719712009-09-10 11:20:57 -0700620 struct ath_common *common = ath5k_hw_common(sc->ah);
Bob Copelandb6ea0352009-01-10 14:42:54 -0500621 struct sk_buff *skb;
Bob Copelandb6ea0352009-01-10 14:42:54 -0500622
623 /*
624 * Allocate buffer with headroom_needed space for the
625 * fake physical layer header at the start.
626 */
Luis R. Rodriguezdb719712009-09-10 11:20:57 -0700627 skb = ath_rxbuf_alloc(common,
Luis R. Rodriguezdd849782009-11-04 09:44:50 -0800628 common->rx_bufsize,
Luis R. Rodriguezaeb63cf2009-08-12 09:57:00 -0700629 GFP_ATOMIC);
Bob Copelandb6ea0352009-01-10 14:42:54 -0500630
631 if (!skb) {
632 ATH5K_ERR(sc, "can't alloc skbuff of size %u\n",
Luis R. Rodriguezdd849782009-11-04 09:44:50 -0800633 common->rx_bufsize);
Bob Copelandb6ea0352009-01-10 14:42:54 -0500634 return NULL;
635 }
Bob Copelandb6ea0352009-01-10 14:42:54 -0500636
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100637 *skb_addr = dma_map_single(sc->dev,
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -0800638 skb->data, common->rx_bufsize,
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100639 DMA_FROM_DEVICE);
640
641 if (unlikely(dma_mapping_error(sc->dev, *skb_addr))) {
Bob Copelandb6ea0352009-01-10 14:42:54 -0500642 ATH5K_ERR(sc, "%s: DMA mapping failed\n", __func__);
643 dev_kfree_skb(skb);
644 return NULL;
645 }
646 return skb;
647}
648
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200649static int
650ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
651{
652 struct ath5k_hw *ah = sc->ah;
653 struct sk_buff *skb = bf->skb;
654 struct ath5k_desc *ds;
Bruno Randolfb5eae9f2010-05-19 10:18:16 +0900655 int ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200656
Bob Copelandb6ea0352009-01-10 14:42:54 -0500657 if (!skb) {
658 skb = ath5k_rx_skb_alloc(sc, &bf->skbaddr);
659 if (!skb)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200660 return -ENOMEM;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200661 bf->skb = skb;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200662 }
663
664 /*
665 * Setup descriptors. For receive we always terminate
666 * the descriptor list with a self-linked entry so we'll
667 * not get overrun under high load (as can happen with a
668 * 5212 when ANI processing enables PHY error frames).
669 *
Bruno Randolfbeade632010-06-16 19:11:25 +0900670 * To ensure the last descriptor is self-linked we create
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200671 * each descriptor as self-linked and add it to the end. As
672 * each additional descriptor is added the previous self-linked
Bruno Randolfbeade632010-06-16 19:11:25 +0900673 * entry is "fixed" naturally. This should be safe even
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200674 * if DMA is happening. When processing RX interrupts we
675 * never remove/process the last, self-linked, entry on the
Bruno Randolfbeade632010-06-16 19:11:25 +0900676 * descriptor list. This ensures the hardware always has
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200677 * someplace to write a new frame.
678 */
679 ds = bf->desc;
680 ds->ds_link = bf->daddr; /* link to self */
681 ds->ds_data = bf->skbaddr;
Bruno Randolfa6668192010-06-16 19:12:01 +0900682 ret = ath5k_hw_setup_rx_desc(ah, ds, ah->common.rx_bufsize, 0);
Bruno Randolf0452d4a2010-06-16 19:11:35 +0900683 if (ret) {
684 ATH5K_ERR(sc, "%s: could not setup RX desc\n", __func__);
Bruno Randolfb5eae9f2010-05-19 10:18:16 +0900685 return ret;
Bruno Randolf0452d4a2010-06-16 19:11:35 +0900686 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200687
688 if (sc->rxlink != NULL)
689 *sc->rxlink = bf->daddr;
690 sc->rxlink = &ds->ds_link;
691 return 0;
692}
693
Bob Copeland2ac29272010-02-09 13:06:54 -0500694static enum ath5k_pkt_type get_hw_packet_type(struct sk_buff *skb)
695{
696 struct ieee80211_hdr *hdr;
697 enum ath5k_pkt_type htype;
698 __le16 fc;
699
700 hdr = (struct ieee80211_hdr *)skb->data;
701 fc = hdr->frame_control;
702
703 if (ieee80211_is_beacon(fc))
704 htype = AR5K_PKT_TYPE_BEACON;
705 else if (ieee80211_is_probe_resp(fc))
706 htype = AR5K_PKT_TYPE_PROBE_RESP;
707 else if (ieee80211_is_atim(fc))
708 htype = AR5K_PKT_TYPE_ATIM;
709 else if (ieee80211_is_pspoll(fc))
710 htype = AR5K_PKT_TYPE_PSPOLL;
711 else
712 htype = AR5K_PKT_TYPE_NORMAL;
713
714 return htype;
715}
716
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200717static int
Bob Copelandcec8db22009-07-04 12:59:51 -0400718ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf,
Benoit Papillault8127fbd2010-02-27 23:05:26 +0100719 struct ath5k_txq *txq, int padsize)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200720{
721 struct ath5k_hw *ah = sc->ah;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200722 struct ath5k_desc *ds = bf->desc;
723 struct sk_buff *skb = bf->skb;
Johannes Berga888d522008-05-26 16:43:39 +0200724 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200725 unsigned int pktlen, flags, keyidx = AR5K_TXKEYIX_INVALID;
Felix Fietkau2f7fe872008-10-05 18:05:48 +0200726 struct ieee80211_rate *rate;
727 unsigned int mrr_rate[3], mrr_tries[3];
728 int i, ret;
Bob Copeland8902ff42009-01-22 08:44:20 -0500729 u16 hw_rate;
Bob Copeland07c1e852009-01-22 08:44:21 -0500730 u16 cts_rate = 0;
731 u16 duration = 0;
Bob Copeland8902ff42009-01-22 08:44:20 -0500732 u8 rc_flags;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200733
734 flags = AR5K_TXDESC_INTREQ | AR5K_TXDESC_CLRDMASK;
Johannes Berge039fa42008-05-15 12:55:29 +0200735
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200736 /* XXX endianness */
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100737 bf->skbaddr = dma_map_single(sc->dev, skb->data, skb->len,
738 DMA_TO_DEVICE);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200739
Bob Copeland8902ff42009-01-22 08:44:20 -0500740 rate = ieee80211_get_tx_rate(sc->hw, info);
John W. Linvilled8e1ba72010-08-24 15:27:34 -0400741 if (!rate) {
742 ret = -EINVAL;
743 goto err_unmap;
744 }
Bob Copeland8902ff42009-01-22 08:44:20 -0500745
Johannes Berge039fa42008-05-15 12:55:29 +0200746 if (info->flags & IEEE80211_TX_CTL_NO_ACK)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200747 flags |= AR5K_TXDESC_NOACK;
748
Bob Copeland8902ff42009-01-22 08:44:20 -0500749 rc_flags = info->control.rates[0].flags;
750 hw_rate = (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) ?
751 rate->hw_value_short : rate->hw_value;
752
Bruno Randolf281c56d2008-02-05 18:44:55 +0900753 pktlen = skb->len;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200754
Nick Kossifidis8f655dd2009-03-15 22:20:35 +0200755 /* FIXME: If we are in g mode and rate is a CCK rate
756 * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta
757 * from tx power (value is in dB units already) */
Bob Copeland362695e2009-02-15 12:06:12 -0500758 if (info->control.hw_key) {
759 keyidx = info->control.hw_key->hw_key_idx;
760 pktlen += info->control.hw_key->icv_len;
761 }
Bob Copeland07c1e852009-01-22 08:44:21 -0500762 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
763 flags |= AR5K_TXDESC_RTSENA;
764 cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value;
765 duration = le16_to_cpu(ieee80211_rts_duration(sc->hw,
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700766 info->control.vif, pktlen, info));
Bob Copeland07c1e852009-01-22 08:44:21 -0500767 }
768 if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
769 flags |= AR5K_TXDESC_CTSENA;
770 cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value;
771 duration = le16_to_cpu(ieee80211_ctstoself_duration(sc->hw,
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700772 info->control.vif, pktlen, info));
Bob Copeland07c1e852009-01-22 08:44:21 -0500773 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200774 ret = ah->ah_setup_tx_desc(ah, ds, pktlen,
Benoit Papillault8127fbd2010-02-27 23:05:26 +0100775 ieee80211_get_hdrlen_from_skb(skb), padsize,
Bob Copeland2ac29272010-02-09 13:06:54 -0500776 get_hw_packet_type(skb),
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200777 (sc->power_level * 2),
Bob Copeland8902ff42009-01-22 08:44:20 -0500778 hw_rate,
Nick Kossifidis2bed03e2009-04-30 15:55:49 -0400779 info->control.rates[0].count, keyidx, ah->ah_tx_ant, flags,
Bob Copeland07c1e852009-01-22 08:44:21 -0500780 cts_rate, duration);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200781 if (ret)
782 goto err_unmap;
783
Felix Fietkau2f7fe872008-10-05 18:05:48 +0200784 memset(mrr_rate, 0, sizeof(mrr_rate));
785 memset(mrr_tries, 0, sizeof(mrr_tries));
786 for (i = 0; i < 3; i++) {
787 rate = ieee80211_get_alt_retry_rate(sc->hw, info, i);
788 if (!rate)
789 break;
790
791 mrr_rate[i] = rate->hw_value;
Johannes Berge6a98542008-10-21 12:40:02 +0200792 mrr_tries[i] = info->control.rates[i + 1].count;
Felix Fietkau2f7fe872008-10-05 18:05:48 +0200793 }
794
Bruno Randolfa6668192010-06-16 19:12:01 +0900795 ath5k_hw_setup_mrr_tx_desc(ah, ds,
Felix Fietkau2f7fe872008-10-05 18:05:48 +0200796 mrr_rate[0], mrr_tries[0],
797 mrr_rate[1], mrr_tries[1],
798 mrr_rate[2], mrr_tries[2]);
799
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200800 ds->ds_link = 0;
801 ds->ds_data = bf->skbaddr;
802
803 spin_lock_bh(&txq->lock);
804 list_add_tail(&bf->list, &txq->q);
Bruno Randolf925e0b02010-09-17 11:36:35 +0900805 txq->txq_len++;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200806 if (txq->link == NULL) /* is this first packet? */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300807 ath5k_hw_set_txdp(ah, txq->qnum, bf->daddr);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200808 else /* no, so only link it */
809 *txq->link = bf->daddr;
810
811 txq->link = &ds->ds_link;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300812 ath5k_hw_start_tx_dma(ah, txq->qnum);
Jiri Slaby274c7c32008-07-15 17:44:20 +0200813 mmiowb();
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200814 spin_unlock_bh(&txq->lock);
815
816 return 0;
817err_unmap:
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100818 dma_unmap_single(sc->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200819 return ret;
820}
821
822/*******************\
823* Descriptors setup *
824\*******************/
825
826static int
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100827ath5k_desc_alloc(struct ath5k_softc *sc)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200828{
829 struct ath5k_desc *ds;
830 struct ath5k_buf *bf;
831 dma_addr_t da;
832 unsigned int i;
833 int ret;
834
835 /* allocate descriptors */
836 sc->desc_len = sizeof(struct ath5k_desc) *
837 (ATH_TXBUF + ATH_RXBUF + ATH_BCBUF + 1);
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100838
839 sc->desc = dma_alloc_coherent(sc->dev, sc->desc_len,
840 &sc->desc_daddr, GFP_KERNEL);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200841 if (sc->desc == NULL) {
842 ATH5K_ERR(sc, "can't allocate descriptors\n");
843 ret = -ENOMEM;
844 goto err;
845 }
846 ds = sc->desc;
847 da = sc->desc_daddr;
848 ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "DMA map: %p (%zu) -> %llx\n",
849 ds, sc->desc_len, (unsigned long long)sc->desc_daddr);
850
851 bf = kcalloc(1 + ATH_TXBUF + ATH_RXBUF + ATH_BCBUF,
852 sizeof(struct ath5k_buf), GFP_KERNEL);
853 if (bf == NULL) {
854 ATH5K_ERR(sc, "can't allocate bufptr\n");
855 ret = -ENOMEM;
856 goto err_free;
857 }
858 sc->bufptr = bf;
859
860 INIT_LIST_HEAD(&sc->rxbuf);
861 for (i = 0; i < ATH_RXBUF; i++, bf++, ds++, da += sizeof(*ds)) {
862 bf->desc = ds;
863 bf->daddr = da;
864 list_add_tail(&bf->list, &sc->rxbuf);
865 }
866
867 INIT_LIST_HEAD(&sc->txbuf);
868 sc->txbuf_len = ATH_TXBUF;
869 for (i = 0; i < ATH_TXBUF; i++, bf++, ds++,
870 da += sizeof(*ds)) {
871 bf->desc = ds;
872 bf->daddr = da;
873 list_add_tail(&bf->list, &sc->txbuf);
874 }
875
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700876 /* beacon buffers */
877 INIT_LIST_HEAD(&sc->bcbuf);
878 for (i = 0; i < ATH_BCBUF; i++, bf++, ds++, da += sizeof(*ds)) {
879 bf->desc = ds;
880 bf->daddr = da;
881 list_add_tail(&bf->list, &sc->bcbuf);
882 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200883
884 return 0;
885err_free:
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100886 dma_free_coherent(sc->dev, sc->desc_len, sc->desc, sc->desc_daddr);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200887err:
888 sc->desc = NULL;
889 return ret;
890}
891
892static void
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100893ath5k_desc_free(struct ath5k_softc *sc)
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200894{
895 struct ath5k_buf *bf;
896
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200897 list_for_each_entry(bf, &sc->txbuf, list)
Bruno Randolf9e4e43f2010-06-16 19:11:17 +0900898 ath5k_txbuf_free_skb(sc, bf);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200899 list_for_each_entry(bf, &sc->rxbuf, list)
Bruno Randolf9e4e43f2010-06-16 19:11:17 +0900900 ath5k_rxbuf_free_skb(sc, bf);
Ben Greearb1ae1ed2010-09-30 12:22:58 -0700901 list_for_each_entry(bf, &sc->bcbuf, list)
902 ath5k_txbuf_free_skb(sc, bf);
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200903
904 /* Free memory associated with all descriptors */
Felix Fietkauaeae4ac2010-12-02 10:26:51 +0100905 dma_free_coherent(sc->dev, sc->desc_len, sc->desc, sc->desc_daddr);
Bruno Randolf39d63f22010-06-16 19:11:41 +0900906 sc->desc = NULL;
907 sc->desc_daddr = 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200908
909 kfree(sc->bufptr);
910 sc->bufptr = NULL;
911}
912
913
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200914/**************\
915* Queues setup *
916\**************/
917
918static struct ath5k_txq *
919ath5k_txq_setup(struct ath5k_softc *sc,
920 int qtype, int subtype)
921{
922 struct ath5k_hw *ah = sc->ah;
923 struct ath5k_txq *txq;
924 struct ath5k_txq_info qi = {
925 .tqi_subtype = subtype,
Bruno Randolfde8af452010-09-17 11:37:12 +0900926 /* XXX: default values not correct for B and XR channels,
927 * but who cares? */
928 .tqi_aifs = AR5K_TUNE_AIFS,
929 .tqi_cw_min = AR5K_TUNE_CWMIN,
930 .tqi_cw_max = AR5K_TUNE_CWMAX
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200931 };
932 int qnum;
933
934 /*
935 * Enable interrupts only for EOL and DESC conditions.
936 * We mark tx descriptors to receive a DESC interrupt
Bob Copelanda180a132010-08-15 13:03:12 -0400937 * when a tx queue gets deep; otherwise we wait for the
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200938 * EOL to reap descriptors. Note that this is done to
939 * reduce interrupt load and this only defers reaping
940 * descriptors, never transmitting frames. Aside from
941 * reducing interrupts this also permits more concurrency.
942 * The only potential downside is if the tx queue backs
943 * up in which case the top half of the kernel may backup
944 * due to a lack of tx descriptors.
945 */
946 qi.tqi_flags = AR5K_TXQ_FLAG_TXEOLINT_ENABLE |
947 AR5K_TXQ_FLAG_TXDESCINT_ENABLE;
948 qnum = ath5k_hw_setup_tx_queue(ah, qtype, &qi);
949 if (qnum < 0) {
950 /*
951 * NB: don't print a message, this happens
952 * normally on parts with too few tx queues
953 */
954 return ERR_PTR(qnum);
955 }
956 if (qnum >= ARRAY_SIZE(sc->txqs)) {
957 ATH5K_ERR(sc, "hw qnum %u out of range, max %tu!\n",
958 qnum, ARRAY_SIZE(sc->txqs));
959 ath5k_hw_release_tx_queue(ah, qnum);
960 return ERR_PTR(-EINVAL);
961 }
962 txq = &sc->txqs[qnum];
963 if (!txq->setup) {
964 txq->qnum = qnum;
965 txq->link = NULL;
966 INIT_LIST_HEAD(&txq->q);
967 spin_lock_init(&txq->lock);
968 txq->setup = true;
Bruno Randolf925e0b02010-09-17 11:36:35 +0900969 txq->txq_len = 0;
Bruno Randolf4edd7612010-09-17 11:36:56 +0900970 txq->txq_poll_mark = false;
Bruno Randolf923e5b32010-09-17 11:37:02 +0900971 txq->txq_stuck = 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200972 }
973 return &sc->txqs[qnum];
974}
975
976static int
977ath5k_beaconq_setup(struct ath5k_hw *ah)
978{
979 struct ath5k_txq_info qi = {
Bruno Randolfde8af452010-09-17 11:37:12 +0900980 /* XXX: default values not correct for B and XR channels,
981 * but who cares? */
982 .tqi_aifs = AR5K_TUNE_AIFS,
983 .tqi_cw_min = AR5K_TUNE_CWMIN,
984 .tqi_cw_max = AR5K_TUNE_CWMAX,
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200985 /* NB: for dynamic turbo, don't enable any other interrupts */
986 .tqi_flags = AR5K_TXQ_FLAG_TXDESCINT_ENABLE
987 };
988
989 return ath5k_hw_setup_tx_queue(ah, AR5K_TX_QUEUE_BEACON, &qi);
990}
991
992static int
993ath5k_beaconq_config(struct ath5k_softc *sc)
994{
995 struct ath5k_hw *ah = sc->ah;
996 struct ath5k_txq_info qi;
997 int ret;
998
999 ret = ath5k_hw_get_tx_queueprops(ah, sc->bhalq, &qi);
1000 if (ret)
Bob Copelanda951ae22010-01-20 23:51:04 -05001001 goto err;
1002
Johannes Berg05c914f2008-09-11 00:01:58 +02001003 if (sc->opmode == NL80211_IFTYPE_AP ||
1004 sc->opmode == NL80211_IFTYPE_MESH_POINT) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001005 /*
1006 * Always burst out beacon and CAB traffic
1007 * (aifs = cwmin = cwmax = 0)
1008 */
1009 qi.tqi_aifs = 0;
1010 qi.tqi_cw_min = 0;
1011 qi.tqi_cw_max = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02001012 } else if (sc->opmode == NL80211_IFTYPE_ADHOC) {
Bruno Randolf6d91e1d2008-01-19 18:18:41 +09001013 /*
1014 * Adhoc mode; backoff between 0 and (2 * cw_min).
1015 */
1016 qi.tqi_aifs = 0;
1017 qi.tqi_cw_min = 0;
Bruno Randolfde8af452010-09-17 11:37:12 +09001018 qi.tqi_cw_max = 2 * AR5K_TUNE_CWMIN;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001019 }
1020
Bruno Randolf6d91e1d2008-01-19 18:18:41 +09001021 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
1022 "beacon queueprops tqi_aifs:%d tqi_cw_min:%d tqi_cw_max:%d\n",
1023 qi.tqi_aifs, qi.tqi_cw_min, qi.tqi_cw_max);
1024
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001025 ret = ath5k_hw_set_tx_queueprops(ah, sc->bhalq, &qi);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001026 if (ret) {
1027 ATH5K_ERR(sc, "%s: unable to update parameters for beacon "
1028 "hardware queue!\n", __func__);
Bob Copelanda951ae22010-01-20 23:51:04 -05001029 goto err;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001030 }
Bob Copelanda951ae22010-01-20 23:51:04 -05001031 ret = ath5k_hw_reset_tx_queue(ah, sc->bhalq); /* push to h/w */
1032 if (ret)
1033 goto err;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001034
Bob Copelanda951ae22010-01-20 23:51:04 -05001035 /* reconfigure cabq with ready time to 80% of beacon_interval */
1036 ret = ath5k_hw_get_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi);
1037 if (ret)
1038 goto err;
1039
1040 qi.tqi_ready_time = (sc->bintval * 80) / 100;
1041 ret = ath5k_hw_set_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi);
1042 if (ret)
1043 goto err;
1044
1045 ret = ath5k_hw_reset_tx_queue(ah, AR5K_TX_QUEUE_ID_CAB);
1046err:
1047 return ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001048}
1049
Nick Kossifidis80dac9ee2010-11-23 20:45:38 +02001050/**
1051 * ath5k_drain_tx_buffs - Empty tx buffers
1052 *
1053 * @sc The &struct ath5k_softc
1054 *
1055 * Empty tx buffers from all queues in preparation
1056 * of a reset or during shutdown.
1057 *
1058 * NB: this assumes output has been stopped and
1059 * we do not need to block ath5k_tx_tasklet
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001060 */
1061static void
Nick Kossifidis80dac9ee2010-11-23 20:45:38 +02001062ath5k_drain_tx_buffs(struct ath5k_softc *sc)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001063{
Nick Kossifidis80dac9ee2010-11-23 20:45:38 +02001064 struct ath5k_txq *txq;
1065 struct ath5k_buf *bf, *bf0;
1066 int i;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001067
Nick Kossifidis80dac9ee2010-11-23 20:45:38 +02001068 for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) {
1069 if (sc->txqs[i].setup) {
1070 txq = &sc->txqs[i];
1071 spin_lock_bh(&txq->lock);
1072 list_for_each_entry_safe(bf, bf0, &txq->q, list) {
1073 ath5k_debug_printtxbuf(sc, bf);
1074
1075 ath5k_txbuf_free_skb(sc, bf);
1076
1077 spin_lock_bh(&sc->txbuflock);
1078 list_move_tail(&bf->list, &sc->txbuf);
1079 sc->txbuf_len++;
1080 txq->txq_len--;
1081 spin_unlock_bh(&sc->txbuflock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001082 }
Nick Kossifidis80dac9ee2010-11-23 20:45:38 +02001083 txq->link = NULL;
1084 txq->txq_poll_mark = false;
1085 spin_unlock_bh(&txq->lock);
1086 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001087 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001088}
1089
1090static void
1091ath5k_txq_release(struct ath5k_softc *sc)
1092{
1093 struct ath5k_txq *txq = sc->txqs;
1094 unsigned int i;
1095
1096 for (i = 0; i < ARRAY_SIZE(sc->txqs); i++, txq++)
1097 if (txq->setup) {
1098 ath5k_hw_release_tx_queue(sc->ah, txq->qnum);
1099 txq->setup = false;
1100 }
1101}
1102
1103
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001104/*************\
1105* RX Handling *
1106\*************/
1107
1108/*
1109 * Enable the receive h/w following a reset.
1110 */
1111static int
1112ath5k_rx_start(struct ath5k_softc *sc)
1113{
1114 struct ath5k_hw *ah = sc->ah;
Luis R. Rodriguezdb719712009-09-10 11:20:57 -07001115 struct ath_common *common = ath5k_hw_common(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001116 struct ath5k_buf *bf;
1117 int ret;
1118
Nick Kossifidisb6127982010-08-15 13:03:11 -04001119 common->rx_bufsize = roundup(IEEE80211_MAX_FRAME_LEN, common->cachelsz);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001120
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -08001121 ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "cachelsz %u rx_bufsize %u\n",
1122 common->cachelsz, common->rx_bufsize);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001123
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001124 spin_lock_bh(&sc->rxbuflock);
Bob Copeland26925042009-04-15 07:57:36 -04001125 sc->rxlink = NULL;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001126 list_for_each_entry(bf, &sc->rxbuf, list) {
1127 ret = ath5k_rxbuf_setup(sc, bf);
1128 if (ret != 0) {
1129 spin_unlock_bh(&sc->rxbuflock);
1130 goto err;
1131 }
1132 }
1133 bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list);
Bob Copeland26925042009-04-15 07:57:36 -04001134 ath5k_hw_set_rxdp(ah, bf->daddr);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001135 spin_unlock_bh(&sc->rxbuflock);
1136
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001137 ath5k_hw_start_rx_dma(ah); /* enable recv descriptors */
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001138 ath5k_mode_setup(sc, NULL); /* set filters, etc. */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001139 ath5k_hw_start_rx_pcu(ah); /* re-enable PCU/DMA engine */
1140
1141 return 0;
1142err:
1143 return ret;
1144}
1145
1146/*
Nick Kossifidis80dac9ee2010-11-23 20:45:38 +02001147 * Disable the receive logic on PCU (DRU)
1148 * In preparation for a shutdown.
1149 *
1150 * Note: Doesn't stop rx DMA, ath5k_hw_dma_stop
1151 * does.
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001152 */
1153static void
1154ath5k_rx_stop(struct ath5k_softc *sc)
1155{
1156 struct ath5k_hw *ah = sc->ah;
1157
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001158 ath5k_hw_set_rx_filter(ah, 0); /* clear recv filter */
Nick Kossifidis80dac9ee2010-11-23 20:45:38 +02001159 ath5k_hw_stop_rx_pcu(ah); /* disable PCU */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001160
1161 ath5k_debug_printrxbuffs(sc, ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001162}
1163
1164static unsigned int
Bruno Randolf8a89f062010-06-16 19:11:51 +09001165ath5k_rx_decrypted(struct ath5k_softc *sc, struct sk_buff *skb,
1166 struct ath5k_rx_status *rs)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001167{
Luis R. Rodriguezdc1e0012009-11-04 17:47:31 -08001168 struct ath5k_hw *ah = sc->ah;
1169 struct ath_common *common = ath5k_hw_common(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001170 struct ieee80211_hdr *hdr = (void *)skb->data;
Harvey Harrison798ee982008-07-15 18:44:02 -07001171 unsigned int keyix, hlen;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001172
Bruno Randolfb47f4072008-03-05 18:35:45 +09001173 if (!(rs->rs_status & AR5K_RXERR_DECRYPT) &&
1174 rs->rs_keyix != AR5K_RXKEYIX_INVALID)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001175 return RX_FLAG_DECRYPTED;
1176
1177 /* Apparently when a default key is used to decrypt the packet
1178 the hw does not set the index used to decrypt. In such cases
1179 get the index from the packet. */
Harvey Harrison798ee982008-07-15 18:44:02 -07001180 hlen = ieee80211_hdrlen(hdr->frame_control);
Harvey Harrison24b56e72008-06-14 23:33:38 -07001181 if (ieee80211_has_protected(hdr->frame_control) &&
1182 !(rs->rs_status & AR5K_RXERR_DECRYPT) &&
1183 skb->len >= hlen + 4) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001184 keyix = skb->data[hlen + 3] >> 6;
1185
Luis R. Rodriguezdc1e0012009-11-04 17:47:31 -08001186 if (test_bit(keyix, common->keymap))
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001187 return RX_FLAG_DECRYPTED;
1188 }
1189
1190 return 0;
1191}
1192
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001193
1194static void
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001195ath5k_check_ibss_tsf(struct ath5k_softc *sc, struct sk_buff *skb,
1196 struct ieee80211_rx_status *rxs)
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001197{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -07001198 struct ath_common *common = ath5k_hw_common(sc->ah);
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001199 u64 tsf, bc_tstamp;
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001200 u32 hw_tu;
1201 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
1202
Harvey Harrison24b56e72008-06-14 23:33:38 -07001203 if (ieee80211_is_beacon(mgmt->frame_control) &&
Pavel Roskin38c07b42008-02-26 17:59:14 -05001204 le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS &&
Luis R. Rodriguez954fece2009-09-10 10:51:33 -07001205 memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) == 0) {
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001206 /*
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001207 * Received an IBSS beacon with the same BSSID. Hardware *must*
1208 * have updated the local TSF. We have to work around various
1209 * hardware bugs, though...
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001210 */
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001211 tsf = ath5k_hw_get_tsf64(sc->ah);
1212 bc_tstamp = le64_to_cpu(mgmt->u.beacon.timestamp);
1213 hw_tu = TSF_TO_TU(tsf);
1214
1215 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
1216 "beacon %llx mactime %llx (diff %lld) tsf now %llx\n",
John W. Linville06501d22008-04-01 17:38:47 -04001217 (unsigned long long)bc_tstamp,
1218 (unsigned long long)rxs->mactime,
1219 (unsigned long long)(rxs->mactime - bc_tstamp),
1220 (unsigned long long)tsf);
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001221
1222 /*
1223 * Sometimes the HW will give us a wrong tstamp in the rx
1224 * status, causing the timestamp extension to go wrong.
1225 * (This seems to happen especially with beacon frames bigger
1226 * than 78 byte (incl. FCS))
1227 * But we know that the receive timestamp must be later than the
1228 * timestamp of the beacon since HW must have synced to that.
1229 *
1230 * NOTE: here we assume mactime to be after the frame was
1231 * received, not like mac80211 which defines it at the start.
1232 */
1233 if (bc_tstamp > rxs->mactime) {
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001234 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001235 "fixing mactime from %llx to %llx\n",
John W. Linville06501d22008-04-01 17:38:47 -04001236 (unsigned long long)rxs->mactime,
1237 (unsigned long long)tsf);
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001238 rxs->mactime = tsf;
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001239 }
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001240
1241 /*
1242 * Local TSF might have moved higher than our beacon timers,
1243 * in that case we have to update them to continue sending
1244 * beacons. This also takes care of synchronizing beacon sending
1245 * times with other stations.
1246 */
1247 if (hw_tu >= sc->nexttbtt)
1248 ath5k_beacon_update_timers(sc, bc_tstamp);
Bruno Randolf7f896122010-09-27 12:22:21 +09001249
1250 /* Check if the beacon timers are still correct, because a TSF
1251 * update might have created a window between them - for a
1252 * longer description see the comment of this function: */
1253 if (!ath5k_hw_check_beacon_timers(sc->ah, sc->bintval)) {
1254 ath5k_beacon_update_timers(sc, bc_tstamp);
1255 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
1256 "fixed beacon timers after beacon receive\n");
1257 }
Bruno Randolf036cd1e2008-01-19 18:18:21 +09001258 }
1259}
1260
Bruno Randolfb4ea4492010-03-25 14:49:25 +09001261static void
1262ath5k_update_beacon_rssi(struct ath5k_softc *sc, struct sk_buff *skb, int rssi)
1263{
1264 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
1265 struct ath5k_hw *ah = sc->ah;
1266 struct ath_common *common = ath5k_hw_common(ah);
1267
1268 /* only beacons from our BSSID */
1269 if (!ieee80211_is_beacon(mgmt->frame_control) ||
1270 memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) != 0)
1271 return;
1272
Bruno Randolfeef39be2010-11-16 10:58:43 +09001273 ewma_add(&ah->ah_beacon_rssi_avg, rssi);
Bruno Randolfb4ea4492010-03-25 14:49:25 +09001274
1275 /* in IBSS mode we should keep RSSI statistics per neighbour */
1276 /* le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS */
1277}
1278
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001279/*
Bob Copelanda180a132010-08-15 13:03:12 -04001280 * Compute padding position. skb must contain an IEEE 802.11 frame
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001281 */
1282static int ath5k_common_padpos(struct sk_buff *skb)
1283{
1284 struct ieee80211_hdr * hdr = (struct ieee80211_hdr *)skb->data;
1285 __le16 frame_control = hdr->frame_control;
1286 int padpos = 24;
1287
1288 if (ieee80211_has_a4(frame_control)) {
1289 padpos += ETH_ALEN;
1290 }
1291 if (ieee80211_is_data_qos(frame_control)) {
1292 padpos += IEEE80211_QOS_CTL_LEN;
1293 }
1294
1295 return padpos;
1296}
1297
1298/*
Bob Copelanda180a132010-08-15 13:03:12 -04001299 * This function expects an 802.11 frame and returns the number of
1300 * bytes added, or -1 if we don't have enough header room.
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001301 */
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001302static int ath5k_add_padding(struct sk_buff *skb)
1303{
1304 int padpos = ath5k_common_padpos(skb);
1305 int padsize = padpos & 3;
1306
1307 if (padsize && skb->len>padpos) {
1308
1309 if (skb_headroom(skb) < padsize)
1310 return -1;
1311
1312 skb_push(skb, padsize);
1313 memmove(skb->data, skb->data+padsize, padpos);
1314 return padsize;
1315 }
1316
1317 return 0;
1318}
1319
1320/*
Bob Copelanda180a132010-08-15 13:03:12 -04001321 * The MAC header is padded to have 32-bit boundary if the
1322 * packet payload is non-zero. The general calculation for
1323 * padsize would take into account odd header lengths:
1324 * padsize = 4 - (hdrlen & 3); however, since only
1325 * even-length headers are used, padding can only be 0 or 2
1326 * bytes and we can optimize this a bit. We must not try to
1327 * remove padding from short control frames that do not have a
1328 * payload.
1329 *
1330 * This function expects an 802.11 frame and returns the number of
1331 * bytes removed.
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001332 */
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001333static int ath5k_remove_padding(struct sk_buff *skb)
1334{
1335 int padpos = ath5k_common_padpos(skb);
1336 int padsize = padpos & 3;
1337
1338 if (padsize && skb->len>=padpos+padsize) {
1339 memmove(skb->data + padsize, skb->data, padpos);
1340 skb_pull(skb, padsize);
1341 return padsize;
1342 }
1343
1344 return 0;
1345}
1346
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001347static void
Bruno Randolf8a89f062010-06-16 19:11:51 +09001348ath5k_receive_frame(struct ath5k_softc *sc, struct sk_buff *skb,
1349 struct ath5k_rx_status *rs)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001350{
Bob Copeland1c5256b2009-08-24 23:00:32 -04001351 struct ieee80211_rx_status *rxs;
Bruno Randolf8a89f062010-06-16 19:11:51 +09001352
Bruno Randolf8a89f062010-06-16 19:11:51 +09001353 ath5k_remove_padding(skb);
1354
1355 rxs = IEEE80211_SKB_RXCB(skb);
1356
1357 rxs->flag = 0;
1358 if (unlikely(rs->rs_status & AR5K_RXERR_MIC))
1359 rxs->flag |= RX_FLAG_MMIC_ERROR;
1360
1361 /*
1362 * always extend the mac timestamp, since this information is
1363 * also needed for proper IBSS merging.
1364 *
1365 * XXX: it might be too late to do it here, since rs_tstamp is
1366 * 15bit only. that means TSF extension has to be done within
1367 * 32768usec (about 32ms). it might be necessary to move this to
1368 * the interrupt handler, like it is done in madwifi.
1369 *
1370 * Unfortunately we don't know when the hardware takes the rx
1371 * timestamp (beginning of phy frame, data frame, end of rx?).
1372 * The only thing we know is that it is hardware specific...
1373 * On AR5213 it seems the rx timestamp is at the end of the
1374 * frame, but i'm not sure.
1375 *
1376 * NOTE: mac80211 defines mactime at the beginning of the first
1377 * data symbol. Since we don't have any time references it's
1378 * impossible to comply to that. This affects IBSS merge only
1379 * right now, so it's not too bad...
1380 */
1381 rxs->mactime = ath5k_extend_tsf(sc->ah, rs->rs_tstamp);
1382 rxs->flag |= RX_FLAG_TSFT;
1383
1384 rxs->freq = sc->curchan->center_freq;
1385 rxs->band = sc->curband->band;
1386
1387 rxs->signal = sc->ah->ah_noise_floor + rs->rs_rssi;
1388
1389 rxs->antenna = rs->rs_antenna;
1390
1391 if (rs->rs_antenna > 0 && rs->rs_antenna < 5)
1392 sc->stats.antenna_rx[rs->rs_antenna]++;
1393 else
1394 sc->stats.antenna_rx[0]++; /* invalid */
1395
1396 rxs->rate_idx = ath5k_hw_to_driver_rix(sc, rs->rs_rate);
1397 rxs->flag |= ath5k_rx_decrypted(sc, skb, rs);
1398
1399 if (rxs->rate_idx >= 0 && rs->rs_rate ==
1400 sc->curband->bitrates[rxs->rate_idx].hw_value_short)
1401 rxs->flag |= RX_FLAG_SHORTPRE;
1402
1403 ath5k_debug_dump_skb(sc, skb, "RX ", 0);
1404
1405 ath5k_update_beacon_rssi(sc, skb, rs->rs_rssi);
1406
1407 /* check beacons in IBSS mode */
1408 if (sc->opmode == NL80211_IFTYPE_ADHOC)
1409 ath5k_check_ibss_tsf(sc, skb, rxs);
1410
1411 ieee80211_rx(sc->hw, skb);
1412}
1413
Bruno Randolf02a78b42010-06-16 19:11:56 +09001414/** ath5k_frame_receive_ok() - Do we want to receive this frame or not?
1415 *
1416 * Check if we want to further process this frame or not. Also update
1417 * statistics. Return true if we want this frame, false if not.
1418 */
1419static bool
1420ath5k_receive_frame_ok(struct ath5k_softc *sc, struct ath5k_rx_status *rs)
1421{
1422 sc->stats.rx_all_count++;
Ben Greearb72acdd2010-10-01 10:54:04 -07001423 sc->stats.rx_bytes_count += rs->rs_datalen;
Bruno Randolf02a78b42010-06-16 19:11:56 +09001424
1425 if (unlikely(rs->rs_status)) {
1426 if (rs->rs_status & AR5K_RXERR_CRC)
1427 sc->stats.rxerr_crc++;
1428 if (rs->rs_status & AR5K_RXERR_FIFO)
1429 sc->stats.rxerr_fifo++;
1430 if (rs->rs_status & AR5K_RXERR_PHY) {
1431 sc->stats.rxerr_phy++;
1432 if (rs->rs_phyerr > 0 && rs->rs_phyerr < 32)
1433 sc->stats.rxerr_phy_code[rs->rs_phyerr]++;
1434 return false;
1435 }
1436 if (rs->rs_status & AR5K_RXERR_DECRYPT) {
1437 /*
1438 * Decrypt error. If the error occurred
1439 * because there was no hardware key, then
1440 * let the frame through so the upper layers
1441 * can process it. This is necessary for 5210
1442 * parts which have no way to setup a ``clear''
1443 * key cache entry.
1444 *
1445 * XXX do key cache faulting
1446 */
1447 sc->stats.rxerr_decrypt++;
1448 if (rs->rs_keyix == AR5K_RXKEYIX_INVALID &&
1449 !(rs->rs_status & AR5K_RXERR_CRC))
1450 return true;
1451 }
1452 if (rs->rs_status & AR5K_RXERR_MIC) {
1453 sc->stats.rxerr_mic++;
1454 return true;
1455 }
1456
Bob Copeland23538c22010-08-15 13:03:13 -04001457 /* reject any frames with non-crypto errors */
1458 if (rs->rs_status & ~(AR5K_RXERR_DECRYPT))
Bruno Randolf02a78b42010-06-16 19:11:56 +09001459 return false;
1460 }
1461
1462 if (unlikely(rs->rs_more)) {
1463 sc->stats.rxerr_jumbo++;
1464 return false;
1465 }
1466 return true;
1467}
1468
Bruno Randolf8a89f062010-06-16 19:11:51 +09001469static void
1470ath5k_tasklet_rx(unsigned long data)
1471{
Bruno Randolfb47f4072008-03-05 18:35:45 +09001472 struct ath5k_rx_status rs = {};
Bob Copelandb6ea0352009-01-10 14:42:54 -05001473 struct sk_buff *skb, *next_skb;
1474 dma_addr_t next_skb_addr;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001475 struct ath5k_softc *sc = (void *)data;
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -08001476 struct ath5k_hw *ah = sc->ah;
1477 struct ath_common *common = ath5k_hw_common(ah);
Bob Copelandc57ca812009-04-15 07:57:35 -04001478 struct ath5k_buf *bf;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001479 struct ath5k_desc *ds;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001480 int ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001481
1482 spin_lock(&sc->rxbuflock);
Jiri Slaby3a0f2c82008-07-15 17:44:18 +02001483 if (list_empty(&sc->rxbuf)) {
1484 ATH5K_WARN(sc, "empty rx buf pool\n");
1485 goto unlock;
1486 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001487 do {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001488 bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list);
1489 BUG_ON(bf->skb == NULL);
1490 skb = bf->skb;
1491 ds = bf->desc;
1492
Bob Copelandc57ca812009-04-15 07:57:35 -04001493 /* bail if HW is still using self-linked descriptor */
1494 if (ath5k_hw_get_rxdp(sc->ah) == bf->daddr)
1495 break;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001496
Bruno Randolfb47f4072008-03-05 18:35:45 +09001497 ret = sc->ah->ah_proc_rx_desc(sc->ah, ds, &rs);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001498 if (unlikely(ret == -EINPROGRESS))
1499 break;
1500 else if (unlikely(ret)) {
1501 ATH5K_ERR(sc, "error in processing rx descriptor\n");
Bruno Randolf76443952010-03-09 16:56:00 +09001502 sc->stats.rxerr_proc++;
Bruno Randolfb16062f2010-06-16 19:11:46 +09001503 break;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001504 }
1505
Bruno Randolf02a78b42010-06-16 19:11:56 +09001506 if (ath5k_receive_frame_ok(sc, &rs)) {
1507 next_skb = ath5k_rx_skb_alloc(sc, &next_skb_addr);
Bruno Randolf76443952010-03-09 16:56:00 +09001508
Bruno Randolf02a78b42010-06-16 19:11:56 +09001509 /*
1510 * If we can't replace bf->skb with a new skb under
1511 * memory pressure, just skip this packet
1512 */
1513 if (!next_skb)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001514 goto next;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001515
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001516 dma_unmap_single(sc->dev, bf->skbaddr,
Bruno Randolf02a78b42010-06-16 19:11:56 +09001517 common->rx_bufsize,
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001518 DMA_FROM_DEVICE);
Bruno Randolf02a78b42010-06-16 19:11:56 +09001519
1520 skb_put(skb, rs.rs_datalen);
1521
1522 ath5k_receive_frame(sc, skb, &rs);
1523
1524 bf->skb = next_skb;
1525 bf->skbaddr = next_skb_addr;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001526 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001527next:
1528 list_move_tail(&bf->list, &sc->rxbuf);
1529 } while (ath5k_rxbuf_setup(sc, bf) == 0);
Jiri Slaby3a0f2c82008-07-15 17:44:18 +02001530unlock:
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001531 spin_unlock(&sc->rxbuflock);
1532}
1533
1534
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001535/*************\
1536* TX Handling *
1537\*************/
1538
Bob Copeland8a63fac2010-09-17 12:45:07 +09001539static int ath5k_tx_queue(struct ieee80211_hw *hw, struct sk_buff *skb,
1540 struct ath5k_txq *txq)
1541{
1542 struct ath5k_softc *sc = hw->priv;
1543 struct ath5k_buf *bf;
1544 unsigned long flags;
1545 int padsize;
1546
1547 ath5k_debug_dump_skb(sc, skb, "TX ", 1);
1548
1549 /*
1550 * The hardware expects the header padded to 4 byte boundaries.
1551 * If this is not the case, we add the padding after the header.
1552 */
1553 padsize = ath5k_add_padding(skb);
1554 if (padsize < 0) {
1555 ATH5K_ERR(sc, "tx hdrlen not %%4: not enough"
1556 " headroom to pad");
1557 goto drop_packet;
1558 }
1559
Bruno Randolf925e0b02010-09-17 11:36:35 +09001560 if (txq->txq_len >= ATH5K_TXQ_LEN_MAX)
1561 ieee80211_stop_queue(hw, txq->qnum);
1562
Bob Copeland8a63fac2010-09-17 12:45:07 +09001563 spin_lock_irqsave(&sc->txbuflock, flags);
1564 if (list_empty(&sc->txbuf)) {
1565 ATH5K_ERR(sc, "no further txbuf available, dropping packet\n");
1566 spin_unlock_irqrestore(&sc->txbuflock, flags);
Bruno Randolf651d9372010-09-17 11:36:46 +09001567 ieee80211_stop_queues(hw);
Bob Copeland8a63fac2010-09-17 12:45:07 +09001568 goto drop_packet;
1569 }
1570 bf = list_first_entry(&sc->txbuf, struct ath5k_buf, list);
1571 list_del(&bf->list);
1572 sc->txbuf_len--;
1573 if (list_empty(&sc->txbuf))
1574 ieee80211_stop_queues(hw);
1575 spin_unlock_irqrestore(&sc->txbuflock, flags);
1576
1577 bf->skb = skb;
1578
1579 if (ath5k_txbuf_setup(sc, bf, txq, padsize)) {
1580 bf->skb = NULL;
1581 spin_lock_irqsave(&sc->txbuflock, flags);
1582 list_add_tail(&bf->list, &sc->txbuf);
1583 sc->txbuf_len++;
1584 spin_unlock_irqrestore(&sc->txbuflock, flags);
1585 goto drop_packet;
1586 }
1587 return NETDEV_TX_OK;
1588
1589drop_packet:
1590 dev_kfree_skb_any(skb);
1591 return NETDEV_TX_OK;
1592}
1593
Bruno Randolf14404012010-09-17 11:36:51 +09001594static void
1595ath5k_tx_frame_completed(struct ath5k_softc *sc, struct sk_buff *skb,
1596 struct ath5k_tx_status *ts)
1597{
1598 struct ieee80211_tx_info *info;
1599 int i;
1600
1601 sc->stats.tx_all_count++;
Ben Greearb72acdd2010-10-01 10:54:04 -07001602 sc->stats.tx_bytes_count += skb->len;
Bruno Randolf14404012010-09-17 11:36:51 +09001603 info = IEEE80211_SKB_CB(skb);
1604
1605 ieee80211_tx_info_clear_status(info);
1606 for (i = 0; i < 4; i++) {
1607 struct ieee80211_tx_rate *r =
1608 &info->status.rates[i];
1609
1610 if (ts->ts_rate[i]) {
1611 r->idx = ath5k_hw_to_driver_rix(sc, ts->ts_rate[i]);
1612 r->count = ts->ts_retry[i];
1613 } else {
1614 r->idx = -1;
1615 r->count = 0;
1616 }
1617 }
1618
1619 /* count the successful attempt as well */
1620 info->status.rates[ts->ts_final_idx].count++;
1621
1622 if (unlikely(ts->ts_status)) {
1623 sc->stats.ack_fail++;
1624 if (ts->ts_status & AR5K_TXERR_FILT) {
1625 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1626 sc->stats.txerr_filt++;
1627 }
1628 if (ts->ts_status & AR5K_TXERR_XRETRY)
1629 sc->stats.txerr_retry++;
1630 if (ts->ts_status & AR5K_TXERR_FIFO)
1631 sc->stats.txerr_fifo++;
1632 } else {
1633 info->flags |= IEEE80211_TX_STAT_ACK;
1634 info->status.ack_signal = ts->ts_rssi;
1635 }
1636
1637 /*
1638 * Remove MAC header padding before giving the frame
1639 * back to mac80211.
1640 */
1641 ath5k_remove_padding(skb);
1642
1643 if (ts->ts_antenna > 0 && ts->ts_antenna < 5)
1644 sc->stats.antenna_tx[ts->ts_antenna]++;
1645 else
1646 sc->stats.antenna_tx[0]++; /* invalid */
1647
1648 ieee80211_tx_status(sc->hw, skb);
1649}
Bob Copeland8a63fac2010-09-17 12:45:07 +09001650
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001651static void
1652ath5k_tx_processq(struct ath5k_softc *sc, struct ath5k_txq *txq)
1653{
Bruno Randolfb47f4072008-03-05 18:35:45 +09001654 struct ath5k_tx_status ts = {};
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001655 struct ath5k_buf *bf, *bf0;
1656 struct ath5k_desc *ds;
1657 struct sk_buff *skb;
Bruno Randolf14404012010-09-17 11:36:51 +09001658 int ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001659
1660 spin_lock(&txq->lock);
1661 list_for_each_entry_safe(bf, bf0, &txq->q, list) {
Bruno Randolf23413292010-09-17 11:37:07 +09001662
1663 txq->txq_poll_mark = false;
1664
1665 /* skb might already have been processed last time. */
1666 if (bf->skb != NULL) {
1667 ds = bf->desc;
1668
1669 ret = sc->ah->ah_proc_tx_desc(sc->ah, ds, &ts);
1670 if (unlikely(ret == -EINPROGRESS))
1671 break;
1672 else if (unlikely(ret)) {
1673 ATH5K_ERR(sc,
1674 "error %d while processing "
1675 "queue %u\n", ret, txq->qnum);
1676 break;
1677 }
1678
1679 skb = bf->skb;
1680 bf->skb = NULL;
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001681
1682 dma_unmap_single(sc->dev, bf->skbaddr, skb->len,
1683 DMA_TO_DEVICE);
Bruno Randolf23413292010-09-17 11:37:07 +09001684 ath5k_tx_frame_completed(sc, skb, &ts);
1685 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001686
Bob Copelanda05988b2010-04-07 23:55:58 -04001687 /*
1688 * It's possible that the hardware can say the buffer is
1689 * completed when it hasn't yet loaded the ds_link from
Bruno Randolf23413292010-09-17 11:37:07 +09001690 * host memory and moved on.
1691 * Always keep the last descriptor to avoid HW races...
Bob Copelanda05988b2010-04-07 23:55:58 -04001692 */
Bruno Randolf23413292010-09-17 11:37:07 +09001693 if (ath5k_hw_get_txdp(sc->ah, txq->qnum) != bf->daddr) {
1694 spin_lock(&sc->txbuflock);
1695 list_move_tail(&bf->list, &sc->txbuf);
1696 sc->txbuf_len++;
1697 txq->txq_len--;
1698 spin_unlock(&sc->txbuflock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001699 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001700 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001701 spin_unlock(&txq->lock);
Bruno Randolf4198a8d2010-10-05 13:27:17 +09001702 if (txq->txq_len < ATH5K_TXQ_LEN_LOW && txq->qnum < 4)
Bruno Randolf925e0b02010-09-17 11:36:35 +09001703 ieee80211_wake_queue(sc->hw, txq->qnum);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001704}
1705
1706static void
1707ath5k_tasklet_tx(unsigned long data)
1708{
Bob Copeland8784d2e2009-07-29 17:32:28 -04001709 int i;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001710 struct ath5k_softc *sc = (void *)data;
1711
Bob Copeland8784d2e2009-07-29 17:32:28 -04001712 for (i=0; i < AR5K_NUM_TX_QUEUES; i++)
1713 if (sc->txqs[i].setup && (sc->ah->ah_txq_isr & BIT(i)))
1714 ath5k_tx_processq(sc, &sc->txqs[i]);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001715}
1716
1717
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001718/*****************\
1719* Beacon handling *
1720\*****************/
1721
1722/*
1723 * Setup the beacon frame for transmit.
1724 */
1725static int
Johannes Berge039fa42008-05-15 12:55:29 +02001726ath5k_beacon_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001727{
1728 struct sk_buff *skb = bf->skb;
Johannes Berga888d522008-05-26 16:43:39 +02001729 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001730 struct ath5k_hw *ah = sc->ah;
1731 struct ath5k_desc *ds;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001732 int ret = 0;
1733 u8 antenna;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001734 u32 flags;
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001735 const int padsize = 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001736
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001737 bf->skbaddr = dma_map_single(sc->dev, skb->data, skb->len,
1738 DMA_TO_DEVICE);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001739 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "skb %p [data %p len %u] "
1740 "skbaddr %llx\n", skb, skb->data, skb->len,
1741 (unsigned long long)bf->skbaddr);
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001742
1743 if (dma_mapping_error(sc->dev, bf->skbaddr)) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001744 ATH5K_ERR(sc, "beacon DMA mapping failed\n");
1745 return -EIO;
1746 }
1747
1748 ds = bf->desc;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001749 antenna = ah->ah_tx_ant;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001750
1751 flags = AR5K_TXDESC_NOACK;
Johannes Berg05c914f2008-09-11 00:01:58 +02001752 if (sc->opmode == NL80211_IFTYPE_ADHOC && ath5k_hw_hasveol(ah)) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001753 ds->ds_link = bf->daddr; /* self-linked */
1754 flags |= AR5K_TXDESC_VEOL;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001755 } else
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001756 ds->ds_link = 0;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001757
1758 /*
1759 * If we use multiple antennas on AP and use
1760 * the Sectored AP scenario, switch antenna every
1761 * 4 beacons to make sure everybody hears our AP.
1762 * When a client tries to associate, hw will keep
1763 * track of the tx antenna to be used for this client
1764 * automaticaly, based on ACKed packets.
1765 *
1766 * Note: AP still listens and transmits RTS on the
1767 * default antenna which is supposed to be an omni.
1768 *
1769 * Note2: On sectored scenarios it's possible to have
Bob Copelanda180a132010-08-15 13:03:12 -04001770 * multiple antennas (1 omni -- the default -- and 14
1771 * sectors), so if we choose to actually support this
1772 * mode, we need to allow the user to set how many antennas
1773 * we have and tweak the code below to send beacons
1774 * on all of them.
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001775 */
1776 if (ah->ah_ant_mode == AR5K_ANTMODE_SECTOR_AP)
1777 antenna = sc->bsent & 4 ? 2 : 1;
1778
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001779
Nick Kossifidis8f655dd2009-03-15 22:20:35 +02001780 /* FIXME: If we are in g mode and rate is a CCK rate
1781 * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta
1782 * from tx power (value is in dB units already) */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001783 ds->ds_data = bf->skbaddr;
Bruno Randolf281c56d2008-02-05 18:44:55 +09001784 ret = ah->ah_setup_tx_desc(ah, ds, skb->len,
Benoit Papillault8127fbd2010-02-27 23:05:26 +01001785 ieee80211_get_hdrlen_from_skb(skb), padsize,
Luis R. Rodriguez400ec452008-02-03 21:51:49 -05001786 AR5K_PKT_TYPE_BEACON, (sc->power_level * 2),
Johannes Berge039fa42008-05-15 12:55:29 +02001787 ieee80211_get_tx_rate(sc->hw, info)->hw_value,
Johannes Berg2e92e6f2008-05-15 12:55:27 +02001788 1, AR5K_TXKEYIX_INVALID,
Luis R. Rodriguez400ec452008-02-03 21:51:49 -05001789 antenna, flags, 0, 0);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001790 if (ret)
1791 goto err_unmap;
1792
1793 return 0;
1794err_unmap:
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01001795 dma_unmap_single(sc->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001796 return ret;
1797}
1798
1799/*
Bob Copeland8a63fac2010-09-17 12:45:07 +09001800 * Updates the beacon that is sent by ath5k_beacon_send. For adhoc,
1801 * this is called only once at config_bss time, for AP we do it every
1802 * SWBA interrupt so that the TIM will reflect buffered frames.
1803 *
1804 * Called with the beacon lock.
1805 */
1806static int
1807ath5k_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
1808{
1809 int ret;
1810 struct ath5k_softc *sc = hw->priv;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001811 struct ath5k_vif *avf = (void *)vif->drv_priv;
Bob Copeland8a63fac2010-09-17 12:45:07 +09001812 struct sk_buff *skb;
1813
1814 if (WARN_ON(!vif)) {
1815 ret = -EINVAL;
1816 goto out;
1817 }
1818
1819 skb = ieee80211_beacon_get(hw, vif);
1820
1821 if (!skb) {
1822 ret = -ENOMEM;
1823 goto out;
1824 }
1825
1826 ath5k_debug_dump_skb(sc, skb, "BC ", 1);
1827
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001828 ath5k_txbuf_free_skb(sc, avf->bbuf);
1829 avf->bbuf->skb = skb;
1830 ret = ath5k_beacon_setup(sc, avf->bbuf);
Bob Copeland8a63fac2010-09-17 12:45:07 +09001831 if (ret)
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001832 avf->bbuf->skb = NULL;
Bob Copeland8a63fac2010-09-17 12:45:07 +09001833out:
1834 return ret;
1835}
1836
1837/*
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001838 * Transmit a beacon frame at SWBA. Dynamic updates to the
1839 * frame contents are done as needed and the slot time is
1840 * also adjusted based on current state.
1841 *
Bob Copeland5faaff72010-07-13 11:32:40 -04001842 * This is called from software irq context (beacontq tasklets)
1843 * or user context from ath5k_beacon_config.
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001844 */
1845static void
1846ath5k_beacon_send(struct ath5k_softc *sc)
1847{
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001848 struct ath5k_hw *ah = sc->ah;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001849 struct ieee80211_vif *vif;
1850 struct ath5k_vif *avf;
1851 struct ath5k_buf *bf;
Bob Copelandcec8db22009-07-04 12:59:51 -04001852 struct sk_buff *skb;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001853
Bruno Randolfbe9b7252008-01-23 10:27:51 +09001854 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "in beacon_send\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001855
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001856 /*
1857 * Check if the previous beacon has gone out. If
Bob Copelanda180a132010-08-15 13:03:12 -04001858 * not, don't don't try to post another: skip this
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001859 * period and wait for the next. Missed beacons
1860 * indicate a problem and should not occur. If we
1861 * miss too many consecutive beacons reset the device.
1862 */
1863 if (unlikely(ath5k_hw_num_tx_pending(ah, sc->bhalq) != 0)) {
1864 sc->bmisscount++;
Bruno Randolfbe9b7252008-01-23 10:27:51 +09001865 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001866 "missed %u consecutive beacons\n", sc->bmisscount);
Nick Kossifidis428cbd42009-04-30 15:55:47 -04001867 if (sc->bmisscount > 10) { /* NB: 10 is a guess */
Bruno Randolfbe9b7252008-01-23 10:27:51 +09001868 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001869 "stuck beacon time (%u missed)\n",
1870 sc->bmisscount);
Bruno Randolf8d67a032010-06-16 19:11:12 +09001871 ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
1872 "stuck beacon, resetting\n");
Bob Copeland5faaff72010-07-13 11:32:40 -04001873 ieee80211_queue_work(sc->hw, &sc->reset_work);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001874 }
1875 return;
1876 }
1877 if (unlikely(sc->bmisscount != 0)) {
Bruno Randolfbe9b7252008-01-23 10:27:51 +09001878 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001879 "resume beacon xmit after %u misses\n",
1880 sc->bmisscount);
1881 sc->bmisscount = 0;
1882 }
1883
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001884 if (sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) {
1885 u64 tsf = ath5k_hw_get_tsf64(ah);
1886 u32 tsftu = TSF_TO_TU(tsf);
1887 int slot = ((tsftu % sc->bintval) * ATH_BCBUF) / sc->bintval;
1888 vif = sc->bslot[(slot + 1) % ATH_BCBUF];
1889 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
1890 "tsf %llx tsftu %x intval %u slot %u vif %p\n",
1891 (unsigned long long)tsf, tsftu, sc->bintval, slot, vif);
1892 } else /* only one interface */
1893 vif = sc->bslot[0];
1894
1895 if (!vif)
1896 return;
1897
1898 avf = (void *)vif->drv_priv;
1899 bf = avf->bbuf;
1900 if (unlikely(bf->skb == NULL || sc->opmode == NL80211_IFTYPE_STATION ||
1901 sc->opmode == NL80211_IFTYPE_MONITOR)) {
1902 ATH5K_WARN(sc, "bf=%p bf_skb=%p\n", bf, bf ? bf->skb : NULL);
1903 return;
1904 }
1905
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001906 /*
1907 * Stop any current dma and put the new frame on the queue.
1908 * This should never fail since we check above that no frames
1909 * are still pending on the queue.
1910 */
Nick Kossifidis14fae2d2010-11-23 20:55:17 +02001911 if (unlikely(ath5k_hw_stop_beacon_queue(ah, sc->bhalq))) {
Nick Kossifidis428cbd42009-04-30 15:55:47 -04001912 ATH5K_WARN(sc, "beacon queue %u didn't start/stop ?\n", sc->bhalq);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001913 /* NB: hw still stops DMA, so proceed */
1914 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001915
Bob Copeland1071db82009-05-18 10:59:52 -04001916 /* refresh the beacon for AP mode */
1917 if (sc->opmode == NL80211_IFTYPE_AP)
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001918 ath5k_beacon_update(sc->hw, vif);
Bob Copeland1071db82009-05-18 10:59:52 -04001919
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001920 ath5k_hw_set_txdp(ah, sc->bhalq, bf->daddr);
1921 ath5k_hw_start_tx_dma(ah, sc->bhalq);
Bruno Randolfbe9b7252008-01-23 10:27:51 +09001922 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "TXDP[%u] = %llx (%p)\n",
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001923 sc->bhalq, (unsigned long long)bf->daddr, bf->desc);
1924
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001925 skb = ieee80211_get_buffered_bc(sc->hw, vif);
Bob Copelandcec8db22009-07-04 12:59:51 -04001926 while (skb) {
1927 ath5k_tx_queue(sc->hw, skb, sc->cabq);
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001928 skb = ieee80211_get_buffered_bc(sc->hw, vif);
Bob Copelandcec8db22009-07-04 12:59:51 -04001929 }
1930
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001931 sc->bsent++;
1932}
1933
Bruno Randolf9804b982008-01-19 18:17:59 +09001934/**
1935 * ath5k_beacon_update_timers - update beacon timers
1936 *
1937 * @sc: struct ath5k_softc pointer we are operating on
1938 * @bc_tsf: the timestamp of the beacon. 0 to reset the TSF. -1 to perform a
1939 * beacon timer update based on the current HW TSF.
1940 *
1941 * Calculate the next target beacon transmit time (TBTT) based on the timestamp
1942 * of a received beacon or the current local hardware TSF and write it to the
1943 * beacon timer registers.
1944 *
1945 * This is called in a variety of situations, e.g. when a beacon is received,
Bruno Randolf6ba81c22008-03-05 18:36:26 +09001946 * when a TSF update has been detected, but also when an new IBSS is created or
Bruno Randolf9804b982008-01-19 18:17:59 +09001947 * when we otherwise know we have to update the timers, but we keep it in this
1948 * function to have it all together in one place.
1949 */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001950static void
Bruno Randolf9804b982008-01-19 18:17:59 +09001951ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001952{
1953 struct ath5k_hw *ah = sc->ah;
Bruno Randolf9804b982008-01-19 18:17:59 +09001954 u32 nexttbtt, intval, hw_tu, bc_tu;
1955 u64 hw_tsf;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001956
1957 intval = sc->bintval & AR5K_BEACON_PERIOD;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07001958 if (sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) {
1959 intval /= ATH_BCBUF; /* staggered multi-bss beacons */
1960 if (intval < 15)
1961 ATH5K_WARN(sc, "intval %u is too low, min 15\n",
1962 intval);
1963 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001964 if (WARN_ON(!intval))
1965 return;
1966
Bruno Randolf9804b982008-01-19 18:17:59 +09001967 /* beacon TSF converted to TU */
1968 bc_tu = TSF_TO_TU(bc_tsf);
1969
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001970 /* current TSF converted to TU */
Bruno Randolf9804b982008-01-19 18:17:59 +09001971 hw_tsf = ath5k_hw_get_tsf64(ah);
1972 hw_tu = TSF_TO_TU(hw_tsf);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001973
Bruno Randolf11f21df2010-09-27 12:22:26 +09001974#define FUDGE AR5K_TUNE_SW_BEACON_RESP + 3
1975 /* We use FUDGE to make sure the next TBTT is ahead of the current TU.
1976 * Since we later substract AR5K_TUNE_SW_BEACON_RESP (10) in the timer
1977 * configuration we need to make sure it is bigger than that. */
1978
Bruno Randolf9804b982008-01-19 18:17:59 +09001979 if (bc_tsf == -1) {
1980 /*
1981 * no beacons received, called internally.
1982 * just need to refresh timers based on HW TSF.
1983 */
1984 nexttbtt = roundup(hw_tu + FUDGE, intval);
1985 } else if (bc_tsf == 0) {
1986 /*
1987 * no beacon received, probably called by ath5k_reset_tsf().
1988 * reset TSF to start with 0.
1989 */
1990 nexttbtt = intval;
1991 intval |= AR5K_BEACON_RESET_TSF;
1992 } else if (bc_tsf > hw_tsf) {
1993 /*
1994 * beacon received, SW merge happend but HW TSF not yet updated.
1995 * not possible to reconfigure timers yet, but next time we
1996 * receive a beacon with the same BSSID, the hardware will
1997 * automatically update the TSF and then we need to reconfigure
1998 * the timers.
1999 */
2000 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
2001 "need to wait for HW TSF sync\n");
2002 return;
2003 } else {
2004 /*
2005 * most important case for beacon synchronization between STA.
2006 *
2007 * beacon received and HW TSF has been already updated by HW.
2008 * update next TBTT based on the TSF of the beacon, but make
2009 * sure it is ahead of our local TSF timer.
2010 */
2011 nexttbtt = bc_tu + roundup(hw_tu + FUDGE - bc_tu, intval);
2012 }
2013#undef FUDGE
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002014
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002015 sc->nexttbtt = nexttbtt;
2016
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002017 intval |= AR5K_BEACON_ENA;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002018 ath5k_hw_init_beacon(ah, nexttbtt, intval);
Bruno Randolf9804b982008-01-19 18:17:59 +09002019
2020 /*
2021 * debugging output last in order to preserve the time critical aspect
2022 * of this function
2023 */
2024 if (bc_tsf == -1)
2025 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
2026 "reconfigured timers based on HW TSF\n");
2027 else if (bc_tsf == 0)
2028 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
2029 "reset HW TSF and timers\n");
2030 else
2031 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
2032 "updated timers based on beacon TSF\n");
2033
2034 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
David Miller04f93a82008-02-15 16:08:59 -08002035 "bc_tsf %llx hw_tsf %llx bc_tu %u hw_tu %u nexttbtt %u\n",
2036 (unsigned long long) bc_tsf,
2037 (unsigned long long) hw_tsf, bc_tu, hw_tu, nexttbtt);
Bruno Randolf9804b982008-01-19 18:17:59 +09002038 ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "intval %u %s %s\n",
2039 intval & AR5K_BEACON_PERIOD,
2040 intval & AR5K_BEACON_ENA ? "AR5K_BEACON_ENA" : "",
2041 intval & AR5K_BEACON_RESET_TSF ? "AR5K_BEACON_RESET_TSF" : "");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002042}
2043
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002044/**
2045 * ath5k_beacon_config - Configure the beacon queues and interrupts
2046 *
2047 * @sc: struct ath5k_softc pointer we are operating on
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002048 *
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002049 * In IBSS mode we use a self-linked tx descriptor if possible. We enable SWBA
Bruno Randolf6ba81c22008-03-05 18:36:26 +09002050 * interrupts to detect TSF updates only.
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002051 */
2052static void
2053ath5k_beacon_config(struct ath5k_softc *sc)
2054{
2055 struct ath5k_hw *ah = sc->ah;
Bob Copelandb5f03952009-02-15 12:06:10 -05002056 unsigned long flags;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002057
Bob Copeland21800492009-07-04 12:59:52 -04002058 spin_lock_irqsave(&sc->block, flags);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002059 sc->bmisscount = 0;
Jiri Slabydc1968e2008-07-23 13:17:34 +02002060 sc->imask &= ~(AR5K_INT_BMISS | AR5K_INT_SWBA);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002061
Bob Copeland21800492009-07-04 12:59:52 -04002062 if (sc->enable_beacon) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002063 /*
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002064 * In IBSS mode we use a self-linked tx descriptor and let the
2065 * hardware send the beacons automatically. We have to load it
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002066 * only once here.
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002067 * We use the SWBA interrupt only to keep track of the beacon
Bruno Randolf6ba81c22008-03-05 18:36:26 +09002068 * timers in order to detect automatic TSF updates.
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002069 */
2070 ath5k_beaconq_config(sc);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002071
Bruno Randolf036cd1e2008-01-19 18:18:21 +09002072 sc->imask |= AR5K_INT_SWBA;
2073
Jiri Slabyda966bc2008-10-12 22:54:10 +02002074 if (sc->opmode == NL80211_IFTYPE_ADHOC) {
Bob Copeland21800492009-07-04 12:59:52 -04002075 if (ath5k_hw_hasveol(ah))
Jiri Slabyda966bc2008-10-12 22:54:10 +02002076 ath5k_beacon_send(sc);
Jiri Slabyda966bc2008-10-12 22:54:10 +02002077 } else
2078 ath5k_beacon_update_timers(sc, -1);
Bob Copeland21800492009-07-04 12:59:52 -04002079 } else {
Nick Kossifidis14fae2d2010-11-23 20:55:17 +02002080 ath5k_hw_stop_beacon_queue(sc->ah, sc->bhalq);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002081 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002082
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03002083 ath5k_hw_set_imr(ah, sc->imask);
Bob Copeland21800492009-07-04 12:59:52 -04002084 mmiowb();
2085 spin_unlock_irqrestore(&sc->block, flags);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002086}
2087
Nick Kossifidis428cbd42009-04-30 15:55:47 -04002088static void ath5k_tasklet_beacon(unsigned long data)
2089{
2090 struct ath5k_softc *sc = (struct ath5k_softc *) data;
2091
2092 /*
2093 * Software beacon alert--time to send a beacon.
2094 *
2095 * In IBSS mode we use this interrupt just to
2096 * keep track of the next TBTT (target beacon
2097 * transmission time) in order to detect wether
2098 * automatic TSF updates happened.
2099 */
2100 if (sc->opmode == NL80211_IFTYPE_ADHOC) {
2101 /* XXX: only if VEOL suppported */
2102 u64 tsf = ath5k_hw_get_tsf64(sc->ah);
2103 sc->nexttbtt += sc->bintval;
2104 ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
2105 "SWBA nexttbtt: %x hw_tu: %x "
2106 "TSF: %llx\n",
2107 sc->nexttbtt,
2108 TSF_TO_TU(tsf),
2109 (unsigned long long) tsf);
2110 } else {
2111 spin_lock(&sc->block);
2112 ath5k_beacon_send(sc);
2113 spin_unlock(&sc->block);
2114 }
2115}
2116
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002117
2118/********************\
2119* Interrupt handling *
2120\********************/
2121
Bruno Randolf6a8a3f62010-03-25 14:49:19 +09002122static void
2123ath5k_intr_calibration_poll(struct ath5k_hw *ah)
2124{
Bruno Randolf2111ac02010-04-02 18:44:08 +09002125 if (time_is_before_eq_jiffies(ah->ah_cal_next_ani) &&
2126 !(ah->ah_cal_mask & AR5K_CALIBRATION_FULL)) {
2127 /* run ANI only when full calibration is not active */
2128 ah->ah_cal_next_ani = jiffies +
2129 msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_ANI);
2130 tasklet_schedule(&ah->ah_sc->ani_tasklet);
2131
2132 } else if (time_is_before_eq_jiffies(ah->ah_cal_next_full)) {
Bruno Randolf6a8a3f62010-03-25 14:49:19 +09002133 ah->ah_cal_next_full = jiffies +
2134 msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_FULL);
2135 tasklet_schedule(&ah->ah_sc->calib);
2136 }
2137 /* we could use SWI to generate enough interrupts to meet our
2138 * calibration interval requirements, if necessary:
2139 * AR5K_REG_ENABLE_BITS(ah, AR5K_CR, AR5K_CR_SWI); */
2140}
2141
Felix Fietkau132b1c32010-12-02 10:26:56 +01002142irqreturn_t
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002143ath5k_intr(int irq, void *dev_id)
2144{
2145 struct ath5k_softc *sc = dev_id;
2146 struct ath5k_hw *ah = sc->ah;
2147 enum ath5k_int status;
2148 unsigned int counter = 1000;
2149
2150 if (unlikely(test_bit(ATH_STAT_INVALID, sc->status) ||
2151 !ath5k_hw_is_intr_pending(ah)))
2152 return IRQ_NONE;
2153
2154 do {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002155 ath5k_hw_get_isr(ah, &status); /* NB: clears IRQ too */
2156 ATH5K_DBG(sc, ATH5K_DEBUG_INTR, "status 0x%x/0x%x\n",
2157 status, sc->imask);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002158 if (unlikely(status & AR5K_INT_FATAL)) {
2159 /*
2160 * Fatal errors are unrecoverable.
2161 * Typically these are caused by DMA errors.
2162 */
Bruno Randolf8d67a032010-06-16 19:11:12 +09002163 ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
2164 "fatal int, resetting\n");
Bob Copeland5faaff72010-07-13 11:32:40 -04002165 ieee80211_queue_work(sc->hw, &sc->reset_work);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002166 } else if (unlikely(status & AR5K_INT_RXORN)) {
Bruno Randolf87d77c42010-04-12 16:38:52 +09002167 /*
2168 * Receive buffers are full. Either the bus is busy or
2169 * the CPU is not fast enough to process all received
2170 * frames.
2171 * Older chipsets need a reset to come out of this
2172 * condition, but we treat it as RX for newer chips.
2173 * We don't know exactly which versions need a reset -
2174 * this guess is copied from the HAL.
2175 */
2176 sc->stats.rxorn_intr++;
Bruno Randolf8d67a032010-06-16 19:11:12 +09002177 if (ah->ah_mac_srev < AR5K_SREV_AR5212) {
2178 ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
2179 "rx overrun, resetting\n");
Bob Copeland5faaff72010-07-13 11:32:40 -04002180 ieee80211_queue_work(sc->hw, &sc->reset_work);
Bruno Randolf8d67a032010-06-16 19:11:12 +09002181 }
Bruno Randolf87d77c42010-04-12 16:38:52 +09002182 else
2183 tasklet_schedule(&sc->rxtq);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002184 } else {
2185 if (status & AR5K_INT_SWBA) {
Bob Copeland56d2ac72009-04-15 07:57:33 -04002186 tasklet_hi_schedule(&sc->beacontq);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002187 }
2188 if (status & AR5K_INT_RXEOL) {
2189 /*
2190 * NB: the hardware should re-read the link when
2191 * RXE bit is written, but it doesn't work at
2192 * least on older hardware revs.
2193 */
Bruno Randolfb3f194e2010-07-14 10:53:29 +09002194 sc->stats.rxeol_intr++;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002195 }
2196 if (status & AR5K_INT_TXURN) {
2197 /* bump tx trigger level */
2198 ath5k_hw_update_tx_triglevel(ah, true);
2199 }
Nick Kossifidis4c674c62008-10-26 20:40:25 +02002200 if (status & (AR5K_INT_RXOK | AR5K_INT_RXERR))
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002201 tasklet_schedule(&sc->rxtq);
Nick Kossifidis4c674c62008-10-26 20:40:25 +02002202 if (status & (AR5K_INT_TXOK | AR5K_INT_TXDESC
2203 | AR5K_INT_TXERR | AR5K_INT_TXEOL))
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002204 tasklet_schedule(&sc->txtq);
2205 if (status & AR5K_INT_BMISS) {
Nick Kossifidis1e3e6e82009-02-09 06:15:42 +02002206 /* TODO */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002207 }
2208 if (status & AR5K_INT_MIB) {
Bruno Randolf2111ac02010-04-02 18:44:08 +09002209 sc->stats.mib_intr++;
Bruno Randolf495391d2010-03-25 14:49:36 +09002210 ath5k_hw_update_mib_counters(ah);
Bruno Randolf2111ac02010-04-02 18:44:08 +09002211 ath5k_ani_mib_intr(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002212 }
Tobias Doerffele6a3b612009-06-09 17:33:27 +02002213 if (status & AR5K_INT_GPIO)
Tobias Doerffele6a3b612009-06-09 17:33:27 +02002214 tasklet_schedule(&sc->rf_kill.toggleq);
Bob Copelanda6ae0712009-06-09 23:43:11 -04002215
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002216 }
Bob Copeland2516baa2009-04-27 22:18:10 -04002217 } while (ath5k_hw_is_intr_pending(ah) && --counter > 0);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002218
2219 if (unlikely(!counter))
2220 ATH5K_WARN(sc, "too many interrupts, giving up for now\n");
2221
Bruno Randolf6a8a3f62010-03-25 14:49:19 +09002222 ath5k_intr_calibration_poll(ah);
Nick Kossifidis6e220662009-08-10 03:31:31 +03002223
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002224 return IRQ_HANDLED;
2225}
2226
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002227/*
2228 * Periodically recalibrate the PHY to account
2229 * for temperature/environment changes.
2230 */
2231static void
Nick Kossifidis6e220662009-08-10 03:31:31 +03002232ath5k_tasklet_calibrate(unsigned long data)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002233{
2234 struct ath5k_softc *sc = (void *)data;
2235 struct ath5k_hw *ah = sc->ah;
2236
Nick Kossifidis6e220662009-08-10 03:31:31 +03002237 /* Only full calibration for now */
Bruno Randolfe65e1d72010-03-25 14:49:09 +09002238 ah->ah_cal_mask |= AR5K_CALIBRATION_FULL;
Nick Kossifidis6e220662009-08-10 03:31:31 +03002239
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002240 ATH5K_DBG(sc, ATH5K_DEBUG_CALIBRATE, "channel %u/%x\n",
Luis R. Rodriguez400ec452008-02-03 21:51:49 -05002241 ieee80211_frequency_to_channel(sc->curchan->center_freq),
2242 sc->curchan->hw_value);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002243
Nick Kossifidis6f3b4142009-02-09 06:03:41 +02002244 if (ath5k_hw_gainf_calibrate(ah) == AR5K_RFGAIN_NEED_CHANGE) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002245 /*
2246 * Rfgain is out of bounds, reset the chip
2247 * to load new gain values.
2248 */
2249 ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "calibration, resetting\n");
Bob Copeland5faaff72010-07-13 11:32:40 -04002250 ieee80211_queue_work(sc->hw, &sc->reset_work);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002251 }
2252 if (ath5k_hw_phy_calibrate(ah, sc->curchan))
2253 ATH5K_ERR(sc, "calibration of channel %u failed\n",
Luis R. Rodriguez400ec452008-02-03 21:51:49 -05002254 ieee80211_frequency_to_channel(
2255 sc->curchan->center_freq));
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002256
Bruno Randolf0e8e02d2010-05-19 10:31:05 +09002257 /* Noise floor calibration interrupts rx/tx path while I/Q calibration
Bruno Randolf651d9372010-09-17 11:36:46 +09002258 * doesn't.
2259 * TODO: We should stop TX here, so that it doesn't interfere.
2260 * Note that stopping the queues is not enough to stop TX! */
Bruno Randolfafe86282010-05-19 10:31:10 +09002261 if (time_is_before_eq_jiffies(ah->ah_cal_next_nf)) {
2262 ah->ah_cal_next_nf = jiffies +
2263 msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_NF);
Bruno Randolfafe86282010-05-19 10:31:10 +09002264 ath5k_hw_update_noise_floor(ah);
Bruno Randolfafe86282010-05-19 10:31:10 +09002265 }
Nick Kossifidis6e220662009-08-10 03:31:31 +03002266
Bruno Randolfe65e1d72010-03-25 14:49:09 +09002267 ah->ah_cal_mask &= ~AR5K_CALIBRATION_FULL;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002268}
2269
2270
Bruno Randolf2111ac02010-04-02 18:44:08 +09002271static void
2272ath5k_tasklet_ani(unsigned long data)
2273{
2274 struct ath5k_softc *sc = (void *)data;
2275 struct ath5k_hw *ah = sc->ah;
2276
2277 ah->ah_cal_mask |= AR5K_CALIBRATION_ANI;
2278 ath5k_ani_calibration(ah);
2279 ah->ah_cal_mask &= ~AR5K_CALIBRATION_ANI;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002280}
2281
2282
Bruno Randolf4edd7612010-09-17 11:36:56 +09002283static void
2284ath5k_tx_complete_poll_work(struct work_struct *work)
2285{
2286 struct ath5k_softc *sc = container_of(work, struct ath5k_softc,
2287 tx_complete_work.work);
2288 struct ath5k_txq *txq;
2289 int i;
2290 bool needreset = false;
2291
2292 for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) {
2293 if (sc->txqs[i].setup) {
2294 txq = &sc->txqs[i];
2295 spin_lock_bh(&txq->lock);
Bruno Randolf23413292010-09-17 11:37:07 +09002296 if (txq->txq_len > 1) {
Bruno Randolf4edd7612010-09-17 11:36:56 +09002297 if (txq->txq_poll_mark) {
2298 ATH5K_DBG(sc, ATH5K_DEBUG_XMIT,
2299 "TX queue stuck %d\n",
2300 txq->qnum);
2301 needreset = true;
Bruno Randolf923e5b32010-09-17 11:37:02 +09002302 txq->txq_stuck++;
Bruno Randolf4edd7612010-09-17 11:36:56 +09002303 spin_unlock_bh(&txq->lock);
2304 break;
2305 } else {
2306 txq->txq_poll_mark = true;
2307 }
2308 }
2309 spin_unlock_bh(&txq->lock);
2310 }
2311 }
2312
2313 if (needreset) {
2314 ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
2315 "TX queues stuck, resetting\n");
Nick Kossifidis8aec7af2010-11-23 21:39:28 +02002316 ath5k_reset(sc, NULL, true);
Bruno Randolf4edd7612010-09-17 11:36:56 +09002317 }
2318
2319 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work,
2320 msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT));
2321}
2322
2323
Bob Copeland8a63fac2010-09-17 12:45:07 +09002324/*************************\
2325* Initialization routines *
2326\*************************/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002327
Felix Fietkau132b1c32010-12-02 10:26:56 +01002328int
2329ath5k_init_softc(struct ath5k_softc *sc, const struct ath_bus_ops *bus_ops)
2330{
2331 struct ieee80211_hw *hw = sc->hw;
2332 struct ath_common *common;
2333 int ret;
2334 int csz;
2335
2336 /* Initialize driver private data */
2337 SET_IEEE80211_DEV(hw, sc->dev);
2338 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
2339 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
2340 IEEE80211_HW_SIGNAL_DBM;
2341
2342 hw->wiphy->interface_modes =
2343 BIT(NL80211_IFTYPE_AP) |
2344 BIT(NL80211_IFTYPE_STATION) |
2345 BIT(NL80211_IFTYPE_ADHOC) |
2346 BIT(NL80211_IFTYPE_MESH_POINT);
2347
2348 hw->extra_tx_headroom = 2;
2349 hw->channel_change_time = 5000;
2350
2351 /*
2352 * Mark the device as detached to avoid processing
2353 * interrupts until setup is complete.
2354 */
2355 __set_bit(ATH_STAT_INVALID, sc->status);
2356
2357 sc->opmode = NL80211_IFTYPE_STATION;
2358 sc->bintval = 1000;
2359 mutex_init(&sc->lock);
2360 spin_lock_init(&sc->rxbuflock);
2361 spin_lock_init(&sc->txbuflock);
2362 spin_lock_init(&sc->block);
2363
2364
2365 /* Setup interrupt handler */
2366 ret = request_irq(sc->irq, ath5k_intr, IRQF_SHARED, "ath", sc);
2367 if (ret) {
2368 ATH5K_ERR(sc, "request_irq failed\n");
2369 goto err;
2370 }
2371
2372 /* If we passed the test, malloc an ath5k_hw struct */
2373 sc->ah = kzalloc(sizeof(struct ath5k_hw), GFP_KERNEL);
2374 if (!sc->ah) {
2375 ret = -ENOMEM;
2376 ATH5K_ERR(sc, "out of memory\n");
2377 goto err_irq;
2378 }
2379
2380 sc->ah->ah_sc = sc;
2381 sc->ah->ah_iobase = sc->iobase;
2382 common = ath5k_hw_common(sc->ah);
2383 common->ops = &ath5k_common_ops;
2384 common->bus_ops = bus_ops;
2385 common->ah = sc->ah;
2386 common->hw = hw;
2387 common->priv = sc;
2388
2389 /*
2390 * Cache line size is used to size and align various
2391 * structures used to communicate with the hardware.
2392 */
2393 ath5k_read_cachesize(common, &csz);
2394 common->cachelsz = csz << 2; /* convert to bytes */
2395
2396 spin_lock_init(&common->cc_lock);
2397
2398 /* Initialize device */
2399 ret = ath5k_hw_init(sc);
2400 if (ret)
2401 goto err_free_ah;
2402
2403 /* set up multi-rate retry capabilities */
2404 if (sc->ah->ah_version == AR5K_AR5212) {
2405 hw->max_rates = 4;
2406 hw->max_rate_tries = 11;
2407 }
2408
2409 hw->vif_data_size = sizeof(struct ath5k_vif);
2410
2411 /* Finish private driver data initialization */
2412 ret = ath5k_init(hw);
2413 if (ret)
2414 goto err_ah;
2415
2416 ATH5K_INFO(sc, "Atheros AR%s chip found (MAC: 0x%x, PHY: 0x%x)\n",
2417 ath5k_chip_name(AR5K_VERSION_MAC, sc->ah->ah_mac_srev),
2418 sc->ah->ah_mac_srev,
2419 sc->ah->ah_phy_revision);
2420
2421 if (!sc->ah->ah_single_chip) {
2422 /* Single chip radio (!RF5111) */
2423 if (sc->ah->ah_radio_5ghz_revision &&
2424 !sc->ah->ah_radio_2ghz_revision) {
2425 /* No 5GHz support -> report 2GHz radio */
2426 if (!test_bit(AR5K_MODE_11A,
2427 sc->ah->ah_capabilities.cap_mode)) {
2428 ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n",
2429 ath5k_chip_name(AR5K_VERSION_RAD,
2430 sc->ah->ah_radio_5ghz_revision),
2431 sc->ah->ah_radio_5ghz_revision);
2432 /* No 2GHz support (5110 and some
2433 * 5Ghz only cards) -> report 5Ghz radio */
2434 } else if (!test_bit(AR5K_MODE_11B,
2435 sc->ah->ah_capabilities.cap_mode)) {
2436 ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n",
2437 ath5k_chip_name(AR5K_VERSION_RAD,
2438 sc->ah->ah_radio_5ghz_revision),
2439 sc->ah->ah_radio_5ghz_revision);
2440 /* Multiband radio */
2441 } else {
2442 ATH5K_INFO(sc, "RF%s multiband radio found"
2443 " (0x%x)\n",
2444 ath5k_chip_name(AR5K_VERSION_RAD,
2445 sc->ah->ah_radio_5ghz_revision),
2446 sc->ah->ah_radio_5ghz_revision);
2447 }
2448 }
2449 /* Multi chip radio (RF5111 - RF2111) ->
2450 * report both 2GHz/5GHz radios */
2451 else if (sc->ah->ah_radio_5ghz_revision &&
2452 sc->ah->ah_radio_2ghz_revision){
2453 ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n",
2454 ath5k_chip_name(AR5K_VERSION_RAD,
2455 sc->ah->ah_radio_5ghz_revision),
2456 sc->ah->ah_radio_5ghz_revision);
2457 ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n",
2458 ath5k_chip_name(AR5K_VERSION_RAD,
2459 sc->ah->ah_radio_2ghz_revision),
2460 sc->ah->ah_radio_2ghz_revision);
2461 }
2462 }
2463
2464 ath5k_debug_init_device(sc);
2465
2466 /* ready to process interrupts */
2467 __clear_bit(ATH_STAT_INVALID, sc->status);
2468
2469 return 0;
2470err_ah:
2471 ath5k_hw_deinit(sc->ah);
2472err_free_ah:
2473 kfree(sc->ah);
2474err_irq:
2475 free_irq(sc->irq, sc);
2476err:
2477 return ret;
2478}
2479
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002480static int
Bob Copeland8a63fac2010-09-17 12:45:07 +09002481ath5k_stop_locked(struct ath5k_softc *sc)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002482{
Bob Copeland8a63fac2010-09-17 12:45:07 +09002483 struct ath5k_hw *ah = sc->ah;
Bob Copelandcec8db22009-07-04 12:59:51 -04002484
Bob Copeland8a63fac2010-09-17 12:45:07 +09002485 ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "invalid %u\n",
2486 test_bit(ATH_STAT_INVALID, sc->status));
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002487
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002488 /*
Bob Copeland8a63fac2010-09-17 12:45:07 +09002489 * Shutdown the hardware and driver:
2490 * stop output from above
2491 * disable interrupts
2492 * turn off timers
2493 * turn off the radio
2494 * clear transmit machinery
2495 * clear receive machinery
2496 * drain and release tx queues
2497 * reclaim beacon resources
2498 * power down hardware
2499 *
2500 * Note that some of this work is not possible if the
2501 * hardware is gone (invalid).
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002502 */
Bob Copeland8a63fac2010-09-17 12:45:07 +09002503 ieee80211_stop_queues(sc->hw);
2504
2505 if (!test_bit(ATH_STAT_INVALID, sc->status)) {
2506 ath5k_led_off(sc);
2507 ath5k_hw_set_imr(ah, 0);
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01002508 synchronize_irq(sc->irq);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002509 ath5k_rx_stop(sc);
Nick Kossifidis80dac9ee2010-11-23 20:45:38 +02002510 ath5k_hw_dma_stop(ah);
2511 ath5k_drain_tx_buffs(sc);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002512 ath5k_hw_phy_disable(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002513 }
2514
Bob Copeland8a63fac2010-09-17 12:45:07 +09002515 return 0;
2516}
2517
2518static int
Felix Fietkau132b1c32010-12-02 10:26:56 +01002519ath5k_init_hw(struct ath5k_softc *sc)
Bob Copeland8a63fac2010-09-17 12:45:07 +09002520{
2521 struct ath5k_hw *ah = sc->ah;
2522 struct ath_common *common = ath5k_hw_common(ah);
2523 int ret, i;
2524
2525 mutex_lock(&sc->lock);
2526
2527 ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "mode %d\n", sc->opmode);
2528
2529 /*
2530 * Stop anything previously setup. This is safe
2531 * no matter this is the first time through or not.
2532 */
2533 ath5k_stop_locked(sc);
2534
2535 /*
2536 * The basic interface to setting the hardware in a good
2537 * state is ``reset''. On return the hardware is known to
2538 * be powered up and with interrupts disabled. This must
2539 * be followed by initialization of the appropriate bits
2540 * and then setup of the interrupt mask.
2541 */
2542 sc->curchan = sc->hw->conf.channel;
2543 sc->curband = &sc->sbands[sc->curchan->band];
2544 sc->imask = AR5K_INT_RXOK | AR5K_INT_RXERR | AR5K_INT_RXEOL |
2545 AR5K_INT_RXORN | AR5K_INT_TXDESC | AR5K_INT_TXEOL |
2546 AR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB;
2547
Nick Kossifidis8aec7af2010-11-23 21:39:28 +02002548 ret = ath5k_reset(sc, NULL, false);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002549 if (ret)
2550 goto done;
2551
2552 ath5k_rfkill_hw_start(ah);
2553
2554 /*
2555 * Reset the key cache since some parts do not reset the
2556 * contents on initial power up or resume from suspend.
2557 */
2558 for (i = 0; i < common->keymax; i++)
2559 ath_hw_keyreset(common, (u16) i);
2560
Nick Kossifidis61cde032010-11-23 21:12:23 +02002561 /* Use higher rates for acks instead of base
2562 * rate */
2563 ah->ah_ack_bitrate_high = true;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002564
2565 for (i = 0; i < ARRAY_SIZE(sc->bslot); i++)
2566 sc->bslot[i] = NULL;
2567
Bob Copeland8a63fac2010-09-17 12:45:07 +09002568 ret = 0;
2569done:
2570 mmiowb();
2571 mutex_unlock(&sc->lock);
Bruno Randolf4edd7612010-09-17 11:36:56 +09002572
2573 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work,
2574 msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT));
2575
Bob Copeland8a63fac2010-09-17 12:45:07 +09002576 return ret;
2577}
2578
2579static void stop_tasklets(struct ath5k_softc *sc)
2580{
2581 tasklet_kill(&sc->rxtq);
2582 tasklet_kill(&sc->txtq);
2583 tasklet_kill(&sc->calib);
2584 tasklet_kill(&sc->beacontq);
2585 tasklet_kill(&sc->ani_tasklet);
2586}
2587
2588/*
2589 * Stop the device, grabbing the top-level lock to protect
2590 * against concurrent entry through ath5k_init (which can happen
2591 * if another thread does a system call and the thread doing the
2592 * stop is preempted).
2593 */
2594static int
2595ath5k_stop_hw(struct ath5k_softc *sc)
2596{
2597 int ret;
2598
2599 mutex_lock(&sc->lock);
2600 ret = ath5k_stop_locked(sc);
2601 if (ret == 0 && !test_bit(ATH_STAT_INVALID, sc->status)) {
2602 /*
2603 * Don't set the card in full sleep mode!
2604 *
2605 * a) When the device is in this state it must be carefully
2606 * woken up or references to registers in the PCI clock
2607 * domain may freeze the bus (and system). This varies
2608 * by chip and is mostly an issue with newer parts
2609 * (madwifi sources mentioned srev >= 0x78) that go to
2610 * sleep more quickly.
2611 *
2612 * b) On older chips full sleep results a weird behaviour
2613 * during wakeup. I tested various cards with srev < 0x78
2614 * and they don't wake up after module reload, a second
2615 * module reload is needed to bring the card up again.
2616 *
2617 * Until we figure out what's going on don't enable
2618 * full chip reset on any chip (this is what Legacy HAL
2619 * and Sam's HAL do anyway). Instead Perform a full reset
2620 * on the device (same as initial state after attach) and
2621 * leave it idle (keep MAC/BB on warm reset) */
2622 ret = ath5k_hw_on_hold(sc->ah);
2623
2624 ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
2625 "putting device to sleep\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002626 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002627
Bob Copeland8a63fac2010-09-17 12:45:07 +09002628 mmiowb();
2629 mutex_unlock(&sc->lock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002630
Bob Copeland8a63fac2010-09-17 12:45:07 +09002631 stop_tasklets(sc);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002632
Bruno Randolf4edd7612010-09-17 11:36:56 +09002633 cancel_delayed_work_sync(&sc->tx_complete_work);
2634
Bob Copeland8a63fac2010-09-17 12:45:07 +09002635 ath5k_rfkill_hw_stop(sc->ah);
2636
2637 return ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002638}
2639
Bob Copeland209d8892009-05-07 08:09:08 -04002640/*
2641 * Reset the hardware. If chan is not NULL, then also pause rx/tx
2642 * and change to the given channel.
Bob Copeland5faaff72010-07-13 11:32:40 -04002643 *
2644 * This should be called with sc->lock.
Bob Copeland209d8892009-05-07 08:09:08 -04002645 */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002646static int
Nick Kossifidis8aec7af2010-11-23 21:39:28 +02002647ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan,
2648 bool skip_pcu)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002649{
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002650 struct ath5k_hw *ah = sc->ah;
2651 int ret;
2652
2653 ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "resetting\n");
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002654
Bob Copeland450464d2010-07-13 11:32:41 -04002655 ath5k_hw_set_imr(ah, 0);
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01002656 synchronize_irq(sc->irq);
Bob Copeland450464d2010-07-13 11:32:41 -04002657 stop_tasklets(sc);
2658
Bob Copeland209d8892009-05-07 08:09:08 -04002659 if (chan) {
Nick Kossifidis80dac9ee2010-11-23 20:45:38 +02002660 ath5k_drain_tx_buffs(sc);
Bob Copeland209d8892009-05-07 08:09:08 -04002661
2662 sc->curchan = chan;
2663 sc->curband = &sc->sbands[chan->band];
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002664 }
Nick Kossifidis8aec7af2010-11-23 21:39:28 +02002665 ret = ath5k_hw_reset(ah, sc->opmode, sc->curchan, chan != NULL,
2666 skip_pcu);
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002667 if (ret) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002668 ATH5K_ERR(sc, "can't reset hardware (%d)\n", ret);
2669 goto err;
2670 }
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002671
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002672 ret = ath5k_rx_start(sc);
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002673 if (ret) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002674 ATH5K_ERR(sc, "can't start recv logic\n");
2675 goto err;
2676 }
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002677
Bruno Randolf2111ac02010-04-02 18:44:08 +09002678 ath5k_ani_init(ah, ah->ah_sc->ani_state.ani_mode);
2679
Bruno Randolfac559522010-05-19 10:30:55 +09002680 ah->ah_cal_next_full = jiffies;
2681 ah->ah_cal_next_ani = jiffies;
Bruno Randolfafe86282010-05-19 10:31:10 +09002682 ah->ah_cal_next_nf = jiffies;
Bruno Randolfeef39be2010-11-16 10:58:43 +09002683 ewma_init(&ah->ah_beacon_rssi_avg, 1000, 8);
Bruno Randolfafe86282010-05-19 10:31:10 +09002684
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002685 /*
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002686 * Change channels and update the h/w rate map if we're switching;
2687 * e.g. 11a to 11b/g.
2688 *
2689 * We may be doing a reset in response to an ioctl that changes the
2690 * channel so update any state that might change as a result.
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002691 *
2692 * XXX needed?
2693 */
2694/* ath5k_chan_change(sc, c); */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002695
Jiri Slabyd7dc1002008-07-23 13:17:35 +02002696 ath5k_beacon_config(sc);
2697 /* intrs are enabled by ath5k_beacon_config */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002698
Bruno Randolf397f3852010-05-19 10:30:49 +09002699 ieee80211_wake_queues(sc->hw);
2700
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002701 return 0;
2702err:
2703 return ret;
2704}
2705
Bob Copeland5faaff72010-07-13 11:32:40 -04002706static void ath5k_reset_work(struct work_struct *work)
2707{
2708 struct ath5k_softc *sc = container_of(work, struct ath5k_softc,
2709 reset_work);
2710
2711 mutex_lock(&sc->lock);
Nick Kossifidis8aec7af2010-11-23 21:39:28 +02002712 ath5k_reset(sc, NULL, true);
Bob Copeland5faaff72010-07-13 11:32:40 -04002713 mutex_unlock(&sc->lock);
2714}
2715
Bob Copeland8a63fac2010-09-17 12:45:07 +09002716static int
Felix Fietkau132b1c32010-12-02 10:26:56 +01002717ath5k_init(struct ieee80211_hw *hw)
Bob Copeland8a63fac2010-09-17 12:45:07 +09002718{
Felix Fietkau132b1c32010-12-02 10:26:56 +01002719
Bob Copeland8a63fac2010-09-17 12:45:07 +09002720 struct ath5k_softc *sc = hw->priv;
2721 struct ath5k_hw *ah = sc->ah;
2722 struct ath_regulatory *regulatory = ath5k_hw_regulatory(ah);
Bruno Randolf925e0b02010-09-17 11:36:35 +09002723 struct ath5k_txq *txq;
Bob Copeland8a63fac2010-09-17 12:45:07 +09002724 u8 mac[ETH_ALEN] = {};
2725 int ret;
2726
Bob Copeland8a63fac2010-09-17 12:45:07 +09002727
2728 /*
2729 * Check if the MAC has multi-rate retry support.
2730 * We do this by trying to setup a fake extended
2731 * descriptor. MACs that don't have support will
2732 * return false w/o doing anything. MACs that do
2733 * support it will return true w/o doing anything.
2734 */
2735 ret = ath5k_hw_setup_mrr_tx_desc(ah, NULL, 0, 0, 0, 0, 0, 0);
2736
2737 if (ret < 0)
2738 goto err;
2739 if (ret > 0)
2740 __set_bit(ATH_STAT_MRRETRY, sc->status);
2741
2742 /*
2743 * Collect the channel list. The 802.11 layer
2744 * is resposible for filtering this list based
2745 * on settings like the phy mode and regulatory
2746 * domain restrictions.
2747 */
2748 ret = ath5k_setup_bands(hw);
2749 if (ret) {
2750 ATH5K_ERR(sc, "can't get channels\n");
2751 goto err;
2752 }
2753
2754 /* NB: setup here so ath5k_rate_update is happy */
2755 if (test_bit(AR5K_MODE_11A, ah->ah_modes))
2756 ath5k_setcurmode(sc, AR5K_MODE_11A);
2757 else
2758 ath5k_setcurmode(sc, AR5K_MODE_11B);
2759
2760 /*
2761 * Allocate tx+rx descriptors and populate the lists.
2762 */
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01002763 ret = ath5k_desc_alloc(sc);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002764 if (ret) {
2765 ATH5K_ERR(sc, "can't allocate descriptors\n");
2766 goto err;
2767 }
2768
2769 /*
2770 * Allocate hardware transmit queues: one queue for
2771 * beacon frames and one data queue for each QoS
2772 * priority. Note that hw functions handle resetting
2773 * these queues at the needed time.
2774 */
2775 ret = ath5k_beaconq_setup(ah);
2776 if (ret < 0) {
2777 ATH5K_ERR(sc, "can't setup a beacon xmit queue\n");
2778 goto err_desc;
2779 }
2780 sc->bhalq = ret;
2781 sc->cabq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_CAB, 0);
2782 if (IS_ERR(sc->cabq)) {
2783 ATH5K_ERR(sc, "can't setup cab queue\n");
2784 ret = PTR_ERR(sc->cabq);
2785 goto err_bhal;
2786 }
2787
Bruno Randolf925e0b02010-09-17 11:36:35 +09002788 /* This order matches mac80211's queue priority, so we can
2789 * directly use the mac80211 queue number without any mapping */
2790 txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VO);
2791 if (IS_ERR(txq)) {
Bob Copeland8a63fac2010-09-17 12:45:07 +09002792 ATH5K_ERR(sc, "can't setup xmit queue\n");
Bruno Randolf925e0b02010-09-17 11:36:35 +09002793 ret = PTR_ERR(txq);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002794 goto err_queues;
2795 }
Bruno Randolf925e0b02010-09-17 11:36:35 +09002796 txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VI);
2797 if (IS_ERR(txq)) {
2798 ATH5K_ERR(sc, "can't setup xmit queue\n");
2799 ret = PTR_ERR(txq);
2800 goto err_queues;
2801 }
2802 txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BE);
2803 if (IS_ERR(txq)) {
2804 ATH5K_ERR(sc, "can't setup xmit queue\n");
2805 ret = PTR_ERR(txq);
2806 goto err_queues;
2807 }
2808 txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BK);
2809 if (IS_ERR(txq)) {
2810 ATH5K_ERR(sc, "can't setup xmit queue\n");
2811 ret = PTR_ERR(txq);
2812 goto err_queues;
2813 }
2814 hw->queues = 4;
Bob Copeland8a63fac2010-09-17 12:45:07 +09002815
2816 tasklet_init(&sc->rxtq, ath5k_tasklet_rx, (unsigned long)sc);
2817 tasklet_init(&sc->txtq, ath5k_tasklet_tx, (unsigned long)sc);
2818 tasklet_init(&sc->calib, ath5k_tasklet_calibrate, (unsigned long)sc);
2819 tasklet_init(&sc->beacontq, ath5k_tasklet_beacon, (unsigned long)sc);
2820 tasklet_init(&sc->ani_tasklet, ath5k_tasklet_ani, (unsigned long)sc);
2821
2822 INIT_WORK(&sc->reset_work, ath5k_reset_work);
Bruno Randolf4edd7612010-09-17 11:36:56 +09002823 INIT_DELAYED_WORK(&sc->tx_complete_work, ath5k_tx_complete_poll_work);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002824
2825 ret = ath5k_eeprom_read_mac(ah, mac);
2826 if (ret) {
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01002827 ATH5K_ERR(sc, "unable to read address from EEPROM\n");
Bob Copeland8a63fac2010-09-17 12:45:07 +09002828 goto err_queues;
2829 }
2830
2831 SET_IEEE80211_PERM_ADDR(hw, mac);
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002832 memcpy(&sc->lladdr, mac, ETH_ALEN);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002833 /* All MAC address bits matter for ACKs */
Ben Greear62c58fb2010-10-08 12:01:15 -07002834 ath5k_update_bssid_mask_and_opmode(sc, NULL);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002835
2836 regulatory->current_rd = ah->ah_capabilities.cap_eeprom.ee_regdomain;
2837 ret = ath_regd_init(regulatory, hw->wiphy, ath5k_reg_notifier);
2838 if (ret) {
2839 ATH5K_ERR(sc, "can't initialize regulatory system\n");
2840 goto err_queues;
2841 }
2842
2843 ret = ieee80211_register_hw(hw);
2844 if (ret) {
2845 ATH5K_ERR(sc, "can't register ieee80211 hw\n");
2846 goto err_queues;
2847 }
2848
2849 if (!ath_is_world_regd(regulatory))
2850 regulatory_hint(hw->wiphy, regulatory->alpha2);
2851
2852 ath5k_init_leds(sc);
2853
2854 ath5k_sysfs_register(sc);
2855
2856 return 0;
2857err_queues:
2858 ath5k_txq_release(sc);
2859err_bhal:
2860 ath5k_hw_release_tx_queue(ah, sc->bhalq);
2861err_desc:
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01002862 ath5k_desc_free(sc);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002863err:
2864 return ret;
2865}
2866
Felix Fietkau132b1c32010-12-02 10:26:56 +01002867void
2868ath5k_deinit_softc(struct ath5k_softc *sc)
Bob Copeland8a63fac2010-09-17 12:45:07 +09002869{
Felix Fietkau132b1c32010-12-02 10:26:56 +01002870 struct ieee80211_hw *hw = sc->hw;
Bob Copeland8a63fac2010-09-17 12:45:07 +09002871
2872 /*
2873 * NB: the order of these is important:
2874 * o call the 802.11 layer before detaching ath5k_hw to
2875 * ensure callbacks into the driver to delete global
2876 * key cache entries can be handled
2877 * o reclaim the tx queue data structures after calling
2878 * the 802.11 layer as we'll get called back to reclaim
2879 * node state and potentially want to use them
2880 * o to cleanup the tx queues the hal is called, so detach
2881 * it last
2882 * XXX: ??? detach ath5k_hw ???
2883 * Other than that, it's straightforward...
2884 */
Felix Fietkau132b1c32010-12-02 10:26:56 +01002885 ath5k_debug_finish_device(sc);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002886 ieee80211_unregister_hw(hw);
Felix Fietkauaeae4ac2010-12-02 10:26:51 +01002887 ath5k_desc_free(sc);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002888 ath5k_txq_release(sc);
2889 ath5k_hw_release_tx_queue(sc->ah, sc->bhalq);
2890 ath5k_unregister_leds(sc);
2891
2892 ath5k_sysfs_unregister(sc);
2893 /*
2894 * NB: can't reclaim these until after ieee80211_ifdetach
2895 * returns because we'll get called back to reclaim node
2896 * state and potentially want to use them.
2897 */
Felix Fietkau132b1c32010-12-02 10:26:56 +01002898 ath5k_hw_deinit(sc->ah);
2899 free_irq(sc->irq, sc);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002900}
2901
2902/********************\
2903* Mac80211 functions *
2904\********************/
2905
2906static int
2907ath5k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
2908{
2909 struct ath5k_softc *sc = hw->priv;
Bruno Randolf925e0b02010-09-17 11:36:35 +09002910 u16 qnum = skb_get_queue_mapping(skb);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002911
Bruno Randolf925e0b02010-09-17 11:36:35 +09002912 if (WARN_ON(qnum >= sc->ah->ah_capabilities.cap_queues.q_tx_num)) {
2913 dev_kfree_skb_any(skb);
2914 return 0;
2915 }
2916
2917 return ath5k_tx_queue(hw, skb, &sc->txqs[qnum]);
Bob Copeland8a63fac2010-09-17 12:45:07 +09002918}
2919
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002920static int ath5k_start(struct ieee80211_hw *hw)
2921{
Felix Fietkau132b1c32010-12-02 10:26:56 +01002922 return ath5k_init_hw(hw->priv);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002923}
2924
2925static void ath5k_stop(struct ieee80211_hw *hw)
2926{
Bob Copelandbb2beca2009-01-19 11:20:54 -05002927 ath5k_stop_hw(hw->priv);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002928}
2929
2930static int ath5k_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01002931 struct ieee80211_vif *vif)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002932{
2933 struct ath5k_softc *sc = hw->priv;
2934 int ret;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002935 struct ath5k_vif *avf = (void *)vif->drv_priv;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002936
2937 mutex_lock(&sc->lock);
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002938
2939 if ((vif->type == NL80211_IFTYPE_AP ||
2940 vif->type == NL80211_IFTYPE_ADHOC)
2941 && (sc->num_ap_vifs + sc->num_adhoc_vifs) >= ATH_BCBUF) {
2942 ret = -ELNRNG;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002943 goto end;
2944 }
2945
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002946 /* Don't allow other interfaces if one ad-hoc is configured.
2947 * TODO: Fix the problems with ad-hoc and multiple other interfaces.
2948 * We would need to operate the HW in ad-hoc mode to allow TSF updates
2949 * for the IBSS, but this breaks with additional AP or STA interfaces
2950 * at the moment. */
2951 if (sc->num_adhoc_vifs ||
2952 (sc->nvifs && vif->type == NL80211_IFTYPE_ADHOC)) {
2953 ATH5K_ERR(sc, "Only one single ad-hoc interface is allowed.\n");
2954 ret = -ELNRNG;
2955 goto end;
2956 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002957
Johannes Berg1ed32e42009-12-23 13:15:45 +01002958 switch (vif->type) {
Jiri Slabyda966bc2008-10-12 22:54:10 +02002959 case NL80211_IFTYPE_AP:
Johannes Berg05c914f2008-09-11 00:01:58 +02002960 case NL80211_IFTYPE_STATION:
2961 case NL80211_IFTYPE_ADHOC:
Andrey Yurovskyb706e652008-10-13 18:23:07 -07002962 case NL80211_IFTYPE_MESH_POINT:
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002963 avf->opmode = vif->type;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02002964 break;
2965 default:
2966 ret = -EOPNOTSUPP;
2967 goto end;
2968 }
Jiri Slaby67d2e2d2008-08-18 21:45:28 +02002969
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002970 sc->nvifs++;
2971 ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "add interface mode %d\n", avf->opmode);
Bruno Randolfccfe5552010-03-09 16:55:38 +09002972
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002973 /* Assign the vap/adhoc to a beacon xmit slot. */
2974 if ((avf->opmode == NL80211_IFTYPE_AP) ||
2975 (avf->opmode == NL80211_IFTYPE_ADHOC)) {
2976 int slot;
2977
2978 WARN_ON(list_empty(&sc->bcbuf));
2979 avf->bbuf = list_first_entry(&sc->bcbuf, struct ath5k_buf,
2980 list);
2981 list_del(&avf->bbuf->list);
2982
2983 avf->bslot = 0;
2984 for (slot = 0; slot < ATH_BCBUF; slot++) {
2985 if (!sc->bslot[slot]) {
2986 avf->bslot = slot;
2987 break;
2988 }
2989 }
2990 BUG_ON(sc->bslot[avf->bslot] != NULL);
2991 sc->bslot[avf->bslot] = vif;
2992 if (avf->opmode == NL80211_IFTYPE_AP)
2993 sc->num_ap_vifs++;
2994 else
2995 sc->num_adhoc_vifs++;
2996 }
2997
Ben Greearb1ae1ed2010-09-30 12:22:58 -07002998 /* Any MAC address is fine, all others are included through the
2999 * filter.
3000 */
3001 memcpy(&sc->lladdr, vif->addr, ETH_ALEN);
Johannes Berg1ed32e42009-12-23 13:15:45 +01003002 ath5k_hw_set_lladdr(sc->ah, vif->addr);
Ben Greearb1ae1ed2010-09-30 12:22:58 -07003003
3004 memcpy(&avf->lladdr, vif->addr, ETH_ALEN);
3005
3006 ath5k_mode_setup(sc, vif);
Jiri Slaby67d2e2d2008-08-18 21:45:28 +02003007
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003008 ret = 0;
3009end:
3010 mutex_unlock(&sc->lock);
3011 return ret;
3012}
3013
3014static void
3015ath5k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01003016 struct ieee80211_vif *vif)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003017{
3018 struct ath5k_softc *sc = hw->priv;
Ben Greearb1ae1ed2010-09-30 12:22:58 -07003019 struct ath5k_vif *avf = (void *)vif->drv_priv;
3020 unsigned int i;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003021
3022 mutex_lock(&sc->lock);
Ben Greearb1ae1ed2010-09-30 12:22:58 -07003023 sc->nvifs--;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003024
Ben Greearb1ae1ed2010-09-30 12:22:58 -07003025 if (avf->bbuf) {
3026 ath5k_txbuf_free_skb(sc, avf->bbuf);
3027 list_add_tail(&avf->bbuf->list, &sc->bcbuf);
3028 for (i = 0; i < ATH_BCBUF; i++) {
3029 if (sc->bslot[i] == vif) {
3030 sc->bslot[i] = NULL;
3031 break;
3032 }
3033 }
3034 avf->bbuf = NULL;
3035 }
3036 if (avf->opmode == NL80211_IFTYPE_AP)
3037 sc->num_ap_vifs--;
3038 else if (avf->opmode == NL80211_IFTYPE_ADHOC)
3039 sc->num_adhoc_vifs--;
3040
Ben Greear62c58fb2010-10-08 12:01:15 -07003041 ath5k_update_bssid_mask_and_opmode(sc, NULL);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003042 mutex_unlock(&sc->lock);
3043}
3044
Luis R. Rodriguezd8ee3982008-02-03 21:51:04 -05003045/*
3046 * TODO: Phy disable/diversity etc
3047 */
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003048static int
Johannes Berge8975582008-10-09 12:18:51 +02003049ath5k_config(struct ieee80211_hw *hw, u32 changed)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003050{
3051 struct ath5k_softc *sc = hw->priv;
Nick Kossifidisa0823812009-04-30 15:55:44 -04003052 struct ath5k_hw *ah = sc->ah;
Johannes Berge8975582008-10-09 12:18:51 +02003053 struct ieee80211_conf *conf = &hw->conf;
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04003054 int ret = 0;
Bob Copelandbe009372009-01-22 08:44:16 -05003055
3056 mutex_lock(&sc->lock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003057
Joerg Alberte30eb4a2009-08-05 01:52:07 +02003058 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
3059 ret = ath5k_chan_set(sc, conf->channel);
3060 if (ret < 0)
3061 goto unlock;
3062 }
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04003063
Nick Kossifidisa0823812009-04-30 15:55:44 -04003064 if ((changed & IEEE80211_CONF_CHANGE_POWER) &&
3065 (sc->power_level != conf->power_level)) {
3066 sc->power_level = conf->power_level;
3067
3068 /* Half dB steps */
3069 ath5k_hw_set_txpower_limit(ah, (conf->power_level * 2));
3070 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003071
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04003072 /* TODO:
3073 * 1) Move this on config_interface and handle each case
3074 * separately eg. when we have only one STA vif, use
3075 * AR5K_ANTMODE_SINGLE_AP
3076 *
3077 * 2) Allow the user to change antenna mode eg. when only
3078 * one antenna is present
3079 *
3080 * 3) Allow the user to set default/tx antenna when possible
3081 *
3082 * 4) Default mode should handle 90% of the cases, together
3083 * with fixed a/b and single AP modes we should be able to
3084 * handle 99%. Sectored modes are extreme cases and i still
3085 * haven't found a usage for them. If we decide to support them,
3086 * then we must allow the user to set how many tx antennas we
3087 * have available
3088 */
Bruno Randolfcaec9112010-03-09 16:55:28 +09003089 ath5k_hw_set_antenna_mode(ah, ah->ah_ant_mode);
Bob Copelandbe009372009-01-22 08:44:16 -05003090
John W. Linville55aa4e02009-05-25 21:28:47 +02003091unlock:
Bob Copelandbe009372009-01-22 08:44:16 -05003092 mutex_unlock(&sc->lock);
John W. Linville55aa4e02009-05-25 21:28:47 +02003093 return ret;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003094}
3095
Johannes Berg3ac64be2009-08-17 16:16:53 +02003096static u64 ath5k_prepare_multicast(struct ieee80211_hw *hw,
Jiri Pirko22bedad2010-04-01 21:22:57 +00003097 struct netdev_hw_addr_list *mc_list)
Johannes Berg3ac64be2009-08-17 16:16:53 +02003098{
3099 u32 mfilt[2], val;
Johannes Berg3ac64be2009-08-17 16:16:53 +02003100 u8 pos;
Jiri Pirko22bedad2010-04-01 21:22:57 +00003101 struct netdev_hw_addr *ha;
Johannes Berg3ac64be2009-08-17 16:16:53 +02003102
3103 mfilt[0] = 0;
3104 mfilt[1] = 1;
3105
Jiri Pirko22bedad2010-04-01 21:22:57 +00003106 netdev_hw_addr_list_for_each(ha, mc_list) {
Johannes Berg3ac64be2009-08-17 16:16:53 +02003107 /* calculate XOR of eight 6-bit values */
Jiri Pirko22bedad2010-04-01 21:22:57 +00003108 val = get_unaligned_le32(ha->addr + 0);
Johannes Berg3ac64be2009-08-17 16:16:53 +02003109 pos = (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val;
Jiri Pirko22bedad2010-04-01 21:22:57 +00003110 val = get_unaligned_le32(ha->addr + 3);
Johannes Berg3ac64be2009-08-17 16:16:53 +02003111 pos ^= (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val;
3112 pos &= 0x3f;
3113 mfilt[pos / 32] |= (1 << (pos % 32));
3114 /* XXX: we might be able to just do this instead,
3115 * but not sure, needs testing, if we do use this we'd
3116 * neet to inform below to not reset the mcast */
3117 /* ath5k_hw_set_mcast_filterindex(ah,
Jiri Pirko22bedad2010-04-01 21:22:57 +00003118 * ha->addr[5]); */
Johannes Berg3ac64be2009-08-17 16:16:53 +02003119 }
3120
3121 return ((u64)(mfilt[1]) << 32) | mfilt[0];
3122}
3123
Ben Greearb1ae1ed2010-09-30 12:22:58 -07003124static bool ath_any_vif_assoc(struct ath5k_softc *sc)
3125{
3126 struct ath_vif_iter_data iter_data;
3127 iter_data.hw_macaddr = NULL;
3128 iter_data.any_assoc = false;
3129 iter_data.need_set_hw_addr = false;
3130 iter_data.found_active = true;
3131
3132 ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter,
3133 &iter_data);
3134 return iter_data.any_assoc;
3135}
3136
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003137#define SUPPORTED_FIF_FLAGS \
3138 FIF_PROMISC_IN_BSS | FIF_ALLMULTI | FIF_FCSFAIL | \
3139 FIF_PLCPFAIL | FIF_CONTROL | FIF_OTHER_BSS | \
3140 FIF_BCN_PRBRESP_PROMISC
3141/*
3142 * o always accept unicast, broadcast, and multicast traffic
3143 * o multicast traffic for all BSSIDs will be enabled if mac80211
3144 * says it should be
3145 * o maintain current state of phy ofdm or phy cck error reception.
3146 * If the hardware detects any of these type of errors then
3147 * ath5k_hw_get_rx_filter() will pass to us the respective
3148 * hardware filters to be able to receive these type of frames.
3149 * o probe request frames are accepted only when operating in
3150 * hostap, adhoc, or monitor modes
3151 * o enable promiscuous mode according to the interface state
3152 * o accept beacons:
3153 * - when operating in adhoc mode so the 802.11 layer creates
3154 * node table entries for peers,
3155 * - when operating in station mode for collecting rssi data when
3156 * the station is otherwise quiet, or
3157 * - when scanning
3158 */
3159static void ath5k_configure_filter(struct ieee80211_hw *hw,
3160 unsigned int changed_flags,
3161 unsigned int *new_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02003162 u64 multicast)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003163{
3164 struct ath5k_softc *sc = hw->priv;
3165 struct ath5k_hw *ah = sc->ah;
Johannes Berg3ac64be2009-08-17 16:16:53 +02003166 u32 mfilt[2], rfilt;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003167
Bob Copeland56d1de02009-08-24 23:00:30 -04003168 mutex_lock(&sc->lock);
3169
Johannes Berg3ac64be2009-08-17 16:16:53 +02003170 mfilt[0] = multicast;
3171 mfilt[1] = multicast >> 32;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003172
3173 /* Only deal with supported flags */
3174 changed_flags &= SUPPORTED_FIF_FLAGS;
3175 *new_flags &= SUPPORTED_FIF_FLAGS;
3176
3177 /* If HW detects any phy or radar errors, leave those filters on.
3178 * Also, always enable Unicast, Broadcasts and Multicast
3179 * XXX: move unicast, bssid broadcasts and multicast to mac80211 */
3180 rfilt = (ath5k_hw_get_rx_filter(ah) & (AR5K_RX_FILTER_PHYERR)) |
3181 (AR5K_RX_FILTER_UCAST | AR5K_RX_FILTER_BCAST |
3182 AR5K_RX_FILTER_MCAST);
3183
3184 if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) {
3185 if (*new_flags & FIF_PROMISC_IN_BSS) {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003186 __set_bit(ATH_STAT_PROMISC, sc->status);
John Daiker0bbac082008-10-17 12:16:00 -07003187 } else {
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003188 __clear_bit(ATH_STAT_PROMISC, sc->status);
John Daiker0bbac082008-10-17 12:16:00 -07003189 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003190 }
3191
Bob Copeland6b5dccc2010-06-04 08:14:14 -04003192 if (test_bit(ATH_STAT_PROMISC, sc->status))
3193 rfilt |= AR5K_RX_FILTER_PROM;
3194
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003195 /* Note, AR5K_RX_FILTER_MCAST is already enabled */
3196 if (*new_flags & FIF_ALLMULTI) {
3197 mfilt[0] = ~0;
3198 mfilt[1] = ~0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003199 }
3200
3201 /* This is the best we can do */
3202 if (*new_flags & (FIF_FCSFAIL | FIF_PLCPFAIL))
3203 rfilt |= AR5K_RX_FILTER_PHYERR;
3204
3205 /* FIF_BCN_PRBRESP_PROMISC really means to enable beacons
Bob Copeland30bf4162010-08-15 13:03:15 -04003206 * and probes for any BSSID */
Ben Greearb1ae1ed2010-09-30 12:22:58 -07003207 if ((*new_flags & FIF_BCN_PRBRESP_PROMISC) || (sc->nvifs > 1))
Bob Copeland30bf4162010-08-15 13:03:15 -04003208 rfilt |= AR5K_RX_FILTER_BEACON;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003209
3210 /* FIF_CONTROL doc says that if FIF_PROMISC_IN_BSS is not
3211 * set we should only pass on control frames for this
3212 * station. This needs testing. I believe right now this
3213 * enables *all* control frames, which is OK.. but
3214 * but we should see if we can improve on granularity */
3215 if (*new_flags & FIF_CONTROL)
3216 rfilt |= AR5K_RX_FILTER_CONTROL;
3217
3218 /* Additional settings per mode -- this is per ath5k */
3219
3220 /* XXX move these to mac80211, and add a beacon IFF flag to mac80211 */
3221
Bob Copeland56d1de02009-08-24 23:00:30 -04003222 switch (sc->opmode) {
3223 case NL80211_IFTYPE_MESH_POINT:
Bob Copeland56d1de02009-08-24 23:00:30 -04003224 rfilt |= AR5K_RX_FILTER_CONTROL |
3225 AR5K_RX_FILTER_BEACON |
3226 AR5K_RX_FILTER_PROBEREQ |
3227 AR5K_RX_FILTER_PROM;
3228 break;
3229 case NL80211_IFTYPE_AP:
3230 case NL80211_IFTYPE_ADHOC:
3231 rfilt |= AR5K_RX_FILTER_PROBEREQ |
3232 AR5K_RX_FILTER_BEACON;
3233 break;
3234 case NL80211_IFTYPE_STATION:
3235 if (sc->assoc)
3236 rfilt |= AR5K_RX_FILTER_BEACON;
3237 default:
3238 break;
3239 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003240
3241 /* Set filters */
John Daiker0bbac082008-10-17 12:16:00 -07003242 ath5k_hw_set_rx_filter(ah, rfilt);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003243
3244 /* Set multicast bits */
3245 ath5k_hw_set_mcast_filter(ah, mfilt[0], mfilt[1]);
Bob Copelanda180a132010-08-15 13:03:12 -04003246 /* Set the cached hw filter flags, this will later actually
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003247 * be set in HW */
3248 sc->filter_flags = rfilt;
Bob Copeland56d1de02009-08-24 23:00:30 -04003249
3250 mutex_unlock(&sc->lock);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003251}
3252
3253static int
3254ath5k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003255 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
3256 struct ieee80211_key_conf *key)
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003257{
3258 struct ath5k_softc *sc = hw->priv;
Luis R. Rodriguezdc1e0012009-11-04 17:47:31 -08003259 struct ath5k_hw *ah = sc->ah;
3260 struct ath_common *common = ath5k_hw_common(ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003261 int ret = 0;
3262
Bob Copeland9ad9a262008-10-29 08:30:54 -04003263 if (modparam_nohwcrypt)
3264 return -EOPNOTSUPP;
3265
Johannes Berg97359d12010-08-10 09:46:38 +02003266 switch (key->cipher) {
3267 case WLAN_CIPHER_SUITE_WEP40:
3268 case WLAN_CIPHER_SUITE_WEP104:
3269 case WLAN_CIPHER_SUITE_TKIP:
Bob Copeland3f64b432008-10-29 23:19:14 -04003270 break;
Johannes Berg97359d12010-08-10 09:46:38 +02003271 case WLAN_CIPHER_SUITE_CCMP:
Bruno Randolf781f3132010-09-08 16:04:59 +09003272 if (common->crypt_caps & ATH_CRYPT_CAP_CIPHER_AESCCM)
Bob Copeland1c818742009-08-24 23:00:33 -04003273 break;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003274 return -EOPNOTSUPP;
3275 default:
3276 WARN_ON(1);
3277 return -EINVAL;
3278 }
3279
3280 mutex_lock(&sc->lock);
3281
3282 switch (cmd) {
3283 case SET_KEY:
Bruno Randolfe0f8c2a2010-09-08 16:04:43 +09003284 ret = ath_key_config(common, vif, sta, key);
3285 if (ret >= 0) {
3286 key->hw_key_idx = ret;
3287 /* push IV and Michael MIC generation to stack */
3288 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
3289 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
3290 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
3291 if (key->cipher == WLAN_CIPHER_SUITE_CCMP)
3292 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT;
3293 ret = 0;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003294 }
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003295 break;
3296 case DISABLE_KEY:
Bruno Randolfe0f8c2a2010-09-08 16:04:43 +09003297 ath_key_delete(common, key);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003298 break;
3299 default:
3300 ret = -EINVAL;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003301 }
3302
Jiri Slaby274c7c32008-07-15 17:44:20 +02003303 mmiowb();
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003304 mutex_unlock(&sc->lock);
3305 return ret;
3306}
3307
3308static int
3309ath5k_get_stats(struct ieee80211_hw *hw,
3310 struct ieee80211_low_level_stats *stats)
3311{
3312 struct ath5k_softc *sc = hw->priv;
Nick Kossifidis194828a2008-04-16 18:49:02 +03003313
3314 /* Force update */
Bruno Randolf495391d2010-03-25 14:49:36 +09003315 ath5k_hw_update_mib_counters(sc->ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003316
Bruno Randolf495391d2010-03-25 14:49:36 +09003317 stats->dot11ACKFailureCount = sc->stats.ack_fail;
3318 stats->dot11RTSFailureCount = sc->stats.rts_fail;
3319 stats->dot11RTSSuccessCount = sc->stats.rts_ok;
3320 stats->dot11FCSErrorCount = sc->stats.fcs_error;
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003321
3322 return 0;
3323}
3324
Holger Schurig55ee82b2010-04-19 10:24:22 +02003325static int ath5k_get_survey(struct ieee80211_hw *hw, int idx,
3326 struct survey_info *survey)
3327{
3328 struct ath5k_softc *sc = hw->priv;
3329 struct ieee80211_conf *conf = &hw->conf;
Bruno Randolfedb40a22010-10-19 16:56:54 +09003330 struct ath_common *common = ath5k_hw_common(sc->ah);
3331 struct ath_cycle_counters *cc = &common->cc_survey;
3332 unsigned int div = common->clockrate * 1000;
Holger Schurig55ee82b2010-04-19 10:24:22 +02003333
Bruno Randolfedb40a22010-10-19 16:56:54 +09003334 if (idx != 0)
Holger Schurig55ee82b2010-04-19 10:24:22 +02003335 return -ENOENT;
3336
3337 survey->channel = conf->channel;
3338 survey->filled = SURVEY_INFO_NOISE_DBM;
3339 survey->noise = sc->ah->ah_noise_floor;
3340
Bruno Randolfedb40a22010-10-19 16:56:54 +09003341 spin_lock_bh(&common->cc_lock);
3342 ath_hw_cycle_counters_update(common);
3343 if (cc->cycles > 0) {
3344 survey->filled |= SURVEY_INFO_CHANNEL_TIME |
3345 SURVEY_INFO_CHANNEL_TIME_BUSY |
3346 SURVEY_INFO_CHANNEL_TIME_RX |
3347 SURVEY_INFO_CHANNEL_TIME_TX;
3348 survey->channel_time += cc->cycles / div;
3349 survey->channel_time_busy += cc->rx_busy / div;
3350 survey->channel_time_rx += cc->rx_frame / div;
3351 survey->channel_time_tx += cc->tx_frame / div;
3352 }
3353 memset(cc, 0, sizeof(*cc));
3354 spin_unlock_bh(&common->cc_lock);
3355
Holger Schurig55ee82b2010-04-19 10:24:22 +02003356 return 0;
3357}
3358
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003359static u64
3360ath5k_get_tsf(struct ieee80211_hw *hw)
3361{
3362 struct ath5k_softc *sc = hw->priv;
3363
3364 return ath5k_hw_get_tsf64(sc->ah);
3365}
3366
3367static void
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01003368ath5k_set_tsf(struct ieee80211_hw *hw, u64 tsf)
3369{
3370 struct ath5k_softc *sc = hw->priv;
3371
3372 ath5k_hw_set_tsf64(sc->ah, tsf);
3373}
3374
3375static void
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003376ath5k_reset_tsf(struct ieee80211_hw *hw)
3377{
3378 struct ath5k_softc *sc = hw->priv;
3379
Bruno Randolf9804b982008-01-19 18:17:59 +09003380 /*
3381 * in IBSS mode we need to update the beacon timers too.
3382 * this will also reset the TSF if we call it with 0
3383 */
Johannes Berg05c914f2008-09-11 00:01:58 +02003384 if (sc->opmode == NL80211_IFTYPE_ADHOC)
Bruno Randolf9804b982008-01-19 18:17:59 +09003385 ath5k_beacon_update_timers(sc, 0);
3386 else
3387 ath5k_hw_reset_tsf(sc->ah);
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003388}
3389
Martin Xu02969b32008-11-24 10:49:27 +08003390static void
3391set_beacon_filter(struct ieee80211_hw *hw, bool enable)
3392{
3393 struct ath5k_softc *sc = hw->priv;
3394 struct ath5k_hw *ah = sc->ah;
3395 u32 rfilt;
3396 rfilt = ath5k_hw_get_rx_filter(ah);
3397 if (enable)
3398 rfilt |= AR5K_RX_FILTER_BEACON;
3399 else
3400 rfilt &= ~AR5K_RX_FILTER_BEACON;
3401 ath5k_hw_set_rx_filter(ah, rfilt);
3402 sc->filter_flags = rfilt;
3403}
Jiri Slabyfa1c1142007-08-12 17:33:16 +02003404
Martin Xu02969b32008-11-24 10:49:27 +08003405static void ath5k_bss_info_changed(struct ieee80211_hw *hw,
3406 struct ieee80211_vif *vif,
3407 struct ieee80211_bss_conf *bss_conf,
3408 u32 changes)
3409{
Ben Greearb1ae1ed2010-09-30 12:22:58 -07003410 struct ath5k_vif *avf = (void *)vif->drv_priv;
Martin Xu02969b32008-11-24 10:49:27 +08003411 struct ath5k_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003412 struct ath5k_hw *ah = sc->ah;
Luis R. Rodriguez954fece2009-09-10 10:51:33 -07003413 struct ath_common *common = ath5k_hw_common(ah);
Bob Copeland21800492009-07-04 12:59:52 -04003414 unsigned long flags;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003415
3416 mutex_lock(&sc->lock);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003417
3418 if (changes & BSS_CHANGED_BSSID) {
3419 /* Cache for later use during resets */
Luis R. Rodriguez954fece2009-09-10 10:51:33 -07003420 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
Luis R. Rodriguez8ce54c52009-10-06 20:44:34 -04003421 common->curaid = 0;
Nick Kossifidis418de6d2010-08-15 13:03:10 -04003422 ath5k_hw_set_bssid(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003423 mmiowb();
3424 }
Johannes Berg57c4d7b2009-04-23 16:10:04 +02003425
3426 if (changes & BSS_CHANGED_BEACON_INT)
3427 sc->bintval = bss_conf->beacon_int;
3428
Martin Xu02969b32008-11-24 10:49:27 +08003429 if (changes & BSS_CHANGED_ASSOC) {
Ben Greearb1ae1ed2010-09-30 12:22:58 -07003430 avf->assoc = bss_conf->assoc;
3431 if (bss_conf->assoc)
3432 sc->assoc = bss_conf->assoc;
3433 else
3434 sc->assoc = ath_any_vif_assoc(sc);
3435
Martin Xu02969b32008-11-24 10:49:27 +08003436 if (sc->opmode == NL80211_IFTYPE_STATION)
3437 set_beacon_filter(hw, sc->assoc);
Bob Copelandf0f3d382009-06-10 22:22:21 -04003438 ath5k_hw_set_ledstate(sc->ah, sc->assoc ?
3439 AR5K_LED_ASSOC : AR5K_LED_INIT);
Luis R. Rodriguez8ce54c52009-10-06 20:44:34 -04003440 if (bss_conf->assoc) {
3441 ATH5K_DBG(sc, ATH5K_DEBUG_ANY,
3442 "Bss Info ASSOC %d, bssid: %pM\n",
3443 bss_conf->aid, common->curbssid);
3444 common->curaid = bss_conf->aid;
Nick Kossifidis418de6d2010-08-15 13:03:10 -04003445 ath5k_hw_set_bssid(ah);
Luis R. Rodriguez8ce54c52009-10-06 20:44:34 -04003446 /* Once ANI is available you would start it here */
3447 }
Martin Xu02969b32008-11-24 10:49:27 +08003448 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003449
Bob Copeland21800492009-07-04 12:59:52 -04003450 if (changes & BSS_CHANGED_BEACON) {
3451 spin_lock_irqsave(&sc->block, flags);
3452 ath5k_beacon_update(hw, vif);
3453 spin_unlock_irqrestore(&sc->block, flags);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003454 }
3455
Bob Copeland21800492009-07-04 12:59:52 -04003456 if (changes & BSS_CHANGED_BEACON_ENABLED)
3457 sc->enable_beacon = bss_conf->enable_beacon;
3458
3459 if (changes & (BSS_CHANGED_BEACON | BSS_CHANGED_BEACON_ENABLED |
3460 BSS_CHANGED_BEACON_INT))
3461 ath5k_beacon_config(sc);
3462
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003463 mutex_unlock(&sc->lock);
Martin Xu02969b32008-11-24 10:49:27 +08003464}
Bob Copelandf0f3d382009-06-10 22:22:21 -04003465
3466static void ath5k_sw_scan_start(struct ieee80211_hw *hw)
3467{
3468 struct ath5k_softc *sc = hw->priv;
3469 if (!sc->assoc)
3470 ath5k_hw_set_ledstate(sc->ah, AR5K_LED_SCAN);
3471}
3472
3473static void ath5k_sw_scan_complete(struct ieee80211_hw *hw)
3474{
3475 struct ath5k_softc *sc = hw->priv;
3476 ath5k_hw_set_ledstate(sc->ah, sc->assoc ?
3477 AR5K_LED_ASSOC : AR5K_LED_INIT);
3478}
Lukáš Turek6e08d222009-12-21 22:50:51 +01003479
3480/**
3481 * ath5k_set_coverage_class - Set IEEE 802.11 coverage class
3482 *
3483 * @hw: struct ieee80211_hw pointer
3484 * @coverage_class: IEEE 802.11 coverage class number
3485 *
3486 * Mac80211 callback. Sets slot time, ACK timeout and CTS timeout for given
3487 * coverage class. The values are persistent, they are restored after device
3488 * reset.
3489 */
3490static void ath5k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class)
3491{
3492 struct ath5k_softc *sc = hw->priv;
3493
3494 mutex_lock(&sc->lock);
3495 ath5k_hw_set_coverage_class(sc->ah, coverage_class);
3496 mutex_unlock(&sc->lock);
3497}
Bob Copeland8a63fac2010-09-17 12:45:07 +09003498
Bruno Randolfe0b1cc52010-09-17 11:37:18 +09003499static int ath5k_conf_tx(struct ieee80211_hw *hw, u16 queue,
3500 const struct ieee80211_tx_queue_params *params)
3501{
3502 struct ath5k_softc *sc = hw->priv;
3503 struct ath5k_hw *ah = sc->ah;
3504 struct ath5k_txq_info qi;
3505 int ret = 0;
3506
3507 if (queue >= ah->ah_capabilities.cap_queues.q_tx_num)
3508 return 0;
3509
3510 mutex_lock(&sc->lock);
3511
3512 ath5k_hw_get_tx_queueprops(ah, queue, &qi);
3513
3514 qi.tqi_aifs = params->aifs;
3515 qi.tqi_cw_min = params->cw_min;
3516 qi.tqi_cw_max = params->cw_max;
3517 qi.tqi_burst_time = params->txop;
3518
3519 ATH5K_DBG(sc, ATH5K_DEBUG_ANY,
3520 "Configure tx [queue %d], "
3521 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
3522 queue, params->aifs, params->cw_min,
3523 params->cw_max, params->txop);
3524
3525 if (ath5k_hw_set_tx_queueprops(ah, queue, &qi)) {
3526 ATH5K_ERR(sc,
3527 "Unable to update hardware queue %u!\n", queue);
3528 ret = -EIO;
3529 } else
3530 ath5k_hw_reset_tx_queue(ah, queue);
3531
3532 mutex_unlock(&sc->lock);
3533
3534 return ret;
3535}
3536
Bruno Randolf72a80112010-11-10 12:51:01 +09003537static int ath5k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
3538{
3539 struct ath5k_softc *sc = hw->priv;
3540
3541 if (tx_ant == 1 && rx_ant == 1)
3542 ath5k_hw_set_antenna_mode(sc->ah, AR5K_ANTMODE_FIXED_A);
3543 else if (tx_ant == 2 && rx_ant == 2)
3544 ath5k_hw_set_antenna_mode(sc->ah, AR5K_ANTMODE_FIXED_B);
3545 else if ((tx_ant & 3) == 3 && (rx_ant & 3) == 3)
3546 ath5k_hw_set_antenna_mode(sc->ah, AR5K_ANTMODE_DEFAULT);
3547 else
3548 return -EINVAL;
3549 return 0;
3550}
3551
3552static int ath5k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
3553{
3554 struct ath5k_softc *sc = hw->priv;
3555
3556 switch (sc->ah->ah_ant_mode) {
3557 case AR5K_ANTMODE_FIXED_A:
3558 *tx_ant = 1; *rx_ant = 1; break;
3559 case AR5K_ANTMODE_FIXED_B:
3560 *tx_ant = 2; *rx_ant = 2; break;
3561 case AR5K_ANTMODE_DEFAULT:
3562 *tx_ant = 3; *rx_ant = 3; break;
3563 }
3564 return 0;
3565}
3566
Felix Fietkau132b1c32010-12-02 10:26:56 +01003567const struct ieee80211_ops ath5k_hw_ops = {
Bob Copeland8a63fac2010-09-17 12:45:07 +09003568 .tx = ath5k_tx,
3569 .start = ath5k_start,
3570 .stop = ath5k_stop,
3571 .add_interface = ath5k_add_interface,
3572 .remove_interface = ath5k_remove_interface,
3573 .config = ath5k_config,
3574 .prepare_multicast = ath5k_prepare_multicast,
3575 .configure_filter = ath5k_configure_filter,
3576 .set_key = ath5k_set_key,
3577 .get_stats = ath5k_get_stats,
3578 .get_survey = ath5k_get_survey,
Bruno Randolfe0b1cc52010-09-17 11:37:18 +09003579 .conf_tx = ath5k_conf_tx,
Bob Copeland8a63fac2010-09-17 12:45:07 +09003580 .get_tsf = ath5k_get_tsf,
3581 .set_tsf = ath5k_set_tsf,
3582 .reset_tsf = ath5k_reset_tsf,
3583 .bss_info_changed = ath5k_bss_info_changed,
3584 .sw_scan_start = ath5k_sw_scan_start,
3585 .sw_scan_complete = ath5k_sw_scan_complete,
3586 .set_coverage_class = ath5k_set_coverage_class,
Bruno Randolf72a80112010-11-10 12:51:01 +09003587 .set_antenna = ath5k_set_antenna,
3588 .get_antenna = ath5k_get_antenna,
Bob Copeland8a63fac2010-09-17 12:45:07 +09003589};