blob: 04a6051037191ea5c4b9300da001086cb3f3a71e [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
2 * Copyright (c) 2008 Atheros Communications Inc.
3 *
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>
18#include "core.h"
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +010019#include "reg.h"
Sujith2a163c62008-11-28 22:21:08 +053020#include "hw.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021
22#define ATH_PCI_VERSION "0.1"
23
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024static char *dev_info = "ath9k";
25
26MODULE_AUTHOR("Atheros Communications");
27MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
28MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
29MODULE_LICENSE("Dual BSD/GPL");
30
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080031/* We use the hw_value as an index into our private channel structure */
32
33#define CHAN2G(_freq, _idx) { \
34 .center_freq = (_freq), \
35 .hw_value = (_idx), \
36 .max_power = 30, \
37}
38
39#define CHAN5G(_freq, _idx) { \
40 .band = IEEE80211_BAND_5GHZ, \
41 .center_freq = (_freq), \
42 .hw_value = (_idx), \
43 .max_power = 30, \
44}
45
46/* Some 2 GHz radios are actually tunable on 2312-2732
47 * on 5 MHz steps, we support the channels which we know
48 * we have calibration data for all cards though to make
49 * this static */
50static struct ieee80211_channel ath9k_2ghz_chantable[] = {
51 CHAN2G(2412, 0), /* Channel 1 */
52 CHAN2G(2417, 1), /* Channel 2 */
53 CHAN2G(2422, 2), /* Channel 3 */
54 CHAN2G(2427, 3), /* Channel 4 */
55 CHAN2G(2432, 4), /* Channel 5 */
56 CHAN2G(2437, 5), /* Channel 6 */
57 CHAN2G(2442, 6), /* Channel 7 */
58 CHAN2G(2447, 7), /* Channel 8 */
59 CHAN2G(2452, 8), /* Channel 9 */
60 CHAN2G(2457, 9), /* Channel 10 */
61 CHAN2G(2462, 10), /* Channel 11 */
62 CHAN2G(2467, 11), /* Channel 12 */
63 CHAN2G(2472, 12), /* Channel 13 */
64 CHAN2G(2484, 13), /* Channel 14 */
65};
66
67/* Some 5 GHz radios are actually tunable on XXXX-YYYY
68 * on 5 MHz steps, we support the channels which we know
69 * we have calibration data for all cards though to make
70 * this static */
71static struct ieee80211_channel ath9k_5ghz_chantable[] = {
72 /* _We_ call this UNII 1 */
73 CHAN5G(5180, 14), /* Channel 36 */
74 CHAN5G(5200, 15), /* Channel 40 */
75 CHAN5G(5220, 16), /* Channel 44 */
76 CHAN5G(5240, 17), /* Channel 48 */
77 /* _We_ call this UNII 2 */
78 CHAN5G(5260, 18), /* Channel 52 */
79 CHAN5G(5280, 19), /* Channel 56 */
80 CHAN5G(5300, 20), /* Channel 60 */
81 CHAN5G(5320, 21), /* Channel 64 */
82 /* _We_ call this "Middle band" */
83 CHAN5G(5500, 22), /* Channel 100 */
84 CHAN5G(5520, 23), /* Channel 104 */
85 CHAN5G(5540, 24), /* Channel 108 */
86 CHAN5G(5560, 25), /* Channel 112 */
87 CHAN5G(5580, 26), /* Channel 116 */
88 CHAN5G(5600, 27), /* Channel 120 */
89 CHAN5G(5620, 28), /* Channel 124 */
90 CHAN5G(5640, 29), /* Channel 128 */
91 CHAN5G(5660, 30), /* Channel 132 */
92 CHAN5G(5680, 31), /* Channel 136 */
93 CHAN5G(5700, 32), /* Channel 140 */
94 /* _We_ call this UNII 3 */
95 CHAN5G(5745, 33), /* Channel 149 */
96 CHAN5G(5765, 34), /* Channel 153 */
97 CHAN5G(5785, 35), /* Channel 157 */
98 CHAN5G(5805, 36), /* Channel 161 */
99 CHAN5G(5825, 37), /* Channel 165 */
100};
101
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -0800102static void ath_cache_conf_rate(struct ath_softc *sc,
103 struct ieee80211_conf *conf)
Sujithff37e332008-11-24 12:07:55 +0530104{
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800105 switch (conf->channel->band) {
106 case IEEE80211_BAND_2GHZ:
107 if (conf_is_ht20(conf))
108 sc->cur_rate_table =
109 sc->hw_rate_table[ATH9K_MODE_11NG_HT20];
110 else if (conf_is_ht40_minus(conf))
111 sc->cur_rate_table =
112 sc->hw_rate_table[ATH9K_MODE_11NG_HT40MINUS];
113 else if (conf_is_ht40_plus(conf))
114 sc->cur_rate_table =
115 sc->hw_rate_table[ATH9K_MODE_11NG_HT40PLUS];
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800116 else
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800117 sc->cur_rate_table =
118 sc->hw_rate_table[ATH9K_MODE_11G];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800119 break;
120 case IEEE80211_BAND_5GHZ:
121 if (conf_is_ht20(conf))
122 sc->cur_rate_table =
123 sc->hw_rate_table[ATH9K_MODE_11NA_HT20];
124 else if (conf_is_ht40_minus(conf))
125 sc->cur_rate_table =
126 sc->hw_rate_table[ATH9K_MODE_11NA_HT40MINUS];
127 else if (conf_is_ht40_plus(conf))
128 sc->cur_rate_table =
129 sc->hw_rate_table[ATH9K_MODE_11NA_HT40PLUS];
130 else
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800131 sc->cur_rate_table =
132 sc->hw_rate_table[ATH9K_MODE_11A];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800133 break;
134 default:
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -0800135 BUG_ON(1);
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800136 break;
137 }
Sujithff37e332008-11-24 12:07:55 +0530138}
139
140static void ath_update_txpow(struct ath_softc *sc)
141{
142 struct ath_hal *ah = sc->sc_ah;
143 u32 txpow;
144
145 if (sc->sc_curtxpow != sc->sc_config.txpowlimit) {
146 ath9k_hw_set_txpowerlimit(ah, sc->sc_config.txpowlimit);
147 /* read back in case value is clamped */
148 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
149 sc->sc_curtxpow = txpow;
150 }
151}
152
153static u8 parse_mpdudensity(u8 mpdudensity)
154{
155 /*
156 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
157 * 0 for no restriction
158 * 1 for 1/4 us
159 * 2 for 1/2 us
160 * 3 for 1 us
161 * 4 for 2 us
162 * 5 for 4 us
163 * 6 for 8 us
164 * 7 for 16 us
165 */
166 switch (mpdudensity) {
167 case 0:
168 return 0;
169 case 1:
170 case 2:
171 case 3:
172 /* Our lower layer calculations limit our precision to
173 1 microsecond */
174 return 1;
175 case 4:
176 return 2;
177 case 5:
178 return 4;
179 case 6:
180 return 8;
181 case 7:
182 return 16;
183 default:
184 return 0;
185 }
186}
187
188static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band)
189{
190 struct ath_rate_table *rate_table = NULL;
191 struct ieee80211_supported_band *sband;
192 struct ieee80211_rate *rate;
193 int i, maxrates;
194
195 switch (band) {
196 case IEEE80211_BAND_2GHZ:
197 rate_table = sc->hw_rate_table[ATH9K_MODE_11G];
198 break;
199 case IEEE80211_BAND_5GHZ:
200 rate_table = sc->hw_rate_table[ATH9K_MODE_11A];
201 break;
202 default:
203 break;
204 }
205
206 if (rate_table == NULL)
207 return;
208
209 sband = &sc->sbands[band];
210 rate = sc->rates[band];
211
212 if (rate_table->rate_cnt > ATH_RATE_MAX)
213 maxrates = ATH_RATE_MAX;
214 else
215 maxrates = rate_table->rate_cnt;
216
217 for (i = 0; i < maxrates; i++) {
218 rate[i].bitrate = rate_table->info[i].ratekbps / 100;
219 rate[i].hw_value = rate_table->info[i].ratecode;
220 sband->n_bitrates++;
Sujith04bd4632008-11-28 22:18:05 +0530221 DPRINTF(sc, ATH_DBG_CONFIG, "Rate: %2dMbps, ratecode: %2d\n",
222 rate[i].bitrate / 10, rate[i].hw_value);
Sujithff37e332008-11-24 12:07:55 +0530223 }
224}
225
Sujithff37e332008-11-24 12:07:55 +0530226/*
227 * Set/change channels. If the channel is really being changed, it's done
228 * by reseting the chip. To accomplish this we must first cleanup any pending
229 * DMA, then restart stuff.
230*/
231static int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan)
232{
233 struct ath_hal *ah = sc->sc_ah;
234 bool fastcc = true, stopped;
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800235 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800236 struct ieee80211_channel *channel = hw->conf.channel;
237 int r;
Sujithff37e332008-11-24 12:07:55 +0530238
239 if (sc->sc_flags & SC_OP_INVALID)
240 return -EIO;
241
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +0530242 ath9k_ps_wakeup(sc);
243
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800244 /*
245 * This is only performed if the channel settings have
246 * actually changed.
247 *
248 * To switch channels clear any pending DMA operations;
249 * wait long enough for the RX fifo to drain, reset the
250 * hardware at the new frequency, and then re-enable
251 * the relevant bits of the h/w.
252 */
253 ath9k_hw_set_interrupts(ah, 0);
Sujith043a0402009-01-16 21:38:47 +0530254 ath_drain_all_txq(sc, false);
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800255 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530256
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800257 /* XXX: do not flush receive queue here. We don't want
258 * to flush data frames already in queue because of
259 * changing channel. */
Sujithff37e332008-11-24 12:07:55 +0530260
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800261 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
262 fastcc = false;
Sujithff37e332008-11-24 12:07:55 +0530263
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800264 DPRINTF(sc, ATH_DBG_CONFIG,
265 "(%u MHz) -> (%u MHz), chanwidth: %d\n",
266 sc->sc_ah->ah_curchan->channel,
267 channel->center_freq, sc->tx_chan_width);
Sujith99405f92008-11-24 12:08:35 +0530268
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800269 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800270
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800271 r = ath9k_hw_reset(ah, hchan, fastcc);
272 if (r) {
273 DPRINTF(sc, ATH_DBG_FATAL,
274 "Unable to reset channel (%u Mhz) "
275 "reset status %u\n",
276 channel->center_freq, r);
Sujithff37e332008-11-24 12:07:55 +0530277 spin_unlock_bh(&sc->sc_resetlock);
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800278 return r;
Sujithff37e332008-11-24 12:07:55 +0530279 }
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800280 spin_unlock_bh(&sc->sc_resetlock);
281
282 sc->sc_flags &= ~SC_OP_CHAINMASK_UPDATE;
283 sc->sc_flags &= ~SC_OP_FULL_RESET;
284
285 if (ath_startrecv(sc) != 0) {
286 DPRINTF(sc, ATH_DBG_FATAL,
287 "Unable to restart recv logic\n");
288 return -EIO;
289 }
290
291 ath_cache_conf_rate(sc, &hw->conf);
292 ath_update_txpow(sc);
293 ath9k_hw_set_interrupts(ah, sc->sc_imask);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +0530294 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530295 return 0;
296}
297
298/*
299 * This routine performs the periodic noise floor calibration function
300 * that is used to adjust and optimize the chip performance. This
301 * takes environmental changes (location, temperature) into account.
302 * When the task is complete, it reschedules itself depending on the
303 * appropriate interval that was calculated.
304 */
305static void ath_ani_calibrate(unsigned long data)
306{
307 struct ath_softc *sc;
308 struct ath_hal *ah;
309 bool longcal = false;
310 bool shortcal = false;
311 bool aniflag = false;
312 unsigned int timestamp = jiffies_to_msecs(jiffies);
313 u32 cal_interval;
314
315 sc = (struct ath_softc *)data;
316 ah = sc->sc_ah;
317
318 /*
319 * don't calibrate when we're scanning.
320 * we are most likely not on our home channel.
321 */
Sujithb77f4832008-12-07 21:44:03 +0530322 if (sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC)
Sujithff37e332008-11-24 12:07:55 +0530323 return;
324
325 /* Long calibration runs independently of short calibration. */
326 if ((timestamp - sc->sc_ani.sc_longcal_timer) >= ATH_LONG_CALINTERVAL) {
327 longcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530328 DPRINTF(sc, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530329 sc->sc_ani.sc_longcal_timer = timestamp;
330 }
331
332 /* Short calibration applies only while sc_caldone is false */
333 if (!sc->sc_ani.sc_caldone) {
334 if ((timestamp - sc->sc_ani.sc_shortcal_timer) >=
335 ATH_SHORT_CALINTERVAL) {
336 shortcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530337 DPRINTF(sc, ATH_DBG_ANI, "shortcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530338 sc->sc_ani.sc_shortcal_timer = timestamp;
339 sc->sc_ani.sc_resetcal_timer = timestamp;
340 }
341 } else {
342 if ((timestamp - sc->sc_ani.sc_resetcal_timer) >=
343 ATH_RESTART_CALINTERVAL) {
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800344 sc->sc_ani.sc_caldone = ath9k_hw_reset_calvalid(ah);
Sujithff37e332008-11-24 12:07:55 +0530345 if (sc->sc_ani.sc_caldone)
346 sc->sc_ani.sc_resetcal_timer = timestamp;
347 }
348 }
349
350 /* Verify whether we must check ANI */
351 if ((timestamp - sc->sc_ani.sc_checkani_timer) >=
352 ATH_ANI_POLLINTERVAL) {
353 aniflag = true;
354 sc->sc_ani.sc_checkani_timer = timestamp;
355 }
356
357 /* Skip all processing if there's nothing to do. */
358 if (longcal || shortcal || aniflag) {
359 /* Call ANI routine if necessary */
360 if (aniflag)
361 ath9k_hw_ani_monitor(ah, &sc->sc_halstats,
362 ah->ah_curchan);
363
364 /* Perform calibration if necessary */
365 if (longcal || shortcal) {
366 bool iscaldone = false;
367
368 if (ath9k_hw_calibrate(ah, ah->ah_curchan,
369 sc->sc_rx_chainmask, longcal,
370 &iscaldone)) {
371 if (longcal)
372 sc->sc_ani.sc_noise_floor =
373 ath9k_hw_getchan_noise(ah,
374 ah->ah_curchan);
375
376 DPRINTF(sc, ATH_DBG_ANI,
Sujith04bd4632008-11-28 22:18:05 +0530377 "calibrate chan %u/%x nf: %d\n",
Sujithff37e332008-11-24 12:07:55 +0530378 ah->ah_curchan->channel,
379 ah->ah_curchan->channelFlags,
380 sc->sc_ani.sc_noise_floor);
381 } else {
382 DPRINTF(sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +0530383 "calibrate chan %u/%x failed\n",
Sujithff37e332008-11-24 12:07:55 +0530384 ah->ah_curchan->channel,
385 ah->ah_curchan->channelFlags);
386 }
387 sc->sc_ani.sc_caldone = iscaldone;
388 }
389 }
390
391 /*
392 * Set timer interval based on previous results.
393 * The interval must be the shortest necessary to satisfy ANI,
394 * short calibration and long calibration.
395 */
Sujithaac92072008-12-02 18:37:54 +0530396 cal_interval = ATH_LONG_CALINTERVAL;
397 if (sc->sc_ah->ah_config.enable_ani)
398 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
Sujithff37e332008-11-24 12:07:55 +0530399 if (!sc->sc_ani.sc_caldone)
400 cal_interval = min(cal_interval, (u32)ATH_SHORT_CALINTERVAL);
401
402 mod_timer(&sc->sc_ani.timer, jiffies + msecs_to_jiffies(cal_interval));
403}
404
405/*
406 * Update tx/rx chainmask. For legacy association,
407 * hard code chainmask to 1x1, for 11n association, use
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +0530408 * the chainmask configuration, for bt coexistence, use
409 * the chainmask configuration even in legacy mode.
Sujithff37e332008-11-24 12:07:55 +0530410 */
411static void ath_update_chainmask(struct ath_softc *sc, int is_ht)
412{
413 sc->sc_flags |= SC_OP_CHAINMASK_UPDATE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +0530414 if (is_ht ||
415 (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_BT_COEX)) {
Sujithff37e332008-11-24 12:07:55 +0530416 sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask;
417 sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask;
418 } else {
419 sc->sc_tx_chainmask = 1;
420 sc->sc_rx_chainmask = 1;
421 }
422
Sujith04bd4632008-11-28 22:18:05 +0530423 DPRINTF(sc, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n",
424 sc->sc_tx_chainmask, sc->sc_rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530425}
426
427static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
428{
429 struct ath_node *an;
430
431 an = (struct ath_node *)sta->drv_priv;
432
433 if (sc->sc_flags & SC_OP_TXAGGR)
434 ath_tx_node_init(sc, an);
435
436 an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR +
437 sta->ht_cap.ampdu_factor);
438 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
439}
440
441static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
442{
443 struct ath_node *an = (struct ath_node *)sta->drv_priv;
444
445 if (sc->sc_flags & SC_OP_TXAGGR)
446 ath_tx_node_cleanup(sc, an);
447}
448
449static void ath9k_tasklet(unsigned long data)
450{
451 struct ath_softc *sc = (struct ath_softc *)data;
452 u32 status = sc->sc_intrstatus;
453
454 if (status & ATH9K_INT_FATAL) {
455 /* need a chip reset */
456 ath_reset(sc, false);
457 return;
458 } else {
459
460 if (status &
461 (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
Sujithb77f4832008-12-07 21:44:03 +0530462 spin_lock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530463 ath_rx_tasklet(sc, 0);
Sujithb77f4832008-12-07 21:44:03 +0530464 spin_unlock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530465 }
466 /* XXX: optimize this */
467 if (status & ATH9K_INT_TX)
468 ath_tx_tasklet(sc);
469 }
470
471 /* re-enable hardware interrupt */
472 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
473}
474
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100475irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530476{
477 struct ath_softc *sc = dev;
478 struct ath_hal *ah = sc->sc_ah;
479 enum ath9k_int status;
480 bool sched = false;
481
482 do {
483 if (sc->sc_flags & SC_OP_INVALID) {
484 /*
485 * The hardware is not ready/present, don't
486 * touch anything. Note this can happen early
487 * on if the IRQ is shared.
488 */
489 return IRQ_NONE;
490 }
491 if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */
492 return IRQ_NONE;
493 }
494
495 /*
496 * Figure out the reason(s) for the interrupt. Note
497 * that the hal returns a pseudo-ISR that may include
498 * bits we haven't explicitly enabled so we mask the
499 * value to insure we only process bits we requested.
500 */
501 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
502
503 status &= sc->sc_imask; /* discard unasked-for bits */
504
505 /*
506 * If there are no status bits set, then this interrupt was not
507 * for me (should have been caught above).
508 */
509 if (!status)
510 return IRQ_NONE;
511
512 sc->sc_intrstatus = status;
513
514 if (status & ATH9K_INT_FATAL) {
515 /* need a chip reset */
516 sched = true;
517 } else if (status & ATH9K_INT_RXORN) {
518 /* need a chip reset */
519 sched = true;
520 } else {
521 if (status & ATH9K_INT_SWBA) {
522 /* schedule a tasklet for beacon handling */
523 tasklet_schedule(&sc->bcon_tasklet);
524 }
525 if (status & ATH9K_INT_RXEOL) {
526 /*
527 * NB: the hardware should re-read the link when
528 * RXE bit is written, but it doesn't work
529 * at least on older hardware revs.
530 */
531 sched = true;
532 }
533
534 if (status & ATH9K_INT_TXURN)
535 /* bump tx trigger level */
536 ath9k_hw_updatetxtriglevel(ah, true);
537 /* XXX: optimize this */
538 if (status & ATH9K_INT_RX)
539 sched = true;
540 if (status & ATH9K_INT_TX)
541 sched = true;
542 if (status & ATH9K_INT_BMISS)
543 sched = true;
544 /* carrier sense timeout */
545 if (status & ATH9K_INT_CST)
546 sched = true;
547 if (status & ATH9K_INT_MIB) {
548 /*
549 * Disable interrupts until we service the MIB
550 * interrupt; otherwise it will continue to
551 * fire.
552 */
553 ath9k_hw_set_interrupts(ah, 0);
554 /*
555 * Let the hal handle the event. We assume
556 * it will clear whatever condition caused
557 * the interrupt.
558 */
559 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
560 ath9k_hw_set_interrupts(ah, sc->sc_imask);
561 }
562 if (status & ATH9K_INT_TIM_TIMER) {
563 if (!(ah->ah_caps.hw_caps &
564 ATH9K_HW_CAP_AUTOSLEEP)) {
565 /* Clear RxAbort bit so that we can
566 * receive frames */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +0530567 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
Sujithff37e332008-11-24 12:07:55 +0530568 ath9k_hw_setrxabort(ah, 0);
569 sched = true;
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +0530570 sc->sc_flags |= SC_OP_WAIT_FOR_BEACON;
Sujithff37e332008-11-24 12:07:55 +0530571 }
572 }
573 }
574 } while (0);
575
Sujith817e11d2008-12-07 21:42:44 +0530576 ath_debug_stat_interrupt(sc, status);
577
Sujithff37e332008-11-24 12:07:55 +0530578 if (sched) {
579 /* turn off every interrupt except SWBA */
580 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
581 tasklet_schedule(&sc->intr_tq);
582 }
583
584 return IRQ_HANDLED;
585}
586
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700587static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530588 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +0530589 enum nl80211_channel_type channel_type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700590{
591 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700592
593 switch (chan->band) {
594 case IEEE80211_BAND_2GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530595 switch(channel_type) {
596 case NL80211_CHAN_NO_HT:
597 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700598 chanmode = CHANNEL_G_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530599 break;
600 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700601 chanmode = CHANNEL_G_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530602 break;
603 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700604 chanmode = CHANNEL_G_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530605 break;
606 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700607 break;
608 case IEEE80211_BAND_5GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530609 switch(channel_type) {
610 case NL80211_CHAN_NO_HT:
611 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700612 chanmode = CHANNEL_A_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530613 break;
614 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700615 chanmode = CHANNEL_A_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530616 break;
617 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700618 chanmode = CHANNEL_A_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530619 break;
620 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700621 break;
622 default:
623 break;
624 }
625
626 return chanmode;
627}
628
Sujithff37e332008-11-24 12:07:55 +0530629static int ath_keyset(struct ath_softc *sc, u16 keyix,
630 struct ath9k_keyval *hk, const u8 mac[ETH_ALEN])
631{
632 bool status;
633
634 status = ath9k_hw_set_keycache_entry(sc->sc_ah,
635 keyix, hk, mac, false);
636
637 return status != false;
638}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639
Jouni Malinen6ace2892008-12-17 13:32:17 +0200640static int ath_setkey_tkip(struct ath_softc *sc, u16 keyix, const u8 *key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 struct ath9k_keyval *hk,
642 const u8 *addr)
643{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200644 const u8 *key_rxmic;
645 const u8 *key_txmic;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700646
Jouni Malinen6ace2892008-12-17 13:32:17 +0200647 key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
648 key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649
650 if (addr == NULL) {
651 /* Group key installation */
Jouni Malinen6ace2892008-12-17 13:32:17 +0200652 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
653 return ath_keyset(sc, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700654 }
655 if (!sc->sc_splitmic) {
656 /*
657 * data key goes at first index,
658 * the hal handles the MIC keys at index+64.
659 */
660 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
661 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
Jouni Malinen6ace2892008-12-17 13:32:17 +0200662 return ath_keyset(sc, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700663 }
664 /*
665 * TX key goes at first index, RX key at +32.
666 * The hal handles the MIC keys at index+64.
667 */
668 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
Jouni Malinen6ace2892008-12-17 13:32:17 +0200669 if (!ath_keyset(sc, keyix, hk, NULL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700670 /* Txmic entry failed. No need to proceed further */
671 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +0530672 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700673 return 0;
674 }
675
676 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
677 /* XXX delete tx key on failure? */
Jouni Malinen6ace2892008-12-17 13:32:17 +0200678 return ath_keyset(sc, keyix + 32, hk, addr);
679}
680
681static int ath_reserve_key_cache_slot_tkip(struct ath_softc *sc)
682{
683 int i;
684
685 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) {
686 if (test_bit(i, sc->sc_keymap) ||
687 test_bit(i + 64, sc->sc_keymap))
688 continue; /* At least one part of TKIP key allocated */
689 if (sc->sc_splitmic &&
690 (test_bit(i + 32, sc->sc_keymap) ||
691 test_bit(i + 64 + 32, sc->sc_keymap)))
692 continue; /* At least one part of TKIP key allocated */
693
694 /* Found a free slot for a TKIP key */
695 return i;
696 }
697 return -1;
698}
699
700static int ath_reserve_key_cache_slot(struct ath_softc *sc)
701{
702 int i;
703
704 /* First, try to find slots that would not be available for TKIP. */
705 if (sc->sc_splitmic) {
706 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 4; i++) {
707 if (!test_bit(i, sc->sc_keymap) &&
708 (test_bit(i + 32, sc->sc_keymap) ||
709 test_bit(i + 64, sc->sc_keymap) ||
710 test_bit(i + 64 + 32, sc->sc_keymap)))
711 return i;
712 if (!test_bit(i + 32, sc->sc_keymap) &&
713 (test_bit(i, sc->sc_keymap) ||
714 test_bit(i + 64, sc->sc_keymap) ||
715 test_bit(i + 64 + 32, sc->sc_keymap)))
716 return i + 32;
717 if (!test_bit(i + 64, sc->sc_keymap) &&
718 (test_bit(i , sc->sc_keymap) ||
719 test_bit(i + 32, sc->sc_keymap) ||
720 test_bit(i + 64 + 32, sc->sc_keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200721 return i + 64;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200722 if (!test_bit(i + 64 + 32, sc->sc_keymap) &&
723 (test_bit(i, sc->sc_keymap) ||
724 test_bit(i + 32, sc->sc_keymap) ||
725 test_bit(i + 64, sc->sc_keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200726 return i + 64 + 32;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200727 }
728 } else {
729 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) {
730 if (!test_bit(i, sc->sc_keymap) &&
731 test_bit(i + 64, sc->sc_keymap))
732 return i;
733 if (test_bit(i, sc->sc_keymap) &&
734 !test_bit(i + 64, sc->sc_keymap))
735 return i + 64;
736 }
737 }
738
739 /* No partially used TKIP slots, pick any available slot */
740 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax; i++) {
Jouni Malinenbe2864c2008-12-18 14:33:00 +0200741 /* Do not allow slots that could be needed for TKIP group keys
742 * to be used. This limitation could be removed if we know that
743 * TKIP will not be used. */
744 if (i >= 64 && i < 64 + IEEE80211_WEP_NKID)
745 continue;
746 if (sc->sc_splitmic) {
747 if (i >= 32 && i < 32 + IEEE80211_WEP_NKID)
748 continue;
749 if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID)
750 continue;
751 }
752
Jouni Malinen6ace2892008-12-17 13:32:17 +0200753 if (!test_bit(i, sc->sc_keymap))
754 return i; /* Found a free slot for a key */
755 }
756
757 /* No free slot found */
758 return -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700759}
760
761static int ath_key_config(struct ath_softc *sc,
Johannes Bergdc822b52008-12-29 12:55:09 +0100762 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700763 struct ieee80211_key_conf *key)
764{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700765 struct ath9k_keyval hk;
766 const u8 *mac = NULL;
767 int ret = 0;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200768 int idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700769
770 memset(&hk, 0, sizeof(hk));
771
772 switch (key->alg) {
773 case ALG_WEP:
774 hk.kv_type = ATH9K_CIPHER_WEP;
775 break;
776 case ALG_TKIP:
777 hk.kv_type = ATH9K_CIPHER_TKIP;
778 break;
779 case ALG_CCMP:
780 hk.kv_type = ATH9K_CIPHER_AES_CCM;
781 break;
782 default:
Jouni Malinenca470b22009-01-08 13:32:12 +0200783 return -EOPNOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 }
785
Jouni Malinen6ace2892008-12-17 13:32:17 +0200786 hk.kv_len = key->keylen;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787 memcpy(hk.kv_val, key->key, key->keylen);
788
Jouni Malinen6ace2892008-12-17 13:32:17 +0200789 if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
790 /* For now, use the default keys for broadcast keys. This may
791 * need to change with virtual interfaces. */
792 idx = key->keyidx;
793 } else if (key->keyidx) {
794 struct ieee80211_vif *vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700795
Johannes Bergdc822b52008-12-29 12:55:09 +0100796 if (WARN_ON(!sta))
797 return -EOPNOTSUPP;
798 mac = sta->addr;
799
Jouni Malinen6ace2892008-12-17 13:32:17 +0200800 vif = sc->sc_vaps[0];
801 if (vif->type != NL80211_IFTYPE_AP) {
802 /* Only keyidx 0 should be used with unicast key, but
803 * allow this for client mode for now. */
804 idx = key->keyidx;
805 } else
806 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700807 } else {
Johannes Bergdc822b52008-12-29 12:55:09 +0100808 if (WARN_ON(!sta))
809 return -EOPNOTSUPP;
810 mac = sta->addr;
811
Jouni Malinen6ace2892008-12-17 13:32:17 +0200812 if (key->alg == ALG_TKIP)
813 idx = ath_reserve_key_cache_slot_tkip(sc);
814 else
815 idx = ath_reserve_key_cache_slot(sc);
816 if (idx < 0)
Jouni Malinenca470b22009-01-08 13:32:12 +0200817 return -ENOSPC; /* no free key cache entries */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700818 }
819
820 if (key->alg == ALG_TKIP)
Jouni Malinen6ace2892008-12-17 13:32:17 +0200821 ret = ath_setkey_tkip(sc, idx, key->key, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700822 else
Jouni Malinen6ace2892008-12-17 13:32:17 +0200823 ret = ath_keyset(sc, idx, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700824
825 if (!ret)
826 return -EIO;
827
Jouni Malinen6ace2892008-12-17 13:32:17 +0200828 set_bit(idx, sc->sc_keymap);
829 if (key->alg == ALG_TKIP) {
830 set_bit(idx + 64, sc->sc_keymap);
831 if (sc->sc_splitmic) {
832 set_bit(idx + 32, sc->sc_keymap);
833 set_bit(idx + 64 + 32, sc->sc_keymap);
834 }
835 }
836
837 return idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700838}
839
840static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
841{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200842 ath9k_hw_keyreset(sc->sc_ah, key->hw_key_idx);
843 if (key->hw_key_idx < IEEE80211_WEP_NKID)
844 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700845
Jouni Malinen6ace2892008-12-17 13:32:17 +0200846 clear_bit(key->hw_key_idx, sc->sc_keymap);
847 if (key->alg != ALG_TKIP)
848 return;
849
850 clear_bit(key->hw_key_idx + 64, sc->sc_keymap);
851 if (sc->sc_splitmic) {
852 clear_bit(key->hw_key_idx + 32, sc->sc_keymap);
853 clear_bit(key->hw_key_idx + 64 + 32, sc->sc_keymap);
854 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700855}
856
Sujitheb2599c2009-01-23 11:20:44 +0530857static void setup_ht_cap(struct ath_softc *sc,
858 struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700859{
Sujith60653672008-08-14 13:28:02 +0530860#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
861#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700862
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200863 ht_info->ht_supported = true;
864 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
865 IEEE80211_HT_CAP_SM_PS |
866 IEEE80211_HT_CAP_SGI_40 |
867 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700868
Sujith60653672008-08-14 13:28:02 +0530869 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
870 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Sujitheb2599c2009-01-23 11:20:44 +0530871
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200872 /* set up supported mcs set */
873 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
Sujitheb2599c2009-01-23 11:20:44 +0530874
875 switch(sc->sc_rx_chainmask) {
876 case 1:
877 ht_info->mcs.rx_mask[0] = 0xff;
878 break;
Sujith3c457262009-01-27 10:55:31 +0530879 case 3:
Sujitheb2599c2009-01-23 11:20:44 +0530880 case 5:
881 case 7:
882 default:
883 ht_info->mcs.rx_mask[0] = 0xff;
884 ht_info->mcs.rx_mask[1] = 0xff;
885 break;
886 }
887
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200888 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700889}
890
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530891static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530892 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530893 struct ieee80211_bss_conf *bss_conf)
894{
Sujith5640b082008-10-29 10:16:06 +0530895 struct ath_vap *avp = (void *)vif->drv_priv;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530896
897 if (bss_conf->assoc) {
Sujith094d05d2008-12-12 11:57:43 +0530898 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d, bssid: %pM\n",
899 bss_conf->aid, sc->sc_curbssid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530900
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530901 /* New association, store aid */
Colin McCabed97809d2008-12-01 13:38:55 -0800902 if (avp->av_opmode == NL80211_IFTYPE_STATION) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530903 sc->sc_curaid = bss_conf->aid;
904 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
905 sc->sc_curaid);
906 }
907
908 /* Configure the beacon */
909 ath_beacon_config(sc, 0);
910 sc->sc_flags |= SC_OP_BEACONS;
911
912 /* Reset rssi stats */
913 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
914 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
915 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
916 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
917
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700918 /* Start ANI */
919 mod_timer(&sc->sc_ani.timer,
920 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
921
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530922 } else {
Sujith04bd4632008-11-28 22:18:05 +0530923 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530924 sc->sc_curaid = 0;
925 }
926}
927
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530928/********************************/
929/* LED functions */
930/********************************/
931
932static void ath_led_brightness(struct led_classdev *led_cdev,
933 enum led_brightness brightness)
934{
935 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
936 struct ath_softc *sc = led->sc;
937
938 switch (brightness) {
939 case LED_OFF:
940 if (led->led_type == ATH_LED_ASSOC ||
941 led->led_type == ATH_LED_RADIO)
942 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
943 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
944 (led->led_type == ATH_LED_RADIO) ? 1 :
945 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
946 break;
947 case LED_FULL:
948 if (led->led_type == ATH_LED_ASSOC)
949 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
950 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
951 break;
952 default:
953 break;
954 }
955}
956
957static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
958 char *trigger)
959{
960 int ret;
961
962 led->sc = sc;
963 led->led_cdev.name = led->name;
964 led->led_cdev.default_trigger = trigger;
965 led->led_cdev.brightness_set = ath_led_brightness;
966
967 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
968 if (ret)
969 DPRINTF(sc, ATH_DBG_FATAL,
970 "Failed to register led:%s", led->name);
971 else
972 led->registered = 1;
973 return ret;
974}
975
976static void ath_unregister_led(struct ath_led *led)
977{
978 if (led->registered) {
979 led_classdev_unregister(&led->led_cdev);
980 led->registered = 0;
981 }
982}
983
984static void ath_deinit_leds(struct ath_softc *sc)
985{
986 ath_unregister_led(&sc->assoc_led);
987 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
988 ath_unregister_led(&sc->tx_led);
989 ath_unregister_led(&sc->rx_led);
990 ath_unregister_led(&sc->radio_led);
991 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
992}
993
994static void ath_init_leds(struct ath_softc *sc)
995{
996 char *trigger;
997 int ret;
998
999 /* Configure gpio 1 for output */
1000 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
1001 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1002 /* LED off, active low */
1003 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1004
1005 trigger = ieee80211_get_radio_led_name(sc->hw);
1006 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
1007 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
1008 ret = ath_register_led(sc, &sc->radio_led, trigger);
1009 sc->radio_led.led_type = ATH_LED_RADIO;
1010 if (ret)
1011 goto fail;
1012
1013 trigger = ieee80211_get_assoc_led_name(sc->hw);
1014 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
1015 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
1016 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1017 sc->assoc_led.led_type = ATH_LED_ASSOC;
1018 if (ret)
1019 goto fail;
1020
1021 trigger = ieee80211_get_tx_led_name(sc->hw);
1022 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
1023 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
1024 ret = ath_register_led(sc, &sc->tx_led, trigger);
1025 sc->tx_led.led_type = ATH_LED_TX;
1026 if (ret)
1027 goto fail;
1028
1029 trigger = ieee80211_get_rx_led_name(sc->hw);
1030 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
1031 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
1032 ret = ath_register_led(sc, &sc->rx_led, trigger);
1033 sc->rx_led.led_type = ATH_LED_RX;
1034 if (ret)
1035 goto fail;
1036
1037 return;
1038
1039fail:
1040 ath_deinit_leds(sc);
1041}
1042
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301043#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301044
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301045/*******************/
1046/* Rfkill */
1047/*******************/
1048
1049static void ath_radio_enable(struct ath_softc *sc)
1050{
1051 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001052 struct ieee80211_channel *channel = sc->hw->conf.channel;
1053 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301054
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301055 ath9k_ps_wakeup(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301056 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001057
1058 r = ath9k_hw_reset(ah, ah->ah_curchan, false);
1059
1060 if (r) {
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301061 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001062 "Unable to reset channel %u (%uMhz) ",
1063 "reset status %u\n",
1064 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301065 }
1066 spin_unlock_bh(&sc->sc_resetlock);
1067
1068 ath_update_txpow(sc);
1069 if (ath_startrecv(sc) != 0) {
1070 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301071 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301072 return;
1073 }
1074
1075 if (sc->sc_flags & SC_OP_BEACONS)
1076 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1077
1078 /* Re-Enable interrupts */
1079 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1080
1081 /* Enable LED */
1082 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
1083 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1084 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
1085
1086 ieee80211_wake_queues(sc->hw);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301087 ath9k_ps_restore(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301088}
1089
1090static void ath_radio_disable(struct ath_softc *sc)
1091{
1092 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001093 struct ieee80211_channel *channel = sc->hw->conf.channel;
1094 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301095
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301096 ath9k_ps_wakeup(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301097 ieee80211_stop_queues(sc->hw);
1098
1099 /* Disable LED */
1100 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
1101 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
1102
1103 /* Disable interrupts */
1104 ath9k_hw_set_interrupts(ah, 0);
1105
Sujith043a0402009-01-16 21:38:47 +05301106 ath_drain_all_txq(sc, false); /* clear pending tx frames */
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301107 ath_stoprecv(sc); /* turn off frame recv */
1108 ath_flushrecv(sc); /* flush recv queue */
1109
1110 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001111 r = ath9k_hw_reset(ah, ah->ah_curchan, false);
1112 if (r) {
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301113 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301114 "Unable to reset channel %u (%uMhz) "
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001115 "reset status %u\n",
1116 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301117 }
1118 spin_unlock_bh(&sc->sc_resetlock);
1119
1120 ath9k_hw_phy_disable(ah);
1121 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301122 ath9k_ps_restore(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301123}
1124
1125static bool ath_is_rfkill_set(struct ath_softc *sc)
1126{
1127 struct ath_hal *ah = sc->sc_ah;
1128
1129 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
1130 ah->ah_rfkill_polarity;
1131}
1132
1133/* h/w rfkill poll function */
1134static void ath_rfkill_poll(struct work_struct *work)
1135{
1136 struct ath_softc *sc = container_of(work, struct ath_softc,
1137 rf_kill.rfkill_poll.work);
1138 bool radio_on;
1139
1140 if (sc->sc_flags & SC_OP_INVALID)
1141 return;
1142
1143 radio_on = !ath_is_rfkill_set(sc);
1144
1145 /*
1146 * enable/disable radio only when there is a
1147 * state change in RF switch
1148 */
1149 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
1150 enum rfkill_state state;
1151
1152 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
1153 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
1154 : RFKILL_STATE_HARD_BLOCKED;
1155 } else if (radio_on) {
1156 ath_radio_enable(sc);
1157 state = RFKILL_STATE_UNBLOCKED;
1158 } else {
1159 ath_radio_disable(sc);
1160 state = RFKILL_STATE_HARD_BLOCKED;
1161 }
1162
1163 if (state == RFKILL_STATE_HARD_BLOCKED)
1164 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
1165 else
1166 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
1167
1168 rfkill_force_state(sc->rf_kill.rfkill, state);
1169 }
1170
1171 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
1172 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
1173}
1174
1175/* s/w rfkill handler */
1176static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
1177{
1178 struct ath_softc *sc = data;
1179
1180 switch (state) {
1181 case RFKILL_STATE_SOFT_BLOCKED:
1182 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
1183 SC_OP_RFKILL_SW_BLOCKED)))
1184 ath_radio_disable(sc);
1185 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
1186 return 0;
1187 case RFKILL_STATE_UNBLOCKED:
1188 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
1189 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
1190 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
1191 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
Sujith04bd4632008-11-28 22:18:05 +05301192 "radio as it is disabled by h/w\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301193 return -EPERM;
1194 }
1195 ath_radio_enable(sc);
1196 }
1197 return 0;
1198 default:
1199 return -EINVAL;
1200 }
1201}
1202
1203/* Init s/w rfkill */
1204static int ath_init_sw_rfkill(struct ath_softc *sc)
1205{
1206 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
1207 RFKILL_TYPE_WLAN);
1208 if (!sc->rf_kill.rfkill) {
1209 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
1210 return -ENOMEM;
1211 }
1212
1213 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
1214 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
1215 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
1216 sc->rf_kill.rfkill->data = sc;
1217 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
1218 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
1219 sc->rf_kill.rfkill->user_claim_unsupported = 1;
1220
1221 return 0;
1222}
1223
1224/* Deinitialize rfkill */
1225static void ath_deinit_rfkill(struct ath_softc *sc)
1226{
1227 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1228 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1229
1230 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
1231 rfkill_unregister(sc->rf_kill.rfkill);
1232 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
1233 sc->rf_kill.rfkill = NULL;
1234 }
1235}
Sujith9c84b792008-10-29 10:17:13 +05301236
1237static int ath_start_rfkill_poll(struct ath_softc *sc)
1238{
1239 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1240 queue_delayed_work(sc->hw->workqueue,
1241 &sc->rf_kill.rfkill_poll, 0);
1242
1243 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1244 if (rfkill_register(sc->rf_kill.rfkill)) {
1245 DPRINTF(sc, ATH_DBG_FATAL,
1246 "Unable to register rfkill\n");
1247 rfkill_free(sc->rf_kill.rfkill);
1248
1249 /* Deinitialize the device */
Gabor Juhos39c3c2f2009-01-14 20:17:05 +01001250 ath_cleanup(sc);
Sujith9c84b792008-10-29 10:17:13 +05301251 return -EIO;
1252 } else {
1253 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1254 }
1255 }
1256
1257 return 0;
1258}
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301259#endif /* CONFIG_RFKILL */
1260
Gabor Juhos6baff7f2009-01-14 20:17:06 +01001261void ath_cleanup(struct ath_softc *sc)
Gabor Juhos39c3c2f2009-01-14 20:17:05 +01001262{
1263 ath_detach(sc);
1264 free_irq(sc->irq, sc);
1265 ath_bus_cleanup(sc);
1266 ieee80211_free_hw(sc->hw);
1267}
1268
Gabor Juhos6baff7f2009-01-14 20:17:06 +01001269void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301270{
1271 struct ieee80211_hw *hw = sc->hw;
Sujith9c84b792008-10-29 10:17:13 +05301272 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301273
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301274 ath9k_ps_wakeup(sc);
1275
Sujith04bd4632008-11-28 22:18:05 +05301276 DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301277
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301278#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301279 ath_deinit_rfkill(sc);
1280#endif
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301281 ath_deinit_leds(sc);
1282
1283 ieee80211_unregister_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301284 ath_rx_cleanup(sc);
1285 ath_tx_cleanup(sc);
1286
Sujith9c84b792008-10-29 10:17:13 +05301287 tasklet_kill(&sc->intr_tq);
1288 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301289
Sujith9c84b792008-10-29 10:17:13 +05301290 if (!(sc->sc_flags & SC_OP_INVALID))
1291 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301292
Sujith9c84b792008-10-29 10:17:13 +05301293 /* cleanup tx queues */
1294 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1295 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301296 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith9c84b792008-10-29 10:17:13 +05301297
1298 ath9k_hw_detach(sc->sc_ah);
Sujith826d2682008-11-28 22:20:23 +05301299 ath9k_exit_debug(sc);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301300 ath9k_ps_restore(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301301}
1302
Sujithff37e332008-11-24 12:07:55 +05301303static int ath_init(u16 devid, struct ath_softc *sc)
1304{
1305 struct ath_hal *ah = NULL;
1306 int status;
1307 int error = 0, i;
1308 int csz = 0;
1309
1310 /* XXX: hardware will not be ready until ath_open() being called */
1311 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301312
Sujith826d2682008-11-28 22:20:23 +05301313 if (ath9k_init_debug(sc) < 0)
1314 printk(KERN_ERR "Unable to create debugfs files\n");
Sujithff37e332008-11-24 12:07:55 +05301315
1316 spin_lock_init(&sc->sc_resetlock);
Sujithaa33de02008-12-18 11:40:16 +05301317 mutex_init(&sc->mutex);
Sujithff37e332008-11-24 12:07:55 +05301318 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1319 tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1320 (unsigned long)sc);
1321
1322 /*
1323 * Cache line size is used to size and align various
1324 * structures used to communicate with the hardware.
1325 */
Gabor Juhos88d15702009-01-14 20:17:04 +01001326 ath_read_cachesize(sc, &csz);
Sujithff37e332008-11-24 12:07:55 +05301327 /* XXX assert csz is non-zero */
1328 sc->sc_cachelsz = csz << 2; /* convert to bytes */
1329
1330 ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1331 if (ah == NULL) {
1332 DPRINTF(sc, ATH_DBG_FATAL,
Gabor Juhos295834f2008-12-29 21:07:42 +01001333 "Unable to attach hardware; HAL status %d\n", status);
Sujithff37e332008-11-24 12:07:55 +05301334 error = -ENXIO;
1335 goto bad;
1336 }
1337 sc->sc_ah = ah;
1338
1339 /* Get the hardware key cache size. */
1340 sc->sc_keymax = ah->ah_caps.keycache_size;
1341 if (sc->sc_keymax > ATH_KEYMAX) {
1342 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05301343 "Warning, using only %u entries in %u key cache\n",
1344 ATH_KEYMAX, sc->sc_keymax);
Sujithff37e332008-11-24 12:07:55 +05301345 sc->sc_keymax = ATH_KEYMAX;
1346 }
1347
1348 /*
1349 * Reset the key cache since some parts do not
1350 * reset the contents on initial power up.
1351 */
1352 for (i = 0; i < sc->sc_keymax; i++)
1353 ath9k_hw_keyreset(ah, (u16) i);
Sujithff37e332008-11-24 12:07:55 +05301354
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001355 if (ath9k_regd_init(sc->sc_ah))
Sujithff37e332008-11-24 12:07:55 +05301356 goto bad;
1357
1358 /* default to MONITOR mode */
Colin McCabed97809d2008-12-01 13:38:55 -08001359 sc->sc_ah->ah_opmode = NL80211_IFTYPE_MONITOR;
1360
Sujithff37e332008-11-24 12:07:55 +05301361 /* Setup rate tables */
1362
1363 ath_rate_attach(sc);
1364 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1365 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1366
1367 /*
1368 * Allocate hardware transmit queues: one queue for
1369 * beacon frames and one data queue for each QoS
1370 * priority. Note that the hal handles reseting
1371 * these queues at the needed time.
1372 */
Sujithb77f4832008-12-07 21:44:03 +05301373 sc->beacon.beaconq = ath_beaconq_setup(ah);
1374 if (sc->beacon.beaconq == -1) {
Sujithff37e332008-11-24 12:07:55 +05301375 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301376 "Unable to setup a beacon xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301377 error = -EIO;
1378 goto bad2;
1379 }
Sujithb77f4832008-12-07 21:44:03 +05301380 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1381 if (sc->beacon.cabq == NULL) {
Sujithff37e332008-11-24 12:07:55 +05301382 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301383 "Unable to setup CAB xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301384 error = -EIO;
1385 goto bad2;
1386 }
1387
1388 sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1389 ath_cabq_update(sc);
1390
Sujithb77f4832008-12-07 21:44:03 +05301391 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
1392 sc->tx.hwq_map[i] = -1;
Sujithff37e332008-11-24 12:07:55 +05301393
1394 /* Setup data queues */
1395 /* NB: ensure BK queue is the lowest priority h/w queue */
1396 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1397 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301398 "Unable to setup xmit queue for BK traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301399 error = -EIO;
1400 goto bad2;
1401 }
1402
1403 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1404 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301405 "Unable to setup xmit queue for BE traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301406 error = -EIO;
1407 goto bad2;
1408 }
1409 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1410 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301411 "Unable to setup xmit queue for VI traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301412 error = -EIO;
1413 goto bad2;
1414 }
1415 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1416 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301417 "Unable to setup xmit queue for VO traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301418 error = -EIO;
1419 goto bad2;
1420 }
1421
1422 /* Initializes the noise floor to a reasonable default value.
1423 * Later on this will be updated during ANI processing. */
1424
1425 sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1426 setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc);
1427
1428 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1429 ATH9K_CIPHER_TKIP, NULL)) {
1430 /*
1431 * Whether we should enable h/w TKIP MIC.
1432 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1433 * report WMM capable, so it's always safe to turn on
1434 * TKIP MIC in this case.
1435 */
1436 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1437 0, 1, NULL);
1438 }
1439
1440 /*
1441 * Check whether the separate key cache entries
1442 * are required to handle both tx+rx MIC keys.
1443 * With split mic keys the number of stations is limited
1444 * to 27 otherwise 59.
1445 */
1446 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1447 ATH9K_CIPHER_TKIP, NULL)
1448 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1449 ATH9K_CIPHER_MIC, NULL)
1450 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1451 0, NULL))
1452 sc->sc_splitmic = 1;
1453
1454 /* turn on mcast key search if possible */
1455 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1456 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1457 1, NULL);
1458
1459 sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1460 sc->sc_config.txpowlimit_override = 0;
1461
1462 /* 11n Capabilities */
1463 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1464 sc->sc_flags |= SC_OP_TXAGGR;
1465 sc->sc_flags |= SC_OP_RXAGGR;
1466 }
1467
1468 sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1469 sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1470
1471 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
Sujithb77f4832008-12-07 21:44:03 +05301472 sc->rx.defant = ath9k_hw_getdefantenna(ah);
Sujithff37e332008-11-24 12:07:55 +05301473
1474 ath9k_hw_getmac(ah, sc->sc_myaddr);
1475 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1476 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1477 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1478 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1479 }
1480
Sujithb77f4832008-12-07 21:44:03 +05301481 sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
Sujithff37e332008-11-24 12:07:55 +05301482
1483 /* initialize beacon slots */
Sujithb77f4832008-12-07 21:44:03 +05301484 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++)
1485 sc->beacon.bslot[i] = ATH_IF_ID_ANY;
Sujithff37e332008-11-24 12:07:55 +05301486
1487 /* save MISC configurations */
1488 sc->sc_config.swBeaconProcess = 1;
1489
Sujithff37e332008-11-24 12:07:55 +05301490 /* setup channels and rates */
1491
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001492 sc->sbands[IEEE80211_BAND_2GHZ].channels = ath9k_2ghz_chantable;
Sujithff37e332008-11-24 12:07:55 +05301493 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1494 sc->rates[IEEE80211_BAND_2GHZ];
1495 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001496 sc->sbands[IEEE80211_BAND_2GHZ].n_channels =
1497 ARRAY_SIZE(ath9k_2ghz_chantable);
Sujithff37e332008-11-24 12:07:55 +05301498
1499 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001500 sc->sbands[IEEE80211_BAND_5GHZ].channels = ath9k_5ghz_chantable;
Sujithff37e332008-11-24 12:07:55 +05301501 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1502 sc->rates[IEEE80211_BAND_5GHZ];
1503 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001504 sc->sbands[IEEE80211_BAND_5GHZ].n_channels =
1505 ARRAY_SIZE(ath9k_5ghz_chantable);
Sujithff37e332008-11-24 12:07:55 +05301506 }
1507
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301508 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_BT_COEX)
1509 ath9k_hw_btcoex_enable(sc->sc_ah);
1510
Sujithff37e332008-11-24 12:07:55 +05301511 return 0;
1512bad2:
1513 /* cleanup tx queues */
1514 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1515 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301516 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujithff37e332008-11-24 12:07:55 +05301517bad:
1518 if (ah)
1519 ath9k_hw_detach(ah);
1520
1521 return error;
1522}
1523
Gabor Juhos6baff7f2009-01-14 20:17:06 +01001524int ath_attach(u16 devid, struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301525{
1526 struct ieee80211_hw *hw = sc->hw;
1527 int error = 0;
1528
Sujith04bd4632008-11-28 22:18:05 +05301529 DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301530
1531 error = ath_init(devid, sc);
1532 if (error != 0)
1533 return error;
1534
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301535 /* get mac address from hardware and set in mac80211 */
1536
1537 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
1538
Sujith9c84b792008-10-29 10:17:13 +05301539 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1540 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1541 IEEE80211_HW_SIGNAL_DBM |
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301542 IEEE80211_HW_AMPDU_AGGREGATION |
1543 IEEE80211_HW_SUPPORTS_PS |
1544 IEEE80211_HW_PS_NULLFUNC_STACK;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301545
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001546 if (AR_SREV_9160_10_OR_LATER(sc->sc_ah))
1547 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
1548
Sujith9c84b792008-10-29 10:17:13 +05301549 hw->wiphy->interface_modes =
1550 BIT(NL80211_IFTYPE_AP) |
1551 BIT(NL80211_IFTYPE_STATION) |
1552 BIT(NL80211_IFTYPE_ADHOC);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301553
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001554 hw->wiphy->reg_notifier = ath9k_reg_notifier;
1555 hw->wiphy->strict_regulatory = true;
1556
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301557 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301558 hw->max_rates = 4;
1559 hw->max_rate_tries = ATH_11N_TXMAXTRY;
Sujith528f0c62008-10-29 10:14:26 +05301560 hw->sta_data_size = sizeof(struct ath_node);
Sujith5640b082008-10-29 10:16:06 +05301561 hw->vif_data_size = sizeof(struct ath_vap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301562
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301563 hw->rate_control_algorithm = "ath9k_rate_control";
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301564
Sujith9c84b792008-10-29 10:17:13 +05301565 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
Sujitheb2599c2009-01-23 11:20:44 +05301566 setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
Sujith9c84b792008-10-29 10:17:13 +05301567 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
Sujitheb2599c2009-01-23 11:20:44 +05301568 setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
Sujith9c84b792008-10-29 10:17:13 +05301569 }
1570
1571 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ];
1572 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1573 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1574 &sc->sbands[IEEE80211_BAND_5GHZ];
1575
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301576 /* initialize tx/rx engine */
1577 error = ath_tx_init(sc, ATH_TXBUF);
1578 if (error != 0)
1579 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301580
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301581 error = ath_rx_init(sc, ATH_RXBUF);
1582 if (error != 0)
1583 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301584
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301585#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301586 /* Initialze h/w Rfkill */
1587 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1588 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
1589
1590 /* Initialize s/w rfkill */
1591 if (ath_init_sw_rfkill(sc))
1592 goto detach;
1593#endif
1594
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001595 if (ath9k_is_world_regd(sc->sc_ah)) {
1596 /* Anything applied here (prior to wiphy registratoin) gets
1597 * saved on the wiphy orig_* parameters */
1598 const struct ieee80211_regdomain *regd =
1599 ath9k_world_regdomain(sc->sc_ah);
1600 hw->wiphy->custom_regulatory = true;
1601 hw->wiphy->strict_regulatory = false;
1602 wiphy_apply_custom_regulatory(sc->hw->wiphy, regd);
1603 ath9k_reg_apply_radar_flags(hw->wiphy);
1604 ath9k_reg_apply_world_flags(hw->wiphy, REGDOM_SET_BY_INIT);
1605 } else {
1606 /* This gets applied in the case of the absense of CRDA,
1607 * its our own custom world regulatory domain, similar to
1608 * cfg80211's but we enable passive scanning */
1609 const struct ieee80211_regdomain *regd =
1610 ath9k_default_world_regdomain();
1611 wiphy_apply_custom_regulatory(sc->hw->wiphy, regd);
1612 ath9k_reg_apply_radar_flags(hw->wiphy);
1613 ath9k_reg_apply_world_flags(hw->wiphy, REGDOM_SET_BY_INIT);
1614 }
1615
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301616 error = ieee80211_register_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301617
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001618 if (!ath9k_is_world_regd(sc->sc_ah))
1619 regulatory_hint(hw->wiphy, sc->sc_ah->alpha2);
1620
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301621 /* Initialize LED control */
1622 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301623
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001624
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301625 return 0;
1626detach:
1627 ath_detach(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301628 return error;
1629}
1630
Sujithff37e332008-11-24 12:07:55 +05301631int ath_reset(struct ath_softc *sc, bool retry_tx)
1632{
1633 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguez030bb492008-12-23 15:58:37 -08001634 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001635 int r;
Sujithff37e332008-11-24 12:07:55 +05301636
1637 ath9k_hw_set_interrupts(ah, 0);
Sujith043a0402009-01-16 21:38:47 +05301638 ath_drain_all_txq(sc, retry_tx);
Sujithff37e332008-11-24 12:07:55 +05301639 ath_stoprecv(sc);
1640 ath_flushrecv(sc);
1641
1642 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001643 r = ath9k_hw_reset(ah, sc->sc_ah->ah_curchan, false);
1644 if (r)
Sujithff37e332008-11-24 12:07:55 +05301645 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001646 "Unable to reset hardware; reset status %u\n", r);
Sujithff37e332008-11-24 12:07:55 +05301647 spin_unlock_bh(&sc->sc_resetlock);
1648
1649 if (ath_startrecv(sc) != 0)
Sujith04bd4632008-11-28 22:18:05 +05301650 DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301651
1652 /*
1653 * We may be doing a reset in response to a request
1654 * that changes the channel so update any state that
1655 * might change as a result.
1656 */
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08001657 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05301658
1659 ath_update_txpow(sc);
1660
1661 if (sc->sc_flags & SC_OP_BEACONS)
1662 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1663
1664 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1665
1666 if (retry_tx) {
1667 int i;
1668 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1669 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05301670 spin_lock_bh(&sc->tx.txq[i].axq_lock);
1671 ath_txq_schedule(sc, &sc->tx.txq[i]);
1672 spin_unlock_bh(&sc->tx.txq[i].axq_lock);
Sujithff37e332008-11-24 12:07:55 +05301673 }
1674 }
1675 }
1676
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001677 return r;
Sujithff37e332008-11-24 12:07:55 +05301678}
1679
1680/*
1681 * This function will allocate both the DMA descriptor structure, and the
1682 * buffers it contains. These are used to contain the descriptors used
1683 * by the system.
1684*/
1685int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1686 struct list_head *head, const char *name,
1687 int nbuf, int ndesc)
1688{
1689#define DS2PHYS(_dd, _ds) \
1690 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1691#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1692#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1693
1694 struct ath_desc *ds;
1695 struct ath_buf *bf;
1696 int i, bsize, error;
1697
Sujith04bd4632008-11-28 22:18:05 +05301698 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
1699 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301700
1701 /* ath_desc must be a multiple of DWORDs */
1702 if ((sizeof(struct ath_desc) % 4) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05301703 DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301704 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1705 error = -ENOMEM;
1706 goto fail;
1707 }
1708
1709 dd->dd_name = name;
1710 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1711
1712 /*
1713 * Need additional DMA memory because we can't use
1714 * descriptors that cross the 4K page boundary. Assume
1715 * one skipped descriptor per 4K page.
1716 */
1717 if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1718 u32 ndesc_skipped =
1719 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1720 u32 dma_len;
1721
1722 while (ndesc_skipped) {
1723 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1724 dd->dd_desc_len += dma_len;
1725
1726 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1727 };
1728 }
1729
1730 /* allocate descriptors */
Gabor Juhos7da3c552009-01-14 20:17:03 +01001731 dd->dd_desc = dma_alloc_coherent(sc->dev, dd->dd_desc_len,
1732 &dd->dd_desc_paddr, GFP_ATOMIC);
Sujithff37e332008-11-24 12:07:55 +05301733 if (dd->dd_desc == NULL) {
1734 error = -ENOMEM;
1735 goto fail;
1736 }
1737 ds = dd->dd_desc;
Sujith04bd4632008-11-28 22:18:05 +05301738 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
1739 dd->dd_name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301740 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1741
1742 /* allocate buffers */
1743 bsize = sizeof(struct ath_buf) * nbuf;
1744 bf = kmalloc(bsize, GFP_KERNEL);
1745 if (bf == NULL) {
1746 error = -ENOMEM;
1747 goto fail2;
1748 }
1749 memset(bf, 0, bsize);
1750 dd->dd_bufptr = bf;
1751
1752 INIT_LIST_HEAD(head);
1753 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1754 bf->bf_desc = ds;
1755 bf->bf_daddr = DS2PHYS(dd, ds);
1756
1757 if (!(sc->sc_ah->ah_caps.hw_caps &
1758 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1759 /*
1760 * Skip descriptor addresses which can cause 4KB
1761 * boundary crossing (addr + length) with a 32 dword
1762 * descriptor fetch.
1763 */
1764 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1765 ASSERT((caddr_t) bf->bf_desc <
1766 ((caddr_t) dd->dd_desc +
1767 dd->dd_desc_len));
1768
1769 ds += ndesc;
1770 bf->bf_desc = ds;
1771 bf->bf_daddr = DS2PHYS(dd, ds);
1772 }
1773 }
1774 list_add_tail(&bf->list, head);
1775 }
1776 return 0;
1777fail2:
Gabor Juhos7da3c552009-01-14 20:17:03 +01001778 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
1779 dd->dd_desc_paddr);
Sujithff37e332008-11-24 12:07:55 +05301780fail:
1781 memset(dd, 0, sizeof(*dd));
1782 return error;
1783#undef ATH_DESC_4KB_BOUND_CHECK
1784#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1785#undef DS2PHYS
1786}
1787
1788void ath_descdma_cleanup(struct ath_softc *sc,
1789 struct ath_descdma *dd,
1790 struct list_head *head)
1791{
Gabor Juhos7da3c552009-01-14 20:17:03 +01001792 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
1793 dd->dd_desc_paddr);
Sujithff37e332008-11-24 12:07:55 +05301794
1795 INIT_LIST_HEAD(head);
1796 kfree(dd->dd_bufptr);
1797 memset(dd, 0, sizeof(*dd));
1798}
1799
1800int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1801{
1802 int qnum;
1803
1804 switch (queue) {
1805 case 0:
Sujithb77f4832008-12-07 21:44:03 +05301806 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO];
Sujithff37e332008-11-24 12:07:55 +05301807 break;
1808 case 1:
Sujithb77f4832008-12-07 21:44:03 +05301809 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI];
Sujithff37e332008-11-24 12:07:55 +05301810 break;
1811 case 2:
Sujithb77f4832008-12-07 21:44:03 +05301812 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301813 break;
1814 case 3:
Sujithb77f4832008-12-07 21:44:03 +05301815 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK];
Sujithff37e332008-11-24 12:07:55 +05301816 break;
1817 default:
Sujithb77f4832008-12-07 21:44:03 +05301818 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301819 break;
1820 }
1821
1822 return qnum;
1823}
1824
1825int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1826{
1827 int qnum;
1828
1829 switch (queue) {
1830 case ATH9K_WME_AC_VO:
1831 qnum = 0;
1832 break;
1833 case ATH9K_WME_AC_VI:
1834 qnum = 1;
1835 break;
1836 case ATH9K_WME_AC_BE:
1837 qnum = 2;
1838 break;
1839 case ATH9K_WME_AC_BK:
1840 qnum = 3;
1841 break;
1842 default:
1843 qnum = -1;
1844 break;
1845 }
1846
1847 return qnum;
1848}
1849
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001850/* XXX: Remove me once we don't depend on ath9k_channel for all
1851 * this redundant data */
1852static void ath9k_update_ichannel(struct ath_softc *sc,
1853 struct ath9k_channel *ichan)
1854{
1855 struct ieee80211_hw *hw = sc->hw;
1856 struct ieee80211_channel *chan = hw->conf.channel;
1857 struct ieee80211_conf *conf = &hw->conf;
1858
1859 ichan->channel = chan->center_freq;
1860 ichan->chan = chan;
1861
1862 if (chan->band == IEEE80211_BAND_2GHZ) {
1863 ichan->chanmode = CHANNEL_G;
1864 ichan->channelFlags = CHANNEL_2GHZ | CHANNEL_OFDM;
1865 } else {
1866 ichan->chanmode = CHANNEL_A;
1867 ichan->channelFlags = CHANNEL_5GHZ | CHANNEL_OFDM;
1868 }
1869
1870 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
1871
1872 if (conf_is_ht(conf)) {
1873 if (conf_is_ht40(conf))
1874 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
1875
1876 ichan->chanmode = ath_get_extchanmode(sc, chan,
1877 conf->channel_type);
1878 }
1879}
1880
Sujithff37e332008-11-24 12:07:55 +05301881/**********************/
1882/* mac80211 callbacks */
1883/**********************/
1884
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001885static int ath9k_start(struct ieee80211_hw *hw)
1886{
1887 struct ath_softc *sc = hw->priv;
1888 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05301889 struct ath9k_channel *init_channel;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001890 int r, pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001891
Sujith04bd4632008-11-28 22:18:05 +05301892 DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with "
1893 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001894
1895 /* setup initial channel */
1896
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001897 pos = curchan->hw_value;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001898
Sujithff37e332008-11-24 12:07:55 +05301899 init_channel = &sc->sc_ah->ah_channels[pos];
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001900 ath9k_update_ichannel(sc, init_channel);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001901
Sujithff37e332008-11-24 12:07:55 +05301902 /* Reset SERDES registers */
1903 ath9k_hw_configpcipowersave(sc->sc_ah, 0);
1904
1905 /*
1906 * The basic interface to setting the hardware in a good
1907 * state is ``reset''. On return the hardware is known to
1908 * be powered up and with interrupts disabled. This must
1909 * be followed by initialization of the appropriate bits
1910 * and then setup of the interrupt mask.
1911 */
1912 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001913 r = ath9k_hw_reset(sc->sc_ah, init_channel, false);
1914 if (r) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001916 "Unable to reset hardware; reset status %u "
1917 "(freq %u MHz)\n", r,
1918 curchan->center_freq);
Sujithff37e332008-11-24 12:07:55 +05301919 spin_unlock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001920 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001921 }
Sujithff37e332008-11-24 12:07:55 +05301922 spin_unlock_bh(&sc->sc_resetlock);
1923
1924 /*
1925 * This is needed only to setup initial state
1926 * but it's best done after a reset.
1927 */
1928 ath_update_txpow(sc);
1929
1930 /*
1931 * Setup the hardware after reset:
1932 * The receive engine is set going.
1933 * Frame transmit is handled entirely
1934 * in the frame output path; there's nothing to do
1935 * here except setup the interrupt mask.
1936 */
1937 if (ath_startrecv(sc) != 0) {
1938 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301939 "Unable to start recv logic\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001940 return -EIO;
Sujithff37e332008-11-24 12:07:55 +05301941 }
1942
1943 /* Setup our intr mask. */
1944 sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
1945 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
1946 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
1947
1948 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
1949 sc->sc_imask |= ATH9K_INT_GTT;
1950
1951 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
1952 sc->sc_imask |= ATH9K_INT_CST;
1953
1954 /*
1955 * Enable MIB interrupts when there are hardware phy counters.
1956 * Note we only do this (at the moment) for station mode.
1957 */
1958 if (ath9k_hw_phycounters(sc->sc_ah) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001959 ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) ||
1960 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC)))
Sujithff37e332008-11-24 12:07:55 +05301961 sc->sc_imask |= ATH9K_INT_MIB;
1962 /*
1963 * Some hardware processes the TIM IE and fires an
1964 * interrupt when the TIM bit is set. For hardware
1965 * that does, if not overridden by configuration,
1966 * enable the TIM interrupt when operating as station.
1967 */
1968 if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001969 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) &&
Sujithff37e332008-11-24 12:07:55 +05301970 !sc->sc_config.swBeaconProcess)
1971 sc->sc_imask |= ATH9K_INT_TIM;
1972
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08001973 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05301974
1975 sc->sc_flags &= ~SC_OP_INVALID;
1976
1977 /* Disable BMISS interrupt when we're not associated */
1978 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1979 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1980
1981 ieee80211_wake_queues(sc->hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001982
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301983#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001984 r = ath_start_rfkill_poll(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301985#endif
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001986 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001987}
1988
1989static int ath9k_tx(struct ieee80211_hw *hw,
1990 struct sk_buff *skb)
1991{
Jouni Malinen147583c2008-08-11 14:01:50 +03001992 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Sujith528f0c62008-10-29 10:14:26 +05301993 struct ath_softc *sc = hw->priv;
1994 struct ath_tx_control txctl;
1995 int hdrlen, padsize;
1996
1997 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03001998
1999 /*
2000 * As a temporary workaround, assign seq# here; this will likely need
2001 * to be cleaned up to work better with Beacon transmission and virtual
2002 * BSSes.
2003 */
2004 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
2005 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2006 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Sujithb77f4832008-12-07 21:44:03 +05302007 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +03002008 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +05302009 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +03002010 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002011
2012 /* Add the padding after the header if this is not already done */
2013 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
2014 if (hdrlen & 3) {
2015 padsize = hdrlen % 4;
2016 if (skb_headroom(skb) < padsize)
2017 return -1;
2018 skb_push(skb, padsize);
2019 memmove(skb->data, skb->data + padsize, hdrlen);
2020 }
2021
Sujith528f0c62008-10-29 10:14:26 +05302022 /* Check if a tx queue is available */
2023
2024 txctl.txq = ath_test_get_txq(sc, skb);
2025 if (!txctl.txq)
2026 goto exit;
2027
Sujith04bd4632008-11-28 22:18:05 +05302028 DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002029
Sujith528f0c62008-10-29 10:14:26 +05302030 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05302031 DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05302032 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002033 }
2034
2035 return 0;
Sujith528f0c62008-10-29 10:14:26 +05302036exit:
2037 dev_kfree_skb_any(skb);
2038 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002039}
2040
2041static void ath9k_stop(struct ieee80211_hw *hw)
2042{
2043 struct ath_softc *sc = hw->priv;
Sujith9c84b792008-10-29 10:17:13 +05302044
2045 if (sc->sc_flags & SC_OP_INVALID) {
Sujith04bd4632008-11-28 22:18:05 +05302046 DPRINTF(sc, ATH_DBG_ANY, "Device not present\n");
Sujith9c84b792008-10-29 10:17:13 +05302047 return;
2048 }
2049
Sujith04bd4632008-11-28 22:18:05 +05302050 DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n");
Sujithff37e332008-11-24 12:07:55 +05302051
2052 ieee80211_stop_queues(sc->hw);
2053
2054 /* make sure h/w will not generate any interrupt
2055 * before setting the invalid flag. */
2056 ath9k_hw_set_interrupts(sc->sc_ah, 0);
2057
2058 if (!(sc->sc_flags & SC_OP_INVALID)) {
Sujith043a0402009-01-16 21:38:47 +05302059 ath_drain_all_txq(sc, false);
Sujithff37e332008-11-24 12:07:55 +05302060 ath_stoprecv(sc);
2061 ath9k_hw_phy_disable(sc->sc_ah);
2062 } else
Sujithb77f4832008-12-07 21:44:03 +05302063 sc->rx.rxlink = NULL;
Sujithff37e332008-11-24 12:07:55 +05302064
2065#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
2066 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2067 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2068#endif
2069 /* disable HAL and put h/w to sleep */
2070 ath9k_hw_disable(sc->sc_ah);
2071 ath9k_hw_configpcipowersave(sc->sc_ah, 1);
2072
2073 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002074
Sujith04bd4632008-11-28 22:18:05 +05302075 DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002076}
2077
2078static int ath9k_add_interface(struct ieee80211_hw *hw,
2079 struct ieee80211_if_init_conf *conf)
2080{
2081 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302082 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08002083 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002084
2085 /* Support only vap for now */
2086
2087 if (sc->sc_nvaps)
2088 return -ENOBUFS;
2089
2090 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002091 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002092 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002093 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002094 case NL80211_IFTYPE_ADHOC:
Colin McCabed97809d2008-12-01 13:38:55 -08002095 ic_opmode = NL80211_IFTYPE_ADHOC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002096 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002097 case NL80211_IFTYPE_AP:
Colin McCabed97809d2008-12-01 13:38:55 -08002098 ic_opmode = NL80211_IFTYPE_AP;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002099 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002100 default:
2101 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302102 "Interface type %d not yet supported\n", conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002103 return -EOPNOTSUPP;
2104 }
2105
Sujith04bd4632008-11-28 22:18:05 +05302106 DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002107
Sujith5640b082008-10-29 10:16:06 +05302108 /* Set the VAP opmode */
2109 avp->av_opmode = ic_opmode;
2110 avp->av_bslot = -1;
2111
Colin McCabed97809d2008-12-01 13:38:55 -08002112 if (ic_opmode == NL80211_IFTYPE_AP)
Sujith5640b082008-10-29 10:16:06 +05302113 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2114
2115 sc->sc_vaps[0] = conf->vif;
2116 sc->sc_nvaps++;
2117
2118 /* Set the device opmode */
2119 sc->sc_ah->ah_opmode = ic_opmode;
2120
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002121 if (conf->type == NL80211_IFTYPE_AP) {
2122 /* TODO: is this a suitable place to start ANI for AP mode? */
2123 /* Start ANI */
2124 mod_timer(&sc->sc_ani.timer,
2125 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
2126 }
2127
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002128 return 0;
2129}
2130
2131static void ath9k_remove_interface(struct ieee80211_hw *hw,
2132 struct ieee80211_if_init_conf *conf)
2133{
2134 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302135 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002136
Sujith04bd4632008-11-28 22:18:05 +05302137 DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002138
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002139 /* Stop ANI */
2140 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002141
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002142 /* Reclaim beacon resources */
Colin McCabed97809d2008-12-01 13:38:55 -08002143 if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP ||
2144 sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) {
Sujithb77f4832008-12-07 21:44:03 +05302145 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002146 ath_beacon_return(sc, avp);
2147 }
2148
Sujith672840a2008-08-11 14:05:08 +05302149 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002150
Sujith5640b082008-10-29 10:16:06 +05302151 sc->sc_vaps[0] = NULL;
2152 sc->sc_nvaps--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002153}
2154
Johannes Berge8975582008-10-09 12:18:51 +02002155static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002156{
2157 struct ath_softc *sc = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002158 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002159
Sujithaa33de02008-12-18 11:40:16 +05302160 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302161 if (changed & IEEE80211_CONF_CHANGE_PS) {
2162 if (conf->flags & IEEE80211_CONF_PS) {
2163 if ((sc->sc_imask & ATH9K_INT_TIM_TIMER) == 0) {
2164 sc->sc_imask |= ATH9K_INT_TIM_TIMER;
2165 ath9k_hw_set_interrupts(sc->sc_ah,
2166 sc->sc_imask);
2167 }
2168 ath9k_hw_setrxabort(sc->sc_ah, 1);
2169 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
2170 } else {
2171 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
2172 ath9k_hw_setrxabort(sc->sc_ah, 0);
2173 sc->sc_flags &= ~SC_OP_WAIT_FOR_BEACON;
2174 if (sc->sc_imask & ATH9K_INT_TIM_TIMER) {
2175 sc->sc_imask &= ~ATH9K_INT_TIM_TIMER;
2176 ath9k_hw_set_interrupts(sc->sc_ah,
2177 sc->sc_imask);
2178 }
2179 }
2180 }
2181
Johannes Berg47979382009-01-07 10:13:27 +01002182 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
Sujith99405f92008-11-24 12:08:35 +05302183 struct ieee80211_channel *curchan = hw->conf.channel;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002184 int pos = curchan->hw_value;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002185
Sujith04bd4632008-11-28 22:18:05 +05302186 DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2187 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002188
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002189 /* XXX: remove me eventualy */
2190 ath9k_update_ichannel(sc, &sc->sc_ah->ah_channels[pos]);
Sujithe11602b2008-11-27 09:46:27 +05302191
Luis R. Rodriguezecf70442008-12-23 15:58:43 -08002192 ath_update_chainmask(sc, conf_is_ht(conf));
Sujith86060f02009-01-07 14:25:29 +05302193
Sujithe11602b2008-11-27 09:46:27 +05302194 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) {
Sujith04bd4632008-11-28 22:18:05 +05302195 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithaa33de02008-12-18 11:40:16 +05302196 mutex_unlock(&sc->mutex);
Sujithe11602b2008-11-27 09:46:27 +05302197 return -EINVAL;
2198 }
Sujith094d05d2008-12-12 11:57:43 +05302199 }
Sujith86b89ee2008-08-07 10:54:57 +05302200
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002201 if (changed & IEEE80211_CONF_CHANGE_POWER)
2202 sc->sc_config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002203
Sujithaa33de02008-12-18 11:40:16 +05302204 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002205 return 0;
2206}
2207
2208static int ath9k_config_interface(struct ieee80211_hw *hw,
2209 struct ieee80211_vif *vif,
2210 struct ieee80211_if_conf *conf)
2211{
2212 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002213 struct ath_hal *ah = sc->sc_ah;
Sujith5640b082008-10-29 10:16:06 +05302214 struct ath_vap *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002215 u32 rfilt = 0;
2216 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002218 /* TODO: Need to decide which hw opmode to use for multi-interface
2219 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02002220 if (vif->type == NL80211_IFTYPE_AP &&
Colin McCabed97809d2008-12-01 13:38:55 -08002221 ah->ah_opmode != NL80211_IFTYPE_AP) {
2222 ah->ah_opmode = NL80211_IFTYPE_STATION;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002223 ath9k_hw_setopmode(ah);
2224 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
2225 /* Request full reset to get hw opmode changed properly */
2226 sc->sc_flags |= SC_OP_FULL_RESET;
2227 }
2228
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002229 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
2230 !is_zero_ether_addr(conf->bssid)) {
2231 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002232 case NL80211_IFTYPE_STATION:
2233 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002234 /* Set BSSID */
2235 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
2236 sc->sc_curaid = 0;
2237 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
2238 sc->sc_curaid);
2239
2240 /* Set aggregation protection mode parameters */
2241 sc->sc_config.ath_aggr_prot = 0;
2242
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002243 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302244 "RX filter 0x%x bssid %pM aid 0x%x\n",
2245 rfilt, sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002246
2247 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05302248 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002249
2250 break;
2251 default:
2252 break;
2253 }
2254 }
2255
2256 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002257 ((vif->type == NL80211_IFTYPE_ADHOC) ||
2258 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002259 /*
2260 * Allocate and setup the beacon frame.
2261 *
2262 * Stop any previous beacon DMA. This may be
2263 * necessary, for example, when an ibss merge
2264 * causes reconfiguration; we may be called
2265 * with beacon transmission active.
2266 */
Sujithb77f4832008-12-07 21:44:03 +05302267 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002268
2269 error = ath_beacon_alloc(sc, 0);
2270 if (error != 0)
2271 return error;
2272
2273 ath_beacon_sync(sc, 0);
2274 }
2275
2276 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Colin McCabed97809d2008-12-01 13:38:55 -08002277 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002278 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2279 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2280 ath9k_hw_keysetmac(sc->sc_ah,
2281 (u16)i,
2282 sc->sc_curbssid);
2283 }
2284
2285 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02002286 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002287 ath_update_chainmask(sc, 0);
2288
2289 return 0;
2290}
2291
2292#define SUPPORTED_FILTERS \
2293 (FIF_PROMISC_IN_BSS | \
2294 FIF_ALLMULTI | \
2295 FIF_CONTROL | \
2296 FIF_OTHER_BSS | \
2297 FIF_BCN_PRBRESP_PROMISC | \
2298 FIF_FCSFAIL)
2299
Sujith7dcfdcd2008-08-11 14:03:13 +05302300/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002301static void ath9k_configure_filter(struct ieee80211_hw *hw,
2302 unsigned int changed_flags,
2303 unsigned int *total_flags,
2304 int mc_count,
2305 struct dev_mc_list *mclist)
2306{
2307 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05302308 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002309
2310 changed_flags &= SUPPORTED_FILTERS;
2311 *total_flags &= SUPPORTED_FILTERS;
2312
Sujithb77f4832008-12-07 21:44:03 +05302313 sc->rx.rxfilter = *total_flags;
Sujith7dcfdcd2008-08-11 14:03:13 +05302314 rfilt = ath_calcrxfilter(sc);
2315 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2316
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002317 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2318 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05302319 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002320 }
Sujith7dcfdcd2008-08-11 14:03:13 +05302321
Sujithb77f4832008-12-07 21:44:03 +05302322 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx.rxfilter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002323}
2324
2325static void ath9k_sta_notify(struct ieee80211_hw *hw,
2326 struct ieee80211_vif *vif,
2327 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002328 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002329{
2330 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002331
2332 switch (cmd) {
2333 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302334 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002335 break;
2336 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302337 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002338 break;
2339 default:
2340 break;
2341 }
2342}
2343
2344static int ath9k_conf_tx(struct ieee80211_hw *hw,
2345 u16 queue,
2346 const struct ieee80211_tx_queue_params *params)
2347{
2348 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05302349 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002350 int ret = 0, qnum;
2351
2352 if (queue >= WME_NUM_AC)
2353 return 0;
2354
2355 qi.tqi_aifs = params->aifs;
2356 qi.tqi_cwmin = params->cw_min;
2357 qi.tqi_cwmax = params->cw_max;
2358 qi.tqi_burstTime = params->txop;
2359 qnum = ath_get_hal_qnum(queue, sc);
2360
2361 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302362 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002363 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd4632008-11-28 22:18:05 +05302364 queue, qnum, params->aifs, params->cw_min,
2365 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002366
2367 ret = ath_txq_update(sc, qnum, &qi);
2368 if (ret)
Sujith04bd4632008-11-28 22:18:05 +05302369 DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002370
2371 return ret;
2372}
2373
2374static int ath9k_set_key(struct ieee80211_hw *hw,
2375 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002376 struct ieee80211_vif *vif,
2377 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002378 struct ieee80211_key_conf *key)
2379{
2380 struct ath_softc *sc = hw->priv;
2381 int ret = 0;
2382
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302383 ath9k_ps_wakeup(sc);
Sujith04bd4632008-11-28 22:18:05 +05302384 DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002385
2386 switch (cmd) {
2387 case SET_KEY:
Johannes Bergdc822b52008-12-29 12:55:09 +01002388 ret = ath_key_config(sc, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02002389 if (ret >= 0) {
2390 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002391 /* push IV and Michael MIC generation to stack */
2392 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302393 if (key->alg == ALG_TKIP)
2394 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002395 if (sc->sc_ah->sw_mgmt_crypto && key->alg == ALG_CCMP)
2396 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT;
Jouni Malinen6ace2892008-12-17 13:32:17 +02002397 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002398 }
2399 break;
2400 case DISABLE_KEY:
2401 ath_key_delete(sc, key);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002402 break;
2403 default:
2404 ret = -EINVAL;
2405 }
2406
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302407 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002408 return ret;
2409}
2410
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2412 struct ieee80211_vif *vif,
2413 struct ieee80211_bss_conf *bss_conf,
2414 u32 changed)
2415{
2416 struct ath_softc *sc = hw->priv;
2417
2418 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Sujith04bd4632008-11-28 22:18:05 +05302419 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002420 bss_conf->use_short_preamble);
2421 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302422 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002423 else
Sujith672840a2008-08-11 14:05:08 +05302424 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002425 }
2426
2427 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Sujith04bd4632008-11-28 22:18:05 +05302428 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002429 bss_conf->use_cts_prot);
2430 if (bss_conf->use_cts_prot &&
2431 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302432 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002433 else
Sujith672840a2008-08-11 14:05:08 +05302434 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002435 }
2436
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002437 if (changed & BSS_CHANGED_ASSOC) {
Sujith04bd4632008-11-28 22:18:05 +05302438 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002439 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302440 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002441 }
2442}
2443
2444static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2445{
2446 u64 tsf;
2447 struct ath_softc *sc = hw->priv;
2448 struct ath_hal *ah = sc->sc_ah;
2449
2450 tsf = ath9k_hw_gettsf64(ah);
2451
2452 return tsf;
2453}
2454
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002455static void ath9k_set_tsf(struct ieee80211_hw *hw, u64 tsf)
2456{
2457 struct ath_softc *sc = hw->priv;
2458 struct ath_hal *ah = sc->sc_ah;
2459
2460 ath9k_hw_settsf64(ah, tsf);
2461}
2462
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002463static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2464{
2465 struct ath_softc *sc = hw->priv;
2466 struct ath_hal *ah = sc->sc_ah;
2467
2468 ath9k_hw_reset_tsf(ah);
2469}
2470
2471static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2472 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002473 struct ieee80211_sta *sta,
2474 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002475{
2476 struct ath_softc *sc = hw->priv;
2477 int ret = 0;
2478
2479 switch (action) {
2480 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302481 if (!(sc->sc_flags & SC_OP_RXAGGR))
2482 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002483 break;
2484 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002485 break;
2486 case IEEE80211_AMPDU_TX_START:
Sujithb5aa9bf2008-10-29 10:13:31 +05302487 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002488 if (ret < 0)
2489 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302490 "Unable to start TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002491 else
Johannes Berg17741cd2008-09-11 00:02:02 +02002492 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002493 break;
2494 case IEEE80211_AMPDU_TX_STOP:
Sujithb5aa9bf2008-10-29 10:13:31 +05302495 ret = ath_tx_aggr_stop(sc, sta, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002496 if (ret < 0)
2497 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302498 "Unable to stop TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002499
Johannes Berg17741cd2008-09-11 00:02:02 +02002500 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002501 break;
Sujith8469cde2008-10-29 10:19:28 +05302502 case IEEE80211_AMPDU_TX_RESUME:
2503 ath_tx_aggr_resume(sc, sta, tid);
2504 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002505 default:
Sujith04bd4632008-11-28 22:18:05 +05302506 DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002507 }
2508
2509 return ret;
2510}
2511
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002512struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002513 .tx = ath9k_tx,
2514 .start = ath9k_start,
2515 .stop = ath9k_stop,
2516 .add_interface = ath9k_add_interface,
2517 .remove_interface = ath9k_remove_interface,
2518 .config = ath9k_config,
2519 .config_interface = ath9k_config_interface,
2520 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002521 .sta_notify = ath9k_sta_notify,
2522 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002523 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002524 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002525 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002526 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002527 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002528 .ampdu_action = ath9k_ampdu_action,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002529};
2530
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002531static struct {
2532 u32 version;
2533 const char * name;
2534} ath_mac_bb_names[] = {
2535 { AR_SREV_VERSION_5416_PCI, "5416" },
2536 { AR_SREV_VERSION_5416_PCIE, "5418" },
2537 { AR_SREV_VERSION_9100, "9100" },
2538 { AR_SREV_VERSION_9160, "9160" },
2539 { AR_SREV_VERSION_9280, "9280" },
2540 { AR_SREV_VERSION_9285, "9285" }
2541};
2542
2543static struct {
2544 u16 version;
2545 const char * name;
2546} ath_rf_names[] = {
2547 { 0, "5133" },
2548 { AR_RAD5133_SREV_MAJOR, "5133" },
2549 { AR_RAD5122_SREV_MAJOR, "5122" },
2550 { AR_RAD2133_SREV_MAJOR, "2133" },
2551 { AR_RAD2122_SREV_MAJOR, "2122" }
2552};
2553
2554/*
2555 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2556 */
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002557const char *
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002558ath_mac_bb_name(u32 mac_bb_version)
2559{
2560 int i;
2561
2562 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2563 if (ath_mac_bb_names[i].version == mac_bb_version) {
2564 return ath_mac_bb_names[i].name;
2565 }
2566 }
2567
2568 return "????";
2569}
2570
2571/*
2572 * Return the RF name. "????" is returned if the RF is unknown.
2573 */
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002574const char *
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002575ath_rf_name(u16 rf_version)
2576{
2577 int i;
2578
2579 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2580 if (ath_rf_names[i].version == rf_version) {
2581 return ath_rf_names[i].name;
2582 }
2583 }
2584
2585 return "????";
2586}
2587
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002588static int __init ath9k_init(void)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002589{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302590 int error;
2591
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302592 /* Register rate control algorithm */
2593 error = ath_rate_control_register();
2594 if (error != 0) {
2595 printk(KERN_ERR
Luis R. Rodriguezb51bb3c2009-01-26 07:30:03 -08002596 "ath9k: Unable to register rate control "
2597 "algorithm: %d\n",
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302598 error);
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002599 goto err_out;
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302600 }
2601
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002602 error = ath_pci_init();
2603 if (error < 0) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002604 printk(KERN_ERR
Luis R. Rodriguezb51bb3c2009-01-26 07:30:03 -08002605 "ath9k: No PCI devices found, driver not installed.\n");
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002606 error = -ENODEV;
2607 goto err_rate_unregister;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002608 }
2609
Gabor Juhos09329d32009-01-14 20:17:07 +01002610 error = ath_ahb_init();
2611 if (error < 0) {
2612 error = -ENODEV;
2613 goto err_pci_exit;
2614 }
2615
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002616 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002617
Gabor Juhos09329d32009-01-14 20:17:07 +01002618 err_pci_exit:
2619 ath_pci_exit();
2620
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002621 err_rate_unregister:
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302622 ath_rate_control_unregister();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002623 err_out:
2624 return error;
2625}
2626module_init(ath9k_init);
2627
2628static void __exit ath9k_exit(void)
2629{
Gabor Juhos09329d32009-01-14 20:17:07 +01002630 ath_ahb_exit();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002631 ath_pci_exit();
2632 ath_rate_control_unregister();
Sujith04bd4632008-11-28 22:18:05 +05302633 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002634}
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002635module_exit(ath9k_exit);