blob: fe2888e4b8e9f5deea23f57baed99d15eab043f2 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
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>
Sujith394cf0a2009-02-09 13:26:54 +053018#include "ath9k.h"
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070019#include "btcoex.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070020
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021static char *dev_info = "ath9k";
22
23MODULE_AUTHOR("Atheros Communications");
24MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
25MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
26MODULE_LICENSE("Dual BSD/GPL");
27
Jouni Malinenb3bd89c2009-02-24 13:42:01 +020028static int modparam_nohwcrypt;
29module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444);
30MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption");
31
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080032/* We use the hw_value as an index into our private channel structure */
33
34#define CHAN2G(_freq, _idx) { \
35 .center_freq = (_freq), \
36 .hw_value = (_idx), \
Luis R. Rodriguezeeddfd92009-05-19 17:49:46 -040037 .max_power = 20, \
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080038}
39
40#define CHAN5G(_freq, _idx) { \
41 .band = IEEE80211_BAND_5GHZ, \
42 .center_freq = (_freq), \
43 .hw_value = (_idx), \
Luis R. Rodriguezeeddfd92009-05-19 17:49:46 -040044 .max_power = 20, \
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080045}
46
47/* Some 2 GHz radios are actually tunable on 2312-2732
48 * on 5 MHz steps, we support the channels which we know
49 * we have calibration data for all cards though to make
50 * this static */
51static struct ieee80211_channel ath9k_2ghz_chantable[] = {
52 CHAN2G(2412, 0), /* Channel 1 */
53 CHAN2G(2417, 1), /* Channel 2 */
54 CHAN2G(2422, 2), /* Channel 3 */
55 CHAN2G(2427, 3), /* Channel 4 */
56 CHAN2G(2432, 4), /* Channel 5 */
57 CHAN2G(2437, 5), /* Channel 6 */
58 CHAN2G(2442, 6), /* Channel 7 */
59 CHAN2G(2447, 7), /* Channel 8 */
60 CHAN2G(2452, 8), /* Channel 9 */
61 CHAN2G(2457, 9), /* Channel 10 */
62 CHAN2G(2462, 10), /* Channel 11 */
63 CHAN2G(2467, 11), /* Channel 12 */
64 CHAN2G(2472, 12), /* Channel 13 */
65 CHAN2G(2484, 13), /* Channel 14 */
66};
67
68/* Some 5 GHz radios are actually tunable on XXXX-YYYY
69 * on 5 MHz steps, we support the channels which we know
70 * we have calibration data for all cards though to make
71 * this static */
72static struct ieee80211_channel ath9k_5ghz_chantable[] = {
73 /* _We_ call this UNII 1 */
74 CHAN5G(5180, 14), /* Channel 36 */
75 CHAN5G(5200, 15), /* Channel 40 */
76 CHAN5G(5220, 16), /* Channel 44 */
77 CHAN5G(5240, 17), /* Channel 48 */
78 /* _We_ call this UNII 2 */
79 CHAN5G(5260, 18), /* Channel 52 */
80 CHAN5G(5280, 19), /* Channel 56 */
81 CHAN5G(5300, 20), /* Channel 60 */
82 CHAN5G(5320, 21), /* Channel 64 */
83 /* _We_ call this "Middle band" */
84 CHAN5G(5500, 22), /* Channel 100 */
85 CHAN5G(5520, 23), /* Channel 104 */
86 CHAN5G(5540, 24), /* Channel 108 */
87 CHAN5G(5560, 25), /* Channel 112 */
88 CHAN5G(5580, 26), /* Channel 116 */
89 CHAN5G(5600, 27), /* Channel 120 */
90 CHAN5G(5620, 28), /* Channel 124 */
91 CHAN5G(5640, 29), /* Channel 128 */
92 CHAN5G(5660, 30), /* Channel 132 */
93 CHAN5G(5680, 31), /* Channel 136 */
94 CHAN5G(5700, 32), /* Channel 140 */
95 /* _We_ call this UNII 3 */
96 CHAN5G(5745, 33), /* Channel 149 */
97 CHAN5G(5765, 34), /* Channel 153 */
98 CHAN5G(5785, 35), /* Channel 157 */
99 CHAN5G(5805, 36), /* Channel 161 */
100 CHAN5G(5825, 37), /* Channel 165 */
101};
102
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -0800103static void ath_cache_conf_rate(struct ath_softc *sc,
104 struct ieee80211_conf *conf)
Sujithff37e332008-11-24 12:07:55 +0530105{
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800106 switch (conf->channel->band) {
107 case IEEE80211_BAND_2GHZ:
108 if (conf_is_ht20(conf))
109 sc->cur_rate_table =
110 sc->hw_rate_table[ATH9K_MODE_11NG_HT20];
111 else if (conf_is_ht40_minus(conf))
112 sc->cur_rate_table =
113 sc->hw_rate_table[ATH9K_MODE_11NG_HT40MINUS];
114 else if (conf_is_ht40_plus(conf))
115 sc->cur_rate_table =
116 sc->hw_rate_table[ATH9K_MODE_11NG_HT40PLUS];
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800117 else
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800118 sc->cur_rate_table =
119 sc->hw_rate_table[ATH9K_MODE_11G];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800120 break;
121 case IEEE80211_BAND_5GHZ:
122 if (conf_is_ht20(conf))
123 sc->cur_rate_table =
124 sc->hw_rate_table[ATH9K_MODE_11NA_HT20];
125 else if (conf_is_ht40_minus(conf))
126 sc->cur_rate_table =
127 sc->hw_rate_table[ATH9K_MODE_11NA_HT40MINUS];
128 else if (conf_is_ht40_plus(conf))
129 sc->cur_rate_table =
130 sc->hw_rate_table[ATH9K_MODE_11NA_HT40PLUS];
131 else
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800132 sc->cur_rate_table =
133 sc->hw_rate_table[ATH9K_MODE_11A];
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800134 break;
135 default:
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -0800136 BUG_ON(1);
Luis R. Rodriguez030bb492008-12-23 15:58:37 -0800137 break;
138 }
Sujithff37e332008-11-24 12:07:55 +0530139}
140
141static void ath_update_txpow(struct ath_softc *sc)
142{
Sujithcbe61d82009-02-09 13:27:12 +0530143 struct ath_hw *ah = sc->sc_ah;
Sujithff37e332008-11-24 12:07:55 +0530144 u32 txpow;
145
Sujith17d79042009-02-09 13:27:03 +0530146 if (sc->curtxpow != sc->config.txpowlimit) {
147 ath9k_hw_set_txpowerlimit(ah, sc->config.txpowlimit);
Sujithff37e332008-11-24 12:07:55 +0530148 /* read back in case value is clamped */
149 ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow);
Sujith17d79042009-02-09 13:27:03 +0530150 sc->curtxpow = txpow;
Sujithff37e332008-11-24 12:07:55 +0530151 }
152}
153
154static u8 parse_mpdudensity(u8 mpdudensity)
155{
156 /*
157 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
158 * 0 for no restriction
159 * 1 for 1/4 us
160 * 2 for 1/2 us
161 * 3 for 1 us
162 * 4 for 2 us
163 * 5 for 4 us
164 * 6 for 8 us
165 * 7 for 16 us
166 */
167 switch (mpdudensity) {
168 case 0:
169 return 0;
170 case 1:
171 case 2:
172 case 3:
173 /* Our lower layer calculations limit our precision to
174 1 microsecond */
175 return 1;
176 case 4:
177 return 2;
178 case 5:
179 return 4;
180 case 6:
181 return 8;
182 case 7:
183 return 16;
184 default:
185 return 0;
186 }
187}
188
189static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band)
190{
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400191 const struct ath_rate_table *rate_table = NULL;
Sujithff37e332008-11-24 12:07:55 +0530192 struct ieee80211_supported_band *sband;
193 struct ieee80211_rate *rate;
194 int i, maxrates;
195
196 switch (band) {
197 case IEEE80211_BAND_2GHZ:
198 rate_table = sc->hw_rate_table[ATH9K_MODE_11G];
199 break;
200 case IEEE80211_BAND_5GHZ:
201 rate_table = sc->hw_rate_table[ATH9K_MODE_11A];
202 break;
203 default:
204 break;
205 }
206
207 if (rate_table == NULL)
208 return;
209
210 sband = &sc->sbands[band];
211 rate = sc->rates[band];
212
213 if (rate_table->rate_cnt > ATH_RATE_MAX)
214 maxrates = ATH_RATE_MAX;
215 else
216 maxrates = rate_table->rate_cnt;
217
218 for (i = 0; i < maxrates; i++) {
219 rate[i].bitrate = rate_table->info[i].ratekbps / 100;
220 rate[i].hw_value = rate_table->info[i].ratecode;
Sujithf46730d2009-01-27 13:51:03 +0530221 if (rate_table->info[i].short_preamble) {
222 rate[i].hw_value_short = rate_table->info[i].ratecode |
223 rate_table->info[i].short_preamble;
224 rate[i].flags = IEEE80211_RATE_SHORT_PREAMBLE;
225 }
Sujithff37e332008-11-24 12:07:55 +0530226 sband->n_bitrates++;
Sujithf46730d2009-01-27 13:51:03 +0530227
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700228 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "Rate: %2dMbps, ratecode: %2d\n",
Sujith04bd4632008-11-28 22:18:05 +0530229 rate[i].bitrate / 10, rate[i].hw_value);
Sujithff37e332008-11-24 12:07:55 +0530230 }
231}
232
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530233static struct ath9k_channel *ath_get_curchannel(struct ath_softc *sc,
234 struct ieee80211_hw *hw)
235{
236 struct ieee80211_channel *curchan = hw->conf.channel;
237 struct ath9k_channel *channel;
238 u8 chan_idx;
239
240 chan_idx = curchan->hw_value;
241 channel = &sc->sc_ah->channels[chan_idx];
242 ath9k_update_ichannel(sc, hw, channel);
243 return channel;
244}
245
Sujithff37e332008-11-24 12:07:55 +0530246/*
247 * Set/change channels. If the channel is really being changed, it's done
248 * by reseting the chip. To accomplish this we must first cleanup any pending
249 * DMA, then restart stuff.
250*/
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200251int ath_set_channel(struct ath_softc *sc, struct ieee80211_hw *hw,
252 struct ath9k_channel *hchan)
Sujithff37e332008-11-24 12:07:55 +0530253{
Sujithcbe61d82009-02-09 13:27:12 +0530254 struct ath_hw *ah = sc->sc_ah;
Sujithff37e332008-11-24 12:07:55 +0530255 bool fastcc = true, stopped;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800256 struct ieee80211_channel *channel = hw->conf.channel;
257 int r;
Sujithff37e332008-11-24 12:07:55 +0530258
259 if (sc->sc_flags & SC_OP_INVALID)
260 return -EIO;
261
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +0530262 ath9k_ps_wakeup(sc);
263
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800264 /*
265 * This is only performed if the channel settings have
266 * actually changed.
267 *
268 * To switch channels clear any pending DMA operations;
269 * wait long enough for the RX fifo to drain, reset the
270 * hardware at the new frequency, and then re-enable
271 * the relevant bits of the h/w.
272 */
273 ath9k_hw_set_interrupts(ah, 0);
Sujith043a0402009-01-16 21:38:47 +0530274 ath_drain_all_txq(sc, false);
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800275 stopped = ath_stoprecv(sc);
Sujithff37e332008-11-24 12:07:55 +0530276
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800277 /* XXX: do not flush receive queue here. We don't want
278 * to flush data frames already in queue because of
279 * changing channel. */
Sujithff37e332008-11-24 12:07:55 +0530280
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800281 if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET))
282 fastcc = false;
Sujithff37e332008-11-24 12:07:55 +0530283
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700284 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG,
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800285 "(%u MHz) -> (%u MHz), chanwidth: %d\n",
Sujith2660b812009-02-09 13:27:26 +0530286 sc->sc_ah->curchan->channel,
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800287 channel->center_freq, sc->tx_chan_width);
Sujith99405f92008-11-24 12:08:35 +0530288
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800289 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800290
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800291 r = ath9k_hw_reset(ah, hchan, fastcc);
292 if (r) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700293 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800294 "Unable to reset channel (%u Mhz) "
Vasanthakumar Thiagarajan6b457842009-05-15 18:59:20 +0530295 "reset status %d\n",
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800296 channel->center_freq, r);
Sujithff37e332008-11-24 12:07:55 +0530297 spin_unlock_bh(&sc->sc_resetlock);
Gabor Juhos39892792009-06-15 17:49:09 +0200298 goto ps_restore;
Sujithff37e332008-11-24 12:07:55 +0530299 }
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800300 spin_unlock_bh(&sc->sc_resetlock);
301
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800302 sc->sc_flags &= ~SC_OP_FULL_RESET;
303
304 if (ath_startrecv(sc) != 0) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700305 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800306 "Unable to restart recv logic\n");
Gabor Juhos39892792009-06-15 17:49:09 +0200307 r = -EIO;
308 goto ps_restore;
Luis R. Rodriguezc0d7c7a2008-12-23 15:58:50 -0800309 }
310
311 ath_cache_conf_rate(sc, &hw->conf);
312 ath_update_txpow(sc);
Sujith17d79042009-02-09 13:27:03 +0530313 ath9k_hw_set_interrupts(ah, sc->imask);
Gabor Juhos39892792009-06-15 17:49:09 +0200314
315 ps_restore:
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +0530316 ath9k_ps_restore(sc);
Gabor Juhos39892792009-06-15 17:49:09 +0200317 return r;
Sujithff37e332008-11-24 12:07:55 +0530318}
319
320/*
321 * This routine performs the periodic noise floor calibration function
322 * that is used to adjust and optimize the chip performance. This
323 * takes environmental changes (location, temperature) into account.
324 * When the task is complete, it reschedules itself depending on the
325 * appropriate interval that was calculated.
326 */
327static void ath_ani_calibrate(unsigned long data)
328{
Sujith20977d32009-02-20 15:13:28 +0530329 struct ath_softc *sc = (struct ath_softc *)data;
330 struct ath_hw *ah = sc->sc_ah;
Sujithff37e332008-11-24 12:07:55 +0530331 bool longcal = false;
332 bool shortcal = false;
333 bool aniflag = false;
334 unsigned int timestamp = jiffies_to_msecs(jiffies);
Sujith20977d32009-02-20 15:13:28 +0530335 u32 cal_interval, short_cal_interval;
Sujithff37e332008-11-24 12:07:55 +0530336
Sujith20977d32009-02-20 15:13:28 +0530337 short_cal_interval = (ah->opmode == NL80211_IFTYPE_AP) ?
338 ATH_AP_SHORT_CALINTERVAL : ATH_STA_SHORT_CALINTERVAL;
Sujithff37e332008-11-24 12:07:55 +0530339
340 /*
341 * don't calibrate when we're scanning.
342 * we are most likely not on our home channel.
343 */
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +0530344 spin_lock(&sc->ani_lock);
Sujith0c98de62009-03-03 10:16:45 +0530345 if (sc->sc_flags & SC_OP_SCANNING)
Sujith20977d32009-02-20 15:13:28 +0530346 goto set_timer;
Sujithff37e332008-11-24 12:07:55 +0530347
Jouni Malinen1ffc1c62009-05-19 17:01:39 +0300348 /* Only calibrate if awake */
349 if (sc->sc_ah->power_mode != ATH9K_PM_AWAKE)
350 goto set_timer;
351
352 ath9k_ps_wakeup(sc);
353
Sujithff37e332008-11-24 12:07:55 +0530354 /* Long calibration runs independently of short calibration. */
Sujith17d79042009-02-09 13:27:03 +0530355 if ((timestamp - sc->ani.longcal_timer) >= ATH_LONG_CALINTERVAL) {
Sujithff37e332008-11-24 12:07:55 +0530356 longcal = true;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700357 DPRINTF(sc->sc_ah, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
Sujith17d79042009-02-09 13:27:03 +0530358 sc->ani.longcal_timer = timestamp;
Sujithff37e332008-11-24 12:07:55 +0530359 }
360
Sujith17d79042009-02-09 13:27:03 +0530361 /* Short calibration applies only while caldone is false */
362 if (!sc->ani.caldone) {
Sujith20977d32009-02-20 15:13:28 +0530363 if ((timestamp - sc->ani.shortcal_timer) >= short_cal_interval) {
Sujithff37e332008-11-24 12:07:55 +0530364 shortcal = true;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700365 DPRINTF(sc->sc_ah, ATH_DBG_ANI, "shortcal @%lu\n", jiffies);
Sujith17d79042009-02-09 13:27:03 +0530366 sc->ani.shortcal_timer = timestamp;
367 sc->ani.resetcal_timer = timestamp;
Sujithff37e332008-11-24 12:07:55 +0530368 }
369 } else {
Sujith17d79042009-02-09 13:27:03 +0530370 if ((timestamp - sc->ani.resetcal_timer) >=
Sujithff37e332008-11-24 12:07:55 +0530371 ATH_RESTART_CALINTERVAL) {
Sujith17d79042009-02-09 13:27:03 +0530372 sc->ani.caldone = ath9k_hw_reset_calvalid(ah);
373 if (sc->ani.caldone)
374 sc->ani.resetcal_timer = timestamp;
Sujithff37e332008-11-24 12:07:55 +0530375 }
376 }
377
378 /* Verify whether we must check ANI */
Sujith20977d32009-02-20 15:13:28 +0530379 if ((timestamp - sc->ani.checkani_timer) >= ATH_ANI_POLLINTERVAL) {
Sujithff37e332008-11-24 12:07:55 +0530380 aniflag = true;
Sujith17d79042009-02-09 13:27:03 +0530381 sc->ani.checkani_timer = timestamp;
Sujithff37e332008-11-24 12:07:55 +0530382 }
383
384 /* Skip all processing if there's nothing to do. */
385 if (longcal || shortcal || aniflag) {
386 /* Call ANI routine if necessary */
387 if (aniflag)
Vasanthakumar Thiagarajan22e66a42009-08-19 16:23:40 +0530388 ath9k_hw_ani_monitor(ah, ah->curchan);
Sujithff37e332008-11-24 12:07:55 +0530389
390 /* Perform calibration if necessary */
391 if (longcal || shortcal) {
Sujith379f0442009-04-13 21:56:48 +0530392 sc->ani.caldone = ath9k_hw_calibrate(ah, ah->curchan,
393 sc->rx_chainmask, longcal);
Sujithff37e332008-11-24 12:07:55 +0530394
Sujith379f0442009-04-13 21:56:48 +0530395 if (longcal)
396 sc->ani.noise_floor = ath9k_hw_getchan_noise(ah,
397 ah->curchan);
Sujithff37e332008-11-24 12:07:55 +0530398
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700399 DPRINTF(sc->sc_ah, ATH_DBG_ANI," calibrate chan %u/%x nf: %d\n",
Sujith379f0442009-04-13 21:56:48 +0530400 ah->curchan->channel, ah->curchan->channelFlags,
401 sc->ani.noise_floor);
Sujithff37e332008-11-24 12:07:55 +0530402 }
403 }
404
Jouni Malinen1ffc1c62009-05-19 17:01:39 +0300405 ath9k_ps_restore(sc);
406
Sujith20977d32009-02-20 15:13:28 +0530407set_timer:
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +0530408 spin_unlock(&sc->ani_lock);
Sujithff37e332008-11-24 12:07:55 +0530409 /*
410 * Set timer interval based on previous results.
411 * The interval must be the shortest necessary to satisfy ANI,
412 * short calibration and long calibration.
413 */
Sujithaac92072008-12-02 18:37:54 +0530414 cal_interval = ATH_LONG_CALINTERVAL;
Sujith2660b812009-02-09 13:27:26 +0530415 if (sc->sc_ah->config.enable_ani)
Sujithaac92072008-12-02 18:37:54 +0530416 cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL);
Sujith17d79042009-02-09 13:27:03 +0530417 if (!sc->ani.caldone)
Sujith20977d32009-02-20 15:13:28 +0530418 cal_interval = min(cal_interval, (u32)short_cal_interval);
Sujithff37e332008-11-24 12:07:55 +0530419
Sujith17d79042009-02-09 13:27:03 +0530420 mod_timer(&sc->ani.timer, jiffies + msecs_to_jiffies(cal_interval));
Sujithff37e332008-11-24 12:07:55 +0530421}
422
Sujith415f7382009-04-13 21:56:46 +0530423static void ath_start_ani(struct ath_softc *sc)
424{
425 unsigned long timestamp = jiffies_to_msecs(jiffies);
426
427 sc->ani.longcal_timer = timestamp;
428 sc->ani.shortcal_timer = timestamp;
429 sc->ani.checkani_timer = timestamp;
430
431 mod_timer(&sc->ani.timer,
432 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
433}
434
Sujithff37e332008-11-24 12:07:55 +0530435/*
436 * Update tx/rx chainmask. For legacy association,
437 * hard code chainmask to 1x1, for 11n association, use
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +0530438 * the chainmask configuration, for bt coexistence, use
439 * the chainmask configuration even in legacy mode.
Sujithff37e332008-11-24 12:07:55 +0530440 */
Jouni Malinen0e2dedf2009-03-03 19:23:32 +0200441void ath_update_chainmask(struct ath_softc *sc, int is_ht)
Sujithff37e332008-11-24 12:07:55 +0530442{
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700443 struct ath_hw *ah = sc->sc_ah;
444
Sujith3d832612009-08-21 12:00:28 +0530445 if ((sc->sc_flags & SC_OP_SCANNING) || is_ht ||
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700446 (ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE)) {
Sujith2660b812009-02-09 13:27:26 +0530447 sc->tx_chainmask = sc->sc_ah->caps.tx_chainmask;
448 sc->rx_chainmask = sc->sc_ah->caps.rx_chainmask;
Sujithff37e332008-11-24 12:07:55 +0530449 } else {
Sujith17d79042009-02-09 13:27:03 +0530450 sc->tx_chainmask = 1;
451 sc->rx_chainmask = 1;
Sujithff37e332008-11-24 12:07:55 +0530452 }
453
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700454 DPRINTF(ah, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n",
Sujith17d79042009-02-09 13:27:03 +0530455 sc->tx_chainmask, sc->rx_chainmask);
Sujithff37e332008-11-24 12:07:55 +0530456}
457
458static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
459{
460 struct ath_node *an;
461
462 an = (struct ath_node *)sta->drv_priv;
463
Sujith87792ef2009-03-30 15:28:48 +0530464 if (sc->sc_flags & SC_OP_TXAGGR) {
Sujithff37e332008-11-24 12:07:55 +0530465 ath_tx_node_init(sc, an);
Sujith9e98ac62009-07-23 15:32:34 +0530466 an->maxampdu = 1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
Sujith87792ef2009-03-30 15:28:48 +0530467 sta->ht_cap.ampdu_factor);
468 an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400469 an->last_rssi = ATH_RSSI_DUMMY_MARKER;
Sujith87792ef2009-03-30 15:28:48 +0530470 }
Sujithff37e332008-11-24 12:07:55 +0530471}
472
473static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
474{
475 struct ath_node *an = (struct ath_node *)sta->drv_priv;
476
477 if (sc->sc_flags & SC_OP_TXAGGR)
478 ath_tx_node_cleanup(sc, an);
479}
480
481static void ath9k_tasklet(unsigned long data)
482{
483 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700484 struct ath_hw *ah = sc->sc_ah;
485
Sujith17d79042009-02-09 13:27:03 +0530486 u32 status = sc->intrstatus;
Sujithff37e332008-11-24 12:07:55 +0530487
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400488 ath9k_ps_wakeup(sc);
489
Sujithff37e332008-11-24 12:07:55 +0530490 if (status & ATH9K_INT_FATAL) {
Sujithff37e332008-11-24 12:07:55 +0530491 ath_reset(sc, false);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400492 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530493 return;
Sujithff37e332008-11-24 12:07:55 +0530494 }
495
Sujith063d8be2009-03-30 15:28:49 +0530496 if (status & (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) {
497 spin_lock_bh(&sc->rx.rxflushlock);
498 ath_rx_tasklet(sc, 0);
499 spin_unlock_bh(&sc->rx.rxflushlock);
500 }
501
502 if (status & ATH9K_INT_TX)
503 ath_tx_tasklet(sc);
504
Gabor Juhos96148322009-07-24 17:27:21 +0200505 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
Jouni Malinen54ce8462009-05-19 17:01:40 +0300506 /*
507 * TSF sync does not look correct; remain awake to sync with
508 * the next Beacon.
509 */
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700510 DPRINTF(ah, ATH_DBG_PS, "TSFOOR - Sync with next Beacon\n");
Jouni Malinenccdfeab2009-05-20 21:59:08 +0300511 sc->sc_flags |= SC_OP_WAIT_FOR_BEACON | SC_OP_BEACON_SYNC;
Jouni Malinen54ce8462009-05-19 17:01:40 +0300512 }
513
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700514 if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530515 if (status & ATH9K_INT_GENTIMER)
516 ath_gen_timer_isr(sc->sc_ah);
517
Sujithff37e332008-11-24 12:07:55 +0530518 /* re-enable hardware interrupt */
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700519 ath9k_hw_set_interrupts(ah, sc->imask);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400520 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530521}
522
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100523irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530524{
Sujith063d8be2009-03-30 15:28:49 +0530525#define SCHED_INTR ( \
526 ATH9K_INT_FATAL | \
527 ATH9K_INT_RXORN | \
528 ATH9K_INT_RXEOL | \
529 ATH9K_INT_RX | \
530 ATH9K_INT_TX | \
531 ATH9K_INT_BMISS | \
532 ATH9K_INT_CST | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530533 ATH9K_INT_TSFOOR | \
534 ATH9K_INT_GENTIMER)
Sujith063d8be2009-03-30 15:28:49 +0530535
Sujithff37e332008-11-24 12:07:55 +0530536 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530537 struct ath_hw *ah = sc->sc_ah;
Sujithff37e332008-11-24 12:07:55 +0530538 enum ath9k_int status;
539 bool sched = false;
540
Sujith063d8be2009-03-30 15:28:49 +0530541 /*
542 * The hardware is not ready/present, don't
543 * touch anything. Note this can happen early
544 * on if the IRQ is shared.
545 */
546 if (sc->sc_flags & SC_OP_INVALID)
547 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530548
Sujithff37e332008-11-24 12:07:55 +0530549
Sujith063d8be2009-03-30 15:28:49 +0530550 /* shared irq, not for us */
Sujithff37e332008-11-24 12:07:55 +0530551
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400552 if (!ath9k_hw_intrpend(ah))
Sujith063d8be2009-03-30 15:28:49 +0530553 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530554
Sujith063d8be2009-03-30 15:28:49 +0530555 /*
556 * Figure out the reason(s) for the interrupt. Note
557 * that the hal returns a pseudo-ISR that may include
558 * bits we haven't explicitly enabled so we mask the
559 * value to insure we only process bits we requested.
560 */
561 ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
562 status &= sc->imask; /* discard unasked-for bits */
563
564 /*
565 * If there are no status bits set, then this interrupt was not
566 * for me (should have been caught above).
567 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400568 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530569 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530570
571 /* Cache the status */
572 sc->intrstatus = status;
573
574 if (status & SCHED_INTR)
575 sched = true;
576
577 /*
578 * If a FATAL or RXORN interrupt is received, we have to reset the
579 * chip immediately.
580 */
581 if (status & (ATH9K_INT_FATAL | ATH9K_INT_RXORN))
582 goto chip_reset;
583
584 if (status & ATH9K_INT_SWBA)
585 tasklet_schedule(&sc->bcon_tasklet);
586
587 if (status & ATH9K_INT_TXURN)
588 ath9k_hw_updatetxtriglevel(ah, true);
589
590 if (status & ATH9K_INT_MIB) {
591 /*
592 * Disable interrupts until we service the MIB
593 * interrupt; otherwise it will continue to
594 * fire.
595 */
596 ath9k_hw_set_interrupts(ah, 0);
597 /*
598 * Let the hal handle the event. We assume
599 * it will clear whatever condition caused
600 * the interrupt.
601 */
Vasanthakumar Thiagarajan22e66a42009-08-19 16:23:40 +0530602 ath9k_hw_procmibevent(ah);
Sujith063d8be2009-03-30 15:28:49 +0530603 ath9k_hw_set_interrupts(ah, sc->imask);
604 }
605
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400606 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
607 if (status & ATH9K_INT_TIM_TIMER) {
Sujith063d8be2009-03-30 15:28:49 +0530608 /* Clear RxAbort bit so that we can
609 * receive frames */
610 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400611 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith063d8be2009-03-30 15:28:49 +0530612 sc->sc_flags |= SC_OP_WAIT_FOR_BEACON;
613 }
Sujith063d8be2009-03-30 15:28:49 +0530614
615chip_reset:
616
Sujith817e11d2008-12-07 21:42:44 +0530617 ath_debug_stat_interrupt(sc, status);
618
Sujithff37e332008-11-24 12:07:55 +0530619 if (sched) {
620 /* turn off every interrupt except SWBA */
Sujith17d79042009-02-09 13:27:03 +0530621 ath9k_hw_set_interrupts(ah, (sc->imask & ATH9K_INT_SWBA));
Sujithff37e332008-11-24 12:07:55 +0530622 tasklet_schedule(&sc->intr_tq);
623 }
624
625 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530626
627#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530628}
629
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700630static u32 ath_get_extchanmode(struct ath_softc *sc,
Sujith99405f92008-11-24 12:08:35 +0530631 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +0530632 enum nl80211_channel_type channel_type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700633{
634 u32 chanmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700635
636 switch (chan->band) {
637 case IEEE80211_BAND_2GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530638 switch(channel_type) {
639 case NL80211_CHAN_NO_HT:
640 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 chanmode = CHANNEL_G_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530642 break;
643 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700644 chanmode = CHANNEL_G_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530645 break;
646 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647 chanmode = CHANNEL_G_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530648 break;
649 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650 break;
651 case IEEE80211_BAND_5GHZ:
Sujith094d05d2008-12-12 11:57:43 +0530652 switch(channel_type) {
653 case NL80211_CHAN_NO_HT:
654 case NL80211_CHAN_HT20:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700655 chanmode = CHANNEL_A_HT20;
Sujith094d05d2008-12-12 11:57:43 +0530656 break;
657 case NL80211_CHAN_HT40PLUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700658 chanmode = CHANNEL_A_HT40PLUS;
Sujith094d05d2008-12-12 11:57:43 +0530659 break;
660 case NL80211_CHAN_HT40MINUS:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700661 chanmode = CHANNEL_A_HT40MINUS;
Sujith094d05d2008-12-12 11:57:43 +0530662 break;
663 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700664 break;
665 default:
666 break;
667 }
668
669 return chanmode;
670}
671
Jouni Malinen6ace2892008-12-17 13:32:17 +0200672static int ath_setkey_tkip(struct ath_softc *sc, u16 keyix, const u8 *key,
Jouni Malinen3f53dd62009-02-26 11:18:46 +0200673 struct ath9k_keyval *hk, const u8 *addr,
674 bool authenticator)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700675{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200676 const u8 *key_rxmic;
677 const u8 *key_txmic;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700678
Jouni Malinen6ace2892008-12-17 13:32:17 +0200679 key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
680 key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700681
682 if (addr == NULL) {
Jouni Malinend216aaa2009-03-03 13:11:53 +0200683 /*
684 * Group key installation - only two key cache entries are used
685 * regardless of splitmic capability since group key is only
686 * used either for TX or RX.
687 */
Jouni Malinen3f53dd62009-02-26 11:18:46 +0200688 if (authenticator) {
689 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
690 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_mic));
691 } else {
692 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
693 memcpy(hk->kv_txmic, key_rxmic, sizeof(hk->kv_mic));
694 }
Jouni Malinend216aaa2009-03-03 13:11:53 +0200695 return ath9k_hw_set_keycache_entry(sc->sc_ah, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700696 }
Sujith17d79042009-02-09 13:27:03 +0530697 if (!sc->splitmic) {
Jouni Malinend216aaa2009-03-03 13:11:53 +0200698 /* TX and RX keys share the same key cache entry. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700699 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
700 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
Jouni Malinend216aaa2009-03-03 13:11:53 +0200701 return ath9k_hw_set_keycache_entry(sc->sc_ah, keyix, hk, addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700702 }
Jouni Malinend216aaa2009-03-03 13:11:53 +0200703
704 /* Separate key cache entries for TX and RX */
705
706 /* TX key goes at first index, RX key at +32. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700707 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
Jouni Malinend216aaa2009-03-03 13:11:53 +0200708 if (!ath9k_hw_set_keycache_entry(sc->sc_ah, keyix, hk, NULL)) {
709 /* TX MIC entry failed. No need to proceed further */
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700710 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530711 "Setting TX MIC Key Failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700712 return 0;
713 }
714
715 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
716 /* XXX delete tx key on failure? */
Jouni Malinend216aaa2009-03-03 13:11:53 +0200717 return ath9k_hw_set_keycache_entry(sc->sc_ah, keyix + 32, hk, addr);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200718}
719
720static int ath_reserve_key_cache_slot_tkip(struct ath_softc *sc)
721{
722 int i;
723
Sujith17d79042009-02-09 13:27:03 +0530724 for (i = IEEE80211_WEP_NKID; i < sc->keymax / 2; i++) {
725 if (test_bit(i, sc->keymap) ||
726 test_bit(i + 64, sc->keymap))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200727 continue; /* At least one part of TKIP key allocated */
Sujith17d79042009-02-09 13:27:03 +0530728 if (sc->splitmic &&
729 (test_bit(i + 32, sc->keymap) ||
730 test_bit(i + 64 + 32, sc->keymap)))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200731 continue; /* At least one part of TKIP key allocated */
732
733 /* Found a free slot for a TKIP key */
734 return i;
735 }
736 return -1;
737}
738
739static int ath_reserve_key_cache_slot(struct ath_softc *sc)
740{
741 int i;
742
743 /* First, try to find slots that would not be available for TKIP. */
Sujith17d79042009-02-09 13:27:03 +0530744 if (sc->splitmic) {
745 for (i = IEEE80211_WEP_NKID; i < sc->keymax / 4; i++) {
746 if (!test_bit(i, sc->keymap) &&
747 (test_bit(i + 32, sc->keymap) ||
748 test_bit(i + 64, sc->keymap) ||
749 test_bit(i + 64 + 32, sc->keymap)))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200750 return i;
Sujith17d79042009-02-09 13:27:03 +0530751 if (!test_bit(i + 32, sc->keymap) &&
752 (test_bit(i, sc->keymap) ||
753 test_bit(i + 64, sc->keymap) ||
754 test_bit(i + 64 + 32, sc->keymap)))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200755 return i + 32;
Sujith17d79042009-02-09 13:27:03 +0530756 if (!test_bit(i + 64, sc->keymap) &&
757 (test_bit(i , sc->keymap) ||
758 test_bit(i + 32, sc->keymap) ||
759 test_bit(i + 64 + 32, sc->keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200760 return i + 64;
Sujith17d79042009-02-09 13:27:03 +0530761 if (!test_bit(i + 64 + 32, sc->keymap) &&
762 (test_bit(i, sc->keymap) ||
763 test_bit(i + 32, sc->keymap) ||
764 test_bit(i + 64, sc->keymap)))
Jouni Malinenea612132008-12-18 14:31:10 +0200765 return i + 64 + 32;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200766 }
767 } else {
Sujith17d79042009-02-09 13:27:03 +0530768 for (i = IEEE80211_WEP_NKID; i < sc->keymax / 2; i++) {
769 if (!test_bit(i, sc->keymap) &&
770 test_bit(i + 64, sc->keymap))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200771 return i;
Sujith17d79042009-02-09 13:27:03 +0530772 if (test_bit(i, sc->keymap) &&
773 !test_bit(i + 64, sc->keymap))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200774 return i + 64;
775 }
776 }
777
778 /* No partially used TKIP slots, pick any available slot */
Sujith17d79042009-02-09 13:27:03 +0530779 for (i = IEEE80211_WEP_NKID; i < sc->keymax; i++) {
Jouni Malinenbe2864c2008-12-18 14:33:00 +0200780 /* Do not allow slots that could be needed for TKIP group keys
781 * to be used. This limitation could be removed if we know that
782 * TKIP will not be used. */
783 if (i >= 64 && i < 64 + IEEE80211_WEP_NKID)
784 continue;
Sujith17d79042009-02-09 13:27:03 +0530785 if (sc->splitmic) {
Jouni Malinenbe2864c2008-12-18 14:33:00 +0200786 if (i >= 32 && i < 32 + IEEE80211_WEP_NKID)
787 continue;
788 if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID)
789 continue;
790 }
791
Sujith17d79042009-02-09 13:27:03 +0530792 if (!test_bit(i, sc->keymap))
Jouni Malinen6ace2892008-12-17 13:32:17 +0200793 return i; /* Found a free slot for a key */
794 }
795
796 /* No free slot found */
797 return -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700798}
799
800static int ath_key_config(struct ath_softc *sc,
Jouni Malinen3f53dd62009-02-26 11:18:46 +0200801 struct ieee80211_vif *vif,
Johannes Bergdc822b52008-12-29 12:55:09 +0100802 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803 struct ieee80211_key_conf *key)
804{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700805 struct ath9k_keyval hk;
806 const u8 *mac = NULL;
807 int ret = 0;
Jouni Malinen6ace2892008-12-17 13:32:17 +0200808 int idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700809
810 memset(&hk, 0, sizeof(hk));
811
812 switch (key->alg) {
813 case ALG_WEP:
814 hk.kv_type = ATH9K_CIPHER_WEP;
815 break;
816 case ALG_TKIP:
817 hk.kv_type = ATH9K_CIPHER_TKIP;
818 break;
819 case ALG_CCMP:
820 hk.kv_type = ATH9K_CIPHER_AES_CCM;
821 break;
822 default:
Jouni Malinenca470b22009-01-08 13:32:12 +0200823 return -EOPNOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700824 }
825
Jouni Malinen6ace2892008-12-17 13:32:17 +0200826 hk.kv_len = key->keylen;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700827 memcpy(hk.kv_val, key->key, key->keylen);
828
Jouni Malinen6ace2892008-12-17 13:32:17 +0200829 if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
830 /* For now, use the default keys for broadcast keys. This may
831 * need to change with virtual interfaces. */
832 idx = key->keyidx;
833 } else if (key->keyidx) {
Johannes Bergdc822b52008-12-29 12:55:09 +0100834 if (WARN_ON(!sta))
835 return -EOPNOTSUPP;
836 mac = sta->addr;
837
Jouni Malinen6ace2892008-12-17 13:32:17 +0200838 if (vif->type != NL80211_IFTYPE_AP) {
839 /* Only keyidx 0 should be used with unicast key, but
840 * allow this for client mode for now. */
841 idx = key->keyidx;
842 } else
843 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700844 } else {
Johannes Bergdc822b52008-12-29 12:55:09 +0100845 if (WARN_ON(!sta))
846 return -EOPNOTSUPP;
847 mac = sta->addr;
848
Jouni Malinen6ace2892008-12-17 13:32:17 +0200849 if (key->alg == ALG_TKIP)
850 idx = ath_reserve_key_cache_slot_tkip(sc);
851 else
852 idx = ath_reserve_key_cache_slot(sc);
853 if (idx < 0)
Jouni Malinenca470b22009-01-08 13:32:12 +0200854 return -ENOSPC; /* no free key cache entries */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700855 }
856
857 if (key->alg == ALG_TKIP)
Jouni Malinen3f53dd62009-02-26 11:18:46 +0200858 ret = ath_setkey_tkip(sc, idx, key->key, &hk, mac,
859 vif->type == NL80211_IFTYPE_AP);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700860 else
Jouni Malinend216aaa2009-03-03 13:11:53 +0200861 ret = ath9k_hw_set_keycache_entry(sc->sc_ah, idx, &hk, mac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700862
863 if (!ret)
864 return -EIO;
865
Sujith17d79042009-02-09 13:27:03 +0530866 set_bit(idx, sc->keymap);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200867 if (key->alg == ALG_TKIP) {
Sujith17d79042009-02-09 13:27:03 +0530868 set_bit(idx + 64, sc->keymap);
869 if (sc->splitmic) {
870 set_bit(idx + 32, sc->keymap);
871 set_bit(idx + 64 + 32, sc->keymap);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200872 }
873 }
874
875 return idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700876}
877
878static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
879{
Jouni Malinen6ace2892008-12-17 13:32:17 +0200880 ath9k_hw_keyreset(sc->sc_ah, key->hw_key_idx);
881 if (key->hw_key_idx < IEEE80211_WEP_NKID)
882 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700883
Sujith17d79042009-02-09 13:27:03 +0530884 clear_bit(key->hw_key_idx, sc->keymap);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200885 if (key->alg != ALG_TKIP)
886 return;
887
Sujith17d79042009-02-09 13:27:03 +0530888 clear_bit(key->hw_key_idx + 64, sc->keymap);
889 if (sc->splitmic) {
890 clear_bit(key->hw_key_idx + 32, sc->keymap);
891 clear_bit(key->hw_key_idx + 64 + 32, sc->keymap);
Jouni Malinen6ace2892008-12-17 13:32:17 +0200892 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700893}
894
Sujitheb2599c2009-01-23 11:20:44 +0530895static void setup_ht_cap(struct ath_softc *sc,
896 struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700897{
Senthil Balasubramanian140add22009-06-24 18:56:42 +0530898 u8 tx_streams, rx_streams;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700899
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200900 ht_info->ht_supported = true;
901 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
902 IEEE80211_HT_CAP_SM_PS |
903 IEEE80211_HT_CAP_SGI_40 |
904 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700905
Sujith9e98ac62009-07-23 15:32:34 +0530906 ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
907 ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8;
Sujitheb2599c2009-01-23 11:20:44 +0530908
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200909 /* set up supported mcs set */
910 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
Senthil Balasubramanian140add22009-06-24 18:56:42 +0530911 tx_streams = !(sc->tx_chainmask & (sc->tx_chainmask - 1)) ? 1 : 2;
912 rx_streams = !(sc->rx_chainmask & (sc->rx_chainmask - 1)) ? 1 : 2;
Sujitheb2599c2009-01-23 11:20:44 +0530913
Senthil Balasubramanian140add22009-06-24 18:56:42 +0530914 if (tx_streams != rx_streams) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700915 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "TX streams %d, RX streams: %d\n",
Senthil Balasubramanian140add22009-06-24 18:56:42 +0530916 tx_streams, rx_streams);
917 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
918 ht_info->mcs.tx_params |= ((tx_streams - 1) <<
919 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
Sujitheb2599c2009-01-23 11:20:44 +0530920 }
921
Senthil Balasubramanian140add22009-06-24 18:56:42 +0530922 ht_info->mcs.rx_mask[0] = 0xff;
923 if (rx_streams >= 2)
924 ht_info->mcs.rx_mask[1] = 0xff;
925
926 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700927}
928
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530929static void ath9k_bss_assoc_info(struct ath_softc *sc,
Sujith5640b082008-10-29 10:16:06 +0530930 struct ieee80211_vif *vif,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530931 struct ieee80211_bss_conf *bss_conf)
932{
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530933
934 if (bss_conf->assoc) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700935 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "Bss Info ASSOC %d, bssid: %pM\n",
Sujith17d79042009-02-09 13:27:03 +0530936 bss_conf->aid, sc->curbssid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530937
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530938 /* New association, store aid */
Senthil Balasubramanian2664f202009-06-24 18:56:39 +0530939 sc->curaid = bss_conf->aid;
940 ath9k_hw_write_associd(sc);
Jouni Malinenccdfeab2009-05-20 21:59:08 +0300941
Senthil Balasubramanian2664f202009-06-24 18:56:39 +0530942 /*
943 * Request a re-configuration of Beacon related timers
944 * on the receipt of the first Beacon frame (i.e.,
945 * after time sync with the AP).
946 */
947 sc->sc_flags |= SC_OP_BEACON_SYNC;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530948
949 /* Configure the beacon */
Jouni Malinen2c3db3d2009-03-03 19:23:26 +0200950 ath_beacon_config(sc, vif);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530951
952 /* Reset rssi stats */
Vasanthakumar Thiagarajan22e66a42009-08-19 16:23:40 +0530953 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530954
Sujith415f7382009-04-13 21:56:46 +0530955 ath_start_ani(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530956 } else {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700957 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "Bss Info DISASSOC\n");
Sujith17d79042009-02-09 13:27:03 +0530958 sc->curaid = 0;
Senthil Balasubramanianf38faa32009-06-24 18:56:40 +0530959 /* Stop ANI */
960 del_timer_sync(&sc->ani.timer);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530961 }
962}
963
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530964/********************************/
965/* LED functions */
966/********************************/
967
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +0530968static void ath_led_blink_work(struct work_struct *work)
969{
970 struct ath_softc *sc = container_of(work, struct ath_softc,
971 ath_led_blink_work.work);
972
973 if (!(sc->sc_flags & SC_OP_LED_ASSOCIATED))
974 return;
Vasanthakumar Thiagarajan85067c02009-03-14 19:59:41 +0530975
976 if ((sc->led_on_duration == ATH_LED_ON_DURATION_IDLE) ||
977 (sc->led_off_duration == ATH_LED_OFF_DURATION_IDLE))
Vivek Natarajan08fc5c12009-08-14 11:30:52 +0530978 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 0);
Vasanthakumar Thiagarajan85067c02009-03-14 19:59:41 +0530979 else
Vivek Natarajan08fc5c12009-08-14 11:30:52 +0530980 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin,
Vasanthakumar Thiagarajan85067c02009-03-14 19:59:41 +0530981 (sc->sc_flags & SC_OP_LED_ON) ? 1 : 0);
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +0530982
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400983 ieee80211_queue_delayed_work(sc->hw,
984 &sc->ath_led_blink_work,
985 (sc->sc_flags & SC_OP_LED_ON) ?
986 msecs_to_jiffies(sc->led_off_duration) :
987 msecs_to_jiffies(sc->led_on_duration));
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +0530988
Vasanthakumar Thiagarajan85067c02009-03-14 19:59:41 +0530989 sc->led_on_duration = sc->led_on_cnt ?
990 max((ATH_LED_ON_DURATION_IDLE - sc->led_on_cnt), 25) :
991 ATH_LED_ON_DURATION_IDLE;
992 sc->led_off_duration = sc->led_off_cnt ?
993 max((ATH_LED_OFF_DURATION_IDLE - sc->led_off_cnt), 10) :
994 ATH_LED_OFF_DURATION_IDLE;
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +0530995 sc->led_on_cnt = sc->led_off_cnt = 0;
996 if (sc->sc_flags & SC_OP_LED_ON)
997 sc->sc_flags &= ~SC_OP_LED_ON;
998 else
999 sc->sc_flags |= SC_OP_LED_ON;
1000}
1001
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301002static void ath_led_brightness(struct led_classdev *led_cdev,
1003 enum led_brightness brightness)
1004{
1005 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
1006 struct ath_softc *sc = led->sc;
1007
1008 switch (brightness) {
1009 case LED_OFF:
1010 if (led->led_type == ATH_LED_ASSOC ||
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301011 led->led_type == ATH_LED_RADIO) {
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301012 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin,
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301013 (led->led_type == ATH_LED_RADIO));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301014 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301015 if (led->led_type == ATH_LED_RADIO)
1016 sc->sc_flags &= ~SC_OP_LED_ON;
1017 } else {
1018 sc->led_off_cnt++;
1019 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301020 break;
1021 case LED_FULL:
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301022 if (led->led_type == ATH_LED_ASSOC) {
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301023 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001024 ieee80211_queue_delayed_work(sc->hw,
1025 &sc->ath_led_blink_work, 0);
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301026 } else if (led->led_type == ATH_LED_RADIO) {
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301027 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 0);
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301028 sc->sc_flags |= SC_OP_LED_ON;
1029 } else {
1030 sc->led_on_cnt++;
1031 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301032 break;
1033 default:
1034 break;
1035 }
1036}
1037
1038static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
1039 char *trigger)
1040{
1041 int ret;
1042
1043 led->sc = sc;
1044 led->led_cdev.name = led->name;
1045 led->led_cdev.default_trigger = trigger;
1046 led->led_cdev.brightness_set = ath_led_brightness;
1047
1048 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
1049 if (ret)
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001050 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301051 "Failed to register led:%s", led->name);
1052 else
1053 led->registered = 1;
1054 return ret;
1055}
1056
1057static void ath_unregister_led(struct ath_led *led)
1058{
1059 if (led->registered) {
1060 led_classdev_unregister(&led->led_cdev);
1061 led->registered = 0;
1062 }
1063}
1064
1065static void ath_deinit_leds(struct ath_softc *sc)
1066{
1067 ath_unregister_led(&sc->assoc_led);
1068 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
1069 ath_unregister_led(&sc->tx_led);
1070 ath_unregister_led(&sc->rx_led);
1071 ath_unregister_led(&sc->radio_led);
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301072 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301073}
1074
1075static void ath_init_leds(struct ath_softc *sc)
1076{
1077 char *trigger;
1078 int ret;
1079
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301080 if (AR_SREV_9287(sc->sc_ah))
1081 sc->sc_ah->led_pin = ATH_LED_PIN_9287;
1082 else
1083 sc->sc_ah->led_pin = ATH_LED_PIN_DEF;
1084
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301085 /* Configure gpio 1 for output */
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301086 ath9k_hw_cfg_output(sc->sc_ah, sc->sc_ah->led_pin,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301087 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1088 /* LED off, active low */
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301089 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301090
Vasanthakumar Thiagarajanf2bffa72009-01-29 17:52:19 +05301091 INIT_DELAYED_WORK(&sc->ath_led_blink_work, ath_led_blink_work);
1092
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301093 trigger = ieee80211_get_radio_led_name(sc->hw);
1094 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
Danny Kukawka0818cb82009-01-31 15:52:09 +01001095 "ath9k-%s::radio", wiphy_name(sc->hw->wiphy));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301096 ret = ath_register_led(sc, &sc->radio_led, trigger);
1097 sc->radio_led.led_type = ATH_LED_RADIO;
1098 if (ret)
1099 goto fail;
1100
1101 trigger = ieee80211_get_assoc_led_name(sc->hw);
1102 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
Danny Kukawka0818cb82009-01-31 15:52:09 +01001103 "ath9k-%s::assoc", wiphy_name(sc->hw->wiphy));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301104 ret = ath_register_led(sc, &sc->assoc_led, trigger);
1105 sc->assoc_led.led_type = ATH_LED_ASSOC;
1106 if (ret)
1107 goto fail;
1108
1109 trigger = ieee80211_get_tx_led_name(sc->hw);
1110 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
Danny Kukawka0818cb82009-01-31 15:52:09 +01001111 "ath9k-%s::tx", wiphy_name(sc->hw->wiphy));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301112 ret = ath_register_led(sc, &sc->tx_led, trigger);
1113 sc->tx_led.led_type = ATH_LED_TX;
1114 if (ret)
1115 goto fail;
1116
1117 trigger = ieee80211_get_rx_led_name(sc->hw);
1118 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
Danny Kukawka0818cb82009-01-31 15:52:09 +01001119 "ath9k-%s::rx", wiphy_name(sc->hw->wiphy));
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301120 ret = ath_register_led(sc, &sc->rx_led, trigger);
1121 sc->rx_led.led_type = ATH_LED_RX;
1122 if (ret)
1123 goto fail;
1124
1125 return;
1126
1127fail:
Luis R. Rodriguez35c95ab2009-07-27 11:53:03 -07001128 cancel_delayed_work_sync(&sc->ath_led_blink_work);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301129 ath_deinit_leds(sc);
1130}
1131
Jouni Malinen7ec3e512009-03-03 19:23:37 +02001132void ath_radio_enable(struct ath_softc *sc)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301133{
Sujithcbe61d82009-02-09 13:27:12 +05301134 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001135 struct ieee80211_channel *channel = sc->hw->conf.channel;
1136 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301137
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301138 ath9k_ps_wakeup(sc);
Vivek Natarajan93b1b372009-09-17 09:24:58 +05301139 ath9k_hw_configpcipowersave(ah, 0, 0);
Sujithd2f5b3a2009-04-13 21:56:25 +05301140
Vasanthakumar Thiagarajan159cd462009-06-13 14:50:25 +05301141 if (!ah->curchan)
1142 ah->curchan = ath_get_curchannel(sc, sc->hw);
1143
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301144 spin_lock_bh(&sc->sc_resetlock);
Sujith2660b812009-02-09 13:27:26 +05301145 r = ath9k_hw_reset(ah, ah->curchan, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001146 if (r) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001147 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001148 "Unable to reset channel %u (%uMhz) ",
Vasanthakumar Thiagarajan6b457842009-05-15 18:59:20 +05301149 "reset status %d\n",
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001150 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301151 }
1152 spin_unlock_bh(&sc->sc_resetlock);
1153
1154 ath_update_txpow(sc);
1155 if (ath_startrecv(sc) != 0) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001156 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301157 "Unable to restart recv logic\n");
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301158 return;
1159 }
1160
1161 if (sc->sc_flags & SC_OP_BEACONS)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001162 ath_beacon_config(sc, NULL); /* restart beacons */
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301163
1164 /* Re-Enable interrupts */
Sujith17d79042009-02-09 13:27:03 +05301165 ath9k_hw_set_interrupts(ah, sc->imask);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301166
1167 /* Enable LED */
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301168 ath9k_hw_cfg_output(ah, ah->led_pin,
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301169 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301170 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301171
1172 ieee80211_wake_queues(sc->hw);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301173 ath9k_ps_restore(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301174}
1175
Jouni Malinen7ec3e512009-03-03 19:23:37 +02001176void ath_radio_disable(struct ath_softc *sc)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301177{
Sujithcbe61d82009-02-09 13:27:12 +05301178 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001179 struct ieee80211_channel *channel = sc->hw->conf.channel;
1180 int r;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301181
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301182 ath9k_ps_wakeup(sc);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301183 ieee80211_stop_queues(sc->hw);
1184
1185 /* Disable LED */
Vivek Natarajan08fc5c12009-08-14 11:30:52 +05301186 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
1187 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301188
1189 /* Disable interrupts */
1190 ath9k_hw_set_interrupts(ah, 0);
1191
Sujith043a0402009-01-16 21:38:47 +05301192 ath_drain_all_txq(sc, false); /* clear pending tx frames */
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301193 ath_stoprecv(sc); /* turn off frame recv */
1194 ath_flushrecv(sc); /* flush recv queue */
1195
Vasanthakumar Thiagarajan159cd462009-06-13 14:50:25 +05301196 if (!ah->curchan)
1197 ah->curchan = ath_get_curchannel(sc, sc->hw);
1198
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301199 spin_lock_bh(&sc->sc_resetlock);
Sujith2660b812009-02-09 13:27:26 +05301200 r = ath9k_hw_reset(ah, ah->curchan, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001201 if (r) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001202 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301203 "Unable to reset channel %u (%uMhz) "
Vasanthakumar Thiagarajan6b457842009-05-15 18:59:20 +05301204 "reset status %d\n",
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001205 channel->center_freq, r);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301206 }
1207 spin_unlock_bh(&sc->sc_resetlock);
1208
1209 ath9k_hw_phy_disable(ah);
Vivek Natarajan93b1b372009-09-17 09:24:58 +05301210 ath9k_hw_configpcipowersave(ah, 1, 1);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301211 ath9k_ps_restore(sc);
Gabor Juhos38ab4222009-06-17 20:53:21 +02001212 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301213}
1214
Gabor Juhos5077fd32009-03-06 11:17:55 +01001215/*******************/
1216/* Rfkill */
1217/*******************/
1218
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301219static bool ath_is_rfkill_set(struct ath_softc *sc)
1220{
Sujithcbe61d82009-02-09 13:27:12 +05301221 struct ath_hw *ah = sc->sc_ah;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301222
Sujith2660b812009-02-09 13:27:26 +05301223 return ath9k_hw_gpio_get(ah, ah->rfkill_gpio) ==
1224 ah->rfkill_polarity;
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301225}
1226
Johannes Berg3b319aa2009-06-13 14:50:26 +05301227static void ath9k_rfkill_poll_state(struct ieee80211_hw *hw)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301228{
Johannes Berg3b319aa2009-06-13 14:50:26 +05301229 struct ath_wiphy *aphy = hw->priv;
1230 struct ath_softc *sc = aphy->sc;
1231 bool blocked = !!ath_is_rfkill_set(sc);
1232
1233 wiphy_rfkill_set_hw_state(hw->wiphy, blocked);
Johannes Berg19d337d2009-06-02 13:01:37 +02001234}
1235
Johannes Berg3b319aa2009-06-13 14:50:26 +05301236static void ath_start_rfkill_poll(struct ath_softc *sc)
Johannes Berg19d337d2009-06-02 13:01:37 +02001237{
Johannes Berg3b319aa2009-06-13 14:50:26 +05301238 struct ath_hw *ah = sc->sc_ah;
Johannes Berg19d337d2009-06-02 13:01:37 +02001239
Johannes Berg3b319aa2009-06-13 14:50:26 +05301240 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1241 wiphy_rfkill_start_polling(sc->hw->wiphy);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301242}
1243
Gabor Juhos6baff7f2009-01-14 20:17:06 +01001244void ath_cleanup(struct ath_softc *sc)
Gabor Juhos39c3c2f2009-01-14 20:17:05 +01001245{
1246 ath_detach(sc);
1247 free_irq(sc->irq, sc);
1248 ath_bus_cleanup(sc);
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001249 kfree(sc->sec_wiphy);
Gabor Juhos39c3c2f2009-01-14 20:17:05 +01001250 ieee80211_free_hw(sc->hw);
1251}
1252
Gabor Juhos6baff7f2009-01-14 20:17:06 +01001253void ath_detach(struct ath_softc *sc)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301254{
1255 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001256 struct ath_hw *ah = sc->sc_ah;
Sujith9c84b792008-10-29 10:17:13 +05301257 int i = 0;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301258
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301259 ath9k_ps_wakeup(sc);
1260
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001261 dev_dbg(sc->dev, "Detach ATH hw\n");
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301262
Luis R. Rodriguez35c95ab2009-07-27 11:53:03 -07001263 ath_deinit_leds(sc);
Sujithe31f7b92009-09-23 13:49:12 +05301264 wiphy_rfkill_stop_polling(sc->hw->wiphy);
Luis R. Rodriguez35c95ab2009-07-27 11:53:03 -07001265
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001266 for (i = 0; i < sc->num_sec_wiphy; i++) {
1267 struct ath_wiphy *aphy = sc->sec_wiphy[i];
1268 if (aphy == NULL)
1269 continue;
1270 sc->sec_wiphy[i] = NULL;
1271 ieee80211_unregister_hw(aphy->hw);
1272 ieee80211_free_hw(aphy->hw);
1273 }
Vasanthakumar Thiagarajan3fcdfb42008-11-18 01:19:56 +05301274 ieee80211_unregister_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301275 ath_rx_cleanup(sc);
1276 ath_tx_cleanup(sc);
1277
Sujith9c84b792008-10-29 10:17:13 +05301278 tasklet_kill(&sc->intr_tq);
1279 tasklet_kill(&sc->bcon_tasklet);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301280
Sujith9c84b792008-10-29 10:17:13 +05301281 if (!(sc->sc_flags & SC_OP_INVALID))
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001282 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301283
Sujith9c84b792008-10-29 10:17:13 +05301284 /* cleanup tx queues */
1285 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1286 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301287 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith9c84b792008-10-29 10:17:13 +05301288
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001289 if ((sc->btcoex.no_stomp_timer) &&
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001290 ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001291 ath_gen_timer_free(ah, sc->btcoex.no_stomp_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05301292
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001293 ath9k_hw_detach(ah);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07001294 ath9k_exit_debug(ah);
Luis R. Rodriguez3ce1b1a2009-08-03 12:24:53 -07001295 sc->sc_ah = NULL;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301296}
1297
Bob Copelande3bb2492009-03-30 22:30:30 -04001298static int ath9k_reg_notifier(struct wiphy *wiphy,
1299 struct regulatory_request *request)
1300{
1301 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
1302 struct ath_wiphy *aphy = hw->priv;
1303 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001304 struct ath_regulatory *reg = &sc->common.regulatory;
Bob Copelande3bb2492009-03-30 22:30:30 -04001305
1306 return ath_reg_notifier_apply(wiphy, request, reg);
1307}
1308
Luis R. Rodriguez1e40bcf2009-08-03 12:24:47 -07001309/*
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001310 * Detects if there is any priority bt traffic
1311 */
1312static void ath_detect_bt_priority(struct ath_softc *sc)
1313{
1314 struct ath_btcoex *btcoex = &sc->btcoex;
1315 struct ath_hw *ah = sc->sc_ah;
1316
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001317 if (ath9k_hw_gpio_get(sc->sc_ah, ah->btcoex_hw.btpriority_gpio))
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001318 btcoex->bt_priority_cnt++;
1319
1320 if (time_after(jiffies, btcoex->bt_priority_time +
1321 msecs_to_jiffies(ATH_BT_PRIORITY_TIME_THRESHOLD))) {
1322 if (btcoex->bt_priority_cnt >= ATH_BT_CNT_THRESHOLD) {
1323 DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX,
1324 "BT priority traffic detected");
1325 sc->sc_flags |= SC_OP_BT_PRIORITY_DETECTED;
1326 } else {
1327 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
1328 }
1329
1330 btcoex->bt_priority_cnt = 0;
1331 btcoex->bt_priority_time = jiffies;
1332 }
1333}
1334
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001335/*
1336 * Configures appropriate weight based on stomp type.
1337 */
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001338static void ath9k_btcoex_bt_stomp(struct ath_softc *sc,
1339 enum ath_stomp_type stomp_type)
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001340{
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001341 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001342
1343 switch (stomp_type) {
1344 case ATH_BTCOEX_STOMP_ALL:
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001345 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
1346 AR_STOMP_ALL_WLAN_WGHT);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001347 break;
1348 case ATH_BTCOEX_STOMP_LOW:
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001349 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
1350 AR_STOMP_LOW_WLAN_WGHT);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001351 break;
1352 case ATH_BTCOEX_STOMP_NONE:
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001353 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
1354 AR_STOMP_NONE_WLAN_WGHT);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001355 break;
1356 default:
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001357 DPRINTF(ah, ATH_DBG_BTCOEX, "Invalid Stomptype\n");
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001358 break;
1359 }
1360
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001361 ath9k_hw_btcoex_enable(ah);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001362}
1363
1364/*
1365 * This is the master bt coex timer which runs for every
1366 * 45ms, bt traffic will be given priority during 55% of this
1367 * period while wlan gets remaining 45%
1368 */
1369static void ath_btcoex_period_timer(unsigned long data)
1370{
1371 struct ath_softc *sc = (struct ath_softc *) data;
1372 struct ath_hw *ah = sc->sc_ah;
1373 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001374
1375 ath_detect_bt_priority(sc);
1376
1377 spin_lock_bh(&btcoex->btcoex_lock);
1378
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001379 ath9k_btcoex_bt_stomp(sc, btcoex->bt_stomp_type);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001380
1381 spin_unlock_bh(&btcoex->btcoex_lock);
1382
1383 if (btcoex->btcoex_period != btcoex->btcoex_no_stomp) {
1384 if (btcoex->hw_timer_enabled)
1385 ath_gen_timer_stop(ah, btcoex->no_stomp_timer);
1386
1387 ath_gen_timer_start(ah,
1388 btcoex->no_stomp_timer,
1389 (ath9k_hw_gettsf32(ah) +
1390 btcoex->btcoex_no_stomp),
1391 btcoex->btcoex_no_stomp * 10);
1392 btcoex->hw_timer_enabled = true;
1393 }
1394
1395 mod_timer(&btcoex->period_timer, jiffies +
1396 msecs_to_jiffies(ATH_BTCOEX_DEF_BT_PERIOD));
1397}
1398
1399/*
1400 * Generic tsf based hw timer which configures weight
1401 * registers to time slice between wlan and bt traffic
1402 */
1403static void ath_btcoex_no_stomp_timer(void *arg)
1404{
1405 struct ath_softc *sc = (struct ath_softc *)arg;
1406 struct ath_hw *ah = sc->sc_ah;
1407 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001408
1409 DPRINTF(ah, ATH_DBG_BTCOEX, "no stomp timer running \n");
1410
1411 spin_lock_bh(&btcoex->btcoex_lock);
1412
Luis R. Rodrigueze08a6ac2009-09-09 14:26:15 -07001413 if (btcoex->bt_stomp_type == ATH_BTCOEX_STOMP_LOW)
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001414 ath9k_btcoex_bt_stomp(sc, ATH_BTCOEX_STOMP_NONE);
Luis R. Rodrigueze08a6ac2009-09-09 14:26:15 -07001415 else if (btcoex->bt_stomp_type == ATH_BTCOEX_STOMP_ALL)
Luis R. Rodriguez269ad812009-09-09 15:05:00 -07001416 ath9k_btcoex_bt_stomp(sc, ATH_BTCOEX_STOMP_LOW);
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001417
1418 spin_unlock_bh(&btcoex->btcoex_lock);
1419}
1420
1421static int ath_init_btcoex_timer(struct ath_softc *sc)
1422{
1423 struct ath_btcoex *btcoex = &sc->btcoex;
1424
1425 btcoex->btcoex_period = ATH_BTCOEX_DEF_BT_PERIOD * 1000;
1426 btcoex->btcoex_no_stomp = (100 - ATH_BTCOEX_DEF_DUTY_CYCLE) *
1427 btcoex->btcoex_period / 100;
1428
1429 setup_timer(&btcoex->period_timer, ath_btcoex_period_timer,
1430 (unsigned long) sc);
1431
1432 spin_lock_init(&btcoex->btcoex_lock);
1433
1434 btcoex->no_stomp_timer = ath_gen_timer_alloc(sc->sc_ah,
1435 ath_btcoex_no_stomp_timer,
1436 ath_btcoex_no_stomp_timer,
1437 (void *) sc, AR_FIRST_NDP_TIMER);
1438
1439 if (!btcoex->no_stomp_timer)
1440 return -ENOMEM;
1441
1442 return 0;
1443}
1444
1445/*
Luis R. Rodriguez1e40bcf2009-08-03 12:24:47 -07001446 * Initialize and fill ath_softc, ath_sofct is the
1447 * "Software Carrier" struct. Historically it has existed
1448 * to allow the separation between hardware specific
1449 * variables (now in ath_hw) and driver specific variables.
1450 */
Vasanthakumar Thiagarajanaeac3552009-09-09 15:25:49 +05301451static int ath_init_softc(u16 devid, struct ath_softc *sc, u16 subsysid)
Sujithff37e332008-11-24 12:07:55 +05301452{
Sujithcbe61d82009-02-09 13:27:12 +05301453 struct ath_hw *ah = NULL;
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001454 int r = 0, i;
Sujithff37e332008-11-24 12:07:55 +05301455 int csz = 0;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001456 int qnum;
Sujithff37e332008-11-24 12:07:55 +05301457
1458 /* XXX: hardware will not be ready until ath_open() being called */
1459 sc->sc_flags |= SC_OP_INVALID;
Sujith88b126a2008-11-28 22:19:02 +05301460
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001461 spin_lock_init(&sc->wiphy_lock);
Sujithff37e332008-11-24 12:07:55 +05301462 spin_lock_init(&sc->sc_resetlock);
Luis R. Rodriguez61584252009-03-12 18:18:49 -04001463 spin_lock_init(&sc->sc_serial_rw);
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05301464 spin_lock_init(&sc->ani_lock);
Gabor Juhos04717cc2009-07-14 20:17:13 -04001465 spin_lock_init(&sc->sc_pm_lock);
Sujithaa33de02008-12-18 11:40:16 +05301466 mutex_init(&sc->mutex);
Sujithff37e332008-11-24 12:07:55 +05301467 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
Sujith9fc9ab02009-03-03 10:16:51 +05301468 tasklet_init(&sc->bcon_tasklet, ath_beacon_tasklet,
Sujithff37e332008-11-24 12:07:55 +05301469 (unsigned long)sc);
1470
1471 /*
1472 * Cache line size is used to size and align various
1473 * structures used to communicate with the hardware.
1474 */
Gabor Juhos88d15702009-01-14 20:17:04 +01001475 ath_read_cachesize(sc, &csz);
Sujithff37e332008-11-24 12:07:55 +05301476 /* XXX assert csz is non-zero */
Luis R. Rodriguezd15dd3e2009-08-12 09:56:59 -07001477 sc->common.cachelsz = csz << 2; /* convert to bytes */
Sujithff37e332008-11-24 12:07:55 +05301478
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001479 ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL);
1480 if (!ah) {
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001481 r = -ENOMEM;
1482 goto bad_no_ah;
1483 }
1484
1485 ah->ah_sc = sc;
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -07001486 ah->hw_version.devid = devid;
Vasanthakumar Thiagarajanaeac3552009-09-09 15:25:49 +05301487 ah->hw_version.subsysid = subsysid;
Luis R. Rodrigueze1e2f932009-08-03 12:24:38 -07001488 sc->sc_ah = ah;
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001489
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001490 if (ath9k_init_debug(ah) < 0)
1491 dev_err(sc->dev, "Unable to create debugfs files\n");
1492
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -07001493 r = ath9k_hw_init(ah);
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001494 if (r) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001495 DPRINTF(ah, ATH_DBG_FATAL,
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -07001496 "Unable to initialize hardware; "
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001497 "initialization status: %d\n", r);
Sujithff37e332008-11-24 12:07:55 +05301498 goto bad;
1499 }
Sujithff37e332008-11-24 12:07:55 +05301500
1501 /* Get the hardware key cache size. */
Sujith2660b812009-02-09 13:27:26 +05301502 sc->keymax = ah->caps.keycache_size;
Sujith17d79042009-02-09 13:27:03 +05301503 if (sc->keymax > ATH_KEYMAX) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001504 DPRINTF(ah, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05301505 "Warning, using only %u entries in %u key cache\n",
Sujith17d79042009-02-09 13:27:03 +05301506 ATH_KEYMAX, sc->keymax);
1507 sc->keymax = ATH_KEYMAX;
Sujithff37e332008-11-24 12:07:55 +05301508 }
1509
1510 /*
1511 * Reset the key cache since some parts do not
1512 * reset the contents on initial power up.
1513 */
Sujith17d79042009-02-09 13:27:03 +05301514 for (i = 0; i < sc->keymax; i++)
Sujithff37e332008-11-24 12:07:55 +05301515 ath9k_hw_keyreset(ah, (u16) i);
Sujithff37e332008-11-24 12:07:55 +05301516
Sujithff37e332008-11-24 12:07:55 +05301517 /* default to MONITOR mode */
Sujith2660b812009-02-09 13:27:26 +05301518 sc->sc_ah->opmode = NL80211_IFTYPE_MONITOR;
Colin McCabed97809d2008-12-01 13:38:55 -08001519
Sujithff37e332008-11-24 12:07:55 +05301520 /* Setup rate tables */
1521
1522 ath_rate_attach(sc);
1523 ath_setup_rates(sc, IEEE80211_BAND_2GHZ);
1524 ath_setup_rates(sc, IEEE80211_BAND_5GHZ);
1525
1526 /*
1527 * Allocate hardware transmit queues: one queue for
1528 * beacon frames and one data queue for each QoS
1529 * priority. Note that the hal handles reseting
1530 * these queues at the needed time.
1531 */
Sujithb77f4832008-12-07 21:44:03 +05301532 sc->beacon.beaconq = ath_beaconq_setup(ah);
1533 if (sc->beacon.beaconq == -1) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001534 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301535 "Unable to setup a beacon xmit queue\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001536 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301537 goto bad2;
1538 }
Sujithb77f4832008-12-07 21:44:03 +05301539 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
1540 if (sc->beacon.cabq == NULL) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001541 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301542 "Unable to setup CAB xmit queue\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001543 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301544 goto bad2;
1545 }
1546
Sujith17d79042009-02-09 13:27:03 +05301547 sc->config.cabqReadytime = ATH_CABQ_READY_TIME;
Sujithff37e332008-11-24 12:07:55 +05301548 ath_cabq_update(sc);
1549
Sujithb77f4832008-12-07 21:44:03 +05301550 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
1551 sc->tx.hwq_map[i] = -1;
Sujithff37e332008-11-24 12:07:55 +05301552
1553 /* Setup data queues */
1554 /* NB: ensure BK queue is the lowest priority h/w queue */
1555 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001556 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301557 "Unable to setup xmit queue for BK traffic\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001558 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301559 goto bad2;
1560 }
1561
1562 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001563 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301564 "Unable to setup xmit queue for BE traffic\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001565 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301566 goto bad2;
1567 }
1568 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001569 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301570 "Unable to setup xmit queue for VI traffic\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001571 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301572 goto bad2;
1573 }
1574 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001575 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301576 "Unable to setup xmit queue for VO traffic\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001577 r = -EIO;
Sujithff37e332008-11-24 12:07:55 +05301578 goto bad2;
1579 }
1580
1581 /* Initializes the noise floor to a reasonable default value.
1582 * Later on this will be updated during ANI processing. */
1583
Sujith17d79042009-02-09 13:27:03 +05301584 sc->ani.noise_floor = ATH_DEFAULT_NOISE_FLOOR;
1585 setup_timer(&sc->ani.timer, ath_ani_calibrate, (unsigned long)sc);
Sujithff37e332008-11-24 12:07:55 +05301586
1587 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1588 ATH9K_CIPHER_TKIP, NULL)) {
1589 /*
1590 * Whether we should enable h/w TKIP MIC.
1591 * XXX: if we don't support WME TKIP MIC, then we wouldn't
1592 * report WMM capable, so it's always safe to turn on
1593 * TKIP MIC in this case.
1594 */
1595 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC,
1596 0, 1, NULL);
1597 }
1598
1599 /*
1600 * Check whether the separate key cache entries
1601 * are required to handle both tx+rx MIC keys.
1602 * With split mic keys the number of stations is limited
1603 * to 27 otherwise 59.
1604 */
1605 if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1606 ATH9K_CIPHER_TKIP, NULL)
1607 && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER,
1608 ATH9K_CIPHER_MIC, NULL)
1609 && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT,
1610 0, NULL))
Sujith17d79042009-02-09 13:27:03 +05301611 sc->splitmic = 1;
Sujithff37e332008-11-24 12:07:55 +05301612
1613 /* turn on mcast key search if possible */
1614 if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
1615 (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1,
1616 1, NULL);
1617
Sujith17d79042009-02-09 13:27:03 +05301618 sc->config.txpowlimit = ATH_TXPOWER_MAX;
Sujithff37e332008-11-24 12:07:55 +05301619
1620 /* 11n Capabilities */
Sujith2660b812009-02-09 13:27:26 +05301621 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) {
Sujithff37e332008-11-24 12:07:55 +05301622 sc->sc_flags |= SC_OP_TXAGGR;
1623 sc->sc_flags |= SC_OP_RXAGGR;
1624 }
1625
Sujith2660b812009-02-09 13:27:26 +05301626 sc->tx_chainmask = ah->caps.tx_chainmask;
1627 sc->rx_chainmask = ah->caps.rx_chainmask;
Sujithff37e332008-11-24 12:07:55 +05301628
1629 ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL);
Sujithb77f4832008-12-07 21:44:03 +05301630 sc->rx.defant = ath9k_hw_getdefantenna(ah);
Sujithff37e332008-11-24 12:07:55 +05301631
Jouni Malinen8ca21f02009-03-03 19:23:27 +02001632 if (ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK)
Sujithba52da52009-02-09 13:27:10 +05301633 memcpy(sc->bssidmask, ath_bcast_mac, ETH_ALEN);
Sujithff37e332008-11-24 12:07:55 +05301634
Sujithb77f4832008-12-07 21:44:03 +05301635 sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */
Sujithff37e332008-11-24 12:07:55 +05301636
1637 /* initialize beacon slots */
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001638 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) {
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001639 sc->beacon.bslot[i] = NULL;
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001640 sc->beacon.bslot_aphy[i] = NULL;
1641 }
Sujithff37e332008-11-24 12:07:55 +05301642
Sujithff37e332008-11-24 12:07:55 +05301643 /* setup channels and rates */
1644
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001645 sc->sbands[IEEE80211_BAND_2GHZ].channels = ath9k_2ghz_chantable;
Sujithff37e332008-11-24 12:07:55 +05301646 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
1647 sc->rates[IEEE80211_BAND_2GHZ];
1648 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001649 sc->sbands[IEEE80211_BAND_2GHZ].n_channels =
1650 ARRAY_SIZE(ath9k_2ghz_chantable);
Sujithff37e332008-11-24 12:07:55 +05301651
Sujith2660b812009-02-09 13:27:26 +05301652 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes)) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001653 sc->sbands[IEEE80211_BAND_5GHZ].channels = ath9k_5ghz_chantable;
Sujithff37e332008-11-24 12:07:55 +05301654 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
1655 sc->rates[IEEE80211_BAND_5GHZ];
1656 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001657 sc->sbands[IEEE80211_BAND_5GHZ].n_channels =
1658 ARRAY_SIZE(ath9k_5ghz_chantable);
Sujithff37e332008-11-24 12:07:55 +05301659 }
1660
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001661 switch (ah->btcoex_hw.scheme) {
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001662 case ATH_BTCOEX_CFG_NONE:
1663 break;
1664 case ATH_BTCOEX_CFG_2WIRE:
1665 ath9k_hw_btcoex_init_2wire(ah);
1666 break;
1667 case ATH_BTCOEX_CFG_3WIRE:
1668 ath9k_hw_btcoex_init_3wire(ah);
1669 r = ath_init_btcoex_timer(sc);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05301670 if (r)
1671 goto bad2;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001672 qnum = ath_tx_get_qnum(sc, ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001673 ath9k_hw_init_btcoex_hw(ah, qnum);
Luis R. Rodrigueze08a6ac2009-09-09 14:26:15 -07001674 sc->btcoex.bt_stomp_type = ATH_BTCOEX_STOMP_LOW;
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07001675 break;
1676 default:
1677 WARN_ON(1);
1678 break;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05301679 }
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301680
Sujithff37e332008-11-24 12:07:55 +05301681 return 0;
1682bad2:
1683 /* cleanup tx queues */
1684 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1685 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301686 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujithff37e332008-11-24 12:07:55 +05301687bad:
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -07001688 ath9k_hw_detach(ah);
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001689bad_no_ah:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001690 ath9k_exit_debug(sc->sc_ah);
1691 sc->sc_ah = NULL;
Sujithff37e332008-11-24 12:07:55 +05301692
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001693 return r;
Sujithff37e332008-11-24 12:07:55 +05301694}
1695
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001696void ath_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301697{
Sujith9c84b792008-10-29 10:17:13 +05301698 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
1699 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
1700 IEEE80211_HW_SIGNAL_DBM |
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301701 IEEE80211_HW_AMPDU_AGGREGATION |
1702 IEEE80211_HW_SUPPORTS_PS |
Sujitheeee1322009-03-10 10:39:53 +05301703 IEEE80211_HW_PS_NULLFUNC_STACK |
1704 IEEE80211_HW_SPECTRUM_MGMT;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301705
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001706 if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || modparam_nohwcrypt)
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001707 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
1708
Sujith9c84b792008-10-29 10:17:13 +05301709 hw->wiphy->interface_modes =
1710 BIT(NL80211_IFTYPE_AP) |
1711 BIT(NL80211_IFTYPE_STATION) |
Pat Erley9cb54122009-03-20 22:59:59 -04001712 BIT(NL80211_IFTYPE_ADHOC) |
1713 BIT(NL80211_IFTYPE_MESH_POINT);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301714
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301715 hw->queues = 4;
Sujithe63835b2008-11-18 09:07:53 +05301716 hw->max_rates = 4;
Sujith171387e2009-02-17 15:36:25 +05301717 hw->channel_change_time = 5000;
Jouni Malinen465ca842009-03-03 19:23:34 +02001718 hw->max_listen_interval = 10;
Luis R. Rodriguezdd190182009-07-14 20:13:56 -04001719 /* Hardware supports 10 but we use 4 */
1720 hw->max_rate_tries = 4;
Sujith528f0c62008-10-29 10:14:26 +05301721 hw->sta_data_size = sizeof(struct ath_node);
Sujith17d79042009-02-09 13:27:03 +05301722 hw->vif_data_size = sizeof(struct ath_vif);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301723
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301724 hw->rate_control_algorithm = "ath9k_rate_control";
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301725
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001726 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
1727 &sc->sbands[IEEE80211_BAND_2GHZ];
1728 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes))
1729 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1730 &sc->sbands[IEEE80211_BAND_5GHZ];
1731}
1732
Luis R. Rodriguez1e40bcf2009-08-03 12:24:47 -07001733/* Device driver core initialization */
Vasanthakumar Thiagarajanaeac3552009-09-09 15:25:49 +05301734int ath_init_device(u16 devid, struct ath_softc *sc, u16 subsysid)
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001735{
1736 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001737 struct ath_hw *ah;
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001738 int error = 0, i;
Bob Copeland3a702e42009-03-30 22:30:29 -04001739 struct ath_regulatory *reg;
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001740
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001741 dev_dbg(sc->dev, "Attach ATH hw\n");
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001742
Vasanthakumar Thiagarajanaeac3552009-09-09 15:25:49 +05301743 error = ath_init_softc(devid, sc, subsysid);
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001744 if (error != 0)
1745 return error;
1746
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001747 ah = sc->sc_ah;
1748
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001749 /* get mac address from hardware and set in mac80211 */
1750
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001751 SET_IEEE80211_PERM_ADDR(hw, ah->macaddr);
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001752
1753 ath_set_hw_capab(sc, hw);
1754
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001755 error = ath_regd_init(&sc->common.regulatory, sc->hw->wiphy,
Luis R. Rodriguezc26c2e52009-05-19 18:27:11 -04001756 ath9k_reg_notifier);
1757 if (error)
1758 return error;
1759
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001760 reg = &sc->common.regulatory;
Luis R. Rodriguezc26c2e52009-05-19 18:27:11 -04001761
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001762 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) {
Sujitheb2599c2009-01-23 11:20:44 +05301763 setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001764 if (test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes))
Sujitheb2599c2009-01-23 11:20:44 +05301765 setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
Sujith9c84b792008-10-29 10:17:13 +05301766 }
1767
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301768 /* initialize tx/rx engine */
1769 error = ath_tx_init(sc, ATH_TXBUF);
1770 if (error != 0)
Vasanthakumar Thiagarajan40b130a2009-02-16 13:55:07 +05301771 goto error_attach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301772
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301773 error = ath_rx_init(sc, ATH_RXBUF);
1774 if (error != 0)
Vasanthakumar Thiagarajan40b130a2009-02-16 13:55:07 +05301775 goto error_attach;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301776
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02001777 INIT_WORK(&sc->chan_work, ath9k_wiphy_chan_work);
Jouni Malinenf98c3bd2009-03-03 19:23:39 +02001778 INIT_DELAYED_WORK(&sc->wiphy_work, ath9k_wiphy_work);
1779 sc->wiphy_scheduler_int = msecs_to_jiffies(500);
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02001780
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301781 error = ieee80211_register_hw(hw);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301782
Bob Copeland3a702e42009-03-30 22:30:29 -04001783 if (!ath_is_world_regd(reg)) {
Bob Copelandc02cf372009-03-30 22:30:28 -04001784 error = regulatory_hint(hw->wiphy, reg->alpha2);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001785 if (error)
1786 goto error_attach;
1787 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001788
Senthil Balasubramaniandb93e7b2008-11-13 18:01:08 +05301789 /* Initialize LED control */
1790 ath_init_leds(sc);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301791
Johannes Berg3b319aa2009-06-13 14:50:26 +05301792 ath_start_rfkill_poll(sc);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001793
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301794 return 0;
Vasanthakumar Thiagarajan40b130a2009-02-16 13:55:07 +05301795
1796error_attach:
1797 /* cleanup tx queues */
1798 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1799 if (ATH_TXQ_SETUP(sc, i))
1800 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
1801
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001802 ath9k_hw_detach(ah);
1803 ath9k_exit_debug(ah);
Luis R. Rodriguez3ce1b1a2009-08-03 12:24:53 -07001804 sc->sc_ah = NULL;
Vasanthakumar Thiagarajan40b130a2009-02-16 13:55:07 +05301805
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +05301806 return error;
1807}
1808
Sujithff37e332008-11-24 12:07:55 +05301809int ath_reset(struct ath_softc *sc, bool retry_tx)
1810{
Sujithcbe61d82009-02-09 13:27:12 +05301811 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez030bb492008-12-23 15:58:37 -08001812 struct ieee80211_hw *hw = sc->hw;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001813 int r;
Sujithff37e332008-11-24 12:07:55 +05301814
1815 ath9k_hw_set_interrupts(ah, 0);
Sujith043a0402009-01-16 21:38:47 +05301816 ath_drain_all_txq(sc, retry_tx);
Sujithff37e332008-11-24 12:07:55 +05301817 ath_stoprecv(sc);
1818 ath_flushrecv(sc);
1819
1820 spin_lock_bh(&sc->sc_resetlock);
Sujith2660b812009-02-09 13:27:26 +05301821 r = ath9k_hw_reset(ah, sc->sc_ah->curchan, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001822 if (r)
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001823 DPRINTF(ah, ATH_DBG_FATAL,
Vasanthakumar Thiagarajan6b457842009-05-15 18:59:20 +05301824 "Unable to reset hardware; reset status %d\n", r);
Sujithff37e332008-11-24 12:07:55 +05301825 spin_unlock_bh(&sc->sc_resetlock);
1826
1827 if (ath_startrecv(sc) != 0)
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001828 DPRINTF(ah, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujithff37e332008-11-24 12:07:55 +05301829
1830 /*
1831 * We may be doing a reset in response to a request
1832 * that changes the channel so update any state that
1833 * might change as a result.
1834 */
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08001835 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05301836
1837 ath_update_txpow(sc);
1838
1839 if (sc->sc_flags & SC_OP_BEACONS)
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001840 ath_beacon_config(sc, NULL); /* restart beacons */
Sujithff37e332008-11-24 12:07:55 +05301841
Sujith17d79042009-02-09 13:27:03 +05301842 ath9k_hw_set_interrupts(ah, sc->imask);
Sujithff37e332008-11-24 12:07:55 +05301843
1844 if (retry_tx) {
1845 int i;
1846 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1847 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05301848 spin_lock_bh(&sc->tx.txq[i].axq_lock);
1849 ath_txq_schedule(sc, &sc->tx.txq[i]);
1850 spin_unlock_bh(&sc->tx.txq[i].axq_lock);
Sujithff37e332008-11-24 12:07:55 +05301851 }
1852 }
1853 }
1854
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001855 return r;
Sujithff37e332008-11-24 12:07:55 +05301856}
1857
1858/*
1859 * This function will allocate both the DMA descriptor structure, and the
1860 * buffers it contains. These are used to contain the descriptors used
1861 * by the system.
1862*/
1863int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
1864 struct list_head *head, const char *name,
1865 int nbuf, int ndesc)
1866{
1867#define DS2PHYS(_dd, _ds) \
1868 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
1869#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
1870#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
1871
1872 struct ath_desc *ds;
1873 struct ath_buf *bf;
1874 int i, bsize, error;
1875
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001876 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
Sujith04bd4632008-11-28 22:18:05 +05301877 name, nbuf, ndesc);
Sujithff37e332008-11-24 12:07:55 +05301878
Senthil Balasubramanianb03a9db2009-03-06 11:24:09 +05301879 INIT_LIST_HEAD(head);
Sujithff37e332008-11-24 12:07:55 +05301880 /* ath_desc must be a multiple of DWORDs */
1881 if ((sizeof(struct ath_desc) % 4) != 0) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001882 DPRINTF(sc->sc_ah, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n");
Sujithff37e332008-11-24 12:07:55 +05301883 ASSERT((sizeof(struct ath_desc) % 4) == 0);
1884 error = -ENOMEM;
1885 goto fail;
1886 }
1887
Sujithff37e332008-11-24 12:07:55 +05301888 dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc;
1889
1890 /*
1891 * Need additional DMA memory because we can't use
1892 * descriptors that cross the 4K page boundary. Assume
1893 * one skipped descriptor per 4K page.
1894 */
Sujith2660b812009-02-09 13:27:26 +05301895 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
Sujithff37e332008-11-24 12:07:55 +05301896 u32 ndesc_skipped =
1897 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
1898 u32 dma_len;
1899
1900 while (ndesc_skipped) {
1901 dma_len = ndesc_skipped * sizeof(struct ath_desc);
1902 dd->dd_desc_len += dma_len;
1903
1904 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
1905 };
1906 }
1907
1908 /* allocate descriptors */
Gabor Juhos7da3c552009-01-14 20:17:03 +01001909 dd->dd_desc = dma_alloc_coherent(sc->dev, dd->dd_desc_len,
Senthil Balasubramanianf0e6ce12009-03-06 11:24:08 +05301910 &dd->dd_desc_paddr, GFP_KERNEL);
Sujithff37e332008-11-24 12:07:55 +05301911 if (dd->dd_desc == NULL) {
1912 error = -ENOMEM;
1913 goto fail;
1914 }
1915 ds = dd->dd_desc;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001916 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
Sujithae459af2009-03-30 15:28:40 +05301917 name, ds, (u32) dd->dd_desc_len,
Sujithff37e332008-11-24 12:07:55 +05301918 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
1919
1920 /* allocate buffers */
1921 bsize = sizeof(struct ath_buf) * nbuf;
Senthil Balasubramanianf0e6ce12009-03-06 11:24:08 +05301922 bf = kzalloc(bsize, GFP_KERNEL);
Sujithff37e332008-11-24 12:07:55 +05301923 if (bf == NULL) {
1924 error = -ENOMEM;
1925 goto fail2;
1926 }
Sujithff37e332008-11-24 12:07:55 +05301927 dd->dd_bufptr = bf;
1928
Sujithff37e332008-11-24 12:07:55 +05301929 for (i = 0; i < nbuf; i++, bf++, ds += ndesc) {
1930 bf->bf_desc = ds;
1931 bf->bf_daddr = DS2PHYS(dd, ds);
1932
Sujith2660b812009-02-09 13:27:26 +05301933 if (!(sc->sc_ah->caps.hw_caps &
Sujithff37e332008-11-24 12:07:55 +05301934 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
1935 /*
1936 * Skip descriptor addresses which can cause 4KB
1937 * boundary crossing (addr + length) with a 32 dword
1938 * descriptor fetch.
1939 */
1940 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
1941 ASSERT((caddr_t) bf->bf_desc <
1942 ((caddr_t) dd->dd_desc +
1943 dd->dd_desc_len));
1944
1945 ds += ndesc;
1946 bf->bf_desc = ds;
1947 bf->bf_daddr = DS2PHYS(dd, ds);
1948 }
1949 }
1950 list_add_tail(&bf->list, head);
1951 }
1952 return 0;
1953fail2:
Gabor Juhos7da3c552009-01-14 20:17:03 +01001954 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
1955 dd->dd_desc_paddr);
Sujithff37e332008-11-24 12:07:55 +05301956fail:
1957 memset(dd, 0, sizeof(*dd));
1958 return error;
1959#undef ATH_DESC_4KB_BOUND_CHECK
1960#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
1961#undef DS2PHYS
1962}
1963
1964void ath_descdma_cleanup(struct ath_softc *sc,
1965 struct ath_descdma *dd,
1966 struct list_head *head)
1967{
Gabor Juhos7da3c552009-01-14 20:17:03 +01001968 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
1969 dd->dd_desc_paddr);
Sujithff37e332008-11-24 12:07:55 +05301970
1971 INIT_LIST_HEAD(head);
1972 kfree(dd->dd_bufptr);
1973 memset(dd, 0, sizeof(*dd));
1974}
1975
1976int ath_get_hal_qnum(u16 queue, struct ath_softc *sc)
1977{
1978 int qnum;
1979
1980 switch (queue) {
1981 case 0:
Sujithb77f4832008-12-07 21:44:03 +05301982 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO];
Sujithff37e332008-11-24 12:07:55 +05301983 break;
1984 case 1:
Sujithb77f4832008-12-07 21:44:03 +05301985 qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI];
Sujithff37e332008-11-24 12:07:55 +05301986 break;
1987 case 2:
Sujithb77f4832008-12-07 21:44:03 +05301988 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301989 break;
1990 case 3:
Sujithb77f4832008-12-07 21:44:03 +05301991 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK];
Sujithff37e332008-11-24 12:07:55 +05301992 break;
1993 default:
Sujithb77f4832008-12-07 21:44:03 +05301994 qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE];
Sujithff37e332008-11-24 12:07:55 +05301995 break;
1996 }
1997
1998 return qnum;
1999}
2000
2001int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc)
2002{
2003 int qnum;
2004
2005 switch (queue) {
2006 case ATH9K_WME_AC_VO:
2007 qnum = 0;
2008 break;
2009 case ATH9K_WME_AC_VI:
2010 qnum = 1;
2011 break;
2012 case ATH9K_WME_AC_BE:
2013 qnum = 2;
2014 break;
2015 case ATH9K_WME_AC_BK:
2016 qnum = 3;
2017 break;
2018 default:
2019 qnum = -1;
2020 break;
2021 }
2022
2023 return qnum;
2024}
2025
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002026/* XXX: Remove me once we don't depend on ath9k_channel for all
2027 * this redundant data */
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002028void ath9k_update_ichannel(struct ath_softc *sc, struct ieee80211_hw *hw,
2029 struct ath9k_channel *ichan)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002030{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002031 struct ieee80211_channel *chan = hw->conf.channel;
2032 struct ieee80211_conf *conf = &hw->conf;
2033
2034 ichan->channel = chan->center_freq;
2035 ichan->chan = chan;
2036
2037 if (chan->band == IEEE80211_BAND_2GHZ) {
2038 ichan->chanmode = CHANNEL_G;
Sujith88132622009-09-03 12:08:53 +05302039 ichan->channelFlags = CHANNEL_2GHZ | CHANNEL_OFDM | CHANNEL_G;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002040 } else {
2041 ichan->chanmode = CHANNEL_A;
2042 ichan->channelFlags = CHANNEL_5GHZ | CHANNEL_OFDM;
2043 }
2044
2045 sc->tx_chan_width = ATH9K_HT_MACMODE_20;
2046
2047 if (conf_is_ht(conf)) {
2048 if (conf_is_ht40(conf))
2049 sc->tx_chan_width = ATH9K_HT_MACMODE_2040;
2050
2051 ichan->chanmode = ath_get_extchanmode(sc, chan,
2052 conf->channel_type);
2053 }
2054}
2055
Sujithff37e332008-11-24 12:07:55 +05302056/**********************/
2057/* mac80211 callbacks */
2058/**********************/
2059
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002060/*
2061 * (Re)start btcoex timers
2062 */
2063static void ath9k_btcoex_timer_resume(struct ath_softc *sc)
2064{
2065 struct ath_btcoex *btcoex = &sc->btcoex;
2066 struct ath_hw *ah = sc->sc_ah;
2067
2068 DPRINTF(ah, ATH_DBG_BTCOEX, "Starting btcoex timers");
2069
2070 /* make sure duty cycle timer is also stopped when resuming */
2071 if (btcoex->hw_timer_enabled)
2072 ath_gen_timer_stop(sc->sc_ah, btcoex->no_stomp_timer);
2073
2074 btcoex->bt_priority_cnt = 0;
2075 btcoex->bt_priority_time = jiffies;
2076 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
2077
2078 mod_timer(&btcoex->period_timer, jiffies);
2079}
2080
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002081static int ath9k_start(struct ieee80211_hw *hw)
2082{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002083 struct ath_wiphy *aphy = hw->priv;
2084 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002085 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002086 struct ieee80211_channel *curchan = hw->conf.channel;
Sujithff37e332008-11-24 12:07:55 +05302087 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +05302088 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002089
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002090 DPRINTF(ah, ATH_DBG_CONFIG, "Starting driver with "
Sujith04bd4632008-11-28 22:18:05 +05302091 "initial channel: %d MHz\n", curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002092
Sujith141b38b2009-02-04 08:10:07 +05302093 mutex_lock(&sc->mutex);
2094
Jouni Malinen9580a222009-03-03 19:23:33 +02002095 if (ath9k_wiphy_started(sc)) {
2096 if (sc->chan_idx == curchan->hw_value) {
2097 /*
2098 * Already on the operational channel, the new wiphy
2099 * can be marked active.
2100 */
2101 aphy->state = ATH_WIPHY_ACTIVE;
2102 ieee80211_wake_queues(hw);
2103 } else {
2104 /*
2105 * Another wiphy is on another channel, start the new
2106 * wiphy in paused state.
2107 */
2108 aphy->state = ATH_WIPHY_PAUSED;
2109 ieee80211_stop_queues(hw);
2110 }
2111 mutex_unlock(&sc->mutex);
2112 return 0;
2113 }
2114 aphy->state = ATH_WIPHY_ACTIVE;
2115
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002116 /* setup initial channel */
2117
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +05302118 sc->chan_idx = curchan->hw_value;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002119
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +05302120 init_channel = ath_get_curchannel(sc, hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002121
Sujithff37e332008-11-24 12:07:55 +05302122 /* Reset SERDES registers */
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002123 ath9k_hw_configpcipowersave(ah, 0, 0);
Sujithff37e332008-11-24 12:07:55 +05302124
2125 /*
2126 * The basic interface to setting the hardware in a good
2127 * state is ``reset''. On return the hardware is known to
2128 * be powered up and with interrupts disabled. This must
2129 * be followed by initialization of the appropriate bits
2130 * and then setup of the interrupt mask.
2131 */
2132 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002133 r = ath9k_hw_reset(ah, init_channel, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002134 if (r) {
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002135 DPRINTF(ah, ATH_DBG_FATAL,
Vasanthakumar Thiagarajan6b457842009-05-15 18:59:20 +05302136 "Unable to reset hardware; reset status %d "
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002137 "(freq %u MHz)\n", r,
2138 curchan->center_freq);
Sujithff37e332008-11-24 12:07:55 +05302139 spin_unlock_bh(&sc->sc_resetlock);
Sujith141b38b2009-02-04 08:10:07 +05302140 goto mutex_unlock;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002141 }
Sujithff37e332008-11-24 12:07:55 +05302142 spin_unlock_bh(&sc->sc_resetlock);
2143
2144 /*
2145 * This is needed only to setup initial state
2146 * but it's best done after a reset.
2147 */
2148 ath_update_txpow(sc);
2149
2150 /*
2151 * Setup the hardware after reset:
2152 * The receive engine is set going.
2153 * Frame transmit is handled entirely
2154 * in the frame output path; there's nothing to do
2155 * here except setup the interrupt mask.
2156 */
2157 if (ath_startrecv(sc) != 0) {
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002158 DPRINTF(ah, ATH_DBG_FATAL, "Unable to start recv logic\n");
Sujith141b38b2009-02-04 08:10:07 +05302159 r = -EIO;
2160 goto mutex_unlock;
Sujithff37e332008-11-24 12:07:55 +05302161 }
2162
2163 /* Setup our intr mask. */
Sujith17d79042009-02-09 13:27:03 +05302164 sc->imask = ATH9K_INT_RX | ATH9K_INT_TX
Sujithff37e332008-11-24 12:07:55 +05302165 | ATH9K_INT_RXEOL | ATH9K_INT_RXORN
2166 | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL;
2167
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002168 if (ah->caps.hw_caps & ATH9K_HW_CAP_GTT)
Sujith17d79042009-02-09 13:27:03 +05302169 sc->imask |= ATH9K_INT_GTT;
Sujithff37e332008-11-24 12:07:55 +05302170
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002171 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Sujith17d79042009-02-09 13:27:03 +05302172 sc->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +05302173
Luis R. Rodriguezce111ba2008-12-23 15:58:39 -08002174 ath_cache_conf_rate(sc, &hw->conf);
Sujithff37e332008-11-24 12:07:55 +05302175
2176 sc->sc_flags &= ~SC_OP_INVALID;
2177
2178 /* Disable BMISS interrupt when we're not associated */
Sujith17d79042009-02-09 13:27:03 +05302179 sc->imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002180 ath9k_hw_set_interrupts(ah, sc->imask);
Sujithff37e332008-11-24 12:07:55 +05302181
Jouni Malinenbce048d2009-03-03 19:23:28 +02002182 ieee80211_wake_queues(hw);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002183
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002184 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002185
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002186 if ((ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE) &&
2187 !ah->btcoex_hw.enabled) {
Luis R. Rodriguez5e197292009-09-09 15:15:55 -07002188 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
2189 AR_STOMP_LOW_WLAN_WGHT);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002190 ath9k_hw_btcoex_enable(ah);
Vasanthakumar Thiagarajanf985ad12009-08-26 21:08:43 +05302191
Vasanthakumar Thiagarajan7b6840a2009-09-07 17:46:49 +05302192 ath_pcie_aspm_disable(sc);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002193 if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002194 ath9k_btcoex_timer_resume(sc);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302195 }
2196
Sujith141b38b2009-02-04 08:10:07 +05302197mutex_unlock:
2198 mutex_unlock(&sc->mutex);
2199
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002200 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002201}
2202
2203static int ath9k_tx(struct ieee80211_hw *hw,
2204 struct sk_buff *skb)
2205{
Jouni Malinen147583c2008-08-11 14:01:50 +03002206 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jouni Malinenbce048d2009-03-03 19:23:28 +02002207 struct ath_wiphy *aphy = hw->priv;
2208 struct ath_softc *sc = aphy->sc;
Sujith528f0c62008-10-29 10:14:26 +05302209 struct ath_tx_control txctl;
2210 int hdrlen, padsize;
2211
Jouni Malinen8089cc42009-03-03 19:23:38 +02002212 if (aphy->state != ATH_WIPHY_ACTIVE && aphy->state != ATH_WIPHY_SCAN) {
Jouni Malinenee166a02009-03-03 19:23:36 +02002213 printk(KERN_DEBUG "ath9k: %s: TX in unexpected wiphy state "
2214 "%d\n", wiphy_name(hw->wiphy), aphy->state);
2215 goto exit;
2216 }
2217
Gabor Juhos96148322009-07-24 17:27:21 +02002218 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +03002219 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2220 /*
2221 * mac80211 does not set PM field for normal data frames, so we
2222 * need to update that based on the current PS mode.
2223 */
2224 if (ieee80211_is_data(hdr->frame_control) &&
2225 !ieee80211_is_nullfunc(hdr->frame_control) &&
2226 !ieee80211_has_pm(hdr->frame_control)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002227 DPRINTF(sc->sc_ah, ATH_DBG_PS, "Add PM=1 for a TX frame "
Jouni Malinendc8c4582009-05-19 17:01:42 +03002228 "while in PS mode\n");
2229 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
2230 }
2231 }
2232
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002233 if (unlikely(sc->sc_ah->power_mode != ATH9K_PM_AWAKE)) {
2234 /*
2235 * We are using PS-Poll and mac80211 can request TX while in
2236 * power save mode. Need to wake up hardware for the TX to be
2237 * completed and if needed, also for RX of buffered frames.
2238 */
2239 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2240 ath9k_ps_wakeup(sc);
2241 ath9k_hw_setrxabort(sc->sc_ah, 0);
2242 if (ieee80211_is_pspoll(hdr->frame_control)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002243 DPRINTF(sc->sc_ah, ATH_DBG_PS, "Sending PS-Poll to pick a "
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002244 "buffered frame\n");
2245 sc->sc_flags |= SC_OP_WAIT_FOR_PSPOLL_DATA;
2246 } else {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002247 DPRINTF(sc->sc_ah, ATH_DBG_PS, "Wake up to complete TX\n");
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002248 sc->sc_flags |= SC_OP_WAIT_FOR_TX_ACK;
2249 }
2250 /*
2251 * The actual restore operation will happen only after
2252 * the sc_flags bit is cleared. We are just dropping
2253 * the ps_usecount here.
2254 */
2255 ath9k_ps_restore(sc);
2256 }
2257
Sujith528f0c62008-10-29 10:14:26 +05302258 memset(&txctl, 0, sizeof(struct ath_tx_control));
Jouni Malinen147583c2008-08-11 14:01:50 +03002259
2260 /*
2261 * As a temporary workaround, assign seq# here; this will likely need
2262 * to be cleaned up to work better with Beacon transmission and virtual
2263 * BSSes.
2264 */
2265 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
2266 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2267 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Sujithb77f4832008-12-07 21:44:03 +05302268 sc->tx.seq_no += 0x10;
Jouni Malinen147583c2008-08-11 14:01:50 +03002269 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +05302270 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinen147583c2008-08-11 14:01:50 +03002271 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002272
2273 /* Add the padding after the header if this is not already done */
2274 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
2275 if (hdrlen & 3) {
2276 padsize = hdrlen % 4;
2277 if (skb_headroom(skb) < padsize)
2278 return -1;
2279 skb_push(skb, padsize);
2280 memmove(skb->data, skb->data + padsize, hdrlen);
2281 }
2282
Sujith528f0c62008-10-29 10:14:26 +05302283 /* Check if a tx queue is available */
2284
2285 txctl.txq = ath_test_get_txq(sc, skb);
2286 if (!txctl.txq)
2287 goto exit;
2288
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002289 DPRINTF(sc->sc_ah, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002290
Jouni Malinenc52f33d2009-03-03 19:23:29 +02002291 if (ath_tx_start(hw, skb, &txctl) != 0) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002292 DPRINTF(sc->sc_ah, ATH_DBG_XMIT, "TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05302293 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002294 }
2295
2296 return 0;
Sujith528f0c62008-10-29 10:14:26 +05302297exit:
2298 dev_kfree_skb_any(skb);
2299 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002300}
2301
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002302/*
2303 * Pause btcoex timer and bt duty cycle timer
2304 */
2305static void ath9k_btcoex_timer_pause(struct ath_softc *sc)
2306{
2307 struct ath_btcoex *btcoex = &sc->btcoex;
2308 struct ath_hw *ah = sc->sc_ah;
2309
2310 del_timer_sync(&btcoex->period_timer);
2311
2312 if (btcoex->hw_timer_enabled)
2313 ath_gen_timer_stop(ah, btcoex->no_stomp_timer);
2314
2315 btcoex->hw_timer_enabled = false;
2316}
2317
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002318static void ath9k_stop(struct ieee80211_hw *hw)
2319{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002320 struct ath_wiphy *aphy = hw->priv;
2321 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002322 struct ath_hw *ah = sc->sc_ah;
Sujith9c84b792008-10-29 10:17:13 +05302323
Sujith4c483812009-08-18 10:51:52 +05302324 mutex_lock(&sc->mutex);
2325
Jouni Malinen9580a222009-03-03 19:23:33 +02002326 aphy->state = ATH_WIPHY_INACTIVE;
2327
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -07002328 cancel_delayed_work_sync(&sc->ath_led_blink_work);
2329 cancel_delayed_work_sync(&sc->tx_complete_work);
2330
2331 if (!sc->num_sec_wiphy) {
2332 cancel_delayed_work_sync(&sc->wiphy_work);
2333 cancel_work_sync(&sc->chan_work);
2334 }
2335
Sujith9c84b792008-10-29 10:17:13 +05302336 if (sc->sc_flags & SC_OP_INVALID) {
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002337 DPRINTF(ah, ATH_DBG_ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +05302338 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +05302339 return;
2340 }
2341
Jouni Malinen9580a222009-03-03 19:23:33 +02002342 if (ath9k_wiphy_started(sc)) {
2343 mutex_unlock(&sc->mutex);
2344 return; /* another wiphy still in use */
2345 }
2346
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002347 if (ah->btcoex_hw.enabled) {
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002348 ath9k_hw_btcoex_disable(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002349 if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
Luis R. Rodriguez75d78392009-09-09 04:00:10 -07002350 ath9k_btcoex_timer_pause(sc);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302351 }
2352
Sujithff37e332008-11-24 12:07:55 +05302353 /* make sure h/w will not generate any interrupt
2354 * before setting the invalid flag. */
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002355 ath9k_hw_set_interrupts(ah, 0);
Sujithff37e332008-11-24 12:07:55 +05302356
2357 if (!(sc->sc_flags & SC_OP_INVALID)) {
Sujith043a0402009-01-16 21:38:47 +05302358 ath_drain_all_txq(sc, false);
Sujithff37e332008-11-24 12:07:55 +05302359 ath_stoprecv(sc);
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002360 ath9k_hw_phy_disable(ah);
Sujithff37e332008-11-24 12:07:55 +05302361 } else
Sujithb77f4832008-12-07 21:44:03 +05302362 sc->rx.rxlink = NULL;
Sujithff37e332008-11-24 12:07:55 +05302363
Sujithff37e332008-11-24 12:07:55 +05302364 /* disable HAL and put h/w to sleep */
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002365 ath9k_hw_disable(ah);
2366 ath9k_hw_configpcipowersave(ah, 1, 1);
2367 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Sujithff37e332008-11-24 12:07:55 +05302368
2369 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002370
Sujith141b38b2009-02-04 08:10:07 +05302371 mutex_unlock(&sc->mutex);
2372
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -07002373 DPRINTF(ah, ATH_DBG_CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002374}
2375
2376static int ath9k_add_interface(struct ieee80211_hw *hw,
2377 struct ieee80211_if_init_conf *conf)
2378{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002379 struct ath_wiphy *aphy = hw->priv;
2380 struct ath_softc *sc = aphy->sc;
Sujith17d79042009-02-09 13:27:03 +05302381 struct ath_vif *avp = (void *)conf->vif->drv_priv;
Colin McCabed97809d2008-12-01 13:38:55 -08002382 enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002383 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002384
Sujith141b38b2009-02-04 08:10:07 +05302385 mutex_lock(&sc->mutex);
2386
Jouni Malinen8ca21f02009-03-03 19:23:27 +02002387 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) &&
2388 sc->nvifs > 0) {
2389 ret = -ENOBUFS;
2390 goto out;
2391 }
2392
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002393 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002394 case NL80211_IFTYPE_STATION:
Colin McCabed97809d2008-12-01 13:38:55 -08002395 ic_opmode = NL80211_IFTYPE_STATION;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002396 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002397 case NL80211_IFTYPE_ADHOC:
Johannes Berg05c914f2008-09-11 00:01:58 +02002398 case NL80211_IFTYPE_AP:
Pat Erley9cb54122009-03-20 22:59:59 -04002399 case NL80211_IFTYPE_MESH_POINT:
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002400 if (sc->nbcnvifs >= ATH_BCBUF) {
2401 ret = -ENOBUFS;
2402 goto out;
2403 }
Pat Erley9cb54122009-03-20 22:59:59 -04002404 ic_opmode = conf->type;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03002405 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002406 default:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002407 DPRINTF(sc->sc_ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302408 "Interface type %d not yet supported\n", conf->type);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002409 ret = -EOPNOTSUPP;
2410 goto out;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 }
2412
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002413 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "Attach a VIF of type: %d\n", ic_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002414
Sujith17d79042009-02-09 13:27:03 +05302415 /* Set the VIF opmode */
Sujith5640b082008-10-29 10:16:06 +05302416 avp->av_opmode = ic_opmode;
2417 avp->av_bslot = -1;
2418
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002419 sc->nvifs++;
Jouni Malinen8ca21f02009-03-03 19:23:27 +02002420
2421 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK)
2422 ath9k_set_bssid_mask(hw);
2423
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002424 if (sc->nvifs > 1)
2425 goto out; /* skip global settings for secondary vif */
2426
Sujithb238e902009-03-03 10:16:56 +05302427 if (ic_opmode == NL80211_IFTYPE_AP) {
Sujith5640b082008-10-29 10:16:06 +05302428 ath9k_hw_set_tsfadjust(sc->sc_ah, 1);
Sujithb238e902009-03-03 10:16:56 +05302429 sc->sc_flags |= SC_OP_TSF_RESET;
2430 }
Sujith5640b082008-10-29 10:16:06 +05302431
Sujith5640b082008-10-29 10:16:06 +05302432 /* Set the device opmode */
Sujith2660b812009-02-09 13:27:26 +05302433 sc->sc_ah->opmode = ic_opmode;
Sujith5640b082008-10-29 10:16:06 +05302434
Vivek Natarajan4e30ffa2009-01-28 20:53:27 +05302435 /*
2436 * Enable MIB interrupts when there are hardware phy counters.
2437 * Note we only do this (at the moment) for station mode.
2438 */
Sujith4af9cf42009-02-12 10:06:47 +05302439 if ((conf->type == NL80211_IFTYPE_STATION) ||
Pat Erley9cb54122009-03-20 22:59:59 -04002440 (conf->type == NL80211_IFTYPE_ADHOC) ||
2441 (conf->type == NL80211_IFTYPE_MESH_POINT)) {
Sujith1aa8e842009-08-13 09:34:25 +05302442 sc->imask |= ATH9K_INT_MIB;
Sujith4af9cf42009-02-12 10:06:47 +05302443 sc->imask |= ATH9K_INT_TSFOOR;
2444 }
2445
Sujith17d79042009-02-09 13:27:03 +05302446 ath9k_hw_set_interrupts(sc->sc_ah, sc->imask);
Vivek Natarajan4e30ffa2009-01-28 20:53:27 +05302447
Senthil Balasubramanianf38faa32009-06-24 18:56:40 +05302448 if (conf->type == NL80211_IFTYPE_AP ||
2449 conf->type == NL80211_IFTYPE_ADHOC ||
2450 conf->type == NL80211_IFTYPE_MONITOR)
Sujith415f7382009-04-13 21:56:46 +05302451 ath_start_ani(sc);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002452
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002453out:
Sujith141b38b2009-02-04 08:10:07 +05302454 mutex_unlock(&sc->mutex);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002455 return ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002456}
2457
2458static void ath9k_remove_interface(struct ieee80211_hw *hw,
2459 struct ieee80211_if_init_conf *conf)
2460{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002461 struct ath_wiphy *aphy = hw->priv;
2462 struct ath_softc *sc = aphy->sc;
Sujith17d79042009-02-09 13:27:03 +05302463 struct ath_vif *avp = (void *)conf->vif->drv_priv;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002464 int i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002465
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002466 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002467
Sujith141b38b2009-02-04 08:10:07 +05302468 mutex_lock(&sc->mutex);
2469
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002470 /* Stop ANI */
Sujith17d79042009-02-09 13:27:03 +05302471 del_timer_sync(&sc->ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002472
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002473 /* Reclaim beacon resources */
Pat Erley9cb54122009-03-20 22:59:59 -04002474 if ((sc->sc_ah->opmode == NL80211_IFTYPE_AP) ||
2475 (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) ||
2476 (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) {
Sujithb77f4832008-12-07 21:44:03 +05302477 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002478 ath_beacon_return(sc, avp);
2479 }
2480
Sujith672840a2008-08-11 14:05:08 +05302481 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002482
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002483 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) {
2484 if (sc->beacon.bslot[i] == conf->vif) {
2485 printk(KERN_DEBUG "%s: vif had allocated beacon "
2486 "slot\n", __func__);
2487 sc->beacon.bslot[i] = NULL;
Jouni Malinenc52f33d2009-03-03 19:23:29 +02002488 sc->beacon.bslot_aphy[i] = NULL;
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02002489 }
2490 }
2491
Sujith17d79042009-02-09 13:27:03 +05302492 sc->nvifs--;
Sujith141b38b2009-02-04 08:10:07 +05302493
2494 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002495}
2496
Johannes Berge8975582008-10-09 12:18:51 +02002497static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002498{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002499 struct ath_wiphy *aphy = hw->priv;
2500 struct ath_softc *sc = aphy->sc;
Johannes Berge8975582008-10-09 12:18:51 +02002501 struct ieee80211_conf *conf = &hw->conf;
Vivek Natarajan8782b412009-03-30 14:17:00 +05302502 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002503 bool all_wiphys_idle = false, disable_radio = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002504
Sujithaa33de02008-12-18 11:40:16 +05302505 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05302506
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002507 /* Leave this as the first check */
2508 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
2509
2510 spin_lock_bh(&sc->wiphy_lock);
2511 all_wiphys_idle = ath9k_all_wiphys_idle(sc);
2512 spin_unlock_bh(&sc->wiphy_lock);
2513
2514 if (conf->flags & IEEE80211_CONF_IDLE){
2515 if (all_wiphys_idle)
2516 disable_radio = true;
2517 }
2518 else if (all_wiphys_idle) {
2519 ath_radio_enable(sc);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002520 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG,
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002521 "not-idle: enabling radio\n");
2522 }
2523 }
2524
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302525 if (changed & IEEE80211_CONF_CHANGE_PS) {
2526 if (conf->flags & IEEE80211_CONF_PS) {
Vivek Natarajan8782b412009-03-30 14:17:00 +05302527 if (!(ah->caps.hw_caps &
2528 ATH9K_HW_CAP_AUTOSLEEP)) {
2529 if ((sc->imask & ATH9K_INT_TIM_TIMER) == 0) {
2530 sc->imask |= ATH9K_INT_TIM_TIMER;
2531 ath9k_hw_set_interrupts(sc->sc_ah,
2532 sc->imask);
2533 }
2534 ath9k_hw_setrxabort(sc->sc_ah, 1);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302535 }
Gabor Juhos96148322009-07-24 17:27:21 +02002536 sc->ps_enabled = true;
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302537 } else {
Gabor Juhos96148322009-07-24 17:27:21 +02002538 sc->ps_enabled = false;
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302539 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Vivek Natarajan8782b412009-03-30 14:17:00 +05302540 if (!(ah->caps.hw_caps &
2541 ATH9K_HW_CAP_AUTOSLEEP)) {
2542 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002543 sc->sc_flags &= ~(SC_OP_WAIT_FOR_BEACON |
2544 SC_OP_WAIT_FOR_CAB |
2545 SC_OP_WAIT_FOR_PSPOLL_DATA |
2546 SC_OP_WAIT_FOR_TX_ACK);
Vivek Natarajan8782b412009-03-30 14:17:00 +05302547 if (sc->imask & ATH9K_INT_TIM_TIMER) {
2548 sc->imask &= ~ATH9K_INT_TIM_TIMER;
2549 ath9k_hw_set_interrupts(sc->sc_ah,
2550 sc->imask);
2551 }
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302552 }
2553 }
2554 }
2555
Johannes Berg47979382009-01-07 10:13:27 +01002556 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
Sujith99405f92008-11-24 12:08:35 +05302557 struct ieee80211_channel *curchan = hw->conf.channel;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002558 int pos = curchan->hw_value;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002559
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002560 aphy->chan_idx = pos;
2561 aphy->chan_is_ht = conf_is_ht(conf);
2562
Jouni Malinen8089cc42009-03-03 19:23:38 +02002563 if (aphy->state == ATH_WIPHY_SCAN ||
2564 aphy->state == ATH_WIPHY_ACTIVE)
2565 ath9k_wiphy_pause_all_forced(sc, aphy);
2566 else {
2567 /*
2568 * Do not change operational channel based on a paused
2569 * wiphy changes.
2570 */
2571 goto skip_chan_change;
2572 }
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002573
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002574 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "Set channel: %d MHz\n",
Sujith04bd4632008-11-28 22:18:05 +05302575 curchan->center_freq);
Johannes Bergae5eb022008-10-14 16:58:37 +02002576
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002577 /* XXX: remove me eventualy */
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002578 ath9k_update_ichannel(sc, hw, &sc->sc_ah->channels[pos]);
Sujithe11602b2008-11-27 09:46:27 +05302579
Luis R. Rodriguezecf70442008-12-23 15:58:43 -08002580 ath_update_chainmask(sc, conf_is_ht(conf));
Sujith86060f02009-01-07 14:25:29 +05302581
Jouni Malinen0e2dedf2009-03-03 19:23:32 +02002582 if (ath_set_channel(sc, hw, &sc->sc_ah->channels[pos]) < 0) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002583 DPRINTF(sc->sc_ah, ATH_DBG_FATAL, "Unable to set channel\n");
Sujithaa33de02008-12-18 11:40:16 +05302584 mutex_unlock(&sc->mutex);
Sujithe11602b2008-11-27 09:46:27 +05302585 return -EINVAL;
2586 }
Sujith094d05d2008-12-12 11:57:43 +05302587 }
Sujith86b89ee2008-08-07 10:54:57 +05302588
Jouni Malinen8089cc42009-03-03 19:23:38 +02002589skip_chan_change:
Luis R. Rodriguez5c020dc2008-10-22 13:28:45 -07002590 if (changed & IEEE80211_CONF_CHANGE_POWER)
Sujith17d79042009-02-09 13:27:03 +05302591 sc->config.txpowlimit = 2 * conf->power_level;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002592
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002593 if (disable_radio) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002594 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "idle: disabling radio\n");
Luis R. Rodriguez64839172009-07-14 20:22:53 -04002595 ath_radio_disable(sc);
2596 }
2597
Sujithaa33de02008-12-18 11:40:16 +05302598 mutex_unlock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05302599
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002600 return 0;
2601}
2602
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002603#define SUPPORTED_FILTERS \
2604 (FIF_PROMISC_IN_BSS | \
2605 FIF_ALLMULTI | \
2606 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04002607 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002608 FIF_OTHER_BSS | \
2609 FIF_BCN_PRBRESP_PROMISC | \
2610 FIF_FCSFAIL)
2611
Sujith7dcfdcd2008-08-11 14:03:13 +05302612/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002613static void ath9k_configure_filter(struct ieee80211_hw *hw,
2614 unsigned int changed_flags,
2615 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02002616 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002617{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002618 struct ath_wiphy *aphy = hw->priv;
2619 struct ath_softc *sc = aphy->sc;
Sujith7dcfdcd2008-08-11 14:03:13 +05302620 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002621
2622 changed_flags &= SUPPORTED_FILTERS;
2623 *total_flags &= SUPPORTED_FILTERS;
2624
Sujithb77f4832008-12-07 21:44:03 +05302625 sc->rx.rxfilter = *total_flags;
Jouni Malinenaa68aea2009-05-19 17:01:41 +03002626 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05302627 rfilt = ath_calcrxfilter(sc);
2628 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03002629 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05302630
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002631 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002632}
2633
2634static void ath9k_sta_notify(struct ieee80211_hw *hw,
2635 struct ieee80211_vif *vif,
2636 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02002637 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002638{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002639 struct ath_wiphy *aphy = hw->priv;
2640 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002641
2642 switch (cmd) {
2643 case STA_NOTIFY_ADD:
Sujith5640b082008-10-29 10:16:06 +05302644 ath_node_attach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002645 break;
2646 case STA_NOTIFY_REMOVE:
Sujithb5aa9bf2008-10-29 10:13:31 +05302647 ath_node_detach(sc, sta);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002648 break;
2649 default:
2650 break;
2651 }
2652}
2653
Sujith141b38b2009-02-04 08:10:07 +05302654static int ath9k_conf_tx(struct ieee80211_hw *hw, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002655 const struct ieee80211_tx_queue_params *params)
2656{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002657 struct ath_wiphy *aphy = hw->priv;
2658 struct ath_softc *sc = aphy->sc;
Sujithea9880f2008-08-07 10:53:10 +05302659 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002660 int ret = 0, qnum;
2661
2662 if (queue >= WME_NUM_AC)
2663 return 0;
2664
Sujith141b38b2009-02-04 08:10:07 +05302665 mutex_lock(&sc->mutex);
2666
Sujith1ffb0612009-03-30 15:28:46 +05302667 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
2668
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002669 qi.tqi_aifs = params->aifs;
2670 qi.tqi_cwmin = params->cw_min;
2671 qi.tqi_cwmax = params->cw_max;
2672 qi.tqi_burstTime = params->txop;
2673 qnum = ath_get_hal_qnum(queue, sc);
2674
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002675 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG,
Sujith04bd4632008-11-28 22:18:05 +05302676 "Configure tx [queue/halq] [%d/%d], "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002677 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
Sujith04bd4632008-11-28 22:18:05 +05302678 queue, qnum, params->aifs, params->cw_min,
2679 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002680
2681 ret = ath_txq_update(sc, qnum, &qi);
2682 if (ret)
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002683 DPRINTF(sc->sc_ah, ATH_DBG_FATAL, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002684
Sujith141b38b2009-02-04 08:10:07 +05302685 mutex_unlock(&sc->mutex);
2686
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002687 return ret;
2688}
2689
2690static int ath9k_set_key(struct ieee80211_hw *hw,
2691 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002692 struct ieee80211_vif *vif,
2693 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002694 struct ieee80211_key_conf *key)
2695{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002696 struct ath_wiphy *aphy = hw->priv;
2697 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002698 int ret = 0;
2699
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02002700 if (modparam_nohwcrypt)
2701 return -ENOSPC;
2702
Sujith141b38b2009-02-04 08:10:07 +05302703 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302704 ath9k_ps_wakeup(sc);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002705 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "Set HW Key\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002706
2707 switch (cmd) {
2708 case SET_KEY:
Jouni Malinen3f53dd62009-02-26 11:18:46 +02002709 ret = ath_key_config(sc, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02002710 if (ret >= 0) {
2711 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002712 /* push IV and Michael MIC generation to stack */
2713 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05302714 if (key->alg == ALG_TKIP)
2715 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002716 if (sc->sc_ah->sw_mgmt_crypto && key->alg == ALG_CCMP)
2717 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT;
Jouni Malinen6ace2892008-12-17 13:32:17 +02002718 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002719 }
2720 break;
2721 case DISABLE_KEY:
2722 ath_key_delete(sc, key);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002723 break;
2724 default:
2725 ret = -EINVAL;
2726 }
2727
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302728 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05302729 mutex_unlock(&sc->mutex);
2730
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002731 return ret;
2732}
2733
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002734static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
2735 struct ieee80211_vif *vif,
2736 struct ieee80211_bss_conf *bss_conf,
2737 u32 changed)
2738{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002739 struct ath_wiphy *aphy = hw->priv;
2740 struct ath_softc *sc = aphy->sc;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002741 struct ath_hw *ah = sc->sc_ah;
2742 struct ath_vif *avp = (void *)vif->drv_priv;
2743 u32 rfilt = 0;
2744 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002745
Sujith141b38b2009-02-04 08:10:07 +05302746 mutex_lock(&sc->mutex);
2747
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002748 /*
2749 * TODO: Need to decide which hw opmode to use for
2750 * multi-interface cases
2751 * XXX: This belongs into add_interface!
2752 */
2753 if (vif->type == NL80211_IFTYPE_AP &&
2754 ah->opmode != NL80211_IFTYPE_AP) {
2755 ah->opmode = NL80211_IFTYPE_STATION;
2756 ath9k_hw_setopmode(ah);
2757 memcpy(sc->curbssid, sc->sc_ah->macaddr, ETH_ALEN);
2758 sc->curaid = 0;
2759 ath9k_hw_write_associd(sc);
2760 /* Request full reset to get hw opmode changed properly */
2761 sc->sc_flags |= SC_OP_FULL_RESET;
2762 }
2763
2764 if ((changed & BSS_CHANGED_BSSID) &&
2765 !is_zero_ether_addr(bss_conf->bssid)) {
2766 switch (vif->type) {
2767 case NL80211_IFTYPE_STATION:
2768 case NL80211_IFTYPE_ADHOC:
2769 case NL80211_IFTYPE_MESH_POINT:
2770 /* Set BSSID */
2771 memcpy(sc->curbssid, bss_conf->bssid, ETH_ALEN);
2772 memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN);
2773 sc->curaid = 0;
2774 ath9k_hw_write_associd(sc);
2775
2776 /* Set aggregation protection mode parameters */
2777 sc->config.ath_aggr_prot = 0;
2778
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002779 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG,
Johannes Berg2d0ddec2009-04-23 16:13:26 +02002780 "RX filter 0x%x bssid %pM aid 0x%x\n",
2781 rfilt, sc->curbssid, sc->curaid);
2782
2783 /* need to reconfigure the beacon */
2784 sc->sc_flags &= ~SC_OP_BEACONS ;
2785
2786 break;
2787 default:
2788 break;
2789 }
2790 }
2791
2792 if ((vif->type == NL80211_IFTYPE_ADHOC) ||
2793 (vif->type == NL80211_IFTYPE_AP) ||
2794 (vif->type == NL80211_IFTYPE_MESH_POINT)) {
2795 if ((changed & BSS_CHANGED_BEACON) ||
2796 (changed & BSS_CHANGED_BEACON_ENABLED &&
2797 bss_conf->enable_beacon)) {
2798 /*
2799 * Allocate and setup the beacon frame.
2800 *
2801 * Stop any previous beacon DMA. This may be
2802 * necessary, for example, when an ibss merge
2803 * causes reconfiguration; we may be called
2804 * with beacon transmission active.
2805 */
2806 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
2807
2808 error = ath_beacon_alloc(aphy, vif);
2809 if (!error)
2810 ath_beacon_config(sc, vif);
2811 }
2812 }
2813
2814 /* Check for WLAN_CAPABILITY_PRIVACY ? */
2815 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
2816 for (i = 0; i < IEEE80211_WEP_NKID; i++)
2817 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
2818 ath9k_hw_keysetmac(sc->sc_ah,
2819 (u16)i,
2820 sc->curbssid);
2821 }
2822
2823 /* Only legacy IBSS for now */
2824 if (vif->type == NL80211_IFTYPE_ADHOC)
2825 ath_update_chainmask(sc, 0);
2826
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002827 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002828 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002829 bss_conf->use_short_preamble);
2830 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05302831 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002832 else
Sujith672840a2008-08-11 14:05:08 +05302833 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002834 }
2835
2836 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002837 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002838 bss_conf->use_cts_prot);
2839 if (bss_conf->use_cts_prot &&
2840 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05302841 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002842 else
Sujith672840a2008-08-11 14:05:08 +05302843 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002844 }
2845
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002846 if (changed & BSS_CHANGED_ASSOC) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002847 DPRINTF(sc->sc_ah, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002848 bss_conf->assoc);
Sujith5640b082008-10-29 10:16:06 +05302849 ath9k_bss_assoc_info(sc, vif, bss_conf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002850 }
Sujith141b38b2009-02-04 08:10:07 +05302851
Johannes Berg57c4d7b2009-04-23 16:10:04 +02002852 /*
2853 * The HW TSF has to be reset when the beacon interval changes.
2854 * We set the flag here, and ath_beacon_config_ap() would take this
2855 * into account when it gets called through the subsequent
2856 * config_interface() call - with IFCC_BEACON in the changed field.
2857 */
2858
2859 if (changed & BSS_CHANGED_BEACON_INT) {
2860 sc->sc_flags |= SC_OP_TSF_RESET;
2861 sc->beacon_interval = bss_conf->beacon_int;
2862 }
2863
Sujith141b38b2009-02-04 08:10:07 +05302864 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002865}
2866
2867static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
2868{
2869 u64 tsf;
Jouni Malinenbce048d2009-03-03 19:23:28 +02002870 struct ath_wiphy *aphy = hw->priv;
2871 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002872
Sujith141b38b2009-02-04 08:10:07 +05302873 mutex_lock(&sc->mutex);
2874 tsf = ath9k_hw_gettsf64(sc->sc_ah);
2875 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002876
2877 return tsf;
2878}
2879
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002880static void ath9k_set_tsf(struct ieee80211_hw *hw, u64 tsf)
2881{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002882 struct ath_wiphy *aphy = hw->priv;
2883 struct ath_softc *sc = aphy->sc;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002884
Sujith141b38b2009-02-04 08:10:07 +05302885 mutex_lock(&sc->mutex);
2886 ath9k_hw_settsf64(sc->sc_ah, tsf);
2887 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002888}
2889
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002890static void ath9k_reset_tsf(struct ieee80211_hw *hw)
2891{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002892 struct ath_wiphy *aphy = hw->priv;
2893 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002894
Sujith141b38b2009-02-04 08:10:07 +05302895 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07002896
2897 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05302898 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07002899 ath9k_ps_restore(sc);
2900
Sujith141b38b2009-02-04 08:10:07 +05302901 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002902}
2903
2904static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Sujith141b38b2009-02-04 08:10:07 +05302905 enum ieee80211_ampdu_mlme_action action,
2906 struct ieee80211_sta *sta,
2907 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002908{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002909 struct ath_wiphy *aphy = hw->priv;
2910 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002911 int ret = 0;
2912
2913 switch (action) {
2914 case IEEE80211_AMPDU_RX_START:
Sujithdca3edb2008-10-29 10:19:01 +05302915 if (!(sc->sc_flags & SC_OP_RXAGGR))
2916 ret = -ENOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002917 break;
2918 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002919 break;
2920 case IEEE80211_AMPDU_TX_START:
Sujithf83da962009-07-23 15:32:37 +05302921 ath_tx_aggr_start(sc, sta, tid, ssn);
2922 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002923 break;
2924 case IEEE80211_AMPDU_TX_STOP:
Sujithf83da962009-07-23 15:32:37 +05302925 ath_tx_aggr_stop(sc, sta, tid);
Johannes Berg17741cd2008-09-11 00:02:02 +02002926 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002927 break;
Johannes Bergb1720232009-03-23 17:28:39 +01002928 case IEEE80211_AMPDU_TX_OPERATIONAL:
Sujith8469cde2008-10-29 10:19:28 +05302929 ath_tx_aggr_resume(sc, sta, tid);
2930 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002931 default:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002932 DPRINTF(sc->sc_ah, ATH_DBG_FATAL, "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002933 }
2934
2935 return ret;
2936}
2937
Sujith0c98de62009-03-03 10:16:45 +05302938static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
2939{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002940 struct ath_wiphy *aphy = hw->priv;
2941 struct ath_softc *sc = aphy->sc;
Sujith0c98de62009-03-03 10:16:45 +05302942
Sujith3d832612009-08-21 12:00:28 +05302943 mutex_lock(&sc->mutex);
Jouni Malinen8089cc42009-03-03 19:23:38 +02002944 if (ath9k_wiphy_scanning(sc)) {
2945 printk(KERN_DEBUG "ath9k: Two wiphys trying to scan at the "
2946 "same time\n");
2947 /*
2948 * Do not allow the concurrent scanning state for now. This
2949 * could be improved with scanning control moved into ath9k.
2950 */
Sujith3d832612009-08-21 12:00:28 +05302951 mutex_unlock(&sc->mutex);
Jouni Malinen8089cc42009-03-03 19:23:38 +02002952 return;
2953 }
2954
2955 aphy->state = ATH_WIPHY_SCAN;
2956 ath9k_wiphy_pause_all_forced(sc, aphy);
2957
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05302958 spin_lock_bh(&sc->ani_lock);
Sujith0c98de62009-03-03 10:16:45 +05302959 sc->sc_flags |= SC_OP_SCANNING;
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05302960 spin_unlock_bh(&sc->ani_lock);
Sujith3d832612009-08-21 12:00:28 +05302961 mutex_unlock(&sc->mutex);
Sujith0c98de62009-03-03 10:16:45 +05302962}
2963
2964static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
2965{
Jouni Malinenbce048d2009-03-03 19:23:28 +02002966 struct ath_wiphy *aphy = hw->priv;
2967 struct ath_softc *sc = aphy->sc;
Sujith0c98de62009-03-03 10:16:45 +05302968
Sujith3d832612009-08-21 12:00:28 +05302969 mutex_lock(&sc->mutex);
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05302970 spin_lock_bh(&sc->ani_lock);
Jouni Malinen8089cc42009-03-03 19:23:38 +02002971 aphy->state = ATH_WIPHY_ACTIVE;
Sujith0c98de62009-03-03 10:16:45 +05302972 sc->sc_flags &= ~SC_OP_SCANNING;
Sujith9c07a772009-04-13 21:56:36 +05302973 sc->sc_flags |= SC_OP_FULL_RESET;
Senthil Balasubramaniane5f09212009-06-24 18:56:41 +05302974 spin_unlock_bh(&sc->ani_lock);
Vivek Natarajand0bec342009-09-02 15:50:55 +05302975 ath_beacon_config(sc, NULL);
Sujith3d832612009-08-21 12:00:28 +05302976 mutex_unlock(&sc->mutex);
Sujith0c98de62009-03-03 10:16:45 +05302977}
2978
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002979struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002980 .tx = ath9k_tx,
2981 .start = ath9k_start,
2982 .stop = ath9k_stop,
2983 .add_interface = ath9k_add_interface,
2984 .remove_interface = ath9k_remove_interface,
2985 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002986 .configure_filter = ath9k_configure_filter,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002987 .sta_notify = ath9k_sta_notify,
2988 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002989 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002990 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002991 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002992 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002993 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002994 .ampdu_action = ath9k_ampdu_action,
Sujith0c98de62009-03-03 10:16:45 +05302995 .sw_scan_start = ath9k_sw_scan_start,
2996 .sw_scan_complete = ath9k_sw_scan_complete,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302997 .rfkill_poll = ath9k_rfkill_poll_state,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002998};
2999
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01003000static struct {
3001 u32 version;
3002 const char * name;
3003} ath_mac_bb_names[] = {
3004 { AR_SREV_VERSION_5416_PCI, "5416" },
3005 { AR_SREV_VERSION_5416_PCIE, "5418" },
3006 { AR_SREV_VERSION_9100, "9100" },
3007 { AR_SREV_VERSION_9160, "9160" },
3008 { AR_SREV_VERSION_9280, "9280" },
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303009 { AR_SREV_VERSION_9285, "9285" },
3010 { AR_SREV_VERSION_9287, "9287" }
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01003011};
3012
3013static struct {
3014 u16 version;
3015 const char * name;
3016} ath_rf_names[] = {
3017 { 0, "5133" },
3018 { AR_RAD5133_SREV_MAJOR, "5133" },
3019 { AR_RAD5122_SREV_MAJOR, "5122" },
3020 { AR_RAD2133_SREV_MAJOR, "2133" },
3021 { AR_RAD2122_SREV_MAJOR, "2122" }
3022};
3023
3024/*
3025 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3026 */
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003027const char *
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01003028ath_mac_bb_name(u32 mac_bb_version)
3029{
3030 int i;
3031
3032 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3033 if (ath_mac_bb_names[i].version == mac_bb_version) {
3034 return ath_mac_bb_names[i].name;
3035 }
3036 }
3037
3038 return "????";
3039}
3040
3041/*
3042 * Return the RF name. "????" is returned if the RF is unknown.
3043 */
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003044const char *
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +01003045ath_rf_name(u16 rf_version)
3046{
3047 int i;
3048
3049 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3050 if (ath_rf_names[i].version == rf_version) {
3051 return ath_rf_names[i].name;
3052 }
3053 }
3054
3055 return "????";
3056}
3057
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003058static int __init ath9k_init(void)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003059{
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303060 int error;
3061
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303062 /* Register rate control algorithm */
3063 error = ath_rate_control_register();
3064 if (error != 0) {
3065 printk(KERN_ERR
Luis R. Rodriguezb51bb3c2009-01-26 07:30:03 -08003066 "ath9k: Unable to register rate control "
3067 "algorithm: %d\n",
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303068 error);
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003069 goto err_out;
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303070 }
3071
Gabor Juhos19d8bc22009-03-05 16:55:18 +01003072 error = ath9k_debug_create_root();
3073 if (error) {
3074 printk(KERN_ERR
3075 "ath9k: Unable to create debugfs root: %d\n",
3076 error);
3077 goto err_rate_unregister;
3078 }
3079
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003080 error = ath_pci_init();
3081 if (error < 0) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003082 printk(KERN_ERR
Luis R. Rodriguezb51bb3c2009-01-26 07:30:03 -08003083 "ath9k: No PCI devices found, driver not installed.\n");
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003084 error = -ENODEV;
Gabor Juhos19d8bc22009-03-05 16:55:18 +01003085 goto err_remove_root;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003086 }
3087
Gabor Juhos09329d32009-01-14 20:17:07 +01003088 error = ath_ahb_init();
3089 if (error < 0) {
3090 error = -ENODEV;
3091 goto err_pci_exit;
3092 }
3093
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003094 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003095
Gabor Juhos09329d32009-01-14 20:17:07 +01003096 err_pci_exit:
3097 ath_pci_exit();
3098
Gabor Juhos19d8bc22009-03-05 16:55:18 +01003099 err_remove_root:
3100 ath9k_debug_remove_root();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003101 err_rate_unregister:
Vasanthakumar Thiagarajanca8a8562008-12-16 12:37:38 +05303102 ath_rate_control_unregister();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003103 err_out:
3104 return error;
3105}
3106module_init(ath9k_init);
3107
3108static void __exit ath9k_exit(void)
3109{
Gabor Juhos09329d32009-01-14 20:17:07 +01003110 ath_ahb_exit();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003111 ath_pci_exit();
Gabor Juhos19d8bc22009-03-05 16:55:18 +01003112 ath9k_debug_remove_root();
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003113 ath_rate_control_unregister();
Sujith04bd4632008-11-28 22:18:05 +05303114 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003115}
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003116module_exit(ath9k_exit);