blob: 12c5b9a44904d21bb856f1c2adb12cffa1620b07 [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. Rodriguezce111ba2008-12-23 15:58:39 -080062static void ath_cache_conf_rate(struct ath_softc *sc,
63 struct ieee80211_conf *conf)
Sujithff37e332008-11-24 12:07:55 +053064{
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080065 switch (conf->channel->band) {
66 case IEEE80211_BAND_2GHZ:
67 if (conf_is_ht20(conf))
68 sc->cur_rate_table =
69 sc->hw_rate_table[ATH9K_MODE_11NG_HT20];
70 else if (conf_is_ht40_minus(conf))
71 sc->cur_rate_table =
72 sc->hw_rate_table[ATH9K_MODE_11NG_HT40MINUS];
73 else if (conf_is_ht40_plus(conf))
74 sc->cur_rate_table =
75 sc->hw_rate_table[ATH9K_MODE_11NG_HT40PLUS];
Luis R. Rodriguez96742252008-12-23 15:58:38 -080076 else
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080077 sc->cur_rate_table =
78 sc->hw_rate_table[ATH9K_MODE_11G];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080079 break;
80 case IEEE80211_BAND_5GHZ:
81 if (conf_is_ht20(conf))
82 sc->cur_rate_table =
83 sc->hw_rate_table[ATH9K_MODE_11NA_HT20];
84 else if (conf_is_ht40_minus(conf))
85 sc->cur_rate_table =
86 sc->hw_rate_table[ATH9K_MODE_11NA_HT40MINUS];
87 else if (conf_is_ht40_plus(conf))
88 sc->cur_rate_table =
89 sc->hw_rate_table[ATH9K_MODE_11NA_HT40PLUS];
90 else
Luis R. Rodriguez96742252008-12-23 15:58:38 -080091 sc->cur_rate_table =
92 sc->hw_rate_table[ATH9K_MODE_11A];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080093 break;
94 default:
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -080095 BUG_ON(1);
Luis R. Rodriguez030bb492008-12-23 15:58:37 -080096 break;
97 }
Sujithff37e332008-11-24 12:07:55 +053098}
99
100static void ath_update_txpow(struct ath_softc *sc)
101{
102 struct ath_hal *ah = sc->sc_ah;
103 u32 txpow;
104
105 if (sc->sc_curtxpow != sc->sc_config.txpowlimit) {
106 ath9k_hw_set_txpowerlimit(ah, sc->sc_config.txpowlimit);
107 /* read back in case value is clamped */
108 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
109 sc->sc_curtxpow = txpow;
110 }
111}
112
113static u8 parse_mpdudensity(u8 mpdudensity)
114{
115 /*
116 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
117 * 0 for no restriction
118 * 1 for 1/4 us
119 * 2 for 1/2 us
120 * 3 for 1 us
121 * 4 for 2 us
122 * 5 for 4 us
123 * 6 for 8 us
124 * 7 for 16 us
125 */
126 switch (mpdudensity) {
127 case 0:
128 return 0;
129 case 1:
130 case 2:
131 case 3:
132 /* Our lower layer calculations limit our precision to
133 1 microsecond */
134 return 1;
135 case 4:
136 return 2;
137 case 5:
138 return 4;
139 case 6:
140 return 8;
141 case 7:
142 return 16;
143 default:
144 return 0;
145 }
146}
147
148static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band)
149{
150 struct ath_rate_table *rate_table = NULL;
151 struct ieee80211_supported_band *sband;
152 struct ieee80211_rate *rate;
153 int i, maxrates;
154
155 switch (band) {
156 case IEEE80211_BAND_2GHZ:
157 rate_table = sc->hw_rate_table[ATH9K_MODE_11G];
158 break;
159 case IEEE80211_BAND_5GHZ:
160 rate_table = sc->hw_rate_table[ATH9K_MODE_11A];
161 break;
162 default:
163 break;
164 }
165
166 if (rate_table == NULL)
167 return;
168
169 sband = &sc->sbands[band];
170 rate = sc->rates[band];
171
172 if (rate_table->rate_cnt > ATH_RATE_MAX)
173 maxrates = ATH_RATE_MAX;
174 else
175 maxrates = rate_table->rate_cnt;
176
177 for (i = 0; i < maxrates; i++) {
178 rate[i].bitrate = rate_table->info[i].ratekbps / 100;
179 rate[i].hw_value = rate_table->info[i].ratecode;
180 sband->n_bitrates++;
Sujith04bd4632008-11-28 22:18:05 +0530181 DPRINTF(sc, ATH_DBG_CONFIG, "Rate: %2dMbps, ratecode: %2d\n",
182 rate[i].bitrate / 10, rate[i].hw_value);
Sujithff37e332008-11-24 12:07:55 +0530183 }
184}
185
186static int ath_setup_channels(struct ath_softc *sc)
187{
188 struct ath_hal *ah = sc->sc_ah;
189 int nchan, i, a = 0, b = 0;
190 u8 regclassids[ATH_REGCLASSIDS_MAX];
191 u32 nregclass = 0;
192 struct ieee80211_supported_band *band_2ghz;
193 struct ieee80211_supported_band *band_5ghz;
194 struct ieee80211_channel *chan_2ghz;
195 struct ieee80211_channel *chan_5ghz;
196 struct ath9k_channel *c;
197
198 /* Fill in ah->ah_channels */
199 if (!ath9k_regd_init_channels(ah, ATH_CHAN_MAX, (u32 *)&nchan,
200 regclassids, ATH_REGCLASSIDS_MAX,
201 &nregclass, CTRY_DEFAULT, false, 1)) {
202 u32 rd = ah->ah_currentRD;
203 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530204 "Unable to collect channel list; "
Sujithff37e332008-11-24 12:07:55 +0530205 "regdomain likely %u country code %u\n",
Sujith04bd4632008-11-28 22:18:05 +0530206 rd, CTRY_DEFAULT);
Sujithff37e332008-11-24 12:07:55 +0530207 return -EINVAL;
208 }
209
210 band_2ghz = &sc->sbands[IEEE80211_BAND_2GHZ];
211 band_5ghz = &sc->sbands[IEEE80211_BAND_5GHZ];
212 chan_2ghz = sc->channels[IEEE80211_BAND_2GHZ];
213 chan_5ghz = sc->channels[IEEE80211_BAND_5GHZ];
214
215 for (i = 0; i < nchan; i++) {
216 c = &ah->ah_channels[i];
217 if (IS_CHAN_2GHZ(c)) {
218 chan_2ghz[a].band = IEEE80211_BAND_2GHZ;
219 chan_2ghz[a].center_freq = c->channel;
220 chan_2ghz[a].max_power = c->maxTxPower;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800221 c->chan = &chan_2ghz[a];
Sujithff37e332008-11-24 12:07:55 +0530222
223 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
224 chan_2ghz[a].flags |= IEEE80211_CHAN_NO_IBSS;
225 if (c->channelFlags & CHANNEL_PASSIVE)
226 chan_2ghz[a].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
227
228 band_2ghz->n_channels = ++a;
229
Sujith04bd4632008-11-28 22:18:05 +0530230 DPRINTF(sc, ATH_DBG_CONFIG, "2MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530231 "channelFlags: 0x%x\n",
Sujith04bd4632008-11-28 22:18:05 +0530232 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530233 } else if (IS_CHAN_5GHZ(c)) {
234 chan_5ghz[b].band = IEEE80211_BAND_5GHZ;
235 chan_5ghz[b].center_freq = c->channel;
236 chan_5ghz[b].max_power = c->maxTxPower;
Luis R. Rodriguez76061ab2008-12-23 15:58:41 -0800237 c->chan = &chan_5ghz[a];
Sujithff37e332008-11-24 12:07:55 +0530238
239 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
240 chan_5ghz[b].flags |= IEEE80211_CHAN_NO_IBSS;
241 if (c->channelFlags & CHANNEL_PASSIVE)
242 chan_5ghz[b].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
243
244 band_5ghz->n_channels = ++b;
245
Sujith04bd4632008-11-28 22:18:05 +0530246 DPRINTF(sc, ATH_DBG_CONFIG, "5MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530247 "channelFlags: 0x%x\n",
Sujith04bd4632008-11-28 22:18:05 +0530248 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530249 }
250 }
251
252 return 0;
253}
254
255/*
256 * Set/change channels. If the channel is really being changed, it's done
257 * by reseting the chip. To accomplish this we must first cleanup any pending
258 * DMA, then restart stuff.
259*/
260static int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan)
261{
262 struct ath_hal *ah = sc->sc_ah;
263 bool fastcc = true, stopped;
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800264 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800265 struct ieee80211_channel *channel = hw->conf.channel;
266 int r;
Sujithff37e332008-11-24 12:07:55 +0530267
268 if (sc->sc_flags & SC_OP_INVALID)
269 return -EIO;
270
Sujithff37e332008-11-24 12:07:55 +0530271 if (hchan->channel != sc->sc_ah->ah_curchan->channel ||
272 hchan->channelFlags != sc->sc_ah->ah_curchan->channelFlags ||
273 (sc->sc_flags & SC_OP_CHAINMASK_UPDATE) ||
274 (sc->sc_flags & SC_OP_FULL_RESET)) {
Sujithff37e332008-11-24 12:07:55 +0530275 /*
276 * This is only performed if the channel settings have
277 * actually changed.
278 *
279 * To switch channels clear any pending DMA operations;
280 * wait long enough for the RX fifo to drain, reset the
281 * hardware at the new frequency, and then re-enable
282 * the relevant bits of the h/w.
283 */
Sujith04bd4632008-11-28 22:18:05 +0530284 ath9k_hw_set_interrupts(ah, 0);
285 ath_draintxq(sc, false);
286 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530287
288 /* XXX: do not flush receive queue here. We don't want
289 * to flush data frames already in queue because of
290 * changing channel. */
291
292 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
293 fastcc = false;
294
Sujith99405f92008-11-24 12:08:35 +0530295 DPRINTF(sc, ATH_DBG_CONFIG,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800296 "(%u MHz) -> (%u MHz), chanwidth: %d\n",
Sujith99405f92008-11-24 12:08:35 +0530297 sc->sc_ah->ah_curchan->channel,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800298 channel->center_freq, sc->tx_chan_width);
Sujith99405f92008-11-24 12:08:35 +0530299
Sujithff37e332008-11-24 12:07:55 +0530300 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800301
302 r = ath9k_hw_reset(ah, hchan, fastcc);
303 if (r) {
Sujithff37e332008-11-24 12:07:55 +0530304 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800305 "Unable to reset channel (%u Mhz) "
306 "reset status %u\n",
307 channel->center_freq, r);
Sujithff37e332008-11-24 12:07:55 +0530308 spin_unlock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800309 return r;
Sujithff37e332008-11-24 12:07:55 +0530310 }
311 spin_unlock_bh(&sc->sc_resetlock);
312
313 sc->sc_flags &= ~SC_OP_CHAINMASK_UPDATE;
314 sc->sc_flags &= ~SC_OP_FULL_RESET;
315
316 if (ath_startrecv(sc) != 0) {
317 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530318 "Unable to restart recv logic\n");
Sujithff37e332008-11-24 12:07:55 +0530319 return -EIO;
320 }
321
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -0800322 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +0530323 ath_update_txpow(sc);
324 ath9k_hw_set_interrupts(ah, sc->sc_imask);
325 }
326 return 0;
327}
328
329/*
330 * This routine performs the periodic noise floor calibration function
331 * that is used to adjust and optimize the chip performance. This
332 * takes environmental changes (location, temperature) into account.
333 * When the task is complete, it reschedules itself depending on the
334 * appropriate interval that was calculated.
335 */
336static void ath_ani_calibrate(unsigned long data)
337{
338 struct ath_softc *sc;
339 struct ath_hal *ah;
340 bool longcal = false;
341 bool shortcal = false;
342 bool aniflag = false;
343 unsigned int timestamp = jiffies_to_msecs(jiffies);
344 u32 cal_interval;
345
346 sc = (struct ath_softc *)data;
347 ah = sc->sc_ah;
348
349 /*
350 * don't calibrate when we're scanning.
351 * we are most likely not on our home channel.
352 */
Sujithb77f4832008-12-07 21:44:03 +0530353 if (sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC)
Sujithff37e332008-11-24 12:07:55 +0530354 return;
355
356 /* Long calibration runs independently of short calibration. */
357 if ((timestamp - sc->sc_ani.sc_longcal_timer) >= ATH_LONG_CALINTERVAL) {
358 longcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530359 DPRINTF(sc, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530360 sc->sc_ani.sc_longcal_timer = timestamp;
361 }
362
363 /* Short calibration applies only while sc_caldone is false */
364 if (!sc->sc_ani.sc_caldone) {
365 if ((timestamp - sc->sc_ani.sc_shortcal_timer) >=
366 ATH_SHORT_CALINTERVAL) {
367 shortcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530368 DPRINTF(sc, ATH_DBG_ANI, "shortcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530369 sc->sc_ani.sc_shortcal_timer = timestamp;
370 sc->sc_ani.sc_resetcal_timer = timestamp;
371 }
372 } else {
373 if ((timestamp - sc->sc_ani.sc_resetcal_timer) >=
374 ATH_RESTART_CALINTERVAL) {
375 ath9k_hw_reset_calvalid(ah, ah->ah_curchan,
376 &sc->sc_ani.sc_caldone);
377 if (sc->sc_ani.sc_caldone)
378 sc->sc_ani.sc_resetcal_timer = timestamp;
379 }
380 }
381
382 /* Verify whether we must check ANI */
383 if ((timestamp - sc->sc_ani.sc_checkani_timer) >=
384 ATH_ANI_POLLINTERVAL) {
385 aniflag = true;
386 sc->sc_ani.sc_checkani_timer = timestamp;
387 }
388
389 /* Skip all processing if there's nothing to do. */
390 if (longcal || shortcal || aniflag) {
391 /* Call ANI routine if necessary */
392 if (aniflag)
393 ath9k_hw_ani_monitor(ah, &sc->sc_halstats,
394 ah->ah_curchan);
395
396 /* Perform calibration if necessary */
397 if (longcal || shortcal) {
398 bool iscaldone = false;
399
400 if (ath9k_hw_calibrate(ah, ah->ah_curchan,
401 sc->sc_rx_chainmask, longcal,
402 &iscaldone)) {
403 if (longcal)
404 sc->sc_ani.sc_noise_floor =
405 ath9k_hw_getchan_noise(ah,
406 ah->ah_curchan);
407
408 DPRINTF(sc, ATH_DBG_ANI,
Sujith04bd4632008-11-28 22:18:05 +0530409 "calibrate chan %u/%x nf: %d\n",
Sujithff37e332008-11-24 12:07:55 +0530410 ah->ah_curchan->channel,
411 ah->ah_curchan->channelFlags,
412 sc->sc_ani.sc_noise_floor);
413 } else {
414 DPRINTF(sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +0530415 "calibrate chan %u/%x failed\n",
Sujithff37e332008-11-24 12:07:55 +0530416 ah->ah_curchan->channel,
417 ah->ah_curchan->channelFlags);
418 }
419 sc->sc_ani.sc_caldone = iscaldone;
420 }
421 }
422
423 /*
424 * Set timer interval based on previous results.
425 * The interval must be the shortest necessary to satisfy ANI,
426 * short calibration and long calibration.
427 */
Sujithaac92072008-12-02 18:37:54 +0530428 cal_interval = ATH_LONG_CALINTERVAL;
429 if (sc->sc_ah->ah_config.enable_ani)
430 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
Sujithff37e332008-11-24 12:07:55 +0530431 if (!sc->sc_ani.sc_caldone)
432 cal_interval = min(cal_interval, (u32)ATH_SHORT_CALINTERVAL);
433
434 mod_timer(&sc->sc_ani.timer, jiffies + msecs_to_jiffies(cal_interval));
435}
436
437/*
438 * Update tx/rx chainmask. For legacy association,
439 * hard code chainmask to 1x1, for 11n association, use
440 * the chainmask configuration.
441 */
442static void ath_update_chainmask(struct ath_softc *sc, int is_ht)
443{
444 sc->sc_flags |= SC_OP_CHAINMASK_UPDATE;
445 if (is_ht) {
446 sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask;
447 sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask;
448 } else {
449 sc->sc_tx_chainmask = 1;
450 sc->sc_rx_chainmask = 1;
451 }
452
Sujith04bd4632008-11-28 22:18:05 +0530453 DPRINTF(sc, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n",
454 sc->sc_tx_chainmask, sc->sc_rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530455}
456
457static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
458{
459 struct ath_node *an;
460
461 an = (struct ath_node *)sta->drv_priv;
462
463 if (sc->sc_flags & SC_OP_TXAGGR)
464 ath_tx_node_init(sc, an);
465
466 an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR +
467 sta->ht_cap.ampdu_factor);
468 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
469}
470
471static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
472{
473 struct ath_node *an = (struct ath_node *)sta->drv_priv;
474
475 if (sc->sc_flags & SC_OP_TXAGGR)
476 ath_tx_node_cleanup(sc, an);
477}
478
479static void ath9k_tasklet(unsigned long data)
480{
481 struct ath_softc *sc = (struct ath_softc *)data;
482 u32 status = sc->sc_intrstatus;
483
484 if (status & ATH9K_INT_FATAL) {
485 /* need a chip reset */
486 ath_reset(sc, false);
487 return;
488 } else {
489
490 if (status &
491 (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
Sujithb77f4832008-12-07 21:44:03 +0530492 spin_lock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530493 ath_rx_tasklet(sc, 0);
Sujithb77f4832008-12-07 21:44:03 +0530494 spin_unlock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530495 }
496 /* XXX: optimize this */
497 if (status & ATH9K_INT_TX)
498 ath_tx_tasklet(sc);
499 }
500
501 /* re-enable hardware interrupt */
502 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
503}
504
505static irqreturn_t ath_isr(int irq, void *dev)
506{
507 struct ath_softc *sc = dev;
508 struct ath_hal *ah = sc->sc_ah;
509 enum ath9k_int status;
510 bool sched = false;
511
512 do {
513 if (sc->sc_flags & SC_OP_INVALID) {
514 /*
515 * The hardware is not ready/present, don't
516 * touch anything. Note this can happen early
517 * on if the IRQ is shared.
518 */
519 return IRQ_NONE;
520 }
521 if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */
522 return IRQ_NONE;
523 }
524
525 /*
526 * Figure out the reason(s) for the interrupt. Note
527 * that the hal returns a pseudo-ISR that may include
528 * bits we haven't explicitly enabled so we mask the
529 * value to insure we only process bits we requested.
530 */
531 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
532
533 status &= sc->sc_imask; /* discard unasked-for bits */
534
535 /*
536 * If there are no status bits set, then this interrupt was not
537 * for me (should have been caught above).
538 */
539 if (!status)
540 return IRQ_NONE;
541
542 sc->sc_intrstatus = status;
543
544 if (status & ATH9K_INT_FATAL) {
545 /* need a chip reset */
546 sched = true;
547 } else if (status & ATH9K_INT_RXORN) {
548 /* need a chip reset */
549 sched = true;
550 } else {
551 if (status & ATH9K_INT_SWBA) {
552 /* schedule a tasklet for beacon handling */
553 tasklet_schedule(&sc->bcon_tasklet);
554 }
555 if (status & ATH9K_INT_RXEOL) {
556 /*
557 * NB: the hardware should re-read the link when
558 * RXE bit is written, but it doesn't work
559 * at least on older hardware revs.
560 */
561 sched = true;
562 }
563
564 if (status & ATH9K_INT_TXURN)
565 /* bump tx trigger level */
566 ath9k_hw_updatetxtriglevel(ah, true);
567 /* XXX: optimize this */
568 if (status & ATH9K_INT_RX)
569 sched = true;
570 if (status & ATH9K_INT_TX)
571 sched = true;
572 if (status & ATH9K_INT_BMISS)
573 sched = true;
574 /* carrier sense timeout */
575 if (status & ATH9K_INT_CST)
576 sched = true;
577 if (status & ATH9K_INT_MIB) {
578 /*
579 * Disable interrupts until we service the MIB
580 * interrupt; otherwise it will continue to
581 * fire.
582 */
583 ath9k_hw_set_interrupts(ah, 0);
584 /*
585 * Let the hal handle the event. We assume
586 * it will clear whatever condition caused
587 * the interrupt.
588 */
589 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
590 ath9k_hw_set_interrupts(ah, sc->sc_imask);
591 }
592 if (status & ATH9K_INT_TIM_TIMER) {
593 if (!(ah->ah_caps.hw_caps &
594 ATH9K_HW_CAP_AUTOSLEEP)) {
595 /* Clear RxAbort bit so that we can
596 * receive frames */
597 ath9k_hw_setrxabort(ah, 0);
598 sched = true;
599 }
600 }
601 }
602 } while (0);
603
Sujith817e11d2008-12-07 21:42:44 +0530604 ath_debug_stat_interrupt(sc, status);
605
Sujithff37e332008-11-24 12:07:55 +0530606 if (sched) {
607 /* turn off every interrupt except SWBA */
608 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
609 tasklet_schedule(&sc->intr_tq);
610 }
611
612 return IRQ_HANDLED;
613}
614
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700615static int ath_get_channel(struct ath_softc *sc,
616 struct ieee80211_channel *chan)
617{
618 int i;
619
620 for (i = 0; i < sc->sc_ah->ah_nchan; i++) {
621 if (sc->sc_ah->ah_channels[i].channel == chan->center_freq)
622 return i;
623 }
624
625 return -1;
626}
627
628static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530629 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +0530630 enum nl80211_channel_type channel_type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700631{
632 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700633
634 switch (chan->band) {
635 case IEEE80211_BAND_2GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530636 switch(channel_type) {
637 case NL80211_CHAN_NO_HT:
638 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639 chanmode = CHANNEL_G_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530640 break;
641 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700642 chanmode = CHANNEL_G_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530643 break;
644 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645 chanmode = CHANNEL_G_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530646 break;
647 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700648 break;
649 case IEEE80211_BAND_5GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530650 switch(channel_type) {
651 case NL80211_CHAN_NO_HT:
652 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700653 chanmode = CHANNEL_A_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530654 break;
655 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700656 chanmode = CHANNEL_A_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530657 break;
658 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700659 chanmode = CHANNEL_A_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530660 break;
661 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700662 break;
663 default:
664 break;
665 }
666
667 return chanmode;
668}
669
Sujithff37e332008-11-24 12:07:55 +0530670static int ath_keyset(struct ath_softc *sc, u16 keyix,
671 struct ath9k_keyval *hk, const u8 mac[ETH_ALEN])
672{
673 bool status;
674
675 status = ath9k_hw_set_keycache_entry(sc->sc_ah,
676 keyix, hk, mac, false);
677
678 return status != false;
679}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700680
Jouni Malinen6ace2892008-12-17 13:32:17 +0200681static int ath_setkey_tkip(struct ath_softc *sc, u16 keyix, const u8 *key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700682 struct ath9k_keyval *hk,
683 const u8 *addr)
684{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200685 const u8 *key_rxmic;
686 const u8 *key_txmic;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700687
Jouni Malinen6ace2892008-12-17 13:32:17 +0200688 key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
689 key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700690
691 if (addr == NULL) {
692 /* Group key installation */
Jouni Malinen6ace2892008-12-17 13:32:17 +0200693 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
694 return ath_keyset(sc, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700695 }
696 if (!sc->sc_splitmic) {
697 /*
698 * data key goes at first index,
699 * the hal handles the MIC keys at index+64.
700 */
701 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
702 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
Jouni Malinen6ace2892008-12-17 13:32:17 +0200703 return ath_keyset(sc, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700704 }
705 /*
706 * TX key goes at first index, RX key at +32.
707 * The hal handles the MIC keys at index+64.
708 */
709 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
Jouni Malinen6ace2892008-12-17 13:32:17 +0200710 if (!ath_keyset(sc, keyix, hk, NULL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700711 /* Txmic entry failed. No need to proceed further */
712 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +0530713 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700714 return 0;
715 }
716
717 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
718 /* XXX delete tx key on failure? */
Jouni Malinen6ace2892008-12-17 13:32:17 +0200719 return ath_keyset(sc, keyix + 32, hk, addr);
720}
721
722static int ath_reserve_key_cache_slot_tkip(struct ath_softc *sc)
723{
724 int i;
725
726 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) {
727 if (test_bit(i, sc->sc_keymap) ||
728 test_bit(i + 64, sc->sc_keymap))
729 continue; /* At least one part of TKIP key allocated */
730 if (sc->sc_splitmic &&
731 (test_bit(i + 32, sc->sc_keymap) ||
732 test_bit(i + 64 + 32, sc->sc_keymap)))
733 continue; /* At least one part of TKIP key allocated */
734
735 /* Found a free slot for a TKIP key */
736 return i;
737 }
738 return -1;
739}
740
741static int ath_reserve_key_cache_slot(struct ath_softc *sc)
742{
743 int i;
744
745 /* First, try to find slots that would not be available for TKIP. */
746 if (sc->sc_splitmic) {
747 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 4; i++) {
748 if (!test_bit(i, sc->sc_keymap) &&
749 (test_bit(i + 32, sc->sc_keymap) ||
750 test_bit(i + 64, sc->sc_keymap) ||
751 test_bit(i + 64 + 32, sc->sc_keymap)))
752 return i;
753 if (!test_bit(i + 32, sc->sc_keymap) &&
754 (test_bit(i, sc->sc_keymap) ||
755 test_bit(i + 64, sc->sc_keymap) ||
756 test_bit(i + 64 + 32, sc->sc_keymap)))
757 return i + 32;
758 if (!test_bit(i + 64, sc->sc_keymap) &&
759 (test_bit(i , sc->sc_keymap) ||
760 test_bit(i + 32, sc->sc_keymap) ||
761 test_bit(i + 64 + 32, sc->sc_keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200762 return i + 64;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200763 if (!test_bit(i + 64 + 32, sc->sc_keymap) &&
764 (test_bit(i, sc->sc_keymap) ||
765 test_bit(i + 32, sc->sc_keymap) ||
766 test_bit(i + 64, sc->sc_keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200767 return i + 64 + 32;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200768 }
769 } else {
770 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) {
771 if (!test_bit(i, sc->sc_keymap) &&
772 test_bit(i + 64, sc->sc_keymap))
773 return i;
774 if (test_bit(i, sc->sc_keymap) &&
775 !test_bit(i + 64, sc->sc_keymap))
776 return i + 64;
777 }
778 }
779
780 /* No partially used TKIP slots, pick any available slot */
781 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax; i++) {
Jouni Malinenbe2864c2008-12-18 14:33:00 +0200782 /* Do not allow slots that could be needed for TKIP group keys
783 * to be used. This limitation could be removed if we know that
784 * TKIP will not be used. */
785 if (i >= 64 && i < 64 + IEEE80211_WEP_NKID)
786 continue;
787 if (sc->sc_splitmic) {
788 if (i >= 32 && i < 32 + IEEE80211_WEP_NKID)
789 continue;
790 if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID)
791 continue;
792 }
793
Jouni Malinen6ace2892008-12-17 13:32:17 +0200794 if (!test_bit(i, sc->sc_keymap))
795 return i; /* Found a free slot for a key */
796 }
797
798 /* No free slot found */
799 return -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700800}
801
802static int ath_key_config(struct ath_softc *sc,
803 const u8 *addr,
804 struct ieee80211_key_conf *key)
805{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806 struct ath9k_keyval hk;
807 const u8 *mac = NULL;
808 int ret = 0;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200809 int idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700810
811 memset(&hk, 0, sizeof(hk));
812
813 switch (key->alg) {
814 case ALG_WEP:
815 hk.kv_type = ATH9K_CIPHER_WEP;
816 break;
817 case ALG_TKIP:
818 hk.kv_type = ATH9K_CIPHER_TKIP;
819 break;
820 case ALG_CCMP:
821 hk.kv_type = ATH9K_CIPHER_AES_CCM;
822 break;
823 default:
824 return -EINVAL;
825 }
826
Jouni Malinen6ace2892008-12-17 13:32:17 +0200827 hk.kv_len = key->keylen;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700828 memcpy(hk.kv_val, key->key, key->keylen);
829
Jouni Malinen6ace2892008-12-17 13:32:17 +0200830 if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
831 /* For now, use the default keys for broadcast keys. This may
832 * need to change with virtual interfaces. */
833 idx = key->keyidx;
834 } else if (key->keyidx) {
835 struct ieee80211_vif *vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700836
Jouni Malinen6ace2892008-12-17 13:32:17 +0200837 mac = addr;
838 vif = sc->sc_vaps[0];
839 if (vif->type != NL80211_IFTYPE_AP) {
840 /* Only keyidx 0 should be used with unicast key, but
841 * allow this for client mode for now. */
842 idx = key->keyidx;
843 } else
844 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700845 } else {
846 mac = addr;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200847 if (key->alg == ALG_TKIP)
848 idx = ath_reserve_key_cache_slot_tkip(sc);
849 else
850 idx = ath_reserve_key_cache_slot(sc);
851 if (idx < 0)
852 return -EIO; /* no free key cache entries */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700853 }
854
855 if (key->alg == ALG_TKIP)
Jouni Malinen6ace2892008-12-17 13:32:17 +0200856 ret = ath_setkey_tkip(sc, idx, key->key, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700857 else
Jouni Malinen6ace2892008-12-17 13:32:17 +0200858 ret = ath_keyset(sc, idx, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700859
860 if (!ret)
861 return -EIO;
862
Jouni Malinen6ace2892008-12-17 13:32:17 +0200863 set_bit(idx, sc->sc_keymap);
864 if (key->alg == ALG_TKIP) {
865 set_bit(idx + 64, sc->sc_keymap);
866 if (sc->sc_splitmic) {
867 set_bit(idx + 32, sc->sc_keymap);
868 set_bit(idx + 64 + 32, sc->sc_keymap);
869 }
870 }
871
872 return idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700873}
874
875static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
876{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200877 ath9k_hw_keyreset(sc->sc_ah, key->hw_key_idx);
878 if (key->hw_key_idx < IEEE80211_WEP_NKID)
879 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700880
Jouni Malinen6ace2892008-12-17 13:32:17 +0200881 clear_bit(key->hw_key_idx, sc->sc_keymap);
882 if (key->alg != ALG_TKIP)
883 return;
884
885 clear_bit(key->hw_key_idx + 64, sc->sc_keymap);
886 if (sc->sc_splitmic) {
887 clear_bit(key->hw_key_idx + 32, sc->sc_keymap);
888 clear_bit(key->hw_key_idx + 64 + 32, sc->sc_keymap);
889 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700890}
891
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200892static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700893{
Sujith60653672008-08-14 13:28:02 +0530894#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
895#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700896
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200897 ht_info->ht_supported = true;
898 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
899 IEEE80211_HT_CAP_SM_PS |
900 IEEE80211_HT_CAP_SGI_40 |
901 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700902
Sujith60653672008-08-14 13:28:02 +0530903 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
904 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200905 /* set up supported mcs set */
906 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
907 ht_info->mcs.rx_mask[0] = 0xff;
908 ht_info->mcs.rx_mask[1] = 0xff;
909 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700910}
911
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530912static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530913 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530914 struct ieee80211_bss_conf *bss_conf)
915{
Sujith5640b082008-10-29 10:16:06 +0530916 struct ath_vap *avp = (void *)vif->drv_priv;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530917
918 if (bss_conf->assoc) {
Sujith094d05d2008-12-12 11:57:43 +0530919 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d, bssid: %pM\n",
920 bss_conf->aid, sc->sc_curbssid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530921
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530922 /* New association, store aid */
Colin McCabed97809d2008-12-01 13:38:55 -0800923 if (avp->av_opmode == NL80211_IFTYPE_STATION) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530924 sc->sc_curaid = bss_conf->aid;
925 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
926 sc->sc_curaid);
927 }
928
929 /* Configure the beacon */
930 ath_beacon_config(sc, 0);
931 sc->sc_flags |= SC_OP_BEACONS;
932
933 /* Reset rssi stats */
934 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
935 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
936 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
937 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
938
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700939 /* Start ANI */
940 mod_timer(&sc->sc_ani.timer,
941 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
942
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530943 } else {
Sujith04bd4632008-11-28 22:18:05 +0530944 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530945 sc->sc_curaid = 0;
946 }
947}
948
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530949/********************************/
950/* LED functions */
951/********************************/
952
953static void ath_led_brightness(struct led_classdev *led_cdev,
954 enum led_brightness brightness)
955{
956 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
957 struct ath_softc *sc = led->sc;
958
959 switch (brightness) {
960 case LED_OFF:
961 if (led->led_type == ATH_LED_ASSOC ||
962 led->led_type == ATH_LED_RADIO)
963 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
964 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
965 (led->led_type == ATH_LED_RADIO) ? 1 :
966 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
967 break;
968 case LED_FULL:
969 if (led->led_type == ATH_LED_ASSOC)
970 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
971 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
972 break;
973 default:
974 break;
975 }
976}
977
978static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
979 char *trigger)
980{
981 int ret;
982
983 led->sc = sc;
984 led->led_cdev.name = led->name;
985 led->led_cdev.default_trigger = trigger;
986 led->led_cdev.brightness_set = ath_led_brightness;
987
988 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
989 if (ret)
990 DPRINTF(sc, ATH_DBG_FATAL,
991 "Failed to register led:%s", led->name);
992 else
993 led->registered = 1;
994 return ret;
995}
996
997static void ath_unregister_led(struct ath_led *led)
998{
999 if (led->registered) {
1000 led_classdev_unregister(&led->led_cdev);
1001 led->registered = 0;
1002 }
1003}
1004
1005static void ath_deinit_leds(struct ath_softc *sc)
1006{
1007 ath_unregister_led(&sc->assoc_led);
1008 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
1009 ath_unregister_led(&sc->tx_led);
1010 ath_unregister_led(&sc->rx_led);
1011 ath_unregister_led(&sc->radio_led);
1012 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1013}
1014
1015static void ath_init_leds(struct ath_softc *sc)
1016{
1017 char *trigger;
1018 int ret;
1019
1020 /* Configure gpio 1 for output */
1021 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
1022 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1023 /* LED off, active low */
1024 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1025
1026 trigger = ieee80211_get_radio_led_name(sc->hw);
1027 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
1028 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
1029 ret = ath_register_led(sc, &sc->radio_led, trigger);
1030 sc->radio_led.led_type = ATH_LED_RADIO;
1031 if (ret)
1032 goto fail;
1033
1034 trigger = ieee80211_get_assoc_led_name(sc->hw);
1035 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
1036 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
1037 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1038 sc->assoc_led.led_type = ATH_LED_ASSOC;
1039 if (ret)
1040 goto fail;
1041
1042 trigger = ieee80211_get_tx_led_name(sc->hw);
1043 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
1044 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
1045 ret = ath_register_led(sc, &sc->tx_led, trigger);
1046 sc->tx_led.led_type = ATH_LED_TX;
1047 if (ret)
1048 goto fail;
1049
1050 trigger = ieee80211_get_rx_led_name(sc->hw);
1051 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
1052 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
1053 ret = ath_register_led(sc, &sc->rx_led, trigger);
1054 sc->rx_led.led_type = ATH_LED_RX;
1055 if (ret)
1056 goto fail;
1057
1058 return;
1059
1060fail:
1061 ath_deinit_leds(sc);
1062}
1063
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301064#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301065
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301066/*******************/
1067/* Rfkill */
1068/*******************/
1069
1070static void ath_radio_enable(struct ath_softc *sc)
1071{
1072 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001073 struct ieee80211_channel *channel = sc->hw->conf.channel;
1074 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301075
1076 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001077
1078 r = ath9k_hw_reset(ah, ah->ah_curchan, false);
1079
1080 if (r) {
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301081 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001082 "Unable to reset channel %u (%uMhz) ",
1083 "reset status %u\n",
1084 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301085 }
1086 spin_unlock_bh(&sc->sc_resetlock);
1087
1088 ath_update_txpow(sc);
1089 if (ath_startrecv(sc) != 0) {
1090 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301091 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301092 return;
1093 }
1094
1095 if (sc->sc_flags & SC_OP_BEACONS)
1096 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1097
1098 /* Re-Enable interrupts */
1099 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1100
1101 /* Enable LED */
1102 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
1103 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1104 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
1105
1106 ieee80211_wake_queues(sc->hw);
1107}
1108
1109static void ath_radio_disable(struct ath_softc *sc)
1110{
1111 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001112 struct ieee80211_channel *channel = sc->hw->conf.channel;
1113 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301114
1115 ieee80211_stop_queues(sc->hw);
1116
1117 /* Disable LED */
1118 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
1119 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
1120
1121 /* Disable interrupts */
1122 ath9k_hw_set_interrupts(ah, 0);
1123
1124 ath_draintxq(sc, false); /* clear pending tx frames */
1125 ath_stoprecv(sc); /* turn off frame recv */
1126 ath_flushrecv(sc); /* flush recv queue */
1127
1128 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001129 r = ath9k_hw_reset(ah, ah->ah_curchan, false);
1130 if (r) {
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301131 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301132 "Unable to reset channel %u (%uMhz) "
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001133 "reset status %u\n",
1134 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301135 }
1136 spin_unlock_bh(&sc->sc_resetlock);
1137
1138 ath9k_hw_phy_disable(ah);
1139 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1140}
1141
1142static bool ath_is_rfkill_set(struct ath_softc *sc)
1143{
1144 struct ath_hal *ah = sc->sc_ah;
1145
1146 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
1147 ah->ah_rfkill_polarity;
1148}
1149
1150/* h/w rfkill poll function */
1151static void ath_rfkill_poll(struct work_struct *work)
1152{
1153 struct ath_softc *sc = container_of(work, struct ath_softc,
1154 rf_kill.rfkill_poll.work);
1155 bool radio_on;
1156
1157 if (sc->sc_flags & SC_OP_INVALID)
1158 return;
1159
1160 radio_on = !ath_is_rfkill_set(sc);
1161
1162 /*
1163 * enable/disable radio only when there is a
1164 * state change in RF switch
1165 */
1166 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
1167 enum rfkill_state state;
1168
1169 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
1170 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
1171 : RFKILL_STATE_HARD_BLOCKED;
1172 } else if (radio_on) {
1173 ath_radio_enable(sc);
1174 state = RFKILL_STATE_UNBLOCKED;
1175 } else {
1176 ath_radio_disable(sc);
1177 state = RFKILL_STATE_HARD_BLOCKED;
1178 }
1179
1180 if (state == RFKILL_STATE_HARD_BLOCKED)
1181 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
1182 else
1183 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
1184
1185 rfkill_force_state(sc->rf_kill.rfkill, state);
1186 }
1187
1188 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
1189 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
1190}
1191
1192/* s/w rfkill handler */
1193static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
1194{
1195 struct ath_softc *sc = data;
1196
1197 switch (state) {
1198 case RFKILL_STATE_SOFT_BLOCKED:
1199 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
1200 SC_OP_RFKILL_SW_BLOCKED)))
1201 ath_radio_disable(sc);
1202 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
1203 return 0;
1204 case RFKILL_STATE_UNBLOCKED:
1205 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
1206 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
1207 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
1208 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
Sujith04bd4632008-11-28 22:18:05 +05301209 "radio as it is disabled by h/w\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301210 return -EPERM;
1211 }
1212 ath_radio_enable(sc);
1213 }
1214 return 0;
1215 default:
1216 return -EINVAL;
1217 }
1218}
1219
1220/* Init s/w rfkill */
1221static int ath_init_sw_rfkill(struct ath_softc *sc)
1222{
1223 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
1224 RFKILL_TYPE_WLAN);
1225 if (!sc->rf_kill.rfkill) {
1226 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
1227 return -ENOMEM;
1228 }
1229
1230 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
1231 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
1232 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
1233 sc->rf_kill.rfkill->data = sc;
1234 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
1235 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
1236 sc->rf_kill.rfkill->user_claim_unsupported = 1;
1237
1238 return 0;
1239}
1240
1241/* Deinitialize rfkill */
1242static void ath_deinit_rfkill(struct ath_softc *sc)
1243{
1244 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1245 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1246
1247 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
1248 rfkill_unregister(sc->rf_kill.rfkill);
1249 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
1250 sc->rf_kill.rfkill = NULL;
1251 }
1252}
Sujith9c84b792008-10-29 10:17:13 +05301253
1254static int ath_start_rfkill_poll(struct ath_softc *sc)
1255{
1256 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1257 queue_delayed_work(sc->hw->workqueue,
1258 &sc->rf_kill.rfkill_poll, 0);
1259
1260 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1261 if (rfkill_register(sc->rf_kill.rfkill)) {
1262 DPRINTF(sc, ATH_DBG_FATAL,
1263 "Unable to register rfkill\n");
1264 rfkill_free(sc->rf_kill.rfkill);
1265
1266 /* Deinitialize the device */
Senthil Balasubramanian306efdd2008-11-13 18:00:37 +05301267 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05301268 if (sc->pdev->irq)
1269 free_irq(sc->pdev->irq, sc);
Sujith9c84b792008-10-29 10:17:13 +05301270 pci_iounmap(sc->pdev, sc->mem);
1271 pci_release_region(sc->pdev, 0);
1272 pci_disable_device(sc->pdev);
Sujith9757d552008-11-04 18:25:27 +05301273 ieee80211_free_hw(sc->hw);
Sujith9c84b792008-10-29 10:17:13 +05301274 return -EIO;
1275 } else {
1276 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1277 }
1278 }
1279
1280 return 0;
1281}
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301282#endif /* CONFIG_RFKILL */
1283
Sujith9c84b792008-10-29 10:17:13 +05301284static void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301285{
1286 struct ieee80211_hw *hw = sc->hw;
Sujith9c84b792008-10-29 10:17:13 +05301287 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301288
Sujith04bd4632008-11-28 22:18:05 +05301289 DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301290
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301291#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301292 ath_deinit_rfkill(sc);
1293#endif
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301294 ath_deinit_leds(sc);
1295
1296 ieee80211_unregister_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301297 ath_rx_cleanup(sc);
1298 ath_tx_cleanup(sc);
1299
Sujith9c84b792008-10-29 10:17:13 +05301300 tasklet_kill(&sc->intr_tq);
1301 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301302
Sujith9c84b792008-10-29 10:17:13 +05301303 if (!(sc->sc_flags & SC_OP_INVALID))
1304 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301305
Sujith9c84b792008-10-29 10:17:13 +05301306 /* cleanup tx queues */
1307 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1308 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301309 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith9c84b792008-10-29 10:17:13 +05301310
1311 ath9k_hw_detach(sc->sc_ah);
Sujith826d2682008-11-28 22:20:23 +05301312 ath9k_exit_debug(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301313}
1314
Sujithff37e332008-11-24 12:07:55 +05301315static int ath_init(u16 devid, struct ath_softc *sc)
1316{
1317 struct ath_hal *ah = NULL;
1318 int status;
1319 int error = 0, i;
1320 int csz = 0;
1321
1322 /* XXX: hardware will not be ready until ath_open() being called */
1323 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301324
Sujith826d2682008-11-28 22:20:23 +05301325 if (ath9k_init_debug(sc) < 0)
1326 printk(KERN_ERR "Unable to create debugfs files\n");
Sujithff37e332008-11-24 12:07:55 +05301327
1328 spin_lock_init(&sc->sc_resetlock);
Sujithaa33de02008-12-18 11:40:16 +05301329 mutex_init(&sc->mutex);
Sujithff37e332008-11-24 12:07:55 +05301330 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1331 tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1332 (unsigned long)sc);
1333
1334 /*
1335 * Cache line size is used to size and align various
1336 * structures used to communicate with the hardware.
1337 */
1338 bus_read_cachesize(sc, &csz);
1339 /* XXX assert csz is non-zero */
1340 sc->sc_cachelsz = csz << 2; /* convert to bytes */
1341
1342 ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1343 if (ah == NULL) {
1344 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301345 "Unable to attach hardware; HAL status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301346 error = -ENXIO;
1347 goto bad;
1348 }
1349 sc->sc_ah = ah;
1350
1351 /* Get the hardware key cache size. */
1352 sc->sc_keymax = ah->ah_caps.keycache_size;
1353 if (sc->sc_keymax > ATH_KEYMAX) {
1354 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05301355 "Warning, using only %u entries in %u key cache\n",
1356 ATH_KEYMAX, sc->sc_keymax);
Sujithff37e332008-11-24 12:07:55 +05301357 sc->sc_keymax = ATH_KEYMAX;
1358 }
1359
1360 /*
1361 * Reset the key cache since some parts do not
1362 * reset the contents on initial power up.
1363 */
1364 for (i = 0; i < sc->sc_keymax; i++)
1365 ath9k_hw_keyreset(ah, (u16) i);
Sujithff37e332008-11-24 12:07:55 +05301366
1367 /* Collect the channel list using the default country code */
1368
1369 error = ath_setup_channels(sc);
1370 if (error)
1371 goto bad;
1372
1373 /* default to MONITOR mode */
Colin McCabed97809d2008-12-01 13:38:55 -08001374 sc->sc_ah->ah_opmode = NL80211_IFTYPE_MONITOR;
1375
Sujithff37e332008-11-24 12:07:55 +05301376
1377 /* Setup rate tables */
1378
1379 ath_rate_attach(sc);
1380 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1381 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1382
1383 /*
1384 * Allocate hardware transmit queues: one queue for
1385 * beacon frames and one data queue for each QoS
1386 * priority. Note that the hal handles reseting
1387 * these queues at the needed time.
1388 */
Sujithb77f4832008-12-07 21:44:03 +05301389 sc->beacon.beaconq = ath_beaconq_setup(ah);
1390 if (sc->beacon.beaconq == -1) {
Sujithff37e332008-11-24 12:07:55 +05301391 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301392 "Unable to setup a beacon xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301393 error = -EIO;
1394 goto bad2;
1395 }
Sujithb77f4832008-12-07 21:44:03 +05301396 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1397 if (sc->beacon.cabq == NULL) {
Sujithff37e332008-11-24 12:07:55 +05301398 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301399 "Unable to setup CAB xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301400 error = -EIO;
1401 goto bad2;
1402 }
1403
1404 sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1405 ath_cabq_update(sc);
1406
Sujithb77f4832008-12-07 21:44:03 +05301407 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
1408 sc->tx.hwq_map[i] = -1;
Sujithff37e332008-11-24 12:07:55 +05301409
1410 /* Setup data queues */
1411 /* NB: ensure BK queue is the lowest priority h/w queue */
1412 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1413 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301414 "Unable to setup xmit queue for BK traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301415 error = -EIO;
1416 goto bad2;
1417 }
1418
1419 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1420 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301421 "Unable to setup xmit queue for BE traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301422 error = -EIO;
1423 goto bad2;
1424 }
1425 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1426 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301427 "Unable to setup xmit queue for VI traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301428 error = -EIO;
1429 goto bad2;
1430 }
1431 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1432 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301433 "Unable to setup xmit queue for VO traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301434 error = -EIO;
1435 goto bad2;
1436 }
1437
1438 /* Initializes the noise floor to a reasonable default value.
1439 * Later on this will be updated during ANI processing. */
1440
1441 sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1442 setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc);
1443
1444 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1445 ATH9K_CIPHER_TKIP, NULL)) {
1446 /*
1447 * Whether we should enable h/w TKIP MIC.
1448 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1449 * report WMM capable, so it's always safe to turn on
1450 * TKIP MIC in this case.
1451 */
1452 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1453 0, 1, NULL);
1454 }
1455
1456 /*
1457 * Check whether the separate key cache entries
1458 * are required to handle both tx+rx MIC keys.
1459 * With split mic keys the number of stations is limited
1460 * to 27 otherwise 59.
1461 */
1462 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1463 ATH9K_CIPHER_TKIP, NULL)
1464 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1465 ATH9K_CIPHER_MIC, NULL)
1466 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1467 0, NULL))
1468 sc->sc_splitmic = 1;
1469
1470 /* turn on mcast key search if possible */
1471 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1472 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1473 1, NULL);
1474
1475 sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1476 sc->sc_config.txpowlimit_override = 0;
1477
1478 /* 11n Capabilities */
1479 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1480 sc->sc_flags |= SC_OP_TXAGGR;
1481 sc->sc_flags |= SC_OP_RXAGGR;
1482 }
1483
1484 sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1485 sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1486
1487 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
Sujithb77f4832008-12-07 21:44:03 +05301488 sc->rx.defant = ath9k_hw_getdefantenna(ah);
Sujithff37e332008-11-24 12:07:55 +05301489
1490 ath9k_hw_getmac(ah, sc->sc_myaddr);
1491 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1492 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1493 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1494 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1495 }
1496
Sujithb77f4832008-12-07 21:44:03 +05301497 sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
Sujithff37e332008-11-24 12:07:55 +05301498
1499 /* initialize beacon slots */
Sujithb77f4832008-12-07 21:44:03 +05301500 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++)
1501 sc->beacon.bslot[i] = ATH_IF_ID_ANY;
Sujithff37e332008-11-24 12:07:55 +05301502
1503 /* save MISC configurations */
1504 sc->sc_config.swBeaconProcess = 1;
1505
Sujithff37e332008-11-24 12:07:55 +05301506 /* setup channels and rates */
1507
1508 sc->sbands[IEEE80211_BAND_2GHZ].channels =
1509 sc->channels[IEEE80211_BAND_2GHZ];
1510 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1511 sc->rates[IEEE80211_BAND_2GHZ];
1512 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
1513
1514 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
1515 sc->sbands[IEEE80211_BAND_5GHZ].channels =
1516 sc->channels[IEEE80211_BAND_5GHZ];
1517 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1518 sc->rates[IEEE80211_BAND_5GHZ];
1519 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
1520 }
1521
1522 return 0;
1523bad2:
1524 /* cleanup tx queues */
1525 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1526 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301527 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujithff37e332008-11-24 12:07:55 +05301528bad:
1529 if (ah)
1530 ath9k_hw_detach(ah);
1531
1532 return error;
1533}
1534
Sujith9c84b792008-10-29 10:17:13 +05301535static int ath_attach(u16 devid, struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301536{
1537 struct ieee80211_hw *hw = sc->hw;
1538 int error = 0;
1539
Sujith04bd4632008-11-28 22:18:05 +05301540 DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301541
1542 error = ath_init(devid, sc);
1543 if (error != 0)
1544 return error;
1545
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301546 /* get mac address from hardware and set in mac80211 */
1547
1548 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
1549
Sujith9c84b792008-10-29 10:17:13 +05301550 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1551 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1552 IEEE80211_HW_SIGNAL_DBM |
1553 IEEE80211_HW_AMPDU_AGGREGATION;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301554
Sujith9c84b792008-10-29 10:17:13 +05301555 hw->wiphy->interface_modes =
1556 BIT(NL80211_IFTYPE_AP) |
1557 BIT(NL80211_IFTYPE_STATION) |
1558 BIT(NL80211_IFTYPE_ADHOC);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301559
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301560 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301561 hw->max_rates = 4;
1562 hw->max_rate_tries = ATH_11N_TXMAXTRY;
Sujith528f0c62008-10-29 10:14:26 +05301563 hw->sta_data_size = sizeof(struct ath_node);
Sujith5640b082008-10-29 10:16:06 +05301564 hw->vif_data_size = sizeof(struct ath_vap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301565
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301566 hw->rate_control_algorithm = "ath9k_rate_control";
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301567
Sujith9c84b792008-10-29 10:17:13 +05301568 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1569 setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
1570 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1571 setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
1572 }
1573
1574 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ];
1575 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1576 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1577 &sc->sbands[IEEE80211_BAND_5GHZ];
1578
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301579 /* initialize tx/rx engine */
1580 error = ath_tx_init(sc, ATH_TXBUF);
1581 if (error != 0)
1582 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301583
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301584 error = ath_rx_init(sc, ATH_RXBUF);
1585 if (error != 0)
1586 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301587
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301588#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301589 /* Initialze h/w Rfkill */
1590 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1591 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
1592
1593 /* Initialize s/w rfkill */
1594 if (ath_init_sw_rfkill(sc))
1595 goto detach;
1596#endif
1597
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301598 error = ieee80211_register_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301599
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301600 /* Initialize LED control */
1601 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301602
1603 return 0;
1604detach:
1605 ath_detach(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301606 return error;
1607}
1608
Sujithff37e332008-11-24 12:07:55 +05301609int ath_reset(struct ath_softc *sc, bool retry_tx)
1610{
1611 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguez030bb492008-12-23 15:58:37 -08001612 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001613 int r;
Sujithff37e332008-11-24 12:07:55 +05301614
1615 ath9k_hw_set_interrupts(ah, 0);
1616 ath_draintxq(sc, retry_tx);
1617 ath_stoprecv(sc);
1618 ath_flushrecv(sc);
1619
1620 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001621 r = ath9k_hw_reset(ah, sc->sc_ah->ah_curchan, false);
1622 if (r)
Sujithff37e332008-11-24 12:07:55 +05301623 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001624 "Unable to reset hardware; reset status %u\n", r);
Sujithff37e332008-11-24 12:07:55 +05301625 spin_unlock_bh(&sc->sc_resetlock);
1626
1627 if (ath_startrecv(sc) != 0)
Sujith04bd4632008-11-28 22:18:05 +05301628 DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301629
1630 /*
1631 * We may be doing a reset in response to a request
1632 * that changes the channel so update any state that
1633 * might change as a result.
1634 */
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08001635 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05301636
1637 ath_update_txpow(sc);
1638
1639 if (sc->sc_flags & SC_OP_BEACONS)
1640 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1641
1642 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1643
1644 if (retry_tx) {
1645 int i;
1646 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1647 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05301648 spin_lock_bh(&sc->tx.txq[i].axq_lock);
1649 ath_txq_schedule(sc, &sc->tx.txq[i]);
1650 spin_unlock_bh(&sc->tx.txq[i].axq_lock);
Sujithff37e332008-11-24 12:07:55 +05301651 }
1652 }
1653 }
1654
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001655 return r;
Sujithff37e332008-11-24 12:07:55 +05301656}
1657
1658/*
1659 * This function will allocate both the DMA descriptor structure, and the
1660 * buffers it contains. These are used to contain the descriptors used
1661 * by the system.
1662*/
1663int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1664 struct list_head *head, const char *name,
1665 int nbuf, int ndesc)
1666{
1667#define DS2PHYS(_dd, _ds) \
1668 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1669#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1670#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1671
1672 struct ath_desc *ds;
1673 struct ath_buf *bf;
1674 int i, bsize, error;
1675
Sujith04bd4632008-11-28 22:18:05 +05301676 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
1677 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301678
1679 /* ath_desc must be a multiple of DWORDs */
1680 if ((sizeof(struct ath_desc) % 4) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05301681 DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301682 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1683 error = -ENOMEM;
1684 goto fail;
1685 }
1686
1687 dd->dd_name = name;
1688 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1689
1690 /*
1691 * Need additional DMA memory because we can't use
1692 * descriptors that cross the 4K page boundary. Assume
1693 * one skipped descriptor per 4K page.
1694 */
1695 if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1696 u32 ndesc_skipped =
1697 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1698 u32 dma_len;
1699
1700 while (ndesc_skipped) {
1701 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1702 dd->dd_desc_len += dma_len;
1703
1704 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1705 };
1706 }
1707
1708 /* allocate descriptors */
1709 dd->dd_desc = pci_alloc_consistent(sc->pdev,
1710 dd->dd_desc_len,
1711 &dd->dd_desc_paddr);
1712 if (dd->dd_desc == NULL) {
1713 error = -ENOMEM;
1714 goto fail;
1715 }
1716 ds = dd->dd_desc;
Sujith04bd4632008-11-28 22:18:05 +05301717 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
1718 dd->dd_name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301719 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1720
1721 /* allocate buffers */
1722 bsize = sizeof(struct ath_buf) * nbuf;
1723 bf = kmalloc(bsize, GFP_KERNEL);
1724 if (bf == NULL) {
1725 error = -ENOMEM;
1726 goto fail2;
1727 }
1728 memset(bf, 0, bsize);
1729 dd->dd_bufptr = bf;
1730
1731 INIT_LIST_HEAD(head);
1732 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1733 bf->bf_desc = ds;
1734 bf->bf_daddr = DS2PHYS(dd, ds);
1735
1736 if (!(sc->sc_ah->ah_caps.hw_caps &
1737 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1738 /*
1739 * Skip descriptor addresses which can cause 4KB
1740 * boundary crossing (addr + length) with a 32 dword
1741 * descriptor fetch.
1742 */
1743 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1744 ASSERT((caddr_t) bf->bf_desc <
1745 ((caddr_t) dd->dd_desc +
1746 dd->dd_desc_len));
1747
1748 ds += ndesc;
1749 bf->bf_desc = ds;
1750 bf->bf_daddr = DS2PHYS(dd, ds);
1751 }
1752 }
1753 list_add_tail(&bf->list, head);
1754 }
1755 return 0;
1756fail2:
1757 pci_free_consistent(sc->pdev,
1758 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1759fail:
1760 memset(dd, 0, sizeof(*dd));
1761 return error;
1762#undef ATH_DESC_4KB_BOUND_CHECK
1763#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1764#undef DS2PHYS
1765}
1766
1767void ath_descdma_cleanup(struct ath_softc *sc,
1768 struct ath_descdma *dd,
1769 struct list_head *head)
1770{
1771 pci_free_consistent(sc->pdev,
1772 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1773
1774 INIT_LIST_HEAD(head);
1775 kfree(dd->dd_bufptr);
1776 memset(dd, 0, sizeof(*dd));
1777}
1778
1779int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1780{
1781 int qnum;
1782
1783 switch (queue) {
1784 case 0:
Sujithb77f4832008-12-07 21:44:03 +05301785 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO];
Sujithff37e332008-11-24 12:07:55 +05301786 break;
1787 case 1:
Sujithb77f4832008-12-07 21:44:03 +05301788 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI];
Sujithff37e332008-11-24 12:07:55 +05301789 break;
1790 case 2:
Sujithb77f4832008-12-07 21:44:03 +05301791 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301792 break;
1793 case 3:
Sujithb77f4832008-12-07 21:44:03 +05301794 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK];
Sujithff37e332008-11-24 12:07:55 +05301795 break;
1796 default:
Sujithb77f4832008-12-07 21:44:03 +05301797 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301798 break;
1799 }
1800
1801 return qnum;
1802}
1803
1804int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1805{
1806 int qnum;
1807
1808 switch (queue) {
1809 case ATH9K_WME_AC_VO:
1810 qnum = 0;
1811 break;
1812 case ATH9K_WME_AC_VI:
1813 qnum = 1;
1814 break;
1815 case ATH9K_WME_AC_BE:
1816 qnum = 2;
1817 break;
1818 case ATH9K_WME_AC_BK:
1819 qnum = 3;
1820 break;
1821 default:
1822 qnum = -1;
1823 break;
1824 }
1825
1826 return qnum;
1827}
1828
1829/**********************/
1830/* mac80211 callbacks */
1831/**********************/
1832
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001833static int ath9k_start(struct ieee80211_hw *hw)
1834{
1835 struct ath_softc *sc = hw->priv;
1836 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05301837 struct ath9k_channel *init_channel;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001838 int r, pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001839
Sujith04bd4632008-11-28 22:18:05 +05301840 DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with "
1841 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001842
1843 /* setup initial channel */
1844
1845 pos = ath_get_channel(sc, curchan);
1846 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05301847 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", curchan->center_freq);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001848 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001849 }
1850
Sujith99405f92008-11-24 12:08:35 +05301851 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001852 sc->sc_ah->ah_channels[pos].chanmode =
1853 (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A;
Sujithff37e332008-11-24 12:07:55 +05301854 init_channel = &sc->sc_ah->ah_channels[pos];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001855
Sujithff37e332008-11-24 12:07:55 +05301856 /* Reset SERDES registers */
1857 ath9k_hw_configpcipowersave(sc->sc_ah, 0);
1858
1859 /*
1860 * The basic interface to setting the hardware in a good
1861 * state is ``reset''. On return the hardware is known to
1862 * be powered up and with interrupts disabled. This must
1863 * be followed by initialization of the appropriate bits
1864 * and then setup of the interrupt mask.
1865 */
1866 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001867 r = ath9k_hw_reset(sc->sc_ah, init_channel, false);
1868 if (r) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001869 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001870 "Unable to reset hardware; reset status %u "
1871 "(freq %u MHz)\n", r,
1872 curchan->center_freq);
Sujithff37e332008-11-24 12:07:55 +05301873 spin_unlock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001874 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001875 }
Sujithff37e332008-11-24 12:07:55 +05301876 spin_unlock_bh(&sc->sc_resetlock);
1877
1878 /*
1879 * This is needed only to setup initial state
1880 * but it's best done after a reset.
1881 */
1882 ath_update_txpow(sc);
1883
1884 /*
1885 * Setup the hardware after reset:
1886 * The receive engine is set going.
1887 * Frame transmit is handled entirely
1888 * in the frame output path; there's nothing to do
1889 * here except setup the interrupt mask.
1890 */
1891 if (ath_startrecv(sc) != 0) {
1892 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301893 "Unable to start recv logic\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001894 return -EIO;
Sujithff37e332008-11-24 12:07:55 +05301895 }
1896
1897 /* Setup our intr mask. */
1898 sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
1899 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
1900 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
1901
1902 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
1903 sc->sc_imask |= ATH9K_INT_GTT;
1904
1905 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
1906 sc->sc_imask |= ATH9K_INT_CST;
1907
1908 /*
1909 * Enable MIB interrupts when there are hardware phy counters.
1910 * Note we only do this (at the moment) for station mode.
1911 */
1912 if (ath9k_hw_phycounters(sc->sc_ah) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001913 ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) ||
1914 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC)))
Sujithff37e332008-11-24 12:07:55 +05301915 sc->sc_imask |= ATH9K_INT_MIB;
1916 /*
1917 * Some hardware processes the TIM IE and fires an
1918 * interrupt when the TIM bit is set. For hardware
1919 * that does, if not overridden by configuration,
1920 * enable the TIM interrupt when operating as station.
1921 */
1922 if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001923 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) &&
Sujithff37e332008-11-24 12:07:55 +05301924 !sc->sc_config.swBeaconProcess)
1925 sc->sc_imask |= ATH9K_INT_TIM;
1926
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08001927 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05301928
1929 sc->sc_flags &= ~SC_OP_INVALID;
1930
1931 /* Disable BMISS interrupt when we're not associated */
1932 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1933 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1934
1935 ieee80211_wake_queues(sc->hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001936
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301937#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001938 r = ath_start_rfkill_poll(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301939#endif
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001940 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001941}
1942
1943static int ath9k_tx(struct ieee80211_hw *hw,
1944 struct sk_buff *skb)
1945{
Jouni Malinen147583c2008-08-11 14:01:50 +03001946 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Sujith528f0c62008-10-29 10:14:26 +05301947 struct ath_softc *sc = hw->priv;
1948 struct ath_tx_control txctl;
1949 int hdrlen, padsize;
1950
1951 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03001952
1953 /*
1954 * As a temporary workaround, assign seq# here; this will likely need
1955 * to be cleaned up to work better with Beacon transmission and virtual
1956 * BSSes.
1957 */
1958 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1959 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1960 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Sujithb77f4832008-12-07 21:44:03 +05301961 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +03001962 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +05301963 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +03001964 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001965
1966 /* Add the padding after the header if this is not already done */
1967 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1968 if (hdrlen & 3) {
1969 padsize = hdrlen % 4;
1970 if (skb_headroom(skb) < padsize)
1971 return -1;
1972 skb_push(skb, padsize);
1973 memmove(skb->data, skb->data + padsize, hdrlen);
1974 }
1975
Sujith528f0c62008-10-29 10:14:26 +05301976 /* Check if a tx queue is available */
1977
1978 txctl.txq = ath_test_get_txq(sc, skb);
1979 if (!txctl.txq)
1980 goto exit;
1981
Sujith04bd4632008-11-28 22:18:05 +05301982 DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001983
Sujith528f0c62008-10-29 10:14:26 +05301984 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05301985 DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05301986 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001987 }
1988
1989 return 0;
Sujith528f0c62008-10-29 10:14:26 +05301990exit:
1991 dev_kfree_skb_any(skb);
1992 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001993}
1994
1995static void ath9k_stop(struct ieee80211_hw *hw)
1996{
1997 struct ath_softc *sc = hw->priv;
Sujith9c84b792008-10-29 10:17:13 +05301998
1999 if (sc->sc_flags & SC_OP_INVALID) {
Sujith04bd4632008-11-28 22:18:05 +05302000 DPRINTF(sc, ATH_DBG_ANY, "Device not present\n");
Sujith9c84b792008-10-29 10:17:13 +05302001 return;
2002 }
2003
Sujith04bd4632008-11-28 22:18:05 +05302004 DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n");
Sujithff37e332008-11-24 12:07:55 +05302005
2006 ieee80211_stop_queues(sc->hw);
2007
2008 /* make sure h/w will not generate any interrupt
2009 * before setting the invalid flag. */
2010 ath9k_hw_set_interrupts(sc->sc_ah, 0);
2011
2012 if (!(sc->sc_flags & SC_OP_INVALID)) {
2013 ath_draintxq(sc, false);
2014 ath_stoprecv(sc);
2015 ath9k_hw_phy_disable(sc->sc_ah);
2016 } else
Sujithb77f4832008-12-07 21:44:03 +05302017 sc->rx.rxlink = NULL;
Sujithff37e332008-11-24 12:07:55 +05302018
2019#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
2020 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2021 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2022#endif
2023 /* disable HAL and put h/w to sleep */
2024 ath9k_hw_disable(sc->sc_ah);
2025 ath9k_hw_configpcipowersave(sc->sc_ah, 1);
2026
2027 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002028
Sujith04bd4632008-11-28 22:18:05 +05302029 DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002030}
2031
2032static int ath9k_add_interface(struct ieee80211_hw *hw,
2033 struct ieee80211_if_init_conf *conf)
2034{
2035 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302036 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08002037 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002038
2039 /* Support only vap for now */
2040
2041 if (sc->sc_nvaps)
2042 return -ENOBUFS;
2043
2044 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002045 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002046 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002047 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002048 case NL80211_IFTYPE_ADHOC:
Colin McCabed97809d2008-12-01 13:38:55 -08002049 ic_opmode = NL80211_IFTYPE_ADHOC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002050 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002051 case NL80211_IFTYPE_AP:
Colin McCabed97809d2008-12-01 13:38:55 -08002052 ic_opmode = NL80211_IFTYPE_AP;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002053 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002054 default:
2055 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302056 "Interface type %d not yet supported\n", conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002057 return -EOPNOTSUPP;
2058 }
2059
Sujith04bd4632008-11-28 22:18:05 +05302060 DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002061
Sujith5640b082008-10-29 10:16:06 +05302062 /* Set the VAP opmode */
2063 avp->av_opmode = ic_opmode;
2064 avp->av_bslot = -1;
2065
Colin McCabed97809d2008-12-01 13:38:55 -08002066 if (ic_opmode == NL80211_IFTYPE_AP)
Sujith5640b082008-10-29 10:16:06 +05302067 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2068
2069 sc->sc_vaps[0] = conf->vif;
2070 sc->sc_nvaps++;
2071
2072 /* Set the device opmode */
2073 sc->sc_ah->ah_opmode = ic_opmode;
2074
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002075 if (conf->type == NL80211_IFTYPE_AP) {
2076 /* TODO: is this a suitable place to start ANI for AP mode? */
2077 /* Start ANI */
2078 mod_timer(&sc->sc_ani.timer,
2079 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
2080 }
2081
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002082 return 0;
2083}
2084
2085static void ath9k_remove_interface(struct ieee80211_hw *hw,
2086 struct ieee80211_if_init_conf *conf)
2087{
2088 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302089 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002090
Sujith04bd4632008-11-28 22:18:05 +05302091 DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002092
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002093 /* Stop ANI */
2094 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002095
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002096 /* Reclaim beacon resources */
Colin McCabed97809d2008-12-01 13:38:55 -08002097 if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP ||
2098 sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) {
Sujithb77f4832008-12-07 21:44:03 +05302099 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002100 ath_beacon_return(sc, avp);
2101 }
2102
Sujith672840a2008-08-11 14:05:08 +05302103 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002104
Sujith5640b082008-10-29 10:16:06 +05302105 sc->sc_vaps[0] = NULL;
2106 sc->sc_nvaps--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002107}
2108
Johannes Berge8975582008-10-09 12:18:51 +02002109static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002110{
2111 struct ath_softc *sc = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002112 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002113
Sujithaa33de02008-12-18 11:40:16 +05302114 mutex_lock(&sc->mutex);
Sujith094d05d2008-12-12 11:57:43 +05302115 if (changed & (IEEE80211_CONF_CHANGE_CHANNEL |
2116 IEEE80211_CONF_CHANGE_HT)) {
Sujith99405f92008-11-24 12:08:35 +05302117 struct ieee80211_channel *curchan = hw->conf.channel;
2118 int pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002119
Sujith04bd4632008-11-28 22:18:05 +05302120 DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2121 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002122
Sujith99405f92008-11-24 12:08:35 +05302123 pos = ath_get_channel(sc, curchan);
2124 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05302125 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n",
2126 curchan->center_freq);
Sujithaa33de02008-12-18 11:40:16 +05302127 mutex_unlock(&sc->mutex);
Sujith99405f92008-11-24 12:08:35 +05302128 return -EINVAL;
2129 }
2130
2131 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
2132 sc->sc_ah->ah_channels[pos].chanmode =
2133 (curchan->band == IEEE80211_BAND_2GHZ) ?
2134 CHANNEL_G : CHANNEL_A;
2135
Sujith094d05d2008-12-12 11:57:43 +05302136 if (conf->ht.enabled) {
2137 if (conf->ht.channel_type == NL80211_CHAN_HT40PLUS ||
2138 conf->ht.channel_type == NL80211_CHAN_HT40MINUS)
2139 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
Sujithe11602b2008-11-27 09:46:27 +05302140
2141 sc->sc_ah->ah_channels[pos].chanmode =
2142 ath_get_extchanmode(sc, curchan,
Sujith094d05d2008-12-12 11:57:43 +05302143 conf->ht.channel_type);
Sujithe11602b2008-11-27 09:46:27 +05302144 }
2145
Sujith86060f02009-01-07 14:25:29 +05302146 ath_update_chainmask(sc, conf->ht.enabled);
2147
Sujithe11602b2008-11-27 09:46:27 +05302148 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) {
Sujith04bd4632008-11-28 22:18:05 +05302149 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithaa33de02008-12-18 11:40:16 +05302150 mutex_unlock(&sc->mutex);
Sujithe11602b2008-11-27 09:46:27 +05302151 return -EINVAL;
2152 }
Sujith094d05d2008-12-12 11:57:43 +05302153 }
Sujith86b89ee2008-08-07 10:54:57 +05302154
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002155 if (changed & IEEE80211_CONF_CHANGE_POWER)
2156 sc->sc_config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002157
Sujithaa33de02008-12-18 11:40:16 +05302158 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002159 return 0;
2160}
2161
2162static int ath9k_config_interface(struct ieee80211_hw *hw,
2163 struct ieee80211_vif *vif,
2164 struct ieee80211_if_conf *conf)
2165{
2166 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002167 struct ath_hal *ah = sc->sc_ah;
Sujith5640b082008-10-29 10:16:06 +05302168 struct ath_vap *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002169 u32 rfilt = 0;
2170 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002171
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002172 /* TODO: Need to decide which hw opmode to use for multi-interface
2173 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02002174 if (vif->type == NL80211_IFTYPE_AP &&
Colin McCabed97809d2008-12-01 13:38:55 -08002175 ah->ah_opmode != NL80211_IFTYPE_AP) {
2176 ah->ah_opmode = NL80211_IFTYPE_STATION;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002177 ath9k_hw_setopmode(ah);
2178 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
2179 /* Request full reset to get hw opmode changed properly */
2180 sc->sc_flags |= SC_OP_FULL_RESET;
2181 }
2182
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002183 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
2184 !is_zero_ether_addr(conf->bssid)) {
2185 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002186 case NL80211_IFTYPE_STATION:
2187 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002188 /* Set BSSID */
2189 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
2190 sc->sc_curaid = 0;
2191 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
2192 sc->sc_curaid);
2193
2194 /* Set aggregation protection mode parameters */
2195 sc->sc_config.ath_aggr_prot = 0;
2196
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002197 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302198 "RX filter 0x%x bssid %pM aid 0x%x\n",
2199 rfilt, sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002200
2201 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05302202 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002203
2204 break;
2205 default:
2206 break;
2207 }
2208 }
2209
2210 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002211 ((vif->type == NL80211_IFTYPE_ADHOC) ||
2212 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002213 /*
2214 * Allocate and setup the beacon frame.
2215 *
2216 * Stop any previous beacon DMA. This may be
2217 * necessary, for example, when an ibss merge
2218 * causes reconfiguration; we may be called
2219 * with beacon transmission active.
2220 */
Sujithb77f4832008-12-07 21:44:03 +05302221 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002222
2223 error = ath_beacon_alloc(sc, 0);
2224 if (error != 0)
2225 return error;
2226
2227 ath_beacon_sync(sc, 0);
2228 }
2229
2230 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Colin McCabed97809d2008-12-01 13:38:55 -08002231 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002232 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2233 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2234 ath9k_hw_keysetmac(sc->sc_ah,
2235 (u16)i,
2236 sc->sc_curbssid);
2237 }
2238
2239 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02002240 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002241 ath_update_chainmask(sc, 0);
2242
2243 return 0;
2244}
2245
2246#define SUPPORTED_FILTERS \
2247 (FIF_PROMISC_IN_BSS | \
2248 FIF_ALLMULTI | \
2249 FIF_CONTROL | \
2250 FIF_OTHER_BSS | \
2251 FIF_BCN_PRBRESP_PROMISC | \
2252 FIF_FCSFAIL)
2253
Sujith7dcfdcd2008-08-11 14:03:13 +05302254/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002255static void ath9k_configure_filter(struct ieee80211_hw *hw,
2256 unsigned int changed_flags,
2257 unsigned int *total_flags,
2258 int mc_count,
2259 struct dev_mc_list *mclist)
2260{
2261 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05302262 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002263
2264 changed_flags &= SUPPORTED_FILTERS;
2265 *total_flags &= SUPPORTED_FILTERS;
2266
Sujithb77f4832008-12-07 21:44:03 +05302267 sc->rx.rxfilter = *total_flags;
Sujith7dcfdcd2008-08-11 14:03:13 +05302268 rfilt = ath_calcrxfilter(sc);
2269 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2270
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002271 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2272 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05302273 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002274 }
Sujith7dcfdcd2008-08-11 14:03:13 +05302275
Sujithb77f4832008-12-07 21:44:03 +05302276 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx.rxfilter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002277}
2278
2279static void ath9k_sta_notify(struct ieee80211_hw *hw,
2280 struct ieee80211_vif *vif,
2281 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002282 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002283{
2284 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002285
2286 switch (cmd) {
2287 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302288 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002289 break;
2290 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302291 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002292 break;
2293 default:
2294 break;
2295 }
2296}
2297
2298static int ath9k_conf_tx(struct ieee80211_hw *hw,
2299 u16 queue,
2300 const struct ieee80211_tx_queue_params *params)
2301{
2302 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05302303 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002304 int ret = 0, qnum;
2305
2306 if (queue >= WME_NUM_AC)
2307 return 0;
2308
2309 qi.tqi_aifs = params->aifs;
2310 qi.tqi_cwmin = params->cw_min;
2311 qi.tqi_cwmax = params->cw_max;
2312 qi.tqi_burstTime = params->txop;
2313 qnum = ath_get_hal_qnum(queue, sc);
2314
2315 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302316 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002317 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd4632008-11-28 22:18:05 +05302318 queue, qnum, params->aifs, params->cw_min,
2319 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002320
2321 ret = ath_txq_update(sc, qnum, &qi);
2322 if (ret)
Sujith04bd4632008-11-28 22:18:05 +05302323 DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002324
2325 return ret;
2326}
2327
2328static int ath9k_set_key(struct ieee80211_hw *hw,
2329 enum set_key_cmd cmd,
2330 const u8 *local_addr,
2331 const u8 *addr,
2332 struct ieee80211_key_conf *key)
2333{
2334 struct ath_softc *sc = hw->priv;
2335 int ret = 0;
2336
Sujith04bd4632008-11-28 22:18:05 +05302337 DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002338
2339 switch (cmd) {
2340 case SET_KEY:
2341 ret = ath_key_config(sc, addr, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02002342 if (ret >= 0) {
2343 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002344 /* push IV and Michael MIC generation to stack */
2345 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302346 if (key->alg == ALG_TKIP)
2347 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Jouni Malinen6ace2892008-12-17 13:32:17 +02002348 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002349 }
2350 break;
2351 case DISABLE_KEY:
2352 ath_key_delete(sc, key);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002353 break;
2354 default:
2355 ret = -EINVAL;
2356 }
2357
2358 return ret;
2359}
2360
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002361static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2362 struct ieee80211_vif *vif,
2363 struct ieee80211_bss_conf *bss_conf,
2364 u32 changed)
2365{
2366 struct ath_softc *sc = hw->priv;
2367
2368 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Sujith04bd4632008-11-28 22:18:05 +05302369 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002370 bss_conf->use_short_preamble);
2371 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302372 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002373 else
Sujith672840a2008-08-11 14:05:08 +05302374 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002375 }
2376
2377 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Sujith04bd4632008-11-28 22:18:05 +05302378 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002379 bss_conf->use_cts_prot);
2380 if (bss_conf->use_cts_prot &&
2381 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302382 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002383 else
Sujith672840a2008-08-11 14:05:08 +05302384 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002385 }
2386
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002387 if (changed & BSS_CHANGED_ASSOC) {
Sujith04bd4632008-11-28 22:18:05 +05302388 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002389 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302390 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002391 }
2392}
2393
2394static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2395{
2396 u64 tsf;
2397 struct ath_softc *sc = hw->priv;
2398 struct ath_hal *ah = sc->sc_ah;
2399
2400 tsf = ath9k_hw_gettsf64(ah);
2401
2402 return tsf;
2403}
2404
2405static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2406{
2407 struct ath_softc *sc = hw->priv;
2408 struct ath_hal *ah = sc->sc_ah;
2409
2410 ath9k_hw_reset_tsf(ah);
2411}
2412
2413static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2414 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002415 struct ieee80211_sta *sta,
2416 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002417{
2418 struct ath_softc *sc = hw->priv;
2419 int ret = 0;
2420
2421 switch (action) {
2422 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302423 if (!(sc->sc_flags & SC_OP_RXAGGR))
2424 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002425 break;
2426 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002427 break;
2428 case IEEE80211_AMPDU_TX_START:
Sujithb5aa9bf2008-10-29 10:13:31 +05302429 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002430 if (ret < 0)
2431 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302432 "Unable to start TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002433 else
Johannes Berg17741cd2008-09-11 00:02:02 +02002434 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002435 break;
2436 case IEEE80211_AMPDU_TX_STOP:
Sujithb5aa9bf2008-10-29 10:13:31 +05302437 ret = ath_tx_aggr_stop(sc, sta, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002438 if (ret < 0)
2439 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302440 "Unable to stop TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002441
Johannes Berg17741cd2008-09-11 00:02:02 +02002442 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002443 break;
Sujith8469cde2008-10-29 10:19:28 +05302444 case IEEE80211_AMPDU_TX_RESUME:
2445 ath_tx_aggr_resume(sc, sta, tid);
2446 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002447 default:
Sujith04bd4632008-11-28 22:18:05 +05302448 DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002449 }
2450
2451 return ret;
2452}
2453
2454static struct ieee80211_ops ath9k_ops = {
2455 .tx = ath9k_tx,
2456 .start = ath9k_start,
2457 .stop = ath9k_stop,
2458 .add_interface = ath9k_add_interface,
2459 .remove_interface = ath9k_remove_interface,
2460 .config = ath9k_config,
2461 .config_interface = ath9k_config_interface,
2462 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002463 .sta_notify = ath9k_sta_notify,
2464 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002465 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002466 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002467 .get_tsf = ath9k_get_tsf,
2468 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002469 .ampdu_action = ath9k_ampdu_action,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002470};
2471
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002472static struct {
2473 u32 version;
2474 const char * name;
2475} ath_mac_bb_names[] = {
2476 { AR_SREV_VERSION_5416_PCI, "5416" },
2477 { AR_SREV_VERSION_5416_PCIE, "5418" },
2478 { AR_SREV_VERSION_9100, "9100" },
2479 { AR_SREV_VERSION_9160, "9160" },
2480 { AR_SREV_VERSION_9280, "9280" },
2481 { AR_SREV_VERSION_9285, "9285" }
2482};
2483
2484static struct {
2485 u16 version;
2486 const char * name;
2487} ath_rf_names[] = {
2488 { 0, "5133" },
2489 { AR_RAD5133_SREV_MAJOR, "5133" },
2490 { AR_RAD5122_SREV_MAJOR, "5122" },
2491 { AR_RAD2133_SREV_MAJOR, "2133" },
2492 { AR_RAD2122_SREV_MAJOR, "2122" }
2493};
2494
2495/*
2496 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2497 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002498static const char *
2499ath_mac_bb_name(u32 mac_bb_version)
2500{
2501 int i;
2502
2503 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2504 if (ath_mac_bb_names[i].version == mac_bb_version) {
2505 return ath_mac_bb_names[i].name;
2506 }
2507 }
2508
2509 return "????";
2510}
2511
2512/*
2513 * Return the RF name. "????" is returned if the RF is unknown.
2514 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002515static const char *
2516ath_rf_name(u16 rf_version)
2517{
2518 int i;
2519
2520 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2521 if (ath_rf_names[i].version == rf_version) {
2522 return ath_rf_names[i].name;
2523 }
2524 }
2525
2526 return "????";
2527}
2528
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002529static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2530{
2531 void __iomem *mem;
2532 struct ath_softc *sc;
2533 struct ieee80211_hw *hw;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002534 u8 csz;
2535 u32 val;
2536 int ret = 0;
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002537 struct ath_hal *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002538
2539 if (pci_enable_device(pdev))
2540 return -EIO;
2541
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002542 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2543
2544 if (ret) {
Luis R. Rodriguez1d450cf2008-11-13 19:11:56 -08002545 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002546 goto bad;
2547 }
2548
2549 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2550
2551 if (ret) {
2552 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
Sujith04bd4632008-11-28 22:18:05 +05302553 "DMA enable failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002554 goto bad;
2555 }
2556
2557 /*
2558 * Cache line size is used to size and align various
2559 * structures used to communicate with the hardware.
2560 */
2561 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
2562 if (csz == 0) {
2563 /*
2564 * Linux 2.4.18 (at least) writes the cache line size
2565 * register as a 16-bit wide register which is wrong.
2566 * We must have this setup properly for rx buffer
2567 * DMA to work so force a reasonable value here if it
2568 * comes up zero.
2569 */
2570 csz = L1_CACHE_BYTES / sizeof(u32);
2571 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
2572 }
2573 /*
2574 * The default setting of latency timer yields poor results,
2575 * set it to the value used by other systems. It may be worth
2576 * tweaking this setting more.
2577 */
2578 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
2579
2580 pci_set_master(pdev);
2581
2582 /*
2583 * Disable the RETRY_TIMEOUT register (0x41) to keep
2584 * PCI Tx retries from interfering with C3 CPU state.
2585 */
2586 pci_read_config_dword(pdev, 0x40, &val);
2587 if ((val & 0x0000ff00) != 0)
2588 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2589
2590 ret = pci_request_region(pdev, 0, "ath9k");
2591 if (ret) {
2592 dev_err(&pdev->dev, "PCI memory region reserve error\n");
2593 ret = -ENODEV;
2594 goto bad;
2595 }
2596
2597 mem = pci_iomap(pdev, 0, 0);
2598 if (!mem) {
2599 printk(KERN_ERR "PCI memory map error\n") ;
2600 ret = -EIO;
2601 goto bad1;
2602 }
2603
2604 hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops);
2605 if (hw == NULL) {
2606 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n");
2607 goto bad2;
2608 }
2609
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002610 SET_IEEE80211_DEV(hw, &pdev->dev);
2611 pci_set_drvdata(pdev, hw);
2612
2613 sc = hw->priv;
2614 sc->hw = hw;
2615 sc->pdev = pdev;
2616 sc->mem = mem;
2617
2618 if (ath_attach(id->device, sc) != 0) {
2619 ret = -ENODEV;
2620 goto bad3;
2621 }
2622
2623 /* setup interrupt service routine */
2624
2625 if (request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc)) {
2626 printk(KERN_ERR "%s: request_irq failed\n",
2627 wiphy_name(hw->wiphy));
2628 ret = -EIO;
2629 goto bad4;
2630 }
2631
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002632 ah = sc->sc_ah;
2633 printk(KERN_INFO
2634 "%s: Atheros AR%s MAC/BB Rev:%x "
2635 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002636 wiphy_name(hw->wiphy),
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002637 ath_mac_bb_name(ah->ah_macVersion),
2638 ah->ah_macRev,
2639 ath_rf_name((ah->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR)),
2640 ah->ah_phyRev,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002641 (unsigned long)mem, pdev->irq);
2642
2643 return 0;
2644bad4:
2645 ath_detach(sc);
2646bad3:
2647 ieee80211_free_hw(hw);
2648bad2:
2649 pci_iounmap(pdev, mem);
2650bad1:
2651 pci_release_region(pdev, 0);
2652bad:
2653 pci_disable_device(pdev);
2654 return ret;
2655}
2656
2657static void ath_pci_remove(struct pci_dev *pdev)
2658{
2659 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2660 struct ath_softc *sc = hw->priv;
2661
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002662 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05302663 if (pdev->irq)
2664 free_irq(pdev->irq, sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002665 pci_iounmap(pdev, sc->mem);
2666 pci_release_region(pdev, 0);
2667 pci_disable_device(pdev);
2668 ieee80211_free_hw(hw);
2669}
2670
2671#ifdef CONFIG_PM
2672
2673static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2674{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302675 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2676 struct ath_softc *sc = hw->priv;
2677
2678 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302679
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302680#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302681 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2682 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2683#endif
2684
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002685 pci_save_state(pdev);
2686 pci_disable_device(pdev);
2687 pci_set_power_state(pdev, 3);
2688
2689 return 0;
2690}
2691
2692static int ath_pci_resume(struct pci_dev *pdev)
2693{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302694 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2695 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002696 u32 val;
2697 int err;
2698
2699 err = pci_enable_device(pdev);
2700 if (err)
2701 return err;
2702 pci_restore_state(pdev);
2703 /*
2704 * Suspend/Resume resets the PCI configuration space, so we have to
2705 * re-disable the RETRY_TIMEOUT register (0x41) to keep
2706 * PCI Tx retries from interfering with C3 CPU state
2707 */
2708 pci_read_config_dword(pdev, 0x40, &val);
2709 if ((val & 0x0000ff00) != 0)
2710 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2711
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302712 /* Enable LED */
2713 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
2714 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
2715 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
2716
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302717#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302718 /*
2719 * check the h/w rfkill state on resume
2720 * and start the rfkill poll timer
2721 */
2722 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2723 queue_delayed_work(sc->hw->workqueue,
2724 &sc->rf_kill.rfkill_poll, 0);
2725#endif
2726
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002727 return 0;
2728}
2729
2730#endif /* CONFIG_PM */
2731
2732MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
2733
2734static struct pci_driver ath_pci_driver = {
2735 .name = "ath9k",
2736 .id_table = ath_pci_id_table,
2737 .probe = ath_pci_probe,
2738 .remove = ath_pci_remove,
2739#ifdef CONFIG_PM
2740 .suspend = ath_pci_suspend,
2741 .resume = ath_pci_resume,
2742#endif /* CONFIG_PM */
2743};
2744
2745static int __init init_ath_pci(void)
2746{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302747 int error;
2748
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002749 printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
2750
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302751 /* Register rate control algorithm */
2752 error = ath_rate_control_register();
2753 if (error != 0) {
2754 printk(KERN_ERR
2755 "Unable to register rate control algorithm: %d\n",
2756 error);
2757 ath_rate_control_unregister();
2758 return error;
2759 }
2760
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002761 if (pci_register_driver(&ath_pci_driver) < 0) {
2762 printk(KERN_ERR
2763 "ath_pci: No devices found, driver not installed.\n");
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302764 ath_rate_control_unregister();
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002765 pci_unregister_driver(&ath_pci_driver);
2766 return -ENODEV;
2767 }
2768
2769 return 0;
2770}
2771module_init(init_ath_pci);
2772
2773static void __exit exit_ath_pci(void)
2774{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302775 ath_rate_control_unregister();
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002776 pci_unregister_driver(&ath_pci_driver);
Sujith04bd4632008-11-28 22:18:05 +05302777 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002778}
2779module_exit(exit_ath_pci);