blob: 11064cae8af62aa6813e0f7d2f1eb0ebe8b71cbd [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
2 * Copyright (c) 2008 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070017#include <linux/nl80211.h>
18#include "core.h"
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +010019#include "reg.h"
Sujith2a163c62008-11-28 22:21:08 +053020#include "hw.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021
22#define ATH_PCI_VERSION "0.1"
23
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024static char *dev_info = "ath9k";
25
26MODULE_AUTHOR("Atheros Communications");
27MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
28MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
29MODULE_LICENSE("Dual BSD/GPL");
30
31static struct pci_device_id ath_pci_id_table[] __devinitdata = {
32 { PCI_VDEVICE(ATHEROS, 0x0023) }, /* PCI */
33 { PCI_VDEVICE(ATHEROS, 0x0024) }, /* PCI-E */
34 { PCI_VDEVICE(ATHEROS, 0x0027) }, /* PCI */
35 { PCI_VDEVICE(ATHEROS, 0x0029) }, /* PCI */
36 { PCI_VDEVICE(ATHEROS, 0x002A) }, /* PCI-E */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +053037 { PCI_VDEVICE(ATHEROS, 0x002B) }, /* PCI-E */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070038 { 0 }
39};
40
Sujith9757d552008-11-04 18:25:27 +053041static void ath_detach(struct ath_softc *sc);
42
Sujithff37e332008-11-24 12:07:55 +053043/* return bus cachesize in 4B word units */
44
45static void bus_read_cachesize(struct ath_softc *sc, int *csz)
46{
47 u8 u8tmp;
48
49 pci_read_config_byte(sc->pdev, PCI_CACHE_LINE_SIZE, (u8 *)&u8tmp);
50 *csz = (int)u8tmp;
51
52 /*
53 * This check was put in to avoid "unplesant" consequences if
54 * the bootrom has not fully initialized all PCI devices.
55 * Sometimes the cache line size register is not set
56 */
57
58 if (*csz == 0)
59 *csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
60}
61
62static void ath_setcurmode(struct ath_softc *sc, enum wireless_mode mode)
63{
Sujith9d8eed12008-12-12 11:59:07 +053064 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 */
Sujithb77f4832008-12-07 21:44:03 +0530350 if (sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC)
Sujithff37e332008-11-24 12:07:55 +0530351 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)) {
Sujithb77f4832008-12-07 21:44:03 +0530489 spin_lock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530490 ath_rx_tasklet(sc, 0);
Sujithb77f4832008-12-07 21:44:03 +0530491 spin_unlock_bh(&sc->rx.rxflushlock);
Sujithff37e332008-11-24 12:07:55 +0530492 }
493 /* XXX: optimize this */
494 if (status & ATH9K_INT_TX)
495 ath_tx_tasklet(sc);
496 }
497
498 /* re-enable hardware interrupt */
499 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
500}
501
502static irqreturn_t ath_isr(int irq, void *dev)
503{
504 struct ath_softc *sc = dev;
505 struct ath_hal *ah = sc->sc_ah;
506 enum ath9k_int status;
507 bool sched = false;
508
509 do {
510 if (sc->sc_flags & SC_OP_INVALID) {
511 /*
512 * The hardware is not ready/present, don't
513 * touch anything. Note this can happen early
514 * on if the IRQ is shared.
515 */
516 return IRQ_NONE;
517 }
518 if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */
519 return IRQ_NONE;
520 }
521
522 /*
523 * Figure out the reason(s) for the interrupt. Note
524 * that the hal returns a pseudo-ISR that may include
525 * bits we haven't explicitly enabled so we mask the
526 * value to insure we only process bits we requested.
527 */
528 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
529
530 status &= sc->sc_imask; /* discard unasked-for bits */
531
532 /*
533 * If there are no status bits set, then this interrupt was not
534 * for me (should have been caught above).
535 */
536 if (!status)
537 return IRQ_NONE;
538
539 sc->sc_intrstatus = status;
540
541 if (status & ATH9K_INT_FATAL) {
542 /* need a chip reset */
543 sched = true;
544 } else if (status & ATH9K_INT_RXORN) {
545 /* need a chip reset */
546 sched = true;
547 } else {
548 if (status & ATH9K_INT_SWBA) {
549 /* schedule a tasklet for beacon handling */
550 tasklet_schedule(&sc->bcon_tasklet);
551 }
552 if (status & ATH9K_INT_RXEOL) {
553 /*
554 * NB: the hardware should re-read the link when
555 * RXE bit is written, but it doesn't work
556 * at least on older hardware revs.
557 */
558 sched = true;
559 }
560
561 if (status & ATH9K_INT_TXURN)
562 /* bump tx trigger level */
563 ath9k_hw_updatetxtriglevel(ah, true);
564 /* XXX: optimize this */
565 if (status & ATH9K_INT_RX)
566 sched = true;
567 if (status & ATH9K_INT_TX)
568 sched = true;
569 if (status & ATH9K_INT_BMISS)
570 sched = true;
571 /* carrier sense timeout */
572 if (status & ATH9K_INT_CST)
573 sched = true;
574 if (status & ATH9K_INT_MIB) {
575 /*
576 * Disable interrupts until we service the MIB
577 * interrupt; otherwise it will continue to
578 * fire.
579 */
580 ath9k_hw_set_interrupts(ah, 0);
581 /*
582 * Let the hal handle the event. We assume
583 * it will clear whatever condition caused
584 * the interrupt.
585 */
586 ath9k_hw_procmibevent(ah, &sc->sc_halstats);
587 ath9k_hw_set_interrupts(ah, sc->sc_imask);
588 }
589 if (status & ATH9K_INT_TIM_TIMER) {
590 if (!(ah->ah_caps.hw_caps &
591 ATH9K_HW_CAP_AUTOSLEEP)) {
592 /* Clear RxAbort bit so that we can
593 * receive frames */
594 ath9k_hw_setrxabort(ah, 0);
595 sched = true;
596 }
597 }
598 }
599 } while (0);
600
Sujith817e11d2008-12-07 21:42:44 +0530601 ath_debug_stat_interrupt(sc, status);
602
Sujithff37e332008-11-24 12:07:55 +0530603 if (sched) {
604 /* turn off every interrupt except SWBA */
605 ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA));
606 tasklet_schedule(&sc->intr_tq);
607 }
608
609 return IRQ_HANDLED;
610}
611
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700612static int ath_get_channel(struct ath_softc *sc,
613 struct ieee80211_channel *chan)
614{
615 int i;
616
617 for (i = 0; i < sc->sc_ah->ah_nchan; i++) {
618 if (sc->sc_ah->ah_channels[i].channel == chan->center_freq)
619 return i;
620 }
621
622 return -1;
623}
624
625static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530626 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +0530627 enum nl80211_channel_type channel_type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700628{
629 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700630
631 switch (chan->band) {
632 case IEEE80211_BAND_2GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530633 switch(channel_type) {
634 case NL80211_CHAN_NO_HT:
635 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700636 chanmode = CHANNEL_G_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530637 break;
638 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639 chanmode = CHANNEL_G_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530640 break;
641 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700642 chanmode = CHANNEL_G_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530643 break;
644 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645 break;
646 case IEEE80211_BAND_5GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530647 switch(channel_type) {
648 case NL80211_CHAN_NO_HT:
649 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650 chanmode = CHANNEL_A_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530651 break;
652 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700653 chanmode = CHANNEL_A_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530654 break;
655 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700656 chanmode = CHANNEL_A_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530657 break;
658 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700659 break;
660 default:
661 break;
662 }
663
664 return chanmode;
665}
666
Sujithff37e332008-11-24 12:07:55 +0530667static void ath_key_reset(struct ath_softc *sc, u16 keyix, int freeslot)
668{
669 ath9k_hw_keyreset(sc->sc_ah, keyix);
670 if (freeslot)
671 clear_bit(keyix, sc->sc_keymap);
672}
673
674static int ath_keyset(struct ath_softc *sc, u16 keyix,
675 struct ath9k_keyval *hk, const u8 mac[ETH_ALEN])
676{
677 bool status;
678
679 status = ath9k_hw_set_keycache_entry(sc->sc_ah,
680 keyix, hk, mac, false);
681
682 return status != false;
683}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700684
685static int ath_setkey_tkip(struct ath_softc *sc,
686 struct ieee80211_key_conf *key,
687 struct ath9k_keyval *hk,
688 const u8 *addr)
689{
690 u8 *key_rxmic = NULL;
691 u8 *key_txmic = NULL;
692
693 key_txmic = key->key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
694 key_rxmic = key->key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
695
696 if (addr == NULL) {
697 /* Group key installation */
698 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
699 return ath_keyset(sc, key->keyidx, hk, addr);
700 }
701 if (!sc->sc_splitmic) {
702 /*
703 * data key goes at first index,
704 * the hal handles the MIC keys at index+64.
705 */
706 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
707 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
708 return ath_keyset(sc, key->keyidx, hk, addr);
709 }
710 /*
711 * TX key goes at first index, RX key at +32.
712 * The hal handles the MIC keys at index+64.
713 */
714 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
715 if (!ath_keyset(sc, key->keyidx, hk, NULL)) {
716 /* Txmic entry failed. No need to proceed further */
717 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +0530718 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700719 return 0;
720 }
721
722 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
723 /* XXX delete tx key on failure? */
724 return ath_keyset(sc, key->keyidx+32, hk, addr);
725}
726
727static int ath_key_config(struct ath_softc *sc,
728 const u8 *addr,
729 struct ieee80211_key_conf *key)
730{
731 struct ieee80211_vif *vif;
732 struct ath9k_keyval hk;
733 const u8 *mac = NULL;
734 int ret = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200735 enum nl80211_iftype opmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700736
737 memset(&hk, 0, sizeof(hk));
738
739 switch (key->alg) {
740 case ALG_WEP:
741 hk.kv_type = ATH9K_CIPHER_WEP;
742 break;
743 case ALG_TKIP:
744 hk.kv_type = ATH9K_CIPHER_TKIP;
745 break;
746 case ALG_CCMP:
747 hk.kv_type = ATH9K_CIPHER_AES_CCM;
748 break;
749 default:
750 return -EINVAL;
751 }
752
753 hk.kv_len = key->keylen;
754 memcpy(hk.kv_val, key->key, key->keylen);
755
756 if (!sc->sc_vaps[0])
757 return -EIO;
758
Sujith5640b082008-10-29 10:16:06 +0530759 vif = sc->sc_vaps[0];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700760 opmode = vif->type;
761
762 /*
763 * Strategy:
Colin McCabed97809d2008-12-01 13:38:55 -0800764 * For STA mc tx, we will not setup a key at
765 * all since we never tx mc.
766 *
767 * For STA mc rx, we will use the keyID.
768 *
769 * For ADHOC mc tx, we will use the keyID, and no macaddr.
770 *
771 * For ADHOC mc rx, we will alloc a slot and plumb the mac of
772 * the peer node.
773 * BUT we will plumb a cleartext key so that we can do
774 * per-Sta default key table lookup in software.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 */
776 if (is_broadcast_ether_addr(addr)) {
777 switch (opmode) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200778 case NL80211_IFTYPE_STATION:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 /* default key: could be group WPA key
780 * or could be static WEP key */
781 mac = NULL;
782 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200783 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200785 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700786 break;
787 default:
788 ASSERT(0);
789 break;
790 }
791 } else {
792 mac = addr;
793 }
794
795 if (key->alg == ALG_TKIP)
796 ret = ath_setkey_tkip(sc, key, &hk, mac);
797 else
798 ret = ath_keyset(sc, key->keyidx, &hk, mac);
799
800 if (!ret)
801 return -EIO;
802
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803 return 0;
804}
805
806static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
807{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700808 int freeslot;
809
Sujithff9b6622008-08-14 13:27:16 +0530810 freeslot = (key->keyidx >= 4) ? 1 : 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700811 ath_key_reset(sc, key->keyidx, freeslot);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700812}
813
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200814static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700815{
Sujith60653672008-08-14 13:28:02 +0530816#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
817#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700818
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200819 ht_info->ht_supported = true;
820 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
821 IEEE80211_HT_CAP_SM_PS |
822 IEEE80211_HT_CAP_SGI_40 |
823 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700824
Sujith60653672008-08-14 13:28:02 +0530825 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
826 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200827 /* set up supported mcs set */
828 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
829 ht_info->mcs.rx_mask[0] = 0xff;
830 ht_info->mcs.rx_mask[1] = 0xff;
831 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700832}
833
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530834static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530835 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530836 struct ieee80211_bss_conf *bss_conf)
837{
Sujith5640b082008-10-29 10:16:06 +0530838 struct ath_vap *avp = (void *)vif->drv_priv;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530839
840 if (bss_conf->assoc) {
Sujith094d05d2008-12-12 11:57:43 +0530841 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d, bssid: %pM\n",
842 bss_conf->aid, sc->sc_curbssid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530843
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530844 /* New association, store aid */
Colin McCabed97809d2008-12-01 13:38:55 -0800845 if (avp->av_opmode == NL80211_IFTYPE_STATION) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530846 sc->sc_curaid = bss_conf->aid;
847 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
848 sc->sc_curaid);
849 }
850
851 /* Configure the beacon */
852 ath_beacon_config(sc, 0);
853 sc->sc_flags |= SC_OP_BEACONS;
854
855 /* Reset rssi stats */
856 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
857 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
858 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
859 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
860
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700861 /* Start ANI */
862 mod_timer(&sc->sc_ani.timer,
863 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
864
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530865 } else {
Sujith04bd46382008-11-28 22:18:05 +0530866 DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530867 sc->sc_curaid = 0;
868 }
869}
870
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530871/********************************/
872/* LED functions */
873/********************************/
874
875static void ath_led_brightness(struct led_classdev *led_cdev,
876 enum led_brightness brightness)
877{
878 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
879 struct ath_softc *sc = led->sc;
880
881 switch (brightness) {
882 case LED_OFF:
883 if (led->led_type == ATH_LED_ASSOC ||
884 led->led_type == ATH_LED_RADIO)
885 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
886 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
887 (led->led_type == ATH_LED_RADIO) ? 1 :
888 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
889 break;
890 case LED_FULL:
891 if (led->led_type == ATH_LED_ASSOC)
892 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
893 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
894 break;
895 default:
896 break;
897 }
898}
899
900static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
901 char *trigger)
902{
903 int ret;
904
905 led->sc = sc;
906 led->led_cdev.name = led->name;
907 led->led_cdev.default_trigger = trigger;
908 led->led_cdev.brightness_set = ath_led_brightness;
909
910 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
911 if (ret)
912 DPRINTF(sc, ATH_DBG_FATAL,
913 "Failed to register led:%s", led->name);
914 else
915 led->registered = 1;
916 return ret;
917}
918
919static void ath_unregister_led(struct ath_led *led)
920{
921 if (led->registered) {
922 led_classdev_unregister(&led->led_cdev);
923 led->registered = 0;
924 }
925}
926
927static void ath_deinit_leds(struct ath_softc *sc)
928{
929 ath_unregister_led(&sc->assoc_led);
930 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
931 ath_unregister_led(&sc->tx_led);
932 ath_unregister_led(&sc->rx_led);
933 ath_unregister_led(&sc->radio_led);
934 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
935}
936
937static void ath_init_leds(struct ath_softc *sc)
938{
939 char *trigger;
940 int ret;
941
942 /* Configure gpio 1 for output */
943 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
944 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
945 /* LED off, active low */
946 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
947
948 trigger = ieee80211_get_radio_led_name(sc->hw);
949 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
950 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
951 ret = ath_register_led(sc, &sc->radio_led, trigger);
952 sc->radio_led.led_type = ATH_LED_RADIO;
953 if (ret)
954 goto fail;
955
956 trigger = ieee80211_get_assoc_led_name(sc->hw);
957 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
958 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
959 ret = ath_register_led(sc, &sc->assoc_led, trigger);
960 sc->assoc_led.led_type = ATH_LED_ASSOC;
961 if (ret)
962 goto fail;
963
964 trigger = ieee80211_get_tx_led_name(sc->hw);
965 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
966 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
967 ret = ath_register_led(sc, &sc->tx_led, trigger);
968 sc->tx_led.led_type = ATH_LED_TX;
969 if (ret)
970 goto fail;
971
972 trigger = ieee80211_get_rx_led_name(sc->hw);
973 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
974 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
975 ret = ath_register_led(sc, &sc->rx_led, trigger);
976 sc->rx_led.led_type = ATH_LED_RX;
977 if (ret)
978 goto fail;
979
980 return;
981
982fail:
983 ath_deinit_leds(sc);
984}
985
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +0530986#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +0530987
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +0530988/*******************/
989/* Rfkill */
990/*******************/
991
992static void ath_radio_enable(struct ath_softc *sc)
993{
994 struct ath_hal *ah = sc->sc_ah;
995 int status;
996
997 spin_lock_bh(&sc->sc_resetlock);
998 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +0530999 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301000 sc->sc_tx_chainmask,
1001 sc->sc_rx_chainmask,
1002 sc->sc_ht_extprotspacing,
1003 false, &status)) {
1004 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301005 "Unable to reset channel %u (%uMhz) "
1006 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301007 ath9k_hw_mhz2ieee(ah,
1008 ah->ah_curchan->channel,
1009 ah->ah_curchan->channelFlags),
1010 ah->ah_curchan->channel,
1011 ah->ah_curchan->channelFlags, status);
1012 }
1013 spin_unlock_bh(&sc->sc_resetlock);
1014
1015 ath_update_txpow(sc);
1016 if (ath_startrecv(sc) != 0) {
1017 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301018 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301019 return;
1020 }
1021
1022 if (sc->sc_flags & SC_OP_BEACONS)
1023 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1024
1025 /* Re-Enable interrupts */
1026 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1027
1028 /* Enable LED */
1029 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
1030 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1031 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
1032
1033 ieee80211_wake_queues(sc->hw);
1034}
1035
1036static void ath_radio_disable(struct ath_softc *sc)
1037{
1038 struct ath_hal *ah = sc->sc_ah;
1039 int status;
1040
1041
1042 ieee80211_stop_queues(sc->hw);
1043
1044 /* Disable LED */
1045 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
1046 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
1047
1048 /* Disable interrupts */
1049 ath9k_hw_set_interrupts(ah, 0);
1050
1051 ath_draintxq(sc, false); /* clear pending tx frames */
1052 ath_stoprecv(sc); /* turn off frame recv */
1053 ath_flushrecv(sc); /* flush recv queue */
1054
1055 spin_lock_bh(&sc->sc_resetlock);
1056 if (!ath9k_hw_reset(ah, ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301057 sc->tx_chan_width,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301058 sc->sc_tx_chainmask,
1059 sc->sc_rx_chainmask,
1060 sc->sc_ht_extprotspacing,
1061 false, &status)) {
1062 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301063 "Unable to reset channel %u (%uMhz) "
1064 "flags 0x%x hal status %u\n",
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301065 ath9k_hw_mhz2ieee(ah,
1066 ah->ah_curchan->channel,
1067 ah->ah_curchan->channelFlags),
1068 ah->ah_curchan->channel,
1069 ah->ah_curchan->channelFlags, status);
1070 }
1071 spin_unlock_bh(&sc->sc_resetlock);
1072
1073 ath9k_hw_phy_disable(ah);
1074 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1075}
1076
1077static bool ath_is_rfkill_set(struct ath_softc *sc)
1078{
1079 struct ath_hal *ah = sc->sc_ah;
1080
1081 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
1082 ah->ah_rfkill_polarity;
1083}
1084
1085/* h/w rfkill poll function */
1086static void ath_rfkill_poll(struct work_struct *work)
1087{
1088 struct ath_softc *sc = container_of(work, struct ath_softc,
1089 rf_kill.rfkill_poll.work);
1090 bool radio_on;
1091
1092 if (sc->sc_flags & SC_OP_INVALID)
1093 return;
1094
1095 radio_on = !ath_is_rfkill_set(sc);
1096
1097 /*
1098 * enable/disable radio only when there is a
1099 * state change in RF switch
1100 */
1101 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
1102 enum rfkill_state state;
1103
1104 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
1105 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
1106 : RFKILL_STATE_HARD_BLOCKED;
1107 } else if (radio_on) {
1108 ath_radio_enable(sc);
1109 state = RFKILL_STATE_UNBLOCKED;
1110 } else {
1111 ath_radio_disable(sc);
1112 state = RFKILL_STATE_HARD_BLOCKED;
1113 }
1114
1115 if (state == RFKILL_STATE_HARD_BLOCKED)
1116 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
1117 else
1118 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
1119
1120 rfkill_force_state(sc->rf_kill.rfkill, state);
1121 }
1122
1123 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
1124 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
1125}
1126
1127/* s/w rfkill handler */
1128static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
1129{
1130 struct ath_softc *sc = data;
1131
1132 switch (state) {
1133 case RFKILL_STATE_SOFT_BLOCKED:
1134 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
1135 SC_OP_RFKILL_SW_BLOCKED)))
1136 ath_radio_disable(sc);
1137 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
1138 return 0;
1139 case RFKILL_STATE_UNBLOCKED:
1140 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
1141 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
1142 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
1143 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
Sujith04bd46382008-11-28 22:18:05 +05301144 "radio as it is disabled by h/w\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301145 return -EPERM;
1146 }
1147 ath_radio_enable(sc);
1148 }
1149 return 0;
1150 default:
1151 return -EINVAL;
1152 }
1153}
1154
1155/* Init s/w rfkill */
1156static int ath_init_sw_rfkill(struct ath_softc *sc)
1157{
1158 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
1159 RFKILL_TYPE_WLAN);
1160 if (!sc->rf_kill.rfkill) {
1161 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
1162 return -ENOMEM;
1163 }
1164
1165 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
1166 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
1167 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
1168 sc->rf_kill.rfkill->data = sc;
1169 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
1170 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
1171 sc->rf_kill.rfkill->user_claim_unsupported = 1;
1172
1173 return 0;
1174}
1175
1176/* Deinitialize rfkill */
1177static void ath_deinit_rfkill(struct ath_softc *sc)
1178{
1179 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1180 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1181
1182 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
1183 rfkill_unregister(sc->rf_kill.rfkill);
1184 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
1185 sc->rf_kill.rfkill = NULL;
1186 }
1187}
Sujith9c84b792008-10-29 10:17:13 +05301188
1189static int ath_start_rfkill_poll(struct ath_softc *sc)
1190{
1191 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1192 queue_delayed_work(sc->hw->workqueue,
1193 &sc->rf_kill.rfkill_poll, 0);
1194
1195 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1196 if (rfkill_register(sc->rf_kill.rfkill)) {
1197 DPRINTF(sc, ATH_DBG_FATAL,
1198 "Unable to register rfkill\n");
1199 rfkill_free(sc->rf_kill.rfkill);
1200
1201 /* Deinitialize the device */
Senthil Balasubramanian306efdd2008-11-13 18:00:37 +05301202 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05301203 if (sc->pdev->irq)
1204 free_irq(sc->pdev->irq, sc);
Sujith9c84b792008-10-29 10:17:13 +05301205 pci_iounmap(sc->pdev, sc->mem);
1206 pci_release_region(sc->pdev, 0);
1207 pci_disable_device(sc->pdev);
Sujith9757d552008-11-04 18:25:27 +05301208 ieee80211_free_hw(sc->hw);
Sujith9c84b792008-10-29 10:17:13 +05301209 return -EIO;
1210 } else {
1211 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1212 }
1213 }
1214
1215 return 0;
1216}
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301217#endif /* CONFIG_RFKILL */
1218
Sujith9c84b792008-10-29 10:17:13 +05301219static void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301220{
1221 struct ieee80211_hw *hw = sc->hw;
Sujith9c84b792008-10-29 10:17:13 +05301222 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301223
Sujith04bd46382008-11-28 22:18:05 +05301224 DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301225
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301226#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301227 ath_deinit_rfkill(sc);
1228#endif
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301229 ath_deinit_leds(sc);
1230
1231 ieee80211_unregister_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301232 ath_rx_cleanup(sc);
1233 ath_tx_cleanup(sc);
1234
Sujith9c84b792008-10-29 10:17:13 +05301235 tasklet_kill(&sc->intr_tq);
1236 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301237
Sujith9c84b792008-10-29 10:17:13 +05301238 if (!(sc->sc_flags & SC_OP_INVALID))
1239 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301240
Sujith9c84b792008-10-29 10:17:13 +05301241 /* cleanup tx queues */
1242 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1243 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301244 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith9c84b792008-10-29 10:17:13 +05301245
1246 ath9k_hw_detach(sc->sc_ah);
Sujith826d2682008-11-28 22:20:23 +05301247 ath9k_exit_debug(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301248}
1249
Sujithff37e332008-11-24 12:07:55 +05301250static int ath_init(u16 devid, struct ath_softc *sc)
1251{
1252 struct ath_hal *ah = NULL;
1253 int status;
1254 int error = 0, i;
1255 int csz = 0;
1256
1257 /* XXX: hardware will not be ready until ath_open() being called */
1258 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301259
Sujith826d2682008-11-28 22:20:23 +05301260 if (ath9k_init_debug(sc) < 0)
1261 printk(KERN_ERR "Unable to create debugfs files\n");
Sujithff37e332008-11-24 12:07:55 +05301262
1263 spin_lock_init(&sc->sc_resetlock);
1264 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
1265 tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet,
1266 (unsigned long)sc);
1267
1268 /*
1269 * Cache line size is used to size and align various
1270 * structures used to communicate with the hardware.
1271 */
1272 bus_read_cachesize(sc, &csz);
1273 /* XXX assert csz is non-zero */
1274 sc->sc_cachelsz = csz << 2; /* convert to bytes */
1275
1276 ah = ath9k_hw_attach(devid, sc, sc->mem, &status);
1277 if (ah == NULL) {
1278 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301279 "Unable to attach hardware; HAL status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301280 error = -ENXIO;
1281 goto bad;
1282 }
1283 sc->sc_ah = ah;
1284
1285 /* Get the hardware key cache size. */
1286 sc->sc_keymax = ah->ah_caps.keycache_size;
1287 if (sc->sc_keymax > ATH_KEYMAX) {
1288 DPRINTF(sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05301289 "Warning, using only %u entries in %u key cache\n",
1290 ATH_KEYMAX, sc->sc_keymax);
Sujithff37e332008-11-24 12:07:55 +05301291 sc->sc_keymax = ATH_KEYMAX;
1292 }
1293
1294 /*
1295 * Reset the key cache since some parts do not
1296 * reset the contents on initial power up.
1297 */
1298 for (i = 0; i < sc->sc_keymax; i++)
1299 ath9k_hw_keyreset(ah, (u16) i);
1300 /*
1301 * Mark key cache slots associated with global keys
1302 * as in use. If we knew TKIP was not to be used we
1303 * could leave the +32, +64, and +32+64 slots free.
1304 * XXX only for splitmic.
1305 */
1306 for (i = 0; i < IEEE80211_WEP_NKID; i++) {
1307 set_bit(i, sc->sc_keymap);
1308 set_bit(i + 32, sc->sc_keymap);
1309 set_bit(i + 64, sc->sc_keymap);
1310 set_bit(i + 32 + 64, sc->sc_keymap);
1311 }
1312
1313 /* Collect the channel list using the default country code */
1314
1315 error = ath_setup_channels(sc);
1316 if (error)
1317 goto bad;
1318
1319 /* default to MONITOR mode */
Colin McCabed97809d2008-12-01 13:38:55 -08001320 sc->sc_ah->ah_opmode = NL80211_IFTYPE_MONITOR;
1321
Sujithff37e332008-11-24 12:07:55 +05301322
1323 /* Setup rate tables */
1324
1325 ath_rate_attach(sc);
1326 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1327 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1328
1329 /*
1330 * Allocate hardware transmit queues: one queue for
1331 * beacon frames and one data queue for each QoS
1332 * priority. Note that the hal handles reseting
1333 * these queues at the needed time.
1334 */
Sujithb77f4832008-12-07 21:44:03 +05301335 sc->beacon.beaconq = ath_beaconq_setup(ah);
1336 if (sc->beacon.beaconq == -1) {
Sujithff37e332008-11-24 12:07:55 +05301337 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301338 "Unable to setup a beacon xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301339 error = -EIO;
1340 goto bad2;
1341 }
Sujithb77f4832008-12-07 21:44:03 +05301342 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1343 if (sc->beacon.cabq == NULL) {
Sujithff37e332008-11-24 12:07:55 +05301344 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301345 "Unable to setup CAB xmit queue\n");
Sujithff37e332008-11-24 12:07:55 +05301346 error = -EIO;
1347 goto bad2;
1348 }
1349
1350 sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME;
1351 ath_cabq_update(sc);
1352
Sujithb77f4832008-12-07 21:44:03 +05301353 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
1354 sc->tx.hwq_map[i] = -1;
Sujithff37e332008-11-24 12:07:55 +05301355
1356 /* Setup data queues */
1357 /* NB: ensure BK queue is the lowest priority h/w queue */
1358 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
1359 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301360 "Unable to setup xmit queue for BK traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301361 error = -EIO;
1362 goto bad2;
1363 }
1364
1365 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
1366 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301367 "Unable to setup xmit queue for BE traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301368 error = -EIO;
1369 goto bad2;
1370 }
1371 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
1372 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301373 "Unable to setup xmit queue for VI traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301374 error = -EIO;
1375 goto bad2;
1376 }
1377 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
1378 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301379 "Unable to setup xmit queue for VO traffic\n");
Sujithff37e332008-11-24 12:07:55 +05301380 error = -EIO;
1381 goto bad2;
1382 }
1383
1384 /* Initializes the noise floor to a reasonable default value.
1385 * Later on this will be updated during ANI processing. */
1386
1387 sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1388 setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc);
1389
1390 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1391 ATH9K_CIPHER_TKIP, NULL)) {
1392 /*
1393 * Whether we should enable h/w TKIP MIC.
1394 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1395 * report WMM capable, so it's always safe to turn on
1396 * TKIP MIC in this case.
1397 */
1398 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1399 0, 1, NULL);
1400 }
1401
1402 /*
1403 * Check whether the separate key cache entries
1404 * are required to handle both tx+rx MIC keys.
1405 * With split mic keys the number of stations is limited
1406 * to 27 otherwise 59.
1407 */
1408 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1409 ATH9K_CIPHER_TKIP, NULL)
1410 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1411 ATH9K_CIPHER_MIC, NULL)
1412 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1413 0, NULL))
1414 sc->sc_splitmic = 1;
1415
1416 /* turn on mcast key search if possible */
1417 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1418 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1419 1, NULL);
1420
1421 sc->sc_config.txpowlimit = ATH_TXPOWER_MAX;
1422 sc->sc_config.txpowlimit_override = 0;
1423
1424 /* 11n Capabilities */
1425 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1426 sc->sc_flags |= SC_OP_TXAGGR;
1427 sc->sc_flags |= SC_OP_RXAGGR;
1428 }
1429
1430 sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask;
1431 sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask;
1432
1433 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
Sujithb77f4832008-12-07 21:44:03 +05301434 sc->rx.defant = ath9k_hw_getdefantenna(ah);
Sujithff37e332008-11-24 12:07:55 +05301435
1436 ath9k_hw_getmac(ah, sc->sc_myaddr);
1437 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) {
1438 ath9k_hw_getbssidmask(ah, sc->sc_bssidmask);
1439 ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask);
1440 ath9k_hw_setbssidmask(ah, sc->sc_bssidmask);
1441 }
1442
Sujithb77f4832008-12-07 21:44:03 +05301443 sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
Sujithff37e332008-11-24 12:07:55 +05301444
1445 /* initialize beacon slots */
Sujithb77f4832008-12-07 21:44:03 +05301446 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++)
1447 sc->beacon.bslot[i] = ATH_IF_ID_ANY;
Sujithff37e332008-11-24 12:07:55 +05301448
1449 /* save MISC configurations */
1450 sc->sc_config.swBeaconProcess = 1;
1451
Sujithff37e332008-11-24 12:07:55 +05301452 /* setup channels and rates */
1453
1454 sc->sbands[IEEE80211_BAND_2GHZ].channels =
1455 sc->channels[IEEE80211_BAND_2GHZ];
1456 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1457 sc->rates[IEEE80211_BAND_2GHZ];
1458 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
1459
1460 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
1461 sc->sbands[IEEE80211_BAND_5GHZ].channels =
1462 sc->channels[IEEE80211_BAND_5GHZ];
1463 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1464 sc->rates[IEEE80211_BAND_5GHZ];
1465 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
1466 }
1467
1468 return 0;
1469bad2:
1470 /* cleanup tx queues */
1471 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1472 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301473 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujithff37e332008-11-24 12:07:55 +05301474bad:
1475 if (ah)
1476 ath9k_hw_detach(ah);
1477
1478 return error;
1479}
1480
Sujith9c84b792008-10-29 10:17:13 +05301481static int ath_attach(u16 devid, struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301482{
1483 struct ieee80211_hw *hw = sc->hw;
1484 int error = 0;
1485
Sujith04bd46382008-11-28 22:18:05 +05301486 DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301487
1488 error = ath_init(devid, sc);
1489 if (error != 0)
1490 return error;
1491
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301492 /* get mac address from hardware and set in mac80211 */
1493
1494 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
1495
Sujith9c84b792008-10-29 10:17:13 +05301496 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1497 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1498 IEEE80211_HW_SIGNAL_DBM |
1499 IEEE80211_HW_AMPDU_AGGREGATION;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301500
Sujith9c84b792008-10-29 10:17:13 +05301501 hw->wiphy->interface_modes =
1502 BIT(NL80211_IFTYPE_AP) |
1503 BIT(NL80211_IFTYPE_STATION) |
1504 BIT(NL80211_IFTYPE_ADHOC);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301505
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301506 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301507 hw->max_rates = 4;
1508 hw->max_rate_tries = ATH_11N_TXMAXTRY;
Sujith528f0c62008-10-29 10:14:26 +05301509 hw->sta_data_size = sizeof(struct ath_node);
Sujith5640b082008-10-29 10:16:06 +05301510 hw->vif_data_size = sizeof(struct ath_vap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301511
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301512 hw->rate_control_algorithm = "ath9k_rate_control";
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301513
Sujith9c84b792008-10-29 10:17:13 +05301514 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) {
1515 setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
1516 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1517 setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
1518 }
1519
1520 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ];
1521 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes))
1522 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1523 &sc->sbands[IEEE80211_BAND_5GHZ];
1524
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301525 /* initialize tx/rx engine */
1526 error = ath_tx_init(sc, ATH_TXBUF);
1527 if (error != 0)
1528 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301529
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301530 error = ath_rx_init(sc, ATH_RXBUF);
1531 if (error != 0)
1532 goto detach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301533
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301534#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301535 /* Initialze h/w Rfkill */
1536 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1537 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
1538
1539 /* Initialize s/w rfkill */
1540 if (ath_init_sw_rfkill(sc))
1541 goto detach;
1542#endif
1543
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301544 error = ieee80211_register_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301545
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301546 /* Initialize LED control */
1547 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301548
1549 return 0;
1550detach:
1551 ath_detach(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301552 return error;
1553}
1554
Sujithff37e332008-11-24 12:07:55 +05301555int ath_reset(struct ath_softc *sc, bool retry_tx)
1556{
1557 struct ath_hal *ah = sc->sc_ah;
1558 int status;
1559 int error = 0;
1560
1561 ath9k_hw_set_interrupts(ah, 0);
1562 ath_draintxq(sc, retry_tx);
1563 ath_stoprecv(sc);
1564 ath_flushrecv(sc);
1565
1566 spin_lock_bh(&sc->sc_resetlock);
1567 if (!ath9k_hw_reset(ah, sc->sc_ah->ah_curchan,
Sujith99405f92008-11-24 12:08:35 +05301568 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301569 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1570 sc->sc_ht_extprotspacing, false, &status)) {
1571 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301572 "Unable to reset hardware; hal status %u\n", status);
Sujithff37e332008-11-24 12:07:55 +05301573 error = -EIO;
1574 }
1575 spin_unlock_bh(&sc->sc_resetlock);
1576
1577 if (ath_startrecv(sc) != 0)
Sujith04bd46382008-11-28 22:18:05 +05301578 DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301579
1580 /*
1581 * We may be doing a reset in response to a request
1582 * that changes the channel so update any state that
1583 * might change as a result.
1584 */
1585 ath_setcurmode(sc, ath_chan2mode(sc->sc_ah->ah_curchan));
1586
1587 ath_update_txpow(sc);
1588
1589 if (sc->sc_flags & SC_OP_BEACONS)
1590 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
1591
1592 ath9k_hw_set_interrupts(ah, sc->sc_imask);
1593
1594 if (retry_tx) {
1595 int i;
1596 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1597 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05301598 spin_lock_bh(&sc->tx.txq[i].axq_lock);
1599 ath_txq_schedule(sc, &sc->tx.txq[i]);
1600 spin_unlock_bh(&sc->tx.txq[i].axq_lock);
Sujithff37e332008-11-24 12:07:55 +05301601 }
1602 }
1603 }
1604
1605 return error;
1606}
1607
1608/*
1609 * This function will allocate both the DMA descriptor structure, and the
1610 * buffers it contains. These are used to contain the descriptors used
1611 * by the system.
1612*/
1613int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1614 struct list_head *head, const char *name,
1615 int nbuf, int ndesc)
1616{
1617#define DS2PHYS(_dd, _ds) \
1618 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1619#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1620#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1621
1622 struct ath_desc *ds;
1623 struct ath_buf *bf;
1624 int i, bsize, error;
1625
Sujith04bd46382008-11-28 22:18:05 +05301626 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
1627 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301628
1629 /* ath_desc must be a multiple of DWORDs */
1630 if ((sizeof(struct ath_desc) % 4) != 0) {
Sujith04bd46382008-11-28 22:18:05 +05301631 DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301632 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1633 error = -ENOMEM;
1634 goto fail;
1635 }
1636
1637 dd->dd_name = name;
1638 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1639
1640 /*
1641 * Need additional DMA memory because we can't use
1642 * descriptors that cross the 4K page boundary. Assume
1643 * one skipped descriptor per 4K page.
1644 */
1645 if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1646 u32 ndesc_skipped =
1647 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1648 u32 dma_len;
1649
1650 while (ndesc_skipped) {
1651 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1652 dd->dd_desc_len += dma_len;
1653
1654 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1655 };
1656 }
1657
1658 /* allocate descriptors */
1659 dd->dd_desc = pci_alloc_consistent(sc->pdev,
1660 dd->dd_desc_len,
1661 &dd->dd_desc_paddr);
1662 if (dd->dd_desc == NULL) {
1663 error = -ENOMEM;
1664 goto fail;
1665 }
1666 ds = dd->dd_desc;
Sujith04bd46382008-11-28 22:18:05 +05301667 DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
1668 dd->dd_name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301669 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1670
1671 /* allocate buffers */
1672 bsize = sizeof(struct ath_buf) * nbuf;
1673 bf = kmalloc(bsize, GFP_KERNEL);
1674 if (bf == NULL) {
1675 error = -ENOMEM;
1676 goto fail2;
1677 }
1678 memset(bf, 0, bsize);
1679 dd->dd_bufptr = bf;
1680
1681 INIT_LIST_HEAD(head);
1682 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1683 bf->bf_desc = ds;
1684 bf->bf_daddr = DS2PHYS(dd, ds);
1685
1686 if (!(sc->sc_ah->ah_caps.hw_caps &
1687 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1688 /*
1689 * Skip descriptor addresses which can cause 4KB
1690 * boundary crossing (addr + length) with a 32 dword
1691 * descriptor fetch.
1692 */
1693 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1694 ASSERT((caddr_t) bf->bf_desc <
1695 ((caddr_t) dd->dd_desc +
1696 dd->dd_desc_len));
1697
1698 ds += ndesc;
1699 bf->bf_desc = ds;
1700 bf->bf_daddr = DS2PHYS(dd, ds);
1701 }
1702 }
1703 list_add_tail(&bf->list, head);
1704 }
1705 return 0;
1706fail2:
1707 pci_free_consistent(sc->pdev,
1708 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1709fail:
1710 memset(dd, 0, sizeof(*dd));
1711 return error;
1712#undef ATH_DESC_4KB_BOUND_CHECK
1713#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1714#undef DS2PHYS
1715}
1716
1717void ath_descdma_cleanup(struct ath_softc *sc,
1718 struct ath_descdma *dd,
1719 struct list_head *head)
1720{
1721 pci_free_consistent(sc->pdev,
1722 dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr);
1723
1724 INIT_LIST_HEAD(head);
1725 kfree(dd->dd_bufptr);
1726 memset(dd, 0, sizeof(*dd));
1727}
1728
1729int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1730{
1731 int qnum;
1732
1733 switch (queue) {
1734 case 0:
Sujithb77f4832008-12-07 21:44:03 +05301735 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO];
Sujithff37e332008-11-24 12:07:55 +05301736 break;
1737 case 1:
Sujithb77f4832008-12-07 21:44:03 +05301738 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI];
Sujithff37e332008-11-24 12:07:55 +05301739 break;
1740 case 2:
Sujithb77f4832008-12-07 21:44:03 +05301741 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301742 break;
1743 case 3:
Sujithb77f4832008-12-07 21:44:03 +05301744 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK];
Sujithff37e332008-11-24 12:07:55 +05301745 break;
1746 default:
Sujithb77f4832008-12-07 21:44:03 +05301747 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301748 break;
1749 }
1750
1751 return qnum;
1752}
1753
1754int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
1755{
1756 int qnum;
1757
1758 switch (queue) {
1759 case ATH9K_WME_AC_VO:
1760 qnum = 0;
1761 break;
1762 case ATH9K_WME_AC_VI:
1763 qnum = 1;
1764 break;
1765 case ATH9K_WME_AC_BE:
1766 qnum = 2;
1767 break;
1768 case ATH9K_WME_AC_BK:
1769 qnum = 3;
1770 break;
1771 default:
1772 qnum = -1;
1773 break;
1774 }
1775
1776 return qnum;
1777}
1778
1779/**********************/
1780/* mac80211 callbacks */
1781/**********************/
1782
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001783static int ath9k_start(struct ieee80211_hw *hw)
1784{
1785 struct ath_softc *sc = hw->priv;
1786 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05301787 struct ath9k_channel *init_channel;
1788 int error = 0, pos, status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001789
Sujith04bd46382008-11-28 22:18:05 +05301790 DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with "
1791 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001792
1793 /* setup initial channel */
1794
1795 pos = ath_get_channel(sc, curchan);
1796 if (pos == -1) {
Sujith04bd46382008-11-28 22:18:05 +05301797 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", curchan->center_freq);
Sujith9c84b792008-10-29 10:17:13 +05301798 error = -EINVAL;
Sujithff37e332008-11-24 12:07:55 +05301799 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001800 }
1801
Sujith99405f92008-11-24 12:08:35 +05301802 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001803 sc->sc_ah->ah_channels[pos].chanmode =
1804 (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A;
Sujithff37e332008-11-24 12:07:55 +05301805 init_channel = &sc->sc_ah->ah_channels[pos];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001806
Sujithff37e332008-11-24 12:07:55 +05301807 /* Reset SERDES registers */
1808 ath9k_hw_configpcipowersave(sc->sc_ah, 0);
1809
1810 /*
1811 * The basic interface to setting the hardware in a good
1812 * state is ``reset''. On return the hardware is known to
1813 * be powered up and with interrupts disabled. This must
1814 * be followed by initialization of the appropriate bits
1815 * and then setup of the interrupt mask.
1816 */
1817 spin_lock_bh(&sc->sc_resetlock);
1818 if (!ath9k_hw_reset(sc->sc_ah, init_channel,
Sujith99405f92008-11-24 12:08:35 +05301819 sc->tx_chan_width,
Sujithff37e332008-11-24 12:07:55 +05301820 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1821 sc->sc_ht_extprotspacing, false, &status)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001822 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301823 "Unable to reset hardware; hal status %u "
1824 "(freq %u flags 0x%x)\n", status,
Sujithff37e332008-11-24 12:07:55 +05301825 init_channel->channel, init_channel->channelFlags);
1826 error = -EIO;
1827 spin_unlock_bh(&sc->sc_resetlock);
1828 goto error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001829 }
Sujithff37e332008-11-24 12:07:55 +05301830 spin_unlock_bh(&sc->sc_resetlock);
1831
1832 /*
1833 * This is needed only to setup initial state
1834 * but it's best done after a reset.
1835 */
1836 ath_update_txpow(sc);
1837
1838 /*
1839 * Setup the hardware after reset:
1840 * The receive engine is set going.
1841 * Frame transmit is handled entirely
1842 * in the frame output path; there's nothing to do
1843 * here except setup the interrupt mask.
1844 */
1845 if (ath_startrecv(sc) != 0) {
1846 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301847 "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301848 error = -EIO;
1849 goto error;
1850 }
1851
1852 /* Setup our intr mask. */
1853 sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX
1854 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
1855 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
1856
1857 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT)
1858 sc->sc_imask |= ATH9K_INT_GTT;
1859
1860 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
1861 sc->sc_imask |= ATH9K_INT_CST;
1862
1863 /*
1864 * Enable MIB interrupts when there are hardware phy counters.
1865 * Note we only do this (at the moment) for station mode.
1866 */
1867 if (ath9k_hw_phycounters(sc->sc_ah) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001868 ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) ||
1869 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC)))
Sujithff37e332008-11-24 12:07:55 +05301870 sc->sc_imask |= ATH9K_INT_MIB;
1871 /*
1872 * Some hardware processes the TIM IE and fires an
1873 * interrupt when the TIM bit is set. For hardware
1874 * that does, if not overridden by configuration,
1875 * enable the TIM interrupt when operating as station.
1876 */
1877 if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) &&
Colin McCabed97809d2008-12-01 13:38:55 -08001878 (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) &&
Sujithff37e332008-11-24 12:07:55 +05301879 !sc->sc_config.swBeaconProcess)
1880 sc->sc_imask |= ATH9K_INT_TIM;
1881
1882 ath_setcurmode(sc, ath_chan2mode(init_channel));
1883
1884 sc->sc_flags &= ~SC_OP_INVALID;
1885
1886 /* Disable BMISS interrupt when we're not associated */
1887 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1888 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask);
1889
1890 ieee80211_wake_queues(sc->hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001891
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301892#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith9c84b792008-10-29 10:17:13 +05301893 error = ath_start_rfkill_poll(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301894#endif
1895
Sujithff37e332008-11-24 12:07:55 +05301896error:
Sujith9c84b792008-10-29 10:17:13 +05301897 return error;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001898}
1899
1900static int ath9k_tx(struct ieee80211_hw *hw,
1901 struct sk_buff *skb)
1902{
Jouni Malinen147583c2008-08-11 14:01:50 +03001903 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Sujith528f0c62008-10-29 10:14:26 +05301904 struct ath_softc *sc = hw->priv;
1905 struct ath_tx_control txctl;
1906 int hdrlen, padsize;
1907
1908 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03001909
1910 /*
1911 * As a temporary workaround, assign seq# here; this will likely need
1912 * to be cleaned up to work better with Beacon transmission and virtual
1913 * BSSes.
1914 */
1915 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1916 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1917 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Sujithb77f4832008-12-07 21:44:03 +05301918 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +03001919 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +05301920 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +03001921 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001922
1923 /* Add the padding after the header if this is not already done */
1924 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1925 if (hdrlen & 3) {
1926 padsize = hdrlen % 4;
1927 if (skb_headroom(skb) < padsize)
1928 return -1;
1929 skb_push(skb, padsize);
1930 memmove(skb->data, skb->data + padsize, hdrlen);
1931 }
1932
Sujith528f0c62008-10-29 10:14:26 +05301933 /* Check if a tx queue is available */
1934
1935 txctl.txq = ath_test_get_txq(sc, skb);
1936 if (!txctl.txq)
1937 goto exit;
1938
Sujith04bd46382008-11-28 22:18:05 +05301939 DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001940
Sujith528f0c62008-10-29 10:14:26 +05301941 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd46382008-11-28 22:18:05 +05301942 DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05301943 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001944 }
1945
1946 return 0;
Sujith528f0c62008-10-29 10:14:26 +05301947exit:
1948 dev_kfree_skb_any(skb);
1949 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001950}
1951
1952static void ath9k_stop(struct ieee80211_hw *hw)
1953{
1954 struct ath_softc *sc = hw->priv;
Sujith9c84b792008-10-29 10:17:13 +05301955
1956 if (sc->sc_flags & SC_OP_INVALID) {
Sujith04bd46382008-11-28 22:18:05 +05301957 DPRINTF(sc, ATH_DBG_ANY, "Device not present\n");
Sujith9c84b792008-10-29 10:17:13 +05301958 return;
1959 }
1960
Sujith04bd46382008-11-28 22:18:05 +05301961 DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n");
Sujithff37e332008-11-24 12:07:55 +05301962
1963 ieee80211_stop_queues(sc->hw);
1964
1965 /* make sure h/w will not generate any interrupt
1966 * before setting the invalid flag. */
1967 ath9k_hw_set_interrupts(sc->sc_ah, 0);
1968
1969 if (!(sc->sc_flags & SC_OP_INVALID)) {
1970 ath_draintxq(sc, false);
1971 ath_stoprecv(sc);
1972 ath9k_hw_phy_disable(sc->sc_ah);
1973 } else
Sujithb77f4832008-12-07 21:44:03 +05301974 sc->rx.rxlink = NULL;
Sujithff37e332008-11-24 12:07:55 +05301975
1976#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
1977 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1978 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1979#endif
1980 /* disable HAL and put h/w to sleep */
1981 ath9k_hw_disable(sc->sc_ah);
1982 ath9k_hw_configpcipowersave(sc->sc_ah, 1);
1983
1984 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001985
Sujith04bd46382008-11-28 22:18:05 +05301986 DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001987}
1988
1989static int ath9k_add_interface(struct ieee80211_hw *hw,
1990 struct ieee80211_if_init_conf *conf)
1991{
1992 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05301993 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08001994 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001995
1996 /* Support only vap for now */
1997
1998 if (sc->sc_nvaps)
1999 return -ENOBUFS;
2000
2001 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002002 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002003 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002004 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002005 case NL80211_IFTYPE_ADHOC:
Colin McCabed97809d2008-12-01 13:38:55 -08002006 ic_opmode = NL80211_IFTYPE_ADHOC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002007 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002008 case NL80211_IFTYPE_AP:
Colin McCabed97809d2008-12-01 13:38:55 -08002009 ic_opmode = NL80211_IFTYPE_AP;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002010 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002011 default:
2012 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302013 "Interface type %d not yet supported\n", conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002014 return -EOPNOTSUPP;
2015 }
2016
Sujith04bd46382008-11-28 22:18:05 +05302017 DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002018
Sujith5640b082008-10-29 10:16:06 +05302019 /* Set the VAP opmode */
2020 avp->av_opmode = ic_opmode;
2021 avp->av_bslot = -1;
2022
Colin McCabed97809d2008-12-01 13:38:55 -08002023 if (ic_opmode == NL80211_IFTYPE_AP)
Sujith5640b082008-10-29 10:16:06 +05302024 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
2025
2026 sc->sc_vaps[0] = conf->vif;
2027 sc->sc_nvaps++;
2028
2029 /* Set the device opmode */
2030 sc->sc_ah->ah_opmode = ic_opmode;
2031
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002032 if (conf->type == NL80211_IFTYPE_AP) {
2033 /* TODO: is this a suitable place to start ANI for AP mode? */
2034 /* Start ANI */
2035 mod_timer(&sc->sc_ani.timer,
2036 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
2037 }
2038
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002039 return 0;
2040}
2041
2042static void ath9k_remove_interface(struct ieee80211_hw *hw,
2043 struct ieee80211_if_init_conf *conf)
2044{
2045 struct ath_softc *sc = hw->priv;
Sujith5640b082008-10-29 10:16:06 +05302046 struct ath_vap *avp = (void *)conf->vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002047
Sujith04bd46382008-11-28 22:18:05 +05302048 DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002049
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002050 /* Stop ANI */
2051 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002052
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002053 /* Reclaim beacon resources */
Colin McCabed97809d2008-12-01 13:38:55 -08002054 if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP ||
2055 sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) {
Sujithb77f4832008-12-07 21:44:03 +05302056 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002057 ath_beacon_return(sc, avp);
2058 }
2059
Sujith672840a2008-08-11 14:05:08 +05302060 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002061
Sujith5640b082008-10-29 10:16:06 +05302062 sc->sc_vaps[0] = NULL;
2063 sc->sc_nvaps--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002064}
2065
Johannes Berge8975582008-10-09 12:18:51 +02002066static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002067{
2068 struct ath_softc *sc = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002069 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002070
Sujith094d05d2008-12-12 11:57:43 +05302071 if (changed & (IEEE80211_CONF_CHANGE_CHANNEL |
2072 IEEE80211_CONF_CHANGE_HT)) {
Sujith99405f92008-11-24 12:08:35 +05302073 struct ieee80211_channel *curchan = hw->conf.channel;
2074 int pos;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002075
Sujith04bd46382008-11-28 22:18:05 +05302076 DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
2077 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002078
Sujith99405f92008-11-24 12:08:35 +05302079 pos = ath_get_channel(sc, curchan);
2080 if (pos == -1) {
Sujith04bd46382008-11-28 22:18:05 +05302081 DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n",
2082 curchan->center_freq);
Sujith99405f92008-11-24 12:08:35 +05302083 return -EINVAL;
2084 }
2085
2086 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
2087 sc->sc_ah->ah_channels[pos].chanmode =
2088 (curchan->band == IEEE80211_BAND_2GHZ) ?
2089 CHANNEL_G : CHANNEL_A;
2090
Sujith094d05d2008-12-12 11:57:43 +05302091 if (conf->ht.enabled) {
2092 if (conf->ht.channel_type == NL80211_CHAN_HT40PLUS ||
2093 conf->ht.channel_type == NL80211_CHAN_HT40MINUS)
2094 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
Sujithe11602b2008-11-27 09:46:27 +05302095
2096 sc->sc_ah->ah_channels[pos].chanmode =
2097 ath_get_extchanmode(sc, curchan,
Sujith094d05d2008-12-12 11:57:43 +05302098 conf->ht.channel_type);
Sujithe11602b2008-11-27 09:46:27 +05302099 }
2100
2101 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) {
Sujith04bd46382008-11-28 22:18:05 +05302102 DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithe11602b2008-11-27 09:46:27 +05302103 return -EINVAL;
2104 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002105
Sujith99405f92008-11-24 12:08:35 +05302106 ath_update_chainmask(sc, conf->ht.enabled);
Sujith094d05d2008-12-12 11:57:43 +05302107 }
Sujith86b89ee2008-08-07 10:54:57 +05302108
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002109 if (changed & IEEE80211_CONF_CHANGE_POWER)
2110 sc->sc_config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002111
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002112 return 0;
2113}
2114
2115static int ath9k_config_interface(struct ieee80211_hw *hw,
2116 struct ieee80211_vif *vif,
2117 struct ieee80211_if_conf *conf)
2118{
2119 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002120 struct ath_hal *ah = sc->sc_ah;
Sujith5640b082008-10-29 10:16:06 +05302121 struct ath_vap *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002122 u32 rfilt = 0;
2123 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002124
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002125 /* TODO: Need to decide which hw opmode to use for multi-interface
2126 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02002127 if (vif->type == NL80211_IFTYPE_AP &&
Colin McCabed97809d2008-12-01 13:38:55 -08002128 ah->ah_opmode != NL80211_IFTYPE_AP) {
2129 ah->ah_opmode = NL80211_IFTYPE_STATION;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002130 ath9k_hw_setopmode(ah);
2131 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
2132 /* Request full reset to get hw opmode changed properly */
2133 sc->sc_flags |= SC_OP_FULL_RESET;
2134 }
2135
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002136 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
2137 !is_zero_ether_addr(conf->bssid)) {
2138 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002139 case NL80211_IFTYPE_STATION:
2140 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002141 /* Set BSSID */
2142 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
2143 sc->sc_curaid = 0;
2144 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
2145 sc->sc_curaid);
2146
2147 /* Set aggregation protection mode parameters */
2148 sc->sc_config.ath_aggr_prot = 0;
2149
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002150 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +05302151 "RX filter 0x%x bssid %pM aid 0x%x\n",
2152 rfilt, sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002153
2154 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05302155 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002156
2157 break;
2158 default:
2159 break;
2160 }
2161 }
2162
2163 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002164 ((vif->type == NL80211_IFTYPE_ADHOC) ||
2165 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002166 /*
2167 * Allocate and setup the beacon frame.
2168 *
2169 * Stop any previous beacon DMA. This may be
2170 * necessary, for example, when an ibss merge
2171 * causes reconfiguration; we may be called
2172 * with beacon transmission active.
2173 */
Sujithb77f4832008-12-07 21:44:03 +05302174 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002175
2176 error = ath_beacon_alloc(sc, 0);
2177 if (error != 0)
2178 return error;
2179
2180 ath_beacon_sync(sc, 0);
2181 }
2182
2183 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Colin McCabed97809d2008-12-01 13:38:55 -08002184 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002185 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2186 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2187 ath9k_hw_keysetmac(sc->sc_ah,
2188 (u16)i,
2189 sc->sc_curbssid);
2190 }
2191
2192 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02002193 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002194 ath_update_chainmask(sc, 0);
2195
2196 return 0;
2197}
2198
2199#define SUPPORTED_FILTERS \
2200 (FIF_PROMISC_IN_BSS | \
2201 FIF_ALLMULTI | \
2202 FIF_CONTROL | \
2203 FIF_OTHER_BSS | \
2204 FIF_BCN_PRBRESP_PROMISC | \
2205 FIF_FCSFAIL)
2206
Sujith7dcfdcd2008-08-11 14:03:13 +05302207/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002208static void ath9k_configure_filter(struct ieee80211_hw *hw,
2209 unsigned int changed_flags,
2210 unsigned int *total_flags,
2211 int mc_count,
2212 struct dev_mc_list *mclist)
2213{
2214 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05302215 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002216
2217 changed_flags &= SUPPORTED_FILTERS;
2218 *total_flags &= SUPPORTED_FILTERS;
2219
Sujithb77f4832008-12-07 21:44:03 +05302220 sc->rx.rxfilter = *total_flags;
Sujith7dcfdcd2008-08-11 14:03:13 +05302221 rfilt = ath_calcrxfilter(sc);
2222 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
2223
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002224 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2225 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05302226 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002227 }
Sujith7dcfdcd2008-08-11 14:03:13 +05302228
Sujithb77f4832008-12-07 21:44:03 +05302229 DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx.rxfilter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002230}
2231
2232static void ath9k_sta_notify(struct ieee80211_hw *hw,
2233 struct ieee80211_vif *vif,
2234 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002235 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002236{
2237 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002238
2239 switch (cmd) {
2240 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302241 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002242 break;
2243 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302244 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002245 break;
2246 default:
2247 break;
2248 }
2249}
2250
2251static int ath9k_conf_tx(struct ieee80211_hw *hw,
2252 u16 queue,
2253 const struct ieee80211_tx_queue_params *params)
2254{
2255 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05302256 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002257 int ret = 0, qnum;
2258
2259 if (queue >= WME_NUM_AC)
2260 return 0;
2261
2262 qi.tqi_aifs = params->aifs;
2263 qi.tqi_cwmin = params->cw_min;
2264 qi.tqi_cwmax = params->cw_max;
2265 qi.tqi_burstTime = params->txop;
2266 qnum = ath_get_hal_qnum(queue, sc);
2267
2268 DPRINTF(sc, ATH_DBG_CONFIG,
Sujith04bd46382008-11-28 22:18:05 +05302269 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002270 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd46382008-11-28 22:18:05 +05302271 queue, qnum, params->aifs, params->cw_min,
2272 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002273
2274 ret = ath_txq_update(sc, qnum, &qi);
2275 if (ret)
Sujith04bd46382008-11-28 22:18:05 +05302276 DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002277
2278 return ret;
2279}
2280
2281static int ath9k_set_key(struct ieee80211_hw *hw,
2282 enum set_key_cmd cmd,
2283 const u8 *local_addr,
2284 const u8 *addr,
2285 struct ieee80211_key_conf *key)
2286{
2287 struct ath_softc *sc = hw->priv;
2288 int ret = 0;
2289
Sujith04bd46382008-11-28 22:18:05 +05302290 DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002291
2292 switch (cmd) {
2293 case SET_KEY:
2294 ret = ath_key_config(sc, addr, key);
2295 if (!ret) {
2296 set_bit(key->keyidx, sc->sc_keymap);
2297 key->hw_key_idx = key->keyidx;
2298 /* push IV and Michael MIC generation to stack */
2299 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302300 if (key->alg == ALG_TKIP)
2301 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002302 }
2303 break;
2304 case DISABLE_KEY:
2305 ath_key_delete(sc, key);
2306 clear_bit(key->keyidx, sc->sc_keymap);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002307 break;
2308 default:
2309 ret = -EINVAL;
2310 }
2311
2312 return ret;
2313}
2314
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002315static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2316 struct ieee80211_vif *vif,
2317 struct ieee80211_bss_conf *bss_conf,
2318 u32 changed)
2319{
2320 struct ath_softc *sc = hw->priv;
2321
2322 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Sujith04bd46382008-11-28 22:18:05 +05302323 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002324 bss_conf->use_short_preamble);
2325 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302326 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002327 else
Sujith672840a2008-08-11 14:05:08 +05302328 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002329 }
2330
2331 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Sujith04bd46382008-11-28 22:18:05 +05302332 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002333 bss_conf->use_cts_prot);
2334 if (bss_conf->use_cts_prot &&
2335 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302336 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002337 else
Sujith672840a2008-08-11 14:05:08 +05302338 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002339 }
2340
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002341 if (changed & BSS_CHANGED_ASSOC) {
Sujith04bd46382008-11-28 22:18:05 +05302342 DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002343 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302344 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002345 }
2346}
2347
2348static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2349{
2350 u64 tsf;
2351 struct ath_softc *sc = hw->priv;
2352 struct ath_hal *ah = sc->sc_ah;
2353
2354 tsf = ath9k_hw_gettsf64(ah);
2355
2356 return tsf;
2357}
2358
2359static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2360{
2361 struct ath_softc *sc = hw->priv;
2362 struct ath_hal *ah = sc->sc_ah;
2363
2364 ath9k_hw_reset_tsf(ah);
2365}
2366
2367static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2368 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002369 struct ieee80211_sta *sta,
2370 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002371{
2372 struct ath_softc *sc = hw->priv;
2373 int ret = 0;
2374
2375 switch (action) {
2376 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302377 if (!(sc->sc_flags & SC_OP_RXAGGR))
2378 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002379 break;
2380 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002381 break;
2382 case IEEE80211_AMPDU_TX_START:
Sujithb5aa9bf2008-10-29 10:13:31 +05302383 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002384 if (ret < 0)
2385 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302386 "Unable to start TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002387 else
Johannes Berg17741cd2008-09-11 00:02:02 +02002388 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002389 break;
2390 case IEEE80211_AMPDU_TX_STOP:
Sujithb5aa9bf2008-10-29 10:13:31 +05302391 ret = ath_tx_aggr_stop(sc, sta, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002392 if (ret < 0)
2393 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302394 "Unable to stop TX aggregation\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002395
Johannes Berg17741cd2008-09-11 00:02:02 +02002396 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002397 break;
Sujith8469cde2008-10-29 10:19:28 +05302398 case IEEE80211_AMPDU_TX_RESUME:
2399 ath_tx_aggr_resume(sc, sta, tid);
2400 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002401 default:
Sujith04bd46382008-11-28 22:18:05 +05302402 DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002403 }
2404
2405 return ret;
2406}
2407
2408static struct ieee80211_ops ath9k_ops = {
2409 .tx = ath9k_tx,
2410 .start = ath9k_start,
2411 .stop = ath9k_stop,
2412 .add_interface = ath9k_add_interface,
2413 .remove_interface = ath9k_remove_interface,
2414 .config = ath9k_config,
2415 .config_interface = ath9k_config_interface,
2416 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002417 .sta_notify = ath9k_sta_notify,
2418 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002419 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002420 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002421 .get_tsf = ath9k_get_tsf,
2422 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002423 .ampdu_action = ath9k_ampdu_action,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002424};
2425
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002426static struct {
2427 u32 version;
2428 const char * name;
2429} ath_mac_bb_names[] = {
2430 { AR_SREV_VERSION_5416_PCI, "5416" },
2431 { AR_SREV_VERSION_5416_PCIE, "5418" },
2432 { AR_SREV_VERSION_9100, "9100" },
2433 { AR_SREV_VERSION_9160, "9160" },
2434 { AR_SREV_VERSION_9280, "9280" },
2435 { AR_SREV_VERSION_9285, "9285" }
2436};
2437
2438static struct {
2439 u16 version;
2440 const char * name;
2441} ath_rf_names[] = {
2442 { 0, "5133" },
2443 { AR_RAD5133_SREV_MAJOR, "5133" },
2444 { AR_RAD5122_SREV_MAJOR, "5122" },
2445 { AR_RAD2133_SREV_MAJOR, "2133" },
2446 { AR_RAD2122_SREV_MAJOR, "2122" }
2447};
2448
2449/*
2450 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2451 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002452static const char *
2453ath_mac_bb_name(u32 mac_bb_version)
2454{
2455 int i;
2456
2457 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2458 if (ath_mac_bb_names[i].version == mac_bb_version) {
2459 return ath_mac_bb_names[i].name;
2460 }
2461 }
2462
2463 return "????";
2464}
2465
2466/*
2467 * Return the RF name. "????" is returned if the RF is unknown.
2468 */
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002469static const char *
2470ath_rf_name(u16 rf_version)
2471{
2472 int i;
2473
2474 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2475 if (ath_rf_names[i].version == rf_version) {
2476 return ath_rf_names[i].name;
2477 }
2478 }
2479
2480 return "????";
2481}
2482
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002483static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2484{
2485 void __iomem *mem;
2486 struct ath_softc *sc;
2487 struct ieee80211_hw *hw;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002488 u8 csz;
2489 u32 val;
2490 int ret = 0;
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002491 struct ath_hal *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002492
2493 if (pci_enable_device(pdev))
2494 return -EIO;
2495
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002496 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2497
2498 if (ret) {
Luis R. Rodriguez1d450cf2008-11-13 19:11:56 -08002499 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
Luis R. Rodriguez97b777d2008-11-13 19:11:57 -08002500 goto bad;
2501 }
2502
2503 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2504
2505 if (ret) {
2506 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
Sujith04bd46382008-11-28 22:18:05 +05302507 "DMA enable failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002508 goto bad;
2509 }
2510
2511 /*
2512 * Cache line size is used to size and align various
2513 * structures used to communicate with the hardware.
2514 */
2515 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
2516 if (csz == 0) {
2517 /*
2518 * Linux 2.4.18 (at least) writes the cache line size
2519 * register as a 16-bit wide register which is wrong.
2520 * We must have this setup properly for rx buffer
2521 * DMA to work so force a reasonable value here if it
2522 * comes up zero.
2523 */
2524 csz = L1_CACHE_BYTES / sizeof(u32);
2525 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
2526 }
2527 /*
2528 * The default setting of latency timer yields poor results,
2529 * set it to the value used by other systems. It may be worth
2530 * tweaking this setting more.
2531 */
2532 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
2533
2534 pci_set_master(pdev);
2535
2536 /*
2537 * Disable the RETRY_TIMEOUT register (0x41) to keep
2538 * PCI Tx retries from interfering with C3 CPU state.
2539 */
2540 pci_read_config_dword(pdev, 0x40, &val);
2541 if ((val & 0x0000ff00) != 0)
2542 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2543
2544 ret = pci_request_region(pdev, 0, "ath9k");
2545 if (ret) {
2546 dev_err(&pdev->dev, "PCI memory region reserve error\n");
2547 ret = -ENODEV;
2548 goto bad;
2549 }
2550
2551 mem = pci_iomap(pdev, 0, 0);
2552 if (!mem) {
2553 printk(KERN_ERR "PCI memory map error\n") ;
2554 ret = -EIO;
2555 goto bad1;
2556 }
2557
2558 hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops);
2559 if (hw == NULL) {
2560 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n");
2561 goto bad2;
2562 }
2563
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002564 SET_IEEE80211_DEV(hw, &pdev->dev);
2565 pci_set_drvdata(pdev, hw);
2566
2567 sc = hw->priv;
2568 sc->hw = hw;
2569 sc->pdev = pdev;
2570 sc->mem = mem;
2571
2572 if (ath_attach(id->device, sc) != 0) {
2573 ret = -ENODEV;
2574 goto bad3;
2575 }
2576
2577 /* setup interrupt service routine */
2578
2579 if (request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc)) {
2580 printk(KERN_ERR "%s: request_irq failed\n",
2581 wiphy_name(hw->wiphy));
2582 ret = -EIO;
2583 goto bad4;
2584 }
2585
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002586 ah = sc->sc_ah;
2587 printk(KERN_INFO
2588 "%s: Atheros AR%s MAC/BB Rev:%x "
2589 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002590 wiphy_name(hw->wiphy),
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01002591 ath_mac_bb_name(ah->ah_macVersion),
2592 ah->ah_macRev,
2593 ath_rf_name((ah->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR)),
2594 ah->ah_phyRev,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002595 (unsigned long)mem, pdev->irq);
2596
2597 return 0;
2598bad4:
2599 ath_detach(sc);
2600bad3:
2601 ieee80211_free_hw(hw);
2602bad2:
2603 pci_iounmap(pdev, mem);
2604bad1:
2605 pci_release_region(pdev, 0);
2606bad:
2607 pci_disable_device(pdev);
2608 return ret;
2609}
2610
2611static void ath_pci_remove(struct pci_dev *pdev)
2612{
2613 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2614 struct ath_softc *sc = hw->priv;
2615
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002616 ath_detach(sc);
Sujith9c84b792008-10-29 10:17:13 +05302617 if (pdev->irq)
2618 free_irq(pdev->irq, sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002619 pci_iounmap(pdev, sc->mem);
2620 pci_release_region(pdev, 0);
2621 pci_disable_device(pdev);
2622 ieee80211_free_hw(hw);
2623}
2624
2625#ifdef CONFIG_PM
2626
2627static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2628{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302629 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2630 struct ath_softc *sc = hw->priv;
2631
2632 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302633
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302634#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302635 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2636 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
2637#endif
2638
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002639 pci_save_state(pdev);
2640 pci_disable_device(pdev);
2641 pci_set_power_state(pdev, 3);
2642
2643 return 0;
2644}
2645
2646static int ath_pci_resume(struct pci_dev *pdev)
2647{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302648 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2649 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002650 u32 val;
2651 int err;
2652
2653 err = pci_enable_device(pdev);
2654 if (err)
2655 return err;
2656 pci_restore_state(pdev);
2657 /*
2658 * Suspend/Resume resets the PCI configuration space, so we have to
2659 * re-disable the RETRY_TIMEOUT register (0x41) to keep
2660 * PCI Tx retries from interfering with C3 CPU state
2661 */
2662 pci_read_config_dword(pdev, 0x40, &val);
2663 if ((val & 0x0000ff00) != 0)
2664 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2665
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05302666 /* Enable LED */
2667 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
2668 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
2669 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
2670
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302671#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302672 /*
2673 * check the h/w rfkill state on resume
2674 * and start the rfkill poll timer
2675 */
2676 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2677 queue_delayed_work(sc->hw->workqueue,
2678 &sc->rf_kill.rfkill_poll, 0);
2679#endif
2680
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002681 return 0;
2682}
2683
2684#endif /* CONFIG_PM */
2685
2686MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
2687
2688static struct pci_driver ath_pci_driver = {
2689 .name = "ath9k",
2690 .id_table = ath_pci_id_table,
2691 .probe = ath_pci_probe,
2692 .remove = ath_pci_remove,
2693#ifdef CONFIG_PM
2694 .suspend = ath_pci_suspend,
2695 .resume = ath_pci_resume,
2696#endif /* CONFIG_PM */
2697};
2698
2699static int __init init_ath_pci(void)
2700{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302701 int error;
2702
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002703 printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
2704
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302705 /* Register rate control algorithm */
2706 error = ath_rate_control_register();
2707 if (error != 0) {
2708 printk(KERN_ERR
2709 "Unable to register rate control algorithm: %d\n",
2710 error);
2711 ath_rate_control_unregister();
2712 return error;
2713 }
2714
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002715 if (pci_register_driver(&ath_pci_driver) < 0) {
2716 printk(KERN_ERR
2717 "ath_pci: No devices found, driver not installed.\n");
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302718 ath_rate_control_unregister();
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002719 pci_unregister_driver(&ath_pci_driver);
2720 return -ENODEV;
2721 }
2722
2723 return 0;
2724}
2725module_init(init_ath_pci);
2726
2727static void __exit exit_ath_pci(void)
2728{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05302729 ath_rate_control_unregister();
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002730 pci_unregister_driver(&ath_pci_driver);
Sujith04bd46382008-11-28 22:18:05 +05302731 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002732}
2733module_exit(exit_ath_pci);