blob: 39b278053056cfe0856d2a8b5aae47cd1e03d4da [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070017#include <linux/nl80211.h>
Sujith394cf0a2009-02-09 13:26:54 +053018#include "ath9k.h"
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070019#include "btcoex.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070020
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021static char *dev_info = "ath9k";
22
23MODULE_AUTHOR("Atheros Communications");
24MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
25MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
26MODULE_LICENSE("Dual BSD/GPL");
27
Jouni Malinenb3bd89c2009-02-24 13:42:01 +020028static int modparam_nohwcrypt;
29module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444);
30MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption");
31
Luis R. Rodriguezfaa27fa2009-10-06 21:19:06 -040032static unsigned int ath9k_debug = ATH_DBG_DEFAULT;
33module_param_named(debug, ath9k_debug, uint, 0);
34MODULE_PARM_DESC(ath9k_debug, "Debugging mask");
35
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080036/* We use the hw_value as an index into our private channel structure */
37
38#define CHAN2G(_freq, _idx) { \
39 .center_freq = (_freq), \
40 .hw_value = (_idx), \
Luis R. Rodriguezeeddfd92009-05-19 17:49:46 -040041 .max_power = 20, \
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080042}
43
44#define CHAN5G(_freq, _idx) { \
45 .band = IEEE80211_BAND_5GHZ, \
46 .center_freq = (_freq), \
47 .hw_value = (_idx), \
Luis R. Rodriguezeeddfd92009-05-19 17:49:46 -040048 .max_power = 20, \
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080049}
50
51/* Some 2 GHz radios are actually tunable on 2312-2732
52 * on 5 MHz steps, we support the channels which we know
53 * we have calibration data for all cards though to make
54 * this static */
55static struct ieee80211_channel ath9k_2ghz_chantable[] = {
56 CHAN2G(2412, 0), /* Channel 1 */
57 CHAN2G(2417, 1), /* Channel 2 */
58 CHAN2G(2422, 2), /* Channel 3 */
59 CHAN2G(2427, 3), /* Channel 4 */
60 CHAN2G(2432, 4), /* Channel 5 */
61 CHAN2G(2437, 5), /* Channel 6 */
62 CHAN2G(2442, 6), /* Channel 7 */
63 CHAN2G(2447, 7), /* Channel 8 */
64 CHAN2G(2452, 8), /* Channel 9 */
65 CHAN2G(2457, 9), /* Channel 10 */
66 CHAN2G(2462, 10), /* Channel 11 */
67 CHAN2G(2467, 11), /* Channel 12 */
68 CHAN2G(2472, 12), /* Channel 13 */
69 CHAN2G(2484, 13), /* Channel 14 */
70};
71
72/* Some 5 GHz radios are actually tunable on XXXX-YYYY
73 * on 5 MHz steps, we support the channels which we know
74 * we have calibration data for all cards though to make
75 * this static */
76static struct ieee80211_channel ath9k_5ghz_chantable[] = {
77 /* _We_ call this UNII 1 */
78 CHAN5G(5180, 14), /* Channel 36 */
79 CHAN5G(5200, 15), /* Channel 40 */
80 CHAN5G(5220, 16), /* Channel 44 */
81 CHAN5G(5240, 17), /* Channel 48 */
82 /* _We_ call this UNII 2 */
83 CHAN5G(5260, 18), /* Channel 52 */
84 CHAN5G(5280, 19), /* Channel 56 */
85 CHAN5G(5300, 20), /* Channel 60 */
86 CHAN5G(5320, 21), /* Channel 64 */
87 /* _We_ call this "Middle band" */
88 CHAN5G(5500, 22), /* Channel 100 */
89 CHAN5G(5520, 23), /* Channel 104 */
90 CHAN5G(5540, 24), /* Channel 108 */
91 CHAN5G(5560, 25), /* Channel 112 */
92 CHAN5G(5580, 26), /* Channel 116 */
93 CHAN5G(5600, 27), /* Channel 120 */
94 CHAN5G(5620, 28), /* Channel 124 */
95 CHAN5G(5640, 29), /* Channel 128 */
96 CHAN5G(5660, 30), /* Channel 132 */
97 CHAN5G(5680, 31), /* Channel 136 */
98 CHAN5G(5700, 32), /* Channel 140 */
99 /* _We_ call this UNII 3 */
100 CHAN5G(5745, 33), /* Channel 149 */
101 CHAN5G(5765, 34), /* Channel 153 */
102 CHAN5G(5785, 35), /* Channel 157 */
103 CHAN5G(5805, 36), /* Channel 161 */
104 CHAN5G(5825, 37), /* Channel 165 */
105};
106
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -0800107static void ath_cache_conf_rate(struct ath_softc *sc,
108 struct ieee80211_conf *conf)
Sujithff37e332008-11-24 12:07:55 +0530109{
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800110 switch (conf->channel->band) {
111 case IEEE80211_BAND_2GHZ:
112 if (conf_is_ht20(conf))
113 sc->cur_rate_table =
114 sc->hw_rate_table[ATH9K_MODE_11NG_HT20];
115 else if (conf_is_ht40_minus(conf))
116 sc->cur_rate_table =
117 sc->hw_rate_table[ATH9K_MODE_11NG_HT40MINUS];
118 else if (conf_is_ht40_plus(conf))
119 sc->cur_rate_table =
120 sc->hw_rate_table[ATH9K_MODE_11NG_HT40PLUS];
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800121 else
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800122 sc->cur_rate_table =
123 sc->hw_rate_table[ATH9K_MODE_11G];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800124 break;
125 case IEEE80211_BAND_5GHZ:
126 if (conf_is_ht20(conf))
127 sc->cur_rate_table =
128 sc->hw_rate_table[ATH9K_MODE_11NA_HT20];
129 else if (conf_is_ht40_minus(conf))
130 sc->cur_rate_table =
131 sc->hw_rate_table[ATH9K_MODE_11NA_HT40MINUS];
132 else if (conf_is_ht40_plus(conf))
133 sc->cur_rate_table =
134 sc->hw_rate_table[ATH9K_MODE_11NA_HT40PLUS];
135 else
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800136 sc->cur_rate_table =
137 sc->hw_rate_table[ATH9K_MODE_11A];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800138 break;
139 default:
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -0800140 BUG_ON(1);
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800141 break;
142 }
Sujithff37e332008-11-24 12:07:55 +0530143}
144
145static void ath_update_txpow(struct ath_softc *sc)
146{
Sujithcbe61d82009-02-09 13:27:12 +0530147 struct ath_hw *ah = sc->sc_ah;
Sujithff37e332008-11-24 12:07:55 +0530148 u32 txpow;
149
Sujith17d79042009-02-09 13:27:03 +0530150 if (sc->curtxpow != sc->config.txpowlimit) {
151 ath9k_hw_set_txpowerlimit(ah, sc->config.txpowlimit);
Sujithff37e332008-11-24 12:07:55 +0530152 /* read back in case value is clamped */
153 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
Sujith17d79042009-02-09 13:27:03 +0530154 sc->curtxpow = txpow;
Sujithff37e332008-11-24 12:07:55 +0530155 }
156}
157
158static u8 parse_mpdudensity(u8 mpdudensity)
159{
160 /*
161 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
162 * 0 for no restriction
163 * 1 for 1/4 us
164 * 2 for 1/2 us
165 * 3 for 1 us
166 * 4 for 2 us
167 * 5 for 4 us
168 * 6 for 8 us
169 * 7 for 16 us
170 */
171 switch (mpdudensity) {
172 case 0:
173 return 0;
174 case 1:
175 case 2:
176 case 3:
177 /* Our lower layer calculations limit our precision to
178 1 microsecond */
179 return 1;
180 case 4:
181 return 2;
182 case 5:
183 return 4;
184 case 6:
185 return 8;
186 case 7:
187 return 16;
188 default:
189 return 0;
190 }
191}
192
193static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band)
194{
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400195 const struct ath_rate_table *rate_table = NULL;
Sujithff37e332008-11-24 12:07:55 +0530196 struct ieee80211_supported_band *sband;
197 struct ieee80211_rate *rate;
198 int i, maxrates;
199
200 switch (band) {
201 case IEEE80211_BAND_2GHZ:
202 rate_table = sc->hw_rate_table[ATH9K_MODE_11G];
203 break;
204 case IEEE80211_BAND_5GHZ:
205 rate_table = sc->hw_rate_table[ATH9K_MODE_11A];
206 break;
207 default:
208 break;
209 }
210
211 if (rate_table == NULL)
212 return;
213
214 sband = &sc->sbands[band];
215 rate = sc->rates[band];
216
217 if (rate_table->rate_cnt > ATH_RATE_MAX)
218 maxrates = ATH_RATE_MAX;
219 else
220 maxrates = rate_table->rate_cnt;
221
222 for (i = 0; i < maxrates; i++) {
223 rate[i].bitrate = rate_table->info[i].ratekbps / 100;
224 rate[i].hw_value = rate_table->info[i].ratecode;
Sujithf46730d2009-01-27 13:51:03 +0530225 if (rate_table->info[i].short_preamble) {
226 rate[i].hw_value_short = rate_table->info[i].ratecode |
227 rate_table->info[i].short_preamble;
228 rate[i].flags = IEEE80211_RATE_SHORT_PREAMBLE;
229 }
Sujithff37e332008-11-24 12:07:55 +0530230 sband->n_bitrates++;
Sujithf46730d2009-01-27 13:51:03 +0530231
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700232 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_CONFIG,
233 "Rate: %2dMbps, ratecode: %2d\n",
234 rate[i].bitrate / 10, rate[i].hw_value);
Sujithff37e332008-11-24 12:07:55 +0530235 }
236}
237
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530238static struct ath9k_channel *ath_get_curchannel(struct ath_softc *sc,
239 struct ieee80211_hw *hw)
240{
241 struct ieee80211_channel *curchan = hw->conf.channel;
242 struct ath9k_channel *channel;
243 u8 chan_idx;
244
245 chan_idx = curchan->hw_value;
246 channel = &sc->sc_ah->channels[chan_idx];
247 ath9k_update_ichannel(sc, hw, channel);
248 return channel;
249}
250
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700251static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -0700252{
253 unsigned long flags;
254 bool ret;
255
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700256 spin_lock_irqsave(&sc->sc_pm_lock, flags);
257 ret = ath9k_hw_setpower(sc->sc_ah, mode);
258 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -0700259
260 return ret;
261}
262
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700263void ath9k_ps_wakeup(struct ath_softc *sc)
264{
265 unsigned long flags;
266
267 spin_lock_irqsave(&sc->sc_pm_lock, flags);
268 if (++sc->ps_usecount != 1)
269 goto unlock;
270
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700271 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700272
273 unlock:
274 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
275}
276
277void ath9k_ps_restore(struct ath_softc *sc)
278{
279 unsigned long flags;
280
281 spin_lock_irqsave(&sc->sc_pm_lock, flags);
282 if (--sc->ps_usecount != 0)
283 goto unlock;
284
285 if (sc->ps_enabled &&
286 !(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
287 SC_OP_WAIT_FOR_CAB |
288 SC_OP_WAIT_FOR_PSPOLL_DATA |
289 SC_OP_WAIT_FOR_TX_ACK)))
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700290 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700291
292 unlock:
293 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
294}
295
Sujithff37e332008-11-24 12:07:55 +0530296/*
297 * Set/change channels. If the channel is really being changed, it's done
298 * by reseting the chip. To accomplish this we must first cleanup any pending
299 * DMA, then restart stuff.
300*/
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200301int ath_set_channel(struct ath_softc *sc, struct ieee80211_hw *hw,
302 struct ath9k_channel *hchan)
Sujithff37e332008-11-24 12:07:55 +0530303{
Sujithcbe61d82009-02-09 13:27:12 +0530304 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700305 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -0700306 struct ieee80211_conf *conf = &common->hw->conf;
Sujithff37e332008-11-24 12:07:55 +0530307 bool fastcc = true, stopped;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800308 struct ieee80211_channel *channel = hw->conf.channel;
309 int r;
Sujithff37e332008-11-24 12:07:55 +0530310
311 if (sc->sc_flags & SC_OP_INVALID)
312 return -EIO;
313
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +0530314 ath9k_ps_wakeup(sc);
315
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800316 /*
317 * This is only performed if the channel settings have
318 * actually changed.
319 *
320 * To switch channels clear any pending DMA operations;
321 * wait long enough for the RX fifo to drain, reset the
322 * hardware at the new frequency, and then re-enable
323 * the relevant bits of the h/w.
324 */
325 ath9k_hw_set_interrupts(ah, 0);
Sujith043a0402009-01-16 21:38:47 +0530326 ath_drain_all_txq(sc, false);
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800327 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530328
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800329 /* XXX: do not flush receive queue here. We don't want
330 * to flush data frames already in queue because of
331 * changing channel. */
Sujithff37e332008-11-24 12:07:55 +0530332
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800333 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
334 fastcc = false;
Sujithff37e332008-11-24 12:07:55 +0530335
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700336 ath_print(common, ATH_DBG_CONFIG,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -0700337 "(%u MHz) -> (%u MHz), conf_is_ht40: %d\n",
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700338 sc->sc_ah->curchan->channel,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -0700339 channel->center_freq, conf_is_ht40(conf));
Sujith99405f92008-11-24 12:08:35 +0530340
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800341 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800342
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800343 r = ath9k_hw_reset(ah, hchan, fastcc);
344 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700345 ath_print(common, ATH_DBG_FATAL,
346 "Unable to reset channel (%u Mhz) "
347 "reset status %d\n",
348 channel->center_freq, r);
Sujithff37e332008-11-24 12:07:55 +0530349 spin_unlock_bh(&sc->sc_resetlock);
Gabor Juhos39892792009-06-15 17:49:09 +0200350 goto ps_restore;
Sujithff37e332008-11-24 12:07:55 +0530351 }
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800352 spin_unlock_bh(&sc->sc_resetlock);
353
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800354 sc->sc_flags &= ~SC_OP_FULL_RESET;
355
356 if (ath_startrecv(sc) != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700357 ath_print(common, ATH_DBG_FATAL,
358 "Unable to restart recv logic\n");
Gabor Juhos39892792009-06-15 17:49:09 +0200359 r = -EIO;
360 goto ps_restore;
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800361 }
362
363 ath_cache_conf_rate(sc, &hw->conf);
364 ath_update_txpow(sc);
Sujith17d79042009-02-09 13:27:03 +0530365 ath9k_hw_set_interrupts(ah, sc->imask);
Gabor Juhos39892792009-06-15 17:49:09 +0200366
367 ps_restore:
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +0530368 ath9k_ps_restore(sc);
Gabor Juhos39892792009-06-15 17:49:09 +0200369 return r;
Sujithff37e332008-11-24 12:07:55 +0530370}
371
372/*
373 * This routine performs the periodic noise floor calibration function
374 * that is used to adjust and optimize the chip performance. This
375 * takes environmental changes (location, temperature) into account.
376 * When the task is complete, it reschedules itself depending on the
377 * appropriate interval that was calculated.
378 */
379static void ath_ani_calibrate(unsigned long data)
380{
Sujith20977d32009-02-20 15:13:28 +0530381 struct ath_softc *sc = (struct ath_softc *)data;
382 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700383 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530384 bool longcal = false;
385 bool shortcal = false;
386 bool aniflag = false;
387 unsigned int timestamp = jiffies_to_msecs(jiffies);
Sujith20977d32009-02-20 15:13:28 +0530388 u32 cal_interval, short_cal_interval;
Sujithff37e332008-11-24 12:07:55 +0530389
Sujith20977d32009-02-20 15:13:28 +0530390 short_cal_interval = (ah->opmode == NL80211_IFTYPE_AP) ?
391 ATH_AP_SHORT_CALINTERVAL : ATH_STA_SHORT_CALINTERVAL;
Sujithff37e332008-11-24 12:07:55 +0530392
393 /*
394 * don't calibrate when we're scanning.
395 * we are most likely not on our home channel.
396 */
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +0530397 spin_lock(&sc->ani_lock);
Sujith0c98de62009-03-03 10:16:45 +0530398 if (sc->sc_flags & SC_OP_SCANNING)
Sujith20977d32009-02-20 15:13:28 +0530399 goto set_timer;
Sujithff37e332008-11-24 12:07:55 +0530400
Jouni Malinen1ffc1c62009-05-19 17:01:39 +0300401 /* Only calibrate if awake */
402 if (sc->sc_ah->power_mode != ATH9K_PM_AWAKE)
403 goto set_timer;
404
405 ath9k_ps_wakeup(sc);
406
Sujithff37e332008-11-24 12:07:55 +0530407 /* Long calibration runs independently of short calibration. */
Sujith17d79042009-02-09 13:27:03 +0530408 if ((timestamp - sc->ani.longcal_timer) >= ATH_LONG_CALINTERVAL) {
Sujithff37e332008-11-24 12:07:55 +0530409 longcal = true;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700410 ath_print(common, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujith17d79042009-02-09 13:27:03 +0530411 sc->ani.longcal_timer = timestamp;
Sujithff37e332008-11-24 12:07:55 +0530412 }
413
Sujith17d79042009-02-09 13:27:03 +0530414 /* Short calibration applies only while caldone is false */
415 if (!sc->ani.caldone) {
Sujith20977d32009-02-20 15:13:28 +0530416 if ((timestamp - sc->ani.shortcal_timer) >= short_cal_interval) {
Sujithff37e332008-11-24 12:07:55 +0530417 shortcal = true;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700418 ath_print(common, ATH_DBG_ANI,
419 "shortcal @%lu\n", jiffies);
Sujith17d79042009-02-09 13:27:03 +0530420 sc->ani.shortcal_timer = timestamp;
421 sc->ani.resetcal_timer = timestamp;
Sujithff37e332008-11-24 12:07:55 +0530422 }
423 } else {
Sujith17d79042009-02-09 13:27:03 +0530424 if ((timestamp - sc->ani.resetcal_timer) >=
Sujithff37e332008-11-24 12:07:55 +0530425 ATH_RESTART_CALINTERVAL) {
Sujith17d79042009-02-09 13:27:03 +0530426 sc->ani.caldone = ath9k_hw_reset_calvalid(ah);
427 if (sc->ani.caldone)
428 sc->ani.resetcal_timer = timestamp;
Sujithff37e332008-11-24 12:07:55 +0530429 }
430 }
431
432 /* Verify whether we must check ANI */
Sujith20977d32009-02-20 15:13:28 +0530433 if ((timestamp - sc->ani.checkani_timer) >= ATH_ANI_POLLINTERVAL) {
Sujithff37e332008-11-24 12:07:55 +0530434 aniflag = true;
Sujith17d79042009-02-09 13:27:03 +0530435 sc->ani.checkani_timer = timestamp;
Sujithff37e332008-11-24 12:07:55 +0530436 }
437
438 /* Skip all processing if there's nothing to do. */
439 if (longcal || shortcal || aniflag) {
440 /* Call ANI routine if necessary */
441 if (aniflag)
Vasanthakumar Thiagarajan22e66a42009-08-19 16:23:40 +0530442 ath9k_hw_ani_monitor(ah, ah->curchan);
Sujithff37e332008-11-24 12:07:55 +0530443
444 /* Perform calibration if necessary */
445 if (longcal || shortcal) {
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700446 sc->ani.caldone =
447 ath9k_hw_calibrate(ah,
448 ah->curchan,
449 common->rx_chainmask,
450 longcal);
Sujithff37e332008-11-24 12:07:55 +0530451
Sujith379f0442009-04-13 21:56:48 +0530452 if (longcal)
453 sc->ani.noise_floor = ath9k_hw_getchan_noise(ah,
454 ah->curchan);
Sujithff37e332008-11-24 12:07:55 +0530455
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700456 ath_print(common, ATH_DBG_ANI,
457 " calibrate chan %u/%x nf: %d\n",
458 ah->curchan->channel,
459 ah->curchan->channelFlags,
460 sc->ani.noise_floor);
Sujithff37e332008-11-24 12:07:55 +0530461 }
462 }
463
Jouni Malinen1ffc1c62009-05-19 17:01:39 +0300464 ath9k_ps_restore(sc);
465
Sujith20977d32009-02-20 15:13:28 +0530466set_timer:
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +0530467 spin_unlock(&sc->ani_lock);
Sujithff37e332008-11-24 12:07:55 +0530468 /*
469 * Set timer interval based on previous results.
470 * The interval must be the shortest necessary to satisfy ANI,
471 * short calibration and long calibration.
472 */
Sujithaac92072008-12-02 18:37:54 +0530473 cal_interval = ATH_LONG_CALINTERVAL;
Sujith2660b812009-02-09 13:27:26 +0530474 if (sc->sc_ah->config.enable_ani)
Sujithaac92072008-12-02 18:37:54 +0530475 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
Sujith17d79042009-02-09 13:27:03 +0530476 if (!sc->ani.caldone)
Sujith20977d32009-02-20 15:13:28 +0530477 cal_interval = min(cal_interval, (u32)short_cal_interval);
Sujithff37e332008-11-24 12:07:55 +0530478
Sujith17d79042009-02-09 13:27:03 +0530479 mod_timer(&sc->ani.timer, jiffies + msecs_to_jiffies(cal_interval));
Sujithff37e332008-11-24 12:07:55 +0530480}
481
Sujith415f7382009-04-13 21:56:46 +0530482static void ath_start_ani(struct ath_softc *sc)
483{
484 unsigned long timestamp = jiffies_to_msecs(jiffies);
485
486 sc->ani.longcal_timer = timestamp;
487 sc->ani.shortcal_timer = timestamp;
488 sc->ani.checkani_timer = timestamp;
489
490 mod_timer(&sc->ani.timer,
491 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
492}
493
Sujithff37e332008-11-24 12:07:55 +0530494/*
495 * Update tx/rx chainmask. For legacy association,
496 * hard code chainmask to 1x1, for 11n association, use
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +0530497 * the chainmask configuration, for bt coexistence, use
498 * the chainmask configuration even in legacy mode.
Sujithff37e332008-11-24 12:07:55 +0530499 */
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200500void ath_update_chainmask(struct ath_softc *sc, int is_ht)
Sujithff37e332008-11-24 12:07:55 +0530501{
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700502 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700503 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700504
Sujith3d832612009-08-21 12:00:28 +0530505 if ((sc->sc_flags & SC_OP_SCANNING) || is_ht ||
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700506 (ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE)) {
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700507 common->tx_chainmask = ah->caps.tx_chainmask;
508 common->rx_chainmask = ah->caps.rx_chainmask;
Sujithff37e332008-11-24 12:07:55 +0530509 } else {
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700510 common->tx_chainmask = 1;
511 common->rx_chainmask = 1;
Sujithff37e332008-11-24 12:07:55 +0530512 }
513
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700514 ath_print(common, ATH_DBG_CONFIG,
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700515 "tx chmask: %d, rx chmask: %d\n",
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700516 common->tx_chainmask,
517 common->rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530518}
519
520static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
521{
522 struct ath_node *an;
523
524 an = (struct ath_node *)sta->drv_priv;
525
Sujith87792ef2009-03-30 15:28:48 +0530526 if (sc->sc_flags & SC_OP_TXAGGR) {
Sujithff37e332008-11-24 12:07:55 +0530527 ath_tx_node_init(sc, an);
Sujith9e98ac62009-07-23 15:32:34 +0530528 an->maxampdu = 1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
Sujith87792ef2009-03-30 15:28:48 +0530529 sta->ht_cap.ampdu_factor);
530 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400531 an->last_rssi = ATH_RSSI_DUMMY_MARKER;
Sujith87792ef2009-03-30 15:28:48 +0530532 }
Sujithff37e332008-11-24 12:07:55 +0530533}
534
535static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
536{
537 struct ath_node *an = (struct ath_node *)sta->drv_priv;
538
539 if (sc->sc_flags & SC_OP_TXAGGR)
540 ath_tx_node_cleanup(sc, an);
541}
542
543static void ath9k_tasklet(unsigned long data)
544{
545 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700546 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700547 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700548
Sujith17d79042009-02-09 13:27:03 +0530549 u32 status = sc->intrstatus;
Sujithff37e332008-11-24 12:07:55 +0530550
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400551 ath9k_ps_wakeup(sc);
552
Sujithff37e332008-11-24 12:07:55 +0530553 if (status & ATH9K_INT_FATAL) {
Sujithff37e332008-11-24 12:07:55 +0530554 ath_reset(sc, false);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400555 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530556 return;
Sujithff37e332008-11-24 12:07:55 +0530557 }
558
Sujith063d8be2009-03-30 15:28:49 +0530559 if (status & (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
560 spin_lock_bh(&sc->rx.rxflushlock);
561 ath_rx_tasklet(sc, 0);
562 spin_unlock_bh(&sc->rx.rxflushlock);
563 }
564
565 if (status & ATH9K_INT_TX)
566 ath_tx_tasklet(sc);
567
Gabor Juhos96148322009-07-24 17:27:21 +0200568 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
Jouni Malinen54ce8462009-05-19 17:01:40 +0300569 /*
570 * TSF sync does not look correct; remain awake to sync with
571 * the next Beacon.
572 */
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700573 ath_print(common, ATH_DBG_PS,
574 "TSFOOR - Sync with next Beacon\n");
Jouni Malinenccdfeab2009-05-20 21:59:08 +0300575 sc->sc_flags |= SC_OP_WAIT_FOR_BEACON | SC_OP_BEACON_SYNC;
Jouni Malinen54ce8462009-05-19 17:01:40 +0300576 }
577
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700578 if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530579 if (status & ATH9K_INT_GENTIMER)
580 ath_gen_timer_isr(sc->sc_ah);
581
Sujithff37e332008-11-24 12:07:55 +0530582 /* re-enable hardware interrupt */
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700583 ath9k_hw_set_interrupts(ah, sc->imask);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400584 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530585}
586
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100587irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530588{
Sujith063d8be2009-03-30 15:28:49 +0530589#define SCHED_INTR ( \
590 ATH9K_INT_FATAL | \
591 ATH9K_INT_RXORN | \
592 ATH9K_INT_RXEOL | \
593 ATH9K_INT_RX | \
594 ATH9K_INT_TX | \
595 ATH9K_INT_BMISS | \
596 ATH9K_INT_CST | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530597 ATH9K_INT_TSFOOR | \
598 ATH9K_INT_GENTIMER)
Sujith063d8be2009-03-30 15:28:49 +0530599
Sujithff37e332008-11-24 12:07:55 +0530600 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530601 struct ath_hw *ah = sc->sc_ah;
Sujithff37e332008-11-24 12:07:55 +0530602 enum ath9k_int status;
603 bool sched = false;
604
Sujith063d8be2009-03-30 15:28:49 +0530605 /*
606 * The hardware is not ready/present, don't
607 * touch anything. Note this can happen early
608 * on if the IRQ is shared.
609 */
610 if (sc->sc_flags & SC_OP_INVALID)
611 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530612
Sujithff37e332008-11-24 12:07:55 +0530613
Sujith063d8be2009-03-30 15:28:49 +0530614 /* shared irq, not for us */
Sujithff37e332008-11-24 12:07:55 +0530615
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400616 if (!ath9k_hw_intrpend(ah))
Sujith063d8be2009-03-30 15:28:49 +0530617 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530618
Sujith063d8be2009-03-30 15:28:49 +0530619 /*
620 * Figure out the reason(s) for the interrupt. Note
621 * that the hal returns a pseudo-ISR that may include
622 * bits we haven't explicitly enabled so we mask the
623 * value to insure we only process bits we requested.
624 */
625 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
626 status &= sc->imask; /* discard unasked-for bits */
627
628 /*
629 * If there are no status bits set, then this interrupt was not
630 * for me (should have been caught above).
631 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400632 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530633 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530634
635 /* Cache the status */
636 sc->intrstatus = status;
637
638 if (status & SCHED_INTR)
639 sched = true;
640
641 /*
642 * If a FATAL or RXORN interrupt is received, we have to reset the
643 * chip immediately.
644 */
645 if (status & (ATH9K_INT_FATAL | ATH9K_INT_RXORN))
646 goto chip_reset;
647
648 if (status & ATH9K_INT_SWBA)
649 tasklet_schedule(&sc->bcon_tasklet);
650
651 if (status & ATH9K_INT_TXURN)
652 ath9k_hw_updatetxtriglevel(ah, true);
653
654 if (status & ATH9K_INT_MIB) {
655 /*
656 * Disable interrupts until we service the MIB
657 * interrupt; otherwise it will continue to
658 * fire.
659 */
660 ath9k_hw_set_interrupts(ah, 0);
661 /*
662 * Let the hal handle the event. We assume
663 * it will clear whatever condition caused
664 * the interrupt.
665 */
Vasanthakumar Thiagarajan22e66a42009-08-19 16:23:40 +0530666 ath9k_hw_procmibevent(ah);
Sujith063d8be2009-03-30 15:28:49 +0530667 ath9k_hw_set_interrupts(ah, sc->imask);
668 }
669
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400670 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
671 if (status & ATH9K_INT_TIM_TIMER) {
Sujith063d8be2009-03-30 15:28:49 +0530672 /* Clear RxAbort bit so that we can
673 * receive frames */
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700674 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400675 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith063d8be2009-03-30 15:28:49 +0530676 sc->sc_flags |= SC_OP_WAIT_FOR_BEACON;
677 }
Sujith063d8be2009-03-30 15:28:49 +0530678
679chip_reset:
680
Sujith817e11d2008-12-07 21:42:44 +0530681 ath_debug_stat_interrupt(sc, status);
682
Sujithff37e332008-11-24 12:07:55 +0530683 if (sched) {
684 /* turn off every interrupt except SWBA */
Sujith17d79042009-02-09 13:27:03 +0530685 ath9k_hw_set_interrupts(ah, (sc->imask & ATH9K_INT_SWBA));
Sujithff37e332008-11-24 12:07:55 +0530686 tasklet_schedule(&sc->intr_tq);
687 }
688
689 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530690
691#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530692}
693
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700694static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530695 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +0530696 enum nl80211_channel_type channel_type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700697{
698 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700699
700 switch (chan->band) {
701 case IEEE80211_BAND_2GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530702 switch(channel_type) {
703 case NL80211_CHAN_NO_HT:
704 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700705 chanmode = CHANNEL_G_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530706 break;
707 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700708 chanmode = CHANNEL_G_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530709 break;
710 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700711 chanmode = CHANNEL_G_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530712 break;
713 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700714 break;
715 case IEEE80211_BAND_5GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530716 switch(channel_type) {
717 case NL80211_CHAN_NO_HT:
718 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700719 chanmode = CHANNEL_A_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530720 break;
721 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700722 chanmode = CHANNEL_A_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530723 break;
724 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700725 chanmode = CHANNEL_A_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530726 break;
727 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700728 break;
729 default:
730 break;
731 }
732
733 return chanmode;
734}
735
Jouni Malinen6ace2892008-12-17 13:32:17 +0200736static int ath_setkey_tkip(struct ath_softc *sc, u16 keyix, const u8 *key,
Jouni Malinen3f53dd62009-02-26 11:18:46 +0200737 struct ath9k_keyval *hk, const u8 *addr,
738 bool authenticator)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700739{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200740 const u8 *key_rxmic;
741 const u8 *key_txmic;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700742
Jouni Malinen6ace2892008-12-17 13:32:17 +0200743 key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
744 key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700745
746 if (addr == NULL) {
Jouni Malinend216aaa2009-03-03 13:11:53 +0200747 /*
748 * Group key installation - only two key cache entries are used
749 * regardless of splitmic capability since group key is only
750 * used either for TX or RX.
751 */
Jouni Malinen3f53dd62009-02-26 11:18:46 +0200752 if (authenticator) {
753 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
754 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_mic));
755 } else {
756 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
757 memcpy(hk->kv_txmic, key_rxmic, sizeof(hk->kv_mic));
758 }
Jouni Malinend216aaa2009-03-03 13:11:53 +0200759 return ath9k_hw_set_keycache_entry(sc->sc_ah, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700760 }
Sujith17d79042009-02-09 13:27:03 +0530761 if (!sc->splitmic) {
Jouni Malinend216aaa2009-03-03 13:11:53 +0200762 /* TX and RX keys share the same key cache entry. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700763 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
764 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
Jouni Malinend216aaa2009-03-03 13:11:53 +0200765 return ath9k_hw_set_keycache_entry(sc->sc_ah, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700766 }
Jouni Malinend216aaa2009-03-03 13:11:53 +0200767
768 /* Separate key cache entries for TX and RX */
769
770 /* TX key goes at first index, RX key at +32. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700771 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
Jouni Malinend216aaa2009-03-03 13:11:53 +0200772 if (!ath9k_hw_set_keycache_entry(sc->sc_ah, keyix, hk, NULL)) {
773 /* TX MIC entry failed. No need to proceed further */
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700774 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
775 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700776 return 0;
777 }
778
779 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
780 /* XXX delete tx key on failure? */
Jouni Malinend216aaa2009-03-03 13:11:53 +0200781 return ath9k_hw_set_keycache_entry(sc->sc_ah, keyix + 32, hk, addr);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200782}
783
784static int ath_reserve_key_cache_slot_tkip(struct ath_softc *sc)
785{
786 int i;
787
Sujith17d79042009-02-09 13:27:03 +0530788 for (i = IEEE80211_WEP_NKID; i < sc->keymax / 2; i++) {
789 if (test_bit(i, sc->keymap) ||
790 test_bit(i + 64, sc->keymap))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200791 continue; /* At least one part of TKIP key allocated */
Sujith17d79042009-02-09 13:27:03 +0530792 if (sc->splitmic &&
793 (test_bit(i + 32, sc->keymap) ||
794 test_bit(i + 64 + 32, sc->keymap)))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200795 continue; /* At least one part of TKIP key allocated */
796
797 /* Found a free slot for a TKIP key */
798 return i;
799 }
800 return -1;
801}
802
803static int ath_reserve_key_cache_slot(struct ath_softc *sc)
804{
805 int i;
806
807 /* First, try to find slots that would not be available for TKIP. */
Sujith17d79042009-02-09 13:27:03 +0530808 if (sc->splitmic) {
809 for (i = IEEE80211_WEP_NKID; i < sc->keymax / 4; i++) {
810 if (!test_bit(i, sc->keymap) &&
811 (test_bit(i + 32, sc->keymap) ||
812 test_bit(i + 64, sc->keymap) ||
813 test_bit(i + 64 + 32, sc->keymap)))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200814 return i;
Sujith17d79042009-02-09 13:27:03 +0530815 if (!test_bit(i + 32, sc->keymap) &&
816 (test_bit(i, sc->keymap) ||
817 test_bit(i + 64, sc->keymap) ||
818 test_bit(i + 64 + 32, sc->keymap)))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200819 return i + 32;
Sujith17d79042009-02-09 13:27:03 +0530820 if (!test_bit(i + 64, sc->keymap) &&
821 (test_bit(i , sc->keymap) ||
822 test_bit(i + 32, sc->keymap) ||
823 test_bit(i + 64 + 32, sc->keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200824 return i + 64;
Sujith17d79042009-02-09 13:27:03 +0530825 if (!test_bit(i + 64 + 32, sc->keymap) &&
826 (test_bit(i, sc->keymap) ||
827 test_bit(i + 32, sc->keymap) ||
828 test_bit(i + 64, sc->keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200829 return i + 64 + 32;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200830 }
831 } else {
Sujith17d79042009-02-09 13:27:03 +0530832 for (i = IEEE80211_WEP_NKID; i < sc->keymax / 2; i++) {
833 if (!test_bit(i, sc->keymap) &&
834 test_bit(i + 64, sc->keymap))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200835 return i;
Sujith17d79042009-02-09 13:27:03 +0530836 if (test_bit(i, sc->keymap) &&
837 !test_bit(i + 64, sc->keymap))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200838 return i + 64;
839 }
840 }
841
842 /* No partially used TKIP slots, pick any available slot */
Sujith17d79042009-02-09 13:27:03 +0530843 for (i = IEEE80211_WEP_NKID; i < sc->keymax; i++) {
Jouni Malinenbe2864c2008-12-18 14:33:00 +0200844 /* Do not allow slots that could be needed for TKIP group keys
845 * to be used. This limitation could be removed if we know that
846 * TKIP will not be used. */
847 if (i >= 64 && i < 64 + IEEE80211_WEP_NKID)
848 continue;
Sujith17d79042009-02-09 13:27:03 +0530849 if (sc->splitmic) {
Jouni Malinenbe2864c2008-12-18 14:33:00 +0200850 if (i >= 32 && i < 32 + IEEE80211_WEP_NKID)
851 continue;
852 if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID)
853 continue;
854 }
855
Sujith17d79042009-02-09 13:27:03 +0530856 if (!test_bit(i, sc->keymap))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200857 return i; /* Found a free slot for a key */
858 }
859
860 /* No free slot found */
861 return -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700862}
863
864static int ath_key_config(struct ath_softc *sc,
Jouni Malinen3f53dd62009-02-26 11:18:46 +0200865 struct ieee80211_vif *vif,
Johannes Bergdc822b52008-12-29 12:55:09 +0100866 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700867 struct ieee80211_key_conf *key)
868{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700869 struct ath9k_keyval hk;
870 const u8 *mac = NULL;
871 int ret = 0;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200872 int idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700873
874 memset(&hk, 0, sizeof(hk));
875
876 switch (key->alg) {
877 case ALG_WEP:
878 hk.kv_type = ATH9K_CIPHER_WEP;
879 break;
880 case ALG_TKIP:
881 hk.kv_type = ATH9K_CIPHER_TKIP;
882 break;
883 case ALG_CCMP:
884 hk.kv_type = ATH9K_CIPHER_AES_CCM;
885 break;
886 default:
Jouni Malinenca470b22009-01-08 13:32:12 +0200887 return -EOPNOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700888 }
889
Jouni Malinen6ace2892008-12-17 13:32:17 +0200890 hk.kv_len = key->keylen;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700891 memcpy(hk.kv_val, key->key, key->keylen);
892
Jouni Malinen6ace2892008-12-17 13:32:17 +0200893 if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
894 /* For now, use the default keys for broadcast keys. This may
895 * need to change with virtual interfaces. */
896 idx = key->keyidx;
897 } else if (key->keyidx) {
Johannes Bergdc822b52008-12-29 12:55:09 +0100898 if (WARN_ON(!sta))
899 return -EOPNOTSUPP;
900 mac = sta->addr;
901
Jouni Malinen6ace2892008-12-17 13:32:17 +0200902 if (vif->type != NL80211_IFTYPE_AP) {
903 /* Only keyidx 0 should be used with unicast key, but
904 * allow this for client mode for now. */
905 idx = key->keyidx;
906 } else
907 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700908 } else {
Johannes Bergdc822b52008-12-29 12:55:09 +0100909 if (WARN_ON(!sta))
910 return -EOPNOTSUPP;
911 mac = sta->addr;
912
Jouni Malinen6ace2892008-12-17 13:32:17 +0200913 if (key->alg == ALG_TKIP)
914 idx = ath_reserve_key_cache_slot_tkip(sc);
915 else
916 idx = ath_reserve_key_cache_slot(sc);
917 if (idx < 0)
Jouni Malinenca470b22009-01-08 13:32:12 +0200918 return -ENOSPC; /* no free key cache entries */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700919 }
920
921 if (key->alg == ALG_TKIP)
Jouni Malinen3f53dd62009-02-26 11:18:46 +0200922 ret = ath_setkey_tkip(sc, idx, key->key, &hk, mac,
923 vif->type == NL80211_IFTYPE_AP);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700924 else
Jouni Malinend216aaa2009-03-03 13:11:53 +0200925 ret = ath9k_hw_set_keycache_entry(sc->sc_ah, idx, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700926
927 if (!ret)
928 return -EIO;
929
Sujith17d79042009-02-09 13:27:03 +0530930 set_bit(idx, sc->keymap);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200931 if (key->alg == ALG_TKIP) {
Sujith17d79042009-02-09 13:27:03 +0530932 set_bit(idx + 64, sc->keymap);
933 if (sc->splitmic) {
934 set_bit(idx + 32, sc->keymap);
935 set_bit(idx + 64 + 32, sc->keymap);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200936 }
937 }
938
939 return idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700940}
941
942static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
943{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200944 ath9k_hw_keyreset(sc->sc_ah, key->hw_key_idx);
945 if (key->hw_key_idx < IEEE80211_WEP_NKID)
946 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700947
Sujith17d79042009-02-09 13:27:03 +0530948 clear_bit(key->hw_key_idx, sc->keymap);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200949 if (key->alg != ALG_TKIP)
950 return;
951
Sujith17d79042009-02-09 13:27:03 +0530952 clear_bit(key->hw_key_idx + 64, sc->keymap);
953 if (sc->splitmic) {
954 clear_bit(key->hw_key_idx + 32, sc->keymap);
955 clear_bit(key->hw_key_idx + 64 + 32, sc->keymap);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200956 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700957}
958
Sujitheb2599c2009-01-23 11:20:44 +0530959static void setup_ht_cap(struct ath_softc *sc,
960 struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700961{
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700962 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Senthil Balasubramanian140add22009-06-24 18:56:42 +0530963 u8 tx_streams, rx_streams;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700964
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200965 ht_info->ht_supported = true;
966 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
967 IEEE80211_HT_CAP_SM_PS |
968 IEEE80211_HT_CAP_SGI_40 |
969 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700970
Sujith9e98ac62009-07-23 15:32:34 +0530971 ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
972 ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8;
Sujitheb2599c2009-01-23 11:20:44 +0530973
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200974 /* set up supported mcs set */
975 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700976 tx_streams = !(common->tx_chainmask & (common->tx_chainmask - 1)) ?
977 1 : 2;
978 rx_streams = !(common->rx_chainmask & (common->rx_chainmask - 1)) ?
979 1 : 2;
Sujitheb2599c2009-01-23 11:20:44 +0530980
Senthil Balasubramanian140add22009-06-24 18:56:42 +0530981 if (tx_streams != rx_streams) {
Luis R. Rodriguez43c27612009-09-13 21:07:07 -0700982 ath_print(common, ATH_DBG_CONFIG,
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700983 "TX streams %d, RX streams: %d\n",
984 tx_streams, rx_streams);
Senthil Balasubramanian140add22009-06-24 18:56:42 +0530985 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
986 ht_info->mcs.tx_params |= ((tx_streams - 1) <<
987 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
Sujitheb2599c2009-01-23 11:20:44 +0530988 }
989
Senthil Balasubramanian140add22009-06-24 18:56:42 +0530990 ht_info->mcs.rx_mask[0] = 0xff;
991 if (rx_streams >= 2)
992 ht_info->mcs.rx_mask[1] = 0xff;
993
994 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700995}
996
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530997static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530998 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530999 struct ieee80211_bss_conf *bss_conf)
1000{
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07001001 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001002 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301003
1004 if (bss_conf->assoc) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001005 ath_print(common, ATH_DBG_CONFIG,
1006 "Bss Info ASSOC %d, bssid: %pM\n",
1007 bss_conf->aid, common->curbssid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301008
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301009 /* New association, store aid */
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001010 common->curaid = bss_conf->aid;
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07001011 ath9k_hw_write_associd(ah);
Jouni Malinenccdfeab2009-05-20 21:59:08 +03001012
Senthil Balasubramanian2664f202009-06-24 18:56:39 +05301013 /*
1014 * Request a re-configuration of Beacon related timers
1015 * on the receipt of the first Beacon frame (i.e.,
1016 * after time sync with the AP).
1017 */
1018 sc->sc_flags |= SC_OP_BEACON_SYNC;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301019
1020 /* Configure the beacon */
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001021 ath_beacon_config(sc, vif);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301022
1023 /* Reset rssi stats */
Vasanthakumar Thiagarajan22e66a42009-08-19 16:23:40 +05301024 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301025
Sujith415f7382009-04-13 21:56:46 +05301026 ath_start_ani(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301027 } else {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001028 ath_print(common, ATH_DBG_CONFIG, "Bss Info DISASSOC\n");
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001029 common->curaid = 0;
Senthil Balasubramanianf38faa32009-06-24 18:56:40 +05301030 /* Stop ANI */
1031 del_timer_sync(&sc->ani.timer);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301032 }
1033}
1034
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301035/********************************/
1036/* LED functions */
1037/********************************/
1038
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301039static void ath_led_blink_work(struct work_struct *work)
1040{
1041 struct ath_softc *sc = container_of(work, struct ath_softc,
1042 ath_led_blink_work.work);
1043
1044 if (!(sc->sc_flags & SC_OP_LED_ASSOCIATED))
1045 return;
Vasanthakumar Thiagarajan85067c02009-03-14 19:59:41 +05301046
1047 if ((sc->led_on_duration == ATH_LED_ON_DURATION_IDLE) ||
1048 (sc->led_off_duration == ATH_LED_OFF_DURATION_IDLE))
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301049 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 0);
Vasanthakumar Thiagarajan85067c02009-03-14 19:59:41 +05301050 else
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301051 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin,
Vasanthakumar Thiagarajan85067c02009-03-14 19:59:41 +05301052 (sc->sc_flags & SC_OP_LED_ON) ? 1 : 0);
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301053
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001054 ieee80211_queue_delayed_work(sc->hw,
1055 &sc->ath_led_blink_work,
1056 (sc->sc_flags & SC_OP_LED_ON) ?
1057 msecs_to_jiffies(sc->led_off_duration) :
1058 msecs_to_jiffies(sc->led_on_duration));
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301059
Vasanthakumar Thiagarajan85067c02009-03-14 19:59:41 +05301060 sc->led_on_duration = sc->led_on_cnt ?
1061 max((ATH_LED_ON_DURATION_IDLE - sc->led_on_cnt), 25) :
1062 ATH_LED_ON_DURATION_IDLE;
1063 sc->led_off_duration = sc->led_off_cnt ?
1064 max((ATH_LED_OFF_DURATION_IDLE - sc->led_off_cnt), 10) :
1065 ATH_LED_OFF_DURATION_IDLE;
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301066 sc->led_on_cnt = sc->led_off_cnt = 0;
1067 if (sc->sc_flags & SC_OP_LED_ON)
1068 sc->sc_flags &= ~SC_OP_LED_ON;
1069 else
1070 sc->sc_flags |= SC_OP_LED_ON;
1071}
1072
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301073static void ath_led_brightness(struct led_classdev *led_cdev,
1074 enum led_brightness brightness)
1075{
1076 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
1077 struct ath_softc *sc = led->sc;
1078
1079 switch (brightness) {
1080 case LED_OFF:
1081 if (led->led_type == ATH_LED_ASSOC ||
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301082 led->led_type == ATH_LED_RADIO) {
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301083 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin,
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301084 (led->led_type == ATH_LED_RADIO));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301085 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301086 if (led->led_type == ATH_LED_RADIO)
1087 sc->sc_flags &= ~SC_OP_LED_ON;
1088 } else {
1089 sc->led_off_cnt++;
1090 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301091 break;
1092 case LED_FULL:
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301093 if (led->led_type == ATH_LED_ASSOC) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301094 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001095 ieee80211_queue_delayed_work(sc->hw,
1096 &sc->ath_led_blink_work, 0);
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301097 } else if (led->led_type == ATH_LED_RADIO) {
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301098 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 0);
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301099 sc->sc_flags |= SC_OP_LED_ON;
1100 } else {
1101 sc->led_on_cnt++;
1102 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301103 break;
1104 default:
1105 break;
1106 }
1107}
1108
1109static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
1110 char *trigger)
1111{
1112 int ret;
1113
1114 led->sc = sc;
1115 led->led_cdev.name = led->name;
1116 led->led_cdev.default_trigger = trigger;
1117 led->led_cdev.brightness_set = ath_led_brightness;
1118
1119 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
1120 if (ret)
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001121 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
1122 "Failed to register led:%s", led->name);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301123 else
1124 led->registered = 1;
1125 return ret;
1126}
1127
1128static void ath_unregister_led(struct ath_led *led)
1129{
1130 if (led->registered) {
1131 led_classdev_unregister(&led->led_cdev);
1132 led->registered = 0;
1133 }
1134}
1135
1136static void ath_deinit_leds(struct ath_softc *sc)
1137{
1138 ath_unregister_led(&sc->assoc_led);
1139 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
1140 ath_unregister_led(&sc->tx_led);
1141 ath_unregister_led(&sc->rx_led);
1142 ath_unregister_led(&sc->radio_led);
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301143 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301144}
1145
1146static void ath_init_leds(struct ath_softc *sc)
1147{
1148 char *trigger;
1149 int ret;
1150
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301151 if (AR_SREV_9287(sc->sc_ah))
1152 sc->sc_ah->led_pin = ATH_LED_PIN_9287;
1153 else
1154 sc->sc_ah->led_pin = ATH_LED_PIN_DEF;
1155
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301156 /* Configure gpio 1 for output */
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301157 ath9k_hw_cfg_output(sc->sc_ah, sc->sc_ah->led_pin,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301158 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1159 /* LED off, active low */
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301160 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301161
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301162 INIT_DELAYED_WORK(&sc->ath_led_blink_work, ath_led_blink_work);
1163
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301164 trigger = ieee80211_get_radio_led_name(sc->hw);
1165 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
Danny Kukawka0818cb82009-01-31 15:52:09 +01001166 "ath9k-%s::radio", wiphy_name(sc->hw->wiphy));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301167 ret = ath_register_led(sc, &sc->radio_led, trigger);
1168 sc->radio_led.led_type = ATH_LED_RADIO;
1169 if (ret)
1170 goto fail;
1171
1172 trigger = ieee80211_get_assoc_led_name(sc->hw);
1173 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
Danny Kukawka0818cb82009-01-31 15:52:09 +01001174 "ath9k-%s::assoc", wiphy_name(sc->hw->wiphy));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301175 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1176 sc->assoc_led.led_type = ATH_LED_ASSOC;
1177 if (ret)
1178 goto fail;
1179
1180 trigger = ieee80211_get_tx_led_name(sc->hw);
1181 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
Danny Kukawka0818cb82009-01-31 15:52:09 +01001182 "ath9k-%s::tx", wiphy_name(sc->hw->wiphy));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301183 ret = ath_register_led(sc, &sc->tx_led, trigger);
1184 sc->tx_led.led_type = ATH_LED_TX;
1185 if (ret)
1186 goto fail;
1187
1188 trigger = ieee80211_get_rx_led_name(sc->hw);
1189 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
Danny Kukawka0818cb82009-01-31 15:52:09 +01001190 "ath9k-%s::rx", wiphy_name(sc->hw->wiphy));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301191 ret = ath_register_led(sc, &sc->rx_led, trigger);
1192 sc->rx_led.led_type = ATH_LED_RX;
1193 if (ret)
1194 goto fail;
1195
1196 return;
1197
1198fail:
Luis R. Rodriguez35c95ab2009-07-27 11:53:03 -07001199 cancel_delayed_work_sync(&sc->ath_led_blink_work);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301200 ath_deinit_leds(sc);
1201}
1202
Jouni Malinen7ec3e512009-03-03 19:23:37 +02001203void ath_radio_enable(struct ath_softc *sc)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301204{
Sujithcbe61d82009-02-09 13:27:12 +05301205 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001206 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001207 struct ieee80211_channel *channel = sc->hw->conf.channel;
1208 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301209
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301210 ath9k_ps_wakeup(sc);
Vivek Natarajan93b1b372009-09-17 09:24:58 +05301211 ath9k_hw_configpcipowersave(ah, 0, 0);
Sujithd2f5b3a2009-04-13 21:56:25 +05301212
Vasanthakumar Thiagarajan159cd462009-06-13 14:50:25 +05301213 if (!ah->curchan)
1214 ah->curchan = ath_get_curchannel(sc, sc->hw);
1215
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301216 spin_lock_bh(&sc->sc_resetlock);
Sujith2660b812009-02-09 13:27:26 +05301217 r = ath9k_hw_reset(ah, ah->curchan, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001218 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001219 ath_print(common, ATH_DBG_FATAL,
1220 "Unable to reset channel %u (%uMhz) ",
1221 "reset status %d\n",
1222 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301223 }
1224 spin_unlock_bh(&sc->sc_resetlock);
1225
1226 ath_update_txpow(sc);
1227 if (ath_startrecv(sc) != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001228 ath_print(common, ATH_DBG_FATAL,
1229 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301230 return;
1231 }
1232
1233 if (sc->sc_flags & SC_OP_BEACONS)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001234 ath_beacon_config(sc, NULL); /* restart beacons */
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301235
1236 /* Re-Enable interrupts */
Sujith17d79042009-02-09 13:27:03 +05301237 ath9k_hw_set_interrupts(ah, sc->imask);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301238
1239 /* Enable LED */
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301240 ath9k_hw_cfg_output(ah, ah->led_pin,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301241 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301242 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301243
1244 ieee80211_wake_queues(sc->hw);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301245 ath9k_ps_restore(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301246}
1247
Jouni Malinen7ec3e512009-03-03 19:23:37 +02001248void ath_radio_disable(struct ath_softc *sc)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301249{
Sujithcbe61d82009-02-09 13:27:12 +05301250 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001251 struct ieee80211_channel *channel = sc->hw->conf.channel;
1252 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301253
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301254 ath9k_ps_wakeup(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301255 ieee80211_stop_queues(sc->hw);
1256
1257 /* Disable LED */
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301258 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
1259 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301260
1261 /* Disable interrupts */
1262 ath9k_hw_set_interrupts(ah, 0);
1263
Sujith043a0402009-01-16 21:38:47 +05301264 ath_drain_all_txq(sc, false); /* clear pending tx frames */
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301265 ath_stoprecv(sc); /* turn off frame recv */
1266 ath_flushrecv(sc); /* flush recv queue */
1267
Vasanthakumar Thiagarajan159cd462009-06-13 14:50:25 +05301268 if (!ah->curchan)
1269 ah->curchan = ath_get_curchannel(sc, sc->hw);
1270
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301271 spin_lock_bh(&sc->sc_resetlock);
Sujith2660b812009-02-09 13:27:26 +05301272 r = ath9k_hw_reset(ah, ah->curchan, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001273 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001274 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
1275 "Unable to reset channel %u (%uMhz) "
1276 "reset status %d\n",
1277 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301278 }
1279 spin_unlock_bh(&sc->sc_resetlock);
1280
1281 ath9k_hw_phy_disable(ah);
Vivek Natarajan93b1b372009-09-17 09:24:58 +05301282 ath9k_hw_configpcipowersave(ah, 1, 1);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301283 ath9k_ps_restore(sc);
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001284 ath9k_setpower(sc, ATH9K_PM_FULL_SLEEP);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301285}
1286
Gabor Juhos5077fd32009-03-06 11:17:55 +01001287/*******************/
1288/* Rfkill */
1289/*******************/
1290
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301291static bool ath_is_rfkill_set(struct ath_softc *sc)
1292{
Sujithcbe61d82009-02-09 13:27:12 +05301293 struct ath_hw *ah = sc->sc_ah;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301294
Sujith2660b812009-02-09 13:27:26 +05301295 return ath9k_hw_gpio_get(ah, ah->rfkill_gpio) ==
1296 ah->rfkill_polarity;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301297}
1298
Johannes Berg3b319aa2009-06-13 14:50:26 +05301299static void ath9k_rfkill_poll_state(struct ieee80211_hw *hw)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301300{
Johannes Berg3b319aa2009-06-13 14:50:26 +05301301 struct ath_wiphy *aphy = hw->priv;
1302 struct ath_softc *sc = aphy->sc;
1303 bool blocked = !!ath_is_rfkill_set(sc);
1304
1305 wiphy_rfkill_set_hw_state(hw->wiphy, blocked);
Johannes Berg19d337d2009-06-02 13:01:37 +02001306}
1307
Johannes Berg3b319aa2009-06-13 14:50:26 +05301308static void ath_start_rfkill_poll(struct ath_softc *sc)
Johannes Berg19d337d2009-06-02 13:01:37 +02001309{
Johannes Berg3b319aa2009-06-13 14:50:26 +05301310 struct ath_hw *ah = sc->sc_ah;
Johannes Berg19d337d2009-06-02 13:01:37 +02001311
Johannes Berg3b319aa2009-06-13 14:50:26 +05301312 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1313 wiphy_rfkill_start_polling(sc->hw->wiphy);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301314}
1315
Luis R. Rodriguez25688352009-10-06 21:19:09 -04001316static void ath_clean_core(struct ath_softc *sc);
1317static void ath9k_uninit_hw(struct ath_softc *sc);
1318
Gabor Juhos6baff7f2009-01-14 20:17:06 +01001319void ath_cleanup(struct ath_softc *sc)
Gabor Juhos39c3c2f2009-01-14 20:17:05 +01001320{
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -07001321 struct ath_hw *ah = sc->sc_ah;
1322 struct ath_common *common = ath9k_hw_common(ah);
1323
Luis R. Rodriguez25688352009-10-06 21:19:09 -04001324 ath_clean_core(sc);
Gabor Juhos39c3c2f2009-01-14 20:17:05 +01001325 free_irq(sc->irq, sc);
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -07001326 ath_bus_cleanup(common);
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001327 kfree(sc->sec_wiphy);
Gabor Juhos39c3c2f2009-01-14 20:17:05 +01001328 ieee80211_free_hw(sc->hw);
Luis R. Rodriguez25688352009-10-06 21:19:09 -04001329
1330 ath9k_uninit_hw(sc);
Gabor Juhos39c3c2f2009-01-14 20:17:05 +01001331}
1332
Luis R. Rodriguez7fda1662009-10-06 21:19:08 -04001333static void ath9k_uninit_hw(struct ath_softc *sc)
1334{
1335 struct ath_hw *ah = sc->sc_ah;
1336
1337 BUG_ON(!ah);
1338
1339 ath9k_exit_debug(ah);
1340 ath9k_hw_detach(ah);
1341 sc->sc_ah = NULL;
1342}
1343
Luis R. Rodriguez25688352009-10-06 21:19:09 -04001344static void ath_clean_core(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301345{
1346 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001347 struct ath_hw *ah = sc->sc_ah;
Sujith9c84b792008-10-29 10:17:13 +05301348 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301349
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301350 ath9k_ps_wakeup(sc);
1351
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001352 dev_dbg(sc->dev, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301353
Luis R. Rodriguez35c95ab2009-07-27 11:53:03 -07001354 ath_deinit_leds(sc);
Sujithe31f7b92009-09-23 13:49:12 +05301355 wiphy_rfkill_stop_polling(sc->hw->wiphy);
Luis R. Rodriguez35c95ab2009-07-27 11:53:03 -07001356
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001357 for (i = 0; i < sc->num_sec_wiphy; i++) {
1358 struct ath_wiphy *aphy = sc->sec_wiphy[i];
1359 if (aphy == NULL)
1360 continue;
1361 sc->sec_wiphy[i] = NULL;
1362 ieee80211_unregister_hw(aphy->hw);
1363 ieee80211_free_hw(aphy->hw);
1364 }
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301365 ieee80211_unregister_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301366 ath_rx_cleanup(sc);
1367 ath_tx_cleanup(sc);
1368
Sujith9c84b792008-10-29 10:17:13 +05301369 tasklet_kill(&sc->intr_tq);
1370 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301371
Sujith9c84b792008-10-29 10:17:13 +05301372 if (!(sc->sc_flags & SC_OP_INVALID))
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001373 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301374
Sujith9c84b792008-10-29 10:17:13 +05301375 /* cleanup tx queues */
1376 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1377 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301378 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith9c84b792008-10-29 10:17:13 +05301379
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001380 if ((sc->btcoex.no_stomp_timer) &&
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001381 ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001382 ath_gen_timer_free(ah, sc->btcoex.no_stomp_timer);
Luis R. Rodriguez25688352009-10-06 21:19:09 -04001383}
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05301384
Luis R. Rodriguez25688352009-10-06 21:19:09 -04001385void ath_detach(struct ath_softc *sc)
1386{
1387 ath_clean_core(sc);
Luis R. Rodriguez7fda1662009-10-06 21:19:08 -04001388 ath9k_uninit_hw(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301389}
1390
Bob Copelande3bb2492009-03-30 22:30:30 -04001391static int ath9k_reg_notifier(struct wiphy *wiphy,
1392 struct regulatory_request *request)
1393{
1394 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
1395 struct ath_wiphy *aphy = hw->priv;
1396 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -07001397 struct ath_regulatory *reg = ath9k_hw_regulatory(sc->sc_ah);
Bob Copelande3bb2492009-03-30 22:30:30 -04001398
1399 return ath_reg_notifier_apply(wiphy, request, reg);
1400}
1401
Luis R. Rodriguez1e40bcf2009-08-03 12:24:47 -07001402/*
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001403 * Detects if there is any priority bt traffic
1404 */
1405static void ath_detect_bt_priority(struct ath_softc *sc)
1406{
1407 struct ath_btcoex *btcoex = &sc->btcoex;
1408 struct ath_hw *ah = sc->sc_ah;
1409
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001410 if (ath9k_hw_gpio_get(sc->sc_ah, ah->btcoex_hw.btpriority_gpio))
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001411 btcoex->bt_priority_cnt++;
1412
1413 if (time_after(jiffies, btcoex->bt_priority_time +
1414 msecs_to_jiffies(ATH_BT_PRIORITY_TIME_THRESHOLD))) {
1415 if (btcoex->bt_priority_cnt >= ATH_BT_CNT_THRESHOLD) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001416 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_BTCOEX,
1417 "BT priority traffic detected");
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001418 sc->sc_flags |= SC_OP_BT_PRIORITY_DETECTED;
1419 } else {
1420 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
1421 }
1422
1423 btcoex->bt_priority_cnt = 0;
1424 btcoex->bt_priority_time = jiffies;
1425 }
1426}
1427
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001428/*
1429 * Configures appropriate weight based on stomp type.
1430 */
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001431static void ath9k_btcoex_bt_stomp(struct ath_softc *sc,
1432 enum ath_stomp_type stomp_type)
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001433{
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001434 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001435
1436 switch (stomp_type) {
1437 case ATH_BTCOEX_STOMP_ALL:
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001438 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
1439 AR_STOMP_ALL_WLAN_WGHT);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001440 break;
1441 case ATH_BTCOEX_STOMP_LOW:
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001442 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
1443 AR_STOMP_LOW_WLAN_WGHT);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001444 break;
1445 case ATH_BTCOEX_STOMP_NONE:
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001446 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
1447 AR_STOMP_NONE_WLAN_WGHT);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001448 break;
1449 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001450 ath_print(ath9k_hw_common(ah), ATH_DBG_BTCOEX,
1451 "Invalid Stomptype\n");
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001452 break;
1453 }
1454
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001455 ath9k_hw_btcoex_enable(ah);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001456}
1457
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07001458static void ath9k_gen_timer_start(struct ath_hw *ah,
1459 struct ath_gen_timer *timer,
1460 u32 timer_next,
1461 u32 timer_period)
1462{
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001463 struct ath_common *common = ath9k_hw_common(ah);
1464 struct ath_softc *sc = (struct ath_softc *) common->priv;
1465
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07001466 ath9k_hw_gen_timer_start(ah, timer, timer_next, timer_period);
1467
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001468 if ((sc->imask & ATH9K_INT_GENTIMER) == 0) {
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07001469 ath9k_hw_set_interrupts(ah, 0);
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001470 sc->imask |= ATH9K_INT_GENTIMER;
1471 ath9k_hw_set_interrupts(ah, sc->imask);
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07001472 }
1473}
1474
1475static void ath9k_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
1476{
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001477 struct ath_common *common = ath9k_hw_common(ah);
1478 struct ath_softc *sc = (struct ath_softc *) common->priv;
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07001479 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
1480
1481 ath9k_hw_gen_timer_stop(ah, timer);
1482
1483 /* if no timer is enabled, turn off interrupt mask */
1484 if (timer_table->timer_mask.val == 0) {
1485 ath9k_hw_set_interrupts(ah, 0);
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001486 sc->imask &= ~ATH9K_INT_GENTIMER;
1487 ath9k_hw_set_interrupts(ah, sc->imask);
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07001488 }
1489}
1490
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001491/*
1492 * This is the master bt coex timer which runs for every
1493 * 45ms, bt traffic will be given priority during 55% of this
1494 * period while wlan gets remaining 45%
1495 */
1496static void ath_btcoex_period_timer(unsigned long data)
1497{
1498 struct ath_softc *sc = (struct ath_softc *) data;
1499 struct ath_hw *ah = sc->sc_ah;
1500 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001501
1502 ath_detect_bt_priority(sc);
1503
1504 spin_lock_bh(&btcoex->btcoex_lock);
1505
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001506 ath9k_btcoex_bt_stomp(sc, btcoex->bt_stomp_type);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001507
1508 spin_unlock_bh(&btcoex->btcoex_lock);
1509
1510 if (btcoex->btcoex_period != btcoex->btcoex_no_stomp) {
1511 if (btcoex->hw_timer_enabled)
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07001512 ath9k_gen_timer_stop(ah, btcoex->no_stomp_timer);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001513
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07001514 ath9k_gen_timer_start(ah,
1515 btcoex->no_stomp_timer,
1516 (ath9k_hw_gettsf32(ah) +
1517 btcoex->btcoex_no_stomp),
1518 btcoex->btcoex_no_stomp * 10);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001519 btcoex->hw_timer_enabled = true;
1520 }
1521
1522 mod_timer(&btcoex->period_timer, jiffies +
1523 msecs_to_jiffies(ATH_BTCOEX_DEF_BT_PERIOD));
1524}
1525
1526/*
1527 * Generic tsf based hw timer which configures weight
1528 * registers to time slice between wlan and bt traffic
1529 */
1530static void ath_btcoex_no_stomp_timer(void *arg)
1531{
1532 struct ath_softc *sc = (struct ath_softc *)arg;
1533 struct ath_hw *ah = sc->sc_ah;
1534 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001535
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001536 ath_print(ath9k_hw_common(ah), ATH_DBG_BTCOEX,
1537 "no stomp timer running \n");
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001538
1539 spin_lock_bh(&btcoex->btcoex_lock);
1540
Luis R. Rodrigueze08a6ac2009-09-09 14:26:15 -07001541 if (btcoex->bt_stomp_type == ATH_BTCOEX_STOMP_LOW)
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001542 ath9k_btcoex_bt_stomp(sc, ATH_BTCOEX_STOMP_NONE);
Luis R. Rodrigueze08a6ac2009-09-09 14:26:15 -07001543 else if (btcoex->bt_stomp_type == ATH_BTCOEX_STOMP_ALL)
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001544 ath9k_btcoex_bt_stomp(sc, ATH_BTCOEX_STOMP_LOW);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001545
1546 spin_unlock_bh(&btcoex->btcoex_lock);
1547}
1548
1549static int ath_init_btcoex_timer(struct ath_softc *sc)
1550{
1551 struct ath_btcoex *btcoex = &sc->btcoex;
1552
1553 btcoex->btcoex_period = ATH_BTCOEX_DEF_BT_PERIOD * 1000;
1554 btcoex->btcoex_no_stomp = (100 - ATH_BTCOEX_DEF_DUTY_CYCLE) *
1555 btcoex->btcoex_period / 100;
1556
1557 setup_timer(&btcoex->period_timer, ath_btcoex_period_timer,
1558 (unsigned long) sc);
1559
1560 spin_lock_init(&btcoex->btcoex_lock);
1561
1562 btcoex->no_stomp_timer = ath_gen_timer_alloc(sc->sc_ah,
1563 ath_btcoex_no_stomp_timer,
1564 ath_btcoex_no_stomp_timer,
1565 (void *) sc, AR_FIRST_NDP_TIMER);
1566
1567 if (!btcoex->no_stomp_timer)
1568 return -ENOMEM;
1569
1570 return 0;
1571}
1572
1573/*
Luis R. Rodriguez9e4bffd2009-09-10 16:11:21 -07001574 * Read and write, they both share the same lock. We do this to serialize
1575 * reads and writes on Atheros 802.11n PCI devices only. This is required
1576 * as the FIFO on these devices can only accept sanely 2 requests. After
1577 * that the device goes bananas. Serializing the reads/writes prevents this
1578 * from happening.
1579 */
1580
1581static void ath9k_iowrite32(void *hw_priv, u32 val, u32 reg_offset)
1582{
1583 struct ath_hw *ah = (struct ath_hw *) hw_priv;
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001584 struct ath_common *common = ath9k_hw_common(ah);
1585 struct ath_softc *sc = (struct ath_softc *) common->priv;
Luis R. Rodriguez9e4bffd2009-09-10 16:11:21 -07001586
1587 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
1588 unsigned long flags;
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001589 spin_lock_irqsave(&sc->sc_serial_rw, flags);
1590 iowrite32(val, sc->mem + reg_offset);
1591 spin_unlock_irqrestore(&sc->sc_serial_rw, flags);
Luis R. Rodriguez9e4bffd2009-09-10 16:11:21 -07001592 } else
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001593 iowrite32(val, sc->mem + reg_offset);
Luis R. Rodriguez9e4bffd2009-09-10 16:11:21 -07001594}
1595
1596static unsigned int ath9k_ioread32(void *hw_priv, u32 reg_offset)
1597{
1598 struct ath_hw *ah = (struct ath_hw *) hw_priv;
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001599 struct ath_common *common = ath9k_hw_common(ah);
1600 struct ath_softc *sc = (struct ath_softc *) common->priv;
Luis R. Rodriguez9e4bffd2009-09-10 16:11:21 -07001601 u32 val;
1602
1603 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
1604 unsigned long flags;
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001605 spin_lock_irqsave(&sc->sc_serial_rw, flags);
1606 val = ioread32(sc->mem + reg_offset);
1607 spin_unlock_irqrestore(&sc->sc_serial_rw, flags);
Luis R. Rodriguez9e4bffd2009-09-10 16:11:21 -07001608 } else
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001609 val = ioread32(sc->mem + reg_offset);
Luis R. Rodriguez9e4bffd2009-09-10 16:11:21 -07001610 return val;
1611}
1612
Luis R. Rodriguez2ddb5c82009-09-14 02:09:38 -07001613static const struct ath_ops ath9k_common_ops = {
Luis R. Rodriguez9e4bffd2009-09-10 16:11:21 -07001614 .read = ath9k_ioread32,
1615 .write = ath9k_iowrite32,
1616};
1617
1618/*
Luis R. Rodriguez1e40bcf2009-08-03 12:24:47 -07001619 * Initialize and fill ath_softc, ath_sofct is the
1620 * "Software Carrier" struct. Historically it has existed
1621 * to allow the separation between hardware specific
1622 * variables (now in ath_hw) and driver specific variables.
1623 */
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -07001624static int ath_init_softc(u16 devid, struct ath_softc *sc, u16 subsysid,
1625 const struct ath_bus_ops *bus_ops)
Sujithff37e332008-11-24 12:07:55 +05301626{
Sujithcbe61d82009-02-09 13:27:12 +05301627 struct ath_hw *ah = NULL;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001628 struct ath_common *common;
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001629 int r = 0, i;
Sujithff37e332008-11-24 12:07:55 +05301630 int csz = 0;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001631 int qnum;
Sujithff37e332008-11-24 12:07:55 +05301632
1633 /* XXX: hardware will not be ready until ath_open() being called */
1634 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301635
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001636 spin_lock_init(&sc->wiphy_lock);
Sujithff37e332008-11-24 12:07:55 +05301637 spin_lock_init(&sc->sc_resetlock);
Luis R. Rodriguez61584252009-03-12 18:18:49 -04001638 spin_lock_init(&sc->sc_serial_rw);
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05301639 spin_lock_init(&sc->ani_lock);
Gabor Juhos04717cc2009-07-14 20:17:13 -04001640 spin_lock_init(&sc->sc_pm_lock);
Sujithaa33de02008-12-18 11:40:16 +05301641 mutex_init(&sc->mutex);
Sujithff37e332008-11-24 12:07:55 +05301642 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
Sujith9fc9ab02009-03-03 10:16:51 +05301643 tasklet_init(&sc->bcon_tasklet, ath_beacon_tasklet,
Sujithff37e332008-11-24 12:07:55 +05301644 (unsigned long)sc);
1645
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001646 ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001647 if (!ah)
1648 return -ENOMEM;
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001649
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -07001650 ah->hw_version.devid = devid;
Vasanthakumar Thiagarajanaeac3552009-09-09 15:25:49 +05301651 ah->hw_version.subsysid = subsysid;
Luis R. Rodrigueze1e2f932009-08-03 12:24:38 -07001652 sc->sc_ah = ah;
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001653
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -07001654 common = ath9k_hw_common(ah);
Luis R. Rodriguez9e4bffd2009-09-10 16:11:21 -07001655 common->ops = &ath9k_common_ops;
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -07001656 common->bus_ops = bus_ops;
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001657 common->ah = ah;
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -07001658 common->hw = sc->hw;
Luis R. Rodriguezbc974f42009-09-28 02:54:40 -04001659 common->priv = sc;
Luis R. Rodriguezfaa27fa2009-10-06 21:19:06 -04001660 common->debug_mask = ath9k_debug;
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -07001661
1662 /*
1663 * Cache line size is used to size and align various
1664 * structures used to communicate with the hardware.
1665 */
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -07001666 ath_read_cachesize(common, &csz);
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -07001667 /* XXX assert csz is non-zero */
1668 common->cachelsz = csz << 2; /* convert to bytes */
1669
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -07001670 r = ath9k_hw_init(ah);
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001671 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001672 ath_print(common, ATH_DBG_FATAL,
1673 "Unable to initialize hardware; "
1674 "initialization status: %d\n", r);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001675 goto bad_free_hw;
1676 }
1677
1678 if (ath9k_init_debug(ah) < 0) {
1679 ath_print(common, ATH_DBG_FATAL,
1680 "Unable to create debugfs files\n");
1681 goto bad_free_hw;
Sujithff37e332008-11-24 12:07:55 +05301682 }
Sujithff37e332008-11-24 12:07:55 +05301683
1684 /* Get the hardware key cache size. */
Sujith2660b812009-02-09 13:27:26 +05301685 sc->keymax = ah->caps.keycache_size;
Sujith17d79042009-02-09 13:27:03 +05301686 if (sc->keymax > ATH_KEYMAX) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001687 ath_print(common, ATH_DBG_ANY,
1688 "Warning, using only %u entries in %u key cache\n",
1689 ATH_KEYMAX, sc->keymax);
Sujith17d79042009-02-09 13:27:03 +05301690 sc->keymax = ATH_KEYMAX;
Sujithff37e332008-11-24 12:07:55 +05301691 }
1692
1693 /*
1694 * Reset the key cache since some parts do not
1695 * reset the contents on initial power up.
1696 */
Sujith17d79042009-02-09 13:27:03 +05301697 for (i = 0; i < sc->keymax; i++)
Sujithff37e332008-11-24 12:07:55 +05301698 ath9k_hw_keyreset(ah, (u16) i);
Sujithff37e332008-11-24 12:07:55 +05301699
Sujithff37e332008-11-24 12:07:55 +05301700 /* default to MONITOR mode */
Sujith2660b812009-02-09 13:27:26 +05301701 sc->sc_ah->opmode = NL80211_IFTYPE_MONITOR;
Colin McCabed97809d2008-12-01 13:38:55 -08001702
Sujithff37e332008-11-24 12:07:55 +05301703 /* Setup rate tables */
1704
1705 ath_rate_attach(sc);
1706 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1707 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1708
1709 /*
1710 * Allocate hardware transmit queues: one queue for
1711 * beacon frames and one data queue for each QoS
1712 * priority. Note that the hal handles reseting
1713 * these queues at the needed time.
1714 */
Sujithb77f4832008-12-07 21:44:03 +05301715 sc->beacon.beaconq = ath_beaconq_setup(ah);
1716 if (sc->beacon.beaconq == -1) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001717 ath_print(common, ATH_DBG_FATAL,
1718 "Unable to setup a beacon xmit queue\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001719 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301720 goto bad2;
1721 }
Sujithb77f4832008-12-07 21:44:03 +05301722 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1723 if (sc->beacon.cabq == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001724 ath_print(common, ATH_DBG_FATAL,
1725 "Unable to setup CAB xmit queue\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001726 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301727 goto bad2;
1728 }
1729
Sujith17d79042009-02-09 13:27:03 +05301730 sc->config.cabqReadytime = ATH_CABQ_READY_TIME;
Sujithff37e332008-11-24 12:07:55 +05301731 ath_cabq_update(sc);
1732
Sujithb77f4832008-12-07 21:44:03 +05301733 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
1734 sc->tx.hwq_map[i] = -1;
Sujithff37e332008-11-24 12:07:55 +05301735
1736 /* Setup data queues */
1737 /* NB: ensure BK queue is the lowest priority h/w queue */
1738 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001739 ath_print(common, ATH_DBG_FATAL,
1740 "Unable to setup xmit queue for BK traffic\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001741 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301742 goto bad2;
1743 }
1744
1745 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001746 ath_print(common, ATH_DBG_FATAL,
1747 "Unable to setup xmit queue for BE traffic\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001748 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301749 goto bad2;
1750 }
1751 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001752 ath_print(common, ATH_DBG_FATAL,
1753 "Unable to setup xmit queue for VI traffic\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001754 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301755 goto bad2;
1756 }
1757 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001758 ath_print(common, ATH_DBG_FATAL,
1759 "Unable to setup xmit queue for VO traffic\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001760 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301761 goto bad2;
1762 }
1763
1764 /* Initializes the noise floor to a reasonable default value.
1765 * Later on this will be updated during ANI processing. */
1766
Sujith17d79042009-02-09 13:27:03 +05301767 sc->ani.noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1768 setup_timer(&sc->ani.timer, ath_ani_calibrate, (unsigned long)sc);
Sujithff37e332008-11-24 12:07:55 +05301769
1770 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1771 ATH9K_CIPHER_TKIP, NULL)) {
1772 /*
1773 * Whether we should enable h/w TKIP MIC.
1774 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1775 * report WMM capable, so it's always safe to turn on
1776 * TKIP MIC in this case.
1777 */
1778 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1779 0, 1, NULL);
1780 }
1781
1782 /*
1783 * Check whether the separate key cache entries
1784 * are required to handle both tx+rx MIC keys.
1785 * With split mic keys the number of stations is limited
1786 * to 27 otherwise 59.
1787 */
1788 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1789 ATH9K_CIPHER_TKIP, NULL)
1790 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1791 ATH9K_CIPHER_MIC, NULL)
1792 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1793 0, NULL))
Sujith17d79042009-02-09 13:27:03 +05301794 sc->splitmic = 1;
Sujithff37e332008-11-24 12:07:55 +05301795
1796 /* turn on mcast key search if possible */
1797 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1798 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1799 1, NULL);
1800
Sujith17d79042009-02-09 13:27:03 +05301801 sc->config.txpowlimit = ATH_TXPOWER_MAX;
Sujithff37e332008-11-24 12:07:55 +05301802
1803 /* 11n Capabilities */
Sujith2660b812009-02-09 13:27:26 +05301804 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) {
Sujithff37e332008-11-24 12:07:55 +05301805 sc->sc_flags |= SC_OP_TXAGGR;
1806 sc->sc_flags |= SC_OP_RXAGGR;
1807 }
1808
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001809 common->tx_chainmask = ah->caps.tx_chainmask;
1810 common->rx_chainmask = ah->caps.rx_chainmask;
Sujithff37e332008-11-24 12:07:55 +05301811
1812 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
Sujithb77f4832008-12-07 21:44:03 +05301813 sc->rx.defant = ath9k_hw_getdefantenna(ah);
Sujithff37e332008-11-24 12:07:55 +05301814
Jouni Malinen8ca21f02009-03-03 19:23:27 +02001815 if (ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK)
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001816 memcpy(common->bssidmask, ath_bcast_mac, ETH_ALEN);
Sujithff37e332008-11-24 12:07:55 +05301817
Sujithb77f4832008-12-07 21:44:03 +05301818 sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
Sujithff37e332008-11-24 12:07:55 +05301819
1820 /* initialize beacon slots */
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001821 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) {
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001822 sc->beacon.bslot[i] = NULL;
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001823 sc->beacon.bslot_aphy[i] = NULL;
1824 }
Sujithff37e332008-11-24 12:07:55 +05301825
Sujithff37e332008-11-24 12:07:55 +05301826 /* setup channels and rates */
1827
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001828 sc->sbands[IEEE80211_BAND_2GHZ].channels = ath9k_2ghz_chantable;
Sujithff37e332008-11-24 12:07:55 +05301829 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1830 sc->rates[IEEE80211_BAND_2GHZ];
1831 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001832 sc->sbands[IEEE80211_BAND_2GHZ].n_channels =
1833 ARRAY_SIZE(ath9k_2ghz_chantable);
Sujithff37e332008-11-24 12:07:55 +05301834
Sujith2660b812009-02-09 13:27:26 +05301835 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes)) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001836 sc->sbands[IEEE80211_BAND_5GHZ].channels = ath9k_5ghz_chantable;
Sujithff37e332008-11-24 12:07:55 +05301837 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1838 sc->rates[IEEE80211_BAND_5GHZ];
1839 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001840 sc->sbands[IEEE80211_BAND_5GHZ].n_channels =
1841 ARRAY_SIZE(ath9k_5ghz_chantable);
Sujithff37e332008-11-24 12:07:55 +05301842 }
1843
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001844 switch (ah->btcoex_hw.scheme) {
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001845 case ATH_BTCOEX_CFG_NONE:
1846 break;
1847 case ATH_BTCOEX_CFG_2WIRE:
1848 ath9k_hw_btcoex_init_2wire(ah);
1849 break;
1850 case ATH_BTCOEX_CFG_3WIRE:
1851 ath9k_hw_btcoex_init_3wire(ah);
1852 r = ath_init_btcoex_timer(sc);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05301853 if (r)
1854 goto bad2;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001855 qnum = ath_tx_get_qnum(sc, ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001856 ath9k_hw_init_btcoex_hw(ah, qnum);
Luis R. Rodrigueze08a6ac2009-09-09 14:26:15 -07001857 sc->btcoex.bt_stomp_type = ATH_BTCOEX_STOMP_LOW;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001858 break;
1859 default:
1860 WARN_ON(1);
1861 break;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05301862 }
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301863
Sujithff37e332008-11-24 12:07:55 +05301864 return 0;
1865bad2:
1866 /* cleanup tx queues */
1867 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1868 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301869 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujithff37e332008-11-24 12:07:55 +05301870
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001871bad_free_hw:
Luis R. Rodriguez7fda1662009-10-06 21:19:08 -04001872 ath9k_uninit_hw(sc);
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001873 return r;
Sujithff37e332008-11-24 12:07:55 +05301874}
1875
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001876void ath_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301877{
Sujith9c84b792008-10-29 10:17:13 +05301878 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1879 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1880 IEEE80211_HW_SIGNAL_DBM |
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301881 IEEE80211_HW_AMPDU_AGGREGATION |
1882 IEEE80211_HW_SUPPORTS_PS |
Sujitheeee1322009-03-10 10:39:53 +05301883 IEEE80211_HW_PS_NULLFUNC_STACK |
1884 IEEE80211_HW_SPECTRUM_MGMT;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301885
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001886 if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || modparam_nohwcrypt)
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001887 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
1888
Sujith9c84b792008-10-29 10:17:13 +05301889 hw->wiphy->interface_modes =
1890 BIT(NL80211_IFTYPE_AP) |
1891 BIT(NL80211_IFTYPE_STATION) |
Pat Erley9cb54122009-03-20 22:59:59 -04001892 BIT(NL80211_IFTYPE_ADHOC) |
1893 BIT(NL80211_IFTYPE_MESH_POINT);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301894
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301895 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301896 hw->max_rates = 4;
Sujith171387e2009-02-17 15:36:25 +05301897 hw->channel_change_time = 5000;
Jouni Malinen465ca842009-03-03 19:23:34 +02001898 hw->max_listen_interval = 10;
Luis R. Rodriguezdd190182009-07-14 20:13:56 -04001899 /* Hardware supports 10 but we use 4 */
1900 hw->max_rate_tries = 4;
Sujith528f0c62008-10-29 10:14:26 +05301901 hw->sta_data_size = sizeof(struct ath_node);
Sujith17d79042009-02-09 13:27:03 +05301902 hw->vif_data_size = sizeof(struct ath_vif);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301903
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301904 hw->rate_control_algorithm = "ath9k_rate_control";
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301905
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001906 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
1907 &sc->sbands[IEEE80211_BAND_2GHZ];
1908 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes))
1909 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1910 &sc->sbands[IEEE80211_BAND_5GHZ];
1911}
1912
Luis R. Rodriguez1e40bcf2009-08-03 12:24:47 -07001913/* Device driver core initialization */
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -07001914int ath_init_device(u16 devid, struct ath_softc *sc, u16 subsysid,
1915 const struct ath_bus_ops *bus_ops)
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001916{
1917 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001918 struct ath_common *common;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001919 struct ath_hw *ah;
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001920 int error = 0, i;
Bob Copeland3a702e42009-03-30 22:30:29 -04001921 struct ath_regulatory *reg;
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001922
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001923 dev_dbg(sc->dev, "Attach ATH hw\n");
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001924
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -07001925 error = ath_init_softc(devid, sc, subsysid, bus_ops);
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001926 if (error != 0)
1927 return error;
1928
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001929 ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001930 common = ath9k_hw_common(ah);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001931
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001932 /* get mac address from hardware and set in mac80211 */
1933
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001934 SET_IEEE80211_PERM_ADDR(hw, common->macaddr);
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001935
1936 ath_set_hw_capab(sc, hw);
1937
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001938 error = ath_regd_init(&common->regulatory, sc->hw->wiphy,
Luis R. Rodriguezc26c2e52009-05-19 18:27:11 -04001939 ath9k_reg_notifier);
1940 if (error)
1941 return error;
1942
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001943 reg = &common->regulatory;
Luis R. Rodriguezc26c2e52009-05-19 18:27:11 -04001944
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001945 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) {
Sujitheb2599c2009-01-23 11:20:44 +05301946 setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001947 if (test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes))
Sujitheb2599c2009-01-23 11:20:44 +05301948 setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
Sujith9c84b792008-10-29 10:17:13 +05301949 }
1950
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301951 /* initialize tx/rx engine */
1952 error = ath_tx_init(sc, ATH_TXBUF);
1953 if (error != 0)
Vasanthakumar Thiagarajan40b130a2009-02-16 13:55:07 +05301954 goto error_attach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301955
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301956 error = ath_rx_init(sc, ATH_RXBUF);
1957 if (error != 0)
Vasanthakumar Thiagarajan40b130a2009-02-16 13:55:07 +05301958 goto error_attach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301959
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02001960 INIT_WORK(&sc->chan_work, ath9k_wiphy_chan_work);
Jouni Malinenf98c3bd2009-03-03 19:23:39 +02001961 INIT_DELAYED_WORK(&sc->wiphy_work, ath9k_wiphy_work);
1962 sc->wiphy_scheduler_int = msecs_to_jiffies(500);
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02001963
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301964 error = ieee80211_register_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301965
Bob Copeland3a702e42009-03-30 22:30:29 -04001966 if (!ath_is_world_regd(reg)) {
Bob Copelandc02cf372009-03-30 22:30:28 -04001967 error = regulatory_hint(hw->wiphy, reg->alpha2);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001968 if (error)
1969 goto error_attach;
1970 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001971
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301972 /* Initialize LED control */
1973 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301974
Johannes Berg3b319aa2009-06-13 14:50:26 +05301975 ath_start_rfkill_poll(sc);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001976
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301977 return 0;
Vasanthakumar Thiagarajan40b130a2009-02-16 13:55:07 +05301978
1979error_attach:
1980 /* cleanup tx queues */
1981 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1982 if (ATH_TXQ_SETUP(sc, i))
1983 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
1984
Luis R. Rodriguez7fda1662009-10-06 21:19:08 -04001985 ath9k_uninit_hw(sc);
Vasanthakumar Thiagarajan40b130a2009-02-16 13:55:07 +05301986
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301987 return error;
1988}
1989
Sujithff37e332008-11-24 12:07:55 +05301990int ath_reset(struct ath_softc *sc, bool retry_tx)
1991{
Sujithcbe61d82009-02-09 13:27:12 +05301992 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001993 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez030bb492008-12-23 15:58:37 -08001994 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001995 int r;
Sujithff37e332008-11-24 12:07:55 +05301996
1997 ath9k_hw_set_interrupts(ah, 0);
Sujith043a0402009-01-16 21:38:47 +05301998 ath_drain_all_txq(sc, retry_tx);
Sujithff37e332008-11-24 12:07:55 +05301999 ath_stoprecv(sc);
2000 ath_flushrecv(sc);
2001
2002 spin_lock_bh(&sc->sc_resetlock);
Sujith2660b812009-02-09 13:27:26 +05302003 r = ath9k_hw_reset(ah, sc->sc_ah->curchan, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002004 if (r)
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002005 ath_print(common, ATH_DBG_FATAL,
2006 "Unable to reset hardware; reset status %d\n", r);
Sujithff37e332008-11-24 12:07:55 +05302007 spin_unlock_bh(&sc->sc_resetlock);
2008
2009 if (ath_startrecv(sc) != 0)
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002010 ath_print(common, ATH_DBG_FATAL,
2011 "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05302012
2013 /*
2014 * We may be doing a reset in response to a request
2015 * that changes the channel so update any state that
2016 * might change as a result.
2017 */
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08002018 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05302019
2020 ath_update_txpow(sc);
2021
2022 if (sc->sc_flags & SC_OP_BEACONS)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002023 ath_beacon_config(sc, NULL); /* restart beacons */
Sujithff37e332008-11-24 12:07:55 +05302024
Sujith17d79042009-02-09 13:27:03 +05302025 ath9k_hw_set_interrupts(ah, sc->imask);
Sujithff37e332008-11-24 12:07:55 +05302026
2027 if (retry_tx) {
2028 int i;
2029 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2030 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05302031 spin_lock_bh(&sc->tx.txq[i].axq_lock);
2032 ath_txq_schedule(sc, &sc->tx.txq[i]);
2033 spin_unlock_bh(&sc->tx.txq[i].axq_lock);
Sujithff37e332008-11-24 12:07:55 +05302034 }
2035 }
2036 }
2037
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002038 return r;
Sujithff37e332008-11-24 12:07:55 +05302039}
2040
2041/*
2042 * This function will allocate both the DMA descriptor structure, and the
2043 * buffers it contains. These are used to contain the descriptors used
2044 * by the system.
2045*/
2046int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
2047 struct list_head *head, const char *name,
2048 int nbuf, int ndesc)
2049{
2050#define DS2PHYS(_dd, _ds) \
2051 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
2052#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
2053#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002054 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujithff37e332008-11-24 12:07:55 +05302055 struct ath_desc *ds;
2056 struct ath_buf *bf;
2057 int i, bsize, error;
2058
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002059 ath_print(common, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
2060 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05302061
Senthil Balasubramanianb03a9db2009-03-06 11:24:09 +05302062 INIT_LIST_HEAD(head);
Sujithff37e332008-11-24 12:07:55 +05302063 /* ath_desc must be a multiple of DWORDs */
2064 if ((sizeof(struct ath_desc) % 4) != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002065 ath_print(common, ATH_DBG_FATAL,
2066 "ath_desc not DWORD aligned\n");
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002067 BUG_ON((sizeof(struct ath_desc) % 4) != 0);
Sujithff37e332008-11-24 12:07:55 +05302068 error = -ENOMEM;
2069 goto fail;
2070 }
2071
Sujithff37e332008-11-24 12:07:55 +05302072 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
2073
2074 /*
2075 * Need additional DMA memory because we can't use
2076 * descriptors that cross the 4K page boundary. Assume
2077 * one skipped descriptor per 4K page.
2078 */
Sujith2660b812009-02-09 13:27:26 +05302079 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
Sujithff37e332008-11-24 12:07:55 +05302080 u32 ndesc_skipped =
2081 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
2082 u32 dma_len;
2083
2084 while (ndesc_skipped) {
2085 dma_len = ndesc_skipped * sizeof(struct ath_desc);
2086 dd->dd_desc_len += dma_len;
2087
2088 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
2089 };
2090 }
2091
2092 /* allocate descriptors */
Gabor Juhos7da3c552009-01-14 20:17:03 +01002093 dd->dd_desc = dma_alloc_coherent(sc->dev, dd->dd_desc_len,
Senthil Balasubramanianf0e6ce12009-03-06 11:24:08 +05302094 &dd->dd_desc_paddr, GFP_KERNEL);
Sujithff37e332008-11-24 12:07:55 +05302095 if (dd->dd_desc == NULL) {
2096 error = -ENOMEM;
2097 goto fail;
2098 }
2099 ds = dd->dd_desc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002100 ath_print(common, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
2101 name, ds, (u32) dd->dd_desc_len,
2102 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
Sujithff37e332008-11-24 12:07:55 +05302103
2104 /* allocate buffers */
2105 bsize = sizeof(struct ath_buf) * nbuf;
Senthil Balasubramanianf0e6ce12009-03-06 11:24:08 +05302106 bf = kzalloc(bsize, GFP_KERNEL);
Sujithff37e332008-11-24 12:07:55 +05302107 if (bf == NULL) {
2108 error = -ENOMEM;
2109 goto fail2;
2110 }
Sujithff37e332008-11-24 12:07:55 +05302111 dd->dd_bufptr = bf;
2112
Sujithff37e332008-11-24 12:07:55 +05302113 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
2114 bf->bf_desc = ds;
2115 bf->bf_daddr = DS2PHYS(dd, ds);
2116
Sujith2660b812009-02-09 13:27:26 +05302117 if (!(sc->sc_ah->caps.hw_caps &
Sujithff37e332008-11-24 12:07:55 +05302118 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
2119 /*
2120 * Skip descriptor addresses which can cause 4KB
2121 * boundary crossing (addr + length) with a 32 dword
2122 * descriptor fetch.
2123 */
2124 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002125 BUG_ON((caddr_t) bf->bf_desc >=
Sujithff37e332008-11-24 12:07:55 +05302126 ((caddr_t) dd->dd_desc +
2127 dd->dd_desc_len));
2128
2129 ds += ndesc;
2130 bf->bf_desc = ds;
2131 bf->bf_daddr = DS2PHYS(dd, ds);
2132 }
2133 }
2134 list_add_tail(&bf->list, head);
2135 }
2136 return 0;
2137fail2:
Gabor Juhos7da3c552009-01-14 20:17:03 +01002138 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
2139 dd->dd_desc_paddr);
Sujithff37e332008-11-24 12:07:55 +05302140fail:
2141 memset(dd, 0, sizeof(*dd));
2142 return error;
2143#undef ATH_DESC_4KB_BOUND_CHECK
2144#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
2145#undef DS2PHYS
2146}
2147
2148void ath_descdma_cleanup(struct ath_softc *sc,
2149 struct ath_descdma *dd,
2150 struct list_head *head)
2151{
Gabor Juhos7da3c552009-01-14 20:17:03 +01002152 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
2153 dd->dd_desc_paddr);
Sujithff37e332008-11-24 12:07:55 +05302154
2155 INIT_LIST_HEAD(head);
2156 kfree(dd->dd_bufptr);
2157 memset(dd, 0, sizeof(*dd));
2158}
2159
2160int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
2161{
2162 int qnum;
2163
2164 switch (queue) {
2165 case 0:
Sujithb77f4832008-12-07 21:44:03 +05302166 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO];
Sujithff37e332008-11-24 12:07:55 +05302167 break;
2168 case 1:
Sujithb77f4832008-12-07 21:44:03 +05302169 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI];
Sujithff37e332008-11-24 12:07:55 +05302170 break;
2171 case 2:
Sujithb77f4832008-12-07 21:44:03 +05302172 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05302173 break;
2174 case 3:
Sujithb77f4832008-12-07 21:44:03 +05302175 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK];
Sujithff37e332008-11-24 12:07:55 +05302176 break;
2177 default:
Sujithb77f4832008-12-07 21:44:03 +05302178 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05302179 break;
2180 }
2181
2182 return qnum;
2183}
2184
2185int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
2186{
2187 int qnum;
2188
2189 switch (queue) {
2190 case ATH9K_WME_AC_VO:
2191 qnum = 0;
2192 break;
2193 case ATH9K_WME_AC_VI:
2194 qnum = 1;
2195 break;
2196 case ATH9K_WME_AC_BE:
2197 qnum = 2;
2198 break;
2199 case ATH9K_WME_AC_BK:
2200 qnum = 3;
2201 break;
2202 default:
2203 qnum = -1;
2204 break;
2205 }
2206
2207 return qnum;
2208}
2209
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002210/* XXX: Remove me once we don't depend on ath9k_channel for all
2211 * this redundant data */
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002212void ath9k_update_ichannel(struct ath_softc *sc, struct ieee80211_hw *hw,
2213 struct ath9k_channel *ichan)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002214{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002215 struct ieee80211_channel *chan = hw->conf.channel;
2216 struct ieee80211_conf *conf = &hw->conf;
2217
2218 ichan->channel = chan->center_freq;
2219 ichan->chan = chan;
2220
2221 if (chan->band == IEEE80211_BAND_2GHZ) {
2222 ichan->chanmode = CHANNEL_G;
Sujith88132622009-09-03 12:08:53 +05302223 ichan->channelFlags = CHANNEL_2GHZ | CHANNEL_OFDM | CHANNEL_G;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002224 } else {
2225 ichan->chanmode = CHANNEL_A;
2226 ichan->channelFlags = CHANNEL_5GHZ | CHANNEL_OFDM;
2227 }
2228
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002229 if (conf_is_ht(conf))
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002230 ichan->chanmode = ath_get_extchanmode(sc, chan,
2231 conf->channel_type);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002232}
2233
Sujithff37e332008-11-24 12:07:55 +05302234/**********************/
2235/* mac80211 callbacks */
2236/**********************/
2237
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002238/*
2239 * (Re)start btcoex timers
2240 */
2241static void ath9k_btcoex_timer_resume(struct ath_softc *sc)
2242{
2243 struct ath_btcoex *btcoex = &sc->btcoex;
2244 struct ath_hw *ah = sc->sc_ah;
2245
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002246 ath_print(ath9k_hw_common(ah), ATH_DBG_BTCOEX,
2247 "Starting btcoex timers");
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002248
2249 /* make sure duty cycle timer is also stopped when resuming */
2250 if (btcoex->hw_timer_enabled)
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002251 ath9k_gen_timer_stop(sc->sc_ah, btcoex->no_stomp_timer);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002252
2253 btcoex->bt_priority_cnt = 0;
2254 btcoex->bt_priority_time = jiffies;
2255 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
2256
2257 mod_timer(&btcoex->period_timer, jiffies);
2258}
2259
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002260static int ath9k_start(struct ieee80211_hw *hw)
2261{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002262 struct ath_wiphy *aphy = hw->priv;
2263 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002264 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002265 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002266 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05302267 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +05302268 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002269
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002270 ath_print(common, ATH_DBG_CONFIG,
2271 "Starting driver with initial channel: %d MHz\n",
2272 curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002273
Sujith141b38b2009-02-04 08:10:07 +05302274 mutex_lock(&sc->mutex);
2275
Jouni Malinen9580a222009-03-03 19:23:33 +02002276 if (ath9k_wiphy_started(sc)) {
2277 if (sc->chan_idx == curchan->hw_value) {
2278 /*
2279 * Already on the operational channel, the new wiphy
2280 * can be marked active.
2281 */
2282 aphy->state = ATH_WIPHY_ACTIVE;
2283 ieee80211_wake_queues(hw);
2284 } else {
2285 /*
2286 * Another wiphy is on another channel, start the new
2287 * wiphy in paused state.
2288 */
2289 aphy->state = ATH_WIPHY_PAUSED;
2290 ieee80211_stop_queues(hw);
2291 }
2292 mutex_unlock(&sc->mutex);
2293 return 0;
2294 }
2295 aphy->state = ATH_WIPHY_ACTIVE;
2296
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002297 /* setup initial channel */
2298
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +05302299 sc->chan_idx = curchan->hw_value;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002300
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +05302301 init_channel = ath_get_curchannel(sc, hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002302
Sujithff37e332008-11-24 12:07:55 +05302303 /* Reset SERDES registers */
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002304 ath9k_hw_configpcipowersave(ah, 0, 0);
Sujithff37e332008-11-24 12:07:55 +05302305
2306 /*
2307 * The basic interface to setting the hardware in a good
2308 * state is ``reset''. On return the hardware is known to
2309 * be powered up and with interrupts disabled. This must
2310 * be followed by initialization of the appropriate bits
2311 * and then setup of the interrupt mask.
2312 */
2313 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002314 r = ath9k_hw_reset(ah, init_channel, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002315 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002316 ath_print(common, ATH_DBG_FATAL,
2317 "Unable to reset hardware; reset status %d "
2318 "(freq %u MHz)\n", r,
2319 curchan->center_freq);
Sujithff37e332008-11-24 12:07:55 +05302320 spin_unlock_bh(&sc->sc_resetlock);
Sujith141b38b2009-02-04 08:10:07 +05302321 goto mutex_unlock;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002322 }
Sujithff37e332008-11-24 12:07:55 +05302323 spin_unlock_bh(&sc->sc_resetlock);
2324
2325 /*
2326 * This is needed only to setup initial state
2327 * but it's best done after a reset.
2328 */
2329 ath_update_txpow(sc);
2330
2331 /*
2332 * Setup the hardware after reset:
2333 * The receive engine is set going.
2334 * Frame transmit is handled entirely
2335 * in the frame output path; there's nothing to do
2336 * here except setup the interrupt mask.
2337 */
2338 if (ath_startrecv(sc) != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002339 ath_print(common, ATH_DBG_FATAL,
2340 "Unable to start recv logic\n");
Sujith141b38b2009-02-04 08:10:07 +05302341 r = -EIO;
2342 goto mutex_unlock;
Sujithff37e332008-11-24 12:07:55 +05302343 }
2344
2345 /* Setup our intr mask. */
Sujith17d79042009-02-09 13:27:03 +05302346 sc->imask = ATH9K_INT_RX | ATH9K_INT_TX
Sujithff37e332008-11-24 12:07:55 +05302347 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
2348 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
2349
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002350 if (ah->caps.hw_caps & ATH9K_HW_CAP_GTT)
Sujith17d79042009-02-09 13:27:03 +05302351 sc->imask |= ATH9K_INT_GTT;
Sujithff37e332008-11-24 12:07:55 +05302352
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002353 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Sujith17d79042009-02-09 13:27:03 +05302354 sc->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +05302355
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08002356 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05302357
2358 sc->sc_flags &= ~SC_OP_INVALID;
2359
2360 /* Disable BMISS interrupt when we're not associated */
Sujith17d79042009-02-09 13:27:03 +05302361 sc->imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002362 ath9k_hw_set_interrupts(ah, sc->imask);
Sujithff37e332008-11-24 12:07:55 +05302363
Jouni Malinenbce048d2009-03-03 19:23:28 +02002364 ieee80211_wake_queues(hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002365
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002366 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002367
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002368 if ((ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE) &&
2369 !ah->btcoex_hw.enabled) {
Luis R. Rodriguez5e197292009-09-09 15:15:55 -07002370 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
2371 AR_STOMP_LOW_WLAN_WGHT);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002372 ath9k_hw_btcoex_enable(ah);
Vasanthakumar Thiagarajanf985ad12009-08-26 21:08:43 +05302373
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -07002374 if (common->bus_ops->bt_coex_prep)
2375 common->bus_ops->bt_coex_prep(common);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002376 if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002377 ath9k_btcoex_timer_resume(sc);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302378 }
2379
Sujith141b38b2009-02-04 08:10:07 +05302380mutex_unlock:
2381 mutex_unlock(&sc->mutex);
2382
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002383 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002384}
2385
2386static int ath9k_tx(struct ieee80211_hw *hw,
2387 struct sk_buff *skb)
2388{
Jouni Malinen147583c2008-08-11 14:01:50 +03002389 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jouni Malinenbce048d2009-03-03 19:23:28 +02002390 struct ath_wiphy *aphy = hw->priv;
2391 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002392 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +05302393 struct ath_tx_control txctl;
2394 int hdrlen, padsize;
2395
Jouni Malinen8089cc42009-03-03 19:23:38 +02002396 if (aphy->state != ATH_WIPHY_ACTIVE && aphy->state != ATH_WIPHY_SCAN) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002397 ath_print(common, ATH_DBG_XMIT,
2398 "ath9k: %s: TX in unexpected wiphy state "
2399 "%d\n", wiphy_name(hw->wiphy), aphy->state);
Jouni Malinenee166a02009-03-03 19:23:36 +02002400 goto exit;
2401 }
2402
Gabor Juhos96148322009-07-24 17:27:21 +02002403 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +03002404 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2405 /*
2406 * mac80211 does not set PM field for normal data frames, so we
2407 * need to update that based on the current PS mode.
2408 */
2409 if (ieee80211_is_data(hdr->frame_control) &&
2410 !ieee80211_is_nullfunc(hdr->frame_control) &&
2411 !ieee80211_has_pm(hdr->frame_control)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002412 ath_print(common, ATH_DBG_PS, "Add PM=1 for a TX frame "
2413 "while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +03002414 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
2415 }
2416 }
2417
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002418 if (unlikely(sc->sc_ah->power_mode != ATH9K_PM_AWAKE)) {
2419 /*
2420 * We are using PS-Poll and mac80211 can request TX while in
2421 * power save mode. Need to wake up hardware for the TX to be
2422 * completed and if needed, also for RX of buffered frames.
2423 */
2424 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2425 ath9k_ps_wakeup(sc);
2426 ath9k_hw_setrxabort(sc->sc_ah, 0);
2427 if (ieee80211_is_pspoll(hdr->frame_control)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002428 ath_print(common, ATH_DBG_PS,
2429 "Sending PS-Poll to pick a buffered frame\n");
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002430 sc->sc_flags |= SC_OP_WAIT_FOR_PSPOLL_DATA;
2431 } else {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002432 ath_print(common, ATH_DBG_PS,
2433 "Wake up to complete TX\n");
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002434 sc->sc_flags |= SC_OP_WAIT_FOR_TX_ACK;
2435 }
2436 /*
2437 * The actual restore operation will happen only after
2438 * the sc_flags bit is cleared. We are just dropping
2439 * the ps_usecount here.
2440 */
2441 ath9k_ps_restore(sc);
2442 }
2443
Sujith528f0c62008-10-29 10:14:26 +05302444 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03002445
2446 /*
2447 * As a temporary workaround, assign seq# here; this will likely need
2448 * to be cleaned up to work better with Beacon transmission and virtual
2449 * BSSes.
2450 */
2451 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
2452 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2453 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Sujithb77f4832008-12-07 21:44:03 +05302454 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +03002455 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +05302456 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +03002457 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002458
2459 /* Add the padding after the header if this is not already done */
2460 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
2461 if (hdrlen & 3) {
2462 padsize = hdrlen % 4;
2463 if (skb_headroom(skb) < padsize)
2464 return -1;
2465 skb_push(skb, padsize);
2466 memmove(skb->data, skb->data + padsize, hdrlen);
2467 }
2468
Sujith528f0c62008-10-29 10:14:26 +05302469 /* Check if a tx queue is available */
2470
2471 txctl.txq = ath_test_get_txq(sc, skb);
2472 if (!txctl.txq)
2473 goto exit;
2474
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002475 ath_print(common, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002476
Jouni Malinenc52f33d2009-03-03 19:23:29 +02002477 if (ath_tx_start(hw, skb, &txctl) != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002478 ath_print(common, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05302479 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002480 }
2481
2482 return 0;
Sujith528f0c62008-10-29 10:14:26 +05302483exit:
2484 dev_kfree_skb_any(skb);
2485 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002486}
2487
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002488/*
2489 * Pause btcoex timer and bt duty cycle timer
2490 */
2491static void ath9k_btcoex_timer_pause(struct ath_softc *sc)
2492{
2493 struct ath_btcoex *btcoex = &sc->btcoex;
2494 struct ath_hw *ah = sc->sc_ah;
2495
2496 del_timer_sync(&btcoex->period_timer);
2497
2498 if (btcoex->hw_timer_enabled)
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002499 ath9k_gen_timer_stop(ah, btcoex->no_stomp_timer);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002500
2501 btcoex->hw_timer_enabled = false;
2502}
2503
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002504static void ath9k_stop(struct ieee80211_hw *hw)
2505{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002506 struct ath_wiphy *aphy = hw->priv;
2507 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002508 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002509 struct ath_common *common = ath9k_hw_common(ah);
Sujith9c84b792008-10-29 10:17:13 +05302510
Sujith4c483812009-08-18 10:51:52 +05302511 mutex_lock(&sc->mutex);
2512
Jouni Malinen9580a222009-03-03 19:23:33 +02002513 aphy->state = ATH_WIPHY_INACTIVE;
2514
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -07002515 cancel_delayed_work_sync(&sc->ath_led_blink_work);
2516 cancel_delayed_work_sync(&sc->tx_complete_work);
2517
2518 if (!sc->num_sec_wiphy) {
2519 cancel_delayed_work_sync(&sc->wiphy_work);
2520 cancel_work_sync(&sc->chan_work);
2521 }
2522
Sujith9c84b792008-10-29 10:17:13 +05302523 if (sc->sc_flags & SC_OP_INVALID) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002524 ath_print(common, ATH_DBG_ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +05302525 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +05302526 return;
2527 }
2528
Jouni Malinen9580a222009-03-03 19:23:33 +02002529 if (ath9k_wiphy_started(sc)) {
2530 mutex_unlock(&sc->mutex);
2531 return; /* another wiphy still in use */
2532 }
2533
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002534 if (ah->btcoex_hw.enabled) {
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002535 ath9k_hw_btcoex_disable(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002536 if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002537 ath9k_btcoex_timer_pause(sc);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302538 }
2539
Sujithff37e332008-11-24 12:07:55 +05302540 /* make sure h/w will not generate any interrupt
2541 * before setting the invalid flag. */
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002542 ath9k_hw_set_interrupts(ah, 0);
Sujithff37e332008-11-24 12:07:55 +05302543
2544 if (!(sc->sc_flags & SC_OP_INVALID)) {
Sujith043a0402009-01-16 21:38:47 +05302545 ath_drain_all_txq(sc, false);
Sujithff37e332008-11-24 12:07:55 +05302546 ath_stoprecv(sc);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002547 ath9k_hw_phy_disable(ah);
Sujithff37e332008-11-24 12:07:55 +05302548 } else
Sujithb77f4832008-12-07 21:44:03 +05302549 sc->rx.rxlink = NULL;
Sujithff37e332008-11-24 12:07:55 +05302550
Sujithff37e332008-11-24 12:07:55 +05302551 /* disable HAL and put h/w to sleep */
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002552 ath9k_hw_disable(ah);
2553 ath9k_hw_configpcipowersave(ah, 1, 1);
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002554 ath9k_setpower(sc, ATH9K_PM_FULL_SLEEP);
Sujithff37e332008-11-24 12:07:55 +05302555
2556 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002557
Sujith141b38b2009-02-04 08:10:07 +05302558 mutex_unlock(&sc->mutex);
2559
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002560 ath_print(common, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002561}
2562
2563static int ath9k_add_interface(struct ieee80211_hw *hw,
2564 struct ieee80211_if_init_conf *conf)
2565{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002566 struct ath_wiphy *aphy = hw->priv;
2567 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002568 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith17d79042009-02-09 13:27:03 +05302569 struct ath_vif *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08002570 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002571 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002572
Sujith141b38b2009-02-04 08:10:07 +05302573 mutex_lock(&sc->mutex);
2574
Jouni Malinen8ca21f02009-03-03 19:23:27 +02002575 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) &&
2576 sc->nvifs > 0) {
2577 ret = -ENOBUFS;
2578 goto out;
2579 }
2580
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002581 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002582 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002583 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002584 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002585 case NL80211_IFTYPE_ADHOC:
Johannes Berg05c914f2008-09-11 00:01:58 +02002586 case NL80211_IFTYPE_AP:
Pat Erley9cb54122009-03-20 22:59:59 -04002587 case NL80211_IFTYPE_MESH_POINT:
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002588 if (sc->nbcnvifs >= ATH_BCBUF) {
2589 ret = -ENOBUFS;
2590 goto out;
2591 }
Pat Erley9cb54122009-03-20 22:59:59 -04002592 ic_opmode = conf->type;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002593 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002594 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002595 ath_print(common, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302596 "Interface type %d not yet supported\n", conf->type);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002597 ret = -EOPNOTSUPP;
2598 goto out;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002599 }
2600
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002601 ath_print(common, ATH_DBG_CONFIG,
2602 "Attach a VIF of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002603
Sujith17d79042009-02-09 13:27:03 +05302604 /* Set the VIF opmode */
Sujith5640b082008-10-29 10:16:06 +05302605 avp->av_opmode = ic_opmode;
2606 avp->av_bslot = -1;
2607
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002608 sc->nvifs++;
Jouni Malinen8ca21f02009-03-03 19:23:27 +02002609
2610 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK)
2611 ath9k_set_bssid_mask(hw);
2612
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002613 if (sc->nvifs > 1)
2614 goto out; /* skip global settings for secondary vif */
2615
Sujithb238e902009-03-03 10:16:56 +05302616 if (ic_opmode == NL80211_IFTYPE_AP) {
Sujith5640b082008-10-29 10:16:06 +05302617 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
Sujithb238e902009-03-03 10:16:56 +05302618 sc->sc_flags |= SC_OP_TSF_RESET;
2619 }
Sujith5640b082008-10-29 10:16:06 +05302620
Sujith5640b082008-10-29 10:16:06 +05302621 /* Set the device opmode */
Sujith2660b812009-02-09 13:27:26 +05302622 sc->sc_ah->opmode = ic_opmode;
Sujith5640b082008-10-29 10:16:06 +05302623
Vivek Natarajan4e30ffa2009-01-28 20:53:27 +05302624 /*
2625 * Enable MIB interrupts when there are hardware phy counters.
2626 * Note we only do this (at the moment) for station mode.
2627 */
Sujith4af9cf42009-02-12 10:06:47 +05302628 if ((conf->type == NL80211_IFTYPE_STATION) ||
Pat Erley9cb54122009-03-20 22:59:59 -04002629 (conf->type == NL80211_IFTYPE_ADHOC) ||
2630 (conf->type == NL80211_IFTYPE_MESH_POINT)) {
Sujith1aa8e842009-08-13 09:34:25 +05302631 sc->imask |= ATH9K_INT_MIB;
Sujith4af9cf42009-02-12 10:06:47 +05302632 sc->imask |= ATH9K_INT_TSFOOR;
2633 }
2634
Sujith17d79042009-02-09 13:27:03 +05302635 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
Vivek Natarajan4e30ffa2009-01-28 20:53:27 +05302636
Senthil Balasubramanianf38faa32009-06-24 18:56:40 +05302637 if (conf->type == NL80211_IFTYPE_AP ||
2638 conf->type == NL80211_IFTYPE_ADHOC ||
2639 conf->type == NL80211_IFTYPE_MONITOR)
Sujith415f7382009-04-13 21:56:46 +05302640 ath_start_ani(sc);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002641
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002642out:
Sujith141b38b2009-02-04 08:10:07 +05302643 mutex_unlock(&sc->mutex);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002644 return ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002645}
2646
2647static void ath9k_remove_interface(struct ieee80211_hw *hw,
2648 struct ieee80211_if_init_conf *conf)
2649{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002650 struct ath_wiphy *aphy = hw->priv;
2651 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002652 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith17d79042009-02-09 13:27:03 +05302653 struct ath_vif *avp = (void *)conf->vif->drv_priv;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002654 int i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002655
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002656 ath_print(common, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002657
Sujith141b38b2009-02-04 08:10:07 +05302658 mutex_lock(&sc->mutex);
2659
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002660 /* Stop ANI */
Sujith17d79042009-02-09 13:27:03 +05302661 del_timer_sync(&sc->ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002662
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002663 /* Reclaim beacon resources */
Pat Erley9cb54122009-03-20 22:59:59 -04002664 if ((sc->sc_ah->opmode == NL80211_IFTYPE_AP) ||
2665 (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) ||
2666 (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) {
Sujithb77f4832008-12-07 21:44:03 +05302667 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002668 ath_beacon_return(sc, avp);
2669 }
2670
Sujith672840a2008-08-11 14:05:08 +05302671 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002672
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002673 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) {
2674 if (sc->beacon.bslot[i] == conf->vif) {
2675 printk(KERN_DEBUG "%s: vif had allocated beacon "
2676 "slot\n", __func__);
2677 sc->beacon.bslot[i] = NULL;
Jouni Malinenc52f33d2009-03-03 19:23:29 +02002678 sc->beacon.bslot_aphy[i] = NULL;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002679 }
2680 }
2681
Sujith17d79042009-02-09 13:27:03 +05302682 sc->nvifs--;
Sujith141b38b2009-02-04 08:10:07 +05302683
2684 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002685}
2686
Johannes Berge8975582008-10-09 12:18:51 +02002687static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002688{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002689 struct ath_wiphy *aphy = hw->priv;
2690 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002691 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Johannes Berge8975582008-10-09 12:18:51 +02002692 struct ieee80211_conf *conf = &hw->conf;
Vivek Natarajan8782b412009-03-30 14:17:00 +05302693 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002694 bool all_wiphys_idle = false, disable_radio = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002695
Sujithaa33de02008-12-18 11:40:16 +05302696 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05302697
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002698 /* Leave this as the first check */
2699 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
2700
2701 spin_lock_bh(&sc->wiphy_lock);
2702 all_wiphys_idle = ath9k_all_wiphys_idle(sc);
2703 spin_unlock_bh(&sc->wiphy_lock);
2704
2705 if (conf->flags & IEEE80211_CONF_IDLE){
2706 if (all_wiphys_idle)
2707 disable_radio = true;
2708 }
2709 else if (all_wiphys_idle) {
2710 ath_radio_enable(sc);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002711 ath_print(common, ATH_DBG_CONFIG,
2712 "not-idle: enabling radio\n");
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002713 }
2714 }
2715
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302716 if (changed & IEEE80211_CONF_CHANGE_PS) {
2717 if (conf->flags & IEEE80211_CONF_PS) {
Vivek Natarajan8782b412009-03-30 14:17:00 +05302718 if (!(ah->caps.hw_caps &
2719 ATH9K_HW_CAP_AUTOSLEEP)) {
2720 if ((sc->imask & ATH9K_INT_TIM_TIMER) == 0) {
2721 sc->imask |= ATH9K_INT_TIM_TIMER;
2722 ath9k_hw_set_interrupts(sc->sc_ah,
2723 sc->imask);
2724 }
2725 ath9k_hw_setrxabort(sc->sc_ah, 1);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302726 }
Gabor Juhos96148322009-07-24 17:27:21 +02002727 sc->ps_enabled = true;
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302728 } else {
Gabor Juhos96148322009-07-24 17:27:21 +02002729 sc->ps_enabled = false;
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002730 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Vivek Natarajan8782b412009-03-30 14:17:00 +05302731 if (!(ah->caps.hw_caps &
2732 ATH9K_HW_CAP_AUTOSLEEP)) {
2733 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002734 sc->sc_flags &= ~(SC_OP_WAIT_FOR_BEACON |
2735 SC_OP_WAIT_FOR_CAB |
2736 SC_OP_WAIT_FOR_PSPOLL_DATA |
2737 SC_OP_WAIT_FOR_TX_ACK);
Vivek Natarajan8782b412009-03-30 14:17:00 +05302738 if (sc->imask & ATH9K_INT_TIM_TIMER) {
2739 sc->imask &= ~ATH9K_INT_TIM_TIMER;
2740 ath9k_hw_set_interrupts(sc->sc_ah,
2741 sc->imask);
2742 }
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302743 }
2744 }
2745 }
2746
Johannes Berg47979382009-01-07 10:13:27 +01002747 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
Sujith99405f92008-11-24 12:08:35 +05302748 struct ieee80211_channel *curchan = hw->conf.channel;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002749 int pos = curchan->hw_value;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002750
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002751 aphy->chan_idx = pos;
2752 aphy->chan_is_ht = conf_is_ht(conf);
2753
Jouni Malinen8089cc42009-03-03 19:23:38 +02002754 if (aphy->state == ATH_WIPHY_SCAN ||
2755 aphy->state == ATH_WIPHY_ACTIVE)
2756 ath9k_wiphy_pause_all_forced(sc, aphy);
2757 else {
2758 /*
2759 * Do not change operational channel based on a paused
2760 * wiphy changes.
2761 */
2762 goto skip_chan_change;
2763 }
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002764
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002765 ath_print(common, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2766 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002767
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002768 /* XXX: remove me eventualy */
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002769 ath9k_update_ichannel(sc, hw, &sc->sc_ah->channels[pos]);
Sujithe11602b2008-11-27 09:46:27 +05302770
Luis R. Rodriguezecf70442008-12-23 15:58:43 -08002771 ath_update_chainmask(sc, conf_is_ht(conf));
Sujith86060f02009-01-07 14:25:29 +05302772
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002773 if (ath_set_channel(sc, hw, &sc->sc_ah->channels[pos]) < 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002774 ath_print(common, ATH_DBG_FATAL,
2775 "Unable to set channel\n");
Sujithaa33de02008-12-18 11:40:16 +05302776 mutex_unlock(&sc->mutex);
Sujithe11602b2008-11-27 09:46:27 +05302777 return -EINVAL;
2778 }
Sujith094d05d2008-12-12 11:57:43 +05302779 }
Sujith86b89ee2008-08-07 10:54:57 +05302780
Jouni Malinen8089cc42009-03-03 19:23:38 +02002781skip_chan_change:
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002782 if (changed & IEEE80211_CONF_CHANGE_POWER)
Sujith17d79042009-02-09 13:27:03 +05302783 sc->config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002784
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002785 if (disable_radio) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002786 ath_print(common, ATH_DBG_CONFIG, "idle: disabling radio\n");
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002787 ath_radio_disable(sc);
2788 }
2789
Sujithaa33de02008-12-18 11:40:16 +05302790 mutex_unlock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05302791
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002792 return 0;
2793}
2794
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002795#define SUPPORTED_FILTERS \
2796 (FIF_PROMISC_IN_BSS | \
2797 FIF_ALLMULTI | \
2798 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04002799 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002800 FIF_OTHER_BSS | \
2801 FIF_BCN_PRBRESP_PROMISC | \
2802 FIF_FCSFAIL)
2803
Sujith7dcfdcd2008-08-11 14:03:13 +05302804/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002805static void ath9k_configure_filter(struct ieee80211_hw *hw,
2806 unsigned int changed_flags,
2807 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02002808 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002809{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002810 struct ath_wiphy *aphy = hw->priv;
2811 struct ath_softc *sc = aphy->sc;
Sujith7dcfdcd2008-08-11 14:03:13 +05302812 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002813
2814 changed_flags &= SUPPORTED_FILTERS;
2815 *total_flags &= SUPPORTED_FILTERS;
2816
Sujithb77f4832008-12-07 21:44:03 +05302817 sc->rx.rxfilter = *total_flags;
Jouni Malinenaa68aea2009-05-19 17:01:41 +03002818 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05302819 rfilt = ath_calcrxfilter(sc);
2820 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03002821 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05302822
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002823 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_CONFIG,
2824 "Set HW RX filter: 0x%x\n", rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002825}
2826
2827static void ath9k_sta_notify(struct ieee80211_hw *hw,
2828 struct ieee80211_vif *vif,
2829 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002830 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002831{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002832 struct ath_wiphy *aphy = hw->priv;
2833 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002834
2835 switch (cmd) {
2836 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302837 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002838 break;
2839 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302840 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002841 break;
2842 default:
2843 break;
2844 }
2845}
2846
Sujith141b38b2009-02-04 08:10:07 +05302847static int ath9k_conf_tx(struct ieee80211_hw *hw, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002848 const struct ieee80211_tx_queue_params *params)
2849{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002850 struct ath_wiphy *aphy = hw->priv;
2851 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002852 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujithea9880f2008-08-07 10:53:10 +05302853 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002854 int ret = 0, qnum;
2855
2856 if (queue >= WME_NUM_AC)
2857 return 0;
2858
Sujith141b38b2009-02-04 08:10:07 +05302859 mutex_lock(&sc->mutex);
2860
Sujith1ffb0612009-03-30 15:28:46 +05302861 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
2862
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002863 qi.tqi_aifs = params->aifs;
2864 qi.tqi_cwmin = params->cw_min;
2865 qi.tqi_cwmax = params->cw_max;
2866 qi.tqi_burstTime = params->txop;
2867 qnum = ath_get_hal_qnum(queue, sc);
2868
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002869 ath_print(common, ATH_DBG_CONFIG,
2870 "Configure tx [queue/halq] [%d/%d], "
2871 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
2872 queue, qnum, params->aifs, params->cw_min,
2873 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002874
2875 ret = ath_txq_update(sc, qnum, &qi);
2876 if (ret)
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002877 ath_print(common, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002878
Sujith141b38b2009-02-04 08:10:07 +05302879 mutex_unlock(&sc->mutex);
2880
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002881 return ret;
2882}
2883
2884static int ath9k_set_key(struct ieee80211_hw *hw,
2885 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002886 struct ieee80211_vif *vif,
2887 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002888 struct ieee80211_key_conf *key)
2889{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002890 struct ath_wiphy *aphy = hw->priv;
2891 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002892 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002893 int ret = 0;
2894
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02002895 if (modparam_nohwcrypt)
2896 return -ENOSPC;
2897
Sujith141b38b2009-02-04 08:10:07 +05302898 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302899 ath9k_ps_wakeup(sc);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002900 ath_print(common, ATH_DBG_CONFIG, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002901
2902 switch (cmd) {
2903 case SET_KEY:
Jouni Malinen3f53dd62009-02-26 11:18:46 +02002904 ret = ath_key_config(sc, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02002905 if (ret >= 0) {
2906 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002907 /* push IV and Michael MIC generation to stack */
2908 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302909 if (key->alg == ALG_TKIP)
2910 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002911 if (sc->sc_ah->sw_mgmt_crypto && key->alg == ALG_CCMP)
2912 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT;
Jouni Malinen6ace2892008-12-17 13:32:17 +02002913 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002914 }
2915 break;
2916 case DISABLE_KEY:
2917 ath_key_delete(sc, key);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002918 break;
2919 default:
2920 ret = -EINVAL;
2921 }
2922
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302923 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05302924 mutex_unlock(&sc->mutex);
2925
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002926 return ret;
2927}
2928
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002929static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2930 struct ieee80211_vif *vif,
2931 struct ieee80211_bss_conf *bss_conf,
2932 u32 changed)
2933{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002934 struct ath_wiphy *aphy = hw->priv;
2935 struct ath_softc *sc = aphy->sc;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002936 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002937 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002938 struct ath_vif *avp = (void *)vif->drv_priv;
2939 u32 rfilt = 0;
2940 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002941
Sujith141b38b2009-02-04 08:10:07 +05302942 mutex_lock(&sc->mutex);
2943
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002944 /*
2945 * TODO: Need to decide which hw opmode to use for
2946 * multi-interface cases
2947 * XXX: This belongs into add_interface!
2948 */
2949 if (vif->type == NL80211_IFTYPE_AP &&
2950 ah->opmode != NL80211_IFTYPE_AP) {
2951 ah->opmode = NL80211_IFTYPE_STATION;
2952 ath9k_hw_setopmode(ah);
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002953 memcpy(common->curbssid, common->macaddr, ETH_ALEN);
2954 common->curaid = 0;
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002955 ath9k_hw_write_associd(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002956 /* Request full reset to get hw opmode changed properly */
2957 sc->sc_flags |= SC_OP_FULL_RESET;
2958 }
2959
2960 if ((changed & BSS_CHANGED_BSSID) &&
2961 !is_zero_ether_addr(bss_conf->bssid)) {
2962 switch (vif->type) {
2963 case NL80211_IFTYPE_STATION:
2964 case NL80211_IFTYPE_ADHOC:
2965 case NL80211_IFTYPE_MESH_POINT:
2966 /* Set BSSID */
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002967 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002968 memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN);
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002969 common->curaid = 0;
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002970 ath9k_hw_write_associd(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002971
2972 /* Set aggregation protection mode parameters */
2973 sc->config.ath_aggr_prot = 0;
2974
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002975 ath_print(common, ATH_DBG_CONFIG,
2976 "RX filter 0x%x bssid %pM aid 0x%x\n",
2977 rfilt, common->curbssid, common->curaid);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002978
2979 /* need to reconfigure the beacon */
2980 sc->sc_flags &= ~SC_OP_BEACONS ;
2981
2982 break;
2983 default:
2984 break;
2985 }
2986 }
2987
2988 if ((vif->type == NL80211_IFTYPE_ADHOC) ||
2989 (vif->type == NL80211_IFTYPE_AP) ||
2990 (vif->type == NL80211_IFTYPE_MESH_POINT)) {
2991 if ((changed & BSS_CHANGED_BEACON) ||
2992 (changed & BSS_CHANGED_BEACON_ENABLED &&
2993 bss_conf->enable_beacon)) {
2994 /*
2995 * Allocate and setup the beacon frame.
2996 *
2997 * Stop any previous beacon DMA. This may be
2998 * necessary, for example, when an ibss merge
2999 * causes reconfiguration; we may be called
3000 * with beacon transmission active.
3001 */
3002 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
3003
3004 error = ath_beacon_alloc(aphy, vif);
3005 if (!error)
3006 ath_beacon_config(sc, vif);
3007 }
3008 }
3009
3010 /* Check for WLAN_CAPABILITY_PRIVACY ? */
3011 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
3012 for (i = 0; i < IEEE80211_WEP_NKID; i++)
3013 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
3014 ath9k_hw_keysetmac(sc->sc_ah,
3015 (u16)i,
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003016 common->curbssid);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02003017 }
3018
3019 /* Only legacy IBSS for now */
3020 if (vif->type == NL80211_IFTYPE_ADHOC)
3021 ath_update_chainmask(sc, 0);
3022
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003023 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003024 ath_print(common, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
3025 bss_conf->use_short_preamble);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003026 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05303027 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003028 else
Sujith672840a2008-08-11 14:05:08 +05303029 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003030 }
3031
3032 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003033 ath_print(common, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
3034 bss_conf->use_cts_prot);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003035 if (bss_conf->use_cts_prot &&
3036 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05303037 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003038 else
Sujith672840a2008-08-11 14:05:08 +05303039 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003040 }
3041
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003042 if (changed & BSS_CHANGED_ASSOC) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003043 ath_print(common, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003044 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05303045 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003046 }
Sujith141b38b2009-02-04 08:10:07 +05303047
Johannes Berg57c4d7b2009-04-23 16:10:04 +02003048 /*
3049 * The HW TSF has to be reset when the beacon interval changes.
3050 * We set the flag here, and ath_beacon_config_ap() would take this
3051 * into account when it gets called through the subsequent
3052 * config_interface() call - with IFCC_BEACON in the changed field.
3053 */
3054
3055 if (changed & BSS_CHANGED_BEACON_INT) {
3056 sc->sc_flags |= SC_OP_TSF_RESET;
3057 sc->beacon_interval = bss_conf->beacon_int;
3058 }
3059
Sujith141b38b2009-02-04 08:10:07 +05303060 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003061}
3062
3063static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
3064{
3065 u64 tsf;
Jouni Malinenbce048d2009-03-03 19:23:28 +02003066 struct ath_wiphy *aphy = hw->priv;
3067 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003068
Sujith141b38b2009-02-04 08:10:07 +05303069 mutex_lock(&sc->mutex);
3070 tsf = ath9k_hw_gettsf64(sc->sc_ah);
3071 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003072
3073 return tsf;
3074}
3075
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01003076static void ath9k_set_tsf(struct ieee80211_hw *hw, u64 tsf)
3077{
Jouni Malinenbce048d2009-03-03 19:23:28 +02003078 struct ath_wiphy *aphy = hw->priv;
3079 struct ath_softc *sc = aphy->sc;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01003080
Sujith141b38b2009-02-04 08:10:07 +05303081 mutex_lock(&sc->mutex);
3082 ath9k_hw_settsf64(sc->sc_ah, tsf);
3083 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01003084}
3085
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003086static void ath9k_reset_tsf(struct ieee80211_hw *hw)
3087{
Jouni Malinenbce048d2009-03-03 19:23:28 +02003088 struct ath_wiphy *aphy = hw->priv;
3089 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003090
Sujith141b38b2009-02-04 08:10:07 +05303091 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07003092
3093 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05303094 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07003095 ath9k_ps_restore(sc);
3096
Sujith141b38b2009-02-04 08:10:07 +05303097 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003098}
3099
3100static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Sujith141b38b2009-02-04 08:10:07 +05303101 enum ieee80211_ampdu_mlme_action action,
3102 struct ieee80211_sta *sta,
3103 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003104{
Jouni Malinenbce048d2009-03-03 19:23:28 +02003105 struct ath_wiphy *aphy = hw->priv;
3106 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003107 int ret = 0;
3108
3109 switch (action) {
3110 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05303111 if (!(sc->sc_flags & SC_OP_RXAGGR))
3112 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003113 break;
3114 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003115 break;
3116 case IEEE80211_AMPDU_TX_START:
Sujithf83da962009-07-23 15:32:37 +05303117 ath_tx_aggr_start(sc, sta, tid, ssn);
3118 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003119 break;
3120 case IEEE80211_AMPDU_TX_STOP:
Sujithf83da962009-07-23 15:32:37 +05303121 ath_tx_aggr_stop(sc, sta, tid);
Johannes Berg17741cd2008-09-11 00:02:02 +02003122 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003123 break;
Johannes Bergb1720232009-03-23 17:28:39 +01003124 case IEEE80211_AMPDU_TX_OPERATIONAL:
Sujith8469cde2008-10-29 10:19:28 +05303125 ath_tx_aggr_resume(sc, sta, tid);
3126 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003127 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003128 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
3129 "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003130 }
3131
3132 return ret;
3133}
3134
Sujith0c98de62009-03-03 10:16:45 +05303135static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
3136{
Jouni Malinenbce048d2009-03-03 19:23:28 +02003137 struct ath_wiphy *aphy = hw->priv;
3138 struct ath_softc *sc = aphy->sc;
Sujith0c98de62009-03-03 10:16:45 +05303139
Sujith3d832612009-08-21 12:00:28 +05303140 mutex_lock(&sc->mutex);
Jouni Malinen8089cc42009-03-03 19:23:38 +02003141 if (ath9k_wiphy_scanning(sc)) {
3142 printk(KERN_DEBUG "ath9k: Two wiphys trying to scan at the "
3143 "same time\n");
3144 /*
3145 * Do not allow the concurrent scanning state for now. This
3146 * could be improved with scanning control moved into ath9k.
3147 */
Sujith3d832612009-08-21 12:00:28 +05303148 mutex_unlock(&sc->mutex);
Jouni Malinen8089cc42009-03-03 19:23:38 +02003149 return;
3150 }
3151
3152 aphy->state = ATH_WIPHY_SCAN;
3153 ath9k_wiphy_pause_all_forced(sc, aphy);
3154
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05303155 spin_lock_bh(&sc->ani_lock);
Sujith0c98de62009-03-03 10:16:45 +05303156 sc->sc_flags |= SC_OP_SCANNING;
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05303157 spin_unlock_bh(&sc->ani_lock);
Sujith3d832612009-08-21 12:00:28 +05303158 mutex_unlock(&sc->mutex);
Sujith0c98de62009-03-03 10:16:45 +05303159}
3160
3161static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
3162{
Jouni Malinenbce048d2009-03-03 19:23:28 +02003163 struct ath_wiphy *aphy = hw->priv;
3164 struct ath_softc *sc = aphy->sc;
Sujith0c98de62009-03-03 10:16:45 +05303165
Sujith3d832612009-08-21 12:00:28 +05303166 mutex_lock(&sc->mutex);
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05303167 spin_lock_bh(&sc->ani_lock);
Jouni Malinen8089cc42009-03-03 19:23:38 +02003168 aphy->state = ATH_WIPHY_ACTIVE;
Sujith0c98de62009-03-03 10:16:45 +05303169 sc->sc_flags &= ~SC_OP_SCANNING;
Sujith9c07a772009-04-13 21:56:36 +05303170 sc->sc_flags |= SC_OP_FULL_RESET;
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05303171 spin_unlock_bh(&sc->ani_lock);
Vivek Natarajand0bec342009-09-02 15:50:55 +05303172 ath_beacon_config(sc, NULL);
Sujith3d832612009-08-21 12:00:28 +05303173 mutex_unlock(&sc->mutex);
Sujith0c98de62009-03-03 10:16:45 +05303174}
3175
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003176struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003177 .tx = ath9k_tx,
3178 .start = ath9k_start,
3179 .stop = ath9k_stop,
3180 .add_interface = ath9k_add_interface,
3181 .remove_interface = ath9k_remove_interface,
3182 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003183 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003184 .sta_notify = ath9k_sta_notify,
3185 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003186 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003187 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003188 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01003189 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003190 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02003191 .ampdu_action = ath9k_ampdu_action,
Sujith0c98de62009-03-03 10:16:45 +05303192 .sw_scan_start = ath9k_sw_scan_start,
3193 .sw_scan_complete = ath9k_sw_scan_complete,
Johannes Berg3b319aa2009-06-13 14:50:26 +05303194 .rfkill_poll = ath9k_rfkill_poll_state,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003195};
3196
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01003197static struct {
3198 u32 version;
3199 const char * name;
3200} ath_mac_bb_names[] = {
3201 { AR_SREV_VERSION_5416_PCI, "5416" },
3202 { AR_SREV_VERSION_5416_PCIE, "5418" },
3203 { AR_SREV_VERSION_9100, "9100" },
3204 { AR_SREV_VERSION_9160, "9160" },
3205 { AR_SREV_VERSION_9280, "9280" },
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303206 { AR_SREV_VERSION_9285, "9285" },
3207 { AR_SREV_VERSION_9287, "9287" }
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01003208};
3209
3210static struct {
3211 u16 version;
3212 const char * name;
3213} ath_rf_names[] = {
3214 { 0, "5133" },
3215 { AR_RAD5133_SREV_MAJOR, "5133" },
3216 { AR_RAD5122_SREV_MAJOR, "5122" },
3217 { AR_RAD2133_SREV_MAJOR, "2133" },
3218 { AR_RAD2122_SREV_MAJOR, "2122" }
3219};
3220
3221/*
3222 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3223 */
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003224const char *
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01003225ath_mac_bb_name(u32 mac_bb_version)
3226{
3227 int i;
3228
3229 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3230 if (ath_mac_bb_names[i].version == mac_bb_version) {
3231 return ath_mac_bb_names[i].name;
3232 }
3233 }
3234
3235 return "????";
3236}
3237
3238/*
3239 * Return the RF name. "????" is returned if the RF is unknown.
3240 */
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003241const char *
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01003242ath_rf_name(u16 rf_version)
3243{
3244 int i;
3245
3246 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3247 if (ath_rf_names[i].version == rf_version) {
3248 return ath_rf_names[i].name;
3249 }
3250 }
3251
3252 return "????";
3253}
3254
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003255static int __init ath9k_init(void)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003256{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303257 int error;
3258
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303259 /* Register rate control algorithm */
3260 error = ath_rate_control_register();
3261 if (error != 0) {
3262 printk(KERN_ERR
Luis R. Rodriguezb51bb3c2009-01-26 07:30:03 -08003263 "ath9k: Unable to register rate control "
3264 "algorithm: %d\n",
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303265 error);
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003266 goto err_out;
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303267 }
3268
Gabor Juhos19d8bc22009-03-05 16:55:18 +01003269 error = ath9k_debug_create_root();
3270 if (error) {
3271 printk(KERN_ERR
3272 "ath9k: Unable to create debugfs root: %d\n",
3273 error);
3274 goto err_rate_unregister;
3275 }
3276
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003277 error = ath_pci_init();
3278 if (error < 0) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003279 printk(KERN_ERR
Luis R. Rodriguezb51bb3c2009-01-26 07:30:03 -08003280 "ath9k: No PCI devices found, driver not installed.\n");
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003281 error = -ENODEV;
Gabor Juhos19d8bc22009-03-05 16:55:18 +01003282 goto err_remove_root;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003283 }
3284
Gabor Juhos09329d32009-01-14 20:17:07 +01003285 error = ath_ahb_init();
3286 if (error < 0) {
3287 error = -ENODEV;
3288 goto err_pci_exit;
3289 }
3290
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003291 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003292
Gabor Juhos09329d32009-01-14 20:17:07 +01003293 err_pci_exit:
3294 ath_pci_exit();
3295
Gabor Juhos19d8bc22009-03-05 16:55:18 +01003296 err_remove_root:
3297 ath9k_debug_remove_root();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003298 err_rate_unregister:
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303299 ath_rate_control_unregister();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003300 err_out:
3301 return error;
3302}
3303module_init(ath9k_init);
3304
3305static void __exit ath9k_exit(void)
3306{
Gabor Juhos09329d32009-01-14 20:17:07 +01003307 ath_ahb_exit();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003308 ath_pci_exit();
Gabor Juhos19d8bc22009-03-05 16:55:18 +01003309 ath9k_debug_remove_root();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003310 ath_rate_control_unregister();
Sujith04bd4632008-11-28 22:18:05 +05303311 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003312}
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003313module_exit(ath9k_exit);