blob: 71389643b1b19b45d81cf0b563753abb4c444420 [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"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070020
21#define ATH_PCI_VERSION "0.1"
22
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070023static char *dev_info = "ath9k";
24
25MODULE_AUTHOR("Atheros Communications");
26MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
27MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
28MODULE_LICENSE("Dual BSD/GPL");
29
30static struct pci_device_id ath_pci_id_table[] __devinitdata = {
31 { PCI_VDEVICE(ATHEROS, 0x0023) }, /* PCI */
32 { PCI_VDEVICE(ATHEROS, 0x0024) }, /* PCI-E */
33 { PCI_VDEVICE(ATHEROS, 0x0027) }, /* PCI */
34 { PCI_VDEVICE(ATHEROS, 0x0029) }, /* PCI */
35 { PCI_VDEVICE(ATHEROS, 0x002A) }, /* PCI-E */
36 { 0 }
37};
38
Sujith9757d552008-11-04 18:25:27 +053039static void ath_detach(struct ath_softc *sc);
40
Sujithff37e332008-11-24 12:07:55 +053041/* return bus cachesize in 4B word units */
42
43static void bus_read_cachesize(struct ath_softc *sc, int *csz)
44{
45 u8 u8tmp;
46
47 pci_read_config_byte(sc->pdev, PCI_CACHE_LINE_SIZE, (u8 *)&u8tmp);
48 *csz = (int)u8tmp;
49
50 /*
51 * This check was put in to avoid "unplesant" consequences if
52 * the bootrom has not fully initialized all PCI devices.
53 * Sometimes the cache line size register is not set
54 */
55
56 if (*csz == 0)
57 *csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
58}
59
60static void ath_setcurmode(struct ath_softc *sc, enum wireless_mode mode)
61{
62 sc->sc_curmode = mode;
63 /*
64 * All protection frames are transmited at 2Mb/s for
65 * 11g, otherwise at 1Mb/s.
66 * XXX select protection rate index from rate table.
67 */
68 sc->sc_protrix = (mode == ATH9K_MODE_11G ? 1 : 0);
69}
70
71static enum wireless_mode ath_chan2mode(struct ath9k_channel *chan)
72{
73 if (chan->chanmode == CHANNEL_A)
74 return ATH9K_MODE_11A;
75 else if (chan->chanmode == CHANNEL_G)
76 return ATH9K_MODE_11G;
77 else if (chan->chanmode == CHANNEL_B)
78 return ATH9K_MODE_11B;
79 else if (chan->chanmode == CHANNEL_A_HT20)
80 return ATH9K_MODE_11NA_HT20;
81 else if (chan->chanmode == CHANNEL_G_HT20)
82 return ATH9K_MODE_11NG_HT20;
83 else if (chan->chanmode == CHANNEL_A_HT40PLUS)
84 return ATH9K_MODE_11NA_HT40PLUS;
85 else if (chan->chanmode == CHANNEL_A_HT40MINUS)
86 return ATH9K_MODE_11NA_HT40MINUS;
87 else if (chan->chanmode == CHANNEL_G_HT40PLUS)
88 return ATH9K_MODE_11NG_HT40PLUS;
89 else if (chan->chanmode == CHANNEL_G_HT40MINUS)
90 return ATH9K_MODE_11NG_HT40MINUS;
91
92 WARN_ON(1); /* should not get here */
93
94 return ATH9K_MODE_11B;
95}
96
97static void ath_update_txpow(struct ath_softc *sc)
98{
99 struct ath_hal *ah = sc->sc_ah;
100 u32 txpow;
101
102 if (sc->sc_curtxpow != sc->sc_config.txpowlimit) {
103 ath9k_hw_set_txpowerlimit(ah, sc->sc_config.txpowlimit);
104 /* read back in case value is clamped */
105 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
106 sc->sc_curtxpow = txpow;
107 }
108}
109
110static u8 parse_mpdudensity(u8 mpdudensity)
111{
112 /*
113 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
114 * 0 for no restriction
115 * 1 for 1/4 us
116 * 2 for 1/2 us
117 * 3 for 1 us
118 * 4 for 2 us
119 * 5 for 4 us
120 * 6 for 8 us
121 * 7 for 16 us
122 */
123 switch (mpdudensity) {
124 case 0:
125 return 0;
126 case 1:
127 case 2:
128 case 3:
129 /* Our lower layer calculations limit our precision to
130 1 microsecond */
131 return 1;
132 case 4:
133 return 2;
134 case 5:
135 return 4;
136 case 6:
137 return 8;
138 case 7:
139 return 16;
140 default:
141 return 0;
142 }
143}
144
145static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band)
146{
147 struct ath_rate_table *rate_table = NULL;
148 struct ieee80211_supported_band *sband;
149 struct ieee80211_rate *rate;
150 int i, maxrates;
151
152 switch (band) {
153 case IEEE80211_BAND_2GHZ:
154 rate_table = sc->hw_rate_table[ATH9K_MODE_11G];
155 break;
156 case IEEE80211_BAND_5GHZ:
157 rate_table = sc->hw_rate_table[ATH9K_MODE_11A];
158 break;
159 default:
160 break;
161 }
162
163 if (rate_table == NULL)
164 return;
165
166 sband = &sc->sbands[band];
167 rate = sc->rates[band];
168
169 if (rate_table->rate_cnt > ATH_RATE_MAX)
170 maxrates = ATH_RATE_MAX;
171 else
172 maxrates = rate_table->rate_cnt;
173
174 for (i = 0; i < maxrates; i++) {
175 rate[i].bitrate = rate_table->info[i].ratekbps / 100;
176 rate[i].hw_value = rate_table->info[i].ratecode;
177 sband->n_bitrates++;
Sujith04bd4632008-11-28 22:18:05 +0530178 DPRINTF(sc, ATH_DBG_CONFIG, "Rate: %2dMbps, ratecode: %2d\n",
179 rate[i].bitrate / 10, rate[i].hw_value);
Sujithff37e332008-11-24 12:07:55 +0530180 }
181}
182
183static int ath_setup_channels(struct ath_softc *sc)
184{
185 struct ath_hal *ah = sc->sc_ah;
186 int nchan, i, a = 0, b = 0;
187 u8 regclassids[ATH_REGCLASSIDS_MAX];
188 u32 nregclass = 0;
189 struct ieee80211_supported_band *band_2ghz;
190 struct ieee80211_supported_band *band_5ghz;
191 struct ieee80211_channel *chan_2ghz;
192 struct ieee80211_channel *chan_5ghz;
193 struct ath9k_channel *c;
194
195 /* Fill in ah->ah_channels */
196 if (!ath9k_regd_init_channels(ah, ATH_CHAN_MAX, (u32 *)&nchan,
197 regclassids, ATH_REGCLASSIDS_MAX,
198 &nregclass, CTRY_DEFAULT, false, 1)) {
199 u32 rd = ah->ah_currentRD;
200 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530201 "Unable to collect channel list; "
Sujithff37e332008-11-24 12:07:55 +0530202 "regdomain likely %u country code %u\n",
Sujith04bd4632008-11-28 22:18:05 +0530203 rd, CTRY_DEFAULT);
Sujithff37e332008-11-24 12:07:55 +0530204 return -EINVAL;
205 }
206
207 band_2ghz = &sc->sbands[IEEE80211_BAND_2GHZ];
208 band_5ghz = &sc->sbands[IEEE80211_BAND_5GHZ];
209 chan_2ghz = sc->channels[IEEE80211_BAND_2GHZ];
210 chan_5ghz = sc->channels[IEEE80211_BAND_5GHZ];
211
212 for (i = 0; i < nchan; i++) {
213 c = &ah->ah_channels[i];
214 if (IS_CHAN_2GHZ(c)) {
215 chan_2ghz[a].band = IEEE80211_BAND_2GHZ;
216 chan_2ghz[a].center_freq = c->channel;
217 chan_2ghz[a].max_power = c->maxTxPower;
218
219 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
220 chan_2ghz[a].flags |= IEEE80211_CHAN_NO_IBSS;
221 if (c->channelFlags & CHANNEL_PASSIVE)
222 chan_2ghz[a].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
223
224 band_2ghz->n_channels = ++a;
225
Sujith04bd4632008-11-28 22:18:05 +0530226 DPRINTF(sc, ATH_DBG_CONFIG, "2MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530227 "channelFlags: 0x%x\n",
Sujith04bd4632008-11-28 22:18:05 +0530228 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530229 } else if (IS_CHAN_5GHZ(c)) {
230 chan_5ghz[b].band = IEEE80211_BAND_5GHZ;
231 chan_5ghz[b].center_freq = c->channel;
232 chan_5ghz[b].max_power = c->maxTxPower;
233
234 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
235 chan_5ghz[b].flags |= IEEE80211_CHAN_NO_IBSS;
236 if (c->channelFlags & CHANNEL_PASSIVE)
237 chan_5ghz[b].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
238
239 band_5ghz->n_channels = ++b;
240
Sujith04bd4632008-11-28 22:18:05 +0530241 DPRINTF(sc, ATH_DBG_CONFIG, "5MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530242 "channelFlags: 0x%x\n",
Sujith04bd4632008-11-28 22:18:05 +0530243 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530244 }
245 }
246
247 return 0;
248}
249
250/*
251 * Set/change channels. If the channel is really being changed, it's done
252 * by reseting the chip. To accomplish this we must first cleanup any pending
253 * DMA, then restart stuff.
254*/
255static int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan)
256{
257 struct ath_hal *ah = sc->sc_ah;
258 bool fastcc = true, stopped;
259
260 if (sc->sc_flags & SC_OP_INVALID)
261 return -EIO;
262
Sujithff37e332008-11-24 12:07:55 +0530263 if (hchan->channel != sc->sc_ah->ah_curchan->channel ||
264 hchan->channelFlags != sc->sc_ah->ah_curchan->channelFlags ||
265 (sc->sc_flags & SC_OP_CHAINMASK_UPDATE) ||
266 (sc->sc_flags & SC_OP_FULL_RESET)) {
267 int status;
268 /*
269 * This is only performed if the channel settings have
270 * actually changed.
271 *
272 * To switch channels clear any pending DMA operations;
273 * wait long enough for the RX fifo to drain, reset the
274 * hardware at the new frequency, and then re-enable
275 * the relevant bits of the h/w.
276 */
Sujith04bd4632008-11-28 22:18:05 +0530277 ath9k_hw_set_interrupts(ah, 0);
278 ath_draintxq(sc, false);
279 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530280
281 /* XXX: do not flush receive queue here. We don't want
282 * to flush data frames already in queue because of
283 * changing channel. */
284
285 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
286 fastcc = false;
287
Sujith99405f92008-11-24 12:08:35 +0530288 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +0530289 "(%u MHz) -> (%u MHz), cflags:%x, chanwidth: %d\n",
Sujith99405f92008-11-24 12:08:35 +0530290 sc->sc_ah->ah_curchan->channel,
291 hchan->channel, hchan->channelFlags, sc->tx_chan_width);
292
Sujithff37e332008-11-24 12:07:55 +0530293 spin_lock_bh(&sc->sc_resetlock);
Sujith99405f92008-11-24 12:08:35 +0530294 if (!ath9k_hw_reset(ah, hchan, sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +0530295 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
296 sc->sc_ht_extprotspacing, fastcc, &status)) {
297 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530298 "Unable to reset channel %u (%uMhz) "
299 "flags 0x%x hal status %u\n",
Sujithff37e332008-11-24 12:07:55 +0530300 ath9k_hw_mhz2ieee(ah, hchan->channel,
301 hchan->channelFlags),
302 hchan->channel, hchan->channelFlags, status);
303 spin_unlock_bh(&sc->sc_resetlock);
304 return -EIO;
305 }
306 spin_unlock_bh(&sc->sc_resetlock);
307
308 sc->sc_flags &= ~SC_OP_CHAINMASK_UPDATE;
309 sc->sc_flags &= ~SC_OP_FULL_RESET;
310
311 if (ath_startrecv(sc) != 0) {
312 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530313 "Unable to restart recv logic\n");
Sujithff37e332008-11-24 12:07:55 +0530314 return -EIO;
315 }
316
317 ath_setcurmode(sc, ath_chan2mode(hchan));
318 ath_update_txpow(sc);
319 ath9k_hw_set_interrupts(ah, sc->sc_imask);
320 }
321 return 0;
322}
323
324/*
325 * This routine performs the periodic noise floor calibration function
326 * that is used to adjust and optimize the chip performance. This
327 * takes environmental changes (location, temperature) into account.
328 * When the task is complete, it reschedules itself depending on the
329 * appropriate interval that was calculated.
330 */
331static void ath_ani_calibrate(unsigned long data)
332{
333 struct ath_softc *sc;
334 struct ath_hal *ah;
335 bool longcal = false;
336 bool shortcal = false;
337 bool aniflag = false;
338 unsigned int timestamp = jiffies_to_msecs(jiffies);
339 u32 cal_interval;
340
341 sc = (struct ath_softc *)data;
342 ah = sc->sc_ah;
343
344 /*
345 * don't calibrate when we're scanning.
346 * we are most likely not on our home channel.
347 */
348 if (sc->rx_filter & FIF_BCN_PRBRESP_PROMISC)
349 return;
350
351 /* Long calibration runs independently of short calibration. */
352 if ((timestamp - sc->sc_ani.sc_longcal_timer) >= ATH_LONG_CALINTERVAL) {
353 longcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530354 DPRINTF(sc, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530355 sc->sc_ani.sc_longcal_timer = timestamp;
356 }
357
358 /* Short calibration applies only while sc_caldone is false */
359 if (!sc->sc_ani.sc_caldone) {
360 if ((timestamp - sc->sc_ani.sc_shortcal_timer) >=
361 ATH_SHORT_CALINTERVAL) {
362 shortcal = true;
Sujith04bd4632008-11-28 22:18:05 +0530363 DPRINTF(sc, ATH_DBG_ANI, "shortcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530364 sc->sc_ani.sc_shortcal_timer = timestamp;
365 sc->sc_ani.sc_resetcal_timer = timestamp;
366 }
367 } else {
368 if ((timestamp - sc->sc_ani.sc_resetcal_timer) >=
369 ATH_RESTART_CALINTERVAL) {
370 ath9k_hw_reset_calvalid(ah, ah->ah_curchan,
371 &sc->sc_ani.sc_caldone);
372 if (sc->sc_ani.sc_caldone)
373 sc->sc_ani.sc_resetcal_timer = timestamp;
374 }
375 }
376
377 /* Verify whether we must check ANI */
378 if ((timestamp - sc->sc_ani.sc_checkani_timer) >=
379 ATH_ANI_POLLINTERVAL) {
380 aniflag = true;
381 sc->sc_ani.sc_checkani_timer = timestamp;
382 }
383
384 /* Skip all processing if there's nothing to do. */
385 if (longcal || shortcal || aniflag) {
386 /* Call ANI routine if necessary */
387 if (aniflag)
388 ath9k_hw_ani_monitor(ah, &sc->sc_halstats,
389 ah->ah_curchan);
390
391 /* Perform calibration if necessary */
392 if (longcal || shortcal) {
393 bool iscaldone = false;
394
395 if (ath9k_hw_calibrate(ah, ah->ah_curchan,
396 sc->sc_rx_chainmask, longcal,
397 &iscaldone)) {
398 if (longcal)
399 sc->sc_ani.sc_noise_floor =
400 ath9k_hw_getchan_noise(ah,
401 ah->ah_curchan);
402
403 DPRINTF(sc, ATH_DBG_ANI,
Sujith04bd4632008-11-28 22:18:05 +0530404 "calibrate chan %u/%x nf: %d\n",
Sujithff37e332008-11-24 12:07:55 +0530405 ah->ah_curchan->channel,
406 ah->ah_curchan->channelFlags,
407 sc->sc_ani.sc_noise_floor);
408 } else {
409 DPRINTF(sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +0530410 "calibrate chan %u/%x failed\n",
Sujithff37e332008-11-24 12:07:55 +0530411 ah->ah_curchan->channel,
412 ah->ah_curchan->channelFlags);
413 }
414 sc->sc_ani.sc_caldone = iscaldone;
415 }
416 }
417
418 /*
419 * Set timer interval based on previous results.
420 * The interval must be the shortest necessary to satisfy ANI,
421 * short calibration and long calibration.
422 */
423
424 cal_interval = ATH_ANI_POLLINTERVAL;
425 if (!sc->sc_ani.sc_caldone)
426 cal_interval = min(cal_interval, (u32)ATH_SHORT_CALINTERVAL);
427
428 mod_timer(&sc->sc_ani.timer, jiffies + msecs_to_jiffies(cal_interval));
429}
430
431/*
432 * Update tx/rx chainmask. For legacy association,
433 * hard code chainmask to 1x1, for 11n association, use
434 * the chainmask configuration.
435 */
436static void ath_update_chainmask(struct ath_softc *sc, int is_ht)
437{
438 sc->sc_flags |= SC_OP_CHAINMASK_UPDATE;
439 if (is_ht) {
440 sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask;
441 sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask;
442 } else {
443 sc->sc_tx_chainmask = 1;
444 sc->sc_rx_chainmask = 1;
445 }
446
Sujith04bd4632008-11-28 22:18:05 +0530447 DPRINTF(sc, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n",
448 sc->sc_tx_chainmask, sc->sc_rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530449}
450
451static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
452{
453 struct ath_node *an;
454
455 an = (struct ath_node *)sta->drv_priv;
456
457 if (sc->sc_flags & SC_OP_TXAGGR)
458 ath_tx_node_init(sc, an);
459
460 an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR +
461 sta->ht_cap.ampdu_factor);
462 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
463}
464
465static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
466{
467 struct ath_node *an = (struct ath_node *)sta->drv_priv;
468
469 if (sc->sc_flags & SC_OP_TXAGGR)
470 ath_tx_node_cleanup(sc, an);
471}
472
473static void ath9k_tasklet(unsigned long data)
474{
475 struct ath_softc *sc = (struct ath_softc *)data;
476 u32 status = sc->sc_intrstatus;
477
478 if (status & ATH9K_INT_FATAL) {
479 /* need a chip reset */
480 ath_reset(sc, false);
481 return;
482 } else {
483
484 if (status &
485 (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
486 spin_lock_bh(&sc->sc_rxflushlock);
487 ath_rx_tasklet(sc, 0);
488 spin_unlock_bh(&sc->sc_rxflushlock);
489 }
490 /* XXX: optimize this */
491 if (status & ATH9K_INT_TX)
492 ath_tx_tasklet(sc);
493 }
494
495 /* re-enable hardware interrupt */
496 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
497}
498
499static irqreturn_t ath_isr(int irq, void *dev)
500{
501 struct ath_softc *sc = dev;
502 struct ath_hal *ah = sc->sc_ah;
503 enum ath9k_int status;
504 bool sched = false;
505
506 do {
507 if (sc->sc_flags & SC_OP_INVALID) {
508 /*
509 * The hardware is not ready/present, don't
510 * touch anything. Note this can happen early
511 * on if the IRQ is shared.
512 */
513 return IRQ_NONE;
514 }
515 if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */
516 return IRQ_NONE;
517 }
518
519 /*
520 * Figure out the reason(s) for the interrupt. Note
521 * that the hal returns a pseudo-ISR that may include
522 * bits we haven't explicitly enabled so we mask the
523 * value to insure we only process bits we requested.
524 */
525 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
526
527 status &= sc->sc_imask; /* discard unasked-for bits */
528
529 /*
530 * If there are no status bits set, then this interrupt was not
531 * for me (should have been caught above).
532 */
533 if (!status)
534 return IRQ_NONE;
535
536 sc->sc_intrstatus = status;
537
538 if (status & ATH9K_INT_FATAL) {
539 /* need a chip reset */
540 sched = true;
541 } else if (status & ATH9K_INT_RXORN) {
542 /* need a chip reset */
543 sched = true;
544 } else {
545 if (status & ATH9K_INT_SWBA) {
546 /* schedule a tasklet for beacon handling */
547 tasklet_schedule(&sc->bcon_tasklet);
548 }
549 if (status & ATH9K_INT_RXEOL) {
550 /*
551 * NB: the hardware should re-read the link when
552 * RXE bit is written, but it doesn't work
553 * at least on older hardware revs.
554 */
555 sched = true;
556 }
557
558 if (status & ATH9K_INT_TXURN)
559 /* bump tx trigger level */
560 ath9k_hw_updatetxtriglevel(ah, true);
561 /* XXX: optimize this */
562 if (status & ATH9K_INT_RX)
563 sched = true;
564 if (status & ATH9K_INT_TX)
565 sched = true;
566 if (status & ATH9K_INT_BMISS)
567 sched = true;
568 /* carrier sense timeout */
569 if (status & ATH9K_INT_CST)
570 sched = true;
571 if (status & ATH9K_INT_MIB) {
572 /*
573 * Disable interrupts until we service the MIB
574 * interrupt; otherwise it will continue to
575 * fire.
576 */
577 ath9k_hw_set_interrupts(ah, 0);
578 /*
579 * Let the hal handle the event. We assume
580 * it will clear whatever condition caused
581 * the interrupt.
582 */
583 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
584 ath9k_hw_set_interrupts(ah, sc->sc_imask);
585 }
586 if (status & ATH9K_INT_TIM_TIMER) {
587 if (!(ah->ah_caps.hw_caps &
588 ATH9K_HW_CAP_AUTOSLEEP)) {
589 /* Clear RxAbort bit so that we can
590 * receive frames */
591 ath9k_hw_setrxabort(ah, 0);
592 sched = true;
593 }
594 }
595 }
596 } while (0);
597
598 if (sched) {
599 /* turn off every interrupt except SWBA */
600 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
601 tasklet_schedule(&sc->intr_tq);
602 }
603
604 return IRQ_HANDLED;
605}
606
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700607static int ath_get_channel(struct ath_softc *sc,
608 struct ieee80211_channel *chan)
609{
610 int i;
611
612 for (i = 0; i < sc->sc_ah->ah_nchan; i++) {
613 if (sc->sc_ah->ah_channels[i].channel == chan->center_freq)
614 return i;
615 }
616
617 return -1;
618}
619
Sujithe11602b2008-11-27 09:46:27 +0530620/* ext_chan_offset: (-1, 0, 1) (below, none, above) */
621
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700622static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530623 struct ieee80211_channel *chan,
Sujithe11602b2008-11-27 09:46:27 +0530624 int ext_chan_offset,
625 enum ath9k_ht_macmode tx_chan_width)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700626{
627 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700628
629 switch (chan->band) {
630 case IEEE80211_BAND_2GHZ:
Sujithe11602b2008-11-27 09:46:27 +0530631 if ((ext_chan_offset == 0) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700632 (tx_chan_width == ATH9K_HT_MACMODE_20))
633 chanmode = CHANNEL_G_HT20;
Sujithe11602b2008-11-27 09:46:27 +0530634 if ((ext_chan_offset == 1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700635 (tx_chan_width == ATH9K_HT_MACMODE_2040))
636 chanmode = CHANNEL_G_HT40PLUS;
Sujithe11602b2008-11-27 09:46:27 +0530637 if ((ext_chan_offset == -1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700638 (tx_chan_width == ATH9K_HT_MACMODE_2040))
639 chanmode = CHANNEL_G_HT40MINUS;
640 break;
641 case IEEE80211_BAND_5GHZ:
Sujithe11602b2008-11-27 09:46:27 +0530642 if ((ext_chan_offset == 0) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700643 (tx_chan_width == ATH9K_HT_MACMODE_20))
644 chanmode = CHANNEL_A_HT20;
Sujithe11602b2008-11-27 09:46:27 +0530645 if ((ext_chan_offset == 1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700646 (tx_chan_width == ATH9K_HT_MACMODE_2040))
647 chanmode = CHANNEL_A_HT40PLUS;
Sujithe11602b2008-11-27 09:46:27 +0530648 if ((ext_chan_offset == -1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649 (tx_chan_width == ATH9K_HT_MACMODE_2040))
650 chanmode = CHANNEL_A_HT40MINUS;
651 break;
652 default:
653 break;
654 }
655
656 return chanmode;
657}
658
Sujithff37e332008-11-24 12:07:55 +0530659static void ath_key_reset(struct ath_softc *sc, u16 keyix, int freeslot)
660{
661 ath9k_hw_keyreset(sc->sc_ah, keyix);
662 if (freeslot)
663 clear_bit(keyix, sc->sc_keymap);
664}
665
666static int ath_keyset(struct ath_softc *sc, u16 keyix,
667 struct ath9k_keyval *hk, const u8 mac[ETH_ALEN])
668{
669 bool status;
670
671 status = ath9k_hw_set_keycache_entry(sc->sc_ah,
672 keyix, hk, mac, false);
673
674 return status != false;
675}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700676
677static int ath_setkey_tkip(struct ath_softc *sc,
678 struct ieee80211_key_conf *key,
679 struct ath9k_keyval *hk,
680 const u8 *addr)
681{
682 u8 *key_rxmic = NULL;
683 u8 *key_txmic = NULL;
684
685 key_txmic = key->key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
686 key_rxmic = key->key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
687
688 if (addr == NULL) {
689 /* Group key installation */
690 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
691 return ath_keyset(sc, key->keyidx, hk, addr);
692 }
693 if (!sc->sc_splitmic) {
694 /*
695 * data key goes at first index,
696 * the hal handles the MIC keys at index+64.
697 */
698 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
699 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
700 return ath_keyset(sc, key->keyidx, hk, addr);
701 }
702 /*
703 * TX key goes at first index, RX key at +32.
704 * The hal handles the MIC keys at index+64.
705 */
706 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
707 if (!ath_keyset(sc, key->keyidx, hk, NULL)) {
708 /* Txmic entry failed. No need to proceed further */
709 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +0530710 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700711 return 0;
712 }
713
714 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
715 /* XXX delete tx key on failure? */
716 return ath_keyset(sc, key->keyidx+32, hk, addr);
717}
718
719static int ath_key_config(struct ath_softc *sc,
720 const u8 *addr,
721 struct ieee80211_key_conf *key)
722{
723 struct ieee80211_vif *vif;
724 struct ath9k_keyval hk;
725 const u8 *mac = NULL;
726 int ret = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200727 enum nl80211_iftype opmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700728
729 memset(&hk, 0, sizeof(hk));
730
731 switch (key->alg) {
732 case ALG_WEP:
733 hk.kv_type = ATH9K_CIPHER_WEP;
734 break;
735 case ALG_TKIP:
736 hk.kv_type = ATH9K_CIPHER_TKIP;
737 break;
738 case ALG_CCMP:
739 hk.kv_type = ATH9K_CIPHER_AES_CCM;
740 break;
741 default:
742 return -EINVAL;
743 }
744
745 hk.kv_len = key->keylen;
746 memcpy(hk.kv_val, key->key, key->keylen);
747
748 if (!sc->sc_vaps[0])
749 return -EIO;
750
Sujith5640b082008-10-29 10:16:06 +0530751 vif = sc->sc_vaps[0];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700752 opmode = vif->type;
753
754 /*
755 * Strategy:
756 * For _M_STA mc tx, we will not setup a key at all since we never
757 * tx mc.
758 * _M_STA mc rx, we will use the keyID.
759 * for _M_IBSS mc tx, we will use the keyID, and no macaddr.
760 * for _M_IBSS mc rx, we will alloc a slot and plumb the mac of the
761 * peer node. BUT we will plumb a cleartext key so that we can do
762 * perSta default key table lookup in software.
763 */
764 if (is_broadcast_ether_addr(addr)) {
765 switch (opmode) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200766 case NL80211_IFTYPE_STATION:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700767 /* default key: could be group WPA key
768 * or could be static WEP key */
769 mac = NULL;
770 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200771 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700772 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200773 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700774 break;
775 default:
776 ASSERT(0);
777 break;
778 }
779 } else {
780 mac = addr;
781 }
782
783 if (key->alg == ALG_TKIP)
784 ret = ath_setkey_tkip(sc, key, &hk, mac);
785 else
786 ret = ath_keyset(sc, key->keyidx, &hk, mac);
787
788 if (!ret)
789 return -EIO;
790
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700791 return 0;
792}
793
794static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
795{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700796 int freeslot;
797
Sujithff9b6622008-08-14 13:27:16 +0530798 freeslot = (key->keyidx >= 4) ? 1 : 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700799 ath_key_reset(sc, key->keyidx, freeslot);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700800}
801
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200802static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803{
Sujith60653672008-08-14 13:28:02 +0530804#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
805#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200807 ht_info->ht_supported = true;
808 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
809 IEEE80211_HT_CAP_SM_PS |
810 IEEE80211_HT_CAP_SGI_40 |
811 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700812
Sujith60653672008-08-14 13:28:02 +0530813 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
814 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200815 /* set up supported mcs set */
816 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
817 ht_info->mcs.rx_mask[0] = 0xff;
818 ht_info->mcs.rx_mask[1] = 0xff;
819 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700820}
821
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530822static void ath9k_ht_conf(struct ath_softc *sc,
823 struct ieee80211_bss_conf *bss_conf)
824{
Johannes Bergae5eb022008-10-14 16:58:37 +0200825 if (sc->hw->conf.ht.enabled) {
Johannes Bergae5eb022008-10-14 16:58:37 +0200826 if (bss_conf->ht.width_40_ok)
Sujith99405f92008-11-24 12:08:35 +0530827 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530828 else
Sujith99405f92008-11-24 12:08:35 +0530829 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530830
Sujith99405f92008-11-24 12:08:35 +0530831 ath9k_hw_set11nmac2040(sc->sc_ah, sc->tx_chan_width);
832
833 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +0530834 "BSS Changed HT, chanwidth: %d\n", sc->tx_chan_width);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530835 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530836}
837
Sujithe11602b2008-11-27 09:46:27 +0530838static inline int ath_sec_offset(u8 ext_offset)
839{
840 if (ext_offset == IEEE80211_HT_PARAM_CHA_SEC_NONE)
841 return 0;
842 else if (ext_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
843 return 1;
844 else if (ext_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
845 return -1;
846
847 return 0;
848}
849
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530850static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530851 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530852 struct ieee80211_bss_conf *bss_conf)
853{
854 struct ieee80211_hw *hw = sc->hw;
855 struct ieee80211_channel *curchan = hw->conf.channel;
Sujith5640b082008-10-29 10:16:06 +0530856 struct ath_vap *avp = (void *)vif->drv_priv;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530857 int pos;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530858
859 if (bss_conf->assoc) {
Sujith04bd4632008-11-28 22:18:05 +0530860 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d\n", bss_conf->aid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530861
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530862 /* New association, store aid */
863 if (avp->av_opmode == ATH9K_M_STA) {
864 sc->sc_curaid = bss_conf->aid;
865 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
866 sc->sc_curaid);
867 }
868
869 /* Configure the beacon */
870 ath_beacon_config(sc, 0);
871 sc->sc_flags |= SC_OP_BEACONS;
872
873 /* Reset rssi stats */
874 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
875 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
876 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
877 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
878
879 /* Update chainmask */
Johannes Bergae5eb022008-10-14 16:58:37 +0200880 ath_update_chainmask(sc, hw->conf.ht.enabled);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530881
882 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +0530883 "bssid %pM aid 0x%x\n",
Johannes Berge1749612008-10-27 15:59:26 -0700884 sc->sc_curbssid, sc->sc_curaid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530885
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530886 pos = ath_get_channel(sc, curchan);
887 if (pos == -1) {
888 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530889 "Invalid channel: %d\n", curchan->center_freq);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530890 return;
891 }
892
Sujith99405f92008-11-24 12:08:35 +0530893 if (hw->conf.ht.enabled) {
Sujithe11602b2008-11-27 09:46:27 +0530894 int offset =
895 ath_sec_offset(bss_conf->ht.secondary_channel_offset);
896 sc->tx_chan_width = (bss_conf->ht.width_40_ok) ?
897 ATH9K_HT_MACMODE_2040 : ATH9K_HT_MACMODE_20;
Sujith99405f92008-11-24 12:08:35 +0530898
Sujithe11602b2008-11-27 09:46:27 +0530899 sc->sc_ah->ah_channels[pos].chanmode =
900 ath_get_extchanmode(sc, curchan,
901 offset, sc->tx_chan_width);
Sujith99405f92008-11-24 12:08:35 +0530902 } else {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530903 sc->sc_ah->ah_channels[pos].chanmode =
904 (curchan->band == IEEE80211_BAND_2GHZ) ?
905 CHANNEL_G : CHANNEL_A;
Sujith99405f92008-11-24 12:08:35 +0530906 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530907
908 /* set h/w channel */
909 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0)
Sujith04bd4632008-11-28 22:18:05 +0530910 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel: %d\n",
911 curchan->center_freq);
912
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700913 /* Start ANI */
914 mod_timer(&sc->sc_ani.timer,
915 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
916
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530917 } else {
Sujith04bd4632008-11-28 22:18:05 +0530918 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530919 sc->sc_curaid = 0;
920 }
921}
922
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530923/********************************/
924/* LED functions */
925/********************************/
926
927static void ath_led_brightness(struct led_classdev *led_cdev,
928 enum led_brightness brightness)
929{
930 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
931 struct ath_softc *sc = led->sc;
932
933 switch (brightness) {
934 case LED_OFF:
935 if (led->led_type == ATH_LED_ASSOC ||
936 led->led_type == ATH_LED_RADIO)
937 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
938 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
939 (led->led_type == ATH_LED_RADIO) ? 1 :
940 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
941 break;
942 case LED_FULL:
943 if (led->led_type == ATH_LED_ASSOC)
944 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
945 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
946 break;
947 default:
948 break;
949 }
950}
951
952static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
953 char *trigger)
954{
955 int ret;
956
957 led->sc = sc;
958 led->led_cdev.name = led->name;
959 led->led_cdev.default_trigger = trigger;
960 led->led_cdev.brightness_set = ath_led_brightness;
961
962 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
963 if (ret)
964 DPRINTF(sc, ATH_DBG_FATAL,
965 "Failed to register led:%s", led->name);
966 else
967 led->registered = 1;
968 return ret;
969}
970
971static void ath_unregister_led(struct ath_led *led)
972{
973 if (led->registered) {
974 led_classdev_unregister(&led->led_cdev);
975 led->registered = 0;
976 }
977}
978
979static void ath_deinit_leds(struct ath_softc *sc)
980{
981 ath_unregister_led(&sc->assoc_led);
982 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
983 ath_unregister_led(&sc->tx_led);
984 ath_unregister_led(&sc->rx_led);
985 ath_unregister_led(&sc->radio_led);
986 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
987}
988
989static void ath_init_leds(struct ath_softc *sc)
990{
991 char *trigger;
992 int ret;
993
994 /* Configure gpio 1 for output */
995 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
996 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
997 /* LED off, active low */
998 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
999
1000 trigger = ieee80211_get_radio_led_name(sc->hw);
1001 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
1002 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
1003 ret = ath_register_led(sc, &sc->radio_led, trigger);
1004 sc->radio_led.led_type = ATH_LED_RADIO;
1005 if (ret)
1006 goto fail;
1007
1008 trigger = ieee80211_get_assoc_led_name(sc->hw);
1009 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
1010 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
1011 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1012 sc->assoc_led.led_type = ATH_LED_ASSOC;
1013 if (ret)
1014 goto fail;
1015
1016 trigger = ieee80211_get_tx_led_name(sc->hw);
1017 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
1018 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
1019 ret = ath_register_led(sc, &sc->tx_led, trigger);
1020 sc->tx_led.led_type = ATH_LED_TX;
1021 if (ret)
1022 goto fail;
1023
1024 trigger = ieee80211_get_rx_led_name(sc->hw);
1025 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
1026 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
1027 ret = ath_register_led(sc, &sc->rx_led, trigger);
1028 sc->rx_led.led_type = ATH_LED_RX;
1029 if (ret)
1030 goto fail;
1031
1032 return;
1033
1034fail:
1035 ath_deinit_leds(sc);
1036}
1037
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301038#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301039
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301040/*******************/
1041/* Rfkill */
1042/*******************/
1043
1044static void ath_radio_enable(struct ath_softc *sc)
1045{
1046 struct ath_hal *ah = sc->sc_ah;
1047 int status;
1048
1049 spin_lock_bh(&sc->sc_resetlock);
1050 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301051 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301052 sc->sc_tx_chainmask,
1053 sc->sc_rx_chainmask,
1054 sc->sc_ht_extprotspacing,
1055 false, &status)) {
1056 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301057 "Unable to reset channel %u (%uMhz) "
1058 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301059 ath9k_hw_mhz2ieee(ah,
1060 ah->ah_curchan->channel,
1061 ah->ah_curchan->channelFlags),
1062 ah->ah_curchan->channel,
1063 ah->ah_curchan->channelFlags, status);
1064 }
1065 spin_unlock_bh(&sc->sc_resetlock);
1066
1067 ath_update_txpow(sc);
1068 if (ath_startrecv(sc) != 0) {
1069 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301070 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301071 return;
1072 }
1073
1074 if (sc->sc_flags & SC_OP_BEACONS)
1075 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1076
1077 /* Re-Enable interrupts */
1078 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1079
1080 /* Enable LED */
1081 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
1082 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1083 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
1084
1085 ieee80211_wake_queues(sc->hw);
1086}
1087
1088static void ath_radio_disable(struct ath_softc *sc)
1089{
1090 struct ath_hal *ah = sc->sc_ah;
1091 int status;
1092
1093
1094 ieee80211_stop_queues(sc->hw);
1095
1096 /* Disable LED */
1097 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
1098 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
1099
1100 /* Disable interrupts */
1101 ath9k_hw_set_interrupts(ah, 0);
1102
1103 ath_draintxq(sc, false); /* clear pending tx frames */
1104 ath_stoprecv(sc); /* turn off frame recv */
1105 ath_flushrecv(sc); /* flush recv queue */
1106
1107 spin_lock_bh(&sc->sc_resetlock);
1108 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301109 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301110 sc->sc_tx_chainmask,
1111 sc->sc_rx_chainmask,
1112 sc->sc_ht_extprotspacing,
1113 false, &status)) {
1114 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301115 "Unable to reset channel %u (%uMhz) "
1116 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301117 ath9k_hw_mhz2ieee(ah,
1118 ah->ah_curchan->channel,
1119 ah->ah_curchan->channelFlags),
1120 ah->ah_curchan->channel,
1121 ah->ah_curchan->channelFlags, status);
1122 }
1123 spin_unlock_bh(&sc->sc_resetlock);
1124
1125 ath9k_hw_phy_disable(ah);
1126 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1127}
1128
1129static bool ath_is_rfkill_set(struct ath_softc *sc)
1130{
1131 struct ath_hal *ah = sc->sc_ah;
1132
1133 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
1134 ah->ah_rfkill_polarity;
1135}
1136
1137/* h/w rfkill poll function */
1138static void ath_rfkill_poll(struct work_struct *work)
1139{
1140 struct ath_softc *sc = container_of(work, struct ath_softc,
1141 rf_kill.rfkill_poll.work);
1142 bool radio_on;
1143
1144 if (sc->sc_flags & SC_OP_INVALID)
1145 return;
1146
1147 radio_on = !ath_is_rfkill_set(sc);
1148
1149 /*
1150 * enable/disable radio only when there is a
1151 * state change in RF switch
1152 */
1153 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
1154 enum rfkill_state state;
1155
1156 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
1157 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
1158 : RFKILL_STATE_HARD_BLOCKED;
1159 } else if (radio_on) {
1160 ath_radio_enable(sc);
1161 state = RFKILL_STATE_UNBLOCKED;
1162 } else {
1163 ath_radio_disable(sc);
1164 state = RFKILL_STATE_HARD_BLOCKED;
1165 }
1166
1167 if (state == RFKILL_STATE_HARD_BLOCKED)
1168 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
1169 else
1170 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
1171
1172 rfkill_force_state(sc->rf_kill.rfkill, state);
1173 }
1174
1175 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
1176 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
1177}
1178
1179/* s/w rfkill handler */
1180static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
1181{
1182 struct ath_softc *sc = data;
1183
1184 switch (state) {
1185 case RFKILL_STATE_SOFT_BLOCKED:
1186 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
1187 SC_OP_RFKILL_SW_BLOCKED)))
1188 ath_radio_disable(sc);
1189 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
1190 return 0;
1191 case RFKILL_STATE_UNBLOCKED:
1192 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
1193 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
1194 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
1195 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
Sujith04bd4632008-11-28 22:18:05 +05301196 "radio as it is disabled by h/w\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301197 return -EPERM;
1198 }
1199 ath_radio_enable(sc);
1200 }
1201 return 0;
1202 default:
1203 return -EINVAL;
1204 }
1205}
1206
1207/* Init s/w rfkill */
1208static int ath_init_sw_rfkill(struct ath_softc *sc)
1209{
1210 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
1211 RFKILL_TYPE_WLAN);
1212 if (!sc->rf_kill.rfkill) {
1213 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
1214 return -ENOMEM;
1215 }
1216
1217 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
1218 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
1219 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
1220 sc->rf_kill.rfkill->data = sc;
1221 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
1222 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
1223 sc->rf_kill.rfkill->user_claim_unsupported = 1;
1224
1225 return 0;
1226}
1227
1228/* Deinitialize rfkill */
1229static void ath_deinit_rfkill(struct ath_softc *sc)
1230{
1231 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1232 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1233
1234 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
1235 rfkill_unregister(sc->rf_kill.rfkill);
1236 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
1237 sc->rf_kill.rfkill = NULL;
1238 }
1239}
Sujith9c84b792008-10-29 10:17:13 +05301240
1241static int ath_start_rfkill_poll(struct ath_softc *sc)
1242{
1243 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1244 queue_delayed_work(sc->hw->workqueue,
1245 &sc->rf_kill.rfkill_poll, 0);
1246
1247 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1248 if (rfkill_register(sc->rf_kill.rfkill)) {
1249 DPRINTF(sc, ATH_DBG_FATAL,
1250 "Unable to register rfkill\n");
1251 rfkill_free(sc->rf_kill.rfkill);
1252
1253 /* Deinitialize the device */
Senthil Balasubramanian306efdd2008-11-13 18:00:37 +05301254 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05301255 if (sc->pdev->irq)
1256 free_irq(sc->pdev->irq, sc);
Sujith9c84b792008-10-29 10:17:13 +05301257 pci_iounmap(sc->pdev, sc->mem);
1258 pci_release_region(sc->pdev, 0);
1259 pci_disable_device(sc->pdev);
Sujith9757d552008-11-04 18:25:27 +05301260 ieee80211_free_hw(sc->hw);
Sujith9c84b792008-10-29 10:17:13 +05301261 return -EIO;
1262 } else {
1263 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1264 }
1265 }
1266
1267 return 0;
1268}
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301269#endif /* CONFIG_RFKILL */
1270
Sujith9c84b792008-10-29 10:17:13 +05301271static void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301272{
1273 struct ieee80211_hw *hw = sc->hw;
Sujith9c84b792008-10-29 10:17:13 +05301274 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301275
Sujith04bd4632008-11-28 22:18:05 +05301276 DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301277
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301278#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301279 ath_deinit_rfkill(sc);
1280#endif
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301281 ath_deinit_leds(sc);
1282
1283 ieee80211_unregister_hw(hw);
1284
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301285 ath_rate_control_unregister();
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301286
1287 ath_rx_cleanup(sc);
1288 ath_tx_cleanup(sc);
1289
Sujith9c84b792008-10-29 10:17:13 +05301290 tasklet_kill(&sc->intr_tq);
1291 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301292
Sujith9c84b792008-10-29 10:17:13 +05301293 if (!(sc->sc_flags & SC_OP_INVALID))
1294 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301295
Sujith9c84b792008-10-29 10:17:13 +05301296 /* cleanup tx queues */
1297 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1298 if (ATH_TXQ_SETUP(sc, i))
1299 ath_tx_cleanupq(sc, &sc->sc_txq[i]);
1300
1301 ath9k_hw_detach(sc->sc_ah);
Sujith826d2682008-11-28 22:20:23 +05301302 ath9k_exit_debug(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301303}
1304
Sujithff37e332008-11-24 12:07:55 +05301305static int ath_init(u16 devid, struct ath_softc *sc)
1306{
1307 struct ath_hal *ah = NULL;
1308 int status;
1309 int error = 0, i;
1310 int csz = 0;
1311
1312 /* XXX: hardware will not be ready until ath_open() being called */
1313 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301314
Sujith826d2682008-11-28 22:20:23 +05301315 if (ath9k_init_debug(sc) < 0)
1316 printk(KERN_ERR "Unable to create debugfs files\n");
Sujithff37e332008-11-24 12:07:55 +05301317
1318 spin_lock_init(&sc->sc_resetlock);
1319 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1320 tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1321 (unsigned long)sc);
1322
1323 /*
1324 * Cache line size is used to size and align various
1325 * structures used to communicate with the hardware.
1326 */
1327 bus_read_cachesize(sc, &csz);
1328 /* XXX assert csz is non-zero */
1329 sc->sc_cachelsz = csz << 2; /* convert to bytes */
1330
1331 ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1332 if (ah == NULL) {
1333 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301334 "Unable to attach hardware; HAL status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301335 error = -ENXIO;
1336 goto bad;
1337 }
1338 sc->sc_ah = ah;
1339
1340 /* Get the hardware key cache size. */
1341 sc->sc_keymax = ah->ah_caps.keycache_size;
1342 if (sc->sc_keymax > ATH_KEYMAX) {
1343 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05301344 "Warning, using only %u entries in %u key cache\n",
1345 ATH_KEYMAX, sc->sc_keymax);
Sujithff37e332008-11-24 12:07:55 +05301346 sc->sc_keymax = ATH_KEYMAX;
1347 }
1348
1349 /*
1350 * Reset the key cache since some parts do not
1351 * reset the contents on initial power up.
1352 */
1353 for (i = 0; i < sc->sc_keymax; i++)
1354 ath9k_hw_keyreset(ah, (u16) i);
1355 /*
1356 * Mark key cache slots associated with global keys
1357 * as in use. If we knew TKIP was not to be used we
1358 * could leave the +32, +64, and +32+64 slots free.
1359 * XXX only for splitmic.
1360 */
1361 for (i = 0; i < IEEE80211_WEP_NKID; i++) {
1362 set_bit(i, sc->sc_keymap);
1363 set_bit(i + 32, sc->sc_keymap);
1364 set_bit(i + 64, sc->sc_keymap);
1365 set_bit(i + 32 + 64, sc->sc_keymap);
1366 }
1367
1368 /* Collect the channel list using the default country code */
1369
1370 error = ath_setup_channels(sc);
1371 if (error)
1372 goto bad;
1373
1374 /* default to MONITOR mode */
1375 sc->sc_ah->ah_opmode = ATH9K_M_MONITOR;
1376
1377 /* Setup rate tables */
1378
1379 ath_rate_attach(sc);
1380 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1381 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1382
1383 /*
1384 * Allocate hardware transmit queues: one queue for
1385 * beacon frames and one data queue for each QoS
1386 * priority. Note that the hal handles reseting
1387 * these queues at the needed time.
1388 */
1389 sc->sc_bhalq = ath_beaconq_setup(ah);
1390 if (sc->sc_bhalq == -1) {
1391 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301392 "Unable to setup a beacon xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301393 error = -EIO;
1394 goto bad2;
1395 }
1396 sc->sc_cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1397 if (sc->sc_cabq == NULL) {
1398 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301399 "Unable to setup CAB xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301400 error = -EIO;
1401 goto bad2;
1402 }
1403
1404 sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1405 ath_cabq_update(sc);
1406
1407 for (i = 0; i < ARRAY_SIZE(sc->sc_haltype2q); i++)
1408 sc->sc_haltype2q[i] = -1;
1409
1410 /* Setup data queues */
1411 /* NB: ensure BK queue is the lowest priority h/w queue */
1412 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1413 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301414 "Unable to setup xmit queue for BK traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301415 error = -EIO;
1416 goto bad2;
1417 }
1418
1419 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1420 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301421 "Unable to setup xmit queue for BE traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301422 error = -EIO;
1423 goto bad2;
1424 }
1425 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1426 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301427 "Unable to setup xmit queue for VI traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301428 error = -EIO;
1429 goto bad2;
1430 }
1431 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1432 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301433 "Unable to setup xmit queue for VO traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301434 error = -EIO;
1435 goto bad2;
1436 }
1437
1438 /* Initializes the noise floor to a reasonable default value.
1439 * Later on this will be updated during ANI processing. */
1440
1441 sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1442 setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc);
1443
1444 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1445 ATH9K_CIPHER_TKIP, NULL)) {
1446 /*
1447 * Whether we should enable h/w TKIP MIC.
1448 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1449 * report WMM capable, so it's always safe to turn on
1450 * TKIP MIC in this case.
1451 */
1452 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1453 0, 1, NULL);
1454 }
1455
1456 /*
1457 * Check whether the separate key cache entries
1458 * are required to handle both tx+rx MIC keys.
1459 * With split mic keys the number of stations is limited
1460 * to 27 otherwise 59.
1461 */
1462 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1463 ATH9K_CIPHER_TKIP, NULL)
1464 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1465 ATH9K_CIPHER_MIC, NULL)
1466 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1467 0, NULL))
1468 sc->sc_splitmic = 1;
1469
1470 /* turn on mcast key search if possible */
1471 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1472 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1473 1, NULL);
1474
1475 sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1476 sc->sc_config.txpowlimit_override = 0;
1477
1478 /* 11n Capabilities */
1479 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1480 sc->sc_flags |= SC_OP_TXAGGR;
1481 sc->sc_flags |= SC_OP_RXAGGR;
1482 }
1483
1484 sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1485 sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1486
1487 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
1488 sc->sc_defant = ath9k_hw_getdefantenna(ah);
1489
1490 ath9k_hw_getmac(ah, sc->sc_myaddr);
1491 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1492 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1493 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1494 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1495 }
1496
1497 sc->sc_slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
1498
1499 /* initialize beacon slots */
1500 for (i = 0; i < ARRAY_SIZE(sc->sc_bslot); i++)
1501 sc->sc_bslot[i] = ATH_IF_ID_ANY;
1502
1503 /* save MISC configurations */
1504 sc->sc_config.swBeaconProcess = 1;
1505
1506#ifdef CONFIG_SLOW_ANT_DIV
1507 /* range is 40 - 255, we use something in the middle */
1508 ath_slow_ant_div_init(&sc->sc_antdiv, sc, 0x127);
1509#endif
1510
1511 /* setup channels and rates */
1512
1513 sc->sbands[IEEE80211_BAND_2GHZ].channels =
1514 sc->channels[IEEE80211_BAND_2GHZ];
1515 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1516 sc->rates[IEEE80211_BAND_2GHZ];
1517 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
1518
1519 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
1520 sc->sbands[IEEE80211_BAND_5GHZ].channels =
1521 sc->channels[IEEE80211_BAND_5GHZ];
1522 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1523 sc->rates[IEEE80211_BAND_5GHZ];
1524 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
1525 }
1526
1527 return 0;
1528bad2:
1529 /* cleanup tx queues */
1530 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1531 if (ATH_TXQ_SETUP(sc, i))
1532 ath_tx_cleanupq(sc, &sc->sc_txq[i]);
1533bad:
1534 if (ah)
1535 ath9k_hw_detach(ah);
1536
1537 return error;
1538}
1539
Sujith9c84b792008-10-29 10:17:13 +05301540static int ath_attach(u16 devid, struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301541{
1542 struct ieee80211_hw *hw = sc->hw;
1543 int error = 0;
1544
Sujith04bd4632008-11-28 22:18:05 +05301545 DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301546
1547 error = ath_init(devid, sc);
1548 if (error != 0)
1549 return error;
1550
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301551 /* get mac address from hardware and set in mac80211 */
1552
1553 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
1554
Sujith9c84b792008-10-29 10:17:13 +05301555 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1556 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1557 IEEE80211_HW_SIGNAL_DBM |
1558 IEEE80211_HW_AMPDU_AGGREGATION;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301559
Sujith9c84b792008-10-29 10:17:13 +05301560 hw->wiphy->interface_modes =
1561 BIT(NL80211_IFTYPE_AP) |
1562 BIT(NL80211_IFTYPE_STATION) |
1563 BIT(NL80211_IFTYPE_ADHOC);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301564
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301565 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301566 hw->max_rates = 4;
1567 hw->max_rate_tries = ATH_11N_TXMAXTRY;
Sujith528f0c62008-10-29 10:14:26 +05301568 hw->sta_data_size = sizeof(struct ath_node);
Sujith5640b082008-10-29 10:16:06 +05301569 hw->vif_data_size = sizeof(struct ath_vap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301570
1571 /* Register rate control */
1572 hw->rate_control_algorithm = "ath9k_rate_control";
1573 error = ath_rate_control_register();
1574 if (error != 0) {
1575 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301576 "Unable to register rate control algorithm: %d\n", error);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301577 ath_rate_control_unregister();
1578 goto bad;
1579 }
1580
Sujith9c84b792008-10-29 10:17:13 +05301581 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1582 setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
1583 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1584 setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
1585 }
1586
1587 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ];
1588 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1589 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1590 &sc->sbands[IEEE80211_BAND_5GHZ];
1591
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301592 /* initialize tx/rx engine */
1593 error = ath_tx_init(sc, ATH_TXBUF);
1594 if (error != 0)
1595 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301596
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301597 error = ath_rx_init(sc, ATH_RXBUF);
1598 if (error != 0)
1599 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301600
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301601#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301602 /* Initialze h/w Rfkill */
1603 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1604 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
1605
1606 /* Initialize s/w rfkill */
1607 if (ath_init_sw_rfkill(sc))
1608 goto detach;
1609#endif
1610
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301611 error = ieee80211_register_hw(hw);
1612 if (error != 0) {
1613 ath_rate_control_unregister();
1614 goto bad;
1615 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301616
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301617 /* Initialize LED control */
1618 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301619
1620 return 0;
1621detach:
1622 ath_detach(sc);
1623bad:
1624 return error;
1625}
1626
Sujithff37e332008-11-24 12:07:55 +05301627int ath_reset(struct ath_softc *sc, bool retry_tx)
1628{
1629 struct ath_hal *ah = sc->sc_ah;
1630 int status;
1631 int error = 0;
1632
1633 ath9k_hw_set_interrupts(ah, 0);
1634 ath_draintxq(sc, retry_tx);
1635 ath_stoprecv(sc);
1636 ath_flushrecv(sc);
1637
1638 spin_lock_bh(&sc->sc_resetlock);
1639 if (!ath9k_hw_reset(ah, sc->sc_ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301640 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301641 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1642 sc->sc_ht_extprotspacing, false, &status)) {
1643 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301644 "Unable to reset hardware; hal status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301645 error = -EIO;
1646 }
1647 spin_unlock_bh(&sc->sc_resetlock);
1648
1649 if (ath_startrecv(sc) != 0)
Sujith04bd4632008-11-28 22:18:05 +05301650 DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301651
1652 /*
1653 * We may be doing a reset in response to a request
1654 * that changes the channel so update any state that
1655 * might change as a result.
1656 */
1657 ath_setcurmode(sc, ath_chan2mode(sc->sc_ah->ah_curchan));
1658
1659 ath_update_txpow(sc);
1660
1661 if (sc->sc_flags & SC_OP_BEACONS)
1662 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1663
1664 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1665
1666 if (retry_tx) {
1667 int i;
1668 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1669 if (ATH_TXQ_SETUP(sc, i)) {
1670 spin_lock_bh(&sc->sc_txq[i].axq_lock);
1671 ath_txq_schedule(sc, &sc->sc_txq[i]);
1672 spin_unlock_bh(&sc->sc_txq[i].axq_lock);
1673 }
1674 }
1675 }
1676
1677 return error;
1678}
1679
1680/*
1681 * This function will allocate both the DMA descriptor structure, and the
1682 * buffers it contains. These are used to contain the descriptors used
1683 * by the system.
1684*/
1685int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1686 struct list_head *head, const char *name,
1687 int nbuf, int ndesc)
1688{
1689#define DS2PHYS(_dd, _ds) \
1690 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1691#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1692#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1693
1694 struct ath_desc *ds;
1695 struct ath_buf *bf;
1696 int i, bsize, error;
1697
Sujith04bd4632008-11-28 22:18:05 +05301698 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
1699 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301700
1701 /* ath_desc must be a multiple of DWORDs */
1702 if ((sizeof(struct ath_desc) % 4) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05301703 DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301704 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1705 error = -ENOMEM;
1706 goto fail;
1707 }
1708
1709 dd->dd_name = name;
1710 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1711
1712 /*
1713 * Need additional DMA memory because we can't use
1714 * descriptors that cross the 4K page boundary. Assume
1715 * one skipped descriptor per 4K page.
1716 */
1717 if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1718 u32 ndesc_skipped =
1719 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1720 u32 dma_len;
1721
1722 while (ndesc_skipped) {
1723 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1724 dd->dd_desc_len += dma_len;
1725
1726 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1727 };
1728 }
1729
1730 /* allocate descriptors */
1731 dd->dd_desc = pci_alloc_consistent(sc->pdev,
1732 dd->dd_desc_len,
1733 &dd->dd_desc_paddr);
1734 if (dd->dd_desc == NULL) {
1735 error = -ENOMEM;
1736 goto fail;
1737 }
1738 ds = dd->dd_desc;
Sujith04bd4632008-11-28 22:18:05 +05301739 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
1740 dd->dd_name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301741 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1742
1743 /* allocate buffers */
1744 bsize = sizeof(struct ath_buf) * nbuf;
1745 bf = kmalloc(bsize, GFP_KERNEL);
1746 if (bf == NULL) {
1747 error = -ENOMEM;
1748 goto fail2;
1749 }
1750 memset(bf, 0, bsize);
1751 dd->dd_bufptr = bf;
1752
1753 INIT_LIST_HEAD(head);
1754 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1755 bf->bf_desc = ds;
1756 bf->bf_daddr = DS2PHYS(dd, ds);
1757
1758 if (!(sc->sc_ah->ah_caps.hw_caps &
1759 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1760 /*
1761 * Skip descriptor addresses which can cause 4KB
1762 * boundary crossing (addr + length) with a 32 dword
1763 * descriptor fetch.
1764 */
1765 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1766 ASSERT((caddr_t) bf->bf_desc <
1767 ((caddr_t) dd->dd_desc +
1768 dd->dd_desc_len));
1769
1770 ds += ndesc;
1771 bf->bf_desc = ds;
1772 bf->bf_daddr = DS2PHYS(dd, ds);
1773 }
1774 }
1775 list_add_tail(&bf->list, head);
1776 }
1777 return 0;
1778fail2:
1779 pci_free_consistent(sc->pdev,
1780 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1781fail:
1782 memset(dd, 0, sizeof(*dd));
1783 return error;
1784#undef ATH_DESC_4KB_BOUND_CHECK
1785#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1786#undef DS2PHYS
1787}
1788
1789void ath_descdma_cleanup(struct ath_softc *sc,
1790 struct ath_descdma *dd,
1791 struct list_head *head)
1792{
1793 pci_free_consistent(sc->pdev,
1794 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1795
1796 INIT_LIST_HEAD(head);
1797 kfree(dd->dd_bufptr);
1798 memset(dd, 0, sizeof(*dd));
1799}
1800
1801int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1802{
1803 int qnum;
1804
1805 switch (queue) {
1806 case 0:
1807 qnum = sc->sc_haltype2q[ATH9K_WME_AC_VO];
1808 break;
1809 case 1:
1810 qnum = sc->sc_haltype2q[ATH9K_WME_AC_VI];
1811 break;
1812 case 2:
1813 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BE];
1814 break;
1815 case 3:
1816 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BK];
1817 break;
1818 default:
1819 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BE];
1820 break;
1821 }
1822
1823 return qnum;
1824}
1825
1826int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1827{
1828 int qnum;
1829
1830 switch (queue) {
1831 case ATH9K_WME_AC_VO:
1832 qnum = 0;
1833 break;
1834 case ATH9K_WME_AC_VI:
1835 qnum = 1;
1836 break;
1837 case ATH9K_WME_AC_BE:
1838 qnum = 2;
1839 break;
1840 case ATH9K_WME_AC_BK:
1841 qnum = 3;
1842 break;
1843 default:
1844 qnum = -1;
1845 break;
1846 }
1847
1848 return qnum;
1849}
1850
1851/**********************/
1852/* mac80211 callbacks */
1853/**********************/
1854
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001855static int ath9k_start(struct ieee80211_hw *hw)
1856{
1857 struct ath_softc *sc = hw->priv;
1858 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05301859 struct ath9k_channel *init_channel;
1860 int error = 0, pos, status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001861
Sujith04bd4632008-11-28 22:18:05 +05301862 DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with "
1863 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001864
1865 /* setup initial channel */
1866
1867 pos = ath_get_channel(sc, curchan);
1868 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05301869 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", curchan->center_freq);
Sujith9c84b792008-10-29 10:17:13 +05301870 error = -EINVAL;
Sujithff37e332008-11-24 12:07:55 +05301871 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001872 }
1873
Sujith99405f92008-11-24 12:08:35 +05301874 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001875 sc->sc_ah->ah_channels[pos].chanmode =
1876 (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A;
Sujithff37e332008-11-24 12:07:55 +05301877 init_channel = &sc->sc_ah->ah_channels[pos];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001878
Sujithff37e332008-11-24 12:07:55 +05301879 /* Reset SERDES registers */
1880 ath9k_hw_configpcipowersave(sc->sc_ah, 0);
1881
1882 /*
1883 * The basic interface to setting the hardware in a good
1884 * state is ``reset''. On return the hardware is known to
1885 * be powered up and with interrupts disabled. This must
1886 * be followed by initialization of the appropriate bits
1887 * and then setup of the interrupt mask.
1888 */
1889 spin_lock_bh(&sc->sc_resetlock);
1890 if (!ath9k_hw_reset(sc->sc_ah, init_channel,
Sujith99405f92008-11-24 12:08:35 +05301891 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301892 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1893 sc->sc_ht_extprotspacing, false, &status)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001894 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301895 "Unable to reset hardware; hal status %u "
1896 "(freq %u flags 0x%x)\n", status,
Sujithff37e332008-11-24 12:07:55 +05301897 init_channel->channel, init_channel->channelFlags);
1898 error = -EIO;
1899 spin_unlock_bh(&sc->sc_resetlock);
1900 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001901 }
Sujithff37e332008-11-24 12:07:55 +05301902 spin_unlock_bh(&sc->sc_resetlock);
1903
1904 /*
1905 * This is needed only to setup initial state
1906 * but it's best done after a reset.
1907 */
1908 ath_update_txpow(sc);
1909
1910 /*
1911 * Setup the hardware after reset:
1912 * The receive engine is set going.
1913 * Frame transmit is handled entirely
1914 * in the frame output path; there's nothing to do
1915 * here except setup the interrupt mask.
1916 */
1917 if (ath_startrecv(sc) != 0) {
1918 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301919 "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301920 error = -EIO;
1921 goto error;
1922 }
1923
1924 /* Setup our intr mask. */
1925 sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
1926 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
1927 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
1928
1929 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
1930 sc->sc_imask |= ATH9K_INT_GTT;
1931
1932 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
1933 sc->sc_imask |= ATH9K_INT_CST;
1934
1935 /*
1936 * Enable MIB interrupts when there are hardware phy counters.
1937 * Note we only do this (at the moment) for station mode.
1938 */
1939 if (ath9k_hw_phycounters(sc->sc_ah) &&
1940 ((sc->sc_ah->ah_opmode == ATH9K_M_STA) ||
1941 (sc->sc_ah->ah_opmode == ATH9K_M_IBSS)))
1942 sc->sc_imask |= ATH9K_INT_MIB;
1943 /*
1944 * Some hardware processes the TIM IE and fires an
1945 * interrupt when the TIM bit is set. For hardware
1946 * that does, if not overridden by configuration,
1947 * enable the TIM interrupt when operating as station.
1948 */
1949 if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
1950 (sc->sc_ah->ah_opmode == ATH9K_M_STA) &&
1951 !sc->sc_config.swBeaconProcess)
1952 sc->sc_imask |= ATH9K_INT_TIM;
1953
1954 ath_setcurmode(sc, ath_chan2mode(init_channel));
1955
1956 sc->sc_flags &= ~SC_OP_INVALID;
1957
1958 /* Disable BMISS interrupt when we're not associated */
1959 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1960 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1961
1962 ieee80211_wake_queues(sc->hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001963
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301964#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301965 error = ath_start_rfkill_poll(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301966#endif
1967
Sujithff37e332008-11-24 12:07:55 +05301968error:
Sujith9c84b792008-10-29 10:17:13 +05301969 return error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001970}
1971
1972static int ath9k_tx(struct ieee80211_hw *hw,
1973 struct sk_buff *skb)
1974{
Jouni Malinen147583c2008-08-11 14:01:50 +03001975 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Sujith528f0c62008-10-29 10:14:26 +05301976 struct ath_softc *sc = hw->priv;
1977 struct ath_tx_control txctl;
1978 int hdrlen, padsize;
1979
1980 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03001981
1982 /*
1983 * As a temporary workaround, assign seq# here; this will likely need
1984 * to be cleaned up to work better with Beacon transmission and virtual
1985 * BSSes.
1986 */
1987 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1988 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1989 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
1990 sc->seq_no += 0x10;
1991 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
1992 hdr->seq_ctrl |= cpu_to_le16(sc->seq_no);
1993 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001994
1995 /* Add the padding after the header if this is not already done */
1996 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1997 if (hdrlen & 3) {
1998 padsize = hdrlen % 4;
1999 if (skb_headroom(skb) < padsize)
2000 return -1;
2001 skb_push(skb, padsize);
2002 memmove(skb->data, skb->data + padsize, hdrlen);
2003 }
2004
Sujith528f0c62008-10-29 10:14:26 +05302005 /* Check if a tx queue is available */
2006
2007 txctl.txq = ath_test_get_txq(sc, skb);
2008 if (!txctl.txq)
2009 goto exit;
2010
Sujith04bd4632008-11-28 22:18:05 +05302011 DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002012
Sujith528f0c62008-10-29 10:14:26 +05302013 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd4632008-11-28 22:18:05 +05302014 DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05302015 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002016 }
2017
2018 return 0;
Sujith528f0c62008-10-29 10:14:26 +05302019exit:
2020 dev_kfree_skb_any(skb);
2021 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002022}
2023
2024static void ath9k_stop(struct ieee80211_hw *hw)
2025{
2026 struct ath_softc *sc = hw->priv;
Sujith9c84b792008-10-29 10:17:13 +05302027
2028 if (sc->sc_flags & SC_OP_INVALID) {
Sujith04bd4632008-11-28 22:18:05 +05302029 DPRINTF(sc, ATH_DBG_ANY, "Device not present\n");
Sujith9c84b792008-10-29 10:17:13 +05302030 return;
2031 }
2032
Sujith04bd4632008-11-28 22:18:05 +05302033 DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n");
Sujithff37e332008-11-24 12:07:55 +05302034
2035 ieee80211_stop_queues(sc->hw);
2036
2037 /* make sure h/w will not generate any interrupt
2038 * before setting the invalid flag. */
2039 ath9k_hw_set_interrupts(sc->sc_ah, 0);
2040
2041 if (!(sc->sc_flags & SC_OP_INVALID)) {
2042 ath_draintxq(sc, false);
2043 ath_stoprecv(sc);
2044 ath9k_hw_phy_disable(sc->sc_ah);
2045 } else
2046 sc->sc_rxlink = NULL;
2047
2048#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
2049 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2050 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2051#endif
2052 /* disable HAL and put h/w to sleep */
2053 ath9k_hw_disable(sc->sc_ah);
2054 ath9k_hw_configpcipowersave(sc->sc_ah, 1);
2055
2056 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002057
Sujith04bd4632008-11-28 22:18:05 +05302058 DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002059}
2060
2061static int ath9k_add_interface(struct ieee80211_hw *hw,
2062 struct ieee80211_if_init_conf *conf)
2063{
2064 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302065 struct ath_vap *avp = (void *)conf->vif->drv_priv;
2066 int ic_opmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002067
2068 /* Support only vap for now */
2069
2070 if (sc->sc_nvaps)
2071 return -ENOBUFS;
2072
2073 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002074 case NL80211_IFTYPE_STATION:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002075 ic_opmode = ATH9K_M_STA;
2076 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002077 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002078 ic_opmode = ATH9K_M_IBSS;
2079 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002080 case NL80211_IFTYPE_AP:
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002081 ic_opmode = ATH9K_M_HOSTAP;
2082 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002083 default:
2084 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302085 "Interface type %d not yet supported\n", conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002086 return -EOPNOTSUPP;
2087 }
2088
Sujith04bd4632008-11-28 22:18:05 +05302089 DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002090
Sujith5640b082008-10-29 10:16:06 +05302091 /* Set the VAP opmode */
2092 avp->av_opmode = ic_opmode;
2093 avp->av_bslot = -1;
2094
2095 if (ic_opmode == ATH9K_M_HOSTAP)
2096 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2097
2098 sc->sc_vaps[0] = conf->vif;
2099 sc->sc_nvaps++;
2100
2101 /* Set the device opmode */
2102 sc->sc_ah->ah_opmode = ic_opmode;
2103
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002104 if (conf->type == NL80211_IFTYPE_AP) {
2105 /* TODO: is this a suitable place to start ANI for AP mode? */
2106 /* Start ANI */
2107 mod_timer(&sc->sc_ani.timer,
2108 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
2109 }
2110
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002111 return 0;
2112}
2113
2114static void ath9k_remove_interface(struct ieee80211_hw *hw,
2115 struct ieee80211_if_init_conf *conf)
2116{
2117 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302118 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002119
Sujith04bd4632008-11-28 22:18:05 +05302120 DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002121
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002122#ifdef CONFIG_SLOW_ANT_DIV
2123 ath_slow_ant_div_stop(&sc->sc_antdiv);
2124#endif
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002125 /* Stop ANI */
2126 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002127
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002128 /* Reclaim beacon resources */
Sujithb4696c8b2008-08-11 14:04:52 +05302129 if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP ||
2130 sc->sc_ah->ah_opmode == ATH9K_M_IBSS) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002131 ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
2132 ath_beacon_return(sc, avp);
2133 }
2134
Sujith672840a2008-08-11 14:05:08 +05302135 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002136
Sujith5640b082008-10-29 10:16:06 +05302137 sc->sc_vaps[0] = NULL;
2138 sc->sc_nvaps--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002139}
2140
Johannes Berge8975582008-10-09 12:18:51 +02002141static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002142{
2143 struct ath_softc *sc = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002144 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002145
Sujith99405f92008-11-24 12:08:35 +05302146 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
2147 struct ieee80211_channel *curchan = hw->conf.channel;
2148 int pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002149
Sujith04bd4632008-11-28 22:18:05 +05302150 DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2151 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002152
Sujith99405f92008-11-24 12:08:35 +05302153 pos = ath_get_channel(sc, curchan);
2154 if (pos == -1) {
Sujith04bd4632008-11-28 22:18:05 +05302155 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n",
2156 curchan->center_freq);
Sujith99405f92008-11-24 12:08:35 +05302157 return -EINVAL;
2158 }
2159
2160 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
2161 sc->sc_ah->ah_channels[pos].chanmode =
2162 (curchan->band == IEEE80211_BAND_2GHZ) ?
2163 CHANNEL_G : CHANNEL_A;
2164
Sujithe11602b2008-11-27 09:46:27 +05302165 if ((sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP) &&
2166 (conf->ht.enabled)) {
2167 sc->tx_chan_width = (!!conf->ht.sec_chan_offset) ?
2168 ATH9K_HT_MACMODE_2040 : ATH9K_HT_MACMODE_20;
2169
2170 sc->sc_ah->ah_channels[pos].chanmode =
2171 ath_get_extchanmode(sc, curchan,
2172 conf->ht.sec_chan_offset,
2173 sc->tx_chan_width);
2174 }
2175
2176 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) {
Sujith04bd4632008-11-28 22:18:05 +05302177 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithe11602b2008-11-27 09:46:27 +05302178 return -EINVAL;
2179 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002180 }
2181
Sujith99405f92008-11-24 12:08:35 +05302182 if (changed & IEEE80211_CONF_CHANGE_HT)
2183 ath_update_chainmask(sc, conf->ht.enabled);
Sujith86b89ee2008-08-07 10:54:57 +05302184
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002185 if (changed & IEEE80211_CONF_CHANGE_POWER)
2186 sc->sc_config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002187
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002188 return 0;
2189}
2190
2191static int ath9k_config_interface(struct ieee80211_hw *hw,
2192 struct ieee80211_vif *vif,
2193 struct ieee80211_if_conf *conf)
2194{
2195 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002196 struct ath_hal *ah = sc->sc_ah;
Sujith5640b082008-10-29 10:16:06 +05302197 struct ath_vap *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002198 u32 rfilt = 0;
2199 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002200
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002201 /* TODO: Need to decide which hw opmode to use for multi-interface
2202 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02002203 if (vif->type == NL80211_IFTYPE_AP &&
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002204 ah->ah_opmode != ATH9K_M_HOSTAP) {
2205 ah->ah_opmode = ATH9K_M_HOSTAP;
2206 ath9k_hw_setopmode(ah);
2207 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
2208 /* Request full reset to get hw opmode changed properly */
2209 sc->sc_flags |= SC_OP_FULL_RESET;
2210 }
2211
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002212 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
2213 !is_zero_ether_addr(conf->bssid)) {
2214 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002215 case NL80211_IFTYPE_STATION:
2216 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217 /* Set BSSID */
2218 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
2219 sc->sc_curaid = 0;
2220 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
2221 sc->sc_curaid);
2222
2223 /* Set aggregation protection mode parameters */
2224 sc->sc_config.ath_aggr_prot = 0;
2225
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002226 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302227 "RX filter 0x%x bssid %pM aid 0x%x\n",
2228 rfilt, sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002229
2230 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05302231 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002232
2233 break;
2234 default:
2235 break;
2236 }
2237 }
2238
2239 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002240 ((vif->type == NL80211_IFTYPE_ADHOC) ||
2241 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002242 /*
2243 * Allocate and setup the beacon frame.
2244 *
2245 * Stop any previous beacon DMA. This may be
2246 * necessary, for example, when an ibss merge
2247 * causes reconfiguration; we may be called
2248 * with beacon transmission active.
2249 */
2250 ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
2251
2252 error = ath_beacon_alloc(sc, 0);
2253 if (error != 0)
2254 return error;
2255
2256 ath_beacon_sync(sc, 0);
2257 }
2258
2259 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Sujith5640b082008-10-29 10:16:06 +05302260 if ((avp->av_opmode != ATH9K_M_STA)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002261 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2262 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2263 ath9k_hw_keysetmac(sc->sc_ah,
2264 (u16)i,
2265 sc->sc_curbssid);
2266 }
2267
2268 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02002269 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002270 ath_update_chainmask(sc, 0);
2271
2272 return 0;
2273}
2274
2275#define SUPPORTED_FILTERS \
2276 (FIF_PROMISC_IN_BSS | \
2277 FIF_ALLMULTI | \
2278 FIF_CONTROL | \
2279 FIF_OTHER_BSS | \
2280 FIF_BCN_PRBRESP_PROMISC | \
2281 FIF_FCSFAIL)
2282
Sujith7dcfdcd2008-08-11 14:03:13 +05302283/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002284static void ath9k_configure_filter(struct ieee80211_hw *hw,
2285 unsigned int changed_flags,
2286 unsigned int *total_flags,
2287 int mc_count,
2288 struct dev_mc_list *mclist)
2289{
2290 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05302291 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002292
2293 changed_flags &= SUPPORTED_FILTERS;
2294 *total_flags &= SUPPORTED_FILTERS;
2295
Sujith7dcfdcd2008-08-11 14:03:13 +05302296 sc->rx_filter = *total_flags;
2297 rfilt = ath_calcrxfilter(sc);
2298 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2299
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002300 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2301 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05302302 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002303 }
Sujith7dcfdcd2008-08-11 14:03:13 +05302304
Sujith04bd4632008-11-28 22:18:05 +05302305 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx_filter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002306}
2307
2308static void ath9k_sta_notify(struct ieee80211_hw *hw,
2309 struct ieee80211_vif *vif,
2310 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002311 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002312{
2313 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002314
2315 switch (cmd) {
2316 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302317 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002318 break;
2319 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302320 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002321 break;
2322 default:
2323 break;
2324 }
2325}
2326
2327static int ath9k_conf_tx(struct ieee80211_hw *hw,
2328 u16 queue,
2329 const struct ieee80211_tx_queue_params *params)
2330{
2331 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05302332 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002333 int ret = 0, qnum;
2334
2335 if (queue >= WME_NUM_AC)
2336 return 0;
2337
2338 qi.tqi_aifs = params->aifs;
2339 qi.tqi_cwmin = params->cw_min;
2340 qi.tqi_cwmax = params->cw_max;
2341 qi.tqi_burstTime = params->txop;
2342 qnum = ath_get_hal_qnum(queue, sc);
2343
2344 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302345 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002346 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd4632008-11-28 22:18:05 +05302347 queue, qnum, params->aifs, params->cw_min,
2348 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002349
2350 ret = ath_txq_update(sc, qnum, &qi);
2351 if (ret)
Sujith04bd4632008-11-28 22:18:05 +05302352 DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002353
2354 return ret;
2355}
2356
2357static int ath9k_set_key(struct ieee80211_hw *hw,
2358 enum set_key_cmd cmd,
2359 const u8 *local_addr,
2360 const u8 *addr,
2361 struct ieee80211_key_conf *key)
2362{
2363 struct ath_softc *sc = hw->priv;
2364 int ret = 0;
2365
Sujith04bd4632008-11-28 22:18:05 +05302366 DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002367
2368 switch (cmd) {
2369 case SET_KEY:
2370 ret = ath_key_config(sc, addr, key);
2371 if (!ret) {
2372 set_bit(key->keyidx, sc->sc_keymap);
2373 key->hw_key_idx = key->keyidx;
2374 /* push IV and Michael MIC generation to stack */
2375 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302376 if (key->alg == ALG_TKIP)
2377 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002378 }
2379 break;
2380 case DISABLE_KEY:
2381 ath_key_delete(sc, key);
2382 clear_bit(key->keyidx, sc->sc_keymap);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002383 break;
2384 default:
2385 ret = -EINVAL;
2386 }
2387
2388 return ret;
2389}
2390
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002391static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2392 struct ieee80211_vif *vif,
2393 struct ieee80211_bss_conf *bss_conf,
2394 u32 changed)
2395{
2396 struct ath_softc *sc = hw->priv;
2397
2398 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Sujith04bd4632008-11-28 22:18:05 +05302399 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002400 bss_conf->use_short_preamble);
2401 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302402 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002403 else
Sujith672840a2008-08-11 14:05:08 +05302404 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002405 }
2406
2407 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Sujith04bd4632008-11-28 22:18:05 +05302408 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002409 bss_conf->use_cts_prot);
2410 if (bss_conf->use_cts_prot &&
2411 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302412 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002413 else
Sujith672840a2008-08-11 14:05:08 +05302414 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002415 }
2416
Sujith99405f92008-11-24 12:08:35 +05302417 if (changed & BSS_CHANGED_HT)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002418 ath9k_ht_conf(sc, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002419
2420 if (changed & BSS_CHANGED_ASSOC) {
Sujith04bd4632008-11-28 22:18:05 +05302421 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002422 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302423 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002424 }
2425}
2426
2427static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2428{
2429 u64 tsf;
2430 struct ath_softc *sc = hw->priv;
2431 struct ath_hal *ah = sc->sc_ah;
2432
2433 tsf = ath9k_hw_gettsf64(ah);
2434
2435 return tsf;
2436}
2437
2438static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2439{
2440 struct ath_softc *sc = hw->priv;
2441 struct ath_hal *ah = sc->sc_ah;
2442
2443 ath9k_hw_reset_tsf(ah);
2444}
2445
2446static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2447 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002448 struct ieee80211_sta *sta,
2449 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002450{
2451 struct ath_softc *sc = hw->priv;
2452 int ret = 0;
2453
2454 switch (action) {
2455 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302456 if (!(sc->sc_flags & SC_OP_RXAGGR))
2457 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002458 break;
2459 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002460 break;
2461 case IEEE80211_AMPDU_TX_START:
Sujithb5aa9bf2008-10-29 10:13:31 +05302462 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002463 if (ret < 0)
2464 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302465 "Unable to start TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002466 else
Johannes Berg17741cd2008-09-11 00:02:02 +02002467 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002468 break;
2469 case IEEE80211_AMPDU_TX_STOP:
Sujithb5aa9bf2008-10-29 10:13:31 +05302470 ret = ath_tx_aggr_stop(sc, sta, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002471 if (ret < 0)
2472 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302473 "Unable to stop TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002474
Johannes Berg17741cd2008-09-11 00:02:02 +02002475 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002476 break;
Sujith8469cde2008-10-29 10:19:28 +05302477 case IEEE80211_AMPDU_TX_RESUME:
2478 ath_tx_aggr_resume(sc, sta, tid);
2479 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002480 default:
Sujith04bd4632008-11-28 22:18:05 +05302481 DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002482 }
2483
2484 return ret;
2485}
2486
Johannes Berg4233df62008-10-13 13:35:05 +02002487static int ath9k_no_fragmentation(struct ieee80211_hw *hw, u32 value)
2488{
2489 return -EOPNOTSUPP;
2490}
2491
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002492static struct ieee80211_ops ath9k_ops = {
2493 .tx = ath9k_tx,
2494 .start = ath9k_start,
2495 .stop = ath9k_stop,
2496 .add_interface = ath9k_add_interface,
2497 .remove_interface = ath9k_remove_interface,
2498 .config = ath9k_config,
2499 .config_interface = ath9k_config_interface,
2500 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002501 .sta_notify = ath9k_sta_notify,
2502 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002503 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002504 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002505 .get_tsf = ath9k_get_tsf,
2506 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002507 .ampdu_action = ath9k_ampdu_action,
2508 .set_frag_threshold = ath9k_no_fragmentation,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002509};
2510
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002511static struct {
2512 u32 version;
2513 const char * name;
2514} ath_mac_bb_names[] = {
2515 { AR_SREV_VERSION_5416_PCI, "5416" },
2516 { AR_SREV_VERSION_5416_PCIE, "5418" },
2517 { AR_SREV_VERSION_9100, "9100" },
2518 { AR_SREV_VERSION_9160, "9160" },
2519 { AR_SREV_VERSION_9280, "9280" },
2520 { AR_SREV_VERSION_9285, "9285" }
2521};
2522
2523static struct {
2524 u16 version;
2525 const char * name;
2526} ath_rf_names[] = {
2527 { 0, "5133" },
2528 { AR_RAD5133_SREV_MAJOR, "5133" },
2529 { AR_RAD5122_SREV_MAJOR, "5122" },
2530 { AR_RAD2133_SREV_MAJOR, "2133" },
2531 { AR_RAD2122_SREV_MAJOR, "2122" }
2532};
2533
2534/*
2535 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2536 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002537static const char *
2538ath_mac_bb_name(u32 mac_bb_version)
2539{
2540 int i;
2541
2542 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2543 if (ath_mac_bb_names[i].version == mac_bb_version) {
2544 return ath_mac_bb_names[i].name;
2545 }
2546 }
2547
2548 return "????";
2549}
2550
2551/*
2552 * Return the RF name. "????" is returned if the RF is unknown.
2553 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002554static const char *
2555ath_rf_name(u16 rf_version)
2556{
2557 int i;
2558
2559 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2560 if (ath_rf_names[i].version == rf_version) {
2561 return ath_rf_names[i].name;
2562 }
2563 }
2564
2565 return "????";
2566}
2567
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002568static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2569{
2570 void __iomem *mem;
2571 struct ath_softc *sc;
2572 struct ieee80211_hw *hw;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002573 u8 csz;
2574 u32 val;
2575 int ret = 0;
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002576 struct ath_hal *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002577
2578 if (pci_enable_device(pdev))
2579 return -EIO;
2580
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002581 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2582
2583 if (ret) {
Luis R. Rodriguez1d450cf2008-11-13 19:11:56 -08002584 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002585 goto bad;
2586 }
2587
2588 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2589
2590 if (ret) {
2591 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
Sujith04bd4632008-11-28 22:18:05 +05302592 "DMA enable failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002593 goto bad;
2594 }
2595
2596 /*
2597 * Cache line size is used to size and align various
2598 * structures used to communicate with the hardware.
2599 */
2600 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
2601 if (csz == 0) {
2602 /*
2603 * Linux 2.4.18 (at least) writes the cache line size
2604 * register as a 16-bit wide register which is wrong.
2605 * We must have this setup properly for rx buffer
2606 * DMA to work so force a reasonable value here if it
2607 * comes up zero.
2608 */
2609 csz = L1_CACHE_BYTES / sizeof(u32);
2610 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
2611 }
2612 /*
2613 * The default setting of latency timer yields poor results,
2614 * set it to the value used by other systems. It may be worth
2615 * tweaking this setting more.
2616 */
2617 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
2618
2619 pci_set_master(pdev);
2620
2621 /*
2622 * Disable the RETRY_TIMEOUT register (0x41) to keep
2623 * PCI Tx retries from interfering with C3 CPU state.
2624 */
2625 pci_read_config_dword(pdev, 0x40, &val);
2626 if ((val & 0x0000ff00) != 0)
2627 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2628
2629 ret = pci_request_region(pdev, 0, "ath9k");
2630 if (ret) {
2631 dev_err(&pdev->dev, "PCI memory region reserve error\n");
2632 ret = -ENODEV;
2633 goto bad;
2634 }
2635
2636 mem = pci_iomap(pdev, 0, 0);
2637 if (!mem) {
2638 printk(KERN_ERR "PCI memory map error\n") ;
2639 ret = -EIO;
2640 goto bad1;
2641 }
2642
2643 hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops);
2644 if (hw == NULL) {
2645 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n");
2646 goto bad2;
2647 }
2648
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002649 SET_IEEE80211_DEV(hw, &pdev->dev);
2650 pci_set_drvdata(pdev, hw);
2651
2652 sc = hw->priv;
2653 sc->hw = hw;
2654 sc->pdev = pdev;
2655 sc->mem = mem;
2656
2657 if (ath_attach(id->device, sc) != 0) {
2658 ret = -ENODEV;
2659 goto bad3;
2660 }
2661
2662 /* setup interrupt service routine */
2663
2664 if (request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc)) {
2665 printk(KERN_ERR "%s: request_irq failed\n",
2666 wiphy_name(hw->wiphy));
2667 ret = -EIO;
2668 goto bad4;
2669 }
2670
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002671 ah = sc->sc_ah;
2672 printk(KERN_INFO
2673 "%s: Atheros AR%s MAC/BB Rev:%x "
2674 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002675 wiphy_name(hw->wiphy),
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002676 ath_mac_bb_name(ah->ah_macVersion),
2677 ah->ah_macRev,
2678 ath_rf_name((ah->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR)),
2679 ah->ah_phyRev,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002680 (unsigned long)mem, pdev->irq);
2681
2682 return 0;
2683bad4:
2684 ath_detach(sc);
2685bad3:
2686 ieee80211_free_hw(hw);
2687bad2:
2688 pci_iounmap(pdev, mem);
2689bad1:
2690 pci_release_region(pdev, 0);
2691bad:
2692 pci_disable_device(pdev);
2693 return ret;
2694}
2695
2696static void ath_pci_remove(struct pci_dev *pdev)
2697{
2698 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2699 struct ath_softc *sc = hw->priv;
2700
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002701 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05302702 if (pdev->irq)
2703 free_irq(pdev->irq, sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002704 pci_iounmap(pdev, sc->mem);
2705 pci_release_region(pdev, 0);
2706 pci_disable_device(pdev);
2707 ieee80211_free_hw(hw);
2708}
2709
2710#ifdef CONFIG_PM
2711
2712static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2713{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302714 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2715 struct ath_softc *sc = hw->priv;
2716
2717 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302718
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302719#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302720 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2721 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2722#endif
2723
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002724 pci_save_state(pdev);
2725 pci_disable_device(pdev);
2726 pci_set_power_state(pdev, 3);
2727
2728 return 0;
2729}
2730
2731static int ath_pci_resume(struct pci_dev *pdev)
2732{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302733 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2734 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002735 u32 val;
2736 int err;
2737
2738 err = pci_enable_device(pdev);
2739 if (err)
2740 return err;
2741 pci_restore_state(pdev);
2742 /*
2743 * Suspend/Resume resets the PCI configuration space, so we have to
2744 * re-disable the RETRY_TIMEOUT register (0x41) to keep
2745 * PCI Tx retries from interfering with C3 CPU state
2746 */
2747 pci_read_config_dword(pdev, 0x40, &val);
2748 if ((val & 0x0000ff00) != 0)
2749 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2750
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302751 /* Enable LED */
2752 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
2753 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
2754 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
2755
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302756#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302757 /*
2758 * check the h/w rfkill state on resume
2759 * and start the rfkill poll timer
2760 */
2761 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2762 queue_delayed_work(sc->hw->workqueue,
2763 &sc->rf_kill.rfkill_poll, 0);
2764#endif
2765
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002766 return 0;
2767}
2768
2769#endif /* CONFIG_PM */
2770
2771MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
2772
2773static struct pci_driver ath_pci_driver = {
2774 .name = "ath9k",
2775 .id_table = ath_pci_id_table,
2776 .probe = ath_pci_probe,
2777 .remove = ath_pci_remove,
2778#ifdef CONFIG_PM
2779 .suspend = ath_pci_suspend,
2780 .resume = ath_pci_resume,
2781#endif /* CONFIG_PM */
2782};
2783
2784static int __init init_ath_pci(void)
2785{
2786 printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
2787
2788 if (pci_register_driver(&ath_pci_driver) < 0) {
2789 printk(KERN_ERR
2790 "ath_pci: No devices found, driver not installed.\n");
2791 pci_unregister_driver(&ath_pci_driver);
2792 return -ENODEV;
2793 }
2794
2795 return 0;
2796}
2797module_init(init_ath_pci);
2798
2799static void __exit exit_ath_pci(void)
2800{
2801 pci_unregister_driver(&ath_pci_driver);
Sujith04bd4632008-11-28 22:18:05 +05302802 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002803}
2804module_exit(exit_ath_pci);