blob: 8929b02aa22d1669c8ed17810b36cb3b5b77458c [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
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800271 /*
272 * This is only performed if the channel settings have
273 * actually changed.
274 *
275 * To switch channels clear any pending DMA operations;
276 * wait long enough for the RX fifo to drain, reset the
277 * hardware at the new frequency, and then re-enable
278 * the relevant bits of the h/w.
279 */
280 ath9k_hw_set_interrupts(ah, 0);
281 ath_draintxq(sc, false);
282 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530283
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800284 /* XXX: do not flush receive queue here. We don't want
285 * to flush data frames already in queue because of
286 * changing channel. */
Sujithff37e332008-11-24 12:07:55 +0530287
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800288 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
289 fastcc = false;
Sujithff37e332008-11-24 12:07:55 +0530290
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800291 DPRINTF(sc, ATH_DBG_CONFIG,
292 "(%u MHz) -> (%u MHz), chanwidth: %d\n",
293 sc->sc_ah->ah_curchan->channel,
294 channel->center_freq, sc->tx_chan_width);
Sujith99405f92008-11-24 12:08:35 +0530295
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800296 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800297
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800298 r = ath9k_hw_reset(ah, hchan, fastcc);
299 if (r) {
300 DPRINTF(sc, ATH_DBG_FATAL,
301 "Unable to reset channel (%u Mhz) "
302 "reset status %u\n",
303 channel->center_freq, r);
Sujithff37e332008-11-24 12:07:55 +0530304 spin_unlock_bh(&sc->sc_resetlock);
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800305 return r;
Sujithff37e332008-11-24 12:07:55 +0530306 }
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800307 spin_unlock_bh(&sc->sc_resetlock);
308
309 sc->sc_flags &= ~SC_OP_CHAINMASK_UPDATE;
310 sc->sc_flags &= ~SC_OP_FULL_RESET;
311
312 if (ath_startrecv(sc) != 0) {
313 DPRINTF(sc, ATH_DBG_FATAL,
314 "Unable to restart recv logic\n");
315 return -EIO;
316 }
317
318 ath_cache_conf_rate(sc, &hw->conf);
319 ath_update_txpow(sc);
320 ath9k_hw_set_interrupts(ah, sc->sc_imask);
Sujithff37e332008-11-24 12:07:55 +0530321 return 0;
322}
323
324/*
325 * This routine performs the periodic noise floor calibration function
326 * that is used to adjust and optimize the chip performance. This
327 * takes environmental changes (location, temperature) into account.
328 * When the task is complete, it reschedules itself depending on the
329 * appropriate interval that was calculated.
330 */
331static void ath_ani_calibrate(unsigned long data)
332{
333 struct ath_softc *sc;
334 struct ath_hal *ah;
335 bool longcal = false;
336 bool shortcal = false;
337 bool aniflag = false;
338 unsigned int timestamp = jiffies_to_msecs(jiffies);
339 u32 cal_interval;
340
341 sc = (struct ath_softc *)data;
342 ah = sc->sc_ah;
343
344 /*
345 * don't calibrate when we're scanning.
346 * we are most likely not on our home channel.
347 */
Sujithb77f4832008-12-07 21:44:03 +0530348 if (sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC)
Sujithff37e332008-11-24 12:07:55 +0530349 return;
350
351 /* Long calibration runs independently of short calibration. */
352 if ((timestamp - sc->sc_ani.sc_longcal_timer) >= ATH_LONG_CALINTERVAL) {
353 longcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530354 DPRINTF(sc, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530355 sc->sc_ani.sc_longcal_timer = timestamp;
356 }
357
358 /* Short calibration applies only while sc_caldone is false */
359 if (!sc->sc_ani.sc_caldone) {
360 if ((timestamp - sc->sc_ani.sc_shortcal_timer) >=
361 ATH_SHORT_CALINTERVAL) {
362 shortcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530363 DPRINTF(sc, ATH_DBG_ANI, "shortcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530364 sc->sc_ani.sc_shortcal_timer = timestamp;
365 sc->sc_ani.sc_resetcal_timer = timestamp;
366 }
367 } else {
368 if ((timestamp - sc->sc_ani.sc_resetcal_timer) >=
369 ATH_RESTART_CALINTERVAL) {
Luis R. Rodriguezc9e27d92008-12-23 15:58:42 -0800370 sc->sc_ani.sc_caldone = ath9k_hw_reset_calvalid(ah);
Sujithff37e332008-11-24 12:07:55 +0530371 if (sc->sc_ani.sc_caldone)
372 sc->sc_ani.sc_resetcal_timer = timestamp;
373 }
374 }
375
376 /* Verify whether we must check ANI */
377 if ((timestamp - sc->sc_ani.sc_checkani_timer) >=
378 ATH_ANI_POLLINTERVAL) {
379 aniflag = true;
380 sc->sc_ani.sc_checkani_timer = timestamp;
381 }
382
383 /* Skip all processing if there's nothing to do. */
384 if (longcal || shortcal || aniflag) {
385 /* Call ANI routine if necessary */
386 if (aniflag)
387 ath9k_hw_ani_monitor(ah, &sc->sc_halstats,
388 ah->ah_curchan);
389
390 /* Perform calibration if necessary */
391 if (longcal || shortcal) {
392 bool iscaldone = false;
393
394 if (ath9k_hw_calibrate(ah, ah->ah_curchan,
395 sc->sc_rx_chainmask, longcal,
396 &iscaldone)) {
397 if (longcal)
398 sc->sc_ani.sc_noise_floor =
399 ath9k_hw_getchan_noise(ah,
400 ah->ah_curchan);
401
402 DPRINTF(sc, ATH_DBG_ANI,
Sujith04bd4632008-11-28 22:18:05 +0530403 "calibrate chan %u/%x nf: %d\n",
Sujithff37e332008-11-24 12:07:55 +0530404 ah->ah_curchan->channel,
405 ah->ah_curchan->channelFlags,
406 sc->sc_ani.sc_noise_floor);
407 } else {
408 DPRINTF(sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +0530409 "calibrate chan %u/%x failed\n",
Sujithff37e332008-11-24 12:07:55 +0530410 ah->ah_curchan->channel,
411 ah->ah_curchan->channelFlags);
412 }
413 sc->sc_ani.sc_caldone = iscaldone;
414 }
415 }
416
417 /*
418 * Set timer interval based on previous results.
419 * The interval must be the shortest necessary to satisfy ANI,
420 * short calibration and long calibration.
421 */
Sujithaac92072008-12-02 18:37:54 +0530422 cal_interval = ATH_LONG_CALINTERVAL;
423 if (sc->sc_ah->ah_config.enable_ani)
424 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
Sujithff37e332008-11-24 12:07:55 +0530425 if (!sc->sc_ani.sc_caldone)
426 cal_interval = min(cal_interval, (u32)ATH_SHORT_CALINTERVAL);
427
428 mod_timer(&sc->sc_ani.timer, jiffies + msecs_to_jiffies(cal_interval));
429}
430
431/*
432 * Update tx/rx chainmask. For legacy association,
433 * hard code chainmask to 1x1, for 11n association, use
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +0530434 * the chainmask configuration, for bt coexistence, use
435 * the chainmask configuration even in legacy mode.
Sujithff37e332008-11-24 12:07:55 +0530436 */
437static void ath_update_chainmask(struct ath_softc *sc, int is_ht)
438{
439 sc->sc_flags |= SC_OP_CHAINMASK_UPDATE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +0530440 if (is_ht ||
441 (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_BT_COEX)) {
Sujithff37e332008-11-24 12:07:55 +0530442 sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask;
443 sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask;
444 } else {
445 sc->sc_tx_chainmask = 1;
446 sc->sc_rx_chainmask = 1;
447 }
448
Sujith04bd4632008-11-28 22:18:05 +0530449 DPRINTF(sc, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n",
450 sc->sc_tx_chainmask, sc->sc_rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530451}
452
453static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
454{
455 struct ath_node *an;
456
457 an = (struct ath_node *)sta->drv_priv;
458
459 if (sc->sc_flags & SC_OP_TXAGGR)
460 ath_tx_node_init(sc, an);
461
462 an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR +
463 sta->ht_cap.ampdu_factor);
464 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
465}
466
467static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
468{
469 struct ath_node *an = (struct ath_node *)sta->drv_priv;
470
471 if (sc->sc_flags & SC_OP_TXAGGR)
472 ath_tx_node_cleanup(sc, an);
473}
474
475static void ath9k_tasklet(unsigned long data)
476{
477 struct ath_softc *sc = (struct ath_softc *)data;
478 u32 status = sc->sc_intrstatus;
479
480 if (status & ATH9K_INT_FATAL) {
481 /* need a chip reset */
482 ath_reset(sc, false);
483 return;
484 } else {
485
486 if (status &
487 (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
Sujithb77f4832008-12-07 21:44:03 +0530488 spin_lock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530489 ath_rx_tasklet(sc, 0);
Sujithb77f4832008-12-07 21:44:03 +0530490 spin_unlock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530491 }
492 /* XXX: optimize this */
493 if (status & ATH9K_INT_TX)
494 ath_tx_tasklet(sc);
495 }
496
497 /* re-enable hardware interrupt */
498 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
499}
500
501static irqreturn_t ath_isr(int irq, void *dev)
502{
503 struct ath_softc *sc = dev;
504 struct ath_hal *ah = sc->sc_ah;
505 enum ath9k_int status;
506 bool sched = false;
507
508 do {
509 if (sc->sc_flags & SC_OP_INVALID) {
510 /*
511 * The hardware is not ready/present, don't
512 * touch anything. Note this can happen early
513 * on if the IRQ is shared.
514 */
515 return IRQ_NONE;
516 }
517 if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */
518 return IRQ_NONE;
519 }
520
521 /*
522 * Figure out the reason(s) for the interrupt. Note
523 * that the hal returns a pseudo-ISR that may include
524 * bits we haven't explicitly enabled so we mask the
525 * value to insure we only process bits we requested.
526 */
527 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
528
529 status &= sc->sc_imask; /* discard unasked-for bits */
530
531 /*
532 * If there are no status bits set, then this interrupt was not
533 * for me (should have been caught above).
534 */
535 if (!status)
536 return IRQ_NONE;
537
538 sc->sc_intrstatus = status;
539
540 if (status & ATH9K_INT_FATAL) {
541 /* need a chip reset */
542 sched = true;
543 } else if (status & ATH9K_INT_RXORN) {
544 /* need a chip reset */
545 sched = true;
546 } else {
547 if (status & ATH9K_INT_SWBA) {
548 /* schedule a tasklet for beacon handling */
549 tasklet_schedule(&sc->bcon_tasklet);
550 }
551 if (status & ATH9K_INT_RXEOL) {
552 /*
553 * NB: the hardware should re-read the link when
554 * RXE bit is written, but it doesn't work
555 * at least on older hardware revs.
556 */
557 sched = true;
558 }
559
560 if (status & ATH9K_INT_TXURN)
561 /* bump tx trigger level */
562 ath9k_hw_updatetxtriglevel(ah, true);
563 /* XXX: optimize this */
564 if (status & ATH9K_INT_RX)
565 sched = true;
566 if (status & ATH9K_INT_TX)
567 sched = true;
568 if (status & ATH9K_INT_BMISS)
569 sched = true;
570 /* carrier sense timeout */
571 if (status & ATH9K_INT_CST)
572 sched = true;
573 if (status & ATH9K_INT_MIB) {
574 /*
575 * Disable interrupts until we service the MIB
576 * interrupt; otherwise it will continue to
577 * fire.
578 */
579 ath9k_hw_set_interrupts(ah, 0);
580 /*
581 * Let the hal handle the event. We assume
582 * it will clear whatever condition caused
583 * the interrupt.
584 */
585 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
586 ath9k_hw_set_interrupts(ah, sc->sc_imask);
587 }
588 if (status & ATH9K_INT_TIM_TIMER) {
589 if (!(ah->ah_caps.hw_caps &
590 ATH9K_HW_CAP_AUTOSLEEP)) {
591 /* Clear RxAbort bit so that we can
592 * receive frames */
593 ath9k_hw_setrxabort(ah, 0);
594 sched = true;
595 }
596 }
597 }
598 } while (0);
599
Sujith817e11d2008-12-07 21:42:44 +0530600 ath_debug_stat_interrupt(sc, status);
601
Sujithff37e332008-11-24 12:07:55 +0530602 if (sched) {
603 /* turn off every interrupt except SWBA */
604 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
605 tasklet_schedule(&sc->intr_tq);
606 }
607
608 return IRQ_HANDLED;
609}
610
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700611static int ath_get_channel(struct ath_softc *sc,
612 struct ieee80211_channel *chan)
613{
614 int i;
615
616 for (i = 0; i < sc->sc_ah->ah_nchan; i++) {
617 if (sc->sc_ah->ah_channels[i].channel == chan->center_freq)
618 return i;
619 }
620
621 return -1;
622}
623
624static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530625 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +0530626 enum nl80211_channel_type channel_type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700627{
628 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700629
630 switch (chan->band) {
631 case IEEE80211_BAND_2GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530632 switch(channel_type) {
633 case NL80211_CHAN_NO_HT:
634 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700635 chanmode = CHANNEL_G_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530636 break;
637 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700638 chanmode = CHANNEL_G_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530639 break;
640 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 chanmode = CHANNEL_G_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530642 break;
643 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700644 break;
645 case IEEE80211_BAND_5GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530646 switch(channel_type) {
647 case NL80211_CHAN_NO_HT:
648 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649 chanmode = CHANNEL_A_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530650 break;
651 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700652 chanmode = CHANNEL_A_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530653 break;
654 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700655 chanmode = CHANNEL_A_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530656 break;
657 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700658 break;
659 default:
660 break;
661 }
662
663 return chanmode;
664}
665
Sujithff37e332008-11-24 12:07:55 +0530666static int ath_keyset(struct ath_softc *sc, u16 keyix,
667 struct ath9k_keyval *hk, const u8 mac[ETH_ALEN])
668{
669 bool status;
670
671 status = ath9k_hw_set_keycache_entry(sc->sc_ah,
672 keyix, hk, mac, false);
673
674 return status != false;
675}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700676
Jouni Malinen6ace2892008-12-17 13:32:17 +0200677static int ath_setkey_tkip(struct ath_softc *sc, u16 keyix, const u8 *key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700678 struct ath9k_keyval *hk,
679 const u8 *addr)
680{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200681 const u8 *key_rxmic;
682 const u8 *key_txmic;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700683
Jouni Malinen6ace2892008-12-17 13:32:17 +0200684 key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
685 key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700686
687 if (addr == NULL) {
688 /* Group key installation */
Jouni Malinen6ace2892008-12-17 13:32:17 +0200689 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
690 return ath_keyset(sc, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700691 }
692 if (!sc->sc_splitmic) {
693 /*
694 * data key goes at first index,
695 * the hal handles the MIC keys at index+64.
696 */
697 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
698 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
Jouni Malinen6ace2892008-12-17 13:32:17 +0200699 return ath_keyset(sc, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700700 }
701 /*
702 * TX key goes at first index, RX key at +32.
703 * The hal handles the MIC keys at index+64.
704 */
705 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
Jouni Malinen6ace2892008-12-17 13:32:17 +0200706 if (!ath_keyset(sc, keyix, hk, NULL)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700707 /* Txmic entry failed. No need to proceed further */
708 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +0530709 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700710 return 0;
711 }
712
713 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
714 /* XXX delete tx key on failure? */
Jouni Malinen6ace2892008-12-17 13:32:17 +0200715 return ath_keyset(sc, keyix + 32, hk, addr);
716}
717
718static int ath_reserve_key_cache_slot_tkip(struct ath_softc *sc)
719{
720 int i;
721
722 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) {
723 if (test_bit(i, sc->sc_keymap) ||
724 test_bit(i + 64, sc->sc_keymap))
725 continue; /* At least one part of TKIP key allocated */
726 if (sc->sc_splitmic &&
727 (test_bit(i + 32, sc->sc_keymap) ||
728 test_bit(i + 64 + 32, sc->sc_keymap)))
729 continue; /* At least one part of TKIP key allocated */
730
731 /* Found a free slot for a TKIP key */
732 return i;
733 }
734 return -1;
735}
736
737static int ath_reserve_key_cache_slot(struct ath_softc *sc)
738{
739 int i;
740
741 /* First, try to find slots that would not be available for TKIP. */
742 if (sc->sc_splitmic) {
743 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 4; i++) {
744 if (!test_bit(i, sc->sc_keymap) &&
745 (test_bit(i + 32, sc->sc_keymap) ||
746 test_bit(i + 64, sc->sc_keymap) ||
747 test_bit(i + 64 + 32, sc->sc_keymap)))
748 return i;
749 if (!test_bit(i + 32, sc->sc_keymap) &&
750 (test_bit(i, sc->sc_keymap) ||
751 test_bit(i + 64, sc->sc_keymap) ||
752 test_bit(i + 64 + 32, sc->sc_keymap)))
753 return i + 32;
754 if (!test_bit(i + 64, sc->sc_keymap) &&
755 (test_bit(i , sc->sc_keymap) ||
756 test_bit(i + 32, sc->sc_keymap) ||
757 test_bit(i + 64 + 32, sc->sc_keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200758 return i + 64;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200759 if (!test_bit(i + 64 + 32, sc->sc_keymap) &&
760 (test_bit(i, sc->sc_keymap) ||
761 test_bit(i + 32, sc->sc_keymap) ||
762 test_bit(i + 64, sc->sc_keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200763 return i + 64 + 32;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200764 }
765 } else {
766 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) {
767 if (!test_bit(i, sc->sc_keymap) &&
768 test_bit(i + 64, sc->sc_keymap))
769 return i;
770 if (test_bit(i, sc->sc_keymap) &&
771 !test_bit(i + 64, sc->sc_keymap))
772 return i + 64;
773 }
774 }
775
776 /* No partially used TKIP slots, pick any available slot */
777 for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax; i++) {
Jouni Malinenbe2864c2008-12-18 14:33:00 +0200778 /* Do not allow slots that could be needed for TKIP group keys
779 * to be used. This limitation could be removed if we know that
780 * TKIP will not be used. */
781 if (i >= 64 && i < 64 + IEEE80211_WEP_NKID)
782 continue;
783 if (sc->sc_splitmic) {
784 if (i >= 32 && i < 32 + IEEE80211_WEP_NKID)
785 continue;
786 if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID)
787 continue;
788 }
789
Jouni Malinen6ace2892008-12-17 13:32:17 +0200790 if (!test_bit(i, sc->sc_keymap))
791 return i; /* Found a free slot for a key */
792 }
793
794 /* No free slot found */
795 return -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700796}
797
798static int ath_key_config(struct ath_softc *sc,
Johannes Bergdc822b52008-12-29 12:55:09 +0100799 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700800 struct ieee80211_key_conf *key)
801{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700802 struct ath9k_keyval hk;
803 const u8 *mac = NULL;
804 int ret = 0;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200805 int idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806
807 memset(&hk, 0, sizeof(hk));
808
809 switch (key->alg) {
810 case ALG_WEP:
811 hk.kv_type = ATH9K_CIPHER_WEP;
812 break;
813 case ALG_TKIP:
814 hk.kv_type = ATH9K_CIPHER_TKIP;
815 break;
816 case ALG_CCMP:
817 hk.kv_type = ATH9K_CIPHER_AES_CCM;
818 break;
819 default:
820 return -EINVAL;
821 }
822
Jouni Malinen6ace2892008-12-17 13:32:17 +0200823 hk.kv_len = key->keylen;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700824 memcpy(hk.kv_val, key->key, key->keylen);
825
Jouni Malinen6ace2892008-12-17 13:32:17 +0200826 if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
827 /* For now, use the default keys for broadcast keys. This may
828 * need to change with virtual interfaces. */
829 idx = key->keyidx;
830 } else if (key->keyidx) {
831 struct ieee80211_vif *vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700832
Johannes Bergdc822b52008-12-29 12:55:09 +0100833 if (WARN_ON(!sta))
834 return -EOPNOTSUPP;
835 mac = sta->addr;
836
Jouni Malinen6ace2892008-12-17 13:32:17 +0200837 vif = sc->sc_vaps[0];
838 if (vif->type != NL80211_IFTYPE_AP) {
839 /* Only keyidx 0 should be used with unicast key, but
840 * allow this for client mode for now. */
841 idx = key->keyidx;
842 } else
843 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700844 } else {
Johannes Bergdc822b52008-12-29 12:55:09 +0100845 if (WARN_ON(!sta))
846 return -EOPNOTSUPP;
847 mac = sta->addr;
848
Jouni Malinen6ace2892008-12-17 13:32:17 +0200849 if (key->alg == ALG_TKIP)
850 idx = ath_reserve_key_cache_slot_tkip(sc);
851 else
852 idx = ath_reserve_key_cache_slot(sc);
853 if (idx < 0)
854 return -EIO; /* no free key cache entries */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700855 }
856
857 if (key->alg == ALG_TKIP)
Jouni Malinen6ace2892008-12-17 13:32:17 +0200858 ret = ath_setkey_tkip(sc, idx, key->key, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700859 else
Jouni Malinen6ace2892008-12-17 13:32:17 +0200860 ret = ath_keyset(sc, idx, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700861
862 if (!ret)
863 return -EIO;
864
Jouni Malinen6ace2892008-12-17 13:32:17 +0200865 set_bit(idx, sc->sc_keymap);
866 if (key->alg == ALG_TKIP) {
867 set_bit(idx + 64, sc->sc_keymap);
868 if (sc->sc_splitmic) {
869 set_bit(idx + 32, sc->sc_keymap);
870 set_bit(idx + 64 + 32, sc->sc_keymap);
871 }
872 }
873
874 return idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700875}
876
877static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
878{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200879 ath9k_hw_keyreset(sc->sc_ah, key->hw_key_idx);
880 if (key->hw_key_idx < IEEE80211_WEP_NKID)
881 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700882
Jouni Malinen6ace2892008-12-17 13:32:17 +0200883 clear_bit(key->hw_key_idx, sc->sc_keymap);
884 if (key->alg != ALG_TKIP)
885 return;
886
887 clear_bit(key->hw_key_idx + 64, sc->sc_keymap);
888 if (sc->sc_splitmic) {
889 clear_bit(key->hw_key_idx + 32, sc->sc_keymap);
890 clear_bit(key->hw_key_idx + 64 + 32, sc->sc_keymap);
891 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700892}
893
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200894static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700895{
Sujith60653672008-08-14 13:28:02 +0530896#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
897#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700898
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200899 ht_info->ht_supported = true;
900 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
901 IEEE80211_HT_CAP_SM_PS |
902 IEEE80211_HT_CAP_SGI_40 |
903 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700904
Sujith60653672008-08-14 13:28:02 +0530905 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
906 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200907 /* set up supported mcs set */
908 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
909 ht_info->mcs.rx_mask[0] = 0xff;
910 ht_info->mcs.rx_mask[1] = 0xff;
911 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700912}
913
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530914static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530915 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530916 struct ieee80211_bss_conf *bss_conf)
917{
Sujith5640b082008-10-29 10:16:06 +0530918 struct ath_vap *avp = (void *)vif->drv_priv;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530919
920 if (bss_conf->assoc) {
Sujith094d05d2008-12-12 11:57:43 +0530921 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d, bssid: %pM\n",
922 bss_conf->aid, sc->sc_curbssid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530923
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530924 /* New association, store aid */
Colin McCabed97809d2008-12-01 13:38:55 -0800925 if (avp->av_opmode == NL80211_IFTYPE_STATION) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530926 sc->sc_curaid = bss_conf->aid;
927 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
928 sc->sc_curaid);
929 }
930
931 /* Configure the beacon */
932 ath_beacon_config(sc, 0);
933 sc->sc_flags |= SC_OP_BEACONS;
934
935 /* Reset rssi stats */
936 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
937 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
938 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
939 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
940
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700941 /* Start ANI */
942 mod_timer(&sc->sc_ani.timer,
943 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
944
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530945 } else {
Sujith04bd4632008-11-28 22:18:05 +0530946 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530947 sc->sc_curaid = 0;
948 }
949}
950
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530951/********************************/
952/* LED functions */
953/********************************/
954
955static void ath_led_brightness(struct led_classdev *led_cdev,
956 enum led_brightness brightness)
957{
958 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
959 struct ath_softc *sc = led->sc;
960
961 switch (brightness) {
962 case LED_OFF:
963 if (led->led_type == ATH_LED_ASSOC ||
964 led->led_type == ATH_LED_RADIO)
965 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
966 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
967 (led->led_type == ATH_LED_RADIO) ? 1 :
968 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
969 break;
970 case LED_FULL:
971 if (led->led_type == ATH_LED_ASSOC)
972 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
973 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
974 break;
975 default:
976 break;
977 }
978}
979
980static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
981 char *trigger)
982{
983 int ret;
984
985 led->sc = sc;
986 led->led_cdev.name = led->name;
987 led->led_cdev.default_trigger = trigger;
988 led->led_cdev.brightness_set = ath_led_brightness;
989
990 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
991 if (ret)
992 DPRINTF(sc, ATH_DBG_FATAL,
993 "Failed to register led:%s", led->name);
994 else
995 led->registered = 1;
996 return ret;
997}
998
999static void ath_unregister_led(struct ath_led *led)
1000{
1001 if (led->registered) {
1002 led_classdev_unregister(&led->led_cdev);
1003 led->registered = 0;
1004 }
1005}
1006
1007static void ath_deinit_leds(struct ath_softc *sc)
1008{
1009 ath_unregister_led(&sc->assoc_led);
1010 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
1011 ath_unregister_led(&sc->tx_led);
1012 ath_unregister_led(&sc->rx_led);
1013 ath_unregister_led(&sc->radio_led);
1014 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1015}
1016
1017static void ath_init_leds(struct ath_softc *sc)
1018{
1019 char *trigger;
1020 int ret;
1021
1022 /* Configure gpio 1 for output */
1023 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
1024 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1025 /* LED off, active low */
1026 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1027
1028 trigger = ieee80211_get_radio_led_name(sc->hw);
1029 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
1030 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
1031 ret = ath_register_led(sc, &sc->radio_led, trigger);
1032 sc->radio_led.led_type = ATH_LED_RADIO;
1033 if (ret)
1034 goto fail;
1035
1036 trigger = ieee80211_get_assoc_led_name(sc->hw);
1037 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
1038 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
1039 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1040 sc->assoc_led.led_type = ATH_LED_ASSOC;
1041 if (ret)
1042 goto fail;
1043
1044 trigger = ieee80211_get_tx_led_name(sc->hw);
1045 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
1046 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
1047 ret = ath_register_led(sc, &sc->tx_led, trigger);
1048 sc->tx_led.led_type = ATH_LED_TX;
1049 if (ret)
1050 goto fail;
1051
1052 trigger = ieee80211_get_rx_led_name(sc->hw);
1053 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
1054 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
1055 ret = ath_register_led(sc, &sc->rx_led, trigger);
1056 sc->rx_led.led_type = ATH_LED_RX;
1057 if (ret)
1058 goto fail;
1059
1060 return;
1061
1062fail:
1063 ath_deinit_leds(sc);
1064}
1065
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301066#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301067
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301068/*******************/
1069/* Rfkill */
1070/*******************/
1071
1072static void ath_radio_enable(struct ath_softc *sc)
1073{
1074 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001075 struct ieee80211_channel *channel = sc->hw->conf.channel;
1076 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301077
1078 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001079
1080 r = ath9k_hw_reset(ah, ah->ah_curchan, false);
1081
1082 if (r) {
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301083 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001084 "Unable to reset channel %u (%uMhz) ",
1085 "reset status %u\n",
1086 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301087 }
1088 spin_unlock_bh(&sc->sc_resetlock);
1089
1090 ath_update_txpow(sc);
1091 if (ath_startrecv(sc) != 0) {
1092 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301093 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301094 return;
1095 }
1096
1097 if (sc->sc_flags & SC_OP_BEACONS)
1098 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1099
1100 /* Re-Enable interrupts */
1101 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1102
1103 /* Enable LED */
1104 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
1105 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1106 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
1107
1108 ieee80211_wake_queues(sc->hw);
1109}
1110
1111static void ath_radio_disable(struct ath_softc *sc)
1112{
1113 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001114 struct ieee80211_channel *channel = sc->hw->conf.channel;
1115 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301116
1117 ieee80211_stop_queues(sc->hw);
1118
1119 /* Disable LED */
1120 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
1121 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
1122
1123 /* Disable interrupts */
1124 ath9k_hw_set_interrupts(ah, 0);
1125
1126 ath_draintxq(sc, false); /* clear pending tx frames */
1127 ath_stoprecv(sc); /* turn off frame recv */
1128 ath_flushrecv(sc); /* flush recv queue */
1129
1130 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001131 r = ath9k_hw_reset(ah, ah->ah_curchan, false);
1132 if (r) {
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301133 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301134 "Unable to reset channel %u (%uMhz) "
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001135 "reset status %u\n",
1136 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301137 }
1138 spin_unlock_bh(&sc->sc_resetlock);
1139
1140 ath9k_hw_phy_disable(ah);
1141 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1142}
1143
1144static bool ath_is_rfkill_set(struct ath_softc *sc)
1145{
1146 struct ath_hal *ah = sc->sc_ah;
1147
1148 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
1149 ah->ah_rfkill_polarity;
1150}
1151
1152/* h/w rfkill poll function */
1153static void ath_rfkill_poll(struct work_struct *work)
1154{
1155 struct ath_softc *sc = container_of(work, struct ath_softc,
1156 rf_kill.rfkill_poll.work);
1157 bool radio_on;
1158
1159 if (sc->sc_flags & SC_OP_INVALID)
1160 return;
1161
1162 radio_on = !ath_is_rfkill_set(sc);
1163
1164 /*
1165 * enable/disable radio only when there is a
1166 * state change in RF switch
1167 */
1168 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
1169 enum rfkill_state state;
1170
1171 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
1172 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
1173 : RFKILL_STATE_HARD_BLOCKED;
1174 } else if (radio_on) {
1175 ath_radio_enable(sc);
1176 state = RFKILL_STATE_UNBLOCKED;
1177 } else {
1178 ath_radio_disable(sc);
1179 state = RFKILL_STATE_HARD_BLOCKED;
1180 }
1181
1182 if (state == RFKILL_STATE_HARD_BLOCKED)
1183 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
1184 else
1185 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
1186
1187 rfkill_force_state(sc->rf_kill.rfkill, state);
1188 }
1189
1190 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
1191 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
1192}
1193
1194/* s/w rfkill handler */
1195static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
1196{
1197 struct ath_softc *sc = data;
1198
1199 switch (state) {
1200 case RFKILL_STATE_SOFT_BLOCKED:
1201 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
1202 SC_OP_RFKILL_SW_BLOCKED)))
1203 ath_radio_disable(sc);
1204 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
1205 return 0;
1206 case RFKILL_STATE_UNBLOCKED:
1207 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
1208 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
1209 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
1210 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
Sujith04bd4632008-11-28 22:18:05 +05301211 "radio as it is disabled by h/w\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301212 return -EPERM;
1213 }
1214 ath_radio_enable(sc);
1215 }
1216 return 0;
1217 default:
1218 return -EINVAL;
1219 }
1220}
1221
1222/* Init s/w rfkill */
1223static int ath_init_sw_rfkill(struct ath_softc *sc)
1224{
1225 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
1226 RFKILL_TYPE_WLAN);
1227 if (!sc->rf_kill.rfkill) {
1228 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
1229 return -ENOMEM;
1230 }
1231
1232 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
1233 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
1234 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
1235 sc->rf_kill.rfkill->data = sc;
1236 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
1237 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
1238 sc->rf_kill.rfkill->user_claim_unsupported = 1;
1239
1240 return 0;
1241}
1242
1243/* Deinitialize rfkill */
1244static void ath_deinit_rfkill(struct ath_softc *sc)
1245{
1246 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1247 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1248
1249 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
1250 rfkill_unregister(sc->rf_kill.rfkill);
1251 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
1252 sc->rf_kill.rfkill = NULL;
1253 }
1254}
Sujith9c84b792008-10-29 10:17:13 +05301255
1256static int ath_start_rfkill_poll(struct ath_softc *sc)
1257{
1258 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1259 queue_delayed_work(sc->hw->workqueue,
1260 &sc->rf_kill.rfkill_poll, 0);
1261
1262 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1263 if (rfkill_register(sc->rf_kill.rfkill)) {
1264 DPRINTF(sc, ATH_DBG_FATAL,
1265 "Unable to register rfkill\n");
1266 rfkill_free(sc->rf_kill.rfkill);
1267
1268 /* Deinitialize the device */
Senthil Balasubramanian306efdd2008-11-13 18:00:37 +05301269 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05301270 if (sc->pdev->irq)
1271 free_irq(sc->pdev->irq, sc);
Sujith9c84b792008-10-29 10:17:13 +05301272 pci_iounmap(sc->pdev, sc->mem);
1273 pci_release_region(sc->pdev, 0);
1274 pci_disable_device(sc->pdev);
Sujith9757d552008-11-04 18:25:27 +05301275 ieee80211_free_hw(sc->hw);
Sujith9c84b792008-10-29 10:17:13 +05301276 return -EIO;
1277 } else {
1278 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1279 }
1280 }
1281
1282 return 0;
1283}
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301284#endif /* CONFIG_RFKILL */
1285
Sujith9c84b792008-10-29 10:17:13 +05301286static void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301287{
1288 struct ieee80211_hw *hw = sc->hw;
Sujith9c84b792008-10-29 10:17:13 +05301289 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301290
Sujith04bd4632008-11-28 22:18:05 +05301291 DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301292
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301293#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301294 ath_deinit_rfkill(sc);
1295#endif
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301296 ath_deinit_leds(sc);
1297
1298 ieee80211_unregister_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301299 ath_rx_cleanup(sc);
1300 ath_tx_cleanup(sc);
1301
Sujith9c84b792008-10-29 10:17:13 +05301302 tasklet_kill(&sc->intr_tq);
1303 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301304
Sujith9c84b792008-10-29 10:17:13 +05301305 if (!(sc->sc_flags & SC_OP_INVALID))
1306 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301307
Sujith9c84b792008-10-29 10:17:13 +05301308 /* cleanup tx queues */
1309 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1310 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301311 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith9c84b792008-10-29 10:17:13 +05301312
1313 ath9k_hw_detach(sc->sc_ah);
Sujith826d2682008-11-28 22:20:23 +05301314 ath9k_exit_debug(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301315}
1316
Sujithff37e332008-11-24 12:07:55 +05301317static int ath_init(u16 devid, struct ath_softc *sc)
1318{
1319 struct ath_hal *ah = NULL;
1320 int status;
1321 int error = 0, i;
1322 int csz = 0;
1323
1324 /* XXX: hardware will not be ready until ath_open() being called */
1325 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301326
Sujith826d2682008-11-28 22:20:23 +05301327 if (ath9k_init_debug(sc) < 0)
1328 printk(KERN_ERR "Unable to create debugfs files\n");
Sujithff37e332008-11-24 12:07:55 +05301329
1330 spin_lock_init(&sc->sc_resetlock);
Sujithaa33de02008-12-18 11:40:16 +05301331 mutex_init(&sc->mutex);
Sujithff37e332008-11-24 12:07:55 +05301332 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1333 tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1334 (unsigned long)sc);
1335
1336 /*
1337 * Cache line size is used to size and align various
1338 * structures used to communicate with the hardware.
1339 */
1340 bus_read_cachesize(sc, &csz);
1341 /* XXX assert csz is non-zero */
1342 sc->sc_cachelsz = csz << 2; /* convert to bytes */
1343
1344 ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1345 if (ah == NULL) {
1346 DPRINTF(sc, ATH_DBG_FATAL,
Gabor Juhos295834f2008-12-29 21:07:42 +01001347 "Unable to attach hardware; HAL status %d\n", status);
Sujithff37e332008-11-24 12:07:55 +05301348 error = -ENXIO;
1349 goto bad;
1350 }
1351 sc->sc_ah = ah;
1352
1353 /* Get the hardware key cache size. */
1354 sc->sc_keymax = ah->ah_caps.keycache_size;
1355 if (sc->sc_keymax > ATH_KEYMAX) {
1356 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05301357 "Warning, using only %u entries in %u key cache\n",
1358 ATH_KEYMAX, sc->sc_keymax);
Sujithff37e332008-11-24 12:07:55 +05301359 sc->sc_keymax = ATH_KEYMAX;
1360 }
1361
1362 /*
1363 * Reset the key cache since some parts do not
1364 * reset the contents on initial power up.
1365 */
1366 for (i = 0; i < sc->sc_keymax; i++)
1367 ath9k_hw_keyreset(ah, (u16) i);
Sujithff37e332008-11-24 12:07:55 +05301368
1369 /* Collect the channel list using the default country code */
1370
1371 error = ath_setup_channels(sc);
1372 if (error)
1373 goto bad;
1374
1375 /* default to MONITOR mode */
Colin McCabed97809d2008-12-01 13:38:55 -08001376 sc->sc_ah->ah_opmode = NL80211_IFTYPE_MONITOR;
1377
Sujithff37e332008-11-24 12:07:55 +05301378
1379 /* Setup rate tables */
1380
1381 ath_rate_attach(sc);
1382 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1383 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1384
1385 /*
1386 * Allocate hardware transmit queues: one queue for
1387 * beacon frames and one data queue for each QoS
1388 * priority. Note that the hal handles reseting
1389 * these queues at the needed time.
1390 */
Sujithb77f4832008-12-07 21:44:03 +05301391 sc->beacon.beaconq = ath_beaconq_setup(ah);
1392 if (sc->beacon.beaconq == -1) {
Sujithff37e332008-11-24 12:07:55 +05301393 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301394 "Unable to setup a beacon xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301395 error = -EIO;
1396 goto bad2;
1397 }
Sujithb77f4832008-12-07 21:44:03 +05301398 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1399 if (sc->beacon.cabq == NULL) {
Sujithff37e332008-11-24 12:07:55 +05301400 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301401 "Unable to setup CAB xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301402 error = -EIO;
1403 goto bad2;
1404 }
1405
1406 sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1407 ath_cabq_update(sc);
1408
Sujithb77f4832008-12-07 21:44:03 +05301409 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
1410 sc->tx.hwq_map[i] = -1;
Sujithff37e332008-11-24 12:07:55 +05301411
1412 /* Setup data queues */
1413 /* NB: ensure BK queue is the lowest priority h/w queue */
1414 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1415 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301416 "Unable to setup xmit queue for BK traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301417 error = -EIO;
1418 goto bad2;
1419 }
1420
1421 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1422 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301423 "Unable to setup xmit queue for BE traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301424 error = -EIO;
1425 goto bad2;
1426 }
1427 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1428 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301429 "Unable to setup xmit queue for VI traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301430 error = -EIO;
1431 goto bad2;
1432 }
1433 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1434 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301435 "Unable to setup xmit queue for VO traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301436 error = -EIO;
1437 goto bad2;
1438 }
1439
1440 /* Initializes the noise floor to a reasonable default value.
1441 * Later on this will be updated during ANI processing. */
1442
1443 sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1444 setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc);
1445
1446 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1447 ATH9K_CIPHER_TKIP, NULL)) {
1448 /*
1449 * Whether we should enable h/w TKIP MIC.
1450 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1451 * report WMM capable, so it's always safe to turn on
1452 * TKIP MIC in this case.
1453 */
1454 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1455 0, 1, NULL);
1456 }
1457
1458 /*
1459 * Check whether the separate key cache entries
1460 * are required to handle both tx+rx MIC keys.
1461 * With split mic keys the number of stations is limited
1462 * to 27 otherwise 59.
1463 */
1464 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1465 ATH9K_CIPHER_TKIP, NULL)
1466 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1467 ATH9K_CIPHER_MIC, NULL)
1468 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1469 0, NULL))
1470 sc->sc_splitmic = 1;
1471
1472 /* turn on mcast key search if possible */
1473 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1474 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1475 1, NULL);
1476
1477 sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1478 sc->sc_config.txpowlimit_override = 0;
1479
1480 /* 11n Capabilities */
1481 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1482 sc->sc_flags |= SC_OP_TXAGGR;
1483 sc->sc_flags |= SC_OP_RXAGGR;
1484 }
1485
1486 sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1487 sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1488
1489 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
Sujithb77f4832008-12-07 21:44:03 +05301490 sc->rx.defant = ath9k_hw_getdefantenna(ah);
Sujithff37e332008-11-24 12:07:55 +05301491
1492 ath9k_hw_getmac(ah, sc->sc_myaddr);
1493 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1494 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1495 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1496 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1497 }
1498
Sujithb77f4832008-12-07 21:44:03 +05301499 sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
Sujithff37e332008-11-24 12:07:55 +05301500
1501 /* initialize beacon slots */
Sujithb77f4832008-12-07 21:44:03 +05301502 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++)
1503 sc->beacon.bslot[i] = ATH_IF_ID_ANY;
Sujithff37e332008-11-24 12:07:55 +05301504
1505 /* save MISC configurations */
1506 sc->sc_config.swBeaconProcess = 1;
1507
Sujithff37e332008-11-24 12:07:55 +05301508 /* setup channels and rates */
1509
1510 sc->sbands[IEEE80211_BAND_2GHZ].channels =
1511 sc->channels[IEEE80211_BAND_2GHZ];
1512 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1513 sc->rates[IEEE80211_BAND_2GHZ];
1514 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
1515
1516 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
1517 sc->sbands[IEEE80211_BAND_5GHZ].channels =
1518 sc->channels[IEEE80211_BAND_5GHZ];
1519 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1520 sc->rates[IEEE80211_BAND_5GHZ];
1521 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
1522 }
1523
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301524 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_BT_COEX)
1525 ath9k_hw_btcoex_enable(sc->sc_ah);
1526
Sujithff37e332008-11-24 12:07:55 +05301527 return 0;
1528bad2:
1529 /* cleanup tx queues */
1530 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1531 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301532 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujithff37e332008-11-24 12:07:55 +05301533bad:
1534 if (ah)
1535 ath9k_hw_detach(ah);
1536
1537 return error;
1538}
1539
Sujith9c84b792008-10-29 10:17:13 +05301540static int ath_attach(u16 devid, struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301541{
1542 struct ieee80211_hw *hw = sc->hw;
1543 int error = 0;
1544
Sujith04bd4632008-11-28 22:18:05 +05301545 DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301546
1547 error = ath_init(devid, sc);
1548 if (error != 0)
1549 return error;
1550
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301551 /* get mac address from hardware and set in mac80211 */
1552
1553 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
1554
Sujith9c84b792008-10-29 10:17:13 +05301555 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1556 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1557 IEEE80211_HW_SIGNAL_DBM |
1558 IEEE80211_HW_AMPDU_AGGREGATION;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301559
Sujith9c84b792008-10-29 10:17:13 +05301560 hw->wiphy->interface_modes =
1561 BIT(NL80211_IFTYPE_AP) |
1562 BIT(NL80211_IFTYPE_STATION) |
1563 BIT(NL80211_IFTYPE_ADHOC);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301564
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301565 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301566 hw->max_rates = 4;
1567 hw->max_rate_tries = ATH_11N_TXMAXTRY;
Sujith528f0c62008-10-29 10:14:26 +05301568 hw->sta_data_size = sizeof(struct ath_node);
Sujith5640b082008-10-29 10:16:06 +05301569 hw->vif_data_size = sizeof(struct ath_vap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301570
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301571 hw->rate_control_algorithm = "ath9k_rate_control";
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301572
Sujith9c84b792008-10-29 10:17:13 +05301573 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1574 setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
1575 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1576 setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
1577 }
1578
1579 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ];
1580 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1581 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1582 &sc->sbands[IEEE80211_BAND_5GHZ];
1583
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301584 /* initialize tx/rx engine */
1585 error = ath_tx_init(sc, ATH_TXBUF);
1586 if (error != 0)
1587 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301588
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301589 error = ath_rx_init(sc, ATH_RXBUF);
1590 if (error != 0)
1591 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301592
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301593#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301594 /* Initialze h/w Rfkill */
1595 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1596 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
1597
1598 /* Initialize s/w rfkill */
1599 if (ath_init_sw_rfkill(sc))
1600 goto detach;
1601#endif
1602
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301603 error = ieee80211_register_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301604
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301605 /* Initialize LED control */
1606 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301607
1608 return 0;
1609detach:
1610 ath_detach(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301611 return error;
1612}
1613
Sujithff37e332008-11-24 12:07:55 +05301614int ath_reset(struct ath_softc *sc, bool retry_tx)
1615{
1616 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguez030bb492008-12-23 15:58:37 -08001617 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001618 int r;
Sujithff37e332008-11-24 12:07:55 +05301619
1620 ath9k_hw_set_interrupts(ah, 0);
1621 ath_draintxq(sc, retry_tx);
1622 ath_stoprecv(sc);
1623 ath_flushrecv(sc);
1624
1625 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001626 r = ath9k_hw_reset(ah, sc->sc_ah->ah_curchan, false);
1627 if (r)
Sujithff37e332008-11-24 12:07:55 +05301628 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001629 "Unable to reset hardware; reset status %u\n", r);
Sujithff37e332008-11-24 12:07:55 +05301630 spin_unlock_bh(&sc->sc_resetlock);
1631
1632 if (ath_startrecv(sc) != 0)
Sujith04bd4632008-11-28 22:18:05 +05301633 DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301634
1635 /*
1636 * We may be doing a reset in response to a request
1637 * that changes the channel so update any state that
1638 * might change as a result.
1639 */
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08001640 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05301641
1642 ath_update_txpow(sc);
1643
1644 if (sc->sc_flags & SC_OP_BEACONS)
1645 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1646
1647 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1648
1649 if (retry_tx) {
1650 int i;
1651 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1652 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05301653 spin_lock_bh(&sc->tx.txq[i].axq_lock);
1654 ath_txq_schedule(sc, &sc->tx.txq[i]);
1655 spin_unlock_bh(&sc->tx.txq[i].axq_lock);
Sujithff37e332008-11-24 12:07:55 +05301656 }
1657 }
1658 }
1659
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001660 return r;
Sujithff37e332008-11-24 12:07:55 +05301661}
1662
1663/*
1664 * This function will allocate both the DMA descriptor structure, and the
1665 * buffers it contains. These are used to contain the descriptors used
1666 * by the system.
1667*/
1668int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1669 struct list_head *head, const char *name,
1670 int nbuf, int ndesc)
1671{
1672#define DS2PHYS(_dd, _ds) \
1673 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1674#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1675#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1676
1677 struct ath_desc *ds;
1678 struct ath_buf *bf;
1679 int i, bsize, error;
1680
Sujith04bd4632008-11-28 22:18:05 +05301681 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
1682 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301683
1684 /* ath_desc must be a multiple of DWORDs */
1685 if ((sizeof(struct ath_desc) % 4) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05301686 DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301687 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1688 error = -ENOMEM;
1689 goto fail;
1690 }
1691
1692 dd->dd_name = name;
1693 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1694
1695 /*
1696 * Need additional DMA memory because we can't use
1697 * descriptors that cross the 4K page boundary. Assume
1698 * one skipped descriptor per 4K page.
1699 */
1700 if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1701 u32 ndesc_skipped =
1702 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1703 u32 dma_len;
1704
1705 while (ndesc_skipped) {
1706 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1707 dd->dd_desc_len += dma_len;
1708
1709 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1710 };
1711 }
1712
1713 /* allocate descriptors */
1714 dd->dd_desc = pci_alloc_consistent(sc->pdev,
1715 dd->dd_desc_len,
1716 &dd->dd_desc_paddr);
1717 if (dd->dd_desc == NULL) {
1718 error = -ENOMEM;
1719 goto fail;
1720 }
1721 ds = dd->dd_desc;
Sujith04bd4632008-11-28 22:18:05 +05301722 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
1723 dd->dd_name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301724 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1725
1726 /* allocate buffers */
1727 bsize = sizeof(struct ath_buf) * nbuf;
1728 bf = kmalloc(bsize, GFP_KERNEL);
1729 if (bf == NULL) {
1730 error = -ENOMEM;
1731 goto fail2;
1732 }
1733 memset(bf, 0, bsize);
1734 dd->dd_bufptr = bf;
1735
1736 INIT_LIST_HEAD(head);
1737 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1738 bf->bf_desc = ds;
1739 bf->bf_daddr = DS2PHYS(dd, ds);
1740
1741 if (!(sc->sc_ah->ah_caps.hw_caps &
1742 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1743 /*
1744 * Skip descriptor addresses which can cause 4KB
1745 * boundary crossing (addr + length) with a 32 dword
1746 * descriptor fetch.
1747 */
1748 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1749 ASSERT((caddr_t) bf->bf_desc <
1750 ((caddr_t) dd->dd_desc +
1751 dd->dd_desc_len));
1752
1753 ds += ndesc;
1754 bf->bf_desc = ds;
1755 bf->bf_daddr = DS2PHYS(dd, ds);
1756 }
1757 }
1758 list_add_tail(&bf->list, head);
1759 }
1760 return 0;
1761fail2:
1762 pci_free_consistent(sc->pdev,
1763 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1764fail:
1765 memset(dd, 0, sizeof(*dd));
1766 return error;
1767#undef ATH_DESC_4KB_BOUND_CHECK
1768#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1769#undef DS2PHYS
1770}
1771
1772void ath_descdma_cleanup(struct ath_softc *sc,
1773 struct ath_descdma *dd,
1774 struct list_head *head)
1775{
1776 pci_free_consistent(sc->pdev,
1777 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1778
1779 INIT_LIST_HEAD(head);
1780 kfree(dd->dd_bufptr);
1781 memset(dd, 0, sizeof(*dd));
1782}
1783
1784int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1785{
1786 int qnum;
1787
1788 switch (queue) {
1789 case 0:
Sujithb77f4832008-12-07 21:44:03 +05301790 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO];
Sujithff37e332008-11-24 12:07:55 +05301791 break;
1792 case 1:
Sujithb77f4832008-12-07 21:44:03 +05301793 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI];
Sujithff37e332008-11-24 12:07:55 +05301794 break;
1795 case 2:
Sujithb77f4832008-12-07 21:44:03 +05301796 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301797 break;
1798 case 3:
Sujithb77f4832008-12-07 21:44:03 +05301799 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK];
Sujithff37e332008-11-24 12:07:55 +05301800 break;
1801 default:
Sujithb77f4832008-12-07 21:44:03 +05301802 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301803 break;
1804 }
1805
1806 return qnum;
1807}
1808
1809int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1810{
1811 int qnum;
1812
1813 switch (queue) {
1814 case ATH9K_WME_AC_VO:
1815 qnum = 0;
1816 break;
1817 case ATH9K_WME_AC_VI:
1818 qnum = 1;
1819 break;
1820 case ATH9K_WME_AC_BE:
1821 qnum = 2;
1822 break;
1823 case ATH9K_WME_AC_BK:
1824 qnum = 3;
1825 break;
1826 default:
1827 qnum = -1;
1828 break;
1829 }
1830
1831 return qnum;
1832}
1833
1834/**********************/
1835/* mac80211 callbacks */
1836/**********************/
1837
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001838static int ath9k_start(struct ieee80211_hw *hw)
1839{
1840 struct ath_softc *sc = hw->priv;
1841 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05301842 struct ath9k_channel *init_channel;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001843 int r, pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001844
Sujith04bd4632008-11-28 22:18:05 +05301845 DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with "
1846 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001847
1848 /* setup initial channel */
1849
1850 pos = ath_get_channel(sc, curchan);
1851 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05301852 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", curchan->center_freq);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001853 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001854 }
1855
Sujith99405f92008-11-24 12:08:35 +05301856 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001857 sc->sc_ah->ah_channels[pos].chanmode =
1858 (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A;
Sujithff37e332008-11-24 12:07:55 +05301859 init_channel = &sc->sc_ah->ah_channels[pos];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001860
Sujithff37e332008-11-24 12:07:55 +05301861 /* Reset SERDES registers */
1862 ath9k_hw_configpcipowersave(sc->sc_ah, 0);
1863
1864 /*
1865 * The basic interface to setting the hardware in a good
1866 * state is ``reset''. On return the hardware is known to
1867 * be powered up and with interrupts disabled. This must
1868 * be followed by initialization of the appropriate bits
1869 * and then setup of the interrupt mask.
1870 */
1871 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001872 r = ath9k_hw_reset(sc->sc_ah, init_channel, false);
1873 if (r) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001874 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001875 "Unable to reset hardware; reset status %u "
1876 "(freq %u MHz)\n", r,
1877 curchan->center_freq);
Sujithff37e332008-11-24 12:07:55 +05301878 spin_unlock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001879 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001880 }
Sujithff37e332008-11-24 12:07:55 +05301881 spin_unlock_bh(&sc->sc_resetlock);
1882
1883 /*
1884 * This is needed only to setup initial state
1885 * but it's best done after a reset.
1886 */
1887 ath_update_txpow(sc);
1888
1889 /*
1890 * Setup the hardware after reset:
1891 * The receive engine is set going.
1892 * Frame transmit is handled entirely
1893 * in the frame output path; there's nothing to do
1894 * here except setup the interrupt mask.
1895 */
1896 if (ath_startrecv(sc) != 0) {
1897 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301898 "Unable to start recv logic\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001899 return -EIO;
Sujithff37e332008-11-24 12:07:55 +05301900 }
1901
1902 /* Setup our intr mask. */
1903 sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
1904 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
1905 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
1906
1907 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
1908 sc->sc_imask |= ATH9K_INT_GTT;
1909
1910 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
1911 sc->sc_imask |= ATH9K_INT_CST;
1912
1913 /*
1914 * Enable MIB interrupts when there are hardware phy counters.
1915 * Note we only do this (at the moment) for station mode.
1916 */
1917 if (ath9k_hw_phycounters(sc->sc_ah) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001918 ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) ||
1919 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC)))
Sujithff37e332008-11-24 12:07:55 +05301920 sc->sc_imask |= ATH9K_INT_MIB;
1921 /*
1922 * Some hardware processes the TIM IE and fires an
1923 * interrupt when the TIM bit is set. For hardware
1924 * that does, if not overridden by configuration,
1925 * enable the TIM interrupt when operating as station.
1926 */
1927 if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001928 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) &&
Sujithff37e332008-11-24 12:07:55 +05301929 !sc->sc_config.swBeaconProcess)
1930 sc->sc_imask |= ATH9K_INT_TIM;
1931
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08001932 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05301933
1934 sc->sc_flags &= ~SC_OP_INVALID;
1935
1936 /* Disable BMISS interrupt when we're not associated */
1937 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1938 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1939
1940 ieee80211_wake_queues(sc->hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001941
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301942#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001943 r = ath_start_rfkill_poll(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301944#endif
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001945 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001946}
1947
1948static int ath9k_tx(struct ieee80211_hw *hw,
1949 struct sk_buff *skb)
1950{
Jouni Malinen147583c2008-08-11 14:01:50 +03001951 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Sujith528f0c62008-10-29 10:14:26 +05301952 struct ath_softc *sc = hw->priv;
1953 struct ath_tx_control txctl;
1954 int hdrlen, padsize;
1955
1956 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03001957
1958 /*
1959 * As a temporary workaround, assign seq# here; this will likely need
1960 * to be cleaned up to work better with Beacon transmission and virtual
1961 * BSSes.
1962 */
1963 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1964 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1965 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Sujithb77f4832008-12-07 21:44:03 +05301966 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +03001967 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +05301968 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +03001969 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001970
1971 /* Add the padding after the header if this is not already done */
1972 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1973 if (hdrlen & 3) {
1974 padsize = hdrlen % 4;
1975 if (skb_headroom(skb) < padsize)
1976 return -1;
1977 skb_push(skb, padsize);
1978 memmove(skb->data, skb->data + padsize, hdrlen);
1979 }
1980
Sujith528f0c62008-10-29 10:14:26 +05301981 /* Check if a tx queue is available */
1982
1983 txctl.txq = ath_test_get_txq(sc, skb);
1984 if (!txctl.txq)
1985 goto exit;
1986
Sujith04bd4632008-11-28 22:18:05 +05301987 DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001988
Sujith528f0c62008-10-29 10:14:26 +05301989 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05301990 DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05301991 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001992 }
1993
1994 return 0;
Sujith528f0c62008-10-29 10:14:26 +05301995exit:
1996 dev_kfree_skb_any(skb);
1997 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001998}
1999
2000static void ath9k_stop(struct ieee80211_hw *hw)
2001{
2002 struct ath_softc *sc = hw->priv;
Sujith9c84b792008-10-29 10:17:13 +05302003
2004 if (sc->sc_flags & SC_OP_INVALID) {
Sujith04bd4632008-11-28 22:18:05 +05302005 DPRINTF(sc, ATH_DBG_ANY, "Device not present\n");
Sujith9c84b792008-10-29 10:17:13 +05302006 return;
2007 }
2008
Sujith04bd4632008-11-28 22:18:05 +05302009 DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n");
Sujithff37e332008-11-24 12:07:55 +05302010
2011 ieee80211_stop_queues(sc->hw);
2012
2013 /* make sure h/w will not generate any interrupt
2014 * before setting the invalid flag. */
2015 ath9k_hw_set_interrupts(sc->sc_ah, 0);
2016
2017 if (!(sc->sc_flags & SC_OP_INVALID)) {
2018 ath_draintxq(sc, false);
2019 ath_stoprecv(sc);
2020 ath9k_hw_phy_disable(sc->sc_ah);
2021 } else
Sujithb77f4832008-12-07 21:44:03 +05302022 sc->rx.rxlink = NULL;
Sujithff37e332008-11-24 12:07:55 +05302023
2024#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
2025 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2026 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2027#endif
2028 /* disable HAL and put h/w to sleep */
2029 ath9k_hw_disable(sc->sc_ah);
2030 ath9k_hw_configpcipowersave(sc->sc_ah, 1);
2031
2032 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002033
Sujith04bd4632008-11-28 22:18:05 +05302034 DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002035}
2036
2037static int ath9k_add_interface(struct ieee80211_hw *hw,
2038 struct ieee80211_if_init_conf *conf)
2039{
2040 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302041 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08002042 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002043
2044 /* Support only vap for now */
2045
2046 if (sc->sc_nvaps)
2047 return -ENOBUFS;
2048
2049 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002050 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002051 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002052 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002053 case NL80211_IFTYPE_ADHOC:
Colin McCabed97809d2008-12-01 13:38:55 -08002054 ic_opmode = NL80211_IFTYPE_ADHOC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002055 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002056 case NL80211_IFTYPE_AP:
Colin McCabed97809d2008-12-01 13:38:55 -08002057 ic_opmode = NL80211_IFTYPE_AP;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002058 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002059 default:
2060 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302061 "Interface type %d not yet supported\n", conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002062 return -EOPNOTSUPP;
2063 }
2064
Sujith04bd4632008-11-28 22:18:05 +05302065 DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002066
Sujith5640b082008-10-29 10:16:06 +05302067 /* Set the VAP opmode */
2068 avp->av_opmode = ic_opmode;
2069 avp->av_bslot = -1;
2070
Colin McCabed97809d2008-12-01 13:38:55 -08002071 if (ic_opmode == NL80211_IFTYPE_AP)
Sujith5640b082008-10-29 10:16:06 +05302072 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2073
2074 sc->sc_vaps[0] = conf->vif;
2075 sc->sc_nvaps++;
2076
2077 /* Set the device opmode */
2078 sc->sc_ah->ah_opmode = ic_opmode;
2079
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002080 if (conf->type == NL80211_IFTYPE_AP) {
2081 /* TODO: is this a suitable place to start ANI for AP mode? */
2082 /* Start ANI */
2083 mod_timer(&sc->sc_ani.timer,
2084 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
2085 }
2086
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002087 return 0;
2088}
2089
2090static void ath9k_remove_interface(struct ieee80211_hw *hw,
2091 struct ieee80211_if_init_conf *conf)
2092{
2093 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302094 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002095
Sujith04bd4632008-11-28 22:18:05 +05302096 DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002097
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002098 /* Stop ANI */
2099 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002100
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002101 /* Reclaim beacon resources */
Colin McCabed97809d2008-12-01 13:38:55 -08002102 if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP ||
2103 sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) {
Sujithb77f4832008-12-07 21:44:03 +05302104 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002105 ath_beacon_return(sc, avp);
2106 }
2107
Sujith672840a2008-08-11 14:05:08 +05302108 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002109
Sujith5640b082008-10-29 10:16:06 +05302110 sc->sc_vaps[0] = NULL;
2111 sc->sc_nvaps--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002112}
2113
Johannes Berge8975582008-10-09 12:18:51 +02002114static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002115{
2116 struct ath_softc *sc = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002117 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002118
Sujithaa33de02008-12-18 11:40:16 +05302119 mutex_lock(&sc->mutex);
Sujith094d05d2008-12-12 11:57:43 +05302120 if (changed & (IEEE80211_CONF_CHANGE_CHANNEL |
2121 IEEE80211_CONF_CHANGE_HT)) {
Sujith99405f92008-11-24 12:08:35 +05302122 struct ieee80211_channel *curchan = hw->conf.channel;
2123 int pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002124
Sujith04bd4632008-11-28 22:18:05 +05302125 DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2126 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002127
Sujith99405f92008-11-24 12:08:35 +05302128 pos = ath_get_channel(sc, curchan);
2129 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05302130 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n",
2131 curchan->center_freq);
Sujithaa33de02008-12-18 11:40:16 +05302132 mutex_unlock(&sc->mutex);
Sujith99405f92008-11-24 12:08:35 +05302133 return -EINVAL;
2134 }
2135
2136 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
2137 sc->sc_ah->ah_channels[pos].chanmode =
2138 (curchan->band == IEEE80211_BAND_2GHZ) ?
2139 CHANNEL_G : CHANNEL_A;
2140
Luis R. Rodriguezecf70442008-12-23 15:58:43 -08002141 if (conf_is_ht(conf)) {
2142 if (conf_is_ht40(conf))
Sujith094d05d2008-12-12 11:57:43 +05302143 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
Sujithe11602b2008-11-27 09:46:27 +05302144
2145 sc->sc_ah->ah_channels[pos].chanmode =
2146 ath_get_extchanmode(sc, curchan,
Sujith094d05d2008-12-12 11:57:43 +05302147 conf->ht.channel_type);
Sujithe11602b2008-11-27 09:46:27 +05302148 }
2149
Luis R. Rodriguezecf70442008-12-23 15:58:43 -08002150 ath_update_chainmask(sc, conf_is_ht(conf));
Sujith86060f02009-01-07 14:25:29 +05302151
Sujithe11602b2008-11-27 09:46:27 +05302152 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) {
Sujith04bd4632008-11-28 22:18:05 +05302153 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithaa33de02008-12-18 11:40:16 +05302154 mutex_unlock(&sc->mutex);
Sujithe11602b2008-11-27 09:46:27 +05302155 return -EINVAL;
2156 }
Sujith094d05d2008-12-12 11:57:43 +05302157 }
Sujith86b89ee2008-08-07 10:54:57 +05302158
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002159 if (changed & IEEE80211_CONF_CHANGE_POWER)
2160 sc->sc_config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002161
Sujithaa33de02008-12-18 11:40:16 +05302162 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002163 return 0;
2164}
2165
2166static int ath9k_config_interface(struct ieee80211_hw *hw,
2167 struct ieee80211_vif *vif,
2168 struct ieee80211_if_conf *conf)
2169{
2170 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002171 struct ath_hal *ah = sc->sc_ah;
Sujith5640b082008-10-29 10:16:06 +05302172 struct ath_vap *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002173 u32 rfilt = 0;
2174 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002175
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002176 /* TODO: Need to decide which hw opmode to use for multi-interface
2177 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02002178 if (vif->type == NL80211_IFTYPE_AP &&
Colin McCabed97809d2008-12-01 13:38:55 -08002179 ah->ah_opmode != NL80211_IFTYPE_AP) {
2180 ah->ah_opmode = NL80211_IFTYPE_STATION;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002181 ath9k_hw_setopmode(ah);
2182 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
2183 /* Request full reset to get hw opmode changed properly */
2184 sc->sc_flags |= SC_OP_FULL_RESET;
2185 }
2186
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002187 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
2188 !is_zero_ether_addr(conf->bssid)) {
2189 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002190 case NL80211_IFTYPE_STATION:
2191 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002192 /* Set BSSID */
2193 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
2194 sc->sc_curaid = 0;
2195 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
2196 sc->sc_curaid);
2197
2198 /* Set aggregation protection mode parameters */
2199 sc->sc_config.ath_aggr_prot = 0;
2200
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002201 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302202 "RX filter 0x%x bssid %pM aid 0x%x\n",
2203 rfilt, sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002204
2205 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05302206 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002207
2208 break;
2209 default:
2210 break;
2211 }
2212 }
2213
2214 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002215 ((vif->type == NL80211_IFTYPE_ADHOC) ||
2216 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217 /*
2218 * Allocate and setup the beacon frame.
2219 *
2220 * Stop any previous beacon DMA. This may be
2221 * necessary, for example, when an ibss merge
2222 * causes reconfiguration; we may be called
2223 * with beacon transmission active.
2224 */
Sujithb77f4832008-12-07 21:44:03 +05302225 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002226
2227 error = ath_beacon_alloc(sc, 0);
2228 if (error != 0)
2229 return error;
2230
2231 ath_beacon_sync(sc, 0);
2232 }
2233
2234 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Colin McCabed97809d2008-12-01 13:38:55 -08002235 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002236 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2237 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2238 ath9k_hw_keysetmac(sc->sc_ah,
2239 (u16)i,
2240 sc->sc_curbssid);
2241 }
2242
2243 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02002244 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002245 ath_update_chainmask(sc, 0);
2246
2247 return 0;
2248}
2249
2250#define SUPPORTED_FILTERS \
2251 (FIF_PROMISC_IN_BSS | \
2252 FIF_ALLMULTI | \
2253 FIF_CONTROL | \
2254 FIF_OTHER_BSS | \
2255 FIF_BCN_PRBRESP_PROMISC | \
2256 FIF_FCSFAIL)
2257
Sujith7dcfdcd2008-08-11 14:03:13 +05302258/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002259static void ath9k_configure_filter(struct ieee80211_hw *hw,
2260 unsigned int changed_flags,
2261 unsigned int *total_flags,
2262 int mc_count,
2263 struct dev_mc_list *mclist)
2264{
2265 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05302266 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002267
2268 changed_flags &= SUPPORTED_FILTERS;
2269 *total_flags &= SUPPORTED_FILTERS;
2270
Sujithb77f4832008-12-07 21:44:03 +05302271 sc->rx.rxfilter = *total_flags;
Sujith7dcfdcd2008-08-11 14:03:13 +05302272 rfilt = ath_calcrxfilter(sc);
2273 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2274
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002275 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2276 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05302277 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002278 }
Sujith7dcfdcd2008-08-11 14:03:13 +05302279
Sujithb77f4832008-12-07 21:44:03 +05302280 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx.rxfilter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002281}
2282
2283static void ath9k_sta_notify(struct ieee80211_hw *hw,
2284 struct ieee80211_vif *vif,
2285 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002286 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002287{
2288 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002289
2290 switch (cmd) {
2291 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302292 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002293 break;
2294 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302295 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002296 break;
2297 default:
2298 break;
2299 }
2300}
2301
2302static int ath9k_conf_tx(struct ieee80211_hw *hw,
2303 u16 queue,
2304 const struct ieee80211_tx_queue_params *params)
2305{
2306 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05302307 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002308 int ret = 0, qnum;
2309
2310 if (queue >= WME_NUM_AC)
2311 return 0;
2312
2313 qi.tqi_aifs = params->aifs;
2314 qi.tqi_cwmin = params->cw_min;
2315 qi.tqi_cwmax = params->cw_max;
2316 qi.tqi_burstTime = params->txop;
2317 qnum = ath_get_hal_qnum(queue, sc);
2318
2319 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302320 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002321 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd4632008-11-28 22:18:05 +05302322 queue, qnum, params->aifs, params->cw_min,
2323 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002324
2325 ret = ath_txq_update(sc, qnum, &qi);
2326 if (ret)
Sujith04bd4632008-11-28 22:18:05 +05302327 DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002328
2329 return ret;
2330}
2331
2332static int ath9k_set_key(struct ieee80211_hw *hw,
2333 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002334 struct ieee80211_vif *vif,
2335 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002336 struct ieee80211_key_conf *key)
2337{
2338 struct ath_softc *sc = hw->priv;
2339 int ret = 0;
2340
Sujith04bd4632008-11-28 22:18:05 +05302341 DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002342
2343 switch (cmd) {
2344 case SET_KEY:
Johannes Bergdc822b52008-12-29 12:55:09 +01002345 ret = ath_key_config(sc, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02002346 if (ret >= 0) {
2347 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002348 /* push IV and Michael MIC generation to stack */
2349 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302350 if (key->alg == ALG_TKIP)
2351 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Jouni Malinen6ace2892008-12-17 13:32:17 +02002352 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002353 }
2354 break;
2355 case DISABLE_KEY:
2356 ath_key_delete(sc, key);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002357 break;
2358 default:
2359 ret = -EINVAL;
2360 }
2361
2362 return ret;
2363}
2364
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002365static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2366 struct ieee80211_vif *vif,
2367 struct ieee80211_bss_conf *bss_conf,
2368 u32 changed)
2369{
2370 struct ath_softc *sc = hw->priv;
2371
2372 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Sujith04bd4632008-11-28 22:18:05 +05302373 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002374 bss_conf->use_short_preamble);
2375 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302376 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002377 else
Sujith672840a2008-08-11 14:05:08 +05302378 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002379 }
2380
2381 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Sujith04bd4632008-11-28 22:18:05 +05302382 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002383 bss_conf->use_cts_prot);
2384 if (bss_conf->use_cts_prot &&
2385 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302386 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002387 else
Sujith672840a2008-08-11 14:05:08 +05302388 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002389 }
2390
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002391 if (changed & BSS_CHANGED_ASSOC) {
Sujith04bd4632008-11-28 22:18:05 +05302392 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002393 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302394 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002395 }
2396}
2397
2398static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2399{
2400 u64 tsf;
2401 struct ath_softc *sc = hw->priv;
2402 struct ath_hal *ah = sc->sc_ah;
2403
2404 tsf = ath9k_hw_gettsf64(ah);
2405
2406 return tsf;
2407}
2408
2409static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2410{
2411 struct ath_softc *sc = hw->priv;
2412 struct ath_hal *ah = sc->sc_ah;
2413
2414 ath9k_hw_reset_tsf(ah);
2415}
2416
2417static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2418 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002419 struct ieee80211_sta *sta,
2420 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002421{
2422 struct ath_softc *sc = hw->priv;
2423 int ret = 0;
2424
2425 switch (action) {
2426 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302427 if (!(sc->sc_flags & SC_OP_RXAGGR))
2428 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002429 break;
2430 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002431 break;
2432 case IEEE80211_AMPDU_TX_START:
Sujithb5aa9bf2008-10-29 10:13:31 +05302433 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002434 if (ret < 0)
2435 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302436 "Unable to start TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002437 else
Johannes Berg17741cd2008-09-11 00:02:02 +02002438 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002439 break;
2440 case IEEE80211_AMPDU_TX_STOP:
Sujithb5aa9bf2008-10-29 10:13:31 +05302441 ret = ath_tx_aggr_stop(sc, sta, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002442 if (ret < 0)
2443 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302444 "Unable to stop TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002445
Johannes Berg17741cd2008-09-11 00:02:02 +02002446 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002447 break;
Sujith8469cde2008-10-29 10:19:28 +05302448 case IEEE80211_AMPDU_TX_RESUME:
2449 ath_tx_aggr_resume(sc, sta, tid);
2450 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002451 default:
Sujith04bd4632008-11-28 22:18:05 +05302452 DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002453 }
2454
2455 return ret;
2456}
2457
2458static struct ieee80211_ops ath9k_ops = {
2459 .tx = ath9k_tx,
2460 .start = ath9k_start,
2461 .stop = ath9k_stop,
2462 .add_interface = ath9k_add_interface,
2463 .remove_interface = ath9k_remove_interface,
2464 .config = ath9k_config,
2465 .config_interface = ath9k_config_interface,
2466 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002467 .sta_notify = ath9k_sta_notify,
2468 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002469 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002470 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002471 .get_tsf = ath9k_get_tsf,
2472 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002473 .ampdu_action = ath9k_ampdu_action,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002474};
2475
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002476static struct {
2477 u32 version;
2478 const char * name;
2479} ath_mac_bb_names[] = {
2480 { AR_SREV_VERSION_5416_PCI, "5416" },
2481 { AR_SREV_VERSION_5416_PCIE, "5418" },
2482 { AR_SREV_VERSION_9100, "9100" },
2483 { AR_SREV_VERSION_9160, "9160" },
2484 { AR_SREV_VERSION_9280, "9280" },
2485 { AR_SREV_VERSION_9285, "9285" }
2486};
2487
2488static struct {
2489 u16 version;
2490 const char * name;
2491} ath_rf_names[] = {
2492 { 0, "5133" },
2493 { AR_RAD5133_SREV_MAJOR, "5133" },
2494 { AR_RAD5122_SREV_MAJOR, "5122" },
2495 { AR_RAD2133_SREV_MAJOR, "2133" },
2496 { AR_RAD2122_SREV_MAJOR, "2122" }
2497};
2498
2499/*
2500 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2501 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002502static const char *
2503ath_mac_bb_name(u32 mac_bb_version)
2504{
2505 int i;
2506
2507 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2508 if (ath_mac_bb_names[i].version == mac_bb_version) {
2509 return ath_mac_bb_names[i].name;
2510 }
2511 }
2512
2513 return "????";
2514}
2515
2516/*
2517 * Return the RF name. "????" is returned if the RF is unknown.
2518 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002519static const char *
2520ath_rf_name(u16 rf_version)
2521{
2522 int i;
2523
2524 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2525 if (ath_rf_names[i].version == rf_version) {
2526 return ath_rf_names[i].name;
2527 }
2528 }
2529
2530 return "????";
2531}
2532
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002533static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2534{
2535 void __iomem *mem;
2536 struct ath_softc *sc;
2537 struct ieee80211_hw *hw;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002538 u8 csz;
2539 u32 val;
2540 int ret = 0;
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002541 struct ath_hal *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002542
2543 if (pci_enable_device(pdev))
2544 return -EIO;
2545
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002546 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2547
2548 if (ret) {
Luis R. Rodriguez1d450cf2008-11-13 19:11:56 -08002549 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002550 goto bad;
2551 }
2552
2553 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2554
2555 if (ret) {
2556 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
Sujith04bd4632008-11-28 22:18:05 +05302557 "DMA enable failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002558 goto bad;
2559 }
2560
2561 /*
2562 * Cache line size is used to size and align various
2563 * structures used to communicate with the hardware.
2564 */
2565 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
2566 if (csz == 0) {
2567 /*
2568 * Linux 2.4.18 (at least) writes the cache line size
2569 * register as a 16-bit wide register which is wrong.
2570 * We must have this setup properly for rx buffer
2571 * DMA to work so force a reasonable value here if it
2572 * comes up zero.
2573 */
2574 csz = L1_CACHE_BYTES / sizeof(u32);
2575 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
2576 }
2577 /*
2578 * The default setting of latency timer yields poor results,
2579 * set it to the value used by other systems. It may be worth
2580 * tweaking this setting more.
2581 */
2582 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
2583
2584 pci_set_master(pdev);
2585
2586 /*
2587 * Disable the RETRY_TIMEOUT register (0x41) to keep
2588 * PCI Tx retries from interfering with C3 CPU state.
2589 */
2590 pci_read_config_dword(pdev, 0x40, &val);
2591 if ((val & 0x0000ff00) != 0)
2592 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2593
2594 ret = pci_request_region(pdev, 0, "ath9k");
2595 if (ret) {
2596 dev_err(&pdev->dev, "PCI memory region reserve error\n");
2597 ret = -ENODEV;
2598 goto bad;
2599 }
2600
2601 mem = pci_iomap(pdev, 0, 0);
2602 if (!mem) {
2603 printk(KERN_ERR "PCI memory map error\n") ;
2604 ret = -EIO;
2605 goto bad1;
2606 }
2607
2608 hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops);
2609 if (hw == NULL) {
2610 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n");
2611 goto bad2;
2612 }
2613
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002614 SET_IEEE80211_DEV(hw, &pdev->dev);
2615 pci_set_drvdata(pdev, hw);
2616
2617 sc = hw->priv;
2618 sc->hw = hw;
2619 sc->pdev = pdev;
2620 sc->mem = mem;
2621
2622 if (ath_attach(id->device, sc) != 0) {
2623 ret = -ENODEV;
2624 goto bad3;
2625 }
2626
2627 /* setup interrupt service routine */
2628
2629 if (request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc)) {
2630 printk(KERN_ERR "%s: request_irq failed\n",
2631 wiphy_name(hw->wiphy));
2632 ret = -EIO;
2633 goto bad4;
2634 }
2635
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002636 ah = sc->sc_ah;
2637 printk(KERN_INFO
2638 "%s: Atheros AR%s MAC/BB Rev:%x "
2639 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002640 wiphy_name(hw->wiphy),
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002641 ath_mac_bb_name(ah->ah_macVersion),
2642 ah->ah_macRev,
2643 ath_rf_name((ah->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR)),
2644 ah->ah_phyRev,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002645 (unsigned long)mem, pdev->irq);
2646
2647 return 0;
2648bad4:
2649 ath_detach(sc);
2650bad3:
2651 ieee80211_free_hw(hw);
2652bad2:
2653 pci_iounmap(pdev, mem);
2654bad1:
2655 pci_release_region(pdev, 0);
2656bad:
2657 pci_disable_device(pdev);
2658 return ret;
2659}
2660
2661static void ath_pci_remove(struct pci_dev *pdev)
2662{
2663 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2664 struct ath_softc *sc = hw->priv;
2665
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002666 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05302667 if (pdev->irq)
2668 free_irq(pdev->irq, sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002669 pci_iounmap(pdev, sc->mem);
2670 pci_release_region(pdev, 0);
2671 pci_disable_device(pdev);
2672 ieee80211_free_hw(hw);
2673}
2674
2675#ifdef CONFIG_PM
2676
2677static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2678{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302679 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2680 struct ath_softc *sc = hw->priv;
2681
2682 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302683
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302684#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302685 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2686 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2687#endif
2688
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002689 pci_save_state(pdev);
2690 pci_disable_device(pdev);
2691 pci_set_power_state(pdev, 3);
2692
2693 return 0;
2694}
2695
2696static int ath_pci_resume(struct pci_dev *pdev)
2697{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302698 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2699 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002700 u32 val;
2701 int err;
2702
2703 err = pci_enable_device(pdev);
2704 if (err)
2705 return err;
2706 pci_restore_state(pdev);
2707 /*
2708 * Suspend/Resume resets the PCI configuration space, so we have to
2709 * re-disable the RETRY_TIMEOUT register (0x41) to keep
2710 * PCI Tx retries from interfering with C3 CPU state
2711 */
2712 pci_read_config_dword(pdev, 0x40, &val);
2713 if ((val & 0x0000ff00) != 0)
2714 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2715
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302716 /* Enable LED */
2717 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
2718 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
2719 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
2720
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302721#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302722 /*
2723 * check the h/w rfkill state on resume
2724 * and start the rfkill poll timer
2725 */
2726 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2727 queue_delayed_work(sc->hw->workqueue,
2728 &sc->rf_kill.rfkill_poll, 0);
2729#endif
2730
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002731 return 0;
2732}
2733
2734#endif /* CONFIG_PM */
2735
2736MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
2737
2738static struct pci_driver ath_pci_driver = {
2739 .name = "ath9k",
2740 .id_table = ath_pci_id_table,
2741 .probe = ath_pci_probe,
2742 .remove = ath_pci_remove,
2743#ifdef CONFIG_PM
2744 .suspend = ath_pci_suspend,
2745 .resume = ath_pci_resume,
2746#endif /* CONFIG_PM */
2747};
2748
2749static int __init init_ath_pci(void)
2750{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302751 int error;
2752
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002753 printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
2754
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302755 /* Register rate control algorithm */
2756 error = ath_rate_control_register();
2757 if (error != 0) {
2758 printk(KERN_ERR
2759 "Unable to register rate control algorithm: %d\n",
2760 error);
2761 ath_rate_control_unregister();
2762 return error;
2763 }
2764
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002765 if (pci_register_driver(&ath_pci_driver) < 0) {
2766 printk(KERN_ERR
2767 "ath_pci: No devices found, driver not installed.\n");
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302768 ath_rate_control_unregister();
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002769 pci_unregister_driver(&ath_pci_driver);
2770 return -ENODEV;
2771 }
2772
2773 return 0;
2774}
2775module_init(init_ath_pci);
2776
2777static void __exit exit_ath_pci(void)
2778{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302779 ath_rate_control_unregister();
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002780 pci_unregister_driver(&ath_pci_driver);
Sujith04bd4632008-11-28 22:18:05 +05302781 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002782}
2783module_exit(exit_ath_pci);