blob: 272f806f70cbd1c3053f9d648398c2ed705e4983 [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 */
37 { 0 }
38};
39
Sujith9757d552008-11-04 18:25:27 +053040static void ath_detach(struct ath_softc *sc);
41
Sujithff37e332008-11-24 12:07:55 +053042/* return bus cachesize in 4B word units */
43
44static void bus_read_cachesize(struct ath_softc *sc, int *csz)
45{
46 u8 u8tmp;
47
48 pci_read_config_byte(sc->pdev, PCI_CACHE_LINE_SIZE, (u8 *)&u8tmp);
49 *csz = (int)u8tmp;
50
51 /*
52 * This check was put in to avoid "unplesant" consequences if
53 * the bootrom has not fully initialized all PCI devices.
54 * Sometimes the cache line size register is not set
55 */
56
57 if (*csz == 0)
58 *csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
59}
60
61static void ath_setcurmode(struct ath_softc *sc, enum wireless_mode mode)
62{
Sujith3706de62008-12-07 21:42:10 +053063 if (!sc->sc_curaid)
64 sc->cur_rate_table = sc->hw_rate_table[mode];
Sujithff37e332008-11-24 12:07:55 +053065 /*
66 * All protection frames are transmited at 2Mb/s for
67 * 11g, otherwise at 1Mb/s.
68 * XXX select protection rate index from rate table.
69 */
70 sc->sc_protrix = (mode == ATH9K_MODE_11G ? 1 : 0);
71}
72
73static enum wireless_mode ath_chan2mode(struct ath9k_channel *chan)
74{
75 if (chan->chanmode == CHANNEL_A)
76 return ATH9K_MODE_11A;
77 else if (chan->chanmode == CHANNEL_G)
78 return ATH9K_MODE_11G;
79 else if (chan->chanmode == CHANNEL_B)
80 return ATH9K_MODE_11B;
81 else if (chan->chanmode == CHANNEL_A_HT20)
82 return ATH9K_MODE_11NA_HT20;
83 else if (chan->chanmode == CHANNEL_G_HT20)
84 return ATH9K_MODE_11NG_HT20;
85 else if (chan->chanmode == CHANNEL_A_HT40PLUS)
86 return ATH9K_MODE_11NA_HT40PLUS;
87 else if (chan->chanmode == CHANNEL_A_HT40MINUS)
88 return ATH9K_MODE_11NA_HT40MINUS;
89 else if (chan->chanmode == CHANNEL_G_HT40PLUS)
90 return ATH9K_MODE_11NG_HT40PLUS;
91 else if (chan->chanmode == CHANNEL_G_HT40MINUS)
92 return ATH9K_MODE_11NG_HT40MINUS;
93
94 WARN_ON(1); /* should not get here */
95
96 return ATH9K_MODE_11B;
97}
98
99static void ath_update_txpow(struct ath_softc *sc)
100{
101 struct ath_hal *ah = sc->sc_ah;
102 u32 txpow;
103
104 if (sc->sc_curtxpow != sc->sc_config.txpowlimit) {
105 ath9k_hw_set_txpowerlimit(ah, sc->sc_config.txpowlimit);
106 /* read back in case value is clamped */
107 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
108 sc->sc_curtxpow = txpow;
109 }
110}
111
112static u8 parse_mpdudensity(u8 mpdudensity)
113{
114 /*
115 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
116 * 0 for no restriction
117 * 1 for 1/4 us
118 * 2 for 1/2 us
119 * 3 for 1 us
120 * 4 for 2 us
121 * 5 for 4 us
122 * 6 for 8 us
123 * 7 for 16 us
124 */
125 switch (mpdudensity) {
126 case 0:
127 return 0;
128 case 1:
129 case 2:
130 case 3:
131 /* Our lower layer calculations limit our precision to
132 1 microsecond */
133 return 1;
134 case 4:
135 return 2;
136 case 5:
137 return 4;
138 case 6:
139 return 8;
140 case 7:
141 return 16;
142 default:
143 return 0;
144 }
145}
146
147static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band)
148{
149 struct ath_rate_table *rate_table = NULL;
150 struct ieee80211_supported_band *sband;
151 struct ieee80211_rate *rate;
152 int i, maxrates;
153
154 switch (band) {
155 case IEEE80211_BAND_2GHZ:
156 rate_table = sc->hw_rate_table[ATH9K_MODE_11G];
157 break;
158 case IEEE80211_BAND_5GHZ:
159 rate_table = sc->hw_rate_table[ATH9K_MODE_11A];
160 break;
161 default:
162 break;
163 }
164
165 if (rate_table == NULL)
166 return;
167
168 sband = &sc->sbands[band];
169 rate = sc->rates[band];
170
171 if (rate_table->rate_cnt > ATH_RATE_MAX)
172 maxrates = ATH_RATE_MAX;
173 else
174 maxrates = rate_table->rate_cnt;
175
176 for (i = 0; i < maxrates; i++) {
177 rate[i].bitrate = rate_table->info[i].ratekbps / 100;
178 rate[i].hw_value = rate_table->info[i].ratecode;
179 sband->n_bitrates++;
Sujith04bd46382008-11-28 22:18:05 +0530180 DPRINTF(sc, ATH_DBG_CONFIG, "Rate: %2dMbps, ratecode: %2d\n",
181 rate[i].bitrate / 10, rate[i].hw_value);
Sujithff37e332008-11-24 12:07:55 +0530182 }
183}
184
185static int ath_setup_channels(struct ath_softc *sc)
186{
187 struct ath_hal *ah = sc->sc_ah;
188 int nchan, i, a = 0, b = 0;
189 u8 regclassids[ATH_REGCLASSIDS_MAX];
190 u32 nregclass = 0;
191 struct ieee80211_supported_band *band_2ghz;
192 struct ieee80211_supported_band *band_5ghz;
193 struct ieee80211_channel *chan_2ghz;
194 struct ieee80211_channel *chan_5ghz;
195 struct ath9k_channel *c;
196
197 /* Fill in ah->ah_channels */
198 if (!ath9k_regd_init_channels(ah, ATH_CHAN_MAX, (u32 *)&nchan,
199 regclassids, ATH_REGCLASSIDS_MAX,
200 &nregclass, CTRY_DEFAULT, false, 1)) {
201 u32 rd = ah->ah_currentRD;
202 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530203 "Unable to collect channel list; "
Sujithff37e332008-11-24 12:07:55 +0530204 "regdomain likely %u country code %u\n",
Sujith04bd46382008-11-28 22:18:05 +0530205 rd, CTRY_DEFAULT);
Sujithff37e332008-11-24 12:07:55 +0530206 return -EINVAL;
207 }
208
209 band_2ghz = &sc->sbands[IEEE80211_BAND_2GHZ];
210 band_5ghz = &sc->sbands[IEEE80211_BAND_5GHZ];
211 chan_2ghz = sc->channels[IEEE80211_BAND_2GHZ];
212 chan_5ghz = sc->channels[IEEE80211_BAND_5GHZ];
213
214 for (i = 0; i < nchan; i++) {
215 c = &ah->ah_channels[i];
216 if (IS_CHAN_2GHZ(c)) {
217 chan_2ghz[a].band = IEEE80211_BAND_2GHZ;
218 chan_2ghz[a].center_freq = c->channel;
219 chan_2ghz[a].max_power = c->maxTxPower;
220
221 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
222 chan_2ghz[a].flags |= IEEE80211_CHAN_NO_IBSS;
223 if (c->channelFlags & CHANNEL_PASSIVE)
224 chan_2ghz[a].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
225
226 band_2ghz->n_channels = ++a;
227
Sujith04bd46382008-11-28 22:18:05 +0530228 DPRINTF(sc, ATH_DBG_CONFIG, "2MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530229 "channelFlags: 0x%x\n",
Sujith04bd46382008-11-28 22:18:05 +0530230 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530231 } else if (IS_CHAN_5GHZ(c)) {
232 chan_5ghz[b].band = IEEE80211_BAND_5GHZ;
233 chan_5ghz[b].center_freq = c->channel;
234 chan_5ghz[b].max_power = c->maxTxPower;
235
236 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
237 chan_5ghz[b].flags |= IEEE80211_CHAN_NO_IBSS;
238 if (c->channelFlags & CHANNEL_PASSIVE)
239 chan_5ghz[b].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
240
241 band_5ghz->n_channels = ++b;
242
Sujith04bd46382008-11-28 22:18:05 +0530243 DPRINTF(sc, ATH_DBG_CONFIG, "5MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530244 "channelFlags: 0x%x\n",
Sujith04bd46382008-11-28 22:18:05 +0530245 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530246 }
247 }
248
249 return 0;
250}
251
252/*
253 * Set/change channels. If the channel is really being changed, it's done
254 * by reseting the chip. To accomplish this we must first cleanup any pending
255 * DMA, then restart stuff.
256*/
257static int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan)
258{
259 struct ath_hal *ah = sc->sc_ah;
260 bool fastcc = true, stopped;
261
262 if (sc->sc_flags & SC_OP_INVALID)
263 return -EIO;
264
Sujithff37e332008-11-24 12:07:55 +0530265 if (hchan->channel != sc->sc_ah->ah_curchan->channel ||
266 hchan->channelFlags != sc->sc_ah->ah_curchan->channelFlags ||
267 (sc->sc_flags & SC_OP_CHAINMASK_UPDATE) ||
268 (sc->sc_flags & SC_OP_FULL_RESET)) {
269 int status;
270 /*
271 * This is only performed if the channel settings have
272 * actually changed.
273 *
274 * To switch channels clear any pending DMA operations;
275 * wait long enough for the RX fifo to drain, reset the
276 * hardware at the new frequency, and then re-enable
277 * the relevant bits of the h/w.
278 */
Sujith04bd46382008-11-28 22:18:05 +0530279 ath9k_hw_set_interrupts(ah, 0);
280 ath_draintxq(sc, false);
281 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530282
283 /* XXX: do not flush receive queue here. We don't want
284 * to flush data frames already in queue because of
285 * changing channel. */
286
287 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
288 fastcc = false;
289
Sujith99405f92008-11-24 12:08:35 +0530290 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +0530291 "(%u MHz) -> (%u MHz), cflags:%x, chanwidth: %d\n",
Sujith99405f92008-11-24 12:08:35 +0530292 sc->sc_ah->ah_curchan->channel,
293 hchan->channel, hchan->channelFlags, sc->tx_chan_width);
294
Sujithff37e332008-11-24 12:07:55 +0530295 spin_lock_bh(&sc->sc_resetlock);
Sujith99405f92008-11-24 12:08:35 +0530296 if (!ath9k_hw_reset(ah, hchan, sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +0530297 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
298 sc->sc_ht_extprotspacing, fastcc, &status)) {
299 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530300 "Unable to reset channel %u (%uMhz) "
301 "flags 0x%x hal status %u\n",
Sujithff37e332008-11-24 12:07:55 +0530302 ath9k_hw_mhz2ieee(ah, hchan->channel,
303 hchan->channelFlags),
304 hchan->channel, hchan->channelFlags, status);
305 spin_unlock_bh(&sc->sc_resetlock);
306 return -EIO;
307 }
308 spin_unlock_bh(&sc->sc_resetlock);
309
310 sc->sc_flags &= ~SC_OP_CHAINMASK_UPDATE;
311 sc->sc_flags &= ~SC_OP_FULL_RESET;
312
313 if (ath_startrecv(sc) != 0) {
314 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530315 "Unable to restart recv logic\n");
Sujithff37e332008-11-24 12:07:55 +0530316 return -EIO;
317 }
318
319 ath_setcurmode(sc, ath_chan2mode(hchan));
320 ath_update_txpow(sc);
321 ath9k_hw_set_interrupts(ah, sc->sc_imask);
322 }
323 return 0;
324}
325
326/*
327 * This routine performs the periodic noise floor calibration function
328 * that is used to adjust and optimize the chip performance. This
329 * takes environmental changes (location, temperature) into account.
330 * When the task is complete, it reschedules itself depending on the
331 * appropriate interval that was calculated.
332 */
333static void ath_ani_calibrate(unsigned long data)
334{
335 struct ath_softc *sc;
336 struct ath_hal *ah;
337 bool longcal = false;
338 bool shortcal = false;
339 bool aniflag = false;
340 unsigned int timestamp = jiffies_to_msecs(jiffies);
341 u32 cal_interval;
342
343 sc = (struct ath_softc *)data;
344 ah = sc->sc_ah;
345
346 /*
347 * don't calibrate when we're scanning.
348 * we are most likely not on our home channel.
349 */
350 if (sc->rx_filter & FIF_BCN_PRBRESP_PROMISC)
351 return;
352
353 /* Long calibration runs independently of short calibration. */
354 if ((timestamp - sc->sc_ani.sc_longcal_timer) >= ATH_LONG_CALINTERVAL) {
355 longcal = true;
Sujith04bd46382008-11-28 22:18:05 +0530356 DPRINTF(sc, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530357 sc->sc_ani.sc_longcal_timer = timestamp;
358 }
359
360 /* Short calibration applies only while sc_caldone is false */
361 if (!sc->sc_ani.sc_caldone) {
362 if ((timestamp - sc->sc_ani.sc_shortcal_timer) >=
363 ATH_SHORT_CALINTERVAL) {
364 shortcal = true;
Sujith04bd46382008-11-28 22:18:05 +0530365 DPRINTF(sc, ATH_DBG_ANI, "shortcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530366 sc->sc_ani.sc_shortcal_timer = timestamp;
367 sc->sc_ani.sc_resetcal_timer = timestamp;
368 }
369 } else {
370 if ((timestamp - sc->sc_ani.sc_resetcal_timer) >=
371 ATH_RESTART_CALINTERVAL) {
372 ath9k_hw_reset_calvalid(ah, ah->ah_curchan,
373 &sc->sc_ani.sc_caldone);
374 if (sc->sc_ani.sc_caldone)
375 sc->sc_ani.sc_resetcal_timer = timestamp;
376 }
377 }
378
379 /* Verify whether we must check ANI */
380 if ((timestamp - sc->sc_ani.sc_checkani_timer) >=
381 ATH_ANI_POLLINTERVAL) {
382 aniflag = true;
383 sc->sc_ani.sc_checkani_timer = timestamp;
384 }
385
386 /* Skip all processing if there's nothing to do. */
387 if (longcal || shortcal || aniflag) {
388 /* Call ANI routine if necessary */
389 if (aniflag)
390 ath9k_hw_ani_monitor(ah, &sc->sc_halstats,
391 ah->ah_curchan);
392
393 /* Perform calibration if necessary */
394 if (longcal || shortcal) {
395 bool iscaldone = false;
396
397 if (ath9k_hw_calibrate(ah, ah->ah_curchan,
398 sc->sc_rx_chainmask, longcal,
399 &iscaldone)) {
400 if (longcal)
401 sc->sc_ani.sc_noise_floor =
402 ath9k_hw_getchan_noise(ah,
403 ah->ah_curchan);
404
405 DPRINTF(sc, ATH_DBG_ANI,
Sujith04bd46382008-11-28 22:18:05 +0530406 "calibrate chan %u/%x nf: %d\n",
Sujithff37e332008-11-24 12:07:55 +0530407 ah->ah_curchan->channel,
408 ah->ah_curchan->channelFlags,
409 sc->sc_ani.sc_noise_floor);
410 } else {
411 DPRINTF(sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +0530412 "calibrate chan %u/%x failed\n",
Sujithff37e332008-11-24 12:07:55 +0530413 ah->ah_curchan->channel,
414 ah->ah_curchan->channelFlags);
415 }
416 sc->sc_ani.sc_caldone = iscaldone;
417 }
418 }
419
420 /*
421 * Set timer interval based on previous results.
422 * The interval must be the shortest necessary to satisfy ANI,
423 * short calibration and long calibration.
424 */
Sujithaac92072008-12-02 18:37:54 +0530425 cal_interval = ATH_LONG_CALINTERVAL;
426 if (sc->sc_ah->ah_config.enable_ani)
427 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
Sujithff37e332008-11-24 12:07:55 +0530428 if (!sc->sc_ani.sc_caldone)
429 cal_interval = min(cal_interval, (u32)ATH_SHORT_CALINTERVAL);
430
431 mod_timer(&sc->sc_ani.timer, jiffies + msecs_to_jiffies(cal_interval));
432}
433
434/*
435 * Update tx/rx chainmask. For legacy association,
436 * hard code chainmask to 1x1, for 11n association, use
437 * the chainmask configuration.
438 */
439static void ath_update_chainmask(struct ath_softc *sc, int is_ht)
440{
441 sc->sc_flags |= SC_OP_CHAINMASK_UPDATE;
442 if (is_ht) {
443 sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask;
444 sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask;
445 } else {
446 sc->sc_tx_chainmask = 1;
447 sc->sc_rx_chainmask = 1;
448 }
449
Sujith04bd46382008-11-28 22:18:05 +0530450 DPRINTF(sc, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n",
451 sc->sc_tx_chainmask, sc->sc_rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530452}
453
454static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
455{
456 struct ath_node *an;
457
458 an = (struct ath_node *)sta->drv_priv;
459
460 if (sc->sc_flags & SC_OP_TXAGGR)
461 ath_tx_node_init(sc, an);
462
463 an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR +
464 sta->ht_cap.ampdu_factor);
465 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
466}
467
468static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
469{
470 struct ath_node *an = (struct ath_node *)sta->drv_priv;
471
472 if (sc->sc_flags & SC_OP_TXAGGR)
473 ath_tx_node_cleanup(sc, an);
474}
475
476static void ath9k_tasklet(unsigned long data)
477{
478 struct ath_softc *sc = (struct ath_softc *)data;
479 u32 status = sc->sc_intrstatus;
480
481 if (status & ATH9K_INT_FATAL) {
482 /* need a chip reset */
483 ath_reset(sc, false);
484 return;
485 } else {
486
487 if (status &
488 (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
489 spin_lock_bh(&sc->sc_rxflushlock);
490 ath_rx_tasklet(sc, 0);
491 spin_unlock_bh(&sc->sc_rxflushlock);
492 }
493 /* XXX: optimize this */
494 if (status & ATH9K_INT_TX)
495 ath_tx_tasklet(sc);
496 }
497
498 /* re-enable hardware interrupt */
499 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
500}
501
502static irqreturn_t ath_isr(int irq, void *dev)
503{
504 struct ath_softc *sc = dev;
505 struct ath_hal *ah = sc->sc_ah;
506 enum ath9k_int status;
507 bool sched = false;
508
509 do {
510 if (sc->sc_flags & SC_OP_INVALID) {
511 /*
512 * The hardware is not ready/present, don't
513 * touch anything. Note this can happen early
514 * on if the IRQ is shared.
515 */
516 return IRQ_NONE;
517 }
518 if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */
519 return IRQ_NONE;
520 }
521
522 /*
523 * Figure out the reason(s) for the interrupt. Note
524 * that the hal returns a pseudo-ISR that may include
525 * bits we haven't explicitly enabled so we mask the
526 * value to insure we only process bits we requested.
527 */
528 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
529
530 status &= sc->sc_imask; /* discard unasked-for bits */
531
532 /*
533 * If there are no status bits set, then this interrupt was not
534 * for me (should have been caught above).
535 */
536 if (!status)
537 return IRQ_NONE;
538
539 sc->sc_intrstatus = status;
540
541 if (status & ATH9K_INT_FATAL) {
542 /* need a chip reset */
543 sched = true;
544 } else if (status & ATH9K_INT_RXORN) {
545 /* need a chip reset */
546 sched = true;
547 } else {
548 if (status & ATH9K_INT_SWBA) {
549 /* schedule a tasklet for beacon handling */
550 tasklet_schedule(&sc->bcon_tasklet);
551 }
552 if (status & ATH9K_INT_RXEOL) {
553 /*
554 * NB: the hardware should re-read the link when
555 * RXE bit is written, but it doesn't work
556 * at least on older hardware revs.
557 */
558 sched = true;
559 }
560
561 if (status & ATH9K_INT_TXURN)
562 /* bump tx trigger level */
563 ath9k_hw_updatetxtriglevel(ah, true);
564 /* XXX: optimize this */
565 if (status & ATH9K_INT_RX)
566 sched = true;
567 if (status & ATH9K_INT_TX)
568 sched = true;
569 if (status & ATH9K_INT_BMISS)
570 sched = true;
571 /* carrier sense timeout */
572 if (status & ATH9K_INT_CST)
573 sched = true;
574 if (status & ATH9K_INT_MIB) {
575 /*
576 * Disable interrupts until we service the MIB
577 * interrupt; otherwise it will continue to
578 * fire.
579 */
580 ath9k_hw_set_interrupts(ah, 0);
581 /*
582 * Let the hal handle the event. We assume
583 * it will clear whatever condition caused
584 * the interrupt.
585 */
586 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
587 ath9k_hw_set_interrupts(ah, sc->sc_imask);
588 }
589 if (status & ATH9K_INT_TIM_TIMER) {
590 if (!(ah->ah_caps.hw_caps &
591 ATH9K_HW_CAP_AUTOSLEEP)) {
592 /* Clear RxAbort bit so that we can
593 * receive frames */
594 ath9k_hw_setrxabort(ah, 0);
595 sched = true;
596 }
597 }
598 }
599 } while (0);
600
Sujith817e11d2008-12-07 21:42:44 +0530601 ath_debug_stat_interrupt(sc, status);
602
Sujithff37e332008-11-24 12:07:55 +0530603 if (sched) {
604 /* turn off every interrupt except SWBA */
605 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
606 tasklet_schedule(&sc->intr_tq);
607 }
608
609 return IRQ_HANDLED;
610}
611
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700612static int ath_get_channel(struct ath_softc *sc,
613 struct ieee80211_channel *chan)
614{
615 int i;
616
617 for (i = 0; i < sc->sc_ah->ah_nchan; i++) {
618 if (sc->sc_ah->ah_channels[i].channel == chan->center_freq)
619 return i;
620 }
621
622 return -1;
623}
624
Sujithe11602b2008-11-27 09:46:27 +0530625/* ext_chan_offset: (-1, 0, 1) (below, none, above) */
626
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700627static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530628 struct ieee80211_channel *chan,
Sujithe11602b2008-11-27 09:46:27 +0530629 int ext_chan_offset,
630 enum ath9k_ht_macmode tx_chan_width)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700631{
632 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700633
634 switch (chan->band) {
635 case IEEE80211_BAND_2GHZ:
Sujithe11602b2008-11-27 09:46:27 +0530636 if ((ext_chan_offset == 0) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700637 (tx_chan_width == ATH9K_HT_MACMODE_20))
638 chanmode = CHANNEL_G_HT20;
Sujithe11602b2008-11-27 09:46:27 +0530639 if ((ext_chan_offset == 1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700640 (tx_chan_width == ATH9K_HT_MACMODE_2040))
641 chanmode = CHANNEL_G_HT40PLUS;
Sujithe11602b2008-11-27 09:46:27 +0530642 if ((ext_chan_offset == -1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700643 (tx_chan_width == ATH9K_HT_MACMODE_2040))
644 chanmode = CHANNEL_G_HT40MINUS;
645 break;
646 case IEEE80211_BAND_5GHZ:
Sujithe11602b2008-11-27 09:46:27 +0530647 if ((ext_chan_offset == 0) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700648 (tx_chan_width == ATH9K_HT_MACMODE_20))
649 chanmode = CHANNEL_A_HT20;
Sujithe11602b2008-11-27 09:46:27 +0530650 if ((ext_chan_offset == 1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700651 (tx_chan_width == ATH9K_HT_MACMODE_2040))
652 chanmode = CHANNEL_A_HT40PLUS;
Sujithe11602b2008-11-27 09:46:27 +0530653 if ((ext_chan_offset == -1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700654 (tx_chan_width == ATH9K_HT_MACMODE_2040))
655 chanmode = CHANNEL_A_HT40MINUS;
656 break;
657 default:
658 break;
659 }
660
661 return chanmode;
662}
663
Sujithff37e332008-11-24 12:07:55 +0530664static void ath_key_reset(struct ath_softc *sc, u16 keyix, int freeslot)
665{
666 ath9k_hw_keyreset(sc->sc_ah, keyix);
667 if (freeslot)
668 clear_bit(keyix, sc->sc_keymap);
669}
670
671static int ath_keyset(struct ath_softc *sc, u16 keyix,
672 struct ath9k_keyval *hk, const u8 mac[ETH_ALEN])
673{
674 bool status;
675
676 status = ath9k_hw_set_keycache_entry(sc->sc_ah,
677 keyix, hk, mac, false);
678
679 return status != false;
680}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700681
682static int ath_setkey_tkip(struct ath_softc *sc,
683 struct ieee80211_key_conf *key,
684 struct ath9k_keyval *hk,
685 const u8 *addr)
686{
687 u8 *key_rxmic = NULL;
688 u8 *key_txmic = NULL;
689
690 key_txmic = key->key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
691 key_rxmic = key->key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
692
693 if (addr == NULL) {
694 /* Group key installation */
695 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
696 return ath_keyset(sc, key->keyidx, hk, addr);
697 }
698 if (!sc->sc_splitmic) {
699 /*
700 * data key goes at first index,
701 * the hal handles the MIC keys at index+64.
702 */
703 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
704 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
705 return ath_keyset(sc, key->keyidx, hk, addr);
706 }
707 /*
708 * TX key goes at first index, RX key at +32.
709 * The hal handles the MIC keys at index+64.
710 */
711 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
712 if (!ath_keyset(sc, key->keyidx, hk, NULL)) {
713 /* Txmic entry failed. No need to proceed further */
714 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +0530715 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700716 return 0;
717 }
718
719 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
720 /* XXX delete tx key on failure? */
721 return ath_keyset(sc, key->keyidx+32, hk, addr);
722}
723
724static int ath_key_config(struct ath_softc *sc,
725 const u8 *addr,
726 struct ieee80211_key_conf *key)
727{
728 struct ieee80211_vif *vif;
729 struct ath9k_keyval hk;
730 const u8 *mac = NULL;
731 int ret = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200732 enum nl80211_iftype opmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700733
734 memset(&hk, 0, sizeof(hk));
735
736 switch (key->alg) {
737 case ALG_WEP:
738 hk.kv_type = ATH9K_CIPHER_WEP;
739 break;
740 case ALG_TKIP:
741 hk.kv_type = ATH9K_CIPHER_TKIP;
742 break;
743 case ALG_CCMP:
744 hk.kv_type = ATH9K_CIPHER_AES_CCM;
745 break;
746 default:
747 return -EINVAL;
748 }
749
750 hk.kv_len = key->keylen;
751 memcpy(hk.kv_val, key->key, key->keylen);
752
753 if (!sc->sc_vaps[0])
754 return -EIO;
755
Sujith5640b082008-10-29 10:16:06 +0530756 vif = sc->sc_vaps[0];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700757 opmode = vif->type;
758
759 /*
760 * Strategy:
Colin McCabed97809d2008-12-01 13:38:55 -0800761 * For STA mc tx, we will not setup a key at
762 * all since we never tx mc.
763 *
764 * For STA mc rx, we will use the keyID.
765 *
766 * For ADHOC mc tx, we will use the keyID, and no macaddr.
767 *
768 * For ADHOC mc rx, we will alloc a slot and plumb the mac of
769 * the peer node.
770 * BUT we will plumb a cleartext key so that we can do
771 * per-Sta default key table lookup in software.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700772 */
773 if (is_broadcast_ether_addr(addr)) {
774 switch (opmode) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200775 case NL80211_IFTYPE_STATION:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700776 /* default key: could be group WPA key
777 * or could be static WEP key */
778 mac = NULL;
779 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200780 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700781 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200782 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700783 break;
784 default:
785 ASSERT(0);
786 break;
787 }
788 } else {
789 mac = addr;
790 }
791
792 if (key->alg == ALG_TKIP)
793 ret = ath_setkey_tkip(sc, key, &hk, mac);
794 else
795 ret = ath_keyset(sc, key->keyidx, &hk, mac);
796
797 if (!ret)
798 return -EIO;
799
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700800 return 0;
801}
802
803static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
804{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700805 int freeslot;
806
Sujithff9b6622008-08-14 13:27:16 +0530807 freeslot = (key->keyidx >= 4) ? 1 : 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700808 ath_key_reset(sc, key->keyidx, freeslot);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700809}
810
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200811static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700812{
Sujith60653672008-08-14 13:28:02 +0530813#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
814#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700815
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200816 ht_info->ht_supported = true;
817 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
818 IEEE80211_HT_CAP_SM_PS |
819 IEEE80211_HT_CAP_SGI_40 |
820 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700821
Sujith60653672008-08-14 13:28:02 +0530822 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
823 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200824 /* set up supported mcs set */
825 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
826 ht_info->mcs.rx_mask[0] = 0xff;
827 ht_info->mcs.rx_mask[1] = 0xff;
828 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700829}
830
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530831static void ath9k_ht_conf(struct ath_softc *sc,
832 struct ieee80211_bss_conf *bss_conf)
833{
Johannes Bergae5eb022008-10-14 16:58:37 +0200834 if (sc->hw->conf.ht.enabled) {
Johannes Bergae5eb022008-10-14 16:58:37 +0200835 if (bss_conf->ht.width_40_ok)
Sujith99405f92008-11-24 12:08:35 +0530836 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530837 else
Sujith99405f92008-11-24 12:08:35 +0530838 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530839
Sujith99405f92008-11-24 12:08:35 +0530840 ath9k_hw_set11nmac2040(sc->sc_ah, sc->tx_chan_width);
841
842 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +0530843 "BSS Changed HT, chanwidth: %d\n", sc->tx_chan_width);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530844 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530845}
846
Sujithe11602b2008-11-27 09:46:27 +0530847static inline int ath_sec_offset(u8 ext_offset)
848{
849 if (ext_offset == IEEE80211_HT_PARAM_CHA_SEC_NONE)
850 return 0;
851 else if (ext_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
852 return 1;
853 else if (ext_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
854 return -1;
855
856 return 0;
857}
858
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530859static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530860 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530861 struct ieee80211_bss_conf *bss_conf)
862{
863 struct ieee80211_hw *hw = sc->hw;
864 struct ieee80211_channel *curchan = hw->conf.channel;
Sujith5640b082008-10-29 10:16:06 +0530865 struct ath_vap *avp = (void *)vif->drv_priv;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530866 int pos;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530867
868 if (bss_conf->assoc) {
Sujith04bd46382008-11-28 22:18:05 +0530869 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d\n", bss_conf->aid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530870
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530871 /* New association, store aid */
Colin McCabed97809d2008-12-01 13:38:55 -0800872 if (avp->av_opmode == NL80211_IFTYPE_STATION) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530873 sc->sc_curaid = bss_conf->aid;
874 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
875 sc->sc_curaid);
876 }
877
878 /* Configure the beacon */
879 ath_beacon_config(sc, 0);
880 sc->sc_flags |= SC_OP_BEACONS;
881
882 /* Reset rssi stats */
883 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
884 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
885 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
886 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
887
888 /* Update chainmask */
Johannes Bergae5eb022008-10-14 16:58:37 +0200889 ath_update_chainmask(sc, hw->conf.ht.enabled);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530890
891 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +0530892 "bssid %pM aid 0x%x\n",
Johannes Berge1749612008-10-27 15:59:26 -0700893 sc->sc_curbssid, sc->sc_curaid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530894
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530895 pos = ath_get_channel(sc, curchan);
896 if (pos == -1) {
897 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530898 "Invalid channel: %d\n", curchan->center_freq);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530899 return;
900 }
901
Sujith99405f92008-11-24 12:08:35 +0530902 if (hw->conf.ht.enabled) {
Sujithe11602b2008-11-27 09:46:27 +0530903 int offset =
904 ath_sec_offset(bss_conf->ht.secondary_channel_offset);
905 sc->tx_chan_width = (bss_conf->ht.width_40_ok) ?
906 ATH9K_HT_MACMODE_2040 : ATH9K_HT_MACMODE_20;
Sujith99405f92008-11-24 12:08:35 +0530907
Sujithe11602b2008-11-27 09:46:27 +0530908 sc->sc_ah->ah_channels[pos].chanmode =
909 ath_get_extchanmode(sc, curchan,
910 offset, sc->tx_chan_width);
Sujith99405f92008-11-24 12:08:35 +0530911 } else {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530912 sc->sc_ah->ah_channels[pos].chanmode =
913 (curchan->band == IEEE80211_BAND_2GHZ) ?
914 CHANNEL_G : CHANNEL_A;
Sujith99405f92008-11-24 12:08:35 +0530915 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530916
917 /* set h/w channel */
918 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0)
Sujith04bd46382008-11-28 22:18:05 +0530919 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel: %d\n",
920 curchan->center_freq);
921
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700922 /* Start ANI */
923 mod_timer(&sc->sc_ani.timer,
924 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
925
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530926 } else {
Sujith04bd46382008-11-28 22:18:05 +0530927 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530928 sc->sc_curaid = 0;
929 }
930}
931
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530932/********************************/
933/* LED functions */
934/********************************/
935
936static void ath_led_brightness(struct led_classdev *led_cdev,
937 enum led_brightness brightness)
938{
939 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
940 struct ath_softc *sc = led->sc;
941
942 switch (brightness) {
943 case LED_OFF:
944 if (led->led_type == ATH_LED_ASSOC ||
945 led->led_type == ATH_LED_RADIO)
946 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
947 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
948 (led->led_type == ATH_LED_RADIO) ? 1 :
949 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
950 break;
951 case LED_FULL:
952 if (led->led_type == ATH_LED_ASSOC)
953 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
954 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
955 break;
956 default:
957 break;
958 }
959}
960
961static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
962 char *trigger)
963{
964 int ret;
965
966 led->sc = sc;
967 led->led_cdev.name = led->name;
968 led->led_cdev.default_trigger = trigger;
969 led->led_cdev.brightness_set = ath_led_brightness;
970
971 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
972 if (ret)
973 DPRINTF(sc, ATH_DBG_FATAL,
974 "Failed to register led:%s", led->name);
975 else
976 led->registered = 1;
977 return ret;
978}
979
980static void ath_unregister_led(struct ath_led *led)
981{
982 if (led->registered) {
983 led_classdev_unregister(&led->led_cdev);
984 led->registered = 0;
985 }
986}
987
988static void ath_deinit_leds(struct ath_softc *sc)
989{
990 ath_unregister_led(&sc->assoc_led);
991 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
992 ath_unregister_led(&sc->tx_led);
993 ath_unregister_led(&sc->rx_led);
994 ath_unregister_led(&sc->radio_led);
995 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
996}
997
998static void ath_init_leds(struct ath_softc *sc)
999{
1000 char *trigger;
1001 int ret;
1002
1003 /* Configure gpio 1 for output */
1004 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
1005 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1006 /* LED off, active low */
1007 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1008
1009 trigger = ieee80211_get_radio_led_name(sc->hw);
1010 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
1011 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
1012 ret = ath_register_led(sc, &sc->radio_led, trigger);
1013 sc->radio_led.led_type = ATH_LED_RADIO;
1014 if (ret)
1015 goto fail;
1016
1017 trigger = ieee80211_get_assoc_led_name(sc->hw);
1018 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
1019 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
1020 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1021 sc->assoc_led.led_type = ATH_LED_ASSOC;
1022 if (ret)
1023 goto fail;
1024
1025 trigger = ieee80211_get_tx_led_name(sc->hw);
1026 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
1027 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
1028 ret = ath_register_led(sc, &sc->tx_led, trigger);
1029 sc->tx_led.led_type = ATH_LED_TX;
1030 if (ret)
1031 goto fail;
1032
1033 trigger = ieee80211_get_rx_led_name(sc->hw);
1034 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
1035 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
1036 ret = ath_register_led(sc, &sc->rx_led, trigger);
1037 sc->rx_led.led_type = ATH_LED_RX;
1038 if (ret)
1039 goto fail;
1040
1041 return;
1042
1043fail:
1044 ath_deinit_leds(sc);
1045}
1046
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301047#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301048
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301049/*******************/
1050/* Rfkill */
1051/*******************/
1052
1053static void ath_radio_enable(struct ath_softc *sc)
1054{
1055 struct ath_hal *ah = sc->sc_ah;
1056 int status;
1057
1058 spin_lock_bh(&sc->sc_resetlock);
1059 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301060 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301061 sc->sc_tx_chainmask,
1062 sc->sc_rx_chainmask,
1063 sc->sc_ht_extprotspacing,
1064 false, &status)) {
1065 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301066 "Unable to reset channel %u (%uMhz) "
1067 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301068 ath9k_hw_mhz2ieee(ah,
1069 ah->ah_curchan->channel,
1070 ah->ah_curchan->channelFlags),
1071 ah->ah_curchan->channel,
1072 ah->ah_curchan->channelFlags, status);
1073 }
1074 spin_unlock_bh(&sc->sc_resetlock);
1075
1076 ath_update_txpow(sc);
1077 if (ath_startrecv(sc) != 0) {
1078 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301079 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301080 return;
1081 }
1082
1083 if (sc->sc_flags & SC_OP_BEACONS)
1084 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1085
1086 /* Re-Enable interrupts */
1087 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1088
1089 /* Enable LED */
1090 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
1091 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1092 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
1093
1094 ieee80211_wake_queues(sc->hw);
1095}
1096
1097static void ath_radio_disable(struct ath_softc *sc)
1098{
1099 struct ath_hal *ah = sc->sc_ah;
1100 int status;
1101
1102
1103 ieee80211_stop_queues(sc->hw);
1104
1105 /* Disable LED */
1106 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
1107 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
1108
1109 /* Disable interrupts */
1110 ath9k_hw_set_interrupts(ah, 0);
1111
1112 ath_draintxq(sc, false); /* clear pending tx frames */
1113 ath_stoprecv(sc); /* turn off frame recv */
1114 ath_flushrecv(sc); /* flush recv queue */
1115
1116 spin_lock_bh(&sc->sc_resetlock);
1117 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301118 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301119 sc->sc_tx_chainmask,
1120 sc->sc_rx_chainmask,
1121 sc->sc_ht_extprotspacing,
1122 false, &status)) {
1123 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301124 "Unable to reset channel %u (%uMhz) "
1125 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301126 ath9k_hw_mhz2ieee(ah,
1127 ah->ah_curchan->channel,
1128 ah->ah_curchan->channelFlags),
1129 ah->ah_curchan->channel,
1130 ah->ah_curchan->channelFlags, status);
1131 }
1132 spin_unlock_bh(&sc->sc_resetlock);
1133
1134 ath9k_hw_phy_disable(ah);
1135 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1136}
1137
1138static bool ath_is_rfkill_set(struct ath_softc *sc)
1139{
1140 struct ath_hal *ah = sc->sc_ah;
1141
1142 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
1143 ah->ah_rfkill_polarity;
1144}
1145
1146/* h/w rfkill poll function */
1147static void ath_rfkill_poll(struct work_struct *work)
1148{
1149 struct ath_softc *sc = container_of(work, struct ath_softc,
1150 rf_kill.rfkill_poll.work);
1151 bool radio_on;
1152
1153 if (sc->sc_flags & SC_OP_INVALID)
1154 return;
1155
1156 radio_on = !ath_is_rfkill_set(sc);
1157
1158 /*
1159 * enable/disable radio only when there is a
1160 * state change in RF switch
1161 */
1162 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
1163 enum rfkill_state state;
1164
1165 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
1166 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
1167 : RFKILL_STATE_HARD_BLOCKED;
1168 } else if (radio_on) {
1169 ath_radio_enable(sc);
1170 state = RFKILL_STATE_UNBLOCKED;
1171 } else {
1172 ath_radio_disable(sc);
1173 state = RFKILL_STATE_HARD_BLOCKED;
1174 }
1175
1176 if (state == RFKILL_STATE_HARD_BLOCKED)
1177 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
1178 else
1179 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
1180
1181 rfkill_force_state(sc->rf_kill.rfkill, state);
1182 }
1183
1184 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
1185 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
1186}
1187
1188/* s/w rfkill handler */
1189static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
1190{
1191 struct ath_softc *sc = data;
1192
1193 switch (state) {
1194 case RFKILL_STATE_SOFT_BLOCKED:
1195 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
1196 SC_OP_RFKILL_SW_BLOCKED)))
1197 ath_radio_disable(sc);
1198 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
1199 return 0;
1200 case RFKILL_STATE_UNBLOCKED:
1201 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
1202 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
1203 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
1204 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
Sujith04bd46382008-11-28 22:18:05 +05301205 "radio as it is disabled by h/w\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301206 return -EPERM;
1207 }
1208 ath_radio_enable(sc);
1209 }
1210 return 0;
1211 default:
1212 return -EINVAL;
1213 }
1214}
1215
1216/* Init s/w rfkill */
1217static int ath_init_sw_rfkill(struct ath_softc *sc)
1218{
1219 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
1220 RFKILL_TYPE_WLAN);
1221 if (!sc->rf_kill.rfkill) {
1222 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
1223 return -ENOMEM;
1224 }
1225
1226 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
1227 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
1228 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
1229 sc->rf_kill.rfkill->data = sc;
1230 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
1231 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
1232 sc->rf_kill.rfkill->user_claim_unsupported = 1;
1233
1234 return 0;
1235}
1236
1237/* Deinitialize rfkill */
1238static void ath_deinit_rfkill(struct ath_softc *sc)
1239{
1240 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1241 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1242
1243 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
1244 rfkill_unregister(sc->rf_kill.rfkill);
1245 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
1246 sc->rf_kill.rfkill = NULL;
1247 }
1248}
Sujith9c84b792008-10-29 10:17:13 +05301249
1250static int ath_start_rfkill_poll(struct ath_softc *sc)
1251{
1252 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1253 queue_delayed_work(sc->hw->workqueue,
1254 &sc->rf_kill.rfkill_poll, 0);
1255
1256 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1257 if (rfkill_register(sc->rf_kill.rfkill)) {
1258 DPRINTF(sc, ATH_DBG_FATAL,
1259 "Unable to register rfkill\n");
1260 rfkill_free(sc->rf_kill.rfkill);
1261
1262 /* Deinitialize the device */
Senthil Balasubramanian306efdd2008-11-13 18:00:37 +05301263 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05301264 if (sc->pdev->irq)
1265 free_irq(sc->pdev->irq, sc);
Sujith9c84b792008-10-29 10:17:13 +05301266 pci_iounmap(sc->pdev, sc->mem);
1267 pci_release_region(sc->pdev, 0);
1268 pci_disable_device(sc->pdev);
Sujith9757d552008-11-04 18:25:27 +05301269 ieee80211_free_hw(sc->hw);
Sujith9c84b792008-10-29 10:17:13 +05301270 return -EIO;
1271 } else {
1272 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1273 }
1274 }
1275
1276 return 0;
1277}
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301278#endif /* CONFIG_RFKILL */
1279
Sujith9c84b792008-10-29 10:17:13 +05301280static void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301281{
1282 struct ieee80211_hw *hw = sc->hw;
Sujith9c84b792008-10-29 10:17:13 +05301283 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301284
Sujith04bd46382008-11-28 22:18:05 +05301285 DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301286
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301287#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301288 ath_deinit_rfkill(sc);
1289#endif
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301290 ath_deinit_leds(sc);
1291
1292 ieee80211_unregister_hw(hw);
1293
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301294 ath_rate_control_unregister();
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301295
1296 ath_rx_cleanup(sc);
1297 ath_tx_cleanup(sc);
1298
Sujith9c84b792008-10-29 10:17:13 +05301299 tasklet_kill(&sc->intr_tq);
1300 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301301
Sujith9c84b792008-10-29 10:17:13 +05301302 if (!(sc->sc_flags & SC_OP_INVALID))
1303 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301304
Sujith9c84b792008-10-29 10:17:13 +05301305 /* cleanup tx queues */
1306 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1307 if (ATH_TXQ_SETUP(sc, i))
1308 ath_tx_cleanupq(sc, &sc->sc_txq[i]);
1309
1310 ath9k_hw_detach(sc->sc_ah);
Sujith826d2682008-11-28 22:20:23 +05301311 ath9k_exit_debug(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301312}
1313
Sujithff37e332008-11-24 12:07:55 +05301314static int ath_init(u16 devid, struct ath_softc *sc)
1315{
1316 struct ath_hal *ah = NULL;
1317 int status;
1318 int error = 0, i;
1319 int csz = 0;
1320
1321 /* XXX: hardware will not be ready until ath_open() being called */
1322 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301323
Sujith826d2682008-11-28 22:20:23 +05301324 if (ath9k_init_debug(sc) < 0)
1325 printk(KERN_ERR "Unable to create debugfs files\n");
Sujithff37e332008-11-24 12:07:55 +05301326
1327 spin_lock_init(&sc->sc_resetlock);
1328 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1329 tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1330 (unsigned long)sc);
1331
1332 /*
1333 * Cache line size is used to size and align various
1334 * structures used to communicate with the hardware.
1335 */
1336 bus_read_cachesize(sc, &csz);
1337 /* XXX assert csz is non-zero */
1338 sc->sc_cachelsz = csz << 2; /* convert to bytes */
1339
1340 ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1341 if (ah == NULL) {
1342 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301343 "Unable to attach hardware; HAL status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301344 error = -ENXIO;
1345 goto bad;
1346 }
1347 sc->sc_ah = ah;
1348
1349 /* Get the hardware key cache size. */
1350 sc->sc_keymax = ah->ah_caps.keycache_size;
1351 if (sc->sc_keymax > ATH_KEYMAX) {
1352 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05301353 "Warning, using only %u entries in %u key cache\n",
1354 ATH_KEYMAX, sc->sc_keymax);
Sujithff37e332008-11-24 12:07:55 +05301355 sc->sc_keymax = ATH_KEYMAX;
1356 }
1357
1358 /*
1359 * Reset the key cache since some parts do not
1360 * reset the contents on initial power up.
1361 */
1362 for (i = 0; i < sc->sc_keymax; i++)
1363 ath9k_hw_keyreset(ah, (u16) i);
1364 /*
1365 * Mark key cache slots associated with global keys
1366 * as in use. If we knew TKIP was not to be used we
1367 * could leave the +32, +64, and +32+64 slots free.
1368 * XXX only for splitmic.
1369 */
1370 for (i = 0; i < IEEE80211_WEP_NKID; i++) {
1371 set_bit(i, sc->sc_keymap);
1372 set_bit(i + 32, sc->sc_keymap);
1373 set_bit(i + 64, sc->sc_keymap);
1374 set_bit(i + 32 + 64, sc->sc_keymap);
1375 }
1376
1377 /* Collect the channel list using the default country code */
1378
1379 error = ath_setup_channels(sc);
1380 if (error)
1381 goto bad;
1382
1383 /* default to MONITOR mode */
Colin McCabed97809d2008-12-01 13:38:55 -08001384 sc->sc_ah->ah_opmode = NL80211_IFTYPE_MONITOR;
1385
Sujithff37e332008-11-24 12:07:55 +05301386
1387 /* Setup rate tables */
1388
1389 ath_rate_attach(sc);
1390 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1391 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1392
1393 /*
1394 * Allocate hardware transmit queues: one queue for
1395 * beacon frames and one data queue for each QoS
1396 * priority. Note that the hal handles reseting
1397 * these queues at the needed time.
1398 */
1399 sc->sc_bhalq = ath_beaconq_setup(ah);
1400 if (sc->sc_bhalq == -1) {
1401 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301402 "Unable to setup a beacon xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301403 error = -EIO;
1404 goto bad2;
1405 }
1406 sc->sc_cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1407 if (sc->sc_cabq == NULL) {
1408 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301409 "Unable to setup CAB xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301410 error = -EIO;
1411 goto bad2;
1412 }
1413
1414 sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1415 ath_cabq_update(sc);
1416
1417 for (i = 0; i < ARRAY_SIZE(sc->sc_haltype2q); i++)
1418 sc->sc_haltype2q[i] = -1;
1419
1420 /* Setup data queues */
1421 /* NB: ensure BK queue is the lowest priority h/w queue */
1422 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1423 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301424 "Unable to setup xmit queue for BK traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301425 error = -EIO;
1426 goto bad2;
1427 }
1428
1429 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1430 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301431 "Unable to setup xmit queue for BE traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301432 error = -EIO;
1433 goto bad2;
1434 }
1435 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1436 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301437 "Unable to setup xmit queue for VI traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301438 error = -EIO;
1439 goto bad2;
1440 }
1441 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1442 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301443 "Unable to setup xmit queue for VO traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301444 error = -EIO;
1445 goto bad2;
1446 }
1447
1448 /* Initializes the noise floor to a reasonable default value.
1449 * Later on this will be updated during ANI processing. */
1450
1451 sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1452 setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc);
1453
1454 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1455 ATH9K_CIPHER_TKIP, NULL)) {
1456 /*
1457 * Whether we should enable h/w TKIP MIC.
1458 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1459 * report WMM capable, so it's always safe to turn on
1460 * TKIP MIC in this case.
1461 */
1462 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1463 0, 1, NULL);
1464 }
1465
1466 /*
1467 * Check whether the separate key cache entries
1468 * are required to handle both tx+rx MIC keys.
1469 * With split mic keys the number of stations is limited
1470 * to 27 otherwise 59.
1471 */
1472 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1473 ATH9K_CIPHER_TKIP, NULL)
1474 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1475 ATH9K_CIPHER_MIC, NULL)
1476 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1477 0, NULL))
1478 sc->sc_splitmic = 1;
1479
1480 /* turn on mcast key search if possible */
1481 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1482 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1483 1, NULL);
1484
1485 sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1486 sc->sc_config.txpowlimit_override = 0;
1487
1488 /* 11n Capabilities */
1489 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1490 sc->sc_flags |= SC_OP_TXAGGR;
1491 sc->sc_flags |= SC_OP_RXAGGR;
1492 }
1493
1494 sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1495 sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1496
1497 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
1498 sc->sc_defant = ath9k_hw_getdefantenna(ah);
1499
1500 ath9k_hw_getmac(ah, sc->sc_myaddr);
1501 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1502 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1503 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1504 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1505 }
1506
1507 sc->sc_slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
1508
1509 /* initialize beacon slots */
1510 for (i = 0; i < ARRAY_SIZE(sc->sc_bslot); i++)
1511 sc->sc_bslot[i] = ATH_IF_ID_ANY;
1512
1513 /* save MISC configurations */
1514 sc->sc_config.swBeaconProcess = 1;
1515
1516#ifdef CONFIG_SLOW_ANT_DIV
1517 /* range is 40 - 255, we use something in the middle */
1518 ath_slow_ant_div_init(&sc->sc_antdiv, sc, 0x127);
1519#endif
1520
1521 /* setup channels and rates */
1522
1523 sc->sbands[IEEE80211_BAND_2GHZ].channels =
1524 sc->channels[IEEE80211_BAND_2GHZ];
1525 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1526 sc->rates[IEEE80211_BAND_2GHZ];
1527 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
1528
1529 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
1530 sc->sbands[IEEE80211_BAND_5GHZ].channels =
1531 sc->channels[IEEE80211_BAND_5GHZ];
1532 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1533 sc->rates[IEEE80211_BAND_5GHZ];
1534 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
1535 }
1536
1537 return 0;
1538bad2:
1539 /* cleanup tx queues */
1540 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1541 if (ATH_TXQ_SETUP(sc, i))
1542 ath_tx_cleanupq(sc, &sc->sc_txq[i]);
1543bad:
1544 if (ah)
1545 ath9k_hw_detach(ah);
1546
1547 return error;
1548}
1549
Sujith9c84b792008-10-29 10:17:13 +05301550static int ath_attach(u16 devid, struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301551{
1552 struct ieee80211_hw *hw = sc->hw;
1553 int error = 0;
1554
Sujith04bd46382008-11-28 22:18:05 +05301555 DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301556
1557 error = ath_init(devid, sc);
1558 if (error != 0)
1559 return error;
1560
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301561 /* get mac address from hardware and set in mac80211 */
1562
1563 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
1564
Sujith9c84b792008-10-29 10:17:13 +05301565 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1566 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1567 IEEE80211_HW_SIGNAL_DBM |
1568 IEEE80211_HW_AMPDU_AGGREGATION;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301569
Sujith9c84b792008-10-29 10:17:13 +05301570 hw->wiphy->interface_modes =
1571 BIT(NL80211_IFTYPE_AP) |
1572 BIT(NL80211_IFTYPE_STATION) |
1573 BIT(NL80211_IFTYPE_ADHOC);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301574
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301575 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301576 hw->max_rates = 4;
1577 hw->max_rate_tries = ATH_11N_TXMAXTRY;
Sujith528f0c62008-10-29 10:14:26 +05301578 hw->sta_data_size = sizeof(struct ath_node);
Sujith5640b082008-10-29 10:16:06 +05301579 hw->vif_data_size = sizeof(struct ath_vap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301580
1581 /* Register rate control */
1582 hw->rate_control_algorithm = "ath9k_rate_control";
1583 error = ath_rate_control_register();
1584 if (error != 0) {
1585 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301586 "Unable to register rate control algorithm: %d\n", error);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301587 ath_rate_control_unregister();
1588 goto bad;
1589 }
1590
Sujith9c84b792008-10-29 10:17:13 +05301591 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1592 setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
1593 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1594 setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
1595 }
1596
1597 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ];
1598 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1599 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1600 &sc->sbands[IEEE80211_BAND_5GHZ];
1601
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301602 /* initialize tx/rx engine */
1603 error = ath_tx_init(sc, ATH_TXBUF);
1604 if (error != 0)
1605 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301606
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301607 error = ath_rx_init(sc, ATH_RXBUF);
1608 if (error != 0)
1609 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301610
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301611#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301612 /* Initialze h/w Rfkill */
1613 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1614 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
1615
1616 /* Initialize s/w rfkill */
1617 if (ath_init_sw_rfkill(sc))
1618 goto detach;
1619#endif
1620
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301621 error = ieee80211_register_hw(hw);
1622 if (error != 0) {
1623 ath_rate_control_unregister();
1624 goto bad;
1625 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301626
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301627 /* Initialize LED control */
1628 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301629
1630 return 0;
1631detach:
1632 ath_detach(sc);
1633bad:
1634 return error;
1635}
1636
Sujithff37e332008-11-24 12:07:55 +05301637int ath_reset(struct ath_softc *sc, bool retry_tx)
1638{
1639 struct ath_hal *ah = sc->sc_ah;
1640 int status;
1641 int error = 0;
1642
1643 ath9k_hw_set_interrupts(ah, 0);
1644 ath_draintxq(sc, retry_tx);
1645 ath_stoprecv(sc);
1646 ath_flushrecv(sc);
1647
1648 spin_lock_bh(&sc->sc_resetlock);
1649 if (!ath9k_hw_reset(ah, sc->sc_ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301650 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301651 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1652 sc->sc_ht_extprotspacing, false, &status)) {
1653 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301654 "Unable to reset hardware; hal status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301655 error = -EIO;
1656 }
1657 spin_unlock_bh(&sc->sc_resetlock);
1658
1659 if (ath_startrecv(sc) != 0)
Sujith04bd46382008-11-28 22:18:05 +05301660 DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301661
1662 /*
1663 * We may be doing a reset in response to a request
1664 * that changes the channel so update any state that
1665 * might change as a result.
1666 */
1667 ath_setcurmode(sc, ath_chan2mode(sc->sc_ah->ah_curchan));
1668
1669 ath_update_txpow(sc);
1670
1671 if (sc->sc_flags & SC_OP_BEACONS)
1672 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1673
1674 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1675
1676 if (retry_tx) {
1677 int i;
1678 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1679 if (ATH_TXQ_SETUP(sc, i)) {
1680 spin_lock_bh(&sc->sc_txq[i].axq_lock);
1681 ath_txq_schedule(sc, &sc->sc_txq[i]);
1682 spin_unlock_bh(&sc->sc_txq[i].axq_lock);
1683 }
1684 }
1685 }
1686
1687 return error;
1688}
1689
1690/*
1691 * This function will allocate both the DMA descriptor structure, and the
1692 * buffers it contains. These are used to contain the descriptors used
1693 * by the system.
1694*/
1695int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1696 struct list_head *head, const char *name,
1697 int nbuf, int ndesc)
1698{
1699#define DS2PHYS(_dd, _ds) \
1700 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1701#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1702#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1703
1704 struct ath_desc *ds;
1705 struct ath_buf *bf;
1706 int i, bsize, error;
1707
Sujith04bd46382008-11-28 22:18:05 +05301708 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
1709 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301710
1711 /* ath_desc must be a multiple of DWORDs */
1712 if ((sizeof(struct ath_desc) % 4) != 0) {
Sujith04bd46382008-11-28 22:18:05 +05301713 DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301714 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1715 error = -ENOMEM;
1716 goto fail;
1717 }
1718
1719 dd->dd_name = name;
1720 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1721
1722 /*
1723 * Need additional DMA memory because we can't use
1724 * descriptors that cross the 4K page boundary. Assume
1725 * one skipped descriptor per 4K page.
1726 */
1727 if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1728 u32 ndesc_skipped =
1729 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1730 u32 dma_len;
1731
1732 while (ndesc_skipped) {
1733 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1734 dd->dd_desc_len += dma_len;
1735
1736 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1737 };
1738 }
1739
1740 /* allocate descriptors */
1741 dd->dd_desc = pci_alloc_consistent(sc->pdev,
1742 dd->dd_desc_len,
1743 &dd->dd_desc_paddr);
1744 if (dd->dd_desc == NULL) {
1745 error = -ENOMEM;
1746 goto fail;
1747 }
1748 ds = dd->dd_desc;
Sujith04bd46382008-11-28 22:18:05 +05301749 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
1750 dd->dd_name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301751 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1752
1753 /* allocate buffers */
1754 bsize = sizeof(struct ath_buf) * nbuf;
1755 bf = kmalloc(bsize, GFP_KERNEL);
1756 if (bf == NULL) {
1757 error = -ENOMEM;
1758 goto fail2;
1759 }
1760 memset(bf, 0, bsize);
1761 dd->dd_bufptr = bf;
1762
1763 INIT_LIST_HEAD(head);
1764 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1765 bf->bf_desc = ds;
1766 bf->bf_daddr = DS2PHYS(dd, ds);
1767
1768 if (!(sc->sc_ah->ah_caps.hw_caps &
1769 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1770 /*
1771 * Skip descriptor addresses which can cause 4KB
1772 * boundary crossing (addr + length) with a 32 dword
1773 * descriptor fetch.
1774 */
1775 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1776 ASSERT((caddr_t) bf->bf_desc <
1777 ((caddr_t) dd->dd_desc +
1778 dd->dd_desc_len));
1779
1780 ds += ndesc;
1781 bf->bf_desc = ds;
1782 bf->bf_daddr = DS2PHYS(dd, ds);
1783 }
1784 }
1785 list_add_tail(&bf->list, head);
1786 }
1787 return 0;
1788fail2:
1789 pci_free_consistent(sc->pdev,
1790 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1791fail:
1792 memset(dd, 0, sizeof(*dd));
1793 return error;
1794#undef ATH_DESC_4KB_BOUND_CHECK
1795#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1796#undef DS2PHYS
1797}
1798
1799void ath_descdma_cleanup(struct ath_softc *sc,
1800 struct ath_descdma *dd,
1801 struct list_head *head)
1802{
1803 pci_free_consistent(sc->pdev,
1804 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1805
1806 INIT_LIST_HEAD(head);
1807 kfree(dd->dd_bufptr);
1808 memset(dd, 0, sizeof(*dd));
1809}
1810
1811int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1812{
1813 int qnum;
1814
1815 switch (queue) {
1816 case 0:
1817 qnum = sc->sc_haltype2q[ATH9K_WME_AC_VO];
1818 break;
1819 case 1:
1820 qnum = sc->sc_haltype2q[ATH9K_WME_AC_VI];
1821 break;
1822 case 2:
1823 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BE];
1824 break;
1825 case 3:
1826 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BK];
1827 break;
1828 default:
1829 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BE];
1830 break;
1831 }
1832
1833 return qnum;
1834}
1835
1836int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1837{
1838 int qnum;
1839
1840 switch (queue) {
1841 case ATH9K_WME_AC_VO:
1842 qnum = 0;
1843 break;
1844 case ATH9K_WME_AC_VI:
1845 qnum = 1;
1846 break;
1847 case ATH9K_WME_AC_BE:
1848 qnum = 2;
1849 break;
1850 case ATH9K_WME_AC_BK:
1851 qnum = 3;
1852 break;
1853 default:
1854 qnum = -1;
1855 break;
1856 }
1857
1858 return qnum;
1859}
1860
1861/**********************/
1862/* mac80211 callbacks */
1863/**********************/
1864
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001865static int ath9k_start(struct ieee80211_hw *hw)
1866{
1867 struct ath_softc *sc = hw->priv;
1868 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05301869 struct ath9k_channel *init_channel;
1870 int error = 0, pos, status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001871
Sujith04bd46382008-11-28 22:18:05 +05301872 DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with "
1873 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001874
1875 /* setup initial channel */
1876
1877 pos = ath_get_channel(sc, curchan);
1878 if (pos == -1) {
Sujith04bd46382008-11-28 22:18:05 +05301879 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", curchan->center_freq);
Sujith9c84b792008-10-29 10:17:13 +05301880 error = -EINVAL;
Sujithff37e332008-11-24 12:07:55 +05301881 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001882 }
1883
Sujith99405f92008-11-24 12:08:35 +05301884 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001885 sc->sc_ah->ah_channels[pos].chanmode =
1886 (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A;
Sujithff37e332008-11-24 12:07:55 +05301887 init_channel = &sc->sc_ah->ah_channels[pos];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001888
Sujithff37e332008-11-24 12:07:55 +05301889 /* Reset SERDES registers */
1890 ath9k_hw_configpcipowersave(sc->sc_ah, 0);
1891
1892 /*
1893 * The basic interface to setting the hardware in a good
1894 * state is ``reset''. On return the hardware is known to
1895 * be powered up and with interrupts disabled. This must
1896 * be followed by initialization of the appropriate bits
1897 * and then setup of the interrupt mask.
1898 */
1899 spin_lock_bh(&sc->sc_resetlock);
1900 if (!ath9k_hw_reset(sc->sc_ah, init_channel,
Sujith99405f92008-11-24 12:08:35 +05301901 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301902 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1903 sc->sc_ht_extprotspacing, false, &status)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001904 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301905 "Unable to reset hardware; hal status %u "
1906 "(freq %u flags 0x%x)\n", status,
Sujithff37e332008-11-24 12:07:55 +05301907 init_channel->channel, init_channel->channelFlags);
1908 error = -EIO;
1909 spin_unlock_bh(&sc->sc_resetlock);
1910 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001911 }
Sujithff37e332008-11-24 12:07:55 +05301912 spin_unlock_bh(&sc->sc_resetlock);
1913
1914 /*
1915 * This is needed only to setup initial state
1916 * but it's best done after a reset.
1917 */
1918 ath_update_txpow(sc);
1919
1920 /*
1921 * Setup the hardware after reset:
1922 * The receive engine is set going.
1923 * Frame transmit is handled entirely
1924 * in the frame output path; there's nothing to do
1925 * here except setup the interrupt mask.
1926 */
1927 if (ath_startrecv(sc) != 0) {
1928 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301929 "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301930 error = -EIO;
1931 goto error;
1932 }
1933
1934 /* Setup our intr mask. */
1935 sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
1936 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
1937 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
1938
1939 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
1940 sc->sc_imask |= ATH9K_INT_GTT;
1941
1942 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
1943 sc->sc_imask |= ATH9K_INT_CST;
1944
1945 /*
1946 * Enable MIB interrupts when there are hardware phy counters.
1947 * Note we only do this (at the moment) for station mode.
1948 */
1949 if (ath9k_hw_phycounters(sc->sc_ah) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001950 ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) ||
1951 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC)))
Sujithff37e332008-11-24 12:07:55 +05301952 sc->sc_imask |= ATH9K_INT_MIB;
1953 /*
1954 * Some hardware processes the TIM IE and fires an
1955 * interrupt when the TIM bit is set. For hardware
1956 * that does, if not overridden by configuration,
1957 * enable the TIM interrupt when operating as station.
1958 */
1959 if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001960 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) &&
Sujithff37e332008-11-24 12:07:55 +05301961 !sc->sc_config.swBeaconProcess)
1962 sc->sc_imask |= ATH9K_INT_TIM;
1963
1964 ath_setcurmode(sc, ath_chan2mode(init_channel));
1965
1966 sc->sc_flags &= ~SC_OP_INVALID;
1967
1968 /* Disable BMISS interrupt when we're not associated */
1969 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1970 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1971
1972 ieee80211_wake_queues(sc->hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001973
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301974#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301975 error = ath_start_rfkill_poll(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301976#endif
1977
Sujithff37e332008-11-24 12:07:55 +05301978error:
Sujith9c84b792008-10-29 10:17:13 +05301979 return error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001980}
1981
1982static int ath9k_tx(struct ieee80211_hw *hw,
1983 struct sk_buff *skb)
1984{
Jouni Malinen147583c2008-08-11 14:01:50 +03001985 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Sujith528f0c62008-10-29 10:14:26 +05301986 struct ath_softc *sc = hw->priv;
1987 struct ath_tx_control txctl;
1988 int hdrlen, padsize;
1989
1990 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03001991
1992 /*
1993 * As a temporary workaround, assign seq# here; this will likely need
1994 * to be cleaned up to work better with Beacon transmission and virtual
1995 * BSSes.
1996 */
1997 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1998 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1999 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
2000 sc->seq_no += 0x10;
2001 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
2002 hdr->seq_ctrl |= cpu_to_le16(sc->seq_no);
2003 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002004
2005 /* Add the padding after the header if this is not already done */
2006 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
2007 if (hdrlen & 3) {
2008 padsize = hdrlen % 4;
2009 if (skb_headroom(skb) < padsize)
2010 return -1;
2011 skb_push(skb, padsize);
2012 memmove(skb->data, skb->data + padsize, hdrlen);
2013 }
2014
Sujith528f0c62008-10-29 10:14:26 +05302015 /* Check if a tx queue is available */
2016
2017 txctl.txq = ath_test_get_txq(sc, skb);
2018 if (!txctl.txq)
2019 goto exit;
2020
Sujith04bd46382008-11-28 22:18:05 +05302021 DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002022
Sujith528f0c62008-10-29 10:14:26 +05302023 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd46382008-11-28 22:18:05 +05302024 DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05302025 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002026 }
2027
2028 return 0;
Sujith528f0c62008-10-29 10:14:26 +05302029exit:
2030 dev_kfree_skb_any(skb);
2031 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002032}
2033
2034static void ath9k_stop(struct ieee80211_hw *hw)
2035{
2036 struct ath_softc *sc = hw->priv;
Sujith9c84b792008-10-29 10:17:13 +05302037
2038 if (sc->sc_flags & SC_OP_INVALID) {
Sujith04bd46382008-11-28 22:18:05 +05302039 DPRINTF(sc, ATH_DBG_ANY, "Device not present\n");
Sujith9c84b792008-10-29 10:17:13 +05302040 return;
2041 }
2042
Sujith04bd46382008-11-28 22:18:05 +05302043 DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n");
Sujithff37e332008-11-24 12:07:55 +05302044
2045 ieee80211_stop_queues(sc->hw);
2046
2047 /* make sure h/w will not generate any interrupt
2048 * before setting the invalid flag. */
2049 ath9k_hw_set_interrupts(sc->sc_ah, 0);
2050
2051 if (!(sc->sc_flags & SC_OP_INVALID)) {
2052 ath_draintxq(sc, false);
2053 ath_stoprecv(sc);
2054 ath9k_hw_phy_disable(sc->sc_ah);
2055 } else
2056 sc->sc_rxlink = NULL;
2057
2058#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
2059 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2060 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2061#endif
2062 /* disable HAL and put h/w to sleep */
2063 ath9k_hw_disable(sc->sc_ah);
2064 ath9k_hw_configpcipowersave(sc->sc_ah, 1);
2065
2066 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002067
Sujith04bd46382008-11-28 22:18:05 +05302068 DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002069}
2070
2071static int ath9k_add_interface(struct ieee80211_hw *hw,
2072 struct ieee80211_if_init_conf *conf)
2073{
2074 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302075 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08002076 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002077
2078 /* Support only vap for now */
2079
2080 if (sc->sc_nvaps)
2081 return -ENOBUFS;
2082
2083 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002084 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002085 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002086 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002087 case NL80211_IFTYPE_ADHOC:
Colin McCabed97809d2008-12-01 13:38:55 -08002088 ic_opmode = NL80211_IFTYPE_ADHOC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002089 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002090 case NL80211_IFTYPE_AP:
Colin McCabed97809d2008-12-01 13:38:55 -08002091 ic_opmode = NL80211_IFTYPE_AP;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002092 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002093 default:
2094 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302095 "Interface type %d not yet supported\n", conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002096 return -EOPNOTSUPP;
2097 }
2098
Sujith04bd46382008-11-28 22:18:05 +05302099 DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002100
Sujith5640b082008-10-29 10:16:06 +05302101 /* Set the VAP opmode */
2102 avp->av_opmode = ic_opmode;
2103 avp->av_bslot = -1;
2104
Colin McCabed97809d2008-12-01 13:38:55 -08002105 if (ic_opmode == NL80211_IFTYPE_AP)
Sujith5640b082008-10-29 10:16:06 +05302106 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2107
2108 sc->sc_vaps[0] = conf->vif;
2109 sc->sc_nvaps++;
2110
2111 /* Set the device opmode */
2112 sc->sc_ah->ah_opmode = ic_opmode;
2113
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002114 if (conf->type == NL80211_IFTYPE_AP) {
2115 /* TODO: is this a suitable place to start ANI for AP mode? */
2116 /* Start ANI */
2117 mod_timer(&sc->sc_ani.timer,
2118 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
2119 }
2120
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002121 return 0;
2122}
2123
2124static void ath9k_remove_interface(struct ieee80211_hw *hw,
2125 struct ieee80211_if_init_conf *conf)
2126{
2127 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302128 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002129
Sujith04bd46382008-11-28 22:18:05 +05302130 DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002131
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002132#ifdef CONFIG_SLOW_ANT_DIV
2133 ath_slow_ant_div_stop(&sc->sc_antdiv);
2134#endif
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002135 /* Stop ANI */
2136 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002137
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002138 /* Reclaim beacon resources */
Colin McCabed97809d2008-12-01 13:38:55 -08002139 if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP ||
2140 sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002141 ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
2142 ath_beacon_return(sc, avp);
2143 }
2144
Sujith672840a2008-08-11 14:05:08 +05302145 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002146
Sujith5640b082008-10-29 10:16:06 +05302147 sc->sc_vaps[0] = NULL;
2148 sc->sc_nvaps--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002149}
2150
Johannes Berge8975582008-10-09 12:18:51 +02002151static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002152{
2153 struct ath_softc *sc = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002154 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002155
Sujith99405f92008-11-24 12:08:35 +05302156 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
2157 struct ieee80211_channel *curchan = hw->conf.channel;
2158 int pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002159
Sujith04bd46382008-11-28 22:18:05 +05302160 DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2161 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002162
Sujith99405f92008-11-24 12:08:35 +05302163 pos = ath_get_channel(sc, curchan);
2164 if (pos == -1) {
Sujith04bd46382008-11-28 22:18:05 +05302165 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n",
2166 curchan->center_freq);
Sujith99405f92008-11-24 12:08:35 +05302167 return -EINVAL;
2168 }
2169
2170 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
2171 sc->sc_ah->ah_channels[pos].chanmode =
2172 (curchan->band == IEEE80211_BAND_2GHZ) ?
2173 CHANNEL_G : CHANNEL_A;
2174
Colin McCabed97809d2008-12-01 13:38:55 -08002175 if ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP) &&
Sujithe11602b2008-11-27 09:46:27 +05302176 (conf->ht.enabled)) {
2177 sc->tx_chan_width = (!!conf->ht.sec_chan_offset) ?
2178 ATH9K_HT_MACMODE_2040 : ATH9K_HT_MACMODE_20;
2179
2180 sc->sc_ah->ah_channels[pos].chanmode =
2181 ath_get_extchanmode(sc, curchan,
2182 conf->ht.sec_chan_offset,
2183 sc->tx_chan_width);
2184 }
2185
2186 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) {
Sujith04bd46382008-11-28 22:18:05 +05302187 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithe11602b2008-11-27 09:46:27 +05302188 return -EINVAL;
2189 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002190 }
2191
Sujith99405f92008-11-24 12:08:35 +05302192 if (changed & IEEE80211_CONF_CHANGE_HT)
2193 ath_update_chainmask(sc, conf->ht.enabled);
Sujith86b89ee2008-08-07 10:54:57 +05302194
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002195 if (changed & IEEE80211_CONF_CHANGE_POWER)
2196 sc->sc_config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002197
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002198 return 0;
2199}
2200
2201static int ath9k_config_interface(struct ieee80211_hw *hw,
2202 struct ieee80211_vif *vif,
2203 struct ieee80211_if_conf *conf)
2204{
2205 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002206 struct ath_hal *ah = sc->sc_ah;
Sujith5640b082008-10-29 10:16:06 +05302207 struct ath_vap *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002208 u32 rfilt = 0;
2209 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002210
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002211 /* TODO: Need to decide which hw opmode to use for multi-interface
2212 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02002213 if (vif->type == NL80211_IFTYPE_AP &&
Colin McCabed97809d2008-12-01 13:38:55 -08002214 ah->ah_opmode != NL80211_IFTYPE_AP) {
2215 ah->ah_opmode = NL80211_IFTYPE_STATION;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002216 ath9k_hw_setopmode(ah);
2217 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
2218 /* Request full reset to get hw opmode changed properly */
2219 sc->sc_flags |= SC_OP_FULL_RESET;
2220 }
2221
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002222 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
2223 !is_zero_ether_addr(conf->bssid)) {
2224 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002225 case NL80211_IFTYPE_STATION:
2226 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002227 /* Set BSSID */
2228 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
2229 sc->sc_curaid = 0;
2230 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
2231 sc->sc_curaid);
2232
2233 /* Set aggregation protection mode parameters */
2234 sc->sc_config.ath_aggr_prot = 0;
2235
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002236 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +05302237 "RX filter 0x%x bssid %pM aid 0x%x\n",
2238 rfilt, sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002239
2240 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05302241 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002242
2243 break;
2244 default:
2245 break;
2246 }
2247 }
2248
2249 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002250 ((vif->type == NL80211_IFTYPE_ADHOC) ||
2251 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002252 /*
2253 * Allocate and setup the beacon frame.
2254 *
2255 * Stop any previous beacon DMA. This may be
2256 * necessary, for example, when an ibss merge
2257 * causes reconfiguration; we may be called
2258 * with beacon transmission active.
2259 */
2260 ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
2261
2262 error = ath_beacon_alloc(sc, 0);
2263 if (error != 0)
2264 return error;
2265
2266 ath_beacon_sync(sc, 0);
2267 }
2268
2269 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Colin McCabed97809d2008-12-01 13:38:55 -08002270 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002271 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2272 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2273 ath9k_hw_keysetmac(sc->sc_ah,
2274 (u16)i,
2275 sc->sc_curbssid);
2276 }
2277
2278 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02002279 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002280 ath_update_chainmask(sc, 0);
2281
2282 return 0;
2283}
2284
2285#define SUPPORTED_FILTERS \
2286 (FIF_PROMISC_IN_BSS | \
2287 FIF_ALLMULTI | \
2288 FIF_CONTROL | \
2289 FIF_OTHER_BSS | \
2290 FIF_BCN_PRBRESP_PROMISC | \
2291 FIF_FCSFAIL)
2292
Sujith7dcfdcd2008-08-11 14:03:13 +05302293/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002294static void ath9k_configure_filter(struct ieee80211_hw *hw,
2295 unsigned int changed_flags,
2296 unsigned int *total_flags,
2297 int mc_count,
2298 struct dev_mc_list *mclist)
2299{
2300 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05302301 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002302
2303 changed_flags &= SUPPORTED_FILTERS;
2304 *total_flags &= SUPPORTED_FILTERS;
2305
Sujith7dcfdcd2008-08-11 14:03:13 +05302306 sc->rx_filter = *total_flags;
2307 rfilt = ath_calcrxfilter(sc);
2308 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2309
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002310 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2311 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05302312 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002313 }
Sujith7dcfdcd2008-08-11 14:03:13 +05302314
Sujith04bd46382008-11-28 22:18:05 +05302315 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx_filter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002316}
2317
2318static void ath9k_sta_notify(struct ieee80211_hw *hw,
2319 struct ieee80211_vif *vif,
2320 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002321 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002322{
2323 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002324
2325 switch (cmd) {
2326 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302327 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002328 break;
2329 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302330 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002331 break;
2332 default:
2333 break;
2334 }
2335}
2336
2337static int ath9k_conf_tx(struct ieee80211_hw *hw,
2338 u16 queue,
2339 const struct ieee80211_tx_queue_params *params)
2340{
2341 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05302342 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002343 int ret = 0, qnum;
2344
2345 if (queue >= WME_NUM_AC)
2346 return 0;
2347
2348 qi.tqi_aifs = params->aifs;
2349 qi.tqi_cwmin = params->cw_min;
2350 qi.tqi_cwmax = params->cw_max;
2351 qi.tqi_burstTime = params->txop;
2352 qnum = ath_get_hal_qnum(queue, sc);
2353
2354 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +05302355 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002356 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd46382008-11-28 22:18:05 +05302357 queue, qnum, params->aifs, params->cw_min,
2358 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002359
2360 ret = ath_txq_update(sc, qnum, &qi);
2361 if (ret)
Sujith04bd46382008-11-28 22:18:05 +05302362 DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002363
2364 return ret;
2365}
2366
2367static int ath9k_set_key(struct ieee80211_hw *hw,
2368 enum set_key_cmd cmd,
2369 const u8 *local_addr,
2370 const u8 *addr,
2371 struct ieee80211_key_conf *key)
2372{
2373 struct ath_softc *sc = hw->priv;
2374 int ret = 0;
2375
Sujith04bd46382008-11-28 22:18:05 +05302376 DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002377
2378 switch (cmd) {
2379 case SET_KEY:
2380 ret = ath_key_config(sc, addr, key);
2381 if (!ret) {
2382 set_bit(key->keyidx, sc->sc_keymap);
2383 key->hw_key_idx = key->keyidx;
2384 /* push IV and Michael MIC generation to stack */
2385 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302386 if (key->alg == ALG_TKIP)
2387 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002388 }
2389 break;
2390 case DISABLE_KEY:
2391 ath_key_delete(sc, key);
2392 clear_bit(key->keyidx, sc->sc_keymap);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002393 break;
2394 default:
2395 ret = -EINVAL;
2396 }
2397
2398 return ret;
2399}
2400
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002401static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2402 struct ieee80211_vif *vif,
2403 struct ieee80211_bss_conf *bss_conf,
2404 u32 changed)
2405{
2406 struct ath_softc *sc = hw->priv;
2407
2408 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Sujith04bd46382008-11-28 22:18:05 +05302409 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002410 bss_conf->use_short_preamble);
2411 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302412 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002413 else
Sujith672840a2008-08-11 14:05:08 +05302414 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002415 }
2416
2417 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Sujith04bd46382008-11-28 22:18:05 +05302418 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002419 bss_conf->use_cts_prot);
2420 if (bss_conf->use_cts_prot &&
2421 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302422 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002423 else
Sujith672840a2008-08-11 14:05:08 +05302424 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002425 }
2426
Sujith99405f92008-11-24 12:08:35 +05302427 if (changed & BSS_CHANGED_HT)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002428 ath9k_ht_conf(sc, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002429
2430 if (changed & BSS_CHANGED_ASSOC) {
Sujith04bd46382008-11-28 22:18:05 +05302431 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002432 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302433 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002434 }
2435}
2436
2437static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2438{
2439 u64 tsf;
2440 struct ath_softc *sc = hw->priv;
2441 struct ath_hal *ah = sc->sc_ah;
2442
2443 tsf = ath9k_hw_gettsf64(ah);
2444
2445 return tsf;
2446}
2447
2448static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2449{
2450 struct ath_softc *sc = hw->priv;
2451 struct ath_hal *ah = sc->sc_ah;
2452
2453 ath9k_hw_reset_tsf(ah);
2454}
2455
2456static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2457 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002458 struct ieee80211_sta *sta,
2459 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002460{
2461 struct ath_softc *sc = hw->priv;
2462 int ret = 0;
2463
2464 switch (action) {
2465 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302466 if (!(sc->sc_flags & SC_OP_RXAGGR))
2467 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002468 break;
2469 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002470 break;
2471 case IEEE80211_AMPDU_TX_START:
Sujithb5aa9bf2008-10-29 10:13:31 +05302472 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002473 if (ret < 0)
2474 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302475 "Unable to start TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002476 else
Johannes Berg17741cd2008-09-11 00:02:02 +02002477 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002478 break;
2479 case IEEE80211_AMPDU_TX_STOP:
Sujithb5aa9bf2008-10-29 10:13:31 +05302480 ret = ath_tx_aggr_stop(sc, sta, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002481 if (ret < 0)
2482 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302483 "Unable to stop TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002484
Johannes Berg17741cd2008-09-11 00:02:02 +02002485 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002486 break;
Sujith8469cde2008-10-29 10:19:28 +05302487 case IEEE80211_AMPDU_TX_RESUME:
2488 ath_tx_aggr_resume(sc, sta, tid);
2489 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002490 default:
Sujith04bd46382008-11-28 22:18:05 +05302491 DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002492 }
2493
2494 return ret;
2495}
2496
Johannes Berg4233df62008-10-13 13:35:05 +02002497static int ath9k_no_fragmentation(struct ieee80211_hw *hw, u32 value)
2498{
2499 return -EOPNOTSUPP;
2500}
2501
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002502static struct ieee80211_ops ath9k_ops = {
2503 .tx = ath9k_tx,
2504 .start = ath9k_start,
2505 .stop = ath9k_stop,
2506 .add_interface = ath9k_add_interface,
2507 .remove_interface = ath9k_remove_interface,
2508 .config = ath9k_config,
2509 .config_interface = ath9k_config_interface,
2510 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002511 .sta_notify = ath9k_sta_notify,
2512 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002513 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002514 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002515 .get_tsf = ath9k_get_tsf,
2516 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002517 .ampdu_action = ath9k_ampdu_action,
2518 .set_frag_threshold = ath9k_no_fragmentation,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002519};
2520
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002521static struct {
2522 u32 version;
2523 const char * name;
2524} ath_mac_bb_names[] = {
2525 { AR_SREV_VERSION_5416_PCI, "5416" },
2526 { AR_SREV_VERSION_5416_PCIE, "5418" },
2527 { AR_SREV_VERSION_9100, "9100" },
2528 { AR_SREV_VERSION_9160, "9160" },
2529 { AR_SREV_VERSION_9280, "9280" },
2530 { AR_SREV_VERSION_9285, "9285" }
2531};
2532
2533static struct {
2534 u16 version;
2535 const char * name;
2536} ath_rf_names[] = {
2537 { 0, "5133" },
2538 { AR_RAD5133_SREV_MAJOR, "5133" },
2539 { AR_RAD5122_SREV_MAJOR, "5122" },
2540 { AR_RAD2133_SREV_MAJOR, "2133" },
2541 { AR_RAD2122_SREV_MAJOR, "2122" }
2542};
2543
2544/*
2545 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2546 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002547static const char *
2548ath_mac_bb_name(u32 mac_bb_version)
2549{
2550 int i;
2551
2552 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2553 if (ath_mac_bb_names[i].version == mac_bb_version) {
2554 return ath_mac_bb_names[i].name;
2555 }
2556 }
2557
2558 return "????";
2559}
2560
2561/*
2562 * Return the RF name. "????" is returned if the RF is unknown.
2563 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002564static const char *
2565ath_rf_name(u16 rf_version)
2566{
2567 int i;
2568
2569 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2570 if (ath_rf_names[i].version == rf_version) {
2571 return ath_rf_names[i].name;
2572 }
2573 }
2574
2575 return "????";
2576}
2577
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002578static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2579{
2580 void __iomem *mem;
2581 struct ath_softc *sc;
2582 struct ieee80211_hw *hw;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002583 u8 csz;
2584 u32 val;
2585 int ret = 0;
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002586 struct ath_hal *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002587
2588 if (pci_enable_device(pdev))
2589 return -EIO;
2590
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002591 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2592
2593 if (ret) {
Luis R. Rodriguez1d450cf2008-11-13 19:11:56 -08002594 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002595 goto bad;
2596 }
2597
2598 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2599
2600 if (ret) {
2601 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
Sujith04bd46382008-11-28 22:18:05 +05302602 "DMA enable failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002603 goto bad;
2604 }
2605
2606 /*
2607 * Cache line size is used to size and align various
2608 * structures used to communicate with the hardware.
2609 */
2610 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
2611 if (csz == 0) {
2612 /*
2613 * Linux 2.4.18 (at least) writes the cache line size
2614 * register as a 16-bit wide register which is wrong.
2615 * We must have this setup properly for rx buffer
2616 * DMA to work so force a reasonable value here if it
2617 * comes up zero.
2618 */
2619 csz = L1_CACHE_BYTES / sizeof(u32);
2620 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
2621 }
2622 /*
2623 * The default setting of latency timer yields poor results,
2624 * set it to the value used by other systems. It may be worth
2625 * tweaking this setting more.
2626 */
2627 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
2628
2629 pci_set_master(pdev);
2630
2631 /*
2632 * Disable the RETRY_TIMEOUT register (0x41) to keep
2633 * PCI Tx retries from interfering with C3 CPU state.
2634 */
2635 pci_read_config_dword(pdev, 0x40, &val);
2636 if ((val & 0x0000ff00) != 0)
2637 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2638
2639 ret = pci_request_region(pdev, 0, "ath9k");
2640 if (ret) {
2641 dev_err(&pdev->dev, "PCI memory region reserve error\n");
2642 ret = -ENODEV;
2643 goto bad;
2644 }
2645
2646 mem = pci_iomap(pdev, 0, 0);
2647 if (!mem) {
2648 printk(KERN_ERR "PCI memory map error\n") ;
2649 ret = -EIO;
2650 goto bad1;
2651 }
2652
2653 hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops);
2654 if (hw == NULL) {
2655 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n");
2656 goto bad2;
2657 }
2658
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002659 SET_IEEE80211_DEV(hw, &pdev->dev);
2660 pci_set_drvdata(pdev, hw);
2661
2662 sc = hw->priv;
2663 sc->hw = hw;
2664 sc->pdev = pdev;
2665 sc->mem = mem;
2666
2667 if (ath_attach(id->device, sc) != 0) {
2668 ret = -ENODEV;
2669 goto bad3;
2670 }
2671
2672 /* setup interrupt service routine */
2673
2674 if (request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc)) {
2675 printk(KERN_ERR "%s: request_irq failed\n",
2676 wiphy_name(hw->wiphy));
2677 ret = -EIO;
2678 goto bad4;
2679 }
2680
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002681 ah = sc->sc_ah;
2682 printk(KERN_INFO
2683 "%s: Atheros AR%s MAC/BB Rev:%x "
2684 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002685 wiphy_name(hw->wiphy),
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002686 ath_mac_bb_name(ah->ah_macVersion),
2687 ah->ah_macRev,
2688 ath_rf_name((ah->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR)),
2689 ah->ah_phyRev,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002690 (unsigned long)mem, pdev->irq);
2691
2692 return 0;
2693bad4:
2694 ath_detach(sc);
2695bad3:
2696 ieee80211_free_hw(hw);
2697bad2:
2698 pci_iounmap(pdev, mem);
2699bad1:
2700 pci_release_region(pdev, 0);
2701bad:
2702 pci_disable_device(pdev);
2703 return ret;
2704}
2705
2706static void ath_pci_remove(struct pci_dev *pdev)
2707{
2708 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2709 struct ath_softc *sc = hw->priv;
2710
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002711 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05302712 if (pdev->irq)
2713 free_irq(pdev->irq, sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002714 pci_iounmap(pdev, sc->mem);
2715 pci_release_region(pdev, 0);
2716 pci_disable_device(pdev);
2717 ieee80211_free_hw(hw);
2718}
2719
2720#ifdef CONFIG_PM
2721
2722static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2723{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302724 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2725 struct ath_softc *sc = hw->priv;
2726
2727 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302728
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302729#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302730 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2731 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2732#endif
2733
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002734 pci_save_state(pdev);
2735 pci_disable_device(pdev);
2736 pci_set_power_state(pdev, 3);
2737
2738 return 0;
2739}
2740
2741static int ath_pci_resume(struct pci_dev *pdev)
2742{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302743 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2744 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002745 u32 val;
2746 int err;
2747
2748 err = pci_enable_device(pdev);
2749 if (err)
2750 return err;
2751 pci_restore_state(pdev);
2752 /*
2753 * Suspend/Resume resets the PCI configuration space, so we have to
2754 * re-disable the RETRY_TIMEOUT register (0x41) to keep
2755 * PCI Tx retries from interfering with C3 CPU state
2756 */
2757 pci_read_config_dword(pdev, 0x40, &val);
2758 if ((val & 0x0000ff00) != 0)
2759 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2760
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302761 /* Enable LED */
2762 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
2763 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
2764 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
2765
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302766#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302767 /*
2768 * check the h/w rfkill state on resume
2769 * and start the rfkill poll timer
2770 */
2771 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2772 queue_delayed_work(sc->hw->workqueue,
2773 &sc->rf_kill.rfkill_poll, 0);
2774#endif
2775
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002776 return 0;
2777}
2778
2779#endif /* CONFIG_PM */
2780
2781MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
2782
2783static struct pci_driver ath_pci_driver = {
2784 .name = "ath9k",
2785 .id_table = ath_pci_id_table,
2786 .probe = ath_pci_probe,
2787 .remove = ath_pci_remove,
2788#ifdef CONFIG_PM
2789 .suspend = ath_pci_suspend,
2790 .resume = ath_pci_resume,
2791#endif /* CONFIG_PM */
2792};
2793
2794static int __init init_ath_pci(void)
2795{
2796 printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
2797
2798 if (pci_register_driver(&ath_pci_driver) < 0) {
2799 printk(KERN_ERR
2800 "ath_pci: No devices found, driver not installed.\n");
2801 pci_unregister_driver(&ath_pci_driver);
2802 return -ENODEV;
2803 }
2804
2805 return 0;
2806}
2807module_init(init_ath_pci);
2808
2809static void __exit exit_ath_pci(void)
2810{
2811 pci_unregister_driver(&ath_pci_driver);
Sujith04bd46382008-11-28 22:18:05 +05302812 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002813}
2814module_exit(exit_ath_pci);