blob: 32acaf7ff622de69836a1dd5f94a1309a108099c [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
2 * Copyright (c) 2008 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17/* mac80211 and PCI callbacks */
18
19#include <linux/nl80211.h>
20#include "core.h"
21
22#define ATH_PCI_VERSION "0.1"
23
24#define IEEE80211_HTCAP_MAXRXAMPDU_FACTOR 13
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070025
26static char *dev_info = "ath9k";
27
28MODULE_AUTHOR("Atheros Communications");
29MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
30MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
31MODULE_LICENSE("Dual BSD/GPL");
32
33static struct pci_device_id ath_pci_id_table[] __devinitdata = {
34 { PCI_VDEVICE(ATHEROS, 0x0023) }, /* PCI */
35 { PCI_VDEVICE(ATHEROS, 0x0024) }, /* PCI-E */
36 { PCI_VDEVICE(ATHEROS, 0x0027) }, /* PCI */
37 { PCI_VDEVICE(ATHEROS, 0x0029) }, /* PCI */
38 { PCI_VDEVICE(ATHEROS, 0x002A) }, /* PCI-E */
39 { 0 }
40};
41
42static int ath_get_channel(struct ath_softc *sc,
43 struct ieee80211_channel *chan)
44{
45 int i;
46
47 for (i = 0; i < sc->sc_ah->ah_nchan; i++) {
48 if (sc->sc_ah->ah_channels[i].channel == chan->center_freq)
49 return i;
50 }
51
52 return -1;
53}
54
55static u32 ath_get_extchanmode(struct ath_softc *sc,
56 struct ieee80211_channel *chan)
57{
58 u32 chanmode = 0;
59 u8 ext_chan_offset = sc->sc_ht_info.ext_chan_offset;
60 enum ath9k_ht_macmode tx_chan_width = sc->sc_ht_info.tx_chan_width;
61
62 switch (chan->band) {
63 case IEEE80211_BAND_2GHZ:
Johannes Bergd9fe60d2008-10-09 12:13:49 +020064 if ((ext_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_NONE) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070065 (tx_chan_width == ATH9K_HT_MACMODE_20))
66 chanmode = CHANNEL_G_HT20;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020067 if ((ext_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070068 (tx_chan_width == ATH9K_HT_MACMODE_2040))
69 chanmode = CHANNEL_G_HT40PLUS;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020070 if ((ext_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070071 (tx_chan_width == ATH9K_HT_MACMODE_2040))
72 chanmode = CHANNEL_G_HT40MINUS;
73 break;
74 case IEEE80211_BAND_5GHZ:
Johannes Bergd9fe60d2008-10-09 12:13:49 +020075 if ((ext_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_NONE) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070076 (tx_chan_width == ATH9K_HT_MACMODE_20))
77 chanmode = CHANNEL_A_HT20;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020078 if ((ext_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070079 (tx_chan_width == ATH9K_HT_MACMODE_2040))
80 chanmode = CHANNEL_A_HT40PLUS;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020081 if ((ext_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070082 (tx_chan_width == ATH9K_HT_MACMODE_2040))
83 chanmode = CHANNEL_A_HT40MINUS;
84 break;
85 default:
86 break;
87 }
88
89 return chanmode;
90}
91
92
93static int ath_setkey_tkip(struct ath_softc *sc,
94 struct ieee80211_key_conf *key,
95 struct ath9k_keyval *hk,
96 const u8 *addr)
97{
98 u8 *key_rxmic = NULL;
99 u8 *key_txmic = NULL;
100
101 key_txmic = key->key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
102 key_rxmic = key->key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
103
104 if (addr == NULL) {
105 /* Group key installation */
106 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
107 return ath_keyset(sc, key->keyidx, hk, addr);
108 }
109 if (!sc->sc_splitmic) {
110 /*
111 * data key goes at first index,
112 * the hal handles the MIC keys at index+64.
113 */
114 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
115 memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic));
116 return ath_keyset(sc, key->keyidx, hk, addr);
117 }
118 /*
119 * TX key goes at first index, RX key at +32.
120 * The hal handles the MIC keys at index+64.
121 */
122 memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic));
123 if (!ath_keyset(sc, key->keyidx, hk, NULL)) {
124 /* Txmic entry failed. No need to proceed further */
125 DPRINTF(sc, ATH_DBG_KEYCACHE,
126 "%s Setting TX MIC Key Failed\n", __func__);
127 return 0;
128 }
129
130 memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic));
131 /* XXX delete tx key on failure? */
132 return ath_keyset(sc, key->keyidx+32, hk, addr);
133}
134
135static int ath_key_config(struct ath_softc *sc,
136 const u8 *addr,
137 struct ieee80211_key_conf *key)
138{
139 struct ieee80211_vif *vif;
140 struct ath9k_keyval hk;
141 const u8 *mac = NULL;
142 int ret = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200143 enum nl80211_iftype opmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700144
145 memset(&hk, 0, sizeof(hk));
146
147 switch (key->alg) {
148 case ALG_WEP:
149 hk.kv_type = ATH9K_CIPHER_WEP;
150 break;
151 case ALG_TKIP:
152 hk.kv_type = ATH9K_CIPHER_TKIP;
153 break;
154 case ALG_CCMP:
155 hk.kv_type = ATH9K_CIPHER_AES_CCM;
156 break;
157 default:
158 return -EINVAL;
159 }
160
161 hk.kv_len = key->keylen;
162 memcpy(hk.kv_val, key->key, key->keylen);
163
164 if (!sc->sc_vaps[0])
165 return -EIO;
166
167 vif = sc->sc_vaps[0]->av_if_data;
168 opmode = vif->type;
169
170 /*
171 * Strategy:
172 * For _M_STA mc tx, we will not setup a key at all since we never
173 * tx mc.
174 * _M_STA mc rx, we will use the keyID.
175 * for _M_IBSS mc tx, we will use the keyID, and no macaddr.
176 * for _M_IBSS mc rx, we will alloc a slot and plumb the mac of the
177 * peer node. BUT we will plumb a cleartext key so that we can do
178 * perSta default key table lookup in software.
179 */
180 if (is_broadcast_ether_addr(addr)) {
181 switch (opmode) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200182 case NL80211_IFTYPE_STATION:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700183 /* default key: could be group WPA key
184 * or could be static WEP key */
185 mac = NULL;
186 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200187 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700188 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200189 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700190 break;
191 default:
192 ASSERT(0);
193 break;
194 }
195 } else {
196 mac = addr;
197 }
198
199 if (key->alg == ALG_TKIP)
200 ret = ath_setkey_tkip(sc, key, &hk, mac);
201 else
202 ret = ath_keyset(sc, key->keyidx, &hk, mac);
203
204 if (!ret)
205 return -EIO;
206
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700207 return 0;
208}
209
210static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key)
211{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700212 int freeslot;
213
Sujithff9b6622008-08-14 13:27:16 +0530214 freeslot = (key->keyidx >= 4) ? 1 : 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700215 ath_key_reset(sc, key->keyidx, freeslot);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700216}
217
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200218static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700219{
Sujith60653672008-08-14 13:28:02 +0530220#define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */
221#define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700222
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200223 ht_info->ht_supported = true;
224 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
225 IEEE80211_HT_CAP_SM_PS |
226 IEEE80211_HT_CAP_SGI_40 |
227 IEEE80211_HT_CAP_DSSSCCK40;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700228
Sujith60653672008-08-14 13:28:02 +0530229 ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536;
230 ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200231 /* set up supported mcs set */
232 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
233 ht_info->mcs.rx_mask[0] = 0xff;
234 ht_info->mcs.rx_mask[1] = 0xff;
235 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700236}
237
238static int ath_rate2idx(struct ath_softc *sc, int rate)
239{
240 int i = 0, cur_band, n_rates;
241 struct ieee80211_hw *hw = sc->hw;
242
243 cur_band = hw->conf.channel->band;
244 n_rates = sc->sbands[cur_band].n_bitrates;
245
246 for (i = 0; i < n_rates; i++) {
247 if (sc->sbands[cur_band].bitrates[i].bitrate == rate)
248 break;
249 }
250
251 /*
252 * NB:mac80211 validates rx rate index against the supported legacy rate
253 * index only (should be done against ht rates also), return the highest
254 * legacy rate index for rx rate which does not match any one of the
255 * supported basic and extended rates to make mac80211 happy.
256 * The following hack will be cleaned up once the issue with
257 * the rx rate index validation in mac80211 is fixed.
258 */
259 if (i == n_rates)
260 return n_rates - 1;
261 return i;
262}
263
264static void ath9k_rx_prepare(struct ath_softc *sc,
265 struct sk_buff *skb,
266 struct ath_recv_status *status,
267 struct ieee80211_rx_status *rx_status)
268{
269 struct ieee80211_hw *hw = sc->hw;
270 struct ieee80211_channel *curchan = hw->conf.channel;
271
272 memset(rx_status, 0, sizeof(struct ieee80211_rx_status));
273
274 rx_status->mactime = status->tsf;
275 rx_status->band = curchan->band;
276 rx_status->freq = curchan->center_freq;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700277 rx_status->noise = sc->sc_ani.sc_noise_floor;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700278 rx_status->signal = rx_status->noise + status->rssi;
279 rx_status->rate_idx = ath_rate2idx(sc, (status->rateKbps / 100));
280 rx_status->antenna = status->antenna;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700281
Luis R. Rodriguezc49d1542008-10-13 14:08:09 -0700282 /* at 45 you will be able to use MCS 15 reliably. A more elaborate
283 * scheme can be used here but it requires tables of SNR/throughput for
284 * each possible mode used. */
285 rx_status->qual = status->rssi * 100 / 45;
286
287 /* rssi can be more than 45 though, anything above that
288 * should be considered at 100% */
289 if (rx_status->qual > 100)
290 rx_status->qual = 100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700291
292 if (status->flags & ATH_RX_MIC_ERROR)
293 rx_status->flag |= RX_FLAG_MMIC_ERROR;
294 if (status->flags & ATH_RX_FCS_ERROR)
295 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
296
297 rx_status->flag |= RX_FLAG_TSFT;
298}
299
300static u8 parse_mpdudensity(u8 mpdudensity)
301{
302 /*
303 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
304 * 0 for no restriction
305 * 1 for 1/4 us
306 * 2 for 1/2 us
307 * 3 for 1 us
308 * 4 for 2 us
309 * 5 for 4 us
310 * 6 for 8 us
311 * 7 for 16 us
312 */
313 switch (mpdudensity) {
314 case 0:
315 return 0;
316 case 1:
317 case 2:
318 case 3:
319 /* Our lower layer calculations limit our precision to
320 1 microsecond */
321 return 1;
322 case 4:
323 return 2;
324 case 5:
325 return 4;
326 case 6:
327 return 8;
328 case 7:
329 return 16;
330 default:
331 return 0;
332 }
333}
334
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530335static void ath9k_ht_conf(struct ath_softc *sc,
336 struct ieee80211_bss_conf *bss_conf)
337{
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530338 struct ath_ht_info *ht_info = &sc->sc_ht_info;
339
Johannes Bergae5eb022008-10-14 16:58:37 +0200340 if (sc->hw->conf.ht.enabled) {
341 ht_info->ext_chan_offset = bss_conf->ht.secondary_channel_offset;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530342
Johannes Bergae5eb022008-10-14 16:58:37 +0200343 if (bss_conf->ht.width_40_ok)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530344 ht_info->tx_chan_width = ATH9K_HT_MACMODE_2040;
345 else
346 ht_info->tx_chan_width = ATH9K_HT_MACMODE_20;
347
348 ath9k_hw_set11nmac2040(sc->sc_ah, ht_info->tx_chan_width);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530349 }
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530350}
351
352static void ath9k_bss_assoc_info(struct ath_softc *sc,
353 struct ieee80211_bss_conf *bss_conf)
354{
355 struct ieee80211_hw *hw = sc->hw;
356 struct ieee80211_channel *curchan = hw->conf.channel;
357 struct ath_vap *avp;
358 int pos;
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530359
360 if (bss_conf->assoc) {
361 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Bss Info ASSOC %d\n",
362 __func__,
363 bss_conf->aid);
364
365 avp = sc->sc_vaps[0];
366 if (avp == NULL) {
367 DPRINTF(sc, ATH_DBG_FATAL, "%s: Invalid interface\n",
368 __func__);
369 return;
370 }
371
372 /* New association, store aid */
373 if (avp->av_opmode == ATH9K_M_STA) {
374 sc->sc_curaid = bss_conf->aid;
375 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
376 sc->sc_curaid);
377 }
378
379 /* Configure the beacon */
380 ath_beacon_config(sc, 0);
381 sc->sc_flags |= SC_OP_BEACONS;
382
383 /* Reset rssi stats */
384 sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER;
385 sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER;
386 sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER;
387 sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER;
388
389 /* Update chainmask */
Johannes Bergae5eb022008-10-14 16:58:37 +0200390 ath_update_chainmask(sc, hw->conf.ht.enabled);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530391
392 DPRINTF(sc, ATH_DBG_CONFIG,
Johannes Berge1749612008-10-27 15:59:26 -0700393 "%s: bssid %pM aid 0x%x\n",
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530394 __func__,
Johannes Berge1749612008-10-27 15:59:26 -0700395 sc->sc_curbssid, sc->sc_curaid);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530396
397 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Set channel: %d MHz\n",
398 __func__,
399 curchan->center_freq);
400
401 pos = ath_get_channel(sc, curchan);
402 if (pos == -1) {
403 DPRINTF(sc, ATH_DBG_FATAL,
404 "%s: Invalid channel\n", __func__);
405 return;
406 }
407
Johannes Bergae5eb022008-10-14 16:58:37 +0200408 if (hw->conf.ht.enabled)
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530409 sc->sc_ah->ah_channels[pos].chanmode =
410 ath_get_extchanmode(sc, curchan);
411 else
412 sc->sc_ah->ah_channels[pos].chanmode =
413 (curchan->band == IEEE80211_BAND_2GHZ) ?
414 CHANNEL_G : CHANNEL_A;
415
416 /* set h/w channel */
417 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0)
418 DPRINTF(sc, ATH_DBG_FATAL,
419 "%s: Unable to set channel\n",
420 __func__);
421
422 ath_rate_newstate(sc, avp);
423 /* Update ratectrl about the new state */
424 ath_rc_node_update(hw, avp->rc_node);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700425
426 /* Start ANI */
427 mod_timer(&sc->sc_ani.timer,
428 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
429
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530430 } else {
431 DPRINTF(sc, ATH_DBG_CONFIG,
432 "%s: Bss Info DISSOC\n", __func__);
433 sc->sc_curaid = 0;
434 }
435}
436
437void ath_get_beaconconfig(struct ath_softc *sc,
438 int if_id,
439 struct ath_beacon_config *conf)
440{
441 struct ieee80211_hw *hw = sc->hw;
442
443 /* fill in beacon config data */
444
445 conf->beacon_interval = hw->conf.beacon_int;
446 conf->listen_interval = 100;
447 conf->dtim_count = 1;
448 conf->bmiss_timeout = ATH_DEFAULT_BMISS_LIMIT * conf->listen_interval;
449}
450
451void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
452 struct ath_xmit_status *tx_status, struct ath_node *an)
453{
454 struct ieee80211_hw *hw = sc->hw;
455 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
456
457 DPRINTF(sc, ATH_DBG_XMIT,
458 "%s: TX complete: skb: %p\n", __func__, skb);
459
460 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK ||
461 tx_info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
462 /* free driver's private data area of tx_info */
463 if (tx_info->driver_data[0] != NULL)
464 kfree(tx_info->driver_data[0]);
465 tx_info->driver_data[0] = NULL;
466 }
467
468 if (tx_status->flags & ATH_TX_BAR) {
469 tx_info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
470 tx_status->flags &= ~ATH_TX_BAR;
471 }
472
473 if (tx_status->flags & (ATH_TX_ERROR | ATH_TX_XRETRY)) {
474 if (!(tx_info->flags & IEEE80211_TX_CTL_NO_ACK)) {
475 /* Frame was not ACKed, but an ACK was expected */
476 tx_info->status.excessive_retries = 1;
477 }
478 } else {
479 /* Frame was ACKed */
480 tx_info->flags |= IEEE80211_TX_STAT_ACK;
481 }
482
483 tx_info->status.retry_count = tx_status->retries;
484
485 ieee80211_tx_status(hw, skb);
486 if (an)
487 ath_node_put(sc, an, ATH9K_BH_STATUS_CHANGE);
488}
489
490int _ath_rx_indicate(struct ath_softc *sc,
491 struct sk_buff *skb,
492 struct ath_recv_status *status,
493 u16 keyix)
494{
495 struct ieee80211_hw *hw = sc->hw;
496 struct ath_node *an = NULL;
497 struct ieee80211_rx_status rx_status;
498 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
499 int hdrlen = ieee80211_get_hdrlen_from_skb(skb);
500 int padsize;
501 enum ATH_RX_TYPE st;
502
503 /* see if any padding is done by the hw and remove it */
504 if (hdrlen & 3) {
505 padsize = hdrlen % 4;
506 memmove(skb->data + padsize, skb->data, hdrlen);
507 skb_pull(skb, padsize);
508 }
509
510 /* Prepare rx status */
511 ath9k_rx_prepare(sc, skb, status, &rx_status);
512
513 if (!(keyix == ATH9K_RXKEYIX_INVALID) &&
514 !(status->flags & ATH_RX_DECRYPT_ERROR)) {
515 rx_status.flag |= RX_FLAG_DECRYPTED;
516 } else if ((le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_PROTECTED)
517 && !(status->flags & ATH_RX_DECRYPT_ERROR)
518 && skb->len >= hdrlen + 4) {
519 keyix = skb->data[hdrlen + 3] >> 6;
520
521 if (test_bit(keyix, sc->sc_keymap))
522 rx_status.flag |= RX_FLAG_DECRYPTED;
523 }
524
525 spin_lock_bh(&sc->node_lock);
526 an = ath_node_find(sc, hdr->addr2);
527 spin_unlock_bh(&sc->node_lock);
528
529 if (an) {
530 ath_rx_input(sc, an,
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530531 skb, status, &st);
532 }
533 if (!an || (st != ATH_RX_CONSUMED))
534 __ieee80211_rx(hw, skb, &rx_status);
535
536 return 0;
537}
538
539int ath_rx_subframe(struct ath_node *an,
540 struct sk_buff *skb,
541 struct ath_recv_status *status)
542{
543 struct ath_softc *sc = an->an_sc;
544 struct ieee80211_hw *hw = sc->hw;
545 struct ieee80211_rx_status rx_status;
546
547 /* Prepare rx status */
548 ath9k_rx_prepare(sc, skb, status, &rx_status);
549 if (!(status->flags & ATH_RX_DECRYPT_ERROR))
550 rx_status.flag |= RX_FLAG_DECRYPTED;
551
552 __ieee80211_rx(hw, skb, &rx_status);
553
554 return 0;
555}
556
557/********************************/
558/* LED functions */
559/********************************/
560
561static void ath_led_brightness(struct led_classdev *led_cdev,
562 enum led_brightness brightness)
563{
564 struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev);
565 struct ath_softc *sc = led->sc;
566
567 switch (brightness) {
568 case LED_OFF:
569 if (led->led_type == ATH_LED_ASSOC ||
570 led->led_type == ATH_LED_RADIO)
571 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
572 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN,
573 (led->led_type == ATH_LED_RADIO) ? 1 :
574 !!(sc->sc_flags & SC_OP_LED_ASSOCIATED));
575 break;
576 case LED_FULL:
577 if (led->led_type == ATH_LED_ASSOC)
578 sc->sc_flags |= SC_OP_LED_ASSOCIATED;
579 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0);
580 break;
581 default:
582 break;
583 }
584}
585
586static int ath_register_led(struct ath_softc *sc, struct ath_led *led,
587 char *trigger)
588{
589 int ret;
590
591 led->sc = sc;
592 led->led_cdev.name = led->name;
593 led->led_cdev.default_trigger = trigger;
594 led->led_cdev.brightness_set = ath_led_brightness;
595
596 ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev);
597 if (ret)
598 DPRINTF(sc, ATH_DBG_FATAL,
599 "Failed to register led:%s", led->name);
600 else
601 led->registered = 1;
602 return ret;
603}
604
605static void ath_unregister_led(struct ath_led *led)
606{
607 if (led->registered) {
608 led_classdev_unregister(&led->led_cdev);
609 led->registered = 0;
610 }
611}
612
613static void ath_deinit_leds(struct ath_softc *sc)
614{
615 ath_unregister_led(&sc->assoc_led);
616 sc->sc_flags &= ~SC_OP_LED_ASSOCIATED;
617 ath_unregister_led(&sc->tx_led);
618 ath_unregister_led(&sc->rx_led);
619 ath_unregister_led(&sc->radio_led);
620 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
621}
622
623static void ath_init_leds(struct ath_softc *sc)
624{
625 char *trigger;
626 int ret;
627
628 /* Configure gpio 1 for output */
629 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
630 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
631 /* LED off, active low */
632 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
633
634 trigger = ieee80211_get_radio_led_name(sc->hw);
635 snprintf(sc->radio_led.name, sizeof(sc->radio_led.name),
636 "ath9k-%s:radio", wiphy_name(sc->hw->wiphy));
637 ret = ath_register_led(sc, &sc->radio_led, trigger);
638 sc->radio_led.led_type = ATH_LED_RADIO;
639 if (ret)
640 goto fail;
641
642 trigger = ieee80211_get_assoc_led_name(sc->hw);
643 snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name),
644 "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy));
645 ret = ath_register_led(sc, &sc->assoc_led, trigger);
646 sc->assoc_led.led_type = ATH_LED_ASSOC;
647 if (ret)
648 goto fail;
649
650 trigger = ieee80211_get_tx_led_name(sc->hw);
651 snprintf(sc->tx_led.name, sizeof(sc->tx_led.name),
652 "ath9k-%s:tx", wiphy_name(sc->hw->wiphy));
653 ret = ath_register_led(sc, &sc->tx_led, trigger);
654 sc->tx_led.led_type = ATH_LED_TX;
655 if (ret)
656 goto fail;
657
658 trigger = ieee80211_get_rx_led_name(sc->hw);
659 snprintf(sc->rx_led.name, sizeof(sc->rx_led.name),
660 "ath9k-%s:rx", wiphy_name(sc->hw->wiphy));
661 ret = ath_register_led(sc, &sc->rx_led, trigger);
662 sc->rx_led.led_type = ATH_LED_RX;
663 if (ret)
664 goto fail;
665
666 return;
667
668fail:
669 ath_deinit_leds(sc);
670}
671
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +0530672#ifdef CONFIG_RFKILL
673/*******************/
674/* Rfkill */
675/*******************/
676
677static void ath_radio_enable(struct ath_softc *sc)
678{
679 struct ath_hal *ah = sc->sc_ah;
680 int status;
681
682 spin_lock_bh(&sc->sc_resetlock);
683 if (!ath9k_hw_reset(ah, ah->ah_curchan,
684 sc->sc_ht_info.tx_chan_width,
685 sc->sc_tx_chainmask,
686 sc->sc_rx_chainmask,
687 sc->sc_ht_extprotspacing,
688 false, &status)) {
689 DPRINTF(sc, ATH_DBG_FATAL,
690 "%s: unable to reset channel %u (%uMhz) "
691 "flags 0x%x hal status %u\n", __func__,
692 ath9k_hw_mhz2ieee(ah,
693 ah->ah_curchan->channel,
694 ah->ah_curchan->channelFlags),
695 ah->ah_curchan->channel,
696 ah->ah_curchan->channelFlags, status);
697 }
698 spin_unlock_bh(&sc->sc_resetlock);
699
700 ath_update_txpow(sc);
701 if (ath_startrecv(sc) != 0) {
702 DPRINTF(sc, ATH_DBG_FATAL,
703 "%s: unable to restart recv logic\n", __func__);
704 return;
705 }
706
707 if (sc->sc_flags & SC_OP_BEACONS)
708 ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */
709
710 /* Re-Enable interrupts */
711 ath9k_hw_set_interrupts(ah, sc->sc_imask);
712
713 /* Enable LED */
714 ath9k_hw_cfg_output(ah, ATH_LED_PIN,
715 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
716 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0);
717
718 ieee80211_wake_queues(sc->hw);
719}
720
721static void ath_radio_disable(struct ath_softc *sc)
722{
723 struct ath_hal *ah = sc->sc_ah;
724 int status;
725
726
727 ieee80211_stop_queues(sc->hw);
728
729 /* Disable LED */
730 ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1);
731 ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN);
732
733 /* Disable interrupts */
734 ath9k_hw_set_interrupts(ah, 0);
735
736 ath_draintxq(sc, false); /* clear pending tx frames */
737 ath_stoprecv(sc); /* turn off frame recv */
738 ath_flushrecv(sc); /* flush recv queue */
739
740 spin_lock_bh(&sc->sc_resetlock);
741 if (!ath9k_hw_reset(ah, ah->ah_curchan,
742 sc->sc_ht_info.tx_chan_width,
743 sc->sc_tx_chainmask,
744 sc->sc_rx_chainmask,
745 sc->sc_ht_extprotspacing,
746 false, &status)) {
747 DPRINTF(sc, ATH_DBG_FATAL,
748 "%s: unable to reset channel %u (%uMhz) "
749 "flags 0x%x hal status %u\n", __func__,
750 ath9k_hw_mhz2ieee(ah,
751 ah->ah_curchan->channel,
752 ah->ah_curchan->channelFlags),
753 ah->ah_curchan->channel,
754 ah->ah_curchan->channelFlags, status);
755 }
756 spin_unlock_bh(&sc->sc_resetlock);
757
758 ath9k_hw_phy_disable(ah);
759 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
760}
761
762static bool ath_is_rfkill_set(struct ath_softc *sc)
763{
764 struct ath_hal *ah = sc->sc_ah;
765
766 return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) ==
767 ah->ah_rfkill_polarity;
768}
769
770/* h/w rfkill poll function */
771static void ath_rfkill_poll(struct work_struct *work)
772{
773 struct ath_softc *sc = container_of(work, struct ath_softc,
774 rf_kill.rfkill_poll.work);
775 bool radio_on;
776
777 if (sc->sc_flags & SC_OP_INVALID)
778 return;
779
780 radio_on = !ath_is_rfkill_set(sc);
781
782 /*
783 * enable/disable radio only when there is a
784 * state change in RF switch
785 */
786 if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) {
787 enum rfkill_state state;
788
789 if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) {
790 state = radio_on ? RFKILL_STATE_SOFT_BLOCKED
791 : RFKILL_STATE_HARD_BLOCKED;
792 } else if (radio_on) {
793 ath_radio_enable(sc);
794 state = RFKILL_STATE_UNBLOCKED;
795 } else {
796 ath_radio_disable(sc);
797 state = RFKILL_STATE_HARD_BLOCKED;
798 }
799
800 if (state == RFKILL_STATE_HARD_BLOCKED)
801 sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED;
802 else
803 sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED;
804
805 rfkill_force_state(sc->rf_kill.rfkill, state);
806 }
807
808 queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll,
809 msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL));
810}
811
812/* s/w rfkill handler */
813static int ath_sw_toggle_radio(void *data, enum rfkill_state state)
814{
815 struct ath_softc *sc = data;
816
817 switch (state) {
818 case RFKILL_STATE_SOFT_BLOCKED:
819 if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED |
820 SC_OP_RFKILL_SW_BLOCKED)))
821 ath_radio_disable(sc);
822 sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED;
823 return 0;
824 case RFKILL_STATE_UNBLOCKED:
825 if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) {
826 sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED;
827 if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) {
828 DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the"
829 "radio as it is disabled by h/w \n");
830 return -EPERM;
831 }
832 ath_radio_enable(sc);
833 }
834 return 0;
835 default:
836 return -EINVAL;
837 }
838}
839
840/* Init s/w rfkill */
841static int ath_init_sw_rfkill(struct ath_softc *sc)
842{
843 sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy),
844 RFKILL_TYPE_WLAN);
845 if (!sc->rf_kill.rfkill) {
846 DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n");
847 return -ENOMEM;
848 }
849
850 snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name),
851 "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy));
852 sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name;
853 sc->rf_kill.rfkill->data = sc;
854 sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio;
855 sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED;
856 sc->rf_kill.rfkill->user_claim_unsupported = 1;
857
858 return 0;
859}
860
861/* Deinitialize rfkill */
862static void ath_deinit_rfkill(struct ath_softc *sc)
863{
864 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
865 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
866
867 if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) {
868 rfkill_unregister(sc->rf_kill.rfkill);
869 sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED;
870 sc->rf_kill.rfkill = NULL;
871 }
872}
873#endif /* CONFIG_RFKILL */
874
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530875static int ath_detach(struct ath_softc *sc)
876{
877 struct ieee80211_hw *hw = sc->hw;
878
879 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Detach ATH hw\n", __func__);
880
881 /* Deinit LED control */
882 ath_deinit_leds(sc);
883
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +0530884#ifdef CONFIG_RFKILL
885 /* deinit rfkill */
886 ath_deinit_rfkill(sc);
887#endif
888
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530889 /* Unregister hw */
890
891 ieee80211_unregister_hw(hw);
892
893 /* unregister Rate control */
894 ath_rate_control_unregister();
895
896 /* tx/rx cleanup */
897
898 ath_rx_cleanup(sc);
899 ath_tx_cleanup(sc);
900
901 /* Deinit */
902
903 ath_deinit(sc);
904
905 return 0;
906}
907
908static int ath_attach(u16 devid,
909 struct ath_softc *sc)
910{
911 struct ieee80211_hw *hw = sc->hw;
912 int error = 0;
913
914 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Attach ATH hw\n", __func__);
915
916 error = ath_init(devid, sc);
917 if (error != 0)
918 return error;
919
920 /* Init nodes */
921
922 INIT_LIST_HEAD(&sc->node_list);
923 spin_lock_init(&sc->node_lock);
924
925 /* get mac address from hardware and set in mac80211 */
926
927 SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr);
928
929 /* setup channels and rates */
930
931 sc->sbands[IEEE80211_BAND_2GHZ].channels =
932 sc->channels[IEEE80211_BAND_2GHZ];
933 sc->sbands[IEEE80211_BAND_2GHZ].bitrates =
934 sc->rates[IEEE80211_BAND_2GHZ];
935 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
936
937 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
938 /* Setup HT capabilities for 2.4Ghz*/
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200939 setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530940
941 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
942 &sc->sbands[IEEE80211_BAND_2GHZ];
943
944 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) {
945 sc->sbands[IEEE80211_BAND_5GHZ].channels =
946 sc->channels[IEEE80211_BAND_5GHZ];
947 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
948 sc->rates[IEEE80211_BAND_5GHZ];
949 sc->sbands[IEEE80211_BAND_5GHZ].band =
950 IEEE80211_BAND_5GHZ;
951
952 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)
953 /* Setup HT capabilities for 5Ghz*/
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200954 setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530955
956 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
957 &sc->sbands[IEEE80211_BAND_5GHZ];
958 }
959
960 /* FIXME: Have to figure out proper hw init values later */
961
962 hw->queues = 4;
963 hw->ampdu_queues = 1;
964
965 /* Register rate control */
966 hw->rate_control_algorithm = "ath9k_rate_control";
967 error = ath_rate_control_register();
968 if (error != 0) {
969 DPRINTF(sc, ATH_DBG_FATAL,
970 "%s: Unable to register rate control "
971 "algorithm:%d\n", __func__, error);
972 ath_rate_control_unregister();
973 goto bad;
974 }
975
976 error = ieee80211_register_hw(hw);
977 if (error != 0) {
978 ath_rate_control_unregister();
979 goto bad;
980 }
981
982 /* Initialize LED control */
983 ath_init_leds(sc);
984
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +0530985#ifdef CONFIG_RFKILL
986 /* Initialze h/w Rfkill */
987 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
988 INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll);
989
990 /* Initialize s/w rfkill */
991 if (ath_init_sw_rfkill(sc))
992 goto detach;
993#endif
994
Vasanthakumar Thiagarajan8feceb62008-09-10 18:49:27 +0530995 /* initialize tx/rx engine */
996
997 error = ath_tx_init(sc, ATH_TXBUF);
998 if (error != 0)
999 goto detach;
1000
1001 error = ath_rx_init(sc, ATH_RXBUF);
1002 if (error != 0)
1003 goto detach;
1004
1005 return 0;
1006detach:
1007 ath_detach(sc);
1008bad:
1009 return error;
1010}
1011
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001012static int ath9k_start(struct ieee80211_hw *hw)
1013{
1014 struct ath_softc *sc = hw->priv;
1015 struct ieee80211_channel *curchan = hw->conf.channel;
1016 int error = 0, pos;
1017
1018 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Starting driver with "
1019 "initial channel: %d MHz\n", __func__, curchan->center_freq);
1020
1021 /* setup initial channel */
1022
1023 pos = ath_get_channel(sc, curchan);
1024 if (pos == -1) {
1025 DPRINTF(sc, ATH_DBG_FATAL, "%s: Invalid channel\n", __func__);
1026 return -EINVAL;
1027 }
1028
1029 sc->sc_ah->ah_channels[pos].chanmode =
1030 (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A;
1031
1032 /* open ath_dev */
1033 error = ath_open(sc, &sc->sc_ah->ah_channels[pos]);
1034 if (error) {
1035 DPRINTF(sc, ATH_DBG_FATAL,
1036 "%s: Unable to complete ath_open\n", __func__);
1037 return error;
1038 }
1039
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301040#ifdef CONFIG_RFKILL
1041 /* Start rfkill polling */
1042 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1043 queue_delayed_work(sc->hw->workqueue,
1044 &sc->rf_kill.rfkill_poll, 0);
1045
1046 if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) {
1047 if (rfkill_register(sc->rf_kill.rfkill)) {
1048 DPRINTF(sc, ATH_DBG_FATAL,
1049 "Unable to register rfkill\n");
1050 rfkill_free(sc->rf_kill.rfkill);
1051
1052 /* Deinitialize the device */
1053 if (sc->pdev->irq)
1054 free_irq(sc->pdev->irq, sc);
1055 ath_detach(sc);
1056 pci_iounmap(sc->pdev, sc->mem);
1057 pci_release_region(sc->pdev, 0);
1058 pci_disable_device(sc->pdev);
1059 ieee80211_free_hw(hw);
1060 return -EIO;
1061 } else {
1062 sc->sc_flags |= SC_OP_RFKILL_REGISTERED;
1063 }
1064 }
1065#endif
1066
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001067 ieee80211_wake_queues(hw);
1068 return 0;
1069}
1070
1071static int ath9k_tx(struct ieee80211_hw *hw,
1072 struct sk_buff *skb)
1073{
1074 struct ath_softc *sc = hw->priv;
1075 int hdrlen, padsize;
Jouni Malinen147583c2008-08-11 14:01:50 +03001076 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1077
1078 /*
1079 * As a temporary workaround, assign seq# here; this will likely need
1080 * to be cleaned up to work better with Beacon transmission and virtual
1081 * BSSes.
1082 */
1083 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1084 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1085 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
1086 sc->seq_no += 0x10;
1087 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
1088 hdr->seq_ctrl |= cpu_to_le16(sc->seq_no);
1089 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001090
1091 /* Add the padding after the header if this is not already done */
1092 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1093 if (hdrlen & 3) {
1094 padsize = hdrlen % 4;
1095 if (skb_headroom(skb) < padsize)
1096 return -1;
1097 skb_push(skb, padsize);
1098 memmove(skb->data, skb->data + padsize, hdrlen);
1099 }
1100
1101 DPRINTF(sc, ATH_DBG_XMIT, "%s: transmitting packet, skb: %p\n",
1102 __func__,
1103 skb);
1104
1105 if (ath_tx_start(sc, skb) != 0) {
1106 DPRINTF(sc, ATH_DBG_XMIT, "%s: TX failed\n", __func__);
1107 dev_kfree_skb_any(skb);
1108 /* FIXME: Check for proper return value from ATH_DEV */
1109 return 0;
1110 }
1111
1112 return 0;
1113}
1114
1115static void ath9k_stop(struct ieee80211_hw *hw)
1116{
1117 struct ath_softc *sc = hw->priv;
1118 int error;
1119
1120 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Driver halt\n", __func__);
1121
1122 error = ath_suspend(sc);
1123 if (error)
1124 DPRINTF(sc, ATH_DBG_CONFIG,
1125 "%s: Device is no longer present\n", __func__);
1126
1127 ieee80211_stop_queues(hw);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301128
1129#ifdef CONFIG_RFKILL
1130 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1131 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1132#endif
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001133}
1134
1135static int ath9k_add_interface(struct ieee80211_hw *hw,
1136 struct ieee80211_if_init_conf *conf)
1137{
1138 struct ath_softc *sc = hw->priv;
1139 int error, ic_opmode = 0;
1140
1141 /* Support only vap for now */
1142
1143 if (sc->sc_nvaps)
1144 return -ENOBUFS;
1145
1146 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001147 case NL80211_IFTYPE_STATION:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001148 ic_opmode = ATH9K_M_STA;
1149 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001150 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001151 ic_opmode = ATH9K_M_IBSS;
1152 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001153 case NL80211_IFTYPE_AP:
Jouni Malinen2ad67de2008-08-11 14:01:47 +03001154 ic_opmode = ATH9K_M_HOSTAP;
1155 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001156 default:
1157 DPRINTF(sc, ATH_DBG_FATAL,
Jouni Malinen2ad67de2008-08-11 14:01:47 +03001158 "%s: Interface type %d not yet supported\n",
1159 __func__, conf->type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001160 return -EOPNOTSUPP;
1161 }
1162
1163 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Attach a VAP of type: %d\n",
1164 __func__,
1165 ic_opmode);
1166
1167 error = ath_vap_attach(sc, 0, conf->vif, ic_opmode);
1168 if (error) {
1169 DPRINTF(sc, ATH_DBG_FATAL,
1170 "%s: Unable to attach vap, error: %d\n",
1171 __func__, error);
1172 return error;
1173 }
1174
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07001175 if (conf->type == NL80211_IFTYPE_AP) {
1176 /* TODO: is this a suitable place to start ANI for AP mode? */
1177 /* Start ANI */
1178 mod_timer(&sc->sc_ani.timer,
1179 jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL));
1180 }
1181
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001182 return 0;
1183}
1184
1185static void ath9k_remove_interface(struct ieee80211_hw *hw,
1186 struct ieee80211_if_init_conf *conf)
1187{
1188 struct ath_softc *sc = hw->priv;
1189 struct ath_vap *avp;
1190 int error;
1191
1192 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Detach VAP\n", __func__);
1193
1194 avp = sc->sc_vaps[0];
1195 if (avp == NULL) {
1196 DPRINTF(sc, ATH_DBG_FATAL, "%s: Invalid interface\n",
1197 __func__);
1198 return;
1199 }
1200
1201#ifdef CONFIG_SLOW_ANT_DIV
1202 ath_slow_ant_div_stop(&sc->sc_antdiv);
1203#endif
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07001204 /* Stop ANI */
1205 del_timer_sync(&sc->sc_ani.timer);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001206
1207 /* Update ratectrl */
1208 ath_rate_newstate(sc, avp);
1209
1210 /* Reclaim beacon resources */
Sujithb4696c8b2008-08-11 14:04:52 +05301211 if (sc->sc_ah->ah_opmode == ATH9K_M_HOSTAP ||
1212 sc->sc_ah->ah_opmode == ATH9K_M_IBSS) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001213 ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
1214 ath_beacon_return(sc, avp);
1215 }
1216
1217 /* Set interrupt mask */
1218 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1219 ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask & ~ATH9K_INT_GLOBAL);
Sujith672840a2008-08-11 14:05:08 +05301220 sc->sc_flags &= ~SC_OP_BEACONS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001221
1222 error = ath_vap_detach(sc, 0);
1223 if (error)
1224 DPRINTF(sc, ATH_DBG_FATAL,
1225 "%s: Unable to detach vap, error: %d\n",
1226 __func__, error);
1227}
1228
Johannes Berge8975582008-10-09 12:18:51 +02001229static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001230{
1231 struct ath_softc *sc = hw->priv;
1232 struct ieee80211_channel *curchan = hw->conf.channel;
Johannes Berge8975582008-10-09 12:18:51 +02001233 struct ieee80211_conf *conf = &hw->conf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001234 int pos;
1235
1236 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Set channel: %d MHz\n",
1237 __func__,
1238 curchan->center_freq);
1239
Johannes Bergae5eb022008-10-14 16:58:37 +02001240 /* Update chainmask */
1241 ath_update_chainmask(sc, conf->ht.enabled);
1242
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001243 pos = ath_get_channel(sc, curchan);
1244 if (pos == -1) {
1245 DPRINTF(sc, ATH_DBG_FATAL, "%s: Invalid channel\n", __func__);
1246 return -EINVAL;
1247 }
1248
1249 sc->sc_ah->ah_channels[pos].chanmode =
Sujith86b89ee2008-08-07 10:54:57 +05301250 (curchan->band == IEEE80211_BAND_2GHZ) ?
1251 CHANNEL_G : CHANNEL_A;
1252
Johannes Bergae5eb022008-10-14 16:58:37 +02001253 if (sc->sc_curaid && hw->conf.ht.enabled)
Sujith86b89ee2008-08-07 10:54:57 +05301254 sc->sc_ah->ah_channels[pos].chanmode =
1255 ath_get_extchanmode(sc, curchan);
1256
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001257 sc->sc_config.txpowlimit = 2 * conf->power_level;
1258
1259 /* set h/w channel */
1260 if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0)
1261 DPRINTF(sc, ATH_DBG_FATAL, "%s: Unable to set channel\n",
1262 __func__);
1263
1264 return 0;
1265}
1266
1267static int ath9k_config_interface(struct ieee80211_hw *hw,
1268 struct ieee80211_vif *vif,
1269 struct ieee80211_if_conf *conf)
1270{
1271 struct ath_softc *sc = hw->priv;
Jouni Malinen2ad67de2008-08-11 14:01:47 +03001272 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001273 struct ath_vap *avp;
1274 u32 rfilt = 0;
1275 int error, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001276
1277 avp = sc->sc_vaps[0];
1278 if (avp == NULL) {
1279 DPRINTF(sc, ATH_DBG_FATAL, "%s: Invalid interface\n",
1280 __func__);
1281 return -EINVAL;
1282 }
1283
Jouni Malinen2ad67de2008-08-11 14:01:47 +03001284 /* TODO: Need to decide which hw opmode to use for multi-interface
1285 * cases */
Johannes Berg05c914f2008-09-11 00:01:58 +02001286 if (vif->type == NL80211_IFTYPE_AP &&
Jouni Malinen2ad67de2008-08-11 14:01:47 +03001287 ah->ah_opmode != ATH9K_M_HOSTAP) {
1288 ah->ah_opmode = ATH9K_M_HOSTAP;
1289 ath9k_hw_setopmode(ah);
1290 ath9k_hw_write_associd(ah, sc->sc_myaddr, 0);
1291 /* Request full reset to get hw opmode changed properly */
1292 sc->sc_flags |= SC_OP_FULL_RESET;
1293 }
1294
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001295 if ((conf->changed & IEEE80211_IFCC_BSSID) &&
1296 !is_zero_ether_addr(conf->bssid)) {
1297 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001298 case NL80211_IFTYPE_STATION:
1299 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001300 /* Update ratectrl about the new state */
1301 ath_rate_newstate(sc, avp);
1302
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001303 /* Set BSSID */
1304 memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN);
1305 sc->sc_curaid = 0;
1306 ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid,
1307 sc->sc_curaid);
1308
1309 /* Set aggregation protection mode parameters */
1310 sc->sc_config.ath_aggr_prot = 0;
1311
1312 /*
1313 * Reset our TSF so that its value is lower than the
1314 * beacon that we are trying to catch.
1315 * Only then hw will update its TSF register with the
1316 * new beacon. Reset the TSF before setting the BSSID
1317 * to avoid allowing in any frames that would update
1318 * our TSF only to have us clear it
1319 * immediately thereafter.
1320 */
1321 ath9k_hw_reset_tsf(sc->sc_ah);
1322
1323 /* Disable BMISS interrupt when we're not associated */
1324 ath9k_hw_set_interrupts(sc->sc_ah,
1325 sc->sc_imask &
1326 ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS));
1327 sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
1328
1329 DPRINTF(sc, ATH_DBG_CONFIG,
Johannes Berge1749612008-10-27 15:59:26 -07001330 "%s: RX filter 0x%x bssid %pM aid 0x%x\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001331 __func__, rfilt,
Johannes Berge1749612008-10-27 15:59:26 -07001332 sc->sc_curbssid, sc->sc_curaid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001333
1334 /* need to reconfigure the beacon */
Sujith672840a2008-08-11 14:05:08 +05301335 sc->sc_flags &= ~SC_OP_BEACONS ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001336
1337 break;
1338 default:
1339 break;
1340 }
1341 }
1342
1343 if ((conf->changed & IEEE80211_IFCC_BEACON) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001344 ((vif->type == NL80211_IFTYPE_ADHOC) ||
1345 (vif->type == NL80211_IFTYPE_AP))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346 /*
1347 * Allocate and setup the beacon frame.
1348 *
1349 * Stop any previous beacon DMA. This may be
1350 * necessary, for example, when an ibss merge
1351 * causes reconfiguration; we may be called
1352 * with beacon transmission active.
1353 */
1354 ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
1355
1356 error = ath_beacon_alloc(sc, 0);
1357 if (error != 0)
1358 return error;
1359
1360 ath_beacon_sync(sc, 0);
1361 }
1362
1363 /* Check for WLAN_CAPABILITY_PRIVACY ? */
Johannes Berg05c914f2008-09-11 00:01:58 +02001364 if ((avp->av_opmode != NL80211_IFTYPE_STATION)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001365 for (i = 0; i < IEEE80211_WEP_NKID; i++)
1366 if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i))
1367 ath9k_hw_keysetmac(sc->sc_ah,
1368 (u16)i,
1369 sc->sc_curbssid);
1370 }
1371
1372 /* Only legacy IBSS for now */
Johannes Berg05c914f2008-09-11 00:01:58 +02001373 if (vif->type == NL80211_IFTYPE_ADHOC)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001374 ath_update_chainmask(sc, 0);
1375
1376 return 0;
1377}
1378
1379#define SUPPORTED_FILTERS \
1380 (FIF_PROMISC_IN_BSS | \
1381 FIF_ALLMULTI | \
1382 FIF_CONTROL | \
1383 FIF_OTHER_BSS | \
1384 FIF_BCN_PRBRESP_PROMISC | \
1385 FIF_FCSFAIL)
1386
Sujith7dcfdcd2008-08-11 14:03:13 +05301387/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001388static void ath9k_configure_filter(struct ieee80211_hw *hw,
1389 unsigned int changed_flags,
1390 unsigned int *total_flags,
1391 int mc_count,
1392 struct dev_mc_list *mclist)
1393{
1394 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05301395 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001396
1397 changed_flags &= SUPPORTED_FILTERS;
1398 *total_flags &= SUPPORTED_FILTERS;
1399
Sujith7dcfdcd2008-08-11 14:03:13 +05301400 sc->rx_filter = *total_flags;
1401 rfilt = ath_calcrxfilter(sc);
1402 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
1403
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001404 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
1405 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Sujith7dcfdcd2008-08-11 14:03:13 +05301406 ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001407 }
Sujith7dcfdcd2008-08-11 14:03:13 +05301408
1409 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Set HW RX filter: 0x%x\n",
1410 __func__, sc->rx_filter);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001411}
1412
1413static void ath9k_sta_notify(struct ieee80211_hw *hw,
1414 struct ieee80211_vif *vif,
1415 enum sta_notify_cmd cmd,
Johannes Berg17741cd2008-09-11 00:02:02 +02001416 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001417{
1418 struct ath_softc *sc = hw->priv;
1419 struct ath_node *an;
1420 unsigned long flags;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001421
1422 spin_lock_irqsave(&sc->node_lock, flags);
Johannes Berg17741cd2008-09-11 00:02:02 +02001423 an = ath_node_find(sc, sta->addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001424 spin_unlock_irqrestore(&sc->node_lock, flags);
1425
1426 switch (cmd) {
1427 case STA_NOTIFY_ADD:
1428 spin_lock_irqsave(&sc->node_lock, flags);
1429 if (!an) {
Johannes Berg17741cd2008-09-11 00:02:02 +02001430 ath_node_attach(sc, sta->addr, 0);
Johannes Berge1749612008-10-27 15:59:26 -07001431 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Attach a node: %pM\n",
1432 __func__, sta->addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001433 } else {
Johannes Berg17741cd2008-09-11 00:02:02 +02001434 ath_node_get(sc, sta->addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001435 }
Johannes Bergae5eb022008-10-14 16:58:37 +02001436
1437 /* XXX: Is this right? Can the capabilities change? */
1438 an = ath_node_find(sc, sta->addr);
1439 an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR +
1440 sta->ht_cap.ampdu_factor);
1441 an->mpdudensity =
1442 parse_mpdudensity(sta->ht_cap.ampdu_density);
1443
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001444 spin_unlock_irqrestore(&sc->node_lock, flags);
1445 break;
1446 case STA_NOTIFY_REMOVE:
1447 if (!an)
1448 DPRINTF(sc, ATH_DBG_FATAL,
1449 "%s: Removal of a non-existent node\n",
1450 __func__);
1451 else {
1452 ath_node_put(sc, an, ATH9K_BH_STATUS_INTACT);
Johannes Berge1749612008-10-27 15:59:26 -07001453 DPRINTF(sc, ATH_DBG_CONFIG, "%s: Put a node: %pM\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001454 __func__,
Johannes Berge1749612008-10-27 15:59:26 -07001455 sta->addr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001456 }
1457 break;
1458 default:
1459 break;
1460 }
1461}
1462
1463static int ath9k_conf_tx(struct ieee80211_hw *hw,
1464 u16 queue,
1465 const struct ieee80211_tx_queue_params *params)
1466{
1467 struct ath_softc *sc = hw->priv;
Sujithea9880f2008-08-07 10:53:10 +05301468 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001469 int ret = 0, qnum;
1470
1471 if (queue >= WME_NUM_AC)
1472 return 0;
1473
1474 qi.tqi_aifs = params->aifs;
1475 qi.tqi_cwmin = params->cw_min;
1476 qi.tqi_cwmax = params->cw_max;
1477 qi.tqi_burstTime = params->txop;
1478 qnum = ath_get_hal_qnum(queue, sc);
1479
1480 DPRINTF(sc, ATH_DBG_CONFIG,
1481 "%s: Configure tx [queue/halq] [%d/%d], "
1482 "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1483 __func__,
1484 queue,
1485 qnum,
1486 params->aifs,
1487 params->cw_min,
1488 params->cw_max,
1489 params->txop);
1490
1491 ret = ath_txq_update(sc, qnum, &qi);
1492 if (ret)
1493 DPRINTF(sc, ATH_DBG_FATAL,
1494 "%s: TXQ Update failed\n", __func__);
1495
1496 return ret;
1497}
1498
1499static int ath9k_set_key(struct ieee80211_hw *hw,
1500 enum set_key_cmd cmd,
1501 const u8 *local_addr,
1502 const u8 *addr,
1503 struct ieee80211_key_conf *key)
1504{
1505 struct ath_softc *sc = hw->priv;
1506 int ret = 0;
1507
1508 DPRINTF(sc, ATH_DBG_KEYCACHE, " %s: Set HW Key\n", __func__);
1509
1510 switch (cmd) {
1511 case SET_KEY:
1512 ret = ath_key_config(sc, addr, key);
1513 if (!ret) {
1514 set_bit(key->keyidx, sc->sc_keymap);
1515 key->hw_key_idx = key->keyidx;
1516 /* push IV and Michael MIC generation to stack */
1517 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301518 if (key->alg == ALG_TKIP)
1519 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001520 }
1521 break;
1522 case DISABLE_KEY:
1523 ath_key_delete(sc, key);
1524 clear_bit(key->keyidx, sc->sc_keymap);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001525 break;
1526 default:
1527 ret = -EINVAL;
1528 }
1529
1530 return ret;
1531}
1532
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001533static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1534 struct ieee80211_vif *vif,
1535 struct ieee80211_bss_conf *bss_conf,
1536 u32 changed)
1537{
1538 struct ath_softc *sc = hw->priv;
1539
1540 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
1541 DPRINTF(sc, ATH_DBG_CONFIG, "%s: BSS Changed PREAMBLE %d\n",
1542 __func__,
1543 bss_conf->use_short_preamble);
1544 if (bss_conf->use_short_preamble)
Sujith672840a2008-08-11 14:05:08 +05301545 sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001546 else
Sujith672840a2008-08-11 14:05:08 +05301547 sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001548 }
1549
1550 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
1551 DPRINTF(sc, ATH_DBG_CONFIG, "%s: BSS Changed CTS PROT %d\n",
1552 __func__,
1553 bss_conf->use_cts_prot);
1554 if (bss_conf->use_cts_prot &&
1555 hw->conf.channel->band != IEEE80211_BAND_5GHZ)
Sujith672840a2008-08-11 14:05:08 +05301556 sc->sc_flags |= SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001557 else
Sujith672840a2008-08-11 14:05:08 +05301558 sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001559 }
1560
1561 if (changed & BSS_CHANGED_HT) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001562 DPRINTF(sc, ATH_DBG_CONFIG, "%s: BSS Changed HT\n",
1563 __func__);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001564 ath9k_ht_conf(sc, bss_conf);
1565 }
1566
1567 if (changed & BSS_CHANGED_ASSOC) {
1568 DPRINTF(sc, ATH_DBG_CONFIG, "%s: BSS Changed ASSOC %d\n",
1569 __func__,
1570 bss_conf->assoc);
1571 ath9k_bss_assoc_info(sc, bss_conf);
1572 }
1573}
1574
1575static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
1576{
1577 u64 tsf;
1578 struct ath_softc *sc = hw->priv;
1579 struct ath_hal *ah = sc->sc_ah;
1580
1581 tsf = ath9k_hw_gettsf64(ah);
1582
1583 return tsf;
1584}
1585
1586static void ath9k_reset_tsf(struct ieee80211_hw *hw)
1587{
1588 struct ath_softc *sc = hw->priv;
1589 struct ath_hal *ah = sc->sc_ah;
1590
1591 ath9k_hw_reset_tsf(ah);
1592}
1593
1594static int ath9k_ampdu_action(struct ieee80211_hw *hw,
1595 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02001596 struct ieee80211_sta *sta,
1597 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001598{
1599 struct ath_softc *sc = hw->priv;
1600 int ret = 0;
1601
1602 switch (action) {
1603 case IEEE80211_AMPDU_RX_START:
Johannes Berg17741cd2008-09-11 00:02:02 +02001604 ret = ath_rx_aggr_start(sc, sta->addr, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001605 if (ret < 0)
1606 DPRINTF(sc, ATH_DBG_FATAL,
1607 "%s: Unable to start RX aggregation\n",
1608 __func__);
1609 break;
1610 case IEEE80211_AMPDU_RX_STOP:
Johannes Berg17741cd2008-09-11 00:02:02 +02001611 ret = ath_rx_aggr_stop(sc, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001612 if (ret < 0)
1613 DPRINTF(sc, ATH_DBG_FATAL,
1614 "%s: Unable to stop RX aggregation\n",
1615 __func__);
1616 break;
1617 case IEEE80211_AMPDU_TX_START:
Johannes Berg17741cd2008-09-11 00:02:02 +02001618 ret = ath_tx_aggr_start(sc, sta->addr, tid, ssn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001619 if (ret < 0)
1620 DPRINTF(sc, ATH_DBG_FATAL,
1621 "%s: Unable to start TX aggregation\n",
1622 __func__);
1623 else
Johannes Berg17741cd2008-09-11 00:02:02 +02001624 ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001625 break;
1626 case IEEE80211_AMPDU_TX_STOP:
Johannes Berg17741cd2008-09-11 00:02:02 +02001627 ret = ath_tx_aggr_stop(sc, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001628 if (ret < 0)
1629 DPRINTF(sc, ATH_DBG_FATAL,
1630 "%s: Unable to stop TX aggregation\n",
1631 __func__);
1632
Johannes Berg17741cd2008-09-11 00:02:02 +02001633 ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001634 break;
1635 default:
1636 DPRINTF(sc, ATH_DBG_FATAL,
1637 "%s: Unknown AMPDU action\n", __func__);
1638 }
1639
1640 return ret;
1641}
1642
Johannes Berg4233df62008-10-13 13:35:05 +02001643static int ath9k_no_fragmentation(struct ieee80211_hw *hw, u32 value)
1644{
1645 return -EOPNOTSUPP;
1646}
1647
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001648static struct ieee80211_ops ath9k_ops = {
1649 .tx = ath9k_tx,
1650 .start = ath9k_start,
1651 .stop = ath9k_stop,
1652 .add_interface = ath9k_add_interface,
1653 .remove_interface = ath9k_remove_interface,
1654 .config = ath9k_config,
1655 .config_interface = ath9k_config_interface,
1656 .configure_filter = ath9k_configure_filter,
1657 .get_stats = NULL,
1658 .sta_notify = ath9k_sta_notify,
1659 .conf_tx = ath9k_conf_tx,
1660 .get_tx_stats = NULL,
1661 .bss_info_changed = ath9k_bss_info_changed,
1662 .set_tim = NULL,
1663 .set_key = ath9k_set_key,
1664 .hw_scan = NULL,
1665 .get_tkip_seq = NULL,
1666 .set_rts_threshold = NULL,
1667 .set_frag_threshold = NULL,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001668 .get_tsf = ath9k_get_tsf,
1669 .reset_tsf = ath9k_reset_tsf,
1670 .tx_last_beacon = NULL,
Johannes Berg4233df62008-10-13 13:35:05 +02001671 .ampdu_action = ath9k_ampdu_action,
1672 .set_frag_threshold = ath9k_no_fragmentation,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001673};
1674
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001675static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1676{
1677 void __iomem *mem;
1678 struct ath_softc *sc;
1679 struct ieee80211_hw *hw;
1680 const char *athname;
1681 u8 csz;
1682 u32 val;
1683 int ret = 0;
1684
1685 if (pci_enable_device(pdev))
1686 return -EIO;
1687
1688 /* XXX 32-bit addressing only */
1689 if (pci_set_dma_mask(pdev, 0xffffffff)) {
1690 printk(KERN_ERR "ath_pci: 32-bit DMA not available\n");
1691 ret = -ENODEV;
1692 goto bad;
1693 }
1694
1695 /*
1696 * Cache line size is used to size and align various
1697 * structures used to communicate with the hardware.
1698 */
1699 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
1700 if (csz == 0) {
1701 /*
1702 * Linux 2.4.18 (at least) writes the cache line size
1703 * register as a 16-bit wide register which is wrong.
1704 * We must have this setup properly for rx buffer
1705 * DMA to work so force a reasonable value here if it
1706 * comes up zero.
1707 */
1708 csz = L1_CACHE_BYTES / sizeof(u32);
1709 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
1710 }
1711 /*
1712 * The default setting of latency timer yields poor results,
1713 * set it to the value used by other systems. It may be worth
1714 * tweaking this setting more.
1715 */
1716 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
1717
1718 pci_set_master(pdev);
1719
1720 /*
1721 * Disable the RETRY_TIMEOUT register (0x41) to keep
1722 * PCI Tx retries from interfering with C3 CPU state.
1723 */
1724 pci_read_config_dword(pdev, 0x40, &val);
1725 if ((val & 0x0000ff00) != 0)
1726 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
1727
1728 ret = pci_request_region(pdev, 0, "ath9k");
1729 if (ret) {
1730 dev_err(&pdev->dev, "PCI memory region reserve error\n");
1731 ret = -ENODEV;
1732 goto bad;
1733 }
1734
1735 mem = pci_iomap(pdev, 0, 0);
1736 if (!mem) {
1737 printk(KERN_ERR "PCI memory map error\n") ;
1738 ret = -EIO;
1739 goto bad1;
1740 }
1741
1742 hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops);
1743 if (hw == NULL) {
1744 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n");
1745 goto bad2;
1746 }
1747
Sujith19b73c72008-08-14 13:28:20 +05301748 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
Jouni Malinene022edb2008-08-22 17:31:33 +03001749 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
Sujith19b73c72008-08-14 13:28:20 +05301750 IEEE80211_HW_SIGNAL_DBM |
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001751 IEEE80211_HW_NOISE_DBM;
1752
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001753 hw->wiphy->interface_modes =
1754 BIT(NL80211_IFTYPE_AP) |
1755 BIT(NL80211_IFTYPE_STATION) |
1756 BIT(NL80211_IFTYPE_ADHOC);
1757
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001758 SET_IEEE80211_DEV(hw, &pdev->dev);
1759 pci_set_drvdata(pdev, hw);
1760
1761 sc = hw->priv;
1762 sc->hw = hw;
1763 sc->pdev = pdev;
1764 sc->mem = mem;
1765
1766 if (ath_attach(id->device, sc) != 0) {
1767 ret = -ENODEV;
1768 goto bad3;
1769 }
1770
1771 /* setup interrupt service routine */
1772
1773 if (request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc)) {
1774 printk(KERN_ERR "%s: request_irq failed\n",
1775 wiphy_name(hw->wiphy));
1776 ret = -EIO;
1777 goto bad4;
1778 }
1779
1780 athname = ath9k_hw_probe(id->vendor, id->device);
1781
1782 printk(KERN_INFO "%s: %s: mem=0x%lx, irq=%d\n",
1783 wiphy_name(hw->wiphy),
1784 athname ? athname : "Atheros ???",
1785 (unsigned long)mem, pdev->irq);
1786
1787 return 0;
1788bad4:
1789 ath_detach(sc);
1790bad3:
1791 ieee80211_free_hw(hw);
1792bad2:
1793 pci_iounmap(pdev, mem);
1794bad1:
1795 pci_release_region(pdev, 0);
1796bad:
1797 pci_disable_device(pdev);
1798 return ret;
1799}
1800
1801static void ath_pci_remove(struct pci_dev *pdev)
1802{
1803 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
1804 struct ath_softc *sc = hw->priv;
Senthil Balasubramanian6115e852008-09-22 14:22:39 +05301805 enum ath9k_int status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001806
Senthil Balasubramanian6115e852008-09-22 14:22:39 +05301807 if (pdev->irq) {
1808 ath9k_hw_set_interrupts(sc->sc_ah, 0);
1809 /* clear the ISR */
1810 ath9k_hw_getisr(sc->sc_ah, &status);
David S. Millerb262e602008-10-01 06:12:56 -07001811 sc->sc_flags |= SC_OP_INVALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001812 free_irq(pdev->irq, sc);
Senthil Balasubramanian6115e852008-09-22 14:22:39 +05301813 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001814 ath_detach(sc);
Senthil Balasubramanian6115e852008-09-22 14:22:39 +05301815
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001816 pci_iounmap(pdev, sc->mem);
1817 pci_release_region(pdev, 0);
1818 pci_disable_device(pdev);
1819 ieee80211_free_hw(hw);
1820}
1821
1822#ifdef CONFIG_PM
1823
1824static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
1825{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05301826 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
1827 struct ath_softc *sc = hw->priv;
1828
1829 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301830
1831#ifdef CONFIG_RFKILL
1832 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1833 cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll);
1834#endif
1835
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001836 pci_save_state(pdev);
1837 pci_disable_device(pdev);
1838 pci_set_power_state(pdev, 3);
1839
1840 return 0;
1841}
1842
1843static int ath_pci_resume(struct pci_dev *pdev)
1844{
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05301845 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
1846 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001847 u32 val;
1848 int err;
1849
1850 err = pci_enable_device(pdev);
1851 if (err)
1852 return err;
1853 pci_restore_state(pdev);
1854 /*
1855 * Suspend/Resume resets the PCI configuration space, so we have to
1856 * re-disable the RETRY_TIMEOUT register (0x41) to keep
1857 * PCI Tx retries from interfering with C3 CPU state
1858 */
1859 pci_read_config_dword(pdev, 0x40, &val);
1860 if ((val & 0x0000ff00) != 0)
1861 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
1862
Vasanthakumar Thiagarajanc83be682008-08-25 20:47:29 +05301863 /* Enable LED */
1864 ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN,
1865 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1866 ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1);
1867
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301868#ifdef CONFIG_RFKILL
1869 /*
1870 * check the h/w rfkill state on resume
1871 * and start the rfkill poll timer
1872 */
1873 if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1874 queue_delayed_work(sc->hw->workqueue,
1875 &sc->rf_kill.rfkill_poll, 0);
1876#endif
1877
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001878 return 0;
1879}
1880
1881#endif /* CONFIG_PM */
1882
1883MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
1884
1885static struct pci_driver ath_pci_driver = {
1886 .name = "ath9k",
1887 .id_table = ath_pci_id_table,
1888 .probe = ath_pci_probe,
1889 .remove = ath_pci_remove,
1890#ifdef CONFIG_PM
1891 .suspend = ath_pci_suspend,
1892 .resume = ath_pci_resume,
1893#endif /* CONFIG_PM */
1894};
1895
1896static int __init init_ath_pci(void)
1897{
1898 printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
1899
1900 if (pci_register_driver(&ath_pci_driver) < 0) {
1901 printk(KERN_ERR
1902 "ath_pci: No devices found, driver not installed.\n");
1903 pci_unregister_driver(&ath_pci_driver);
1904 return -ENODEV;
1905 }
1906
1907 return 0;
1908}
1909module_init(init_ath_pci);
1910
1911static void __exit exit_ath_pci(void)
1912{
1913 pci_unregister_driver(&ath_pci_driver);
1914 printk(KERN_INFO "%s: driver unloaded\n", dev_info);
1915}
1916module_exit(exit_ath_pci);