blob: ade92d518d5259817bf441bef4894d9b535db2ec [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
2 * Copyright (c) 2008 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070017#include <linux/nl80211.h>
18#include "core.h"
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +010019#include "reg.h"
Sujith2a163c62008-11-28 22:21:08 +053020#include "hw.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021
22#define ATH_PCI_VERSION "0.1"
23
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024static char *dev_info = "ath9k";
25
26MODULE_AUTHOR("Atheros Communications");
27MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
28MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
29MODULE_LICENSE("Dual BSD/GPL");
30
31static struct pci_device_id ath_pci_id_table[] __devinitdata = {
32 { PCI_VDEVICE(ATHEROS, 0x0023) }, /* PCI */
33 { PCI_VDEVICE(ATHEROS, 0x0024) }, /* PCI-E */
34 { PCI_VDEVICE(ATHEROS, 0x0027) }, /* PCI */
35 { PCI_VDEVICE(ATHEROS, 0x0029) }, /* PCI */
36 { PCI_VDEVICE(ATHEROS, 0x002A) }, /* PCI-E */
37 { 0 }
38};
39
Sujith9757d552008-11-04 18:25:27 +053040static void ath_detach(struct ath_softc *sc);
41
Sujithff37e332008-11-24 12:07:55 +053042/* return bus cachesize in 4B word units */
43
44static void bus_read_cachesize(struct ath_softc *sc, int *csz)
45{
46 u8 u8tmp;
47
48 pci_read_config_byte(sc->pdev, PCI_CACHE_LINE_SIZE, (u8 *)&u8tmp);
49 *csz = (int)u8tmp;
50
51 /*
52 * This check was put in to avoid "unplesant" consequences if
53 * the bootrom has not fully initialized all PCI devices.
54 * Sometimes the cache line size register is not set
55 */
56
57 if (*csz == 0)
58 *csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
59}
60
61static void ath_setcurmode(struct ath_softc *sc, enum wireless_mode mode)
62{
Sujith3706de62008-12-07 21:42:10 +053063 if (!sc->sc_curaid)
64 sc->cur_rate_table = sc->hw_rate_table[mode];
Sujithff37e332008-11-24 12:07:55 +053065 /*
66 * All protection frames are transmited at 2Mb/s for
67 * 11g, otherwise at 1Mb/s.
68 * XXX select protection rate index from rate table.
69 */
70 sc->sc_protrix = (mode == ATH9K_MODE_11G ? 1 : 0);
71}
72
73static enum wireless_mode ath_chan2mode(struct ath9k_channel *chan)
74{
75 if (chan->chanmode == CHANNEL_A)
76 return ATH9K_MODE_11A;
77 else if (chan->chanmode == CHANNEL_G)
78 return ATH9K_MODE_11G;
79 else if (chan->chanmode == CHANNEL_B)
80 return ATH9K_MODE_11B;
81 else if (chan->chanmode == CHANNEL_A_HT20)
82 return ATH9K_MODE_11NA_HT20;
83 else if (chan->chanmode == CHANNEL_G_HT20)
84 return ATH9K_MODE_11NG_HT20;
85 else if (chan->chanmode == CHANNEL_A_HT40PLUS)
86 return ATH9K_MODE_11NA_HT40PLUS;
87 else if (chan->chanmode == CHANNEL_A_HT40MINUS)
88 return ATH9K_MODE_11NA_HT40MINUS;
89 else if (chan->chanmode == CHANNEL_G_HT40PLUS)
90 return ATH9K_MODE_11NG_HT40PLUS;
91 else if (chan->chanmode == CHANNEL_G_HT40MINUS)
92 return ATH9K_MODE_11NG_HT40MINUS;
93
94 WARN_ON(1); /* should not get here */
95
96 return ATH9K_MODE_11B;
97}
98
99static void ath_update_txpow(struct ath_softc *sc)
100{
101 struct ath_hal *ah = sc->sc_ah;
102 u32 txpow;
103
104 if (sc->sc_curtxpow != sc->sc_config.txpowlimit) {
105 ath9k_hw_set_txpowerlimit(ah, sc->sc_config.txpowlimit);
106 /* read back in case value is clamped */
107 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
108 sc->sc_curtxpow = txpow;
109 }
110}
111
112static u8 parse_mpdudensity(u8 mpdudensity)
113{
114 /*
115 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
116 * 0 for no restriction
117 * 1 for 1/4 us
118 * 2 for 1/2 us
119 * 3 for 1 us
120 * 4 for 2 us
121 * 5 for 4 us
122 * 6 for 8 us
123 * 7 for 16 us
124 */
125 switch (mpdudensity) {
126 case 0:
127 return 0;
128 case 1:
129 case 2:
130 case 3:
131 /* Our lower layer calculations limit our precision to
132 1 microsecond */
133 return 1;
134 case 4:
135 return 2;
136 case 5:
137 return 4;
138 case 6:
139 return 8;
140 case 7:
141 return 16;
142 default:
143 return 0;
144 }
145}
146
147static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band)
148{
149 struct ath_rate_table *rate_table = NULL;
150 struct ieee80211_supported_band *sband;
151 struct ieee80211_rate *rate;
152 int i, maxrates;
153
154 switch (band) {
155 case IEEE80211_BAND_2GHZ:
156 rate_table = sc->hw_rate_table[ATH9K_MODE_11G];
157 break;
158 case IEEE80211_BAND_5GHZ:
159 rate_table = sc->hw_rate_table[ATH9K_MODE_11A];
160 break;
161 default:
162 break;
163 }
164
165 if (rate_table == NULL)
166 return;
167
168 sband = &sc->sbands[band];
169 rate = sc->rates[band];
170
171 if (rate_table->rate_cnt > ATH_RATE_MAX)
172 maxrates = ATH_RATE_MAX;
173 else
174 maxrates = rate_table->rate_cnt;
175
176 for (i = 0; i < maxrates; i++) {
177 rate[i].bitrate = rate_table->info[i].ratekbps / 100;
178 rate[i].hw_value = rate_table->info[i].ratecode;
179 sband->n_bitrates++;
Sujith04bd46382008-11-28 22:18:05 +0530180 DPRINTF(sc, ATH_DBG_CONFIG, "Rate: %2dMbps, ratecode: %2d\n",
181 rate[i].bitrate / 10, rate[i].hw_value);
Sujithff37e332008-11-24 12:07:55 +0530182 }
183}
184
185static int ath_setup_channels(struct ath_softc *sc)
186{
187 struct ath_hal *ah = sc->sc_ah;
188 int nchan, i, a = 0, b = 0;
189 u8 regclassids[ATH_REGCLASSIDS_MAX];
190 u32 nregclass = 0;
191 struct ieee80211_supported_band *band_2ghz;
192 struct ieee80211_supported_band *band_5ghz;
193 struct ieee80211_channel *chan_2ghz;
194 struct ieee80211_channel *chan_5ghz;
195 struct ath9k_channel *c;
196
197 /* Fill in ah->ah_channels */
198 if (!ath9k_regd_init_channels(ah, ATH_CHAN_MAX, (u32 *)&nchan,
199 regclassids, ATH_REGCLASSIDS_MAX,
200 &nregclass, CTRY_DEFAULT, false, 1)) {
201 u32 rd = ah->ah_currentRD;
202 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530203 "Unable to collect channel list; "
Sujithff37e332008-11-24 12:07:55 +0530204 "regdomain likely %u country code %u\n",
Sujith04bd46382008-11-28 22:18:05 +0530205 rd, CTRY_DEFAULT);
Sujithff37e332008-11-24 12:07:55 +0530206 return -EINVAL;
207 }
208
209 band_2ghz = &sc->sbands[IEEE80211_BAND_2GHZ];
210 band_5ghz = &sc->sbands[IEEE80211_BAND_5GHZ];
211 chan_2ghz = sc->channels[IEEE80211_BAND_2GHZ];
212 chan_5ghz = sc->channels[IEEE80211_BAND_5GHZ];
213
214 for (i = 0; i < nchan; i++) {
215 c = &ah->ah_channels[i];
216 if (IS_CHAN_2GHZ(c)) {
217 chan_2ghz[a].band = IEEE80211_BAND_2GHZ;
218 chan_2ghz[a].center_freq = c->channel;
219 chan_2ghz[a].max_power = c->maxTxPower;
220
221 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
222 chan_2ghz[a].flags |= IEEE80211_CHAN_NO_IBSS;
223 if (c->channelFlags & CHANNEL_PASSIVE)
224 chan_2ghz[a].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
225
226 band_2ghz->n_channels = ++a;
227
Sujith04bd46382008-11-28 22:18:05 +0530228 DPRINTF(sc, ATH_DBG_CONFIG, "2MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530229 "channelFlags: 0x%x\n",
Sujith04bd46382008-11-28 22:18:05 +0530230 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530231 } else if (IS_CHAN_5GHZ(c)) {
232 chan_5ghz[b].band = IEEE80211_BAND_5GHZ;
233 chan_5ghz[b].center_freq = c->channel;
234 chan_5ghz[b].max_power = c->maxTxPower;
235
236 if (c->privFlags & CHANNEL_DISALLOW_ADHOC)
237 chan_5ghz[b].flags |= IEEE80211_CHAN_NO_IBSS;
238 if (c->channelFlags & CHANNEL_PASSIVE)
239 chan_5ghz[b].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
240
241 band_5ghz->n_channels = ++b;
242
Sujith04bd46382008-11-28 22:18:05 +0530243 DPRINTF(sc, ATH_DBG_CONFIG, "5MHz channel: %d, "
Sujithff37e332008-11-24 12:07:55 +0530244 "channelFlags: 0x%x\n",
Sujith04bd46382008-11-28 22:18:05 +0530245 c->channel, c->channelFlags);
Sujithff37e332008-11-24 12:07:55 +0530246 }
247 }
248
249 return 0;
250}
251
252/*
253 * Set/change channels. If the channel is really being changed, it's done
254 * by reseting the chip. To accomplish this we must first cleanup any pending
255 * DMA, then restart stuff.
256*/
257static int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan)
258{
259 struct ath_hal *ah = sc->sc_ah;
260 bool fastcc = true, stopped;
261
262 if (sc->sc_flags & SC_OP_INVALID)
263 return -EIO;
264
Sujithff37e332008-11-24 12:07:55 +0530265 if (hchan->channel != sc->sc_ah->ah_curchan->channel ||
266 hchan->channelFlags != sc->sc_ah->ah_curchan->channelFlags ||
267 (sc->sc_flags & SC_OP_CHAINMASK_UPDATE) ||
268 (sc->sc_flags & SC_OP_FULL_RESET)) {
269 int status;
270 /*
271 * This is only performed if the channel settings have
272 * actually changed.
273 *
274 * To switch channels clear any pending DMA operations;
275 * wait long enough for the RX fifo to drain, reset the
276 * hardware at the new frequency, and then re-enable
277 * the relevant bits of the h/w.
278 */
Sujith04bd46382008-11-28 22:18:05 +0530279 ath9k_hw_set_interrupts(ah, 0);
280 ath_draintxq(sc, false);
281 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530282
283 /* XXX: do not flush receive queue here. We don't want
284 * to flush data frames already in queue because of
285 * changing channel. */
286
287 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
288 fastcc = false;
289
Sujith99405f92008-11-24 12:08:35 +0530290 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +0530291 "(%u MHz) -> (%u MHz), cflags:%x, chanwidth: %d\n",
Sujith99405f92008-11-24 12:08:35 +0530292 sc->sc_ah->ah_curchan->channel,
293 hchan->channel, hchan->channelFlags, sc->tx_chan_width);
294
Sujithff37e332008-11-24 12:07:55 +0530295 spin_lock_bh(&sc->sc_resetlock);
Sujith99405f92008-11-24 12:08:35 +0530296 if (!ath9k_hw_reset(ah, hchan, sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +0530297 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
298 sc->sc_ht_extprotspacing, fastcc, &status)) {
299 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530300 "Unable to reset channel %u (%uMhz) "
301 "flags 0x%x hal status %u\n",
Sujithff37e332008-11-24 12:07:55 +0530302 ath9k_hw_mhz2ieee(ah, hchan->channel,
303 hchan->channelFlags),
304 hchan->channel, hchan->channelFlags, status);
305 spin_unlock_bh(&sc->sc_resetlock);
306 return -EIO;
307 }
308 spin_unlock_bh(&sc->sc_resetlock);
309
310 sc->sc_flags &= ~SC_OP_CHAINMASK_UPDATE;
311 sc->sc_flags &= ~SC_OP_FULL_RESET;
312
313 if (ath_startrecv(sc) != 0) {
314 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530315 "Unable to restart recv logic\n");
Sujithff37e332008-11-24 12:07:55 +0530316 return -EIO;
317 }
318
319 ath_setcurmode(sc, ath_chan2mode(hchan));
320 ath_update_txpow(sc);
321 ath9k_hw_set_interrupts(ah, sc->sc_imask);
322 }
323 return 0;
324}
325
326/*
327 * This routine performs the periodic noise floor calibration function
328 * that is used to adjust and optimize the chip performance. This
329 * takes environmental changes (location, temperature) into account.
330 * When the task is complete, it reschedules itself depending on the
331 * appropriate interval that was calculated.
332 */
333static void ath_ani_calibrate(unsigned long data)
334{
335 struct ath_softc *sc;
336 struct ath_hal *ah;
337 bool longcal = false;
338 bool shortcal = false;
339 bool aniflag = false;
340 unsigned int timestamp = jiffies_to_msecs(jiffies);
341 u32 cal_interval;
342
343 sc = (struct ath_softc *)data;
344 ah = sc->sc_ah;
345
346 /*
347 * don't calibrate when we're scanning.
348 * we are most likely not on our home channel.
349 */
350 if (sc->rx_filter & FIF_BCN_PRBRESP_PROMISC)
351 return;
352
353 /* Long calibration runs independently of short calibration. */
354 if ((timestamp - sc->sc_ani.sc_longcal_timer) >= ATH_LONG_CALINTERVAL) {
355 longcal = true;
Sujith04bd46382008-11-28 22:18:05 +0530356 DPRINTF(sc, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530357 sc->sc_ani.sc_longcal_timer = timestamp;
358 }
359
360 /* Short calibration applies only while sc_caldone is false */
361 if (!sc->sc_ani.sc_caldone) {
362 if ((timestamp - sc->sc_ani.sc_shortcal_timer) >=
363 ATH_SHORT_CALINTERVAL) {
364 shortcal = true;
Sujith04bd46382008-11-28 22:18:05 +0530365 DPRINTF(sc, ATH_DBG_ANI, "shortcal @%lu\n", jiffies);
Sujithff37e332008-11-24 12:07:55 +0530366 sc->sc_ani.sc_shortcal_timer = timestamp;
367 sc->sc_ani.sc_resetcal_timer = timestamp;
368 }
369 } else {
370 if ((timestamp - sc->sc_ani.sc_resetcal_timer) >=
371 ATH_RESTART_CALINTERVAL) {
372 ath9k_hw_reset_calvalid(ah, ah->ah_curchan,
373 &sc->sc_ani.sc_caldone);
374 if (sc->sc_ani.sc_caldone)
375 sc->sc_ani.sc_resetcal_timer = timestamp;
376 }
377 }
378
379 /* Verify whether we must check ANI */
380 if ((timestamp - sc->sc_ani.sc_checkani_timer) >=
381 ATH_ANI_POLLINTERVAL) {
382 aniflag = true;
383 sc->sc_ani.sc_checkani_timer = timestamp;
384 }
385
386 /* Skip all processing if there's nothing to do. */
387 if (longcal || shortcal || aniflag) {
388 /* Call ANI routine if necessary */
389 if (aniflag)
390 ath9k_hw_ani_monitor(ah, &sc->sc_halstats,
391 ah->ah_curchan);
392
393 /* Perform calibration if necessary */
394 if (longcal || shortcal) {
395 bool iscaldone = false;
396
397 if (ath9k_hw_calibrate(ah, ah->ah_curchan,
398 sc->sc_rx_chainmask, longcal,
399 &iscaldone)) {
400 if (longcal)
401 sc->sc_ani.sc_noise_floor =
402 ath9k_hw_getchan_noise(ah,
403 ah->ah_curchan);
404
405 DPRINTF(sc, ATH_DBG_ANI,
Sujith04bd46382008-11-28 22:18:05 +0530406 "calibrate chan %u/%x nf: %d\n",
Sujithff37e332008-11-24 12:07:55 +0530407 ah->ah_curchan->channel,
408 ah->ah_curchan->channelFlags,
409 sc->sc_ani.sc_noise_floor);
410 } else {
411 DPRINTF(sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +0530412 "calibrate chan %u/%x failed\n",
Sujithff37e332008-11-24 12:07:55 +0530413 ah->ah_curchan->channel,
414 ah->ah_curchan->channelFlags);
415 }
416 sc->sc_ani.sc_caldone = iscaldone;
417 }
418 }
419
420 /*
421 * Set timer interval based on previous results.
422 * The interval must be the shortest necessary to satisfy ANI,
423 * short calibration and long calibration.
424 */
Sujithaac92072008-12-02 18:37:54 +0530425 cal_interval = ATH_LONG_CALINTERVAL;
426 if (sc->sc_ah->ah_config.enable_ani)
427 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
Sujithff37e332008-11-24 12:07:55 +0530428 if (!sc->sc_ani.sc_caldone)
429 cal_interval = min(cal_interval, (u32)ATH_SHORT_CALINTERVAL);
430
431 mod_timer(&sc->sc_ani.timer, jiffies + msecs_to_jiffies(cal_interval));
432}
433
434/*
435 * Update tx/rx chainmask. For legacy association,
436 * hard code chainmask to 1x1, for 11n association, use
437 * the chainmask configuration.
438 */
439static void ath_update_chainmask(struct ath_softc *sc, int is_ht)
440{
441 sc->sc_flags |= SC_OP_CHAINMASK_UPDATE;
442 if (is_ht) {
443 sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask;
444 sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask;
445 } else {
446 sc->sc_tx_chainmask = 1;
447 sc->sc_rx_chainmask = 1;
448 }
449
Sujith04bd46382008-11-28 22:18:05 +0530450 DPRINTF(sc, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n",
451 sc->sc_tx_chainmask, sc->sc_rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530452}
453
454static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
455{
456 struct ath_node *an;
457
458 an = (struct ath_node *)sta->drv_priv;
459
460 if (sc->sc_flags & SC_OP_TXAGGR)
461 ath_tx_node_init(sc, an);
462
463 an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR +
464 sta->ht_cap.ampdu_factor);
465 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
466}
467
468static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
469{
470 struct ath_node *an = (struct ath_node *)sta->drv_priv;
471
472 if (sc->sc_flags & SC_OP_TXAGGR)
473 ath_tx_node_cleanup(sc, an);
474}
475
476static void ath9k_tasklet(unsigned long data)
477{
478 struct ath_softc *sc = (struct ath_softc *)data;
479 u32 status = sc->sc_intrstatus;
480
481 if (status & ATH9K_INT_FATAL) {
482 /* need a chip reset */
483 ath_reset(sc, false);
484 return;
485 } else {
486
487 if (status &
488 (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
489 spin_lock_bh(&sc->sc_rxflushlock);
490 ath_rx_tasklet(sc, 0);
491 spin_unlock_bh(&sc->sc_rxflushlock);
492 }
493 /* XXX: optimize this */
494 if (status & ATH9K_INT_TX)
495 ath_tx_tasklet(sc);
496 }
497
498 /* re-enable hardware interrupt */
499 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
500}
501
502static irqreturn_t ath_isr(int irq, void *dev)
503{
504 struct ath_softc *sc = dev;
505 struct ath_hal *ah = sc->sc_ah;
506 enum ath9k_int status;
507 bool sched = false;
508
509 do {
510 if (sc->sc_flags & SC_OP_INVALID) {
511 /*
512 * The hardware is not ready/present, don't
513 * touch anything. Note this can happen early
514 * on if the IRQ is shared.
515 */
516 return IRQ_NONE;
517 }
518 if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */
519 return IRQ_NONE;
520 }
521
522 /*
523 * Figure out the reason(s) for the interrupt. Note
524 * that the hal returns a pseudo-ISR that may include
525 * bits we haven't explicitly enabled so we mask the
526 * value to insure we only process bits we requested.
527 */
528 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
529
530 status &= sc->sc_imask; /* discard unasked-for bits */
531
532 /*
533 * If there are no status bits set, then this interrupt was not
534 * for me (should have been caught above).
535 */
536 if (!status)
537 return IRQ_NONE;
538
539 sc->sc_intrstatus = status;
540
541 if (status & ATH9K_INT_FATAL) {
542 /* need a chip reset */
543 sched = true;
544 } else if (status & ATH9K_INT_RXORN) {
545 /* need a chip reset */
546 sched = true;
547 } else {
548 if (status & ATH9K_INT_SWBA) {
549 /* schedule a tasklet for beacon handling */
550 tasklet_schedule(&sc->bcon_tasklet);
551 }
552 if (status & ATH9K_INT_RXEOL) {
553 /*
554 * NB: the hardware should re-read the link when
555 * RXE bit is written, but it doesn't work
556 * at least on older hardware revs.
557 */
558 sched = true;
559 }
560
561 if (status & ATH9K_INT_TXURN)
562 /* bump tx trigger level */
563 ath9k_hw_updatetxtriglevel(ah, true);
564 /* XXX: optimize this */
565 if (status & ATH9K_INT_RX)
566 sched = true;
567 if (status & ATH9K_INT_TX)
568 sched = true;
569 if (status & ATH9K_INT_BMISS)
570 sched = true;
571 /* carrier sense timeout */
572 if (status & ATH9K_INT_CST)
573 sched = true;
574 if (status & ATH9K_INT_MIB) {
575 /*
576 * Disable interrupts until we service the MIB
577 * interrupt; otherwise it will continue to
578 * fire.
579 */
580 ath9k_hw_set_interrupts(ah, 0);
581 /*
582 * Let the hal handle the event. We assume
583 * it will clear whatever condition caused
584 * the interrupt.
585 */
586 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
587 ath9k_hw_set_interrupts(ah, sc->sc_imask);
588 }
589 if (status & ATH9K_INT_TIM_TIMER) {
590 if (!(ah->ah_caps.hw_caps &
591 ATH9K_HW_CAP_AUTOSLEEP)) {
592 /* Clear RxAbort bit so that we can
593 * receive frames */
594 ath9k_hw_setrxabort(ah, 0);
595 sched = true;
596 }
597 }
598 }
599 } while (0);
600
601 if (sched) {
602 /* turn off every interrupt except SWBA */
603 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
604 tasklet_schedule(&sc->intr_tq);
605 }
606
607 return IRQ_HANDLED;
608}
609
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700610static int ath_get_channel(struct ath_softc *sc,
611 struct ieee80211_channel *chan)
612{
613 int i;
614
615 for (i = 0; i < sc->sc_ah->ah_nchan; i++) {
616 if (sc->sc_ah->ah_channels[i].channel == chan->center_freq)
617 return i;
618 }
619
620 return -1;
621}
622
Sujithe11602b2008-11-27 09:46:27 +0530623/* ext_chan_offset: (-1, 0, 1) (below, none, above) */
624
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700625static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530626 struct ieee80211_channel *chan,
Sujithe11602b2008-11-27 09:46:27 +0530627 int ext_chan_offset,
628 enum ath9k_ht_macmode tx_chan_width)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700629{
630 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700631
632 switch (chan->band) {
633 case IEEE80211_BAND_2GHZ:
Sujithe11602b2008-11-27 09:46:27 +0530634 if ((ext_chan_offset == 0) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700635 (tx_chan_width == ATH9K_HT_MACMODE_20))
636 chanmode = CHANNEL_G_HT20;
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_HT40PLUS;
Sujithe11602b2008-11-27 09:46:27 +0530640 if ((ext_chan_offset == -1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 (tx_chan_width == ATH9K_HT_MACMODE_2040))
642 chanmode = CHANNEL_G_HT40MINUS;
643 break;
644 case IEEE80211_BAND_5GHZ:
Sujithe11602b2008-11-27 09:46:27 +0530645 if ((ext_chan_offset == 0) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700646 (tx_chan_width == ATH9K_HT_MACMODE_20))
647 chanmode = CHANNEL_A_HT20;
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_HT40PLUS;
Sujithe11602b2008-11-27 09:46:27 +0530651 if ((ext_chan_offset == -1) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700652 (tx_chan_width == ATH9K_HT_MACMODE_2040))
653 chanmode = CHANNEL_A_HT40MINUS;
654 break;
655 default:
656 break;
657 }
658
659 return chanmode;
660}
661
Sujithff37e332008-11-24 12:07:55 +0530662static void ath_key_reset(struct ath_softc *sc, u16 keyix, int freeslot)
663{
664 ath9k_hw_keyreset(sc->sc_ah, keyix);
665 if (freeslot)
666 clear_bit(keyix, sc->sc_keymap);
667}
668
669static int ath_keyset(struct ath_softc *sc, u16 keyix,
670 struct ath9k_keyval *hk, const u8 mac[ETH_ALEN])
671{
672 bool status;
673
674 status = ath9k_hw_set_keycache_entry(sc->sc_ah,
675 keyix, hk, mac, false);
676
677 return status != false;
678}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700679
680static int ath_setkey_tkip(struct ath_softc *sc,
681 struct ieee80211_key_conf *key,
682 struct ath9k_keyval *hk,
683 const u8 *addr)
684{
685 u8 *key_rxmic = NULL;
686 u8 *key_txmic = NULL;
687
688 key_txmic = key->key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
689 key_rxmic = key->key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
690
691 if (addr == NULL) {
692 /* Group key installation */
693 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
694 return ath_keyset(sc, key->keyidx, hk, addr);
695 }
696 if (!sc->sc_splitmic) {
697 /*
698 * data key goes at first index,
699 * the hal handles the MIC keys at index+64.
700 */
701 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
702 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
703 return ath_keyset(sc, key->keyidx, hk, addr);
704 }
705 /*
706 * TX key goes at first index, RX key at +32.
707 * The hal handles the MIC keys at index+64.
708 */
709 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
710 if (!ath_keyset(sc, key->keyidx, hk, NULL)) {
711 /* Txmic entry failed. No need to proceed further */
712 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +0530713 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700714 return 0;
715 }
716
717 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
718 /* XXX delete tx key on failure? */
719 return ath_keyset(sc, key->keyidx+32, hk, addr);
720}
721
722static int ath_key_config(struct ath_softc *sc,
723 const u8 *addr,
724 struct ieee80211_key_conf *key)
725{
726 struct ieee80211_vif *vif;
727 struct ath9k_keyval hk;
728 const u8 *mac = NULL;
729 int ret = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200730 enum nl80211_iftype opmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700731
732 memset(&hk, 0, sizeof(hk));
733
734 switch (key->alg) {
735 case ALG_WEP:
736 hk.kv_type = ATH9K_CIPHER_WEP;
737 break;
738 case ALG_TKIP:
739 hk.kv_type = ATH9K_CIPHER_TKIP;
740 break;
741 case ALG_CCMP:
742 hk.kv_type = ATH9K_CIPHER_AES_CCM;
743 break;
744 default:
745 return -EINVAL;
746 }
747
748 hk.kv_len = key->keylen;
749 memcpy(hk.kv_val, key->key, key->keylen);
750
751 if (!sc->sc_vaps[0])
752 return -EIO;
753
Sujith5640b082008-10-29 10:16:06 +0530754 vif = sc->sc_vaps[0];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700755 opmode = vif->type;
756
757 /*
758 * Strategy:
Colin McCabed97809d2008-12-01 13:38:55 -0800759 * For STA mc tx, we will not setup a key at
760 * all since we never tx mc.
761 *
762 * For STA mc rx, we will use the keyID.
763 *
764 * For ADHOC mc tx, we will use the keyID, and no macaddr.
765 *
766 * For ADHOC mc rx, we will alloc a slot and plumb the mac of
767 * the peer node.
768 * BUT we will plumb a cleartext key so that we can do
769 * per-Sta default key table lookup in software.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700770 */
771 if (is_broadcast_ether_addr(addr)) {
772 switch (opmode) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200773 case NL80211_IFTYPE_STATION:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700774 /* default key: could be group WPA key
775 * or could be static WEP key */
776 mac = NULL;
777 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200778 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200780 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700781 break;
782 default:
783 ASSERT(0);
784 break;
785 }
786 } else {
787 mac = addr;
788 }
789
790 if (key->alg == ALG_TKIP)
791 ret = ath_setkey_tkip(sc, key, &hk, mac);
792 else
793 ret = ath_keyset(sc, key->keyidx, &hk, mac);
794
795 if (!ret)
796 return -EIO;
797
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700798 return 0;
799}
800
801static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
802{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803 int freeslot;
804
Sujithff9b6622008-08-14 13:27:16 +0530805 freeslot = (key->keyidx >= 4) ? 1 : 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806 ath_key_reset(sc, key->keyidx, freeslot);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700807}
808
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200809static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700810{
Sujith60653672008-08-14 13:28:02 +0530811#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
812#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700813
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200814 ht_info->ht_supported = true;
815 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
816 IEEE80211_HT_CAP_SM_PS |
817 IEEE80211_HT_CAP_SGI_40 |
818 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700819
Sujith60653672008-08-14 13:28:02 +0530820 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
821 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200822 /* set up supported mcs set */
823 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
824 ht_info->mcs.rx_mask[0] = 0xff;
825 ht_info->mcs.rx_mask[1] = 0xff;
826 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700827}
828
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530829static void ath9k_ht_conf(struct ath_softc *sc,
830 struct ieee80211_bss_conf *bss_conf)
831{
Johannes Bergae5eb022008-10-14 16:58:37 +0200832 if (sc->hw->conf.ht.enabled) {
Johannes Bergae5eb022008-10-14 16:58:37 +0200833 if (bss_conf->ht.width_40_ok)
Sujith99405f92008-11-24 12:08:35 +0530834 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530835 else
Sujith99405f92008-11-24 12:08:35 +0530836 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530837
Sujith99405f92008-11-24 12:08:35 +0530838 ath9k_hw_set11nmac2040(sc->sc_ah, sc->tx_chan_width);
839
840 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +0530841 "BSS Changed HT, chanwidth: %d\n", sc->tx_chan_width);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530842 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530843}
844
Sujithe11602b2008-11-27 09:46:27 +0530845static inline int ath_sec_offset(u8 ext_offset)
846{
847 if (ext_offset == IEEE80211_HT_PARAM_CHA_SEC_NONE)
848 return 0;
849 else if (ext_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
850 return 1;
851 else if (ext_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
852 return -1;
853
854 return 0;
855}
856
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530857static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530858 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530859 struct ieee80211_bss_conf *bss_conf)
860{
861 struct ieee80211_hw *hw = sc->hw;
862 struct ieee80211_channel *curchan = hw->conf.channel;
Sujith5640b082008-10-29 10:16:06 +0530863 struct ath_vap *avp = (void *)vif->drv_priv;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530864 int pos;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530865
866 if (bss_conf->assoc) {
Sujith04bd46382008-11-28 22:18:05 +0530867 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d\n", bss_conf->aid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530868
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530869 /* New association, store aid */
Colin McCabed97809d2008-12-01 13:38:55 -0800870 if (avp->av_opmode == NL80211_IFTYPE_STATION) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530871 sc->sc_curaid = bss_conf->aid;
872 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
873 sc->sc_curaid);
874 }
875
876 /* Configure the beacon */
877 ath_beacon_config(sc, 0);
878 sc->sc_flags |= SC_OP_BEACONS;
879
880 /* Reset rssi stats */
881 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
882 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
883 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
884 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
885
886 /* Update chainmask */
Johannes Bergae5eb022008-10-14 16:58:37 +0200887 ath_update_chainmask(sc, hw->conf.ht.enabled);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530888
889 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +0530890 "bssid %pM aid 0x%x\n",
Johannes Berge1749612008-10-27 15:59:26 -0700891 sc->sc_curbssid, sc->sc_curaid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530892
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530893 pos = ath_get_channel(sc, curchan);
894 if (pos == -1) {
895 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530896 "Invalid channel: %d\n", curchan->center_freq);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530897 return;
898 }
899
Sujith99405f92008-11-24 12:08:35 +0530900 if (hw->conf.ht.enabled) {
Sujithe11602b2008-11-27 09:46:27 +0530901 int offset =
902 ath_sec_offset(bss_conf->ht.secondary_channel_offset);
903 sc->tx_chan_width = (bss_conf->ht.width_40_ok) ?
904 ATH9K_HT_MACMODE_2040 : ATH9K_HT_MACMODE_20;
Sujith99405f92008-11-24 12:08:35 +0530905
Sujithe11602b2008-11-27 09:46:27 +0530906 sc->sc_ah->ah_channels[pos].chanmode =
907 ath_get_extchanmode(sc, curchan,
908 offset, sc->tx_chan_width);
Sujith99405f92008-11-24 12:08:35 +0530909 } else {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530910 sc->sc_ah->ah_channels[pos].chanmode =
911 (curchan->band == IEEE80211_BAND_2GHZ) ?
912 CHANNEL_G : CHANNEL_A;
Sujith99405f92008-11-24 12:08:35 +0530913 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530914
915 /* set h/w channel */
916 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0)
Sujith04bd46382008-11-28 22:18:05 +0530917 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel: %d\n",
918 curchan->center_freq);
919
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700920 /* Start ANI */
921 mod_timer(&sc->sc_ani.timer,
922 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
923
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530924 } else {
Sujith04bd46382008-11-28 22:18:05 +0530925 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530926 sc->sc_curaid = 0;
927 }
928}
929
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530930/********************************/
931/* LED functions */
932/********************************/
933
934static void ath_led_brightness(struct led_classdev *led_cdev,
935 enum led_brightness brightness)
936{
937 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
938 struct ath_softc *sc = led->sc;
939
940 switch (brightness) {
941 case LED_OFF:
942 if (led->led_type == ATH_LED_ASSOC ||
943 led->led_type == ATH_LED_RADIO)
944 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
945 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
946 (led->led_type == ATH_LED_RADIO) ? 1 :
947 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
948 break;
949 case LED_FULL:
950 if (led->led_type == ATH_LED_ASSOC)
951 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
952 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
953 break;
954 default:
955 break;
956 }
957}
958
959static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
960 char *trigger)
961{
962 int ret;
963
964 led->sc = sc;
965 led->led_cdev.name = led->name;
966 led->led_cdev.default_trigger = trigger;
967 led->led_cdev.brightness_set = ath_led_brightness;
968
969 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
970 if (ret)
971 DPRINTF(sc, ATH_DBG_FATAL,
972 "Failed to register led:%s", led->name);
973 else
974 led->registered = 1;
975 return ret;
976}
977
978static void ath_unregister_led(struct ath_led *led)
979{
980 if (led->registered) {
981 led_classdev_unregister(&led->led_cdev);
982 led->registered = 0;
983 }
984}
985
986static void ath_deinit_leds(struct ath_softc *sc)
987{
988 ath_unregister_led(&sc->assoc_led);
989 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
990 ath_unregister_led(&sc->tx_led);
991 ath_unregister_led(&sc->rx_led);
992 ath_unregister_led(&sc->radio_led);
993 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
994}
995
996static void ath_init_leds(struct ath_softc *sc)
997{
998 char *trigger;
999 int ret;
1000
1001 /* Configure gpio 1 for output */
1002 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
1003 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1004 /* LED off, active low */
1005 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1006
1007 trigger = ieee80211_get_radio_led_name(sc->hw);
1008 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
1009 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
1010 ret = ath_register_led(sc, &sc->radio_led, trigger);
1011 sc->radio_led.led_type = ATH_LED_RADIO;
1012 if (ret)
1013 goto fail;
1014
1015 trigger = ieee80211_get_assoc_led_name(sc->hw);
1016 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
1017 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
1018 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1019 sc->assoc_led.led_type = ATH_LED_ASSOC;
1020 if (ret)
1021 goto fail;
1022
1023 trigger = ieee80211_get_tx_led_name(sc->hw);
1024 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
1025 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
1026 ret = ath_register_led(sc, &sc->tx_led, trigger);
1027 sc->tx_led.led_type = ATH_LED_TX;
1028 if (ret)
1029 goto fail;
1030
1031 trigger = ieee80211_get_rx_led_name(sc->hw);
1032 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
1033 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
1034 ret = ath_register_led(sc, &sc->rx_led, trigger);
1035 sc->rx_led.led_type = ATH_LED_RX;
1036 if (ret)
1037 goto fail;
1038
1039 return;
1040
1041fail:
1042 ath_deinit_leds(sc);
1043}
1044
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301045#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301046
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301047/*******************/
1048/* Rfkill */
1049/*******************/
1050
1051static void ath_radio_enable(struct ath_softc *sc)
1052{
1053 struct ath_hal *ah = sc->sc_ah;
1054 int status;
1055
1056 spin_lock_bh(&sc->sc_resetlock);
1057 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301058 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301059 sc->sc_tx_chainmask,
1060 sc->sc_rx_chainmask,
1061 sc->sc_ht_extprotspacing,
1062 false, &status)) {
1063 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301064 "Unable to reset channel %u (%uMhz) "
1065 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301066 ath9k_hw_mhz2ieee(ah,
1067 ah->ah_curchan->channel,
1068 ah->ah_curchan->channelFlags),
1069 ah->ah_curchan->channel,
1070 ah->ah_curchan->channelFlags, status);
1071 }
1072 spin_unlock_bh(&sc->sc_resetlock);
1073
1074 ath_update_txpow(sc);
1075 if (ath_startrecv(sc) != 0) {
1076 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301077 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301078 return;
1079 }
1080
1081 if (sc->sc_flags & SC_OP_BEACONS)
1082 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1083
1084 /* Re-Enable interrupts */
1085 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1086
1087 /* Enable LED */
1088 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
1089 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1090 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
1091
1092 ieee80211_wake_queues(sc->hw);
1093}
1094
1095static void ath_radio_disable(struct ath_softc *sc)
1096{
1097 struct ath_hal *ah = sc->sc_ah;
1098 int status;
1099
1100
1101 ieee80211_stop_queues(sc->hw);
1102
1103 /* Disable LED */
1104 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
1105 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
1106
1107 /* Disable interrupts */
1108 ath9k_hw_set_interrupts(ah, 0);
1109
1110 ath_draintxq(sc, false); /* clear pending tx frames */
1111 ath_stoprecv(sc); /* turn off frame recv */
1112 ath_flushrecv(sc); /* flush recv queue */
1113
1114 spin_lock_bh(&sc->sc_resetlock);
1115 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301116 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301117 sc->sc_tx_chainmask,
1118 sc->sc_rx_chainmask,
1119 sc->sc_ht_extprotspacing,
1120 false, &status)) {
1121 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301122 "Unable to reset channel %u (%uMhz) "
1123 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301124 ath9k_hw_mhz2ieee(ah,
1125 ah->ah_curchan->channel,
1126 ah->ah_curchan->channelFlags),
1127 ah->ah_curchan->channel,
1128 ah->ah_curchan->channelFlags, status);
1129 }
1130 spin_unlock_bh(&sc->sc_resetlock);
1131
1132 ath9k_hw_phy_disable(ah);
1133 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1134}
1135
1136static bool ath_is_rfkill_set(struct ath_softc *sc)
1137{
1138 struct ath_hal *ah = sc->sc_ah;
1139
1140 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
1141 ah->ah_rfkill_polarity;
1142}
1143
1144/* h/w rfkill poll function */
1145static void ath_rfkill_poll(struct work_struct *work)
1146{
1147 struct ath_softc *sc = container_of(work, struct ath_softc,
1148 rf_kill.rfkill_poll.work);
1149 bool radio_on;
1150
1151 if (sc->sc_flags & SC_OP_INVALID)
1152 return;
1153
1154 radio_on = !ath_is_rfkill_set(sc);
1155
1156 /*
1157 * enable/disable radio only when there is a
1158 * state change in RF switch
1159 */
1160 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
1161 enum rfkill_state state;
1162
1163 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
1164 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
1165 : RFKILL_STATE_HARD_BLOCKED;
1166 } else if (radio_on) {
1167 ath_radio_enable(sc);
1168 state = RFKILL_STATE_UNBLOCKED;
1169 } else {
1170 ath_radio_disable(sc);
1171 state = RFKILL_STATE_HARD_BLOCKED;
1172 }
1173
1174 if (state == RFKILL_STATE_HARD_BLOCKED)
1175 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
1176 else
1177 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
1178
1179 rfkill_force_state(sc->rf_kill.rfkill, state);
1180 }
1181
1182 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
1183 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
1184}
1185
1186/* s/w rfkill handler */
1187static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
1188{
1189 struct ath_softc *sc = data;
1190
1191 switch (state) {
1192 case RFKILL_STATE_SOFT_BLOCKED:
1193 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
1194 SC_OP_RFKILL_SW_BLOCKED)))
1195 ath_radio_disable(sc);
1196 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
1197 return 0;
1198 case RFKILL_STATE_UNBLOCKED:
1199 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
1200 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
1201 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
1202 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
Sujith04bd46382008-11-28 22:18:05 +05301203 "radio as it is disabled by h/w\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301204 return -EPERM;
1205 }
1206 ath_radio_enable(sc);
1207 }
1208 return 0;
1209 default:
1210 return -EINVAL;
1211 }
1212}
1213
1214/* Init s/w rfkill */
1215static int ath_init_sw_rfkill(struct ath_softc *sc)
1216{
1217 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
1218 RFKILL_TYPE_WLAN);
1219 if (!sc->rf_kill.rfkill) {
1220 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
1221 return -ENOMEM;
1222 }
1223
1224 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
1225 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
1226 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
1227 sc->rf_kill.rfkill->data = sc;
1228 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
1229 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
1230 sc->rf_kill.rfkill->user_claim_unsupported = 1;
1231
1232 return 0;
1233}
1234
1235/* Deinitialize rfkill */
1236static void ath_deinit_rfkill(struct ath_softc *sc)
1237{
1238 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1239 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1240
1241 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
1242 rfkill_unregister(sc->rf_kill.rfkill);
1243 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
1244 sc->rf_kill.rfkill = NULL;
1245 }
1246}
Sujith9c84b792008-10-29 10:17:13 +05301247
1248static int ath_start_rfkill_poll(struct ath_softc *sc)
1249{
1250 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1251 queue_delayed_work(sc->hw->workqueue,
1252 &sc->rf_kill.rfkill_poll, 0);
1253
1254 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1255 if (rfkill_register(sc->rf_kill.rfkill)) {
1256 DPRINTF(sc, ATH_DBG_FATAL,
1257 "Unable to register rfkill\n");
1258 rfkill_free(sc->rf_kill.rfkill);
1259
1260 /* Deinitialize the device */
Senthil Balasubramanian306efdd2008-11-13 18:00:37 +05301261 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05301262 if (sc->pdev->irq)
1263 free_irq(sc->pdev->irq, sc);
Sujith9c84b792008-10-29 10:17:13 +05301264 pci_iounmap(sc->pdev, sc->mem);
1265 pci_release_region(sc->pdev, 0);
1266 pci_disable_device(sc->pdev);
Sujith9757d552008-11-04 18:25:27 +05301267 ieee80211_free_hw(sc->hw);
Sujith9c84b792008-10-29 10:17:13 +05301268 return -EIO;
1269 } else {
1270 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1271 }
1272 }
1273
1274 return 0;
1275}
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301276#endif /* CONFIG_RFKILL */
1277
Sujith9c84b792008-10-29 10:17:13 +05301278static void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301279{
1280 struct ieee80211_hw *hw = sc->hw;
Sujith9c84b792008-10-29 10:17:13 +05301281 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301282
Sujith04bd46382008-11-28 22:18:05 +05301283 DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301284
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301285#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301286 ath_deinit_rfkill(sc);
1287#endif
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301288 ath_deinit_leds(sc);
1289
1290 ieee80211_unregister_hw(hw);
1291
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301292 ath_rate_control_unregister();
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301293
1294 ath_rx_cleanup(sc);
1295 ath_tx_cleanup(sc);
1296
Sujith9c84b792008-10-29 10:17:13 +05301297 tasklet_kill(&sc->intr_tq);
1298 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301299
Sujith9c84b792008-10-29 10:17:13 +05301300 if (!(sc->sc_flags & SC_OP_INVALID))
1301 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301302
Sujith9c84b792008-10-29 10:17:13 +05301303 /* cleanup tx queues */
1304 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1305 if (ATH_TXQ_SETUP(sc, i))
1306 ath_tx_cleanupq(sc, &sc->sc_txq[i]);
1307
1308 ath9k_hw_detach(sc->sc_ah);
Sujith826d2682008-11-28 22:20:23 +05301309 ath9k_exit_debug(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301310}
1311
Sujithff37e332008-11-24 12:07:55 +05301312static int ath_init(u16 devid, struct ath_softc *sc)
1313{
1314 struct ath_hal *ah = NULL;
1315 int status;
1316 int error = 0, i;
1317 int csz = 0;
1318
1319 /* XXX: hardware will not be ready until ath_open() being called */
1320 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301321
Sujith826d2682008-11-28 22:20:23 +05301322 if (ath9k_init_debug(sc) < 0)
1323 printk(KERN_ERR "Unable to create debugfs files\n");
Sujithff37e332008-11-24 12:07:55 +05301324
1325 spin_lock_init(&sc->sc_resetlock);
1326 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1327 tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1328 (unsigned long)sc);
1329
1330 /*
1331 * Cache line size is used to size and align various
1332 * structures used to communicate with the hardware.
1333 */
1334 bus_read_cachesize(sc, &csz);
1335 /* XXX assert csz is non-zero */
1336 sc->sc_cachelsz = csz << 2; /* convert to bytes */
1337
1338 ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1339 if (ah == NULL) {
1340 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301341 "Unable to attach hardware; HAL status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301342 error = -ENXIO;
1343 goto bad;
1344 }
1345 sc->sc_ah = ah;
1346
1347 /* Get the hardware key cache size. */
1348 sc->sc_keymax = ah->ah_caps.keycache_size;
1349 if (sc->sc_keymax > ATH_KEYMAX) {
1350 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05301351 "Warning, using only %u entries in %u key cache\n",
1352 ATH_KEYMAX, sc->sc_keymax);
Sujithff37e332008-11-24 12:07:55 +05301353 sc->sc_keymax = ATH_KEYMAX;
1354 }
1355
1356 /*
1357 * Reset the key cache since some parts do not
1358 * reset the contents on initial power up.
1359 */
1360 for (i = 0; i < sc->sc_keymax; i++)
1361 ath9k_hw_keyreset(ah, (u16) i);
1362 /*
1363 * Mark key cache slots associated with global keys
1364 * as in use. If we knew TKIP was not to be used we
1365 * could leave the +32, +64, and +32+64 slots free.
1366 * XXX only for splitmic.
1367 */
1368 for (i = 0; i < IEEE80211_WEP_NKID; i++) {
1369 set_bit(i, sc->sc_keymap);
1370 set_bit(i + 32, sc->sc_keymap);
1371 set_bit(i + 64, sc->sc_keymap);
1372 set_bit(i + 32 + 64, sc->sc_keymap);
1373 }
1374
1375 /* Collect the channel list using the default country code */
1376
1377 error = ath_setup_channels(sc);
1378 if (error)
1379 goto bad;
1380
1381 /* default to MONITOR mode */
Colin McCabed97809d2008-12-01 13:38:55 -08001382 sc->sc_ah->ah_opmode = NL80211_IFTYPE_MONITOR;
1383
Sujithff37e332008-11-24 12:07:55 +05301384
1385 /* Setup rate tables */
1386
1387 ath_rate_attach(sc);
1388 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1389 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1390
1391 /*
1392 * Allocate hardware transmit queues: one queue for
1393 * beacon frames and one data queue for each QoS
1394 * priority. Note that the hal handles reseting
1395 * these queues at the needed time.
1396 */
1397 sc->sc_bhalq = ath_beaconq_setup(ah);
1398 if (sc->sc_bhalq == -1) {
1399 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301400 "Unable to setup a beacon xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301401 error = -EIO;
1402 goto bad2;
1403 }
1404 sc->sc_cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1405 if (sc->sc_cabq == NULL) {
1406 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301407 "Unable to setup CAB xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301408 error = -EIO;
1409 goto bad2;
1410 }
1411
1412 sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1413 ath_cabq_update(sc);
1414
1415 for (i = 0; i < ARRAY_SIZE(sc->sc_haltype2q); i++)
1416 sc->sc_haltype2q[i] = -1;
1417
1418 /* Setup data queues */
1419 /* NB: ensure BK queue is the lowest priority h/w queue */
1420 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1421 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301422 "Unable to setup xmit queue for BK traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301423 error = -EIO;
1424 goto bad2;
1425 }
1426
1427 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1428 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301429 "Unable to setup xmit queue for BE traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301430 error = -EIO;
1431 goto bad2;
1432 }
1433 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1434 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301435 "Unable to setup xmit queue for VI traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301436 error = -EIO;
1437 goto bad2;
1438 }
1439 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1440 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301441 "Unable to setup xmit queue for VO traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301442 error = -EIO;
1443 goto bad2;
1444 }
1445
1446 /* Initializes the noise floor to a reasonable default value.
1447 * Later on this will be updated during ANI processing. */
1448
1449 sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1450 setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc);
1451
1452 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1453 ATH9K_CIPHER_TKIP, NULL)) {
1454 /*
1455 * Whether we should enable h/w TKIP MIC.
1456 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1457 * report WMM capable, so it's always safe to turn on
1458 * TKIP MIC in this case.
1459 */
1460 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1461 0, 1, NULL);
1462 }
1463
1464 /*
1465 * Check whether the separate key cache entries
1466 * are required to handle both tx+rx MIC keys.
1467 * With split mic keys the number of stations is limited
1468 * to 27 otherwise 59.
1469 */
1470 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1471 ATH9K_CIPHER_TKIP, NULL)
1472 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1473 ATH9K_CIPHER_MIC, NULL)
1474 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1475 0, NULL))
1476 sc->sc_splitmic = 1;
1477
1478 /* turn on mcast key search if possible */
1479 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1480 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1481 1, NULL);
1482
1483 sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1484 sc->sc_config.txpowlimit_override = 0;
1485
1486 /* 11n Capabilities */
1487 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1488 sc->sc_flags |= SC_OP_TXAGGR;
1489 sc->sc_flags |= SC_OP_RXAGGR;
1490 }
1491
1492 sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1493 sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1494
1495 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
1496 sc->sc_defant = ath9k_hw_getdefantenna(ah);
1497
1498 ath9k_hw_getmac(ah, sc->sc_myaddr);
1499 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1500 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1501 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1502 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1503 }
1504
1505 sc->sc_slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
1506
1507 /* initialize beacon slots */
1508 for (i = 0; i < ARRAY_SIZE(sc->sc_bslot); i++)
1509 sc->sc_bslot[i] = ATH_IF_ID_ANY;
1510
1511 /* save MISC configurations */
1512 sc->sc_config.swBeaconProcess = 1;
1513
1514#ifdef CONFIG_SLOW_ANT_DIV
1515 /* range is 40 - 255, we use something in the middle */
1516 ath_slow_ant_div_init(&sc->sc_antdiv, sc, 0x127);
1517#endif
1518
1519 /* setup channels and rates */
1520
1521 sc->sbands[IEEE80211_BAND_2GHZ].channels =
1522 sc->channels[IEEE80211_BAND_2GHZ];
1523 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1524 sc->rates[IEEE80211_BAND_2GHZ];
1525 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
1526
1527 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
1528 sc->sbands[IEEE80211_BAND_5GHZ].channels =
1529 sc->channels[IEEE80211_BAND_5GHZ];
1530 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1531 sc->rates[IEEE80211_BAND_5GHZ];
1532 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
1533 }
1534
1535 return 0;
1536bad2:
1537 /* cleanup tx queues */
1538 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1539 if (ATH_TXQ_SETUP(sc, i))
1540 ath_tx_cleanupq(sc, &sc->sc_txq[i]);
1541bad:
1542 if (ah)
1543 ath9k_hw_detach(ah);
1544
1545 return error;
1546}
1547
Sujith9c84b792008-10-29 10:17:13 +05301548static int ath_attach(u16 devid, struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301549{
1550 struct ieee80211_hw *hw = sc->hw;
1551 int error = 0;
1552
Sujith04bd46382008-11-28 22:18:05 +05301553 DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301554
1555 error = ath_init(devid, sc);
1556 if (error != 0)
1557 return error;
1558
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301559 /* get mac address from hardware and set in mac80211 */
1560
1561 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
1562
Sujith9c84b792008-10-29 10:17:13 +05301563 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1564 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1565 IEEE80211_HW_SIGNAL_DBM |
1566 IEEE80211_HW_AMPDU_AGGREGATION;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301567
Sujith9c84b792008-10-29 10:17:13 +05301568 hw->wiphy->interface_modes =
1569 BIT(NL80211_IFTYPE_AP) |
1570 BIT(NL80211_IFTYPE_STATION) |
1571 BIT(NL80211_IFTYPE_ADHOC);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301572
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301573 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301574 hw->max_rates = 4;
1575 hw->max_rate_tries = ATH_11N_TXMAXTRY;
Sujith528f0c62008-10-29 10:14:26 +05301576 hw->sta_data_size = sizeof(struct ath_node);
Sujith5640b082008-10-29 10:16:06 +05301577 hw->vif_data_size = sizeof(struct ath_vap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301578
1579 /* Register rate control */
1580 hw->rate_control_algorithm = "ath9k_rate_control";
1581 error = ath_rate_control_register();
1582 if (error != 0) {
1583 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301584 "Unable to register rate control algorithm: %d\n", error);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301585 ath_rate_control_unregister();
1586 goto bad;
1587 }
1588
Sujith9c84b792008-10-29 10:17:13 +05301589 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1590 setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
1591 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1592 setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
1593 }
1594
1595 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ];
1596 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1597 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1598 &sc->sbands[IEEE80211_BAND_5GHZ];
1599
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301600 /* initialize tx/rx engine */
1601 error = ath_tx_init(sc, ATH_TXBUF);
1602 if (error != 0)
1603 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301604
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301605 error = ath_rx_init(sc, ATH_RXBUF);
1606 if (error != 0)
1607 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301608
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301609#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301610 /* Initialze h/w Rfkill */
1611 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1612 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
1613
1614 /* Initialize s/w rfkill */
1615 if (ath_init_sw_rfkill(sc))
1616 goto detach;
1617#endif
1618
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301619 error = ieee80211_register_hw(hw);
1620 if (error != 0) {
1621 ath_rate_control_unregister();
1622 goto bad;
1623 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301624
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301625 /* Initialize LED control */
1626 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301627
1628 return 0;
1629detach:
1630 ath_detach(sc);
1631bad:
1632 return error;
1633}
1634
Sujithff37e332008-11-24 12:07:55 +05301635int ath_reset(struct ath_softc *sc, bool retry_tx)
1636{
1637 struct ath_hal *ah = sc->sc_ah;
1638 int status;
1639 int error = 0;
1640
1641 ath9k_hw_set_interrupts(ah, 0);
1642 ath_draintxq(sc, retry_tx);
1643 ath_stoprecv(sc);
1644 ath_flushrecv(sc);
1645
1646 spin_lock_bh(&sc->sc_resetlock);
1647 if (!ath9k_hw_reset(ah, sc->sc_ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301648 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301649 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1650 sc->sc_ht_extprotspacing, false, &status)) {
1651 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301652 "Unable to reset hardware; hal status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301653 error = -EIO;
1654 }
1655 spin_unlock_bh(&sc->sc_resetlock);
1656
1657 if (ath_startrecv(sc) != 0)
Sujith04bd46382008-11-28 22:18:05 +05301658 DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301659
1660 /*
1661 * We may be doing a reset in response to a request
1662 * that changes the channel so update any state that
1663 * might change as a result.
1664 */
1665 ath_setcurmode(sc, ath_chan2mode(sc->sc_ah->ah_curchan));
1666
1667 ath_update_txpow(sc);
1668
1669 if (sc->sc_flags & SC_OP_BEACONS)
1670 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1671
1672 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1673
1674 if (retry_tx) {
1675 int i;
1676 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1677 if (ATH_TXQ_SETUP(sc, i)) {
1678 spin_lock_bh(&sc->sc_txq[i].axq_lock);
1679 ath_txq_schedule(sc, &sc->sc_txq[i]);
1680 spin_unlock_bh(&sc->sc_txq[i].axq_lock);
1681 }
1682 }
1683 }
1684
1685 return error;
1686}
1687
1688/*
1689 * This function will allocate both the DMA descriptor structure, and the
1690 * buffers it contains. These are used to contain the descriptors used
1691 * by the system.
1692*/
1693int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1694 struct list_head *head, const char *name,
1695 int nbuf, int ndesc)
1696{
1697#define DS2PHYS(_dd, _ds) \
1698 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1699#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1700#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1701
1702 struct ath_desc *ds;
1703 struct ath_buf *bf;
1704 int i, bsize, error;
1705
Sujith04bd46382008-11-28 22:18:05 +05301706 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
1707 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301708
1709 /* ath_desc must be a multiple of DWORDs */
1710 if ((sizeof(struct ath_desc) % 4) != 0) {
Sujith04bd46382008-11-28 22:18:05 +05301711 DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301712 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1713 error = -ENOMEM;
1714 goto fail;
1715 }
1716
1717 dd->dd_name = name;
1718 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1719
1720 /*
1721 * Need additional DMA memory because we can't use
1722 * descriptors that cross the 4K page boundary. Assume
1723 * one skipped descriptor per 4K page.
1724 */
1725 if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1726 u32 ndesc_skipped =
1727 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1728 u32 dma_len;
1729
1730 while (ndesc_skipped) {
1731 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1732 dd->dd_desc_len += dma_len;
1733
1734 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1735 };
1736 }
1737
1738 /* allocate descriptors */
1739 dd->dd_desc = pci_alloc_consistent(sc->pdev,
1740 dd->dd_desc_len,
1741 &dd->dd_desc_paddr);
1742 if (dd->dd_desc == NULL) {
1743 error = -ENOMEM;
1744 goto fail;
1745 }
1746 ds = dd->dd_desc;
Sujith04bd46382008-11-28 22:18:05 +05301747 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
1748 dd->dd_name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301749 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1750
1751 /* allocate buffers */
1752 bsize = sizeof(struct ath_buf) * nbuf;
1753 bf = kmalloc(bsize, GFP_KERNEL);
1754 if (bf == NULL) {
1755 error = -ENOMEM;
1756 goto fail2;
1757 }
1758 memset(bf, 0, bsize);
1759 dd->dd_bufptr = bf;
1760
1761 INIT_LIST_HEAD(head);
1762 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1763 bf->bf_desc = ds;
1764 bf->bf_daddr = DS2PHYS(dd, ds);
1765
1766 if (!(sc->sc_ah->ah_caps.hw_caps &
1767 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1768 /*
1769 * Skip descriptor addresses which can cause 4KB
1770 * boundary crossing (addr + length) with a 32 dword
1771 * descriptor fetch.
1772 */
1773 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1774 ASSERT((caddr_t) bf->bf_desc <
1775 ((caddr_t) dd->dd_desc +
1776 dd->dd_desc_len));
1777
1778 ds += ndesc;
1779 bf->bf_desc = ds;
1780 bf->bf_daddr = DS2PHYS(dd, ds);
1781 }
1782 }
1783 list_add_tail(&bf->list, head);
1784 }
1785 return 0;
1786fail2:
1787 pci_free_consistent(sc->pdev,
1788 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1789fail:
1790 memset(dd, 0, sizeof(*dd));
1791 return error;
1792#undef ATH_DESC_4KB_BOUND_CHECK
1793#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1794#undef DS2PHYS
1795}
1796
1797void ath_descdma_cleanup(struct ath_softc *sc,
1798 struct ath_descdma *dd,
1799 struct list_head *head)
1800{
1801 pci_free_consistent(sc->pdev,
1802 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1803
1804 INIT_LIST_HEAD(head);
1805 kfree(dd->dd_bufptr);
1806 memset(dd, 0, sizeof(*dd));
1807}
1808
1809int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1810{
1811 int qnum;
1812
1813 switch (queue) {
1814 case 0:
1815 qnum = sc->sc_haltype2q[ATH9K_WME_AC_VO];
1816 break;
1817 case 1:
1818 qnum = sc->sc_haltype2q[ATH9K_WME_AC_VI];
1819 break;
1820 case 2:
1821 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BE];
1822 break;
1823 case 3:
1824 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BK];
1825 break;
1826 default:
1827 qnum = sc->sc_haltype2q[ATH9K_WME_AC_BE];
1828 break;
1829 }
1830
1831 return qnum;
1832}
1833
1834int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1835{
1836 int qnum;
1837
1838 switch (queue) {
1839 case ATH9K_WME_AC_VO:
1840 qnum = 0;
1841 break;
1842 case ATH9K_WME_AC_VI:
1843 qnum = 1;
1844 break;
1845 case ATH9K_WME_AC_BE:
1846 qnum = 2;
1847 break;
1848 case ATH9K_WME_AC_BK:
1849 qnum = 3;
1850 break;
1851 default:
1852 qnum = -1;
1853 break;
1854 }
1855
1856 return qnum;
1857}
1858
1859/**********************/
1860/* mac80211 callbacks */
1861/**********************/
1862
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001863static int ath9k_start(struct ieee80211_hw *hw)
1864{
1865 struct ath_softc *sc = hw->priv;
1866 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05301867 struct ath9k_channel *init_channel;
1868 int error = 0, pos, status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001869
Sujith04bd46382008-11-28 22:18:05 +05301870 DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with "
1871 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001872
1873 /* setup initial channel */
1874
1875 pos = ath_get_channel(sc, curchan);
1876 if (pos == -1) {
Sujith04bd46382008-11-28 22:18:05 +05301877 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", curchan->center_freq);
Sujith9c84b792008-10-29 10:17:13 +05301878 error = -EINVAL;
Sujithff37e332008-11-24 12:07:55 +05301879 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001880 }
1881
Sujith99405f92008-11-24 12:08:35 +05301882 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001883 sc->sc_ah->ah_channels[pos].chanmode =
1884 (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A;
Sujithff37e332008-11-24 12:07:55 +05301885 init_channel = &sc->sc_ah->ah_channels[pos];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001886
Sujithff37e332008-11-24 12:07:55 +05301887 /* Reset SERDES registers */
1888 ath9k_hw_configpcipowersave(sc->sc_ah, 0);
1889
1890 /*
1891 * The basic interface to setting the hardware in a good
1892 * state is ``reset''. On return the hardware is known to
1893 * be powered up and with interrupts disabled. This must
1894 * be followed by initialization of the appropriate bits
1895 * and then setup of the interrupt mask.
1896 */
1897 spin_lock_bh(&sc->sc_resetlock);
1898 if (!ath9k_hw_reset(sc->sc_ah, init_channel,
Sujith99405f92008-11-24 12:08:35 +05301899 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301900 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1901 sc->sc_ht_extprotspacing, false, &status)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001902 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301903 "Unable to reset hardware; hal status %u "
1904 "(freq %u flags 0x%x)\n", status,
Sujithff37e332008-11-24 12:07:55 +05301905 init_channel->channel, init_channel->channelFlags);
1906 error = -EIO;
1907 spin_unlock_bh(&sc->sc_resetlock);
1908 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001909 }
Sujithff37e332008-11-24 12:07:55 +05301910 spin_unlock_bh(&sc->sc_resetlock);
1911
1912 /*
1913 * This is needed only to setup initial state
1914 * but it's best done after a reset.
1915 */
1916 ath_update_txpow(sc);
1917
1918 /*
1919 * Setup the hardware after reset:
1920 * The receive engine is set going.
1921 * Frame transmit is handled entirely
1922 * in the frame output path; there's nothing to do
1923 * here except setup the interrupt mask.
1924 */
1925 if (ath_startrecv(sc) != 0) {
1926 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301927 "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301928 error = -EIO;
1929 goto error;
1930 }
1931
1932 /* Setup our intr mask. */
1933 sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
1934 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
1935 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
1936
1937 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
1938 sc->sc_imask |= ATH9K_INT_GTT;
1939
1940 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
1941 sc->sc_imask |= ATH9K_INT_CST;
1942
1943 /*
1944 * Enable MIB interrupts when there are hardware phy counters.
1945 * Note we only do this (at the moment) for station mode.
1946 */
1947 if (ath9k_hw_phycounters(sc->sc_ah) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001948 ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) ||
1949 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC)))
Sujithff37e332008-11-24 12:07:55 +05301950 sc->sc_imask |= ATH9K_INT_MIB;
1951 /*
1952 * Some hardware processes the TIM IE and fires an
1953 * interrupt when the TIM bit is set. For hardware
1954 * that does, if not overridden by configuration,
1955 * enable the TIM interrupt when operating as station.
1956 */
1957 if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001958 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) &&
Sujithff37e332008-11-24 12:07:55 +05301959 !sc->sc_config.swBeaconProcess)
1960 sc->sc_imask |= ATH9K_INT_TIM;
1961
1962 ath_setcurmode(sc, ath_chan2mode(init_channel));
1963
1964 sc->sc_flags &= ~SC_OP_INVALID;
1965
1966 /* Disable BMISS interrupt when we're not associated */
1967 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1968 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1969
1970 ieee80211_wake_queues(sc->hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001971
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301972#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301973 error = ath_start_rfkill_poll(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301974#endif
1975
Sujithff37e332008-11-24 12:07:55 +05301976error:
Sujith9c84b792008-10-29 10:17:13 +05301977 return error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001978}
1979
1980static int ath9k_tx(struct ieee80211_hw *hw,
1981 struct sk_buff *skb)
1982{
Jouni Malinen147583c2008-08-11 14:01:50 +03001983 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Sujith528f0c62008-10-29 10:14:26 +05301984 struct ath_softc *sc = hw->priv;
1985 struct ath_tx_control txctl;
1986 int hdrlen, padsize;
1987
1988 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03001989
1990 /*
1991 * As a temporary workaround, assign seq# here; this will likely need
1992 * to be cleaned up to work better with Beacon transmission and virtual
1993 * BSSes.
1994 */
1995 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1996 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1997 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
1998 sc->seq_no += 0x10;
1999 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
2000 hdr->seq_ctrl |= cpu_to_le16(sc->seq_no);
2001 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002002
2003 /* Add the padding after the header if this is not already done */
2004 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
2005 if (hdrlen & 3) {
2006 padsize = hdrlen % 4;
2007 if (skb_headroom(skb) < padsize)
2008 return -1;
2009 skb_push(skb, padsize);
2010 memmove(skb->data, skb->data + padsize, hdrlen);
2011 }
2012
Sujith528f0c62008-10-29 10:14:26 +05302013 /* Check if a tx queue is available */
2014
2015 txctl.txq = ath_test_get_txq(sc, skb);
2016 if (!txctl.txq)
2017 goto exit;
2018
Sujith04bd46382008-11-28 22:18:05 +05302019 DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002020
Sujith528f0c62008-10-29 10:14:26 +05302021 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd46382008-11-28 22:18:05 +05302022 DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05302023 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002024 }
2025
2026 return 0;
Sujith528f0c62008-10-29 10:14:26 +05302027exit:
2028 dev_kfree_skb_any(skb);
2029 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002030}
2031
2032static void ath9k_stop(struct ieee80211_hw *hw)
2033{
2034 struct ath_softc *sc = hw->priv;
Sujith9c84b792008-10-29 10:17:13 +05302035
2036 if (sc->sc_flags & SC_OP_INVALID) {
Sujith04bd46382008-11-28 22:18:05 +05302037 DPRINTF(sc, ATH_DBG_ANY, "Device not present\n");
Sujith9c84b792008-10-29 10:17:13 +05302038 return;
2039 }
2040
Sujith04bd46382008-11-28 22:18:05 +05302041 DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n");
Sujithff37e332008-11-24 12:07:55 +05302042
2043 ieee80211_stop_queues(sc->hw);
2044
2045 /* make sure h/w will not generate any interrupt
2046 * before setting the invalid flag. */
2047 ath9k_hw_set_interrupts(sc->sc_ah, 0);
2048
2049 if (!(sc->sc_flags & SC_OP_INVALID)) {
2050 ath_draintxq(sc, false);
2051 ath_stoprecv(sc);
2052 ath9k_hw_phy_disable(sc->sc_ah);
2053 } else
2054 sc->sc_rxlink = NULL;
2055
2056#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
2057 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2058 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2059#endif
2060 /* disable HAL and put h/w to sleep */
2061 ath9k_hw_disable(sc->sc_ah);
2062 ath9k_hw_configpcipowersave(sc->sc_ah, 1);
2063
2064 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002065
Sujith04bd46382008-11-28 22:18:05 +05302066 DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002067}
2068
2069static int ath9k_add_interface(struct ieee80211_hw *hw,
2070 struct ieee80211_if_init_conf *conf)
2071{
2072 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302073 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08002074 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002075
2076 /* Support only vap for now */
2077
2078 if (sc->sc_nvaps)
2079 return -ENOBUFS;
2080
2081 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002082 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002083 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002084 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002085 case NL80211_IFTYPE_ADHOC:
Colin McCabed97809d2008-12-01 13:38:55 -08002086 ic_opmode = NL80211_IFTYPE_ADHOC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002087 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002088 case NL80211_IFTYPE_AP:
Colin McCabed97809d2008-12-01 13:38:55 -08002089 ic_opmode = NL80211_IFTYPE_AP;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002090 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002091 default:
2092 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302093 "Interface type %d not yet supported\n", conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002094 return -EOPNOTSUPP;
2095 }
2096
Sujith04bd46382008-11-28 22:18:05 +05302097 DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002098
Sujith5640b082008-10-29 10:16:06 +05302099 /* Set the VAP opmode */
2100 avp->av_opmode = ic_opmode;
2101 avp->av_bslot = -1;
2102
Colin McCabed97809d2008-12-01 13:38:55 -08002103 if (ic_opmode == NL80211_IFTYPE_AP)
Sujith5640b082008-10-29 10:16:06 +05302104 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2105
2106 sc->sc_vaps[0] = conf->vif;
2107 sc->sc_nvaps++;
2108
2109 /* Set the device opmode */
2110 sc->sc_ah->ah_opmode = ic_opmode;
2111
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002112 if (conf->type == NL80211_IFTYPE_AP) {
2113 /* TODO: is this a suitable place to start ANI for AP mode? */
2114 /* Start ANI */
2115 mod_timer(&sc->sc_ani.timer,
2116 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
2117 }
2118
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002119 return 0;
2120}
2121
2122static void ath9k_remove_interface(struct ieee80211_hw *hw,
2123 struct ieee80211_if_init_conf *conf)
2124{
2125 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302126 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002127
Sujith04bd46382008-11-28 22:18:05 +05302128 DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002129
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002130#ifdef CONFIG_SLOW_ANT_DIV
2131 ath_slow_ant_div_stop(&sc->sc_antdiv);
2132#endif
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002133 /* Stop ANI */
2134 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002135
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002136 /* Reclaim beacon resources */
Colin McCabed97809d2008-12-01 13:38:55 -08002137 if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP ||
2138 sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002139 ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
2140 ath_beacon_return(sc, avp);
2141 }
2142
Sujith672840a2008-08-11 14:05:08 +05302143 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002144
Sujith5640b082008-10-29 10:16:06 +05302145 sc->sc_vaps[0] = NULL;
2146 sc->sc_nvaps--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002147}
2148
Johannes Berge8975582008-10-09 12:18:51 +02002149static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002150{
2151 struct ath_softc *sc = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002152 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002153
Sujith99405f92008-11-24 12:08:35 +05302154 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
2155 struct ieee80211_channel *curchan = hw->conf.channel;
2156 int pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002157
Sujith04bd46382008-11-28 22:18:05 +05302158 DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2159 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002160
Sujith99405f92008-11-24 12:08:35 +05302161 pos = ath_get_channel(sc, curchan);
2162 if (pos == -1) {
Sujith04bd46382008-11-28 22:18:05 +05302163 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n",
2164 curchan->center_freq);
Sujith99405f92008-11-24 12:08:35 +05302165 return -EINVAL;
2166 }
2167
2168 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
2169 sc->sc_ah->ah_channels[pos].chanmode =
2170 (curchan->band == IEEE80211_BAND_2GHZ) ?
2171 CHANNEL_G : CHANNEL_A;
2172
Colin McCabed97809d2008-12-01 13:38:55 -08002173 if ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP) &&
Sujithe11602b2008-11-27 09:46:27 +05302174 (conf->ht.enabled)) {
2175 sc->tx_chan_width = (!!conf->ht.sec_chan_offset) ?
2176 ATH9K_HT_MACMODE_2040 : ATH9K_HT_MACMODE_20;
2177
2178 sc->sc_ah->ah_channels[pos].chanmode =
2179 ath_get_extchanmode(sc, curchan,
2180 conf->ht.sec_chan_offset,
2181 sc->tx_chan_width);
2182 }
2183
2184 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) {
Sujith04bd46382008-11-28 22:18:05 +05302185 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithe11602b2008-11-27 09:46:27 +05302186 return -EINVAL;
2187 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002188 }
2189
Sujith99405f92008-11-24 12:08:35 +05302190 if (changed & IEEE80211_CONF_CHANGE_HT)
2191 ath_update_chainmask(sc, conf->ht.enabled);
Sujith86b89ee2008-08-07 10:54:57 +05302192
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002193 if (changed & IEEE80211_CONF_CHANGE_POWER)
2194 sc->sc_config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002195
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002196 return 0;
2197}
2198
2199static int ath9k_config_interface(struct ieee80211_hw *hw,
2200 struct ieee80211_vif *vif,
2201 struct ieee80211_if_conf *conf)
2202{
2203 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002204 struct ath_hal *ah = sc->sc_ah;
Sujith5640b082008-10-29 10:16:06 +05302205 struct ath_vap *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002206 u32 rfilt = 0;
2207 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002208
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002209 /* TODO: Need to decide which hw opmode to use for multi-interface
2210 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02002211 if (vif->type == NL80211_IFTYPE_AP &&
Colin McCabed97809d2008-12-01 13:38:55 -08002212 ah->ah_opmode != NL80211_IFTYPE_AP) {
2213 ah->ah_opmode = NL80211_IFTYPE_STATION;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002214 ath9k_hw_setopmode(ah);
2215 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
2216 /* Request full reset to get hw opmode changed properly */
2217 sc->sc_flags |= SC_OP_FULL_RESET;
2218 }
2219
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002220 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
2221 !is_zero_ether_addr(conf->bssid)) {
2222 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002223 case NL80211_IFTYPE_STATION:
2224 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002225 /* Set BSSID */
2226 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
2227 sc->sc_curaid = 0;
2228 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
2229 sc->sc_curaid);
2230
2231 /* Set aggregation protection mode parameters */
2232 sc->sc_config.ath_aggr_prot = 0;
2233
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002234 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +05302235 "RX filter 0x%x bssid %pM aid 0x%x\n",
2236 rfilt, sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002237
2238 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05302239 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002240
2241 break;
2242 default:
2243 break;
2244 }
2245 }
2246
2247 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002248 ((vif->type == NL80211_IFTYPE_ADHOC) ||
2249 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002250 /*
2251 * Allocate and setup the beacon frame.
2252 *
2253 * Stop any previous beacon DMA. This may be
2254 * necessary, for example, when an ibss merge
2255 * causes reconfiguration; we may be called
2256 * with beacon transmission active.
2257 */
2258 ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
2259
2260 error = ath_beacon_alloc(sc, 0);
2261 if (error != 0)
2262 return error;
2263
2264 ath_beacon_sync(sc, 0);
2265 }
2266
2267 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Colin McCabed97809d2008-12-01 13:38:55 -08002268 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002269 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2270 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2271 ath9k_hw_keysetmac(sc->sc_ah,
2272 (u16)i,
2273 sc->sc_curbssid);
2274 }
2275
2276 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02002277 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002278 ath_update_chainmask(sc, 0);
2279
2280 return 0;
2281}
2282
2283#define SUPPORTED_FILTERS \
2284 (FIF_PROMISC_IN_BSS | \
2285 FIF_ALLMULTI | \
2286 FIF_CONTROL | \
2287 FIF_OTHER_BSS | \
2288 FIF_BCN_PRBRESP_PROMISC | \
2289 FIF_FCSFAIL)
2290
Sujith7dcfdcd2008-08-11 14:03:13 +05302291/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002292static void ath9k_configure_filter(struct ieee80211_hw *hw,
2293 unsigned int changed_flags,
2294 unsigned int *total_flags,
2295 int mc_count,
2296 struct dev_mc_list *mclist)
2297{
2298 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05302299 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002300
2301 changed_flags &= SUPPORTED_FILTERS;
2302 *total_flags &= SUPPORTED_FILTERS;
2303
Sujith7dcfdcd2008-08-11 14:03:13 +05302304 sc->rx_filter = *total_flags;
2305 rfilt = ath_calcrxfilter(sc);
2306 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2307
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002308 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2309 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05302310 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002311 }
Sujith7dcfdcd2008-08-11 14:03:13 +05302312
Sujith04bd46382008-11-28 22:18:05 +05302313 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx_filter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002314}
2315
2316static void ath9k_sta_notify(struct ieee80211_hw *hw,
2317 struct ieee80211_vif *vif,
2318 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002319 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002320{
2321 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002322
2323 switch (cmd) {
2324 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302325 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002326 break;
2327 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302328 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002329 break;
2330 default:
2331 break;
2332 }
2333}
2334
2335static int ath9k_conf_tx(struct ieee80211_hw *hw,
2336 u16 queue,
2337 const struct ieee80211_tx_queue_params *params)
2338{
2339 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05302340 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002341 int ret = 0, qnum;
2342
2343 if (queue >= WME_NUM_AC)
2344 return 0;
2345
2346 qi.tqi_aifs = params->aifs;
2347 qi.tqi_cwmin = params->cw_min;
2348 qi.tqi_cwmax = params->cw_max;
2349 qi.tqi_burstTime = params->txop;
2350 qnum = ath_get_hal_qnum(queue, sc);
2351
2352 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +05302353 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002354 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd46382008-11-28 22:18:05 +05302355 queue, qnum, params->aifs, params->cw_min,
2356 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002357
2358 ret = ath_txq_update(sc, qnum, &qi);
2359 if (ret)
Sujith04bd46382008-11-28 22:18:05 +05302360 DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002361
2362 return ret;
2363}
2364
2365static int ath9k_set_key(struct ieee80211_hw *hw,
2366 enum set_key_cmd cmd,
2367 const u8 *local_addr,
2368 const u8 *addr,
2369 struct ieee80211_key_conf *key)
2370{
2371 struct ath_softc *sc = hw->priv;
2372 int ret = 0;
2373
Sujith04bd46382008-11-28 22:18:05 +05302374 DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002375
2376 switch (cmd) {
2377 case SET_KEY:
2378 ret = ath_key_config(sc, addr, key);
2379 if (!ret) {
2380 set_bit(key->keyidx, sc->sc_keymap);
2381 key->hw_key_idx = key->keyidx;
2382 /* push IV and Michael MIC generation to stack */
2383 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302384 if (key->alg == ALG_TKIP)
2385 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002386 }
2387 break;
2388 case DISABLE_KEY:
2389 ath_key_delete(sc, key);
2390 clear_bit(key->keyidx, sc->sc_keymap);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002391 break;
2392 default:
2393 ret = -EINVAL;
2394 }
2395
2396 return ret;
2397}
2398
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002399static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2400 struct ieee80211_vif *vif,
2401 struct ieee80211_bss_conf *bss_conf,
2402 u32 changed)
2403{
2404 struct ath_softc *sc = hw->priv;
2405
2406 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Sujith04bd46382008-11-28 22:18:05 +05302407 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002408 bss_conf->use_short_preamble);
2409 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302410 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 else
Sujith672840a2008-08-11 14:05:08 +05302412 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002413 }
2414
2415 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Sujith04bd46382008-11-28 22:18:05 +05302416 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002417 bss_conf->use_cts_prot);
2418 if (bss_conf->use_cts_prot &&
2419 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302420 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002421 else
Sujith672840a2008-08-11 14:05:08 +05302422 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002423 }
2424
Sujith99405f92008-11-24 12:08:35 +05302425 if (changed & BSS_CHANGED_HT)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002426 ath9k_ht_conf(sc, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002427
2428 if (changed & BSS_CHANGED_ASSOC) {
Sujith04bd46382008-11-28 22:18:05 +05302429 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002430 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302431 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002432 }
2433}
2434
2435static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2436{
2437 u64 tsf;
2438 struct ath_softc *sc = hw->priv;
2439 struct ath_hal *ah = sc->sc_ah;
2440
2441 tsf = ath9k_hw_gettsf64(ah);
2442
2443 return tsf;
2444}
2445
2446static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2447{
2448 struct ath_softc *sc = hw->priv;
2449 struct ath_hal *ah = sc->sc_ah;
2450
2451 ath9k_hw_reset_tsf(ah);
2452}
2453
2454static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2455 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002456 struct ieee80211_sta *sta,
2457 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002458{
2459 struct ath_softc *sc = hw->priv;
2460 int ret = 0;
2461
2462 switch (action) {
2463 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302464 if (!(sc->sc_flags & SC_OP_RXAGGR))
2465 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002466 break;
2467 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002468 break;
2469 case IEEE80211_AMPDU_TX_START:
Sujithb5aa9bf2008-10-29 10:13:31 +05302470 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002471 if (ret < 0)
2472 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302473 "Unable to start TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002474 else
Johannes Berg17741cd2008-09-11 00:02:02 +02002475 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002476 break;
2477 case IEEE80211_AMPDU_TX_STOP:
Sujithb5aa9bf2008-10-29 10:13:31 +05302478 ret = ath_tx_aggr_stop(sc, sta, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002479 if (ret < 0)
2480 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302481 "Unable to stop TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002482
Johannes Berg17741cd2008-09-11 00:02:02 +02002483 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002484 break;
Sujith8469cde2008-10-29 10:19:28 +05302485 case IEEE80211_AMPDU_TX_RESUME:
2486 ath_tx_aggr_resume(sc, sta, tid);
2487 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002488 default:
Sujith04bd46382008-11-28 22:18:05 +05302489 DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002490 }
2491
2492 return ret;
2493}
2494
Johannes Berg4233df62008-10-13 13:35:05 +02002495static int ath9k_no_fragmentation(struct ieee80211_hw *hw, u32 value)
2496{
2497 return -EOPNOTSUPP;
2498}
2499
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002500static struct ieee80211_ops ath9k_ops = {
2501 .tx = ath9k_tx,
2502 .start = ath9k_start,
2503 .stop = ath9k_stop,
2504 .add_interface = ath9k_add_interface,
2505 .remove_interface = ath9k_remove_interface,
2506 .config = ath9k_config,
2507 .config_interface = ath9k_config_interface,
2508 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002509 .sta_notify = ath9k_sta_notify,
2510 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002511 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002512 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002513 .get_tsf = ath9k_get_tsf,
2514 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002515 .ampdu_action = ath9k_ampdu_action,
2516 .set_frag_threshold = ath9k_no_fragmentation,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002517};
2518
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002519static struct {
2520 u32 version;
2521 const char * name;
2522} ath_mac_bb_names[] = {
2523 { AR_SREV_VERSION_5416_PCI, "5416" },
2524 { AR_SREV_VERSION_5416_PCIE, "5418" },
2525 { AR_SREV_VERSION_9100, "9100" },
2526 { AR_SREV_VERSION_9160, "9160" },
2527 { AR_SREV_VERSION_9280, "9280" },
2528 { AR_SREV_VERSION_9285, "9285" }
2529};
2530
2531static struct {
2532 u16 version;
2533 const char * name;
2534} ath_rf_names[] = {
2535 { 0, "5133" },
2536 { AR_RAD5133_SREV_MAJOR, "5133" },
2537 { AR_RAD5122_SREV_MAJOR, "5122" },
2538 { AR_RAD2133_SREV_MAJOR, "2133" },
2539 { AR_RAD2122_SREV_MAJOR, "2122" }
2540};
2541
2542/*
2543 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2544 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002545static const char *
2546ath_mac_bb_name(u32 mac_bb_version)
2547{
2548 int i;
2549
2550 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2551 if (ath_mac_bb_names[i].version == mac_bb_version) {
2552 return ath_mac_bb_names[i].name;
2553 }
2554 }
2555
2556 return "????";
2557}
2558
2559/*
2560 * Return the RF name. "????" is returned if the RF is unknown.
2561 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002562static const char *
2563ath_rf_name(u16 rf_version)
2564{
2565 int i;
2566
2567 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2568 if (ath_rf_names[i].version == rf_version) {
2569 return ath_rf_names[i].name;
2570 }
2571 }
2572
2573 return "????";
2574}
2575
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002576static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2577{
2578 void __iomem *mem;
2579 struct ath_softc *sc;
2580 struct ieee80211_hw *hw;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002581 u8 csz;
2582 u32 val;
2583 int ret = 0;
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002584 struct ath_hal *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002585
2586 if (pci_enable_device(pdev))
2587 return -EIO;
2588
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002589 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2590
2591 if (ret) {
Luis R. Rodriguez1d450cf2008-11-13 19:11:56 -08002592 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002593 goto bad;
2594 }
2595
2596 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2597
2598 if (ret) {
2599 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
Sujith04bd46382008-11-28 22:18:05 +05302600 "DMA enable failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002601 goto bad;
2602 }
2603
2604 /*
2605 * Cache line size is used to size and align various
2606 * structures used to communicate with the hardware.
2607 */
2608 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
2609 if (csz == 0) {
2610 /*
2611 * Linux 2.4.18 (at least) writes the cache line size
2612 * register as a 16-bit wide register which is wrong.
2613 * We must have this setup properly for rx buffer
2614 * DMA to work so force a reasonable value here if it
2615 * comes up zero.
2616 */
2617 csz = L1_CACHE_BYTES / sizeof(u32);
2618 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
2619 }
2620 /*
2621 * The default setting of latency timer yields poor results,
2622 * set it to the value used by other systems. It may be worth
2623 * tweaking this setting more.
2624 */
2625 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
2626
2627 pci_set_master(pdev);
2628
2629 /*
2630 * Disable the RETRY_TIMEOUT register (0x41) to keep
2631 * PCI Tx retries from interfering with C3 CPU state.
2632 */
2633 pci_read_config_dword(pdev, 0x40, &val);
2634 if ((val & 0x0000ff00) != 0)
2635 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2636
2637 ret = pci_request_region(pdev, 0, "ath9k");
2638 if (ret) {
2639 dev_err(&pdev->dev, "PCI memory region reserve error\n");
2640 ret = -ENODEV;
2641 goto bad;
2642 }
2643
2644 mem = pci_iomap(pdev, 0, 0);
2645 if (!mem) {
2646 printk(KERN_ERR "PCI memory map error\n") ;
2647 ret = -EIO;
2648 goto bad1;
2649 }
2650
2651 hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops);
2652 if (hw == NULL) {
2653 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n");
2654 goto bad2;
2655 }
2656
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002657 SET_IEEE80211_DEV(hw, &pdev->dev);
2658 pci_set_drvdata(pdev, hw);
2659
2660 sc = hw->priv;
2661 sc->hw = hw;
2662 sc->pdev = pdev;
2663 sc->mem = mem;
2664
2665 if (ath_attach(id->device, sc) != 0) {
2666 ret = -ENODEV;
2667 goto bad3;
2668 }
2669
2670 /* setup interrupt service routine */
2671
2672 if (request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc)) {
2673 printk(KERN_ERR "%s: request_irq failed\n",
2674 wiphy_name(hw->wiphy));
2675 ret = -EIO;
2676 goto bad4;
2677 }
2678
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002679 ah = sc->sc_ah;
2680 printk(KERN_INFO
2681 "%s: Atheros AR%s MAC/BB Rev:%x "
2682 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002683 wiphy_name(hw->wiphy),
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002684 ath_mac_bb_name(ah->ah_macVersion),
2685 ah->ah_macRev,
2686 ath_rf_name((ah->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR)),
2687 ah->ah_phyRev,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002688 (unsigned long)mem, pdev->irq);
2689
2690 return 0;
2691bad4:
2692 ath_detach(sc);
2693bad3:
2694 ieee80211_free_hw(hw);
2695bad2:
2696 pci_iounmap(pdev, mem);
2697bad1:
2698 pci_release_region(pdev, 0);
2699bad:
2700 pci_disable_device(pdev);
2701 return ret;
2702}
2703
2704static void ath_pci_remove(struct pci_dev *pdev)
2705{
2706 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2707 struct ath_softc *sc = hw->priv;
2708
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002709 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05302710 if (pdev->irq)
2711 free_irq(pdev->irq, sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002712 pci_iounmap(pdev, sc->mem);
2713 pci_release_region(pdev, 0);
2714 pci_disable_device(pdev);
2715 ieee80211_free_hw(hw);
2716}
2717
2718#ifdef CONFIG_PM
2719
2720static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2721{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302722 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2723 struct ath_softc *sc = hw->priv;
2724
2725 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302726
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302727#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302728 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2729 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2730#endif
2731
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002732 pci_save_state(pdev);
2733 pci_disable_device(pdev);
2734 pci_set_power_state(pdev, 3);
2735
2736 return 0;
2737}
2738
2739static int ath_pci_resume(struct pci_dev *pdev)
2740{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302741 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2742 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002743 u32 val;
2744 int err;
2745
2746 err = pci_enable_device(pdev);
2747 if (err)
2748 return err;
2749 pci_restore_state(pdev);
2750 /*
2751 * Suspend/Resume resets the PCI configuration space, so we have to
2752 * re-disable the RETRY_TIMEOUT register (0x41) to keep
2753 * PCI Tx retries from interfering with C3 CPU state
2754 */
2755 pci_read_config_dword(pdev, 0x40, &val);
2756 if ((val & 0x0000ff00) != 0)
2757 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2758
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302759 /* Enable LED */
2760 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
2761 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
2762 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
2763
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302764#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302765 /*
2766 * check the h/w rfkill state on resume
2767 * and start the rfkill poll timer
2768 */
2769 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2770 queue_delayed_work(sc->hw->workqueue,
2771 &sc->rf_kill.rfkill_poll, 0);
2772#endif
2773
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002774 return 0;
2775}
2776
2777#endif /* CONFIG_PM */
2778
2779MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
2780
2781static struct pci_driver ath_pci_driver = {
2782 .name = "ath9k",
2783 .id_table = ath_pci_id_table,
2784 .probe = ath_pci_probe,
2785 .remove = ath_pci_remove,
2786#ifdef CONFIG_PM
2787 .suspend = ath_pci_suspend,
2788 .resume = ath_pci_resume,
2789#endif /* CONFIG_PM */
2790};
2791
2792static int __init init_ath_pci(void)
2793{
2794 printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
2795
2796 if (pci_register_driver(&ath_pci_driver) < 0) {
2797 printk(KERN_ERR
2798 "ath_pci: No devices found, driver not installed.\n");
2799 pci_unregister_driver(&ath_pci_driver);
2800 return -ENODEV;
2801 }
2802
2803 return 0;
2804}
2805module_init(init_ath_pci);
2806
2807static void __exit exit_ath_pci(void)
2808{
2809 pci_unregister_driver(&ath_pci_driver);
Sujith04bd46382008-11-28 22:18:05 +05302810 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002811}
2812module_exit(exit_ath_pci);