blob: e22fea18bad6bd7efc257513065bbc2f3c31e617 [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
62static void ath_setcurmode(struct ath_softc *sc, enum wireless_mode mode)
63{
Sujith3706de62008-12-07 21:42:10 +053064 if (!sc->sc_curaid)
65 sc->cur_rate_table = sc->hw_rate_table[mode];
Sujithff37e332008-11-24 12:07:55 +053066 /*
67 * All protection frames are transmited at 2Mb/s for
68 * 11g, otherwise at 1Mb/s.
69 * XXX select protection rate index from rate table.
70 */
71 sc->sc_protrix = (mode == ATH9K_MODE_11G ? 1 : 0);
72}
73
74static enum wireless_mode ath_chan2mode(struct ath9k_channel *chan)
75{
76 if (chan->chanmode == CHANNEL_A)
77 return ATH9K_MODE_11A;
78 else if (chan->chanmode == CHANNEL_G)
79 return ATH9K_MODE_11G;
80 else if (chan->chanmode == CHANNEL_B)
81 return ATH9K_MODE_11B;
82 else if (chan->chanmode == CHANNEL_A_HT20)
83 return ATH9K_MODE_11NA_HT20;
84 else if (chan->chanmode == CHANNEL_G_HT20)
85 return ATH9K_MODE_11NG_HT20;
86 else if (chan->chanmode == CHANNEL_A_HT40PLUS)
87 return ATH9K_MODE_11NA_HT40PLUS;
88 else if (chan->chanmode == CHANNEL_A_HT40MINUS)
89 return ATH9K_MODE_11NA_HT40MINUS;
90 else if (chan->chanmode == CHANNEL_G_HT40PLUS)
91 return ATH9K_MODE_11NG_HT40PLUS;
92 else if (chan->chanmode == CHANNEL_G_HT40MINUS)
93 return ATH9K_MODE_11NG_HT40MINUS;
94
95 WARN_ON(1); /* should not get here */
96
97 return ATH9K_MODE_11B;
98}
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;
221
222 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
223 chan_2ghz[a].flags |= IEEE80211_CHAN_NO_IBSS;
224 if (c->channelFlags & CHANNEL_PASSIVE)
225 chan_2ghz[a].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
226
227 band_2ghz->n_channels = ++a;
228
Sujith04bd4632008-11-28 22:18:05 +0530229 DPRINTF(sc, ATH_DBG_CONFIG, "2MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530230 "channelFlags: 0x%x\n",
Sujith04bd4632008-11-28 22:18:05 +0530231 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530232 } else if (IS_CHAN_5GHZ(c)) {
233 chan_5ghz[b].band = IEEE80211_BAND_5GHZ;
234 chan_5ghz[b].center_freq = c->channel;
235 chan_5ghz[b].max_power = c->maxTxPower;
236
237 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
238 chan_5ghz[b].flags |= IEEE80211_CHAN_NO_IBSS;
239 if (c->channelFlags & CHANNEL_PASSIVE)
240 chan_5ghz[b].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
241
242 band_5ghz->n_channels = ++b;
243
Sujith04bd4632008-11-28 22:18:05 +0530244 DPRINTF(sc, ATH_DBG_CONFIG, "5MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530245 "channelFlags: 0x%x\n",
Sujith04bd4632008-11-28 22:18:05 +0530246 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530247 }
248 }
249
250 return 0;
251}
252
253/*
254 * Set/change channels. If the channel is really being changed, it's done
255 * by reseting the chip. To accomplish this we must first cleanup any pending
256 * DMA, then restart stuff.
257*/
258static int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan)
259{
260 struct ath_hal *ah = sc->sc_ah;
261 bool fastcc = true, stopped;
262
263 if (sc->sc_flags & SC_OP_INVALID)
264 return -EIO;
265
Sujithff37e332008-11-24 12:07:55 +0530266 if (hchan->channel != sc->sc_ah->ah_curchan->channel ||
267 hchan->channelFlags != sc->sc_ah->ah_curchan->channelFlags ||
268 (sc->sc_flags & SC_OP_CHAINMASK_UPDATE) ||
269 (sc->sc_flags & SC_OP_FULL_RESET)) {
270 int status;
271 /*
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 */
Sujith04bd4632008-11-28 22:18:05 +0530280 ath9k_hw_set_interrupts(ah, 0);
281 ath_draintxq(sc, false);
282 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530283
284 /* XXX: do not flush receive queue here. We don't want
285 * to flush data frames already in queue because of
286 * changing channel. */
287
288 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
289 fastcc = false;
290
Sujith99405f92008-11-24 12:08:35 +0530291 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +0530292 "(%u MHz) -> (%u MHz), cflags:%x, chanwidth: %d\n",
Sujith99405f92008-11-24 12:08:35 +0530293 sc->sc_ah->ah_curchan->channel,
294 hchan->channel, hchan->channelFlags, sc->tx_chan_width);
295
Sujithff37e332008-11-24 12:07:55 +0530296 spin_lock_bh(&sc->sc_resetlock);
Sujith99405f92008-11-24 12:08:35 +0530297 if (!ath9k_hw_reset(ah, hchan, sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +0530298 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
299 sc->sc_ht_extprotspacing, fastcc, &status)) {
300 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530301 "Unable to reset channel %u (%uMhz) "
302 "flags 0x%x hal status %u\n",
Sujithff37e332008-11-24 12:07:55 +0530303 ath9k_hw_mhz2ieee(ah, hchan->channel,
304 hchan->channelFlags),
305 hchan->channel, hchan->channelFlags, status);
306 spin_unlock_bh(&sc->sc_resetlock);
307 return -EIO;
308 }
309 spin_unlock_bh(&sc->sc_resetlock);
310
311 sc->sc_flags &= ~SC_OP_CHAINMASK_UPDATE;
312 sc->sc_flags &= ~SC_OP_FULL_RESET;
313
314 if (ath_startrecv(sc) != 0) {
315 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530316 "Unable to restart recv logic\n");
Sujithff37e332008-11-24 12:07:55 +0530317 return -EIO;
318 }
319
320 ath_setcurmode(sc, ath_chan2mode(hchan));
321 ath_update_txpow(sc);
322 ath9k_hw_set_interrupts(ah, sc->sc_imask);
323 }
324 return 0;
325}
326
327/*
328 * This routine performs the periodic noise floor calibration function
329 * that is used to adjust and optimize the chip performance. This
330 * takes environmental changes (location, temperature) into account.
331 * When the task is complete, it reschedules itself depending on the
332 * appropriate interval that was calculated.
333 */
334static void ath_ani_calibrate(unsigned long data)
335{
336 struct ath_softc *sc;
337 struct ath_hal *ah;
338 bool longcal = false;
339 bool shortcal = false;
340 bool aniflag = false;
341 unsigned int timestamp = jiffies_to_msecs(jiffies);
342 u32 cal_interval;
343
344 sc = (struct ath_softc *)data;
345 ah = sc->sc_ah;
346
347 /*
348 * don't calibrate when we're scanning.
349 * we are most likely not on our home channel.
350 */
Sujithb77f4832008-12-07 21:44:03 +0530351 if (sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC)
Sujithff37e332008-11-24 12:07:55 +0530352 return;
353
354 /* Long calibration runs independently of short calibration. */
355 if ((timestamp - sc->sc_ani.sc_longcal_timer) >= ATH_LONG_CALINTERVAL) {
356 longcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530357 DPRINTF(sc, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530358 sc->sc_ani.sc_longcal_timer = timestamp;
359 }
360
361 /* Short calibration applies only while sc_caldone is false */
362 if (!sc->sc_ani.sc_caldone) {
363 if ((timestamp - sc->sc_ani.sc_shortcal_timer) >=
364 ATH_SHORT_CALINTERVAL) {
365 shortcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530366 DPRINTF(sc, ATH_DBG_ANI, "shortcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530367 sc->sc_ani.sc_shortcal_timer = timestamp;
368 sc->sc_ani.sc_resetcal_timer = timestamp;
369 }
370 } else {
371 if ((timestamp - sc->sc_ani.sc_resetcal_timer) >=
372 ATH_RESTART_CALINTERVAL) {
373 ath9k_hw_reset_calvalid(ah, ah->ah_curchan,
374 &sc->sc_ani.sc_caldone);
375 if (sc->sc_ani.sc_caldone)
376 sc->sc_ani.sc_resetcal_timer = timestamp;
377 }
378 }
379
380 /* Verify whether we must check ANI */
381 if ((timestamp - sc->sc_ani.sc_checkani_timer) >=
382 ATH_ANI_POLLINTERVAL) {
383 aniflag = true;
384 sc->sc_ani.sc_checkani_timer = timestamp;
385 }
386
387 /* Skip all processing if there's nothing to do. */
388 if (longcal || shortcal || aniflag) {
389 /* Call ANI routine if necessary */
390 if (aniflag)
391 ath9k_hw_ani_monitor(ah, &sc->sc_halstats,
392 ah->ah_curchan);
393
394 /* Perform calibration if necessary */
395 if (longcal || shortcal) {
396 bool iscaldone = false;
397
398 if (ath9k_hw_calibrate(ah, ah->ah_curchan,
399 sc->sc_rx_chainmask, longcal,
400 &iscaldone)) {
401 if (longcal)
402 sc->sc_ani.sc_noise_floor =
403 ath9k_hw_getchan_noise(ah,
404 ah->ah_curchan);
405
406 DPRINTF(sc, ATH_DBG_ANI,
Sujith04bd4632008-11-28 22:18:05 +0530407 "calibrate chan %u/%x nf: %d\n",
Sujithff37e332008-11-24 12:07:55 +0530408 ah->ah_curchan->channel,
409 ah->ah_curchan->channelFlags,
410 sc->sc_ani.sc_noise_floor);
411 } else {
412 DPRINTF(sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +0530413 "calibrate chan %u/%x failed\n",
Sujithff37e332008-11-24 12:07:55 +0530414 ah->ah_curchan->channel,
415 ah->ah_curchan->channelFlags);
416 }
417 sc->sc_ani.sc_caldone = iscaldone;
418 }
419 }
420
421 /*
422 * Set timer interval based on previous results.
423 * The interval must be the shortest necessary to satisfy ANI,
424 * short calibration and long calibration.
425 */
Sujithaac92072008-12-02 18:37:54 +0530426 cal_interval = ATH_LONG_CALINTERVAL;
427 if (sc->sc_ah->ah_config.enable_ani)
428 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
Sujithff37e332008-11-24 12:07:55 +0530429 if (!sc->sc_ani.sc_caldone)
430 cal_interval = min(cal_interval, (u32)ATH_SHORT_CALINTERVAL);
431
432 mod_timer(&sc->sc_ani.timer, jiffies + msecs_to_jiffies(cal_interval));
433}
434
435/*
436 * Update tx/rx chainmask. For legacy association,
437 * hard code chainmask to 1x1, for 11n association, use
438 * the chainmask configuration.
439 */
440static void ath_update_chainmask(struct ath_softc *sc, int is_ht)
441{
442 sc->sc_flags |= SC_OP_CHAINMASK_UPDATE;
443 if (is_ht) {
444 sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask;
445 sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask;
446 } else {
447 sc->sc_tx_chainmask = 1;
448 sc->sc_rx_chainmask = 1;
449 }
450
Sujith04bd4632008-11-28 22:18:05 +0530451 DPRINTF(sc, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n",
452 sc->sc_tx_chainmask, sc->sc_rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530453}
454
455static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
456{
457 struct ath_node *an;
458
459 an = (struct ath_node *)sta->drv_priv;
460
461 if (sc->sc_flags & SC_OP_TXAGGR)
462 ath_tx_node_init(sc, an);
463
464 an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR +
465 sta->ht_cap.ampdu_factor);
466 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
467}
468
469static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
470{
471 struct ath_node *an = (struct ath_node *)sta->drv_priv;
472
473 if (sc->sc_flags & SC_OP_TXAGGR)
474 ath_tx_node_cleanup(sc, an);
475}
476
477static void ath9k_tasklet(unsigned long data)
478{
479 struct ath_softc *sc = (struct ath_softc *)data;
480 u32 status = sc->sc_intrstatus;
481
482 if (status & ATH9K_INT_FATAL) {
483 /* need a chip reset */
484 ath_reset(sc, false);
485 return;
486 } else {
487
488 if (status &
489 (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
Sujithb77f4832008-12-07 21:44:03 +0530490 spin_lock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530491 ath_rx_tasklet(sc, 0);
Sujithb77f4832008-12-07 21:44:03 +0530492 spin_unlock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530493 }
494 /* XXX: optimize this */
495 if (status & ATH9K_INT_TX)
496 ath_tx_tasklet(sc);
497 }
498
499 /* re-enable hardware interrupt */
500 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
501}
502
503static irqreturn_t ath_isr(int irq, void *dev)
504{
505 struct ath_softc *sc = dev;
506 struct ath_hal *ah = sc->sc_ah;
507 enum ath9k_int status;
508 bool sched = false;
509
510 do {
511 if (sc->sc_flags & SC_OP_INVALID) {
512 /*
513 * The hardware is not ready/present, don't
514 * touch anything. Note this can happen early
515 * on if the IRQ is shared.
516 */
517 return IRQ_NONE;
518 }
519 if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */
520 return IRQ_NONE;
521 }
522
523 /*
524 * Figure out the reason(s) for the interrupt. Note
525 * that the hal returns a pseudo-ISR that may include
526 * bits we haven't explicitly enabled so we mask the
527 * value to insure we only process bits we requested.
528 */
529 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
530
531 status &= sc->sc_imask; /* discard unasked-for bits */
532
533 /*
534 * If there are no status bits set, then this interrupt was not
535 * for me (should have been caught above).
536 */
537 if (!status)
538 return IRQ_NONE;
539
540 sc->sc_intrstatus = status;
541
542 if (status & ATH9K_INT_FATAL) {
543 /* need a chip reset */
544 sched = true;
545 } else if (status & ATH9K_INT_RXORN) {
546 /* need a chip reset */
547 sched = true;
548 } else {
549 if (status & ATH9K_INT_SWBA) {
550 /* schedule a tasklet for beacon handling */
551 tasklet_schedule(&sc->bcon_tasklet);
552 }
553 if (status & ATH9K_INT_RXEOL) {
554 /*
555 * NB: the hardware should re-read the link when
556 * RXE bit is written, but it doesn't work
557 * at least on older hardware revs.
558 */
559 sched = true;
560 }
561
562 if (status & ATH9K_INT_TXURN)
563 /* bump tx trigger level */
564 ath9k_hw_updatetxtriglevel(ah, true);
565 /* XXX: optimize this */
566 if (status & ATH9K_INT_RX)
567 sched = true;
568 if (status & ATH9K_INT_TX)
569 sched = true;
570 if (status & ATH9K_INT_BMISS)
571 sched = true;
572 /* carrier sense timeout */
573 if (status & ATH9K_INT_CST)
574 sched = true;
575 if (status & ATH9K_INT_MIB) {
576 /*
577 * Disable interrupts until we service the MIB
578 * interrupt; otherwise it will continue to
579 * fire.
580 */
581 ath9k_hw_set_interrupts(ah, 0);
582 /*
583 * Let the hal handle the event. We assume
584 * it will clear whatever condition caused
585 * the interrupt.
586 */
587 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
588 ath9k_hw_set_interrupts(ah, sc->sc_imask);
589 }
590 if (status & ATH9K_INT_TIM_TIMER) {
591 if (!(ah->ah_caps.hw_caps &
592 ATH9K_HW_CAP_AUTOSLEEP)) {
593 /* Clear RxAbort bit so that we can
594 * receive frames */
595 ath9k_hw_setrxabort(ah, 0);
596 sched = true;
597 }
598 }
599 }
600 } while (0);
601
Sujith817e11d2008-12-07 21:42:44 +0530602 ath_debug_stat_interrupt(sc, status);
603
Sujithff37e332008-11-24 12:07:55 +0530604 if (sched) {
605 /* turn off every interrupt except SWBA */
606 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
607 tasklet_schedule(&sc->intr_tq);
608 }
609
610 return IRQ_HANDLED;
611}
612
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700613static int ath_get_channel(struct ath_softc *sc,
614 struct ieee80211_channel *chan)
615{
616 int i;
617
618 for (i = 0; i < sc->sc_ah->ah_nchan; i++) {
619 if (sc->sc_ah->ah_channels[i].channel == chan->center_freq)
620 return i;
621 }
622
623 return -1;
624}
625
626static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530627 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +0530628 enum nl80211_channel_type channel_type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700629{
630 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700631
632 switch (chan->band) {
633 case IEEE80211_BAND_2GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530634 switch(channel_type) {
635 case NL80211_CHAN_NO_HT:
636 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700637 chanmode = CHANNEL_G_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530638 break;
639 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700640 chanmode = CHANNEL_G_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530641 break;
642 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700643 chanmode = CHANNEL_G_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530644 break;
645 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700646 break;
647 case IEEE80211_BAND_5GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530648 switch(channel_type) {
649 case NL80211_CHAN_NO_HT:
650 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700651 chanmode = CHANNEL_A_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530652 break;
653 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700654 chanmode = CHANNEL_A_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530655 break;
656 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700657 chanmode = CHANNEL_A_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530658 break;
659 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700660 break;
661 default:
662 break;
663 }
664
665 return chanmode;
666}
667
Sujithff37e332008-11-24 12:07:55 +0530668static void ath_key_reset(struct ath_softc *sc, u16 keyix, int freeslot)
669{
670 ath9k_hw_keyreset(sc->sc_ah, keyix);
671 if (freeslot)
672 clear_bit(keyix, sc->sc_keymap);
673}
674
675static int ath_keyset(struct ath_softc *sc, u16 keyix,
676 struct ath9k_keyval *hk, const u8 mac[ETH_ALEN])
677{
678 bool status;
679
680 status = ath9k_hw_set_keycache_entry(sc->sc_ah,
681 keyix, hk, mac, false);
682
683 return status != false;
684}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700685
686static int ath_setkey_tkip(struct ath_softc *sc,
687 struct ieee80211_key_conf *key,
688 struct ath9k_keyval *hk,
689 const u8 *addr)
690{
691 u8 *key_rxmic = NULL;
692 u8 *key_txmic = NULL;
693
694 key_txmic = key->key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
695 key_rxmic = key->key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
696
697 if (addr == NULL) {
698 /* Group key installation */
699 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
700 return ath_keyset(sc, key->keyidx, hk, addr);
701 }
702 if (!sc->sc_splitmic) {
703 /*
704 * data key goes at first index,
705 * the hal handles the MIC keys at index+64.
706 */
707 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
708 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
709 return ath_keyset(sc, key->keyidx, hk, addr);
710 }
711 /*
712 * TX key goes at first index, RX key at +32.
713 * The hal handles the MIC keys at index+64.
714 */
715 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
716 if (!ath_keyset(sc, key->keyidx, hk, NULL)) {
717 /* Txmic entry failed. No need to proceed further */
718 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +0530719 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700720 return 0;
721 }
722
723 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
724 /* XXX delete tx key on failure? */
725 return ath_keyset(sc, key->keyidx+32, hk, addr);
726}
727
728static int ath_key_config(struct ath_softc *sc,
729 const u8 *addr,
730 struct ieee80211_key_conf *key)
731{
732 struct ieee80211_vif *vif;
733 struct ath9k_keyval hk;
734 const u8 *mac = NULL;
735 int ret = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200736 enum nl80211_iftype opmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700737
738 memset(&hk, 0, sizeof(hk));
739
740 switch (key->alg) {
741 case ALG_WEP:
742 hk.kv_type = ATH9K_CIPHER_WEP;
743 break;
744 case ALG_TKIP:
745 hk.kv_type = ATH9K_CIPHER_TKIP;
746 break;
747 case ALG_CCMP:
748 hk.kv_type = ATH9K_CIPHER_AES_CCM;
749 break;
750 default:
751 return -EINVAL;
752 }
753
754 hk.kv_len = key->keylen;
755 memcpy(hk.kv_val, key->key, key->keylen);
756
757 if (!sc->sc_vaps[0])
758 return -EIO;
759
Sujith5640b082008-10-29 10:16:06 +0530760 vif = sc->sc_vaps[0];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 opmode = vif->type;
762
763 /*
764 * Strategy:
Colin McCabed97809d2008-12-01 13:38:55 -0800765 * For STA mc tx, we will not setup a key at
766 * all since we never tx mc.
767 *
768 * For STA mc rx, we will use the keyID.
769 *
770 * For ADHOC mc tx, we will use the keyID, and no macaddr.
771 *
772 * For ADHOC mc rx, we will alloc a slot and plumb the mac of
773 * the peer node.
774 * BUT we will plumb a cleartext key so that we can do
775 * per-Sta default key table lookup in software.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700776 */
777 if (is_broadcast_ether_addr(addr)) {
778 switch (opmode) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200779 case NL80211_IFTYPE_STATION:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780 /* default key: could be group WPA key
781 * or could be static WEP key */
782 mac = NULL;
783 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200784 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700785 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200786 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787 break;
788 default:
789 ASSERT(0);
790 break;
791 }
792 } else {
793 mac = addr;
794 }
795
796 if (key->alg == ALG_TKIP)
797 ret = ath_setkey_tkip(sc, key, &hk, mac);
798 else
799 ret = ath_keyset(sc, key->keyidx, &hk, mac);
800
801 if (!ret)
802 return -EIO;
803
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700804 return 0;
805}
806
807static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
808{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700809 int freeslot;
810
Sujithff9b6622008-08-14 13:27:16 +0530811 freeslot = (key->keyidx >= 4) ? 1 : 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700812 ath_key_reset(sc, key->keyidx, freeslot);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700813}
814
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200815static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700816{
Sujith60653672008-08-14 13:28:02 +0530817#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
818#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700819
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200820 ht_info->ht_supported = true;
821 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
822 IEEE80211_HT_CAP_SM_PS |
823 IEEE80211_HT_CAP_SGI_40 |
824 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700825
Sujith60653672008-08-14 13:28:02 +0530826 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
827 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200828 /* set up supported mcs set */
829 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
830 ht_info->mcs.rx_mask[0] = 0xff;
831 ht_info->mcs.rx_mask[1] = 0xff;
832 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700833}
834
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530835static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530836 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530837 struct ieee80211_bss_conf *bss_conf)
838{
Sujith5640b082008-10-29 10:16:06 +0530839 struct ath_vap *avp = (void *)vif->drv_priv;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530840
841 if (bss_conf->assoc) {
Sujith094d05d2008-12-12 11:57:43 +0530842 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d, bssid: %pM\n",
843 bss_conf->aid, sc->sc_curbssid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530844
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530845 /* New association, store aid */
Colin McCabed97809d2008-12-01 13:38:55 -0800846 if (avp->av_opmode == NL80211_IFTYPE_STATION) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530847 sc->sc_curaid = bss_conf->aid;
848 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
849 sc->sc_curaid);
850 }
851
852 /* Configure the beacon */
853 ath_beacon_config(sc, 0);
854 sc->sc_flags |= SC_OP_BEACONS;
855
856 /* Reset rssi stats */
857 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
858 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
859 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
860 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
861
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700862 /* Start ANI */
863 mod_timer(&sc->sc_ani.timer,
864 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
865
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530866 } else {
Sujith04bd4632008-11-28 22:18:05 +0530867 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530868 sc->sc_curaid = 0;
869 }
870}
871
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530872/********************************/
873/* LED functions */
874/********************************/
875
876static void ath_led_brightness(struct led_classdev *led_cdev,
877 enum led_brightness brightness)
878{
879 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
880 struct ath_softc *sc = led->sc;
881
882 switch (brightness) {
883 case LED_OFF:
884 if (led->led_type == ATH_LED_ASSOC ||
885 led->led_type == ATH_LED_RADIO)
886 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
887 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
888 (led->led_type == ATH_LED_RADIO) ? 1 :
889 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
890 break;
891 case LED_FULL:
892 if (led->led_type == ATH_LED_ASSOC)
893 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
894 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
895 break;
896 default:
897 break;
898 }
899}
900
901static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
902 char *trigger)
903{
904 int ret;
905
906 led->sc = sc;
907 led->led_cdev.name = led->name;
908 led->led_cdev.default_trigger = trigger;
909 led->led_cdev.brightness_set = ath_led_brightness;
910
911 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
912 if (ret)
913 DPRINTF(sc, ATH_DBG_FATAL,
914 "Failed to register led:%s", led->name);
915 else
916 led->registered = 1;
917 return ret;
918}
919
920static void ath_unregister_led(struct ath_led *led)
921{
922 if (led->registered) {
923 led_classdev_unregister(&led->led_cdev);
924 led->registered = 0;
925 }
926}
927
928static void ath_deinit_leds(struct ath_softc *sc)
929{
930 ath_unregister_led(&sc->assoc_led);
931 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
932 ath_unregister_led(&sc->tx_led);
933 ath_unregister_led(&sc->rx_led);
934 ath_unregister_led(&sc->radio_led);
935 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
936}
937
938static void ath_init_leds(struct ath_softc *sc)
939{
940 char *trigger;
941 int ret;
942
943 /* Configure gpio 1 for output */
944 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
945 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
946 /* LED off, active low */
947 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
948
949 trigger = ieee80211_get_radio_led_name(sc->hw);
950 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
951 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
952 ret = ath_register_led(sc, &sc->radio_led, trigger);
953 sc->radio_led.led_type = ATH_LED_RADIO;
954 if (ret)
955 goto fail;
956
957 trigger = ieee80211_get_assoc_led_name(sc->hw);
958 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
959 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
960 ret = ath_register_led(sc, &sc->assoc_led, trigger);
961 sc->assoc_led.led_type = ATH_LED_ASSOC;
962 if (ret)
963 goto fail;
964
965 trigger = ieee80211_get_tx_led_name(sc->hw);
966 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
967 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
968 ret = ath_register_led(sc, &sc->tx_led, trigger);
969 sc->tx_led.led_type = ATH_LED_TX;
970 if (ret)
971 goto fail;
972
973 trigger = ieee80211_get_rx_led_name(sc->hw);
974 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
975 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
976 ret = ath_register_led(sc, &sc->rx_led, trigger);
977 sc->rx_led.led_type = ATH_LED_RX;
978 if (ret)
979 goto fail;
980
981 return;
982
983fail:
984 ath_deinit_leds(sc);
985}
986
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +0530987#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +0530988
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +0530989/*******************/
990/* Rfkill */
991/*******************/
992
993static void ath_radio_enable(struct ath_softc *sc)
994{
995 struct ath_hal *ah = sc->sc_ah;
996 int status;
997
998 spin_lock_bh(&sc->sc_resetlock);
999 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301000 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301001 sc->sc_tx_chainmask,
1002 sc->sc_rx_chainmask,
1003 sc->sc_ht_extprotspacing,
1004 false, &status)) {
1005 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301006 "Unable to reset channel %u (%uMhz) "
1007 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301008 ath9k_hw_mhz2ieee(ah,
1009 ah->ah_curchan->channel,
1010 ah->ah_curchan->channelFlags),
1011 ah->ah_curchan->channel,
1012 ah->ah_curchan->channelFlags, status);
1013 }
1014 spin_unlock_bh(&sc->sc_resetlock);
1015
1016 ath_update_txpow(sc);
1017 if (ath_startrecv(sc) != 0) {
1018 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301019 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301020 return;
1021 }
1022
1023 if (sc->sc_flags & SC_OP_BEACONS)
1024 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1025
1026 /* Re-Enable interrupts */
1027 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1028
1029 /* Enable LED */
1030 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
1031 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1032 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
1033
1034 ieee80211_wake_queues(sc->hw);
1035}
1036
1037static void ath_radio_disable(struct ath_softc *sc)
1038{
1039 struct ath_hal *ah = sc->sc_ah;
1040 int status;
1041
1042
1043 ieee80211_stop_queues(sc->hw);
1044
1045 /* Disable LED */
1046 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
1047 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
1048
1049 /* Disable interrupts */
1050 ath9k_hw_set_interrupts(ah, 0);
1051
1052 ath_draintxq(sc, false); /* clear pending tx frames */
1053 ath_stoprecv(sc); /* turn off frame recv */
1054 ath_flushrecv(sc); /* flush recv queue */
1055
1056 spin_lock_bh(&sc->sc_resetlock);
1057 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301058 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301059 sc->sc_tx_chainmask,
1060 sc->sc_rx_chainmask,
1061 sc->sc_ht_extprotspacing,
1062 false, &status)) {
1063 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301064 "Unable to reset channel %u (%uMhz) "
1065 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301066 ath9k_hw_mhz2ieee(ah,
1067 ah->ah_curchan->channel,
1068 ah->ah_curchan->channelFlags),
1069 ah->ah_curchan->channel,
1070 ah->ah_curchan->channelFlags, status);
1071 }
1072 spin_unlock_bh(&sc->sc_resetlock);
1073
1074 ath9k_hw_phy_disable(ah);
1075 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1076}
1077
1078static bool ath_is_rfkill_set(struct ath_softc *sc)
1079{
1080 struct ath_hal *ah = sc->sc_ah;
1081
1082 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
1083 ah->ah_rfkill_polarity;
1084}
1085
1086/* h/w rfkill poll function */
1087static void ath_rfkill_poll(struct work_struct *work)
1088{
1089 struct ath_softc *sc = container_of(work, struct ath_softc,
1090 rf_kill.rfkill_poll.work);
1091 bool radio_on;
1092
1093 if (sc->sc_flags & SC_OP_INVALID)
1094 return;
1095
1096 radio_on = !ath_is_rfkill_set(sc);
1097
1098 /*
1099 * enable/disable radio only when there is a
1100 * state change in RF switch
1101 */
1102 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
1103 enum rfkill_state state;
1104
1105 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
1106 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
1107 : RFKILL_STATE_HARD_BLOCKED;
1108 } else if (radio_on) {
1109 ath_radio_enable(sc);
1110 state = RFKILL_STATE_UNBLOCKED;
1111 } else {
1112 ath_radio_disable(sc);
1113 state = RFKILL_STATE_HARD_BLOCKED;
1114 }
1115
1116 if (state == RFKILL_STATE_HARD_BLOCKED)
1117 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
1118 else
1119 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
1120
1121 rfkill_force_state(sc->rf_kill.rfkill, state);
1122 }
1123
1124 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
1125 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
1126}
1127
1128/* s/w rfkill handler */
1129static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
1130{
1131 struct ath_softc *sc = data;
1132
1133 switch (state) {
1134 case RFKILL_STATE_SOFT_BLOCKED:
1135 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
1136 SC_OP_RFKILL_SW_BLOCKED)))
1137 ath_radio_disable(sc);
1138 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
1139 return 0;
1140 case RFKILL_STATE_UNBLOCKED:
1141 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
1142 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
1143 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
1144 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
Sujith04bd4632008-11-28 22:18:05 +05301145 "radio as it is disabled by h/w\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301146 return -EPERM;
1147 }
1148 ath_radio_enable(sc);
1149 }
1150 return 0;
1151 default:
1152 return -EINVAL;
1153 }
1154}
1155
1156/* Init s/w rfkill */
1157static int ath_init_sw_rfkill(struct ath_softc *sc)
1158{
1159 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
1160 RFKILL_TYPE_WLAN);
1161 if (!sc->rf_kill.rfkill) {
1162 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
1163 return -ENOMEM;
1164 }
1165
1166 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
1167 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
1168 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
1169 sc->rf_kill.rfkill->data = sc;
1170 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
1171 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
1172 sc->rf_kill.rfkill->user_claim_unsupported = 1;
1173
1174 return 0;
1175}
1176
1177/* Deinitialize rfkill */
1178static void ath_deinit_rfkill(struct ath_softc *sc)
1179{
1180 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1181 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1182
1183 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
1184 rfkill_unregister(sc->rf_kill.rfkill);
1185 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
1186 sc->rf_kill.rfkill = NULL;
1187 }
1188}
Sujith9c84b792008-10-29 10:17:13 +05301189
1190static int ath_start_rfkill_poll(struct ath_softc *sc)
1191{
1192 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1193 queue_delayed_work(sc->hw->workqueue,
1194 &sc->rf_kill.rfkill_poll, 0);
1195
1196 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1197 if (rfkill_register(sc->rf_kill.rfkill)) {
1198 DPRINTF(sc, ATH_DBG_FATAL,
1199 "Unable to register rfkill\n");
1200 rfkill_free(sc->rf_kill.rfkill);
1201
1202 /* Deinitialize the device */
Senthil Balasubramanian306efdd2008-11-13 18:00:37 +05301203 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05301204 if (sc->pdev->irq)
1205 free_irq(sc->pdev->irq, sc);
Sujith9c84b792008-10-29 10:17:13 +05301206 pci_iounmap(sc->pdev, sc->mem);
1207 pci_release_region(sc->pdev, 0);
1208 pci_disable_device(sc->pdev);
Sujith9757d552008-11-04 18:25:27 +05301209 ieee80211_free_hw(sc->hw);
Sujith9c84b792008-10-29 10:17:13 +05301210 return -EIO;
1211 } else {
1212 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1213 }
1214 }
1215
1216 return 0;
1217}
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301218#endif /* CONFIG_RFKILL */
1219
Sujith9c84b792008-10-29 10:17:13 +05301220static void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301221{
1222 struct ieee80211_hw *hw = sc->hw;
Sujith9c84b792008-10-29 10:17:13 +05301223 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301224
Sujith04bd4632008-11-28 22:18:05 +05301225 DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301226
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301227#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301228 ath_deinit_rfkill(sc);
1229#endif
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301230 ath_deinit_leds(sc);
1231
1232 ieee80211_unregister_hw(hw);
1233
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301234 ath_rate_control_unregister();
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301235
1236 ath_rx_cleanup(sc);
1237 ath_tx_cleanup(sc);
1238
Sujith9c84b792008-10-29 10:17:13 +05301239 tasklet_kill(&sc->intr_tq);
1240 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301241
Sujith9c84b792008-10-29 10:17:13 +05301242 if (!(sc->sc_flags & SC_OP_INVALID))
1243 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301244
Sujith9c84b792008-10-29 10:17:13 +05301245 /* cleanup tx queues */
1246 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1247 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301248 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith9c84b792008-10-29 10:17:13 +05301249
1250 ath9k_hw_detach(sc->sc_ah);
Sujith826d2682008-11-28 22:20:23 +05301251 ath9k_exit_debug(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301252}
1253
Sujithff37e332008-11-24 12:07:55 +05301254static int ath_init(u16 devid, struct ath_softc *sc)
1255{
1256 struct ath_hal *ah = NULL;
1257 int status;
1258 int error = 0, i;
1259 int csz = 0;
1260
1261 /* XXX: hardware will not be ready until ath_open() being called */
1262 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301263
Sujith826d2682008-11-28 22:20:23 +05301264 if (ath9k_init_debug(sc) < 0)
1265 printk(KERN_ERR "Unable to create debugfs files\n");
Sujithff37e332008-11-24 12:07:55 +05301266
1267 spin_lock_init(&sc->sc_resetlock);
1268 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1269 tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1270 (unsigned long)sc);
1271
1272 /*
1273 * Cache line size is used to size and align various
1274 * structures used to communicate with the hardware.
1275 */
1276 bus_read_cachesize(sc, &csz);
1277 /* XXX assert csz is non-zero */
1278 sc->sc_cachelsz = csz << 2; /* convert to bytes */
1279
1280 ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1281 if (ah == NULL) {
1282 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301283 "Unable to attach hardware; HAL status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301284 error = -ENXIO;
1285 goto bad;
1286 }
1287 sc->sc_ah = ah;
1288
1289 /* Get the hardware key cache size. */
1290 sc->sc_keymax = ah->ah_caps.keycache_size;
1291 if (sc->sc_keymax > ATH_KEYMAX) {
1292 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05301293 "Warning, using only %u entries in %u key cache\n",
1294 ATH_KEYMAX, sc->sc_keymax);
Sujithff37e332008-11-24 12:07:55 +05301295 sc->sc_keymax = ATH_KEYMAX;
1296 }
1297
1298 /*
1299 * Reset the key cache since some parts do not
1300 * reset the contents on initial power up.
1301 */
1302 for (i = 0; i < sc->sc_keymax; i++)
1303 ath9k_hw_keyreset(ah, (u16) i);
1304 /*
1305 * Mark key cache slots associated with global keys
1306 * as in use. If we knew TKIP was not to be used we
1307 * could leave the +32, +64, and +32+64 slots free.
1308 * XXX only for splitmic.
1309 */
1310 for (i = 0; i < IEEE80211_WEP_NKID; i++) {
1311 set_bit(i, sc->sc_keymap);
1312 set_bit(i + 32, sc->sc_keymap);
1313 set_bit(i + 64, sc->sc_keymap);
1314 set_bit(i + 32 + 64, sc->sc_keymap);
1315 }
1316
1317 /* Collect the channel list using the default country code */
1318
1319 error = ath_setup_channels(sc);
1320 if (error)
1321 goto bad;
1322
1323 /* default to MONITOR mode */
Colin McCabed97809d2008-12-01 13:38:55 -08001324 sc->sc_ah->ah_opmode = NL80211_IFTYPE_MONITOR;
1325
Sujithff37e332008-11-24 12:07:55 +05301326
1327 /* Setup rate tables */
1328
1329 ath_rate_attach(sc);
1330 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1331 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1332
1333 /*
1334 * Allocate hardware transmit queues: one queue for
1335 * beacon frames and one data queue for each QoS
1336 * priority. Note that the hal handles reseting
1337 * these queues at the needed time.
1338 */
Sujithb77f4832008-12-07 21:44:03 +05301339 sc->beacon.beaconq = ath_beaconq_setup(ah);
1340 if (sc->beacon.beaconq == -1) {
Sujithff37e332008-11-24 12:07:55 +05301341 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301342 "Unable to setup a beacon xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301343 error = -EIO;
1344 goto bad2;
1345 }
Sujithb77f4832008-12-07 21:44:03 +05301346 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1347 if (sc->beacon.cabq == NULL) {
Sujithff37e332008-11-24 12:07:55 +05301348 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301349 "Unable to setup CAB xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301350 error = -EIO;
1351 goto bad2;
1352 }
1353
1354 sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1355 ath_cabq_update(sc);
1356
Sujithb77f4832008-12-07 21:44:03 +05301357 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
1358 sc->tx.hwq_map[i] = -1;
Sujithff37e332008-11-24 12:07:55 +05301359
1360 /* Setup data queues */
1361 /* NB: ensure BK queue is the lowest priority h/w queue */
1362 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1363 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301364 "Unable to setup xmit queue for BK traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301365 error = -EIO;
1366 goto bad2;
1367 }
1368
1369 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1370 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301371 "Unable to setup xmit queue for BE traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301372 error = -EIO;
1373 goto bad2;
1374 }
1375 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1376 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301377 "Unable to setup xmit queue for VI traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301378 error = -EIO;
1379 goto bad2;
1380 }
1381 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1382 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301383 "Unable to setup xmit queue for VO traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301384 error = -EIO;
1385 goto bad2;
1386 }
1387
1388 /* Initializes the noise floor to a reasonable default value.
1389 * Later on this will be updated during ANI processing. */
1390
1391 sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1392 setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc);
1393
1394 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1395 ATH9K_CIPHER_TKIP, NULL)) {
1396 /*
1397 * Whether we should enable h/w TKIP MIC.
1398 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1399 * report WMM capable, so it's always safe to turn on
1400 * TKIP MIC in this case.
1401 */
1402 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1403 0, 1, NULL);
1404 }
1405
1406 /*
1407 * Check whether the separate key cache entries
1408 * are required to handle both tx+rx MIC keys.
1409 * With split mic keys the number of stations is limited
1410 * to 27 otherwise 59.
1411 */
1412 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1413 ATH9K_CIPHER_TKIP, NULL)
1414 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1415 ATH9K_CIPHER_MIC, NULL)
1416 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1417 0, NULL))
1418 sc->sc_splitmic = 1;
1419
1420 /* turn on mcast key search if possible */
1421 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1422 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1423 1, NULL);
1424
1425 sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1426 sc->sc_config.txpowlimit_override = 0;
1427
1428 /* 11n Capabilities */
1429 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1430 sc->sc_flags |= SC_OP_TXAGGR;
1431 sc->sc_flags |= SC_OP_RXAGGR;
1432 }
1433
1434 sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1435 sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1436
1437 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
Sujithb77f4832008-12-07 21:44:03 +05301438 sc->rx.defant = ath9k_hw_getdefantenna(ah);
Sujithff37e332008-11-24 12:07:55 +05301439
1440 ath9k_hw_getmac(ah, sc->sc_myaddr);
1441 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1442 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1443 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1444 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1445 }
1446
Sujithb77f4832008-12-07 21:44:03 +05301447 sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
Sujithff37e332008-11-24 12:07:55 +05301448
1449 /* initialize beacon slots */
Sujithb77f4832008-12-07 21:44:03 +05301450 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++)
1451 sc->beacon.bslot[i] = ATH_IF_ID_ANY;
Sujithff37e332008-11-24 12:07:55 +05301452
1453 /* save MISC configurations */
1454 sc->sc_config.swBeaconProcess = 1;
1455
Sujithff37e332008-11-24 12:07:55 +05301456 /* setup channels and rates */
1457
1458 sc->sbands[IEEE80211_BAND_2GHZ].channels =
1459 sc->channels[IEEE80211_BAND_2GHZ];
1460 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1461 sc->rates[IEEE80211_BAND_2GHZ];
1462 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
1463
1464 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
1465 sc->sbands[IEEE80211_BAND_5GHZ].channels =
1466 sc->channels[IEEE80211_BAND_5GHZ];
1467 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1468 sc->rates[IEEE80211_BAND_5GHZ];
1469 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
1470 }
1471
1472 return 0;
1473bad2:
1474 /* cleanup tx queues */
1475 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1476 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301477 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujithff37e332008-11-24 12:07:55 +05301478bad:
1479 if (ah)
1480 ath9k_hw_detach(ah);
1481
1482 return error;
1483}
1484
Sujith9c84b792008-10-29 10:17:13 +05301485static int ath_attach(u16 devid, struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301486{
1487 struct ieee80211_hw *hw = sc->hw;
1488 int error = 0;
1489
Sujith04bd4632008-11-28 22:18:05 +05301490 DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301491
1492 error = ath_init(devid, sc);
1493 if (error != 0)
1494 return error;
1495
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301496 /* get mac address from hardware and set in mac80211 */
1497
1498 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
1499
Sujith9c84b792008-10-29 10:17:13 +05301500 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1501 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1502 IEEE80211_HW_SIGNAL_DBM |
1503 IEEE80211_HW_AMPDU_AGGREGATION;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301504
Sujith9c84b792008-10-29 10:17:13 +05301505 hw->wiphy->interface_modes =
1506 BIT(NL80211_IFTYPE_AP) |
1507 BIT(NL80211_IFTYPE_STATION) |
1508 BIT(NL80211_IFTYPE_ADHOC);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301509
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301510 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301511 hw->max_rates = 4;
1512 hw->max_rate_tries = ATH_11N_TXMAXTRY;
Sujith528f0c62008-10-29 10:14:26 +05301513 hw->sta_data_size = sizeof(struct ath_node);
Sujith5640b082008-10-29 10:16:06 +05301514 hw->vif_data_size = sizeof(struct ath_vap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301515
1516 /* Register rate control */
1517 hw->rate_control_algorithm = "ath9k_rate_control";
1518 error = ath_rate_control_register();
1519 if (error != 0) {
1520 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301521 "Unable to register rate control algorithm: %d\n", error);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301522 ath_rate_control_unregister();
1523 goto bad;
1524 }
1525
Sujith9c84b792008-10-29 10:17:13 +05301526 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1527 setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
1528 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1529 setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
1530 }
1531
1532 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ];
1533 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1534 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1535 &sc->sbands[IEEE80211_BAND_5GHZ];
1536
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301537 /* initialize tx/rx engine */
1538 error = ath_tx_init(sc, ATH_TXBUF);
1539 if (error != 0)
1540 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301541
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301542 error = ath_rx_init(sc, ATH_RXBUF);
1543 if (error != 0)
1544 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301545
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301546#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301547 /* Initialze h/w Rfkill */
1548 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1549 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
1550
1551 /* Initialize s/w rfkill */
1552 if (ath_init_sw_rfkill(sc))
1553 goto detach;
1554#endif
1555
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301556 error = ieee80211_register_hw(hw);
1557 if (error != 0) {
1558 ath_rate_control_unregister();
1559 goto bad;
1560 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301561
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301562 /* Initialize LED control */
1563 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301564
1565 return 0;
1566detach:
1567 ath_detach(sc);
1568bad:
1569 return error;
1570}
1571
Sujithff37e332008-11-24 12:07:55 +05301572int ath_reset(struct ath_softc *sc, bool retry_tx)
1573{
1574 struct ath_hal *ah = sc->sc_ah;
1575 int status;
1576 int error = 0;
1577
1578 ath9k_hw_set_interrupts(ah, 0);
1579 ath_draintxq(sc, retry_tx);
1580 ath_stoprecv(sc);
1581 ath_flushrecv(sc);
1582
1583 spin_lock_bh(&sc->sc_resetlock);
1584 if (!ath9k_hw_reset(ah, sc->sc_ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301585 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301586 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1587 sc->sc_ht_extprotspacing, false, &status)) {
1588 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301589 "Unable to reset hardware; hal status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301590 error = -EIO;
1591 }
1592 spin_unlock_bh(&sc->sc_resetlock);
1593
1594 if (ath_startrecv(sc) != 0)
Sujith04bd4632008-11-28 22:18:05 +05301595 DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301596
1597 /*
1598 * We may be doing a reset in response to a request
1599 * that changes the channel so update any state that
1600 * might change as a result.
1601 */
1602 ath_setcurmode(sc, ath_chan2mode(sc->sc_ah->ah_curchan));
1603
1604 ath_update_txpow(sc);
1605
1606 if (sc->sc_flags & SC_OP_BEACONS)
1607 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1608
1609 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1610
1611 if (retry_tx) {
1612 int i;
1613 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1614 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05301615 spin_lock_bh(&sc->tx.txq[i].axq_lock);
1616 ath_txq_schedule(sc, &sc->tx.txq[i]);
1617 spin_unlock_bh(&sc->tx.txq[i].axq_lock);
Sujithff37e332008-11-24 12:07:55 +05301618 }
1619 }
1620 }
1621
1622 return error;
1623}
1624
1625/*
1626 * This function will allocate both the DMA descriptor structure, and the
1627 * buffers it contains. These are used to contain the descriptors used
1628 * by the system.
1629*/
1630int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1631 struct list_head *head, const char *name,
1632 int nbuf, int ndesc)
1633{
1634#define DS2PHYS(_dd, _ds) \
1635 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1636#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1637#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1638
1639 struct ath_desc *ds;
1640 struct ath_buf *bf;
1641 int i, bsize, error;
1642
Sujith04bd4632008-11-28 22:18:05 +05301643 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
1644 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301645
1646 /* ath_desc must be a multiple of DWORDs */
1647 if ((sizeof(struct ath_desc) % 4) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05301648 DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301649 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1650 error = -ENOMEM;
1651 goto fail;
1652 }
1653
1654 dd->dd_name = name;
1655 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1656
1657 /*
1658 * Need additional DMA memory because we can't use
1659 * descriptors that cross the 4K page boundary. Assume
1660 * one skipped descriptor per 4K page.
1661 */
1662 if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1663 u32 ndesc_skipped =
1664 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1665 u32 dma_len;
1666
1667 while (ndesc_skipped) {
1668 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1669 dd->dd_desc_len += dma_len;
1670
1671 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1672 };
1673 }
1674
1675 /* allocate descriptors */
1676 dd->dd_desc = pci_alloc_consistent(sc->pdev,
1677 dd->dd_desc_len,
1678 &dd->dd_desc_paddr);
1679 if (dd->dd_desc == NULL) {
1680 error = -ENOMEM;
1681 goto fail;
1682 }
1683 ds = dd->dd_desc;
Sujith04bd4632008-11-28 22:18:05 +05301684 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
1685 dd->dd_name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301686 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1687
1688 /* allocate buffers */
1689 bsize = sizeof(struct ath_buf) * nbuf;
1690 bf = kmalloc(bsize, GFP_KERNEL);
1691 if (bf == NULL) {
1692 error = -ENOMEM;
1693 goto fail2;
1694 }
1695 memset(bf, 0, bsize);
1696 dd->dd_bufptr = bf;
1697
1698 INIT_LIST_HEAD(head);
1699 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1700 bf->bf_desc = ds;
1701 bf->bf_daddr = DS2PHYS(dd, ds);
1702
1703 if (!(sc->sc_ah->ah_caps.hw_caps &
1704 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1705 /*
1706 * Skip descriptor addresses which can cause 4KB
1707 * boundary crossing (addr + length) with a 32 dword
1708 * descriptor fetch.
1709 */
1710 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1711 ASSERT((caddr_t) bf->bf_desc <
1712 ((caddr_t) dd->dd_desc +
1713 dd->dd_desc_len));
1714
1715 ds += ndesc;
1716 bf->bf_desc = ds;
1717 bf->bf_daddr = DS2PHYS(dd, ds);
1718 }
1719 }
1720 list_add_tail(&bf->list, head);
1721 }
1722 return 0;
1723fail2:
1724 pci_free_consistent(sc->pdev,
1725 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1726fail:
1727 memset(dd, 0, sizeof(*dd));
1728 return error;
1729#undef ATH_DESC_4KB_BOUND_CHECK
1730#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1731#undef DS2PHYS
1732}
1733
1734void ath_descdma_cleanup(struct ath_softc *sc,
1735 struct ath_descdma *dd,
1736 struct list_head *head)
1737{
1738 pci_free_consistent(sc->pdev,
1739 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1740
1741 INIT_LIST_HEAD(head);
1742 kfree(dd->dd_bufptr);
1743 memset(dd, 0, sizeof(*dd));
1744}
1745
1746int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1747{
1748 int qnum;
1749
1750 switch (queue) {
1751 case 0:
Sujithb77f4832008-12-07 21:44:03 +05301752 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO];
Sujithff37e332008-11-24 12:07:55 +05301753 break;
1754 case 1:
Sujithb77f4832008-12-07 21:44:03 +05301755 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI];
Sujithff37e332008-11-24 12:07:55 +05301756 break;
1757 case 2:
Sujithb77f4832008-12-07 21:44:03 +05301758 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301759 break;
1760 case 3:
Sujithb77f4832008-12-07 21:44:03 +05301761 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK];
Sujithff37e332008-11-24 12:07:55 +05301762 break;
1763 default:
Sujithb77f4832008-12-07 21:44:03 +05301764 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301765 break;
1766 }
1767
1768 return qnum;
1769}
1770
1771int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1772{
1773 int qnum;
1774
1775 switch (queue) {
1776 case ATH9K_WME_AC_VO:
1777 qnum = 0;
1778 break;
1779 case ATH9K_WME_AC_VI:
1780 qnum = 1;
1781 break;
1782 case ATH9K_WME_AC_BE:
1783 qnum = 2;
1784 break;
1785 case ATH9K_WME_AC_BK:
1786 qnum = 3;
1787 break;
1788 default:
1789 qnum = -1;
1790 break;
1791 }
1792
1793 return qnum;
1794}
1795
1796/**********************/
1797/* mac80211 callbacks */
1798/**********************/
1799
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001800static int ath9k_start(struct ieee80211_hw *hw)
1801{
1802 struct ath_softc *sc = hw->priv;
1803 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05301804 struct ath9k_channel *init_channel;
1805 int error = 0, pos, status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001806
Sujith04bd4632008-11-28 22:18:05 +05301807 DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with "
1808 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001809
1810 /* setup initial channel */
1811
1812 pos = ath_get_channel(sc, curchan);
1813 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05301814 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", curchan->center_freq);
Sujith9c84b792008-10-29 10:17:13 +05301815 error = -EINVAL;
Sujithff37e332008-11-24 12:07:55 +05301816 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001817 }
1818
Sujith99405f92008-11-24 12:08:35 +05301819 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001820 sc->sc_ah->ah_channels[pos].chanmode =
1821 (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A;
Sujithff37e332008-11-24 12:07:55 +05301822 init_channel = &sc->sc_ah->ah_channels[pos];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001823
Sujithff37e332008-11-24 12:07:55 +05301824 /* Reset SERDES registers */
1825 ath9k_hw_configpcipowersave(sc->sc_ah, 0);
1826
1827 /*
1828 * The basic interface to setting the hardware in a good
1829 * state is ``reset''. On return the hardware is known to
1830 * be powered up and with interrupts disabled. This must
1831 * be followed by initialization of the appropriate bits
1832 * and then setup of the interrupt mask.
1833 */
1834 spin_lock_bh(&sc->sc_resetlock);
1835 if (!ath9k_hw_reset(sc->sc_ah, init_channel,
Sujith99405f92008-11-24 12:08:35 +05301836 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301837 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1838 sc->sc_ht_extprotspacing, false, &status)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001839 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301840 "Unable to reset hardware; hal status %u "
1841 "(freq %u flags 0x%x)\n", status,
Sujithff37e332008-11-24 12:07:55 +05301842 init_channel->channel, init_channel->channelFlags);
1843 error = -EIO;
1844 spin_unlock_bh(&sc->sc_resetlock);
1845 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001846 }
Sujithff37e332008-11-24 12:07:55 +05301847 spin_unlock_bh(&sc->sc_resetlock);
1848
1849 /*
1850 * This is needed only to setup initial state
1851 * but it's best done after a reset.
1852 */
1853 ath_update_txpow(sc);
1854
1855 /*
1856 * Setup the hardware after reset:
1857 * The receive engine is set going.
1858 * Frame transmit is handled entirely
1859 * in the frame output path; there's nothing to do
1860 * here except setup the interrupt mask.
1861 */
1862 if (ath_startrecv(sc) != 0) {
1863 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301864 "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301865 error = -EIO;
1866 goto error;
1867 }
1868
1869 /* Setup our intr mask. */
1870 sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
1871 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
1872 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
1873
1874 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
1875 sc->sc_imask |= ATH9K_INT_GTT;
1876
1877 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
1878 sc->sc_imask |= ATH9K_INT_CST;
1879
1880 /*
1881 * Enable MIB interrupts when there are hardware phy counters.
1882 * Note we only do this (at the moment) for station mode.
1883 */
1884 if (ath9k_hw_phycounters(sc->sc_ah) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001885 ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) ||
1886 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC)))
Sujithff37e332008-11-24 12:07:55 +05301887 sc->sc_imask |= ATH9K_INT_MIB;
1888 /*
1889 * Some hardware processes the TIM IE and fires an
1890 * interrupt when the TIM bit is set. For hardware
1891 * that does, if not overridden by configuration,
1892 * enable the TIM interrupt when operating as station.
1893 */
1894 if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001895 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) &&
Sujithff37e332008-11-24 12:07:55 +05301896 !sc->sc_config.swBeaconProcess)
1897 sc->sc_imask |= ATH9K_INT_TIM;
1898
1899 ath_setcurmode(sc, ath_chan2mode(init_channel));
1900
1901 sc->sc_flags &= ~SC_OP_INVALID;
1902
1903 /* Disable BMISS interrupt when we're not associated */
1904 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1905 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1906
1907 ieee80211_wake_queues(sc->hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001908
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301909#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301910 error = ath_start_rfkill_poll(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301911#endif
1912
Sujithff37e332008-11-24 12:07:55 +05301913error:
Sujith9c84b792008-10-29 10:17:13 +05301914 return error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915}
1916
1917static int ath9k_tx(struct ieee80211_hw *hw,
1918 struct sk_buff *skb)
1919{
Jouni Malinen147583c2008-08-11 14:01:50 +03001920 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Sujith528f0c62008-10-29 10:14:26 +05301921 struct ath_softc *sc = hw->priv;
1922 struct ath_tx_control txctl;
1923 int hdrlen, padsize;
1924
1925 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03001926
1927 /*
1928 * As a temporary workaround, assign seq# here; this will likely need
1929 * to be cleaned up to work better with Beacon transmission and virtual
1930 * BSSes.
1931 */
1932 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1933 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1934 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Sujithb77f4832008-12-07 21:44:03 +05301935 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +03001936 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +05301937 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +03001938 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001939
1940 /* Add the padding after the header if this is not already done */
1941 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1942 if (hdrlen & 3) {
1943 padsize = hdrlen % 4;
1944 if (skb_headroom(skb) < padsize)
1945 return -1;
1946 skb_push(skb, padsize);
1947 memmove(skb->data, skb->data + padsize, hdrlen);
1948 }
1949
Sujith528f0c62008-10-29 10:14:26 +05301950 /* Check if a tx queue is available */
1951
1952 txctl.txq = ath_test_get_txq(sc, skb);
1953 if (!txctl.txq)
1954 goto exit;
1955
Sujith04bd4632008-11-28 22:18:05 +05301956 DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001957
Sujith528f0c62008-10-29 10:14:26 +05301958 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05301959 DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05301960 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001961 }
1962
1963 return 0;
Sujith528f0c62008-10-29 10:14:26 +05301964exit:
1965 dev_kfree_skb_any(skb);
1966 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001967}
1968
1969static void ath9k_stop(struct ieee80211_hw *hw)
1970{
1971 struct ath_softc *sc = hw->priv;
Sujith9c84b792008-10-29 10:17:13 +05301972
1973 if (sc->sc_flags & SC_OP_INVALID) {
Sujith04bd4632008-11-28 22:18:05 +05301974 DPRINTF(sc, ATH_DBG_ANY, "Device not present\n");
Sujith9c84b792008-10-29 10:17:13 +05301975 return;
1976 }
1977
Sujith04bd4632008-11-28 22:18:05 +05301978 DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n");
Sujithff37e332008-11-24 12:07:55 +05301979
1980 ieee80211_stop_queues(sc->hw);
1981
1982 /* make sure h/w will not generate any interrupt
1983 * before setting the invalid flag. */
1984 ath9k_hw_set_interrupts(sc->sc_ah, 0);
1985
1986 if (!(sc->sc_flags & SC_OP_INVALID)) {
1987 ath_draintxq(sc, false);
1988 ath_stoprecv(sc);
1989 ath9k_hw_phy_disable(sc->sc_ah);
1990 } else
Sujithb77f4832008-12-07 21:44:03 +05301991 sc->rx.rxlink = NULL;
Sujithff37e332008-11-24 12:07:55 +05301992
1993#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
1994 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1995 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1996#endif
1997 /* disable HAL and put h/w to sleep */
1998 ath9k_hw_disable(sc->sc_ah);
1999 ath9k_hw_configpcipowersave(sc->sc_ah, 1);
2000
2001 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002002
Sujith04bd4632008-11-28 22:18:05 +05302003 DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002004}
2005
2006static int ath9k_add_interface(struct ieee80211_hw *hw,
2007 struct ieee80211_if_init_conf *conf)
2008{
2009 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302010 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08002011 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002012
2013 /* Support only vap for now */
2014
2015 if (sc->sc_nvaps)
2016 return -ENOBUFS;
2017
2018 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002019 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002020 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002021 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002022 case NL80211_IFTYPE_ADHOC:
Colin McCabed97809d2008-12-01 13:38:55 -08002023 ic_opmode = NL80211_IFTYPE_ADHOC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002024 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002025 case NL80211_IFTYPE_AP:
Colin McCabed97809d2008-12-01 13:38:55 -08002026 ic_opmode = NL80211_IFTYPE_AP;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002027 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002028 default:
2029 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302030 "Interface type %d not yet supported\n", conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002031 return -EOPNOTSUPP;
2032 }
2033
Sujith04bd4632008-11-28 22:18:05 +05302034 DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002035
Sujith5640b082008-10-29 10:16:06 +05302036 /* Set the VAP opmode */
2037 avp->av_opmode = ic_opmode;
2038 avp->av_bslot = -1;
2039
Colin McCabed97809d2008-12-01 13:38:55 -08002040 if (ic_opmode == NL80211_IFTYPE_AP)
Sujith5640b082008-10-29 10:16:06 +05302041 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2042
2043 sc->sc_vaps[0] = conf->vif;
2044 sc->sc_nvaps++;
2045
2046 /* Set the device opmode */
2047 sc->sc_ah->ah_opmode = ic_opmode;
2048
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002049 if (conf->type == NL80211_IFTYPE_AP) {
2050 /* TODO: is this a suitable place to start ANI for AP mode? */
2051 /* Start ANI */
2052 mod_timer(&sc->sc_ani.timer,
2053 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
2054 }
2055
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002056 return 0;
2057}
2058
2059static void ath9k_remove_interface(struct ieee80211_hw *hw,
2060 struct ieee80211_if_init_conf *conf)
2061{
2062 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302063 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002064
Sujith04bd4632008-11-28 22:18:05 +05302065 DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002066
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002067 /* Stop ANI */
2068 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002069
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002070 /* Reclaim beacon resources */
Colin McCabed97809d2008-12-01 13:38:55 -08002071 if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP ||
2072 sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) {
Sujithb77f4832008-12-07 21:44:03 +05302073 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002074 ath_beacon_return(sc, avp);
2075 }
2076
Sujith672840a2008-08-11 14:05:08 +05302077 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002078
Sujith5640b082008-10-29 10:16:06 +05302079 sc->sc_vaps[0] = NULL;
2080 sc->sc_nvaps--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002081}
2082
Johannes Berge8975582008-10-09 12:18:51 +02002083static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002084{
2085 struct ath_softc *sc = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002086 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002087
Sujith094d05d2008-12-12 11:57:43 +05302088 if (changed & (IEEE80211_CONF_CHANGE_CHANNEL |
2089 IEEE80211_CONF_CHANGE_HT)) {
Sujith99405f92008-11-24 12:08:35 +05302090 struct ieee80211_channel *curchan = hw->conf.channel;
2091 int pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002092
Sujith04bd4632008-11-28 22:18:05 +05302093 DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2094 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002095
Sujith99405f92008-11-24 12:08:35 +05302096 pos = ath_get_channel(sc, curchan);
2097 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05302098 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n",
2099 curchan->center_freq);
Sujith99405f92008-11-24 12:08:35 +05302100 return -EINVAL;
2101 }
2102
2103 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
2104 sc->sc_ah->ah_channels[pos].chanmode =
2105 (curchan->band == IEEE80211_BAND_2GHZ) ?
2106 CHANNEL_G : CHANNEL_A;
2107
Sujith094d05d2008-12-12 11:57:43 +05302108 if (conf->ht.enabled) {
2109 if (conf->ht.channel_type == NL80211_CHAN_HT40PLUS ||
2110 conf->ht.channel_type == NL80211_CHAN_HT40MINUS)
2111 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
Sujithe11602b2008-11-27 09:46:27 +05302112
2113 sc->sc_ah->ah_channels[pos].chanmode =
2114 ath_get_extchanmode(sc, curchan,
Sujith094d05d2008-12-12 11:57:43 +05302115 conf->ht.channel_type);
Sujithe11602b2008-11-27 09:46:27 +05302116 }
2117
2118 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) {
Sujith04bd4632008-11-28 22:18:05 +05302119 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithe11602b2008-11-27 09:46:27 +05302120 return -EINVAL;
2121 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002122
Sujith99405f92008-11-24 12:08:35 +05302123 ath_update_chainmask(sc, conf->ht.enabled);
Sujith094d05d2008-12-12 11:57:43 +05302124 }
Sujith86b89ee2008-08-07 10:54:57 +05302125
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002126 if (changed & IEEE80211_CONF_CHANGE_POWER)
2127 sc->sc_config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002128
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002129 return 0;
2130}
2131
2132static int ath9k_config_interface(struct ieee80211_hw *hw,
2133 struct ieee80211_vif *vif,
2134 struct ieee80211_if_conf *conf)
2135{
2136 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002137 struct ath_hal *ah = sc->sc_ah;
Sujith5640b082008-10-29 10:16:06 +05302138 struct ath_vap *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002139 u32 rfilt = 0;
2140 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002141
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002142 /* TODO: Need to decide which hw opmode to use for multi-interface
2143 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02002144 if (vif->type == NL80211_IFTYPE_AP &&
Colin McCabed97809d2008-12-01 13:38:55 -08002145 ah->ah_opmode != NL80211_IFTYPE_AP) {
2146 ah->ah_opmode = NL80211_IFTYPE_STATION;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002147 ath9k_hw_setopmode(ah);
2148 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
2149 /* Request full reset to get hw opmode changed properly */
2150 sc->sc_flags |= SC_OP_FULL_RESET;
2151 }
2152
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002153 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
2154 !is_zero_ether_addr(conf->bssid)) {
2155 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002156 case NL80211_IFTYPE_STATION:
2157 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002158 /* Set BSSID */
2159 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
2160 sc->sc_curaid = 0;
2161 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
2162 sc->sc_curaid);
2163
2164 /* Set aggregation protection mode parameters */
2165 sc->sc_config.ath_aggr_prot = 0;
2166
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002167 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302168 "RX filter 0x%x bssid %pM aid 0x%x\n",
2169 rfilt, sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002170
2171 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05302172 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002173
2174 break;
2175 default:
2176 break;
2177 }
2178 }
2179
2180 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002181 ((vif->type == NL80211_IFTYPE_ADHOC) ||
2182 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002183 /*
2184 * Allocate and setup the beacon frame.
2185 *
2186 * Stop any previous beacon DMA. This may be
2187 * necessary, for example, when an ibss merge
2188 * causes reconfiguration; we may be called
2189 * with beacon transmission active.
2190 */
Sujithb77f4832008-12-07 21:44:03 +05302191 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002192
2193 error = ath_beacon_alloc(sc, 0);
2194 if (error != 0)
2195 return error;
2196
2197 ath_beacon_sync(sc, 0);
2198 }
2199
2200 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Colin McCabed97809d2008-12-01 13:38:55 -08002201 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002202 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2203 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2204 ath9k_hw_keysetmac(sc->sc_ah,
2205 (u16)i,
2206 sc->sc_curbssid);
2207 }
2208
2209 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02002210 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002211 ath_update_chainmask(sc, 0);
2212
2213 return 0;
2214}
2215
2216#define SUPPORTED_FILTERS \
2217 (FIF_PROMISC_IN_BSS | \
2218 FIF_ALLMULTI | \
2219 FIF_CONTROL | \
2220 FIF_OTHER_BSS | \
2221 FIF_BCN_PRBRESP_PROMISC | \
2222 FIF_FCSFAIL)
2223
Sujith7dcfdcd2008-08-11 14:03:13 +05302224/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002225static void ath9k_configure_filter(struct ieee80211_hw *hw,
2226 unsigned int changed_flags,
2227 unsigned int *total_flags,
2228 int mc_count,
2229 struct dev_mc_list *mclist)
2230{
2231 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05302232 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002233
2234 changed_flags &= SUPPORTED_FILTERS;
2235 *total_flags &= SUPPORTED_FILTERS;
2236
Sujithb77f4832008-12-07 21:44:03 +05302237 sc->rx.rxfilter = *total_flags;
Sujith7dcfdcd2008-08-11 14:03:13 +05302238 rfilt = ath_calcrxfilter(sc);
2239 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2240
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002241 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2242 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05302243 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002244 }
Sujith7dcfdcd2008-08-11 14:03:13 +05302245
Sujithb77f4832008-12-07 21:44:03 +05302246 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx.rxfilter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002247}
2248
2249static void ath9k_sta_notify(struct ieee80211_hw *hw,
2250 struct ieee80211_vif *vif,
2251 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002252 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002253{
2254 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002255
2256 switch (cmd) {
2257 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302258 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002259 break;
2260 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302261 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002262 break;
2263 default:
2264 break;
2265 }
2266}
2267
2268static int ath9k_conf_tx(struct ieee80211_hw *hw,
2269 u16 queue,
2270 const struct ieee80211_tx_queue_params *params)
2271{
2272 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05302273 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002274 int ret = 0, qnum;
2275
2276 if (queue >= WME_NUM_AC)
2277 return 0;
2278
2279 qi.tqi_aifs = params->aifs;
2280 qi.tqi_cwmin = params->cw_min;
2281 qi.tqi_cwmax = params->cw_max;
2282 qi.tqi_burstTime = params->txop;
2283 qnum = ath_get_hal_qnum(queue, sc);
2284
2285 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302286 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002287 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd4632008-11-28 22:18:05 +05302288 queue, qnum, params->aifs, params->cw_min,
2289 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002290
2291 ret = ath_txq_update(sc, qnum, &qi);
2292 if (ret)
Sujith04bd4632008-11-28 22:18:05 +05302293 DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002294
2295 return ret;
2296}
2297
2298static int ath9k_set_key(struct ieee80211_hw *hw,
2299 enum set_key_cmd cmd,
2300 const u8 *local_addr,
2301 const u8 *addr,
2302 struct ieee80211_key_conf *key)
2303{
2304 struct ath_softc *sc = hw->priv;
2305 int ret = 0;
2306
Sujith04bd4632008-11-28 22:18:05 +05302307 DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002308
2309 switch (cmd) {
2310 case SET_KEY:
2311 ret = ath_key_config(sc, addr, key);
2312 if (!ret) {
2313 set_bit(key->keyidx, sc->sc_keymap);
2314 key->hw_key_idx = key->keyidx;
2315 /* push IV and Michael MIC generation to stack */
2316 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302317 if (key->alg == ALG_TKIP)
2318 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002319 }
2320 break;
2321 case DISABLE_KEY:
2322 ath_key_delete(sc, key);
2323 clear_bit(key->keyidx, sc->sc_keymap);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002324 break;
2325 default:
2326 ret = -EINVAL;
2327 }
2328
2329 return ret;
2330}
2331
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002332static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2333 struct ieee80211_vif *vif,
2334 struct ieee80211_bss_conf *bss_conf,
2335 u32 changed)
2336{
2337 struct ath_softc *sc = hw->priv;
2338
2339 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Sujith04bd4632008-11-28 22:18:05 +05302340 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002341 bss_conf->use_short_preamble);
2342 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302343 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002344 else
Sujith672840a2008-08-11 14:05:08 +05302345 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002346 }
2347
2348 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Sujith04bd4632008-11-28 22:18:05 +05302349 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002350 bss_conf->use_cts_prot);
2351 if (bss_conf->use_cts_prot &&
2352 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302353 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002354 else
Sujith672840a2008-08-11 14:05:08 +05302355 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002356 }
2357
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002358 if (changed & BSS_CHANGED_ASSOC) {
Sujith04bd4632008-11-28 22:18:05 +05302359 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002360 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302361 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002362 }
2363}
2364
2365static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2366{
2367 u64 tsf;
2368 struct ath_softc *sc = hw->priv;
2369 struct ath_hal *ah = sc->sc_ah;
2370
2371 tsf = ath9k_hw_gettsf64(ah);
2372
2373 return tsf;
2374}
2375
2376static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2377{
2378 struct ath_softc *sc = hw->priv;
2379 struct ath_hal *ah = sc->sc_ah;
2380
2381 ath9k_hw_reset_tsf(ah);
2382}
2383
2384static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2385 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002386 struct ieee80211_sta *sta,
2387 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002388{
2389 struct ath_softc *sc = hw->priv;
2390 int ret = 0;
2391
2392 switch (action) {
2393 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302394 if (!(sc->sc_flags & SC_OP_RXAGGR))
2395 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002396 break;
2397 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002398 break;
2399 case IEEE80211_AMPDU_TX_START:
Sujithb5aa9bf2008-10-29 10:13:31 +05302400 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002401 if (ret < 0)
2402 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302403 "Unable to start TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002404 else
Johannes Berg17741cd2008-09-11 00:02:02 +02002405 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002406 break;
2407 case IEEE80211_AMPDU_TX_STOP:
Sujithb5aa9bf2008-10-29 10:13:31 +05302408 ret = ath_tx_aggr_stop(sc, sta, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002409 if (ret < 0)
2410 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302411 "Unable to stop TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002412
Johannes Berg17741cd2008-09-11 00:02:02 +02002413 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002414 break;
Sujith8469cde2008-10-29 10:19:28 +05302415 case IEEE80211_AMPDU_TX_RESUME:
2416 ath_tx_aggr_resume(sc, sta, tid);
2417 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002418 default:
Sujith04bd4632008-11-28 22:18:05 +05302419 DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002420 }
2421
2422 return ret;
2423}
2424
2425static struct ieee80211_ops ath9k_ops = {
2426 .tx = ath9k_tx,
2427 .start = ath9k_start,
2428 .stop = ath9k_stop,
2429 .add_interface = ath9k_add_interface,
2430 .remove_interface = ath9k_remove_interface,
2431 .config = ath9k_config,
2432 .config_interface = ath9k_config_interface,
2433 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002434 .sta_notify = ath9k_sta_notify,
2435 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002436 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002437 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002438 .get_tsf = ath9k_get_tsf,
2439 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002440 .ampdu_action = ath9k_ampdu_action,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002441};
2442
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002443static struct {
2444 u32 version;
2445 const char * name;
2446} ath_mac_bb_names[] = {
2447 { AR_SREV_VERSION_5416_PCI, "5416" },
2448 { AR_SREV_VERSION_5416_PCIE, "5418" },
2449 { AR_SREV_VERSION_9100, "9100" },
2450 { AR_SREV_VERSION_9160, "9160" },
2451 { AR_SREV_VERSION_9280, "9280" },
2452 { AR_SREV_VERSION_9285, "9285" }
2453};
2454
2455static struct {
2456 u16 version;
2457 const char * name;
2458} ath_rf_names[] = {
2459 { 0, "5133" },
2460 { AR_RAD5133_SREV_MAJOR, "5133" },
2461 { AR_RAD5122_SREV_MAJOR, "5122" },
2462 { AR_RAD2133_SREV_MAJOR, "2133" },
2463 { AR_RAD2122_SREV_MAJOR, "2122" }
2464};
2465
2466/*
2467 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2468 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002469static const char *
2470ath_mac_bb_name(u32 mac_bb_version)
2471{
2472 int i;
2473
2474 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2475 if (ath_mac_bb_names[i].version == mac_bb_version) {
2476 return ath_mac_bb_names[i].name;
2477 }
2478 }
2479
2480 return "????";
2481}
2482
2483/*
2484 * Return the RF name. "????" is returned if the RF is unknown.
2485 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002486static const char *
2487ath_rf_name(u16 rf_version)
2488{
2489 int i;
2490
2491 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2492 if (ath_rf_names[i].version == rf_version) {
2493 return ath_rf_names[i].name;
2494 }
2495 }
2496
2497 return "????";
2498}
2499
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002500static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2501{
2502 void __iomem *mem;
2503 struct ath_softc *sc;
2504 struct ieee80211_hw *hw;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002505 u8 csz;
2506 u32 val;
2507 int ret = 0;
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002508 struct ath_hal *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002509
2510 if (pci_enable_device(pdev))
2511 return -EIO;
2512
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002513 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2514
2515 if (ret) {
Luis R. Rodriguez1d450cf2008-11-13 19:11:56 -08002516 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002517 goto bad;
2518 }
2519
2520 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2521
2522 if (ret) {
2523 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
Sujith04bd4632008-11-28 22:18:05 +05302524 "DMA enable failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002525 goto bad;
2526 }
2527
2528 /*
2529 * Cache line size is used to size and align various
2530 * structures used to communicate with the hardware.
2531 */
2532 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
2533 if (csz == 0) {
2534 /*
2535 * Linux 2.4.18 (at least) writes the cache line size
2536 * register as a 16-bit wide register which is wrong.
2537 * We must have this setup properly for rx buffer
2538 * DMA to work so force a reasonable value here if it
2539 * comes up zero.
2540 */
2541 csz = L1_CACHE_BYTES / sizeof(u32);
2542 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
2543 }
2544 /*
2545 * The default setting of latency timer yields poor results,
2546 * set it to the value used by other systems. It may be worth
2547 * tweaking this setting more.
2548 */
2549 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
2550
2551 pci_set_master(pdev);
2552
2553 /*
2554 * Disable the RETRY_TIMEOUT register (0x41) to keep
2555 * PCI Tx retries from interfering with C3 CPU state.
2556 */
2557 pci_read_config_dword(pdev, 0x40, &val);
2558 if ((val & 0x0000ff00) != 0)
2559 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2560
2561 ret = pci_request_region(pdev, 0, "ath9k");
2562 if (ret) {
2563 dev_err(&pdev->dev, "PCI memory region reserve error\n");
2564 ret = -ENODEV;
2565 goto bad;
2566 }
2567
2568 mem = pci_iomap(pdev, 0, 0);
2569 if (!mem) {
2570 printk(KERN_ERR "PCI memory map error\n") ;
2571 ret = -EIO;
2572 goto bad1;
2573 }
2574
2575 hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops);
2576 if (hw == NULL) {
2577 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n");
2578 goto bad2;
2579 }
2580
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002581 SET_IEEE80211_DEV(hw, &pdev->dev);
2582 pci_set_drvdata(pdev, hw);
2583
2584 sc = hw->priv;
2585 sc->hw = hw;
2586 sc->pdev = pdev;
2587 sc->mem = mem;
2588
2589 if (ath_attach(id->device, sc) != 0) {
2590 ret = -ENODEV;
2591 goto bad3;
2592 }
2593
2594 /* setup interrupt service routine */
2595
2596 if (request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc)) {
2597 printk(KERN_ERR "%s: request_irq failed\n",
2598 wiphy_name(hw->wiphy));
2599 ret = -EIO;
2600 goto bad4;
2601 }
2602
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002603 ah = sc->sc_ah;
2604 printk(KERN_INFO
2605 "%s: Atheros AR%s MAC/BB Rev:%x "
2606 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002607 wiphy_name(hw->wiphy),
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002608 ath_mac_bb_name(ah->ah_macVersion),
2609 ah->ah_macRev,
2610 ath_rf_name((ah->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR)),
2611 ah->ah_phyRev,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002612 (unsigned long)mem, pdev->irq);
2613
2614 return 0;
2615bad4:
2616 ath_detach(sc);
2617bad3:
2618 ieee80211_free_hw(hw);
2619bad2:
2620 pci_iounmap(pdev, mem);
2621bad1:
2622 pci_release_region(pdev, 0);
2623bad:
2624 pci_disable_device(pdev);
2625 return ret;
2626}
2627
2628static void ath_pci_remove(struct pci_dev *pdev)
2629{
2630 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2631 struct ath_softc *sc = hw->priv;
2632
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002633 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05302634 if (pdev->irq)
2635 free_irq(pdev->irq, sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002636 pci_iounmap(pdev, sc->mem);
2637 pci_release_region(pdev, 0);
2638 pci_disable_device(pdev);
2639 ieee80211_free_hw(hw);
2640}
2641
2642#ifdef CONFIG_PM
2643
2644static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2645{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302646 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2647 struct ath_softc *sc = hw->priv;
2648
2649 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302650
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302651#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302652 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2653 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2654#endif
2655
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002656 pci_save_state(pdev);
2657 pci_disable_device(pdev);
2658 pci_set_power_state(pdev, 3);
2659
2660 return 0;
2661}
2662
2663static int ath_pci_resume(struct pci_dev *pdev)
2664{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302665 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2666 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002667 u32 val;
2668 int err;
2669
2670 err = pci_enable_device(pdev);
2671 if (err)
2672 return err;
2673 pci_restore_state(pdev);
2674 /*
2675 * Suspend/Resume resets the PCI configuration space, so we have to
2676 * re-disable the RETRY_TIMEOUT register (0x41) to keep
2677 * PCI Tx retries from interfering with C3 CPU state
2678 */
2679 pci_read_config_dword(pdev, 0x40, &val);
2680 if ((val & 0x0000ff00) != 0)
2681 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2682
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302683 /* Enable LED */
2684 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
2685 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
2686 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
2687
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302688#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302689 /*
2690 * check the h/w rfkill state on resume
2691 * and start the rfkill poll timer
2692 */
2693 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2694 queue_delayed_work(sc->hw->workqueue,
2695 &sc->rf_kill.rfkill_poll, 0);
2696#endif
2697
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002698 return 0;
2699}
2700
2701#endif /* CONFIG_PM */
2702
2703MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
2704
2705static struct pci_driver ath_pci_driver = {
2706 .name = "ath9k",
2707 .id_table = ath_pci_id_table,
2708 .probe = ath_pci_probe,
2709 .remove = ath_pci_remove,
2710#ifdef CONFIG_PM
2711 .suspend = ath_pci_suspend,
2712 .resume = ath_pci_resume,
2713#endif /* CONFIG_PM */
2714};
2715
2716static int __init init_ath_pci(void)
2717{
2718 printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
2719
2720 if (pci_register_driver(&ath_pci_driver) < 0) {
2721 printk(KERN_ERR
2722 "ath_pci: No devices found, driver not installed.\n");
2723 pci_unregister_driver(&ath_pci_driver);
2724 return -ENODEV;
2725 }
2726
2727 return 0;
2728}
2729module_init(init_ath_pci);
2730
2731static void __exit exit_ath_pci(void)
2732{
2733 pci_unregister_driver(&ath_pci_driver);
Sujith04bd4632008-11-28 22:18:05 +05302734 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002735}
2736module_exit(exit_ath_pci);