blob: e26a9a6fbfcf1ae7656379eb2039da607623659b [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
31static struct pci_device_id ath_pci_id_table[] __devinitdata = {
32 { PCI_VDEVICE(ATHEROS, 0x0023) }, /* PCI */
33 { PCI_VDEVICE(ATHEROS, 0x0024) }, /* PCI-E */
34 { PCI_VDEVICE(ATHEROS, 0x0027) }, /* PCI */
35 { PCI_VDEVICE(ATHEROS, 0x0029) }, /* PCI */
36 { PCI_VDEVICE(ATHEROS, 0x002A) }, /* PCI-E */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +053037 { PCI_VDEVICE(ATHEROS, 0x002B) }, /* PCI-E */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070038 { 0 }
39};
40
Sujith9757d552008-11-04 18:25:27 +053041static void ath_detach(struct ath_softc *sc);
42
Sujithff37e332008-11-24 12:07:55 +053043/* return bus cachesize in 4B word units */
44
45static void bus_read_cachesize(struct ath_softc *sc, int *csz)
46{
47 u8 u8tmp;
48
49 pci_read_config_byte(sc->pdev, PCI_CACHE_LINE_SIZE, (u8 *)&u8tmp);
50 *csz = (int)u8tmp;
51
52 /*
53 * This check was put in to avoid "unplesant" consequences if
54 * the bootrom has not fully initialized all PCI devices.
55 * Sometimes the cache line size register is not set
56 */
57
58 if (*csz == 0)
59 *csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
60}
61
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080062static void ath_setcurmode(struct ath_softc *sc, struct ieee80211_conf *conf)
Sujithff37e332008-11-24 12:07:55 +053063{
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080064 switch (conf->channel->band) {
65 case IEEE80211_BAND_2GHZ:
66 if (conf_is_ht20(conf))
67 sc->cur_rate_table =
68 sc->hw_rate_table[ATH9K_MODE_11NG_HT20];
69 else if (conf_is_ht40_minus(conf))
70 sc->cur_rate_table =
71 sc->hw_rate_table[ATH9K_MODE_11NG_HT40MINUS];
72 else if (conf_is_ht40_plus(conf))
73 sc->cur_rate_table =
74 sc->hw_rate_table[ATH9K_MODE_11NG_HT40PLUS];
Luis R. Rodriguez96742252008-12-23 15:58:38 -080075 else
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080076 sc->cur_rate_table =
77 sc->hw_rate_table[ATH9K_MODE_11G];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080078 break;
79 case IEEE80211_BAND_5GHZ:
80 if (conf_is_ht20(conf))
81 sc->cur_rate_table =
82 sc->hw_rate_table[ATH9K_MODE_11NA_HT20];
83 else if (conf_is_ht40_minus(conf))
84 sc->cur_rate_table =
85 sc->hw_rate_table[ATH9K_MODE_11NA_HT40MINUS];
86 else if (conf_is_ht40_plus(conf))
87 sc->cur_rate_table =
88 sc->hw_rate_table[ATH9K_MODE_11NA_HT40PLUS];
89 else
Luis R. Rodriguez96742252008-12-23 15:58:38 -080090 sc->cur_rate_table =
91 sc->hw_rate_table[ATH9K_MODE_11A];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080092 break;
93 default:
94 break;
95 }
Sujithff37e332008-11-24 12:07:55 +053096}
97
98static void ath_update_txpow(struct ath_softc *sc)
99{
100 struct ath_hal *ah = sc->sc_ah;
101 u32 txpow;
102
103 if (sc->sc_curtxpow != sc->sc_config.txpowlimit) {
104 ath9k_hw_set_txpowerlimit(ah, sc->sc_config.txpowlimit);
105 /* read back in case value is clamped */
106 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
107 sc->sc_curtxpow = txpow;
108 }
109}
110
111static u8 parse_mpdudensity(u8 mpdudensity)
112{
113 /*
114 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
115 * 0 for no restriction
116 * 1 for 1/4 us
117 * 2 for 1/2 us
118 * 3 for 1 us
119 * 4 for 2 us
120 * 5 for 4 us
121 * 6 for 8 us
122 * 7 for 16 us
123 */
124 switch (mpdudensity) {
125 case 0:
126 return 0;
127 case 1:
128 case 2:
129 case 3:
130 /* Our lower layer calculations limit our precision to
131 1 microsecond */
132 return 1;
133 case 4:
134 return 2;
135 case 5:
136 return 4;
137 case 6:
138 return 8;
139 case 7:
140 return 16;
141 default:
142 return 0;
143 }
144}
145
146static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band)
147{
148 struct ath_rate_table *rate_table = NULL;
149 struct ieee80211_supported_band *sband;
150 struct ieee80211_rate *rate;
151 int i, maxrates;
152
153 switch (band) {
154 case IEEE80211_BAND_2GHZ:
155 rate_table = sc->hw_rate_table[ATH9K_MODE_11G];
156 break;
157 case IEEE80211_BAND_5GHZ:
158 rate_table = sc->hw_rate_table[ATH9K_MODE_11A];
159 break;
160 default:
161 break;
162 }
163
164 if (rate_table == NULL)
165 return;
166
167 sband = &sc->sbands[band];
168 rate = sc->rates[band];
169
170 if (rate_table->rate_cnt > ATH_RATE_MAX)
171 maxrates = ATH_RATE_MAX;
172 else
173 maxrates = rate_table->rate_cnt;
174
175 for (i = 0; i < maxrates; i++) {
176 rate[i].bitrate = rate_table->info[i].ratekbps / 100;
177 rate[i].hw_value = rate_table->info[i].ratecode;
178 sband->n_bitrates++;
Sujith04bd4632008-11-28 22:18:05 +0530179 DPRINTF(sc, ATH_DBG_CONFIG, "Rate: %2dMbps, ratecode: %2d\n",
180 rate[i].bitrate / 10, rate[i].hw_value);
Sujithff37e332008-11-24 12:07:55 +0530181 }
182}
183
184static int ath_setup_channels(struct ath_softc *sc)
185{
186 struct ath_hal *ah = sc->sc_ah;
187 int nchan, i, a = 0, b = 0;
188 u8 regclassids[ATH_REGCLASSIDS_MAX];
189 u32 nregclass = 0;
190 struct ieee80211_supported_band *band_2ghz;
191 struct ieee80211_supported_band *band_5ghz;
192 struct ieee80211_channel *chan_2ghz;
193 struct ieee80211_channel *chan_5ghz;
194 struct ath9k_channel *c;
195
196 /* Fill in ah->ah_channels */
197 if (!ath9k_regd_init_channels(ah, ATH_CHAN_MAX, (u32 *)&nchan,
198 regclassids, ATH_REGCLASSIDS_MAX,
199 &nregclass, CTRY_DEFAULT, false, 1)) {
200 u32 rd = ah->ah_currentRD;
201 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530202 "Unable to collect channel list; "
Sujithff37e332008-11-24 12:07:55 +0530203 "regdomain likely %u country code %u\n",
Sujith04bd4632008-11-28 22:18:05 +0530204 rd, CTRY_DEFAULT);
Sujithff37e332008-11-24 12:07:55 +0530205 return -EINVAL;
206 }
207
208 band_2ghz = &sc->sbands[IEEE80211_BAND_2GHZ];
209 band_5ghz = &sc->sbands[IEEE80211_BAND_5GHZ];
210 chan_2ghz = sc->channels[IEEE80211_BAND_2GHZ];
211 chan_5ghz = sc->channels[IEEE80211_BAND_5GHZ];
212
213 for (i = 0; i < nchan; i++) {
214 c = &ah->ah_channels[i];
215 if (IS_CHAN_2GHZ(c)) {
216 chan_2ghz[a].band = IEEE80211_BAND_2GHZ;
217 chan_2ghz[a].center_freq = c->channel;
218 chan_2ghz[a].max_power = c->maxTxPower;
219
220 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
221 chan_2ghz[a].flags |= IEEE80211_CHAN_NO_IBSS;
222 if (c->channelFlags & CHANNEL_PASSIVE)
223 chan_2ghz[a].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
224
225 band_2ghz->n_channels = ++a;
226
Sujith04bd4632008-11-28 22:18:05 +0530227 DPRINTF(sc, ATH_DBG_CONFIG, "2MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530228 "channelFlags: 0x%x\n",
Sujith04bd4632008-11-28 22:18:05 +0530229 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530230 } else if (IS_CHAN_5GHZ(c)) {
231 chan_5ghz[b].band = IEEE80211_BAND_5GHZ;
232 chan_5ghz[b].center_freq = c->channel;
233 chan_5ghz[b].max_power = c->maxTxPower;
234
235 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
236 chan_5ghz[b].flags |= IEEE80211_CHAN_NO_IBSS;
237 if (c->channelFlags & CHANNEL_PASSIVE)
238 chan_5ghz[b].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
239
240 band_5ghz->n_channels = ++b;
241
Sujith04bd4632008-11-28 22:18:05 +0530242 DPRINTF(sc, ATH_DBG_CONFIG, "5MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530243 "channelFlags: 0x%x\n",
Sujith04bd4632008-11-28 22:18:05 +0530244 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530245 }
246 }
247
248 return 0;
249}
250
251/*
252 * Set/change channels. If the channel is really being changed, it's done
253 * by reseting the chip. To accomplish this we must first cleanup any pending
254 * DMA, then restart stuff.
255*/
256static int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan)
257{
258 struct ath_hal *ah = sc->sc_ah;
259 bool fastcc = true, stopped;
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800260 struct ieee80211_hw *hw = sc->hw;
Sujithff37e332008-11-24 12:07:55 +0530261
262 if (sc->sc_flags & SC_OP_INVALID)
263 return -EIO;
264
Sujithff37e332008-11-24 12:07:55 +0530265 if (hchan->channel != sc->sc_ah->ah_curchan->channel ||
266 hchan->channelFlags != sc->sc_ah->ah_curchan->channelFlags ||
267 (sc->sc_flags & SC_OP_CHAINMASK_UPDATE) ||
268 (sc->sc_flags & SC_OP_FULL_RESET)) {
269 int status;
270 /*
271 * This is only performed if the channel settings have
272 * actually changed.
273 *
274 * To switch channels clear any pending DMA operations;
275 * wait long enough for the RX fifo to drain, reset the
276 * hardware at the new frequency, and then re-enable
277 * the relevant bits of the h/w.
278 */
Sujith04bd4632008-11-28 22:18:05 +0530279 ath9k_hw_set_interrupts(ah, 0);
280 ath_draintxq(sc, false);
281 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530282
283 /* XXX: do not flush receive queue here. We don't want
284 * to flush data frames already in queue because of
285 * changing channel. */
286
287 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
288 fastcc = false;
289
Sujith99405f92008-11-24 12:08:35 +0530290 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +0530291 "(%u MHz) -> (%u MHz), cflags:%x, chanwidth: %d\n",
Sujith99405f92008-11-24 12:08:35 +0530292 sc->sc_ah->ah_curchan->channel,
293 hchan->channel, hchan->channelFlags, sc->tx_chan_width);
294
Sujithff37e332008-11-24 12:07:55 +0530295 spin_lock_bh(&sc->sc_resetlock);
Sujith99405f92008-11-24 12:08:35 +0530296 if (!ath9k_hw_reset(ah, hchan, sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +0530297 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
298 sc->sc_ht_extprotspacing, fastcc, &status)) {
299 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530300 "Unable to reset channel %u (%uMhz) "
301 "flags 0x%x hal status %u\n",
Sujithff37e332008-11-24 12:07:55 +0530302 ath9k_hw_mhz2ieee(ah, hchan->channel,
303 hchan->channelFlags),
304 hchan->channel, hchan->channelFlags, status);
305 spin_unlock_bh(&sc->sc_resetlock);
306 return -EIO;
307 }
308 spin_unlock_bh(&sc->sc_resetlock);
309
310 sc->sc_flags &= ~SC_OP_CHAINMASK_UPDATE;
311 sc->sc_flags &= ~SC_OP_FULL_RESET;
312
313 if (ath_startrecv(sc) != 0) {
314 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530315 "Unable to restart recv logic\n");
Sujithff37e332008-11-24 12:07:55 +0530316 return -EIO;
317 }
318
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800319 ath_setcurmode(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +0530320 ath_update_txpow(sc);
321 ath9k_hw_set_interrupts(ah, sc->sc_imask);
322 }
323 return 0;
324}
325
326/*
327 * This routine performs the periodic noise floor calibration function
328 * that is used to adjust and optimize the chip performance. This
329 * takes environmental changes (location, temperature) into account.
330 * When the task is complete, it reschedules itself depending on the
331 * appropriate interval that was calculated.
332 */
333static void ath_ani_calibrate(unsigned long data)
334{
335 struct ath_softc *sc;
336 struct ath_hal *ah;
337 bool longcal = false;
338 bool shortcal = false;
339 bool aniflag = false;
340 unsigned int timestamp = jiffies_to_msecs(jiffies);
341 u32 cal_interval;
342
343 sc = (struct ath_softc *)data;
344 ah = sc->sc_ah;
345
346 /*
347 * don't calibrate when we're scanning.
348 * we are most likely not on our home channel.
349 */
Sujithb77f4832008-12-07 21:44:03 +0530350 if (sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC)
Sujithff37e332008-11-24 12:07:55 +0530351 return;
352
353 /* Long calibration runs independently of short calibration. */
354 if ((timestamp - sc->sc_ani.sc_longcal_timer) >= ATH_LONG_CALINTERVAL) {
355 longcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530356 DPRINTF(sc, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530357 sc->sc_ani.sc_longcal_timer = timestamp;
358 }
359
360 /* Short calibration applies only while sc_caldone is false */
361 if (!sc->sc_ani.sc_caldone) {
362 if ((timestamp - sc->sc_ani.sc_shortcal_timer) >=
363 ATH_SHORT_CALINTERVAL) {
364 shortcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530365 DPRINTF(sc, ATH_DBG_ANI, "shortcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530366 sc->sc_ani.sc_shortcal_timer = timestamp;
367 sc->sc_ani.sc_resetcal_timer = timestamp;
368 }
369 } else {
370 if ((timestamp - sc->sc_ani.sc_resetcal_timer) >=
371 ATH_RESTART_CALINTERVAL) {
372 ath9k_hw_reset_calvalid(ah, ah->ah_curchan,
373 &sc->sc_ani.sc_caldone);
374 if (sc->sc_ani.sc_caldone)
375 sc->sc_ani.sc_resetcal_timer = timestamp;
376 }
377 }
378
379 /* Verify whether we must check ANI */
380 if ((timestamp - sc->sc_ani.sc_checkani_timer) >=
381 ATH_ANI_POLLINTERVAL) {
382 aniflag = true;
383 sc->sc_ani.sc_checkani_timer = timestamp;
384 }
385
386 /* Skip all processing if there's nothing to do. */
387 if (longcal || shortcal || aniflag) {
388 /* Call ANI routine if necessary */
389 if (aniflag)
390 ath9k_hw_ani_monitor(ah, &sc->sc_halstats,
391 ah->ah_curchan);
392
393 /* Perform calibration if necessary */
394 if (longcal || shortcal) {
395 bool iscaldone = false;
396
397 if (ath9k_hw_calibrate(ah, ah->ah_curchan,
398 sc->sc_rx_chainmask, longcal,
399 &iscaldone)) {
400 if (longcal)
401 sc->sc_ani.sc_noise_floor =
402 ath9k_hw_getchan_noise(ah,
403 ah->ah_curchan);
404
405 DPRINTF(sc, ATH_DBG_ANI,
Sujith04bd4632008-11-28 22:18:05 +0530406 "calibrate chan %u/%x nf: %d\n",
Sujithff37e332008-11-24 12:07:55 +0530407 ah->ah_curchan->channel,
408 ah->ah_curchan->channelFlags,
409 sc->sc_ani.sc_noise_floor);
410 } else {
411 DPRINTF(sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +0530412 "calibrate chan %u/%x failed\n",
Sujithff37e332008-11-24 12:07:55 +0530413 ah->ah_curchan->channel,
414 ah->ah_curchan->channelFlags);
415 }
416 sc->sc_ani.sc_caldone = iscaldone;
417 }
418 }
419
420 /*
421 * Set timer interval based on previous results.
422 * The interval must be the shortest necessary to satisfy ANI,
423 * short calibration and long calibration.
424 */
Sujithaac92072008-12-02 18:37:54 +0530425 cal_interval = ATH_LONG_CALINTERVAL;
426 if (sc->sc_ah->ah_config.enable_ani)
427 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
Sujithff37e332008-11-24 12:07:55 +0530428 if (!sc->sc_ani.sc_caldone)
429 cal_interval = min(cal_interval, (u32)ATH_SHORT_CALINTERVAL);
430
431 mod_timer(&sc->sc_ani.timer, jiffies + msecs_to_jiffies(cal_interval));
432}
433
434/*
435 * Update tx/rx chainmask. For legacy association,
436 * hard code chainmask to 1x1, for 11n association, use
437 * the chainmask configuration.
438 */
439static void ath_update_chainmask(struct ath_softc *sc, int is_ht)
440{
441 sc->sc_flags |= SC_OP_CHAINMASK_UPDATE;
442 if (is_ht) {
443 sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask;
444 sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask;
445 } else {
446 sc->sc_tx_chainmask = 1;
447 sc->sc_rx_chainmask = 1;
448 }
449
Sujith04bd4632008-11-28 22:18:05 +0530450 DPRINTF(sc, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n",
451 sc->sc_tx_chainmask, sc->sc_rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530452}
453
454static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
455{
456 struct ath_node *an;
457
458 an = (struct ath_node *)sta->drv_priv;
459
460 if (sc->sc_flags & SC_OP_TXAGGR)
461 ath_tx_node_init(sc, an);
462
463 an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR +
464 sta->ht_cap.ampdu_factor);
465 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
466}
467
468static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
469{
470 struct ath_node *an = (struct ath_node *)sta->drv_priv;
471
472 if (sc->sc_flags & SC_OP_TXAGGR)
473 ath_tx_node_cleanup(sc, an);
474}
475
476static void ath9k_tasklet(unsigned long data)
477{
478 struct ath_softc *sc = (struct ath_softc *)data;
479 u32 status = sc->sc_intrstatus;
480
481 if (status & ATH9K_INT_FATAL) {
482 /* need a chip reset */
483 ath_reset(sc, false);
484 return;
485 } else {
486
487 if (status &
488 (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
Sujithb77f4832008-12-07 21:44:03 +0530489 spin_lock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530490 ath_rx_tasklet(sc, 0);
Sujithb77f4832008-12-07 21:44:03 +0530491 spin_unlock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530492 }
493 /* XXX: optimize this */
494 if (status & ATH9K_INT_TX)
495 ath_tx_tasklet(sc);
496 }
497
498 /* re-enable hardware interrupt */
499 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
500}
501
502static irqreturn_t ath_isr(int irq, void *dev)
503{
504 struct ath_softc *sc = dev;
505 struct ath_hal *ah = sc->sc_ah;
506 enum ath9k_int status;
507 bool sched = false;
508
509 do {
510 if (sc->sc_flags & SC_OP_INVALID) {
511 /*
512 * The hardware is not ready/present, don't
513 * touch anything. Note this can happen early
514 * on if the IRQ is shared.
515 */
516 return IRQ_NONE;
517 }
518 if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */
519 return IRQ_NONE;
520 }
521
522 /*
523 * Figure out the reason(s) for the interrupt. Note
524 * that the hal returns a pseudo-ISR that may include
525 * bits we haven't explicitly enabled so we mask the
526 * value to insure we only process bits we requested.
527 */
528 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
529
530 status &= sc->sc_imask; /* discard unasked-for bits */
531
532 /*
533 * If there are no status bits set, then this interrupt was not
534 * for me (should have been caught above).
535 */
536 if (!status)
537 return IRQ_NONE;
538
539 sc->sc_intrstatus = status;
540
541 if (status & ATH9K_INT_FATAL) {
542 /* need a chip reset */
543 sched = true;
544 } else if (status & ATH9K_INT_RXORN) {
545 /* need a chip reset */
546 sched = true;
547 } else {
548 if (status & ATH9K_INT_SWBA) {
549 /* schedule a tasklet for beacon handling */
550 tasklet_schedule(&sc->bcon_tasklet);
551 }
552 if (status & ATH9K_INT_RXEOL) {
553 /*
554 * NB: the hardware should re-read the link when
555 * RXE bit is written, but it doesn't work
556 * at least on older hardware revs.
557 */
558 sched = true;
559 }
560
561 if (status & ATH9K_INT_TXURN)
562 /* bump tx trigger level */
563 ath9k_hw_updatetxtriglevel(ah, true);
564 /* XXX: optimize this */
565 if (status & ATH9K_INT_RX)
566 sched = true;
567 if (status & ATH9K_INT_TX)
568 sched = true;
569 if (status & ATH9K_INT_BMISS)
570 sched = true;
571 /* carrier sense timeout */
572 if (status & ATH9K_INT_CST)
573 sched = true;
574 if (status & ATH9K_INT_MIB) {
575 /*
576 * Disable interrupts until we service the MIB
577 * interrupt; otherwise it will continue to
578 * fire.
579 */
580 ath9k_hw_set_interrupts(ah, 0);
581 /*
582 * Let the hal handle the event. We assume
583 * it will clear whatever condition caused
584 * the interrupt.
585 */
586 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
587 ath9k_hw_set_interrupts(ah, sc->sc_imask);
588 }
589 if (status & ATH9K_INT_TIM_TIMER) {
590 if (!(ah->ah_caps.hw_caps &
591 ATH9K_HW_CAP_AUTOSLEEP)) {
592 /* Clear RxAbort bit so that we can
593 * receive frames */
594 ath9k_hw_setrxabort(ah, 0);
595 sched = true;
596 }
597 }
598 }
599 } while (0);
600
Sujith817e11d2008-12-07 21:42:44 +0530601 ath_debug_stat_interrupt(sc, status);
602
Sujithff37e332008-11-24 12:07:55 +0530603 if (sched) {
604 /* turn off every interrupt except SWBA */
605 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
606 tasklet_schedule(&sc->intr_tq);
607 }
608
609 return IRQ_HANDLED;
610}
611
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700612static int ath_get_channel(struct ath_softc *sc,
613 struct ieee80211_channel *chan)
614{
615 int i;
616
617 for (i = 0; i < sc->sc_ah->ah_nchan; i++) {
618 if (sc->sc_ah->ah_channels[i].channel == chan->center_freq)
619 return i;
620 }
621
622 return -1;
623}
624
625static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530626 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +0530627 enum nl80211_channel_type channel_type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700628{
629 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700630
631 switch (chan->band) {
632 case IEEE80211_BAND_2GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530633 switch(channel_type) {
634 case NL80211_CHAN_NO_HT:
635 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700636 chanmode = CHANNEL_G_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530637 break;
638 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639 chanmode = CHANNEL_G_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530640 break;
641 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700642 chanmode = CHANNEL_G_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530643 break;
644 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645 break;
646 case IEEE80211_BAND_5GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530647 switch(channel_type) {
648 case NL80211_CHAN_NO_HT:
649 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650 chanmode = CHANNEL_A_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530651 break;
652 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700653 chanmode = CHANNEL_A_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530654 break;
655 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700656 chanmode = CHANNEL_A_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530657 break;
658 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700659 break;
660 default:
661 break;
662 }
663
664 return chanmode;
665}
666
Sujithff37e332008-11-24 12:07:55 +0530667static int ath_keyset(struct ath_softc *sc, u16 keyix,
668 struct ath9k_keyval *hk, const u8 mac[ETH_ALEN])
669{
670 bool status;
671
672 status = ath9k_hw_set_keycache_entry(sc->sc_ah,
673 keyix, hk, mac, false);
674
675 return status != false;
676}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700677
Jouni Malinen6ace2892008-12-17 13:32:17 +0200678static int ath_setkey_tkip(struct ath_softc *sc, u16 keyix, const u8 *key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700679 struct ath9k_keyval *hk,
680 const u8 *addr)
681{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200682 const u8 *key_rxmic;
683 const u8 *key_txmic;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700684
Jouni Malinen6ace2892008-12-17 13:32:17 +0200685 key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
686 key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700687
688 if (addr == NULL) {
689 /* Group key installation */
Jouni Malinen6ace2892008-12-17 13:32:17 +0200690 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
691 return ath_keyset(sc, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700692 }
693 if (!sc->sc_splitmic) {
694 /*
695 * data key goes at first index,
696 * the hal handles the MIC keys at index+64.
697 */
698 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
699 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
Jouni Malinen6ace2892008-12-17 13:32:17 +0200700 return ath_keyset(sc, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700701 }
702 /*
703 * TX key goes at first index, RX key at +32.
704 * The hal handles the MIC keys at index+64.
705 */
706 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
Jouni Malinen6ace2892008-12-17 13:32:17 +0200707 if (!ath_keyset(sc, keyix, hk, NULL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700708 /* Txmic entry failed. No need to proceed further */
709 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +0530710 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700711 return 0;
712 }
713
714 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
715 /* XXX delete tx key on failure? */
Jouni Malinen6ace2892008-12-17 13:32:17 +0200716 return ath_keyset(sc, keyix + 32, hk, addr);
717}
718
719static int ath_reserve_key_cache_slot_tkip(struct ath_softc *sc)
720{
721 int i;
722
723 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) {
724 if (test_bit(i, sc->sc_keymap) ||
725 test_bit(i + 64, sc->sc_keymap))
726 continue; /* At least one part of TKIP key allocated */
727 if (sc->sc_splitmic &&
728 (test_bit(i + 32, sc->sc_keymap) ||
729 test_bit(i + 64 + 32, sc->sc_keymap)))
730 continue; /* At least one part of TKIP key allocated */
731
732 /* Found a free slot for a TKIP key */
733 return i;
734 }
735 return -1;
736}
737
738static int ath_reserve_key_cache_slot(struct ath_softc *sc)
739{
740 int i;
741
742 /* First, try to find slots that would not be available for TKIP. */
743 if (sc->sc_splitmic) {
744 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 4; i++) {
745 if (!test_bit(i, sc->sc_keymap) &&
746 (test_bit(i + 32, sc->sc_keymap) ||
747 test_bit(i + 64, sc->sc_keymap) ||
748 test_bit(i + 64 + 32, sc->sc_keymap)))
749 return i;
750 if (!test_bit(i + 32, sc->sc_keymap) &&
751 (test_bit(i, sc->sc_keymap) ||
752 test_bit(i + 64, sc->sc_keymap) ||
753 test_bit(i + 64 + 32, sc->sc_keymap)))
754 return i + 32;
755 if (!test_bit(i + 64, sc->sc_keymap) &&
756 (test_bit(i , sc->sc_keymap) ||
757 test_bit(i + 32, sc->sc_keymap) ||
758 test_bit(i + 64 + 32, sc->sc_keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200759 return i + 64;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200760 if (!test_bit(i + 64 + 32, sc->sc_keymap) &&
761 (test_bit(i, sc->sc_keymap) ||
762 test_bit(i + 32, sc->sc_keymap) ||
763 test_bit(i + 64, sc->sc_keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200764 return i + 64 + 32;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200765 }
766 } else {
767 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) {
768 if (!test_bit(i, sc->sc_keymap) &&
769 test_bit(i + 64, sc->sc_keymap))
770 return i;
771 if (test_bit(i, sc->sc_keymap) &&
772 !test_bit(i + 64, sc->sc_keymap))
773 return i + 64;
774 }
775 }
776
777 /* No partially used TKIP slots, pick any available slot */
778 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax; i++) {
Jouni Malinenbe2864c2008-12-18 14:33:00 +0200779 /* Do not allow slots that could be needed for TKIP group keys
780 * to be used. This limitation could be removed if we know that
781 * TKIP will not be used. */
782 if (i >= 64 && i < 64 + IEEE80211_WEP_NKID)
783 continue;
784 if (sc->sc_splitmic) {
785 if (i >= 32 && i < 32 + IEEE80211_WEP_NKID)
786 continue;
787 if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID)
788 continue;
789 }
790
Jouni Malinen6ace2892008-12-17 13:32:17 +0200791 if (!test_bit(i, sc->sc_keymap))
792 return i; /* Found a free slot for a key */
793 }
794
795 /* No free slot found */
796 return -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700797}
798
799static int ath_key_config(struct ath_softc *sc,
800 const u8 *addr,
801 struct ieee80211_key_conf *key)
802{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803 struct ath9k_keyval hk;
804 const u8 *mac = NULL;
805 int ret = 0;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200806 int idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700807
808 memset(&hk, 0, sizeof(hk));
809
810 switch (key->alg) {
811 case ALG_WEP:
812 hk.kv_type = ATH9K_CIPHER_WEP;
813 break;
814 case ALG_TKIP:
815 hk.kv_type = ATH9K_CIPHER_TKIP;
816 break;
817 case ALG_CCMP:
818 hk.kv_type = ATH9K_CIPHER_AES_CCM;
819 break;
820 default:
821 return -EINVAL;
822 }
823
Jouni Malinen6ace2892008-12-17 13:32:17 +0200824 hk.kv_len = key->keylen;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700825 memcpy(hk.kv_val, key->key, key->keylen);
826
Jouni Malinen6ace2892008-12-17 13:32:17 +0200827 if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
828 /* For now, use the default keys for broadcast keys. This may
829 * need to change with virtual interfaces. */
830 idx = key->keyidx;
831 } else if (key->keyidx) {
832 struct ieee80211_vif *vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700833
Jouni Malinen6ace2892008-12-17 13:32:17 +0200834 mac = addr;
835 vif = sc->sc_vaps[0];
836 if (vif->type != NL80211_IFTYPE_AP) {
837 /* Only keyidx 0 should be used with unicast key, but
838 * allow this for client mode for now. */
839 idx = key->keyidx;
840 } else
841 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700842 } else {
843 mac = addr;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200844 if (key->alg == ALG_TKIP)
845 idx = ath_reserve_key_cache_slot_tkip(sc);
846 else
847 idx = ath_reserve_key_cache_slot(sc);
848 if (idx < 0)
849 return -EIO; /* no free key cache entries */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700850 }
851
852 if (key->alg == ALG_TKIP)
Jouni Malinen6ace2892008-12-17 13:32:17 +0200853 ret = ath_setkey_tkip(sc, idx, key->key, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700854 else
Jouni Malinen6ace2892008-12-17 13:32:17 +0200855 ret = ath_keyset(sc, idx, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700856
857 if (!ret)
858 return -EIO;
859
Jouni Malinen6ace2892008-12-17 13:32:17 +0200860 set_bit(idx, sc->sc_keymap);
861 if (key->alg == ALG_TKIP) {
862 set_bit(idx + 64, sc->sc_keymap);
863 if (sc->sc_splitmic) {
864 set_bit(idx + 32, sc->sc_keymap);
865 set_bit(idx + 64 + 32, sc->sc_keymap);
866 }
867 }
868
869 return idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700870}
871
872static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
873{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200874 ath9k_hw_keyreset(sc->sc_ah, key->hw_key_idx);
875 if (key->hw_key_idx < IEEE80211_WEP_NKID)
876 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700877
Jouni Malinen6ace2892008-12-17 13:32:17 +0200878 clear_bit(key->hw_key_idx, sc->sc_keymap);
879 if (key->alg != ALG_TKIP)
880 return;
881
882 clear_bit(key->hw_key_idx + 64, sc->sc_keymap);
883 if (sc->sc_splitmic) {
884 clear_bit(key->hw_key_idx + 32, sc->sc_keymap);
885 clear_bit(key->hw_key_idx + 64 + 32, sc->sc_keymap);
886 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700887}
888
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200889static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700890{
Sujith60653672008-08-14 13:28:02 +0530891#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
892#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700893
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200894 ht_info->ht_supported = true;
895 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
896 IEEE80211_HT_CAP_SM_PS |
897 IEEE80211_HT_CAP_SGI_40 |
898 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700899
Sujith60653672008-08-14 13:28:02 +0530900 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
901 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200902 /* set up supported mcs set */
903 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
904 ht_info->mcs.rx_mask[0] = 0xff;
905 ht_info->mcs.rx_mask[1] = 0xff;
906 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700907}
908
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530909static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530910 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530911 struct ieee80211_bss_conf *bss_conf)
912{
Sujith5640b082008-10-29 10:16:06 +0530913 struct ath_vap *avp = (void *)vif->drv_priv;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530914
915 if (bss_conf->assoc) {
Sujith094d05d2008-12-12 11:57:43 +0530916 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d, bssid: %pM\n",
917 bss_conf->aid, sc->sc_curbssid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530918
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530919 /* New association, store aid */
Colin McCabed97809d2008-12-01 13:38:55 -0800920 if (avp->av_opmode == NL80211_IFTYPE_STATION) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530921 sc->sc_curaid = bss_conf->aid;
922 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
923 sc->sc_curaid);
924 }
925
926 /* Configure the beacon */
927 ath_beacon_config(sc, 0);
928 sc->sc_flags |= SC_OP_BEACONS;
929
930 /* Reset rssi stats */
931 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
932 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
933 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
934 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
935
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700936 /* Start ANI */
937 mod_timer(&sc->sc_ani.timer,
938 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
939
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530940 } else {
Sujith04bd4632008-11-28 22:18:05 +0530941 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530942 sc->sc_curaid = 0;
943 }
944}
945
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530946/********************************/
947/* LED functions */
948/********************************/
949
950static void ath_led_brightness(struct led_classdev *led_cdev,
951 enum led_brightness brightness)
952{
953 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
954 struct ath_softc *sc = led->sc;
955
956 switch (brightness) {
957 case LED_OFF:
958 if (led->led_type == ATH_LED_ASSOC ||
959 led->led_type == ATH_LED_RADIO)
960 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
961 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
962 (led->led_type == ATH_LED_RADIO) ? 1 :
963 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
964 break;
965 case LED_FULL:
966 if (led->led_type == ATH_LED_ASSOC)
967 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
968 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
969 break;
970 default:
971 break;
972 }
973}
974
975static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
976 char *trigger)
977{
978 int ret;
979
980 led->sc = sc;
981 led->led_cdev.name = led->name;
982 led->led_cdev.default_trigger = trigger;
983 led->led_cdev.brightness_set = ath_led_brightness;
984
985 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
986 if (ret)
987 DPRINTF(sc, ATH_DBG_FATAL,
988 "Failed to register led:%s", led->name);
989 else
990 led->registered = 1;
991 return ret;
992}
993
994static void ath_unregister_led(struct ath_led *led)
995{
996 if (led->registered) {
997 led_classdev_unregister(&led->led_cdev);
998 led->registered = 0;
999 }
1000}
1001
1002static void ath_deinit_leds(struct ath_softc *sc)
1003{
1004 ath_unregister_led(&sc->assoc_led);
1005 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
1006 ath_unregister_led(&sc->tx_led);
1007 ath_unregister_led(&sc->rx_led);
1008 ath_unregister_led(&sc->radio_led);
1009 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1010}
1011
1012static void ath_init_leds(struct ath_softc *sc)
1013{
1014 char *trigger;
1015 int ret;
1016
1017 /* Configure gpio 1 for output */
1018 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
1019 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1020 /* LED off, active low */
1021 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1022
1023 trigger = ieee80211_get_radio_led_name(sc->hw);
1024 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
1025 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
1026 ret = ath_register_led(sc, &sc->radio_led, trigger);
1027 sc->radio_led.led_type = ATH_LED_RADIO;
1028 if (ret)
1029 goto fail;
1030
1031 trigger = ieee80211_get_assoc_led_name(sc->hw);
1032 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
1033 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
1034 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1035 sc->assoc_led.led_type = ATH_LED_ASSOC;
1036 if (ret)
1037 goto fail;
1038
1039 trigger = ieee80211_get_tx_led_name(sc->hw);
1040 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
1041 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
1042 ret = ath_register_led(sc, &sc->tx_led, trigger);
1043 sc->tx_led.led_type = ATH_LED_TX;
1044 if (ret)
1045 goto fail;
1046
1047 trigger = ieee80211_get_rx_led_name(sc->hw);
1048 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
1049 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
1050 ret = ath_register_led(sc, &sc->rx_led, trigger);
1051 sc->rx_led.led_type = ATH_LED_RX;
1052 if (ret)
1053 goto fail;
1054
1055 return;
1056
1057fail:
1058 ath_deinit_leds(sc);
1059}
1060
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301061#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301062
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301063/*******************/
1064/* Rfkill */
1065/*******************/
1066
1067static void ath_radio_enable(struct ath_softc *sc)
1068{
1069 struct ath_hal *ah = sc->sc_ah;
1070 int status;
1071
1072 spin_lock_bh(&sc->sc_resetlock);
1073 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301074 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301075 sc->sc_tx_chainmask,
1076 sc->sc_rx_chainmask,
1077 sc->sc_ht_extprotspacing,
1078 false, &status)) {
1079 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301080 "Unable to reset channel %u (%uMhz) "
1081 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301082 ath9k_hw_mhz2ieee(ah,
1083 ah->ah_curchan->channel,
1084 ah->ah_curchan->channelFlags),
1085 ah->ah_curchan->channel,
1086 ah->ah_curchan->channelFlags, status);
1087 }
1088 spin_unlock_bh(&sc->sc_resetlock);
1089
1090 ath_update_txpow(sc);
1091 if (ath_startrecv(sc) != 0) {
1092 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301093 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301094 return;
1095 }
1096
1097 if (sc->sc_flags & SC_OP_BEACONS)
1098 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1099
1100 /* Re-Enable interrupts */
1101 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1102
1103 /* Enable LED */
1104 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
1105 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1106 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
1107
1108 ieee80211_wake_queues(sc->hw);
1109}
1110
1111static void ath_radio_disable(struct ath_softc *sc)
1112{
1113 struct ath_hal *ah = sc->sc_ah;
1114 int status;
1115
1116
1117 ieee80211_stop_queues(sc->hw);
1118
1119 /* Disable LED */
1120 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
1121 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
1122
1123 /* Disable interrupts */
1124 ath9k_hw_set_interrupts(ah, 0);
1125
1126 ath_draintxq(sc, false); /* clear pending tx frames */
1127 ath_stoprecv(sc); /* turn off frame recv */
1128 ath_flushrecv(sc); /* flush recv queue */
1129
1130 spin_lock_bh(&sc->sc_resetlock);
1131 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301132 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301133 sc->sc_tx_chainmask,
1134 sc->sc_rx_chainmask,
1135 sc->sc_ht_extprotspacing,
1136 false, &status)) {
1137 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301138 "Unable to reset channel %u (%uMhz) "
1139 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301140 ath9k_hw_mhz2ieee(ah,
1141 ah->ah_curchan->channel,
1142 ah->ah_curchan->channelFlags),
1143 ah->ah_curchan->channel,
1144 ah->ah_curchan->channelFlags, status);
1145 }
1146 spin_unlock_bh(&sc->sc_resetlock);
1147
1148 ath9k_hw_phy_disable(ah);
1149 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1150}
1151
1152static bool ath_is_rfkill_set(struct ath_softc *sc)
1153{
1154 struct ath_hal *ah = sc->sc_ah;
1155
1156 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
1157 ah->ah_rfkill_polarity;
1158}
1159
1160/* h/w rfkill poll function */
1161static void ath_rfkill_poll(struct work_struct *work)
1162{
1163 struct ath_softc *sc = container_of(work, struct ath_softc,
1164 rf_kill.rfkill_poll.work);
1165 bool radio_on;
1166
1167 if (sc->sc_flags & SC_OP_INVALID)
1168 return;
1169
1170 radio_on = !ath_is_rfkill_set(sc);
1171
1172 /*
1173 * enable/disable radio only when there is a
1174 * state change in RF switch
1175 */
1176 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
1177 enum rfkill_state state;
1178
1179 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
1180 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
1181 : RFKILL_STATE_HARD_BLOCKED;
1182 } else if (radio_on) {
1183 ath_radio_enable(sc);
1184 state = RFKILL_STATE_UNBLOCKED;
1185 } else {
1186 ath_radio_disable(sc);
1187 state = RFKILL_STATE_HARD_BLOCKED;
1188 }
1189
1190 if (state == RFKILL_STATE_HARD_BLOCKED)
1191 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
1192 else
1193 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
1194
1195 rfkill_force_state(sc->rf_kill.rfkill, state);
1196 }
1197
1198 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
1199 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
1200}
1201
1202/* s/w rfkill handler */
1203static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
1204{
1205 struct ath_softc *sc = data;
1206
1207 switch (state) {
1208 case RFKILL_STATE_SOFT_BLOCKED:
1209 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
1210 SC_OP_RFKILL_SW_BLOCKED)))
1211 ath_radio_disable(sc);
1212 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
1213 return 0;
1214 case RFKILL_STATE_UNBLOCKED:
1215 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
1216 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
1217 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
1218 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
Sujith04bd4632008-11-28 22:18:05 +05301219 "radio as it is disabled by h/w\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301220 return -EPERM;
1221 }
1222 ath_radio_enable(sc);
1223 }
1224 return 0;
1225 default:
1226 return -EINVAL;
1227 }
1228}
1229
1230/* Init s/w rfkill */
1231static int ath_init_sw_rfkill(struct ath_softc *sc)
1232{
1233 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
1234 RFKILL_TYPE_WLAN);
1235 if (!sc->rf_kill.rfkill) {
1236 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
1237 return -ENOMEM;
1238 }
1239
1240 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
1241 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
1242 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
1243 sc->rf_kill.rfkill->data = sc;
1244 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
1245 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
1246 sc->rf_kill.rfkill->user_claim_unsupported = 1;
1247
1248 return 0;
1249}
1250
1251/* Deinitialize rfkill */
1252static void ath_deinit_rfkill(struct ath_softc *sc)
1253{
1254 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1255 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1256
1257 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
1258 rfkill_unregister(sc->rf_kill.rfkill);
1259 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
1260 sc->rf_kill.rfkill = NULL;
1261 }
1262}
Sujith9c84b792008-10-29 10:17:13 +05301263
1264static int ath_start_rfkill_poll(struct ath_softc *sc)
1265{
1266 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1267 queue_delayed_work(sc->hw->workqueue,
1268 &sc->rf_kill.rfkill_poll, 0);
1269
1270 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1271 if (rfkill_register(sc->rf_kill.rfkill)) {
1272 DPRINTF(sc, ATH_DBG_FATAL,
1273 "Unable to register rfkill\n");
1274 rfkill_free(sc->rf_kill.rfkill);
1275
1276 /* Deinitialize the device */
Senthil Balasubramanian306efdd2008-11-13 18:00:37 +05301277 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05301278 if (sc->pdev->irq)
1279 free_irq(sc->pdev->irq, sc);
Sujith9c84b792008-10-29 10:17:13 +05301280 pci_iounmap(sc->pdev, sc->mem);
1281 pci_release_region(sc->pdev, 0);
1282 pci_disable_device(sc->pdev);
Sujith9757d552008-11-04 18:25:27 +05301283 ieee80211_free_hw(sc->hw);
Sujith9c84b792008-10-29 10:17:13 +05301284 return -EIO;
1285 } else {
1286 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1287 }
1288 }
1289
1290 return 0;
1291}
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301292#endif /* CONFIG_RFKILL */
1293
Sujith9c84b792008-10-29 10:17:13 +05301294static void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301295{
1296 struct ieee80211_hw *hw = sc->hw;
Sujith9c84b792008-10-29 10:17:13 +05301297 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301298
Sujith04bd4632008-11-28 22:18:05 +05301299 DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301300
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301301#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301302 ath_deinit_rfkill(sc);
1303#endif
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301304 ath_deinit_leds(sc);
1305
1306 ieee80211_unregister_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301307 ath_rx_cleanup(sc);
1308 ath_tx_cleanup(sc);
1309
Sujith9c84b792008-10-29 10:17:13 +05301310 tasklet_kill(&sc->intr_tq);
1311 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301312
Sujith9c84b792008-10-29 10:17:13 +05301313 if (!(sc->sc_flags & SC_OP_INVALID))
1314 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301315
Sujith9c84b792008-10-29 10:17:13 +05301316 /* cleanup tx queues */
1317 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1318 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301319 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith9c84b792008-10-29 10:17:13 +05301320
1321 ath9k_hw_detach(sc->sc_ah);
Sujith826d2682008-11-28 22:20:23 +05301322 ath9k_exit_debug(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301323}
1324
Sujithff37e332008-11-24 12:07:55 +05301325static int ath_init(u16 devid, struct ath_softc *sc)
1326{
1327 struct ath_hal *ah = NULL;
1328 int status;
1329 int error = 0, i;
1330 int csz = 0;
1331
1332 /* XXX: hardware will not be ready until ath_open() being called */
1333 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301334
Sujith826d2682008-11-28 22:20:23 +05301335 if (ath9k_init_debug(sc) < 0)
1336 printk(KERN_ERR "Unable to create debugfs files\n");
Sujithff37e332008-11-24 12:07:55 +05301337
1338 spin_lock_init(&sc->sc_resetlock);
Sujithaa33de02008-12-18 11:40:16 +05301339 mutex_init(&sc->mutex);
Sujithff37e332008-11-24 12:07:55 +05301340 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1341 tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1342 (unsigned long)sc);
1343
1344 /*
1345 * Cache line size is used to size and align various
1346 * structures used to communicate with the hardware.
1347 */
1348 bus_read_cachesize(sc, &csz);
1349 /* XXX assert csz is non-zero */
1350 sc->sc_cachelsz = csz << 2; /* convert to bytes */
1351
1352 ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1353 if (ah == NULL) {
1354 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301355 "Unable to attach hardware; HAL status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301356 error = -ENXIO;
1357 goto bad;
1358 }
1359 sc->sc_ah = ah;
1360
1361 /* Get the hardware key cache size. */
1362 sc->sc_keymax = ah->ah_caps.keycache_size;
1363 if (sc->sc_keymax > ATH_KEYMAX) {
1364 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05301365 "Warning, using only %u entries in %u key cache\n",
1366 ATH_KEYMAX, sc->sc_keymax);
Sujithff37e332008-11-24 12:07:55 +05301367 sc->sc_keymax = ATH_KEYMAX;
1368 }
1369
1370 /*
1371 * Reset the key cache since some parts do not
1372 * reset the contents on initial power up.
1373 */
1374 for (i = 0; i < sc->sc_keymax; i++)
1375 ath9k_hw_keyreset(ah, (u16) i);
Sujithff37e332008-11-24 12:07:55 +05301376
1377 /* Collect the channel list using the default country code */
1378
1379 error = ath_setup_channels(sc);
1380 if (error)
1381 goto bad;
1382
1383 /* default to MONITOR mode */
Colin McCabed97809d2008-12-01 13:38:55 -08001384 sc->sc_ah->ah_opmode = NL80211_IFTYPE_MONITOR;
1385
Sujithff37e332008-11-24 12:07:55 +05301386
1387 /* Setup rate tables */
1388
1389 ath_rate_attach(sc);
1390 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1391 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1392
1393 /*
1394 * Allocate hardware transmit queues: one queue for
1395 * beacon frames and one data queue for each QoS
1396 * priority. Note that the hal handles reseting
1397 * these queues at the needed time.
1398 */
Sujithb77f4832008-12-07 21:44:03 +05301399 sc->beacon.beaconq = ath_beaconq_setup(ah);
1400 if (sc->beacon.beaconq == -1) {
Sujithff37e332008-11-24 12:07:55 +05301401 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301402 "Unable to setup a beacon xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301403 error = -EIO;
1404 goto bad2;
1405 }
Sujithb77f4832008-12-07 21:44:03 +05301406 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1407 if (sc->beacon.cabq == NULL) {
Sujithff37e332008-11-24 12:07:55 +05301408 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301409 "Unable to setup CAB xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301410 error = -EIO;
1411 goto bad2;
1412 }
1413
1414 sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1415 ath_cabq_update(sc);
1416
Sujithb77f4832008-12-07 21:44:03 +05301417 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
1418 sc->tx.hwq_map[i] = -1;
Sujithff37e332008-11-24 12:07:55 +05301419
1420 /* Setup data queues */
1421 /* NB: ensure BK queue is the lowest priority h/w queue */
1422 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1423 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301424 "Unable to setup xmit queue for BK traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301425 error = -EIO;
1426 goto bad2;
1427 }
1428
1429 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1430 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301431 "Unable to setup xmit queue for BE traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301432 error = -EIO;
1433 goto bad2;
1434 }
1435 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1436 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301437 "Unable to setup xmit queue for VI traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301438 error = -EIO;
1439 goto bad2;
1440 }
1441 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1442 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301443 "Unable to setup xmit queue for VO traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301444 error = -EIO;
1445 goto bad2;
1446 }
1447
1448 /* Initializes the noise floor to a reasonable default value.
1449 * Later on this will be updated during ANI processing. */
1450
1451 sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1452 setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc);
1453
1454 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1455 ATH9K_CIPHER_TKIP, NULL)) {
1456 /*
1457 * Whether we should enable h/w TKIP MIC.
1458 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1459 * report WMM capable, so it's always safe to turn on
1460 * TKIP MIC in this case.
1461 */
1462 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1463 0, 1, NULL);
1464 }
1465
1466 /*
1467 * Check whether the separate key cache entries
1468 * are required to handle both tx+rx MIC keys.
1469 * With split mic keys the number of stations is limited
1470 * to 27 otherwise 59.
1471 */
1472 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1473 ATH9K_CIPHER_TKIP, NULL)
1474 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1475 ATH9K_CIPHER_MIC, NULL)
1476 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1477 0, NULL))
1478 sc->sc_splitmic = 1;
1479
1480 /* turn on mcast key search if possible */
1481 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1482 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1483 1, NULL);
1484
1485 sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1486 sc->sc_config.txpowlimit_override = 0;
1487
1488 /* 11n Capabilities */
1489 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1490 sc->sc_flags |= SC_OP_TXAGGR;
1491 sc->sc_flags |= SC_OP_RXAGGR;
1492 }
1493
1494 sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1495 sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1496
1497 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
Sujithb77f4832008-12-07 21:44:03 +05301498 sc->rx.defant = ath9k_hw_getdefantenna(ah);
Sujithff37e332008-11-24 12:07:55 +05301499
1500 ath9k_hw_getmac(ah, sc->sc_myaddr);
1501 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1502 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1503 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1504 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1505 }
1506
Sujithb77f4832008-12-07 21:44:03 +05301507 sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
Sujithff37e332008-11-24 12:07:55 +05301508
1509 /* initialize beacon slots */
Sujithb77f4832008-12-07 21:44:03 +05301510 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++)
1511 sc->beacon.bslot[i] = ATH_IF_ID_ANY;
Sujithff37e332008-11-24 12:07:55 +05301512
1513 /* save MISC configurations */
1514 sc->sc_config.swBeaconProcess = 1;
1515
Sujithff37e332008-11-24 12:07:55 +05301516 /* setup channels and rates */
1517
1518 sc->sbands[IEEE80211_BAND_2GHZ].channels =
1519 sc->channels[IEEE80211_BAND_2GHZ];
1520 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1521 sc->rates[IEEE80211_BAND_2GHZ];
1522 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
1523
1524 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
1525 sc->sbands[IEEE80211_BAND_5GHZ].channels =
1526 sc->channels[IEEE80211_BAND_5GHZ];
1527 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1528 sc->rates[IEEE80211_BAND_5GHZ];
1529 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
1530 }
1531
1532 return 0;
1533bad2:
1534 /* cleanup tx queues */
1535 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1536 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301537 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujithff37e332008-11-24 12:07:55 +05301538bad:
1539 if (ah)
1540 ath9k_hw_detach(ah);
1541
1542 return error;
1543}
1544
Sujith9c84b792008-10-29 10:17:13 +05301545static int ath_attach(u16 devid, struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301546{
1547 struct ieee80211_hw *hw = sc->hw;
1548 int error = 0;
1549
Sujith04bd4632008-11-28 22:18:05 +05301550 DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301551
1552 error = ath_init(devid, sc);
1553 if (error != 0)
1554 return error;
1555
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301556 /* get mac address from hardware and set in mac80211 */
1557
1558 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
1559
Sujith9c84b792008-10-29 10:17:13 +05301560 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1561 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1562 IEEE80211_HW_SIGNAL_DBM |
1563 IEEE80211_HW_AMPDU_AGGREGATION;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301564
Sujith9c84b792008-10-29 10:17:13 +05301565 hw->wiphy->interface_modes =
1566 BIT(NL80211_IFTYPE_AP) |
1567 BIT(NL80211_IFTYPE_STATION) |
1568 BIT(NL80211_IFTYPE_ADHOC);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301569
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301570 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301571 hw->max_rates = 4;
1572 hw->max_rate_tries = ATH_11N_TXMAXTRY;
Sujith528f0c62008-10-29 10:14:26 +05301573 hw->sta_data_size = sizeof(struct ath_node);
Sujith5640b082008-10-29 10:16:06 +05301574 hw->vif_data_size = sizeof(struct ath_vap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301575
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301576 hw->rate_control_algorithm = "ath9k_rate_control";
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301577
Sujith9c84b792008-10-29 10:17:13 +05301578 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1579 setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
1580 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1581 setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
1582 }
1583
1584 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ];
1585 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1586 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1587 &sc->sbands[IEEE80211_BAND_5GHZ];
1588
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301589 /* initialize tx/rx engine */
1590 error = ath_tx_init(sc, ATH_TXBUF);
1591 if (error != 0)
1592 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301593
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301594 error = ath_rx_init(sc, ATH_RXBUF);
1595 if (error != 0)
1596 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301597
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301598#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301599 /* Initialze h/w Rfkill */
1600 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1601 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
1602
1603 /* Initialize s/w rfkill */
1604 if (ath_init_sw_rfkill(sc))
1605 goto detach;
1606#endif
1607
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301608 error = ieee80211_register_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301609
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301610 /* Initialize LED control */
1611 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301612
1613 return 0;
1614detach:
1615 ath_detach(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301616 return error;
1617}
1618
Sujithff37e332008-11-24 12:07:55 +05301619int ath_reset(struct ath_softc *sc, bool retry_tx)
1620{
1621 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguez030bb492008-12-23 15:58:37 -08001622 struct ieee80211_hw *hw = sc->hw;
Sujithff37e332008-11-24 12:07:55 +05301623 int status;
1624 int error = 0;
1625
1626 ath9k_hw_set_interrupts(ah, 0);
1627 ath_draintxq(sc, retry_tx);
1628 ath_stoprecv(sc);
1629 ath_flushrecv(sc);
1630
1631 spin_lock_bh(&sc->sc_resetlock);
1632 if (!ath9k_hw_reset(ah, sc->sc_ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301633 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301634 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1635 sc->sc_ht_extprotspacing, false, &status)) {
1636 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301637 "Unable to reset hardware; hal status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301638 error = -EIO;
1639 }
1640 spin_unlock_bh(&sc->sc_resetlock);
1641
1642 if (ath_startrecv(sc) != 0)
Sujith04bd4632008-11-28 22:18:05 +05301643 DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301644
1645 /*
1646 * We may be doing a reset in response to a request
1647 * that changes the channel so update any state that
1648 * might change as a result.
1649 */
Luis R. Rodriguez030bb492008-12-23 15:58:37 -08001650 ath_setcurmode(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05301651
1652 ath_update_txpow(sc);
1653
1654 if (sc->sc_flags & SC_OP_BEACONS)
1655 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1656
1657 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1658
1659 if (retry_tx) {
1660 int i;
1661 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1662 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05301663 spin_lock_bh(&sc->tx.txq[i].axq_lock);
1664 ath_txq_schedule(sc, &sc->tx.txq[i]);
1665 spin_unlock_bh(&sc->tx.txq[i].axq_lock);
Sujithff37e332008-11-24 12:07:55 +05301666 }
1667 }
1668 }
1669
1670 return error;
1671}
1672
1673/*
1674 * This function will allocate both the DMA descriptor structure, and the
1675 * buffers it contains. These are used to contain the descriptors used
1676 * by the system.
1677*/
1678int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1679 struct list_head *head, const char *name,
1680 int nbuf, int ndesc)
1681{
1682#define DS2PHYS(_dd, _ds) \
1683 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1684#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1685#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1686
1687 struct ath_desc *ds;
1688 struct ath_buf *bf;
1689 int i, bsize, error;
1690
Sujith04bd4632008-11-28 22:18:05 +05301691 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
1692 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301693
1694 /* ath_desc must be a multiple of DWORDs */
1695 if ((sizeof(struct ath_desc) % 4) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05301696 DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301697 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1698 error = -ENOMEM;
1699 goto fail;
1700 }
1701
1702 dd->dd_name = name;
1703 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1704
1705 /*
1706 * Need additional DMA memory because we can't use
1707 * descriptors that cross the 4K page boundary. Assume
1708 * one skipped descriptor per 4K page.
1709 */
1710 if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1711 u32 ndesc_skipped =
1712 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1713 u32 dma_len;
1714
1715 while (ndesc_skipped) {
1716 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1717 dd->dd_desc_len += dma_len;
1718
1719 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1720 };
1721 }
1722
1723 /* allocate descriptors */
1724 dd->dd_desc = pci_alloc_consistent(sc->pdev,
1725 dd->dd_desc_len,
1726 &dd->dd_desc_paddr);
1727 if (dd->dd_desc == NULL) {
1728 error = -ENOMEM;
1729 goto fail;
1730 }
1731 ds = dd->dd_desc;
Sujith04bd4632008-11-28 22:18:05 +05301732 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
1733 dd->dd_name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301734 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1735
1736 /* allocate buffers */
1737 bsize = sizeof(struct ath_buf) * nbuf;
1738 bf = kmalloc(bsize, GFP_KERNEL);
1739 if (bf == NULL) {
1740 error = -ENOMEM;
1741 goto fail2;
1742 }
1743 memset(bf, 0, bsize);
1744 dd->dd_bufptr = bf;
1745
1746 INIT_LIST_HEAD(head);
1747 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1748 bf->bf_desc = ds;
1749 bf->bf_daddr = DS2PHYS(dd, ds);
1750
1751 if (!(sc->sc_ah->ah_caps.hw_caps &
1752 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1753 /*
1754 * Skip descriptor addresses which can cause 4KB
1755 * boundary crossing (addr + length) with a 32 dword
1756 * descriptor fetch.
1757 */
1758 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1759 ASSERT((caddr_t) bf->bf_desc <
1760 ((caddr_t) dd->dd_desc +
1761 dd->dd_desc_len));
1762
1763 ds += ndesc;
1764 bf->bf_desc = ds;
1765 bf->bf_daddr = DS2PHYS(dd, ds);
1766 }
1767 }
1768 list_add_tail(&bf->list, head);
1769 }
1770 return 0;
1771fail2:
1772 pci_free_consistent(sc->pdev,
1773 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1774fail:
1775 memset(dd, 0, sizeof(*dd));
1776 return error;
1777#undef ATH_DESC_4KB_BOUND_CHECK
1778#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1779#undef DS2PHYS
1780}
1781
1782void ath_descdma_cleanup(struct ath_softc *sc,
1783 struct ath_descdma *dd,
1784 struct list_head *head)
1785{
1786 pci_free_consistent(sc->pdev,
1787 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1788
1789 INIT_LIST_HEAD(head);
1790 kfree(dd->dd_bufptr);
1791 memset(dd, 0, sizeof(*dd));
1792}
1793
1794int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1795{
1796 int qnum;
1797
1798 switch (queue) {
1799 case 0:
Sujithb77f4832008-12-07 21:44:03 +05301800 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO];
Sujithff37e332008-11-24 12:07:55 +05301801 break;
1802 case 1:
Sujithb77f4832008-12-07 21:44:03 +05301803 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI];
Sujithff37e332008-11-24 12:07:55 +05301804 break;
1805 case 2:
Sujithb77f4832008-12-07 21:44:03 +05301806 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301807 break;
1808 case 3:
Sujithb77f4832008-12-07 21:44:03 +05301809 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK];
Sujithff37e332008-11-24 12:07:55 +05301810 break;
1811 default:
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 }
1815
1816 return qnum;
1817}
1818
1819int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1820{
1821 int qnum;
1822
1823 switch (queue) {
1824 case ATH9K_WME_AC_VO:
1825 qnum = 0;
1826 break;
1827 case ATH9K_WME_AC_VI:
1828 qnum = 1;
1829 break;
1830 case ATH9K_WME_AC_BE:
1831 qnum = 2;
1832 break;
1833 case ATH9K_WME_AC_BK:
1834 qnum = 3;
1835 break;
1836 default:
1837 qnum = -1;
1838 break;
1839 }
1840
1841 return qnum;
1842}
1843
1844/**********************/
1845/* mac80211 callbacks */
1846/**********************/
1847
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001848static int ath9k_start(struct ieee80211_hw *hw)
1849{
1850 struct ath_softc *sc = hw->priv;
1851 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05301852 struct ath9k_channel *init_channel;
1853 int error = 0, pos, status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001854
Sujith04bd4632008-11-28 22:18:05 +05301855 DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with "
1856 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001857
1858 /* setup initial channel */
1859
1860 pos = ath_get_channel(sc, curchan);
1861 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05301862 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", curchan->center_freq);
Sujith9c84b792008-10-29 10:17:13 +05301863 error = -EINVAL;
Sujithff37e332008-11-24 12:07:55 +05301864 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001865 }
1866
Sujith99405f92008-11-24 12:08:35 +05301867 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001868 sc->sc_ah->ah_channels[pos].chanmode =
1869 (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A;
Sujithff37e332008-11-24 12:07:55 +05301870 init_channel = &sc->sc_ah->ah_channels[pos];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001871
Sujithff37e332008-11-24 12:07:55 +05301872 /* Reset SERDES registers */
1873 ath9k_hw_configpcipowersave(sc->sc_ah, 0);
1874
1875 /*
1876 * The basic interface to setting the hardware in a good
1877 * state is ``reset''. On return the hardware is known to
1878 * be powered up and with interrupts disabled. This must
1879 * be followed by initialization of the appropriate bits
1880 * and then setup of the interrupt mask.
1881 */
1882 spin_lock_bh(&sc->sc_resetlock);
1883 if (!ath9k_hw_reset(sc->sc_ah, init_channel,
Sujith99405f92008-11-24 12:08:35 +05301884 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301885 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1886 sc->sc_ht_extprotspacing, false, &status)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001887 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301888 "Unable to reset hardware; hal status %u "
1889 "(freq %u flags 0x%x)\n", status,
Sujithff37e332008-11-24 12:07:55 +05301890 init_channel->channel, init_channel->channelFlags);
1891 error = -EIO;
1892 spin_unlock_bh(&sc->sc_resetlock);
1893 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001894 }
Sujithff37e332008-11-24 12:07:55 +05301895 spin_unlock_bh(&sc->sc_resetlock);
1896
1897 /*
1898 * This is needed only to setup initial state
1899 * but it's best done after a reset.
1900 */
1901 ath_update_txpow(sc);
1902
1903 /*
1904 * Setup the hardware after reset:
1905 * The receive engine is set going.
1906 * Frame transmit is handled entirely
1907 * in the frame output path; there's nothing to do
1908 * here except setup the interrupt mask.
1909 */
1910 if (ath_startrecv(sc) != 0) {
1911 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301912 "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301913 error = -EIO;
1914 goto error;
1915 }
1916
1917 /* Setup our intr mask. */
1918 sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
1919 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
1920 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
1921
1922 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
1923 sc->sc_imask |= ATH9K_INT_GTT;
1924
1925 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
1926 sc->sc_imask |= ATH9K_INT_CST;
1927
1928 /*
1929 * Enable MIB interrupts when there are hardware phy counters.
1930 * Note we only do this (at the moment) for station mode.
1931 */
1932 if (ath9k_hw_phycounters(sc->sc_ah) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001933 ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) ||
1934 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC)))
Sujithff37e332008-11-24 12:07:55 +05301935 sc->sc_imask |= ATH9K_INT_MIB;
1936 /*
1937 * Some hardware processes the TIM IE and fires an
1938 * interrupt when the TIM bit is set. For hardware
1939 * that does, if not overridden by configuration,
1940 * enable the TIM interrupt when operating as station.
1941 */
1942 if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001943 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) &&
Sujithff37e332008-11-24 12:07:55 +05301944 !sc->sc_config.swBeaconProcess)
1945 sc->sc_imask |= ATH9K_INT_TIM;
1946
Luis R. Rodriguez030bb492008-12-23 15:58:37 -08001947 ath_setcurmode(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05301948
1949 sc->sc_flags &= ~SC_OP_INVALID;
1950
1951 /* Disable BMISS interrupt when we're not associated */
1952 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1953 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1954
1955 ieee80211_wake_queues(sc->hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001956
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301957#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301958 error = ath_start_rfkill_poll(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301959#endif
1960
Sujithff37e332008-11-24 12:07:55 +05301961error:
Sujith9c84b792008-10-29 10:17:13 +05301962 return error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001963}
1964
1965static int ath9k_tx(struct ieee80211_hw *hw,
1966 struct sk_buff *skb)
1967{
Jouni Malinen147583c2008-08-11 14:01:50 +03001968 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Sujith528f0c62008-10-29 10:14:26 +05301969 struct ath_softc *sc = hw->priv;
1970 struct ath_tx_control txctl;
1971 int hdrlen, padsize;
1972
1973 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03001974
1975 /*
1976 * As a temporary workaround, assign seq# here; this will likely need
1977 * to be cleaned up to work better with Beacon transmission and virtual
1978 * BSSes.
1979 */
1980 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1981 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1982 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Sujithb77f4832008-12-07 21:44:03 +05301983 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +03001984 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +05301985 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +03001986 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001987
1988 /* Add the padding after the header if this is not already done */
1989 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1990 if (hdrlen & 3) {
1991 padsize = hdrlen % 4;
1992 if (skb_headroom(skb) < padsize)
1993 return -1;
1994 skb_push(skb, padsize);
1995 memmove(skb->data, skb->data + padsize, hdrlen);
1996 }
1997
Sujith528f0c62008-10-29 10:14:26 +05301998 /* Check if a tx queue is available */
1999
2000 txctl.txq = ath_test_get_txq(sc, skb);
2001 if (!txctl.txq)
2002 goto exit;
2003
Sujith04bd4632008-11-28 22:18:05 +05302004 DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002005
Sujith528f0c62008-10-29 10:14:26 +05302006 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05302007 DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05302008 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002009 }
2010
2011 return 0;
Sujith528f0c62008-10-29 10:14:26 +05302012exit:
2013 dev_kfree_skb_any(skb);
2014 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002015}
2016
2017static void ath9k_stop(struct ieee80211_hw *hw)
2018{
2019 struct ath_softc *sc = hw->priv;
Sujith9c84b792008-10-29 10:17:13 +05302020
2021 if (sc->sc_flags & SC_OP_INVALID) {
Sujith04bd4632008-11-28 22:18:05 +05302022 DPRINTF(sc, ATH_DBG_ANY, "Device not present\n");
Sujith9c84b792008-10-29 10:17:13 +05302023 return;
2024 }
2025
Sujith04bd4632008-11-28 22:18:05 +05302026 DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n");
Sujithff37e332008-11-24 12:07:55 +05302027
2028 ieee80211_stop_queues(sc->hw);
2029
2030 /* make sure h/w will not generate any interrupt
2031 * before setting the invalid flag. */
2032 ath9k_hw_set_interrupts(sc->sc_ah, 0);
2033
2034 if (!(sc->sc_flags & SC_OP_INVALID)) {
2035 ath_draintxq(sc, false);
2036 ath_stoprecv(sc);
2037 ath9k_hw_phy_disable(sc->sc_ah);
2038 } else
Sujithb77f4832008-12-07 21:44:03 +05302039 sc->rx.rxlink = NULL;
Sujithff37e332008-11-24 12:07:55 +05302040
2041#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
2042 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2043 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2044#endif
2045 /* disable HAL and put h/w to sleep */
2046 ath9k_hw_disable(sc->sc_ah);
2047 ath9k_hw_configpcipowersave(sc->sc_ah, 1);
2048
2049 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002050
Sujith04bd4632008-11-28 22:18:05 +05302051 DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002052}
2053
2054static int ath9k_add_interface(struct ieee80211_hw *hw,
2055 struct ieee80211_if_init_conf *conf)
2056{
2057 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302058 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08002059 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002060
2061 /* Support only vap for now */
2062
2063 if (sc->sc_nvaps)
2064 return -ENOBUFS;
2065
2066 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002067 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002068 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002069 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002070 case NL80211_IFTYPE_ADHOC:
Colin McCabed97809d2008-12-01 13:38:55 -08002071 ic_opmode = NL80211_IFTYPE_ADHOC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002072 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002073 case NL80211_IFTYPE_AP:
Colin McCabed97809d2008-12-01 13:38:55 -08002074 ic_opmode = NL80211_IFTYPE_AP;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002075 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002076 default:
2077 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302078 "Interface type %d not yet supported\n", conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002079 return -EOPNOTSUPP;
2080 }
2081
Sujith04bd4632008-11-28 22:18:05 +05302082 DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002083
Sujith5640b082008-10-29 10:16:06 +05302084 /* Set the VAP opmode */
2085 avp->av_opmode = ic_opmode;
2086 avp->av_bslot = -1;
2087
Colin McCabed97809d2008-12-01 13:38:55 -08002088 if (ic_opmode == NL80211_IFTYPE_AP)
Sujith5640b082008-10-29 10:16:06 +05302089 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2090
2091 sc->sc_vaps[0] = conf->vif;
2092 sc->sc_nvaps++;
2093
2094 /* Set the device opmode */
2095 sc->sc_ah->ah_opmode = ic_opmode;
2096
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002097 if (conf->type == NL80211_IFTYPE_AP) {
2098 /* TODO: is this a suitable place to start ANI for AP mode? */
2099 /* Start ANI */
2100 mod_timer(&sc->sc_ani.timer,
2101 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
2102 }
2103
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002104 return 0;
2105}
2106
2107static void ath9k_remove_interface(struct ieee80211_hw *hw,
2108 struct ieee80211_if_init_conf *conf)
2109{
2110 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302111 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002112
Sujith04bd4632008-11-28 22:18:05 +05302113 DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002114
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002115 /* Stop ANI */
2116 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002117
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002118 /* Reclaim beacon resources */
Colin McCabed97809d2008-12-01 13:38:55 -08002119 if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP ||
2120 sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) {
Sujithb77f4832008-12-07 21:44:03 +05302121 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002122 ath_beacon_return(sc, avp);
2123 }
2124
Sujith672840a2008-08-11 14:05:08 +05302125 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002126
Sujith5640b082008-10-29 10:16:06 +05302127 sc->sc_vaps[0] = NULL;
2128 sc->sc_nvaps--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002129}
2130
Johannes Berge8975582008-10-09 12:18:51 +02002131static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002132{
2133 struct ath_softc *sc = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002134 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002135
Sujithaa33de02008-12-18 11:40:16 +05302136 mutex_lock(&sc->mutex);
Sujith094d05d2008-12-12 11:57:43 +05302137 if (changed & (IEEE80211_CONF_CHANGE_CHANNEL |
2138 IEEE80211_CONF_CHANGE_HT)) {
Sujith99405f92008-11-24 12:08:35 +05302139 struct ieee80211_channel *curchan = hw->conf.channel;
2140 int pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002141
Sujith04bd4632008-11-28 22:18:05 +05302142 DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2143 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002144
Sujith99405f92008-11-24 12:08:35 +05302145 pos = ath_get_channel(sc, curchan);
2146 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05302147 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n",
2148 curchan->center_freq);
Sujithaa33de02008-12-18 11:40:16 +05302149 mutex_unlock(&sc->mutex);
Sujith99405f92008-11-24 12:08:35 +05302150 return -EINVAL;
2151 }
2152
2153 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
2154 sc->sc_ah->ah_channels[pos].chanmode =
2155 (curchan->band == IEEE80211_BAND_2GHZ) ?
2156 CHANNEL_G : CHANNEL_A;
2157
Sujith094d05d2008-12-12 11:57:43 +05302158 if (conf->ht.enabled) {
2159 if (conf->ht.channel_type == NL80211_CHAN_HT40PLUS ||
2160 conf->ht.channel_type == NL80211_CHAN_HT40MINUS)
2161 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
Sujithe11602b2008-11-27 09:46:27 +05302162
2163 sc->sc_ah->ah_channels[pos].chanmode =
2164 ath_get_extchanmode(sc, curchan,
Sujith094d05d2008-12-12 11:57:43 +05302165 conf->ht.channel_type);
Sujithe11602b2008-11-27 09:46:27 +05302166 }
2167
Sujith86060f02009-01-07 14:25:29 +05302168 ath_update_chainmask(sc, conf->ht.enabled);
2169
Sujithe11602b2008-11-27 09:46:27 +05302170 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) {
Sujith04bd4632008-11-28 22:18:05 +05302171 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithaa33de02008-12-18 11:40:16 +05302172 mutex_unlock(&sc->mutex);
Sujithe11602b2008-11-27 09:46:27 +05302173 return -EINVAL;
2174 }
Sujith094d05d2008-12-12 11:57:43 +05302175 }
Sujith86b89ee2008-08-07 10:54:57 +05302176
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002177 if (changed & IEEE80211_CONF_CHANGE_POWER)
2178 sc->sc_config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002179
Sujithaa33de02008-12-18 11:40:16 +05302180 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002181 return 0;
2182}
2183
2184static int ath9k_config_interface(struct ieee80211_hw *hw,
2185 struct ieee80211_vif *vif,
2186 struct ieee80211_if_conf *conf)
2187{
2188 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002189 struct ath_hal *ah = sc->sc_ah;
Sujith5640b082008-10-29 10:16:06 +05302190 struct ath_vap *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002191 u32 rfilt = 0;
2192 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002193
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002194 /* TODO: Need to decide which hw opmode to use for multi-interface
2195 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02002196 if (vif->type == NL80211_IFTYPE_AP &&
Colin McCabed97809d2008-12-01 13:38:55 -08002197 ah->ah_opmode != NL80211_IFTYPE_AP) {
2198 ah->ah_opmode = NL80211_IFTYPE_STATION;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002199 ath9k_hw_setopmode(ah);
2200 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
2201 /* Request full reset to get hw opmode changed properly */
2202 sc->sc_flags |= SC_OP_FULL_RESET;
2203 }
2204
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002205 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
2206 !is_zero_ether_addr(conf->bssid)) {
2207 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002208 case NL80211_IFTYPE_STATION:
2209 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002210 /* Set BSSID */
2211 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
2212 sc->sc_curaid = 0;
2213 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
2214 sc->sc_curaid);
2215
2216 /* Set aggregation protection mode parameters */
2217 sc->sc_config.ath_aggr_prot = 0;
2218
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002219 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302220 "RX filter 0x%x bssid %pM aid 0x%x\n",
2221 rfilt, sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002222
2223 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05302224 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002225
2226 break;
2227 default:
2228 break;
2229 }
2230 }
2231
2232 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002233 ((vif->type == NL80211_IFTYPE_ADHOC) ||
2234 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002235 /*
2236 * Allocate and setup the beacon frame.
2237 *
2238 * Stop any previous beacon DMA. This may be
2239 * necessary, for example, when an ibss merge
2240 * causes reconfiguration; we may be called
2241 * with beacon transmission active.
2242 */
Sujithb77f4832008-12-07 21:44:03 +05302243 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002244
2245 error = ath_beacon_alloc(sc, 0);
2246 if (error != 0)
2247 return error;
2248
2249 ath_beacon_sync(sc, 0);
2250 }
2251
2252 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Colin McCabed97809d2008-12-01 13:38:55 -08002253 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002254 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2255 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2256 ath9k_hw_keysetmac(sc->sc_ah,
2257 (u16)i,
2258 sc->sc_curbssid);
2259 }
2260
2261 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02002262 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002263 ath_update_chainmask(sc, 0);
2264
2265 return 0;
2266}
2267
2268#define SUPPORTED_FILTERS \
2269 (FIF_PROMISC_IN_BSS | \
2270 FIF_ALLMULTI | \
2271 FIF_CONTROL | \
2272 FIF_OTHER_BSS | \
2273 FIF_BCN_PRBRESP_PROMISC | \
2274 FIF_FCSFAIL)
2275
Sujith7dcfdcd2008-08-11 14:03:13 +05302276/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002277static void ath9k_configure_filter(struct ieee80211_hw *hw,
2278 unsigned int changed_flags,
2279 unsigned int *total_flags,
2280 int mc_count,
2281 struct dev_mc_list *mclist)
2282{
2283 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05302284 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002285
2286 changed_flags &= SUPPORTED_FILTERS;
2287 *total_flags &= SUPPORTED_FILTERS;
2288
Sujithb77f4832008-12-07 21:44:03 +05302289 sc->rx.rxfilter = *total_flags;
Sujith7dcfdcd2008-08-11 14:03:13 +05302290 rfilt = ath_calcrxfilter(sc);
2291 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2292
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002293 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2294 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05302295 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002296 }
Sujith7dcfdcd2008-08-11 14:03:13 +05302297
Sujithb77f4832008-12-07 21:44:03 +05302298 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx.rxfilter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002299}
2300
2301static void ath9k_sta_notify(struct ieee80211_hw *hw,
2302 struct ieee80211_vif *vif,
2303 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002304 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002305{
2306 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002307
2308 switch (cmd) {
2309 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302310 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002311 break;
2312 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302313 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002314 break;
2315 default:
2316 break;
2317 }
2318}
2319
2320static int ath9k_conf_tx(struct ieee80211_hw *hw,
2321 u16 queue,
2322 const struct ieee80211_tx_queue_params *params)
2323{
2324 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05302325 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002326 int ret = 0, qnum;
2327
2328 if (queue >= WME_NUM_AC)
2329 return 0;
2330
2331 qi.tqi_aifs = params->aifs;
2332 qi.tqi_cwmin = params->cw_min;
2333 qi.tqi_cwmax = params->cw_max;
2334 qi.tqi_burstTime = params->txop;
2335 qnum = ath_get_hal_qnum(queue, sc);
2336
2337 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302338 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002339 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd4632008-11-28 22:18:05 +05302340 queue, qnum, params->aifs, params->cw_min,
2341 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002342
2343 ret = ath_txq_update(sc, qnum, &qi);
2344 if (ret)
Sujith04bd4632008-11-28 22:18:05 +05302345 DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002346
2347 return ret;
2348}
2349
2350static int ath9k_set_key(struct ieee80211_hw *hw,
2351 enum set_key_cmd cmd,
2352 const u8 *local_addr,
2353 const u8 *addr,
2354 struct ieee80211_key_conf *key)
2355{
2356 struct ath_softc *sc = hw->priv;
2357 int ret = 0;
2358
Sujith04bd4632008-11-28 22:18:05 +05302359 DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002360
2361 switch (cmd) {
2362 case SET_KEY:
2363 ret = ath_key_config(sc, addr, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02002364 if (ret >= 0) {
2365 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002366 /* push IV and Michael MIC generation to stack */
2367 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302368 if (key->alg == ALG_TKIP)
2369 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Jouni Malinen6ace2892008-12-17 13:32:17 +02002370 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002371 }
2372 break;
2373 case DISABLE_KEY:
2374 ath_key_delete(sc, key);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002375 break;
2376 default:
2377 ret = -EINVAL;
2378 }
2379
2380 return ret;
2381}
2382
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002383static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2384 struct ieee80211_vif *vif,
2385 struct ieee80211_bss_conf *bss_conf,
2386 u32 changed)
2387{
2388 struct ath_softc *sc = hw->priv;
2389
2390 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Sujith04bd4632008-11-28 22:18:05 +05302391 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002392 bss_conf->use_short_preamble);
2393 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302394 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002395 else
Sujith672840a2008-08-11 14:05:08 +05302396 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002397 }
2398
2399 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Sujith04bd4632008-11-28 22:18:05 +05302400 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002401 bss_conf->use_cts_prot);
2402 if (bss_conf->use_cts_prot &&
2403 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302404 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002405 else
Sujith672840a2008-08-11 14:05:08 +05302406 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002407 }
2408
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002409 if (changed & BSS_CHANGED_ASSOC) {
Sujith04bd4632008-11-28 22:18:05 +05302410 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302412 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002413 }
2414}
2415
2416static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2417{
2418 u64 tsf;
2419 struct ath_softc *sc = hw->priv;
2420 struct ath_hal *ah = sc->sc_ah;
2421
2422 tsf = ath9k_hw_gettsf64(ah);
2423
2424 return tsf;
2425}
2426
2427static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2428{
2429 struct ath_softc *sc = hw->priv;
2430 struct ath_hal *ah = sc->sc_ah;
2431
2432 ath9k_hw_reset_tsf(ah);
2433}
2434
2435static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2436 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002437 struct ieee80211_sta *sta,
2438 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002439{
2440 struct ath_softc *sc = hw->priv;
2441 int ret = 0;
2442
2443 switch (action) {
2444 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302445 if (!(sc->sc_flags & SC_OP_RXAGGR))
2446 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002447 break;
2448 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002449 break;
2450 case IEEE80211_AMPDU_TX_START:
Sujithb5aa9bf2008-10-29 10:13:31 +05302451 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002452 if (ret < 0)
2453 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302454 "Unable to start TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002455 else
Johannes Berg17741cd2008-09-11 00:02:02 +02002456 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002457 break;
2458 case IEEE80211_AMPDU_TX_STOP:
Sujithb5aa9bf2008-10-29 10:13:31 +05302459 ret = ath_tx_aggr_stop(sc, sta, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002460 if (ret < 0)
2461 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302462 "Unable to stop TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002463
Johannes Berg17741cd2008-09-11 00:02:02 +02002464 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002465 break;
Sujith8469cde2008-10-29 10:19:28 +05302466 case IEEE80211_AMPDU_TX_RESUME:
2467 ath_tx_aggr_resume(sc, sta, tid);
2468 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002469 default:
Sujith04bd4632008-11-28 22:18:05 +05302470 DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002471 }
2472
2473 return ret;
2474}
2475
2476static struct ieee80211_ops ath9k_ops = {
2477 .tx = ath9k_tx,
2478 .start = ath9k_start,
2479 .stop = ath9k_stop,
2480 .add_interface = ath9k_add_interface,
2481 .remove_interface = ath9k_remove_interface,
2482 .config = ath9k_config,
2483 .config_interface = ath9k_config_interface,
2484 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002485 .sta_notify = ath9k_sta_notify,
2486 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002487 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002488 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002489 .get_tsf = ath9k_get_tsf,
2490 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002491 .ampdu_action = ath9k_ampdu_action,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002492};
2493
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002494static struct {
2495 u32 version;
2496 const char * name;
2497} ath_mac_bb_names[] = {
2498 { AR_SREV_VERSION_5416_PCI, "5416" },
2499 { AR_SREV_VERSION_5416_PCIE, "5418" },
2500 { AR_SREV_VERSION_9100, "9100" },
2501 { AR_SREV_VERSION_9160, "9160" },
2502 { AR_SREV_VERSION_9280, "9280" },
2503 { AR_SREV_VERSION_9285, "9285" }
2504};
2505
2506static struct {
2507 u16 version;
2508 const char * name;
2509} ath_rf_names[] = {
2510 { 0, "5133" },
2511 { AR_RAD5133_SREV_MAJOR, "5133" },
2512 { AR_RAD5122_SREV_MAJOR, "5122" },
2513 { AR_RAD2133_SREV_MAJOR, "2133" },
2514 { AR_RAD2122_SREV_MAJOR, "2122" }
2515};
2516
2517/*
2518 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2519 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002520static const char *
2521ath_mac_bb_name(u32 mac_bb_version)
2522{
2523 int i;
2524
2525 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2526 if (ath_mac_bb_names[i].version == mac_bb_version) {
2527 return ath_mac_bb_names[i].name;
2528 }
2529 }
2530
2531 return "????";
2532}
2533
2534/*
2535 * Return the RF name. "????" is returned if the RF is unknown.
2536 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002537static const char *
2538ath_rf_name(u16 rf_version)
2539{
2540 int i;
2541
2542 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2543 if (ath_rf_names[i].version == rf_version) {
2544 return ath_rf_names[i].name;
2545 }
2546 }
2547
2548 return "????";
2549}
2550
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002551static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2552{
2553 void __iomem *mem;
2554 struct ath_softc *sc;
2555 struct ieee80211_hw *hw;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002556 u8 csz;
2557 u32 val;
2558 int ret = 0;
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002559 struct ath_hal *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002560
2561 if (pci_enable_device(pdev))
2562 return -EIO;
2563
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002564 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2565
2566 if (ret) {
Luis R. Rodriguez1d450cf2008-11-13 19:11:56 -08002567 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002568 goto bad;
2569 }
2570
2571 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2572
2573 if (ret) {
2574 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
Sujith04bd4632008-11-28 22:18:05 +05302575 "DMA enable failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002576 goto bad;
2577 }
2578
2579 /*
2580 * Cache line size is used to size and align various
2581 * structures used to communicate with the hardware.
2582 */
2583 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
2584 if (csz == 0) {
2585 /*
2586 * Linux 2.4.18 (at least) writes the cache line size
2587 * register as a 16-bit wide register which is wrong.
2588 * We must have this setup properly for rx buffer
2589 * DMA to work so force a reasonable value here if it
2590 * comes up zero.
2591 */
2592 csz = L1_CACHE_BYTES / sizeof(u32);
2593 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
2594 }
2595 /*
2596 * The default setting of latency timer yields poor results,
2597 * set it to the value used by other systems. It may be worth
2598 * tweaking this setting more.
2599 */
2600 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
2601
2602 pci_set_master(pdev);
2603
2604 /*
2605 * Disable the RETRY_TIMEOUT register (0x41) to keep
2606 * PCI Tx retries from interfering with C3 CPU state.
2607 */
2608 pci_read_config_dword(pdev, 0x40, &val);
2609 if ((val & 0x0000ff00) != 0)
2610 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2611
2612 ret = pci_request_region(pdev, 0, "ath9k");
2613 if (ret) {
2614 dev_err(&pdev->dev, "PCI memory region reserve error\n");
2615 ret = -ENODEV;
2616 goto bad;
2617 }
2618
2619 mem = pci_iomap(pdev, 0, 0);
2620 if (!mem) {
2621 printk(KERN_ERR "PCI memory map error\n") ;
2622 ret = -EIO;
2623 goto bad1;
2624 }
2625
2626 hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops);
2627 if (hw == NULL) {
2628 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n");
2629 goto bad2;
2630 }
2631
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002632 SET_IEEE80211_DEV(hw, &pdev->dev);
2633 pci_set_drvdata(pdev, hw);
2634
2635 sc = hw->priv;
2636 sc->hw = hw;
2637 sc->pdev = pdev;
2638 sc->mem = mem;
2639
2640 if (ath_attach(id->device, sc) != 0) {
2641 ret = -ENODEV;
2642 goto bad3;
2643 }
2644
2645 /* setup interrupt service routine */
2646
2647 if (request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc)) {
2648 printk(KERN_ERR "%s: request_irq failed\n",
2649 wiphy_name(hw->wiphy));
2650 ret = -EIO;
2651 goto bad4;
2652 }
2653
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002654 ah = sc->sc_ah;
2655 printk(KERN_INFO
2656 "%s: Atheros AR%s MAC/BB Rev:%x "
2657 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002658 wiphy_name(hw->wiphy),
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002659 ath_mac_bb_name(ah->ah_macVersion),
2660 ah->ah_macRev,
2661 ath_rf_name((ah->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR)),
2662 ah->ah_phyRev,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002663 (unsigned long)mem, pdev->irq);
2664
2665 return 0;
2666bad4:
2667 ath_detach(sc);
2668bad3:
2669 ieee80211_free_hw(hw);
2670bad2:
2671 pci_iounmap(pdev, mem);
2672bad1:
2673 pci_release_region(pdev, 0);
2674bad:
2675 pci_disable_device(pdev);
2676 return ret;
2677}
2678
2679static void ath_pci_remove(struct pci_dev *pdev)
2680{
2681 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2682 struct ath_softc *sc = hw->priv;
2683
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002684 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05302685 if (pdev->irq)
2686 free_irq(pdev->irq, sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002687 pci_iounmap(pdev, sc->mem);
2688 pci_release_region(pdev, 0);
2689 pci_disable_device(pdev);
2690 ieee80211_free_hw(hw);
2691}
2692
2693#ifdef CONFIG_PM
2694
2695static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2696{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302697 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2698 struct ath_softc *sc = hw->priv;
2699
2700 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302701
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302702#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302703 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2704 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2705#endif
2706
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002707 pci_save_state(pdev);
2708 pci_disable_device(pdev);
2709 pci_set_power_state(pdev, 3);
2710
2711 return 0;
2712}
2713
2714static int ath_pci_resume(struct pci_dev *pdev)
2715{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302716 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2717 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002718 u32 val;
2719 int err;
2720
2721 err = pci_enable_device(pdev);
2722 if (err)
2723 return err;
2724 pci_restore_state(pdev);
2725 /*
2726 * Suspend/Resume resets the PCI configuration space, so we have to
2727 * re-disable the RETRY_TIMEOUT register (0x41) to keep
2728 * PCI Tx retries from interfering with C3 CPU state
2729 */
2730 pci_read_config_dword(pdev, 0x40, &val);
2731 if ((val & 0x0000ff00) != 0)
2732 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2733
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302734 /* Enable LED */
2735 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
2736 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
2737 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
2738
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302739#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302740 /*
2741 * check the h/w rfkill state on resume
2742 * and start the rfkill poll timer
2743 */
2744 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2745 queue_delayed_work(sc->hw->workqueue,
2746 &sc->rf_kill.rfkill_poll, 0);
2747#endif
2748
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002749 return 0;
2750}
2751
2752#endif /* CONFIG_PM */
2753
2754MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
2755
2756static struct pci_driver ath_pci_driver = {
2757 .name = "ath9k",
2758 .id_table = ath_pci_id_table,
2759 .probe = ath_pci_probe,
2760 .remove = ath_pci_remove,
2761#ifdef CONFIG_PM
2762 .suspend = ath_pci_suspend,
2763 .resume = ath_pci_resume,
2764#endif /* CONFIG_PM */
2765};
2766
2767static int __init init_ath_pci(void)
2768{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302769 int error;
2770
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002771 printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
2772
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302773 /* Register rate control algorithm */
2774 error = ath_rate_control_register();
2775 if (error != 0) {
2776 printk(KERN_ERR
2777 "Unable to register rate control algorithm: %d\n",
2778 error);
2779 ath_rate_control_unregister();
2780 return error;
2781 }
2782
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002783 if (pci_register_driver(&ath_pci_driver) < 0) {
2784 printk(KERN_ERR
2785 "ath_pci: No devices found, driver not installed.\n");
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302786 ath_rate_control_unregister();
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002787 pci_unregister_driver(&ath_pci_driver);
2788 return -ENODEV;
2789 }
2790
2791 return 0;
2792}
2793module_init(init_ath_pci);
2794
2795static void __exit exit_ath_pci(void)
2796{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302797 ath_rate_control_unregister();
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002798 pci_unregister_driver(&ath_pci_driver);
Sujith04bd4632008-11-28 22:18:05 +05302799 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002800}
2801module_exit(exit_ath_pci);