blob: 9ed779b020d384046bdce80b649bb4cde678b120 [file] [log] [blame]
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -08001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2009-2011 Atheros Communications Inc.
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -08003 *
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/*
18 * Module for common driver code between ath9k and ath9k_htc
19 */
20
21#include <linux/kernel.h>
22#include <linux/module.h>
23
24#include "common.h"
25
26MODULE_AUTHOR("Atheros Communications");
27MODULE_DESCRIPTION("Shared library for Atheros wireless 802.11n LAN cards.");
28MODULE_LICENSE("Dual BSD/GPL");
29
Oleksij Rempel64386962014-02-04 10:27:41 +010030/* Assumes you've already done the endian to CPU conversion */
31bool ath9k_cmn_rx_accept(struct ath_common *common,
32 struct ieee80211_hdr *hdr,
33 struct ieee80211_rx_status *rxs,
34 struct ath_rx_status *rx_stats,
35 bool *decrypt_error,
36 unsigned int rxfilter)
37{
38 struct ath_hw *ah = common->ah;
39 bool is_mc, is_valid_tkip, strip_mic, mic_error;
40 __le16 fc;
41
42 fc = hdr->frame_control;
43
44 is_mc = !!is_multicast_ether_addr(hdr->addr1);
45 is_valid_tkip = rx_stats->rs_keyix != ATH9K_RXKEYIX_INVALID &&
46 test_bit(rx_stats->rs_keyix, common->tkip_keymap);
47 strip_mic = is_valid_tkip && ieee80211_is_data(fc) &&
48 ieee80211_has_protected(fc) &&
49 !(rx_stats->rs_status &
50 (ATH9K_RXERR_DECRYPT | ATH9K_RXERR_CRC | ATH9K_RXERR_MIC |
51 ATH9K_RXERR_KEYMISS));
52
53 /*
54 * Key miss events are only relevant for pairwise keys where the
55 * descriptor does contain a valid key index. This has been observed
56 * mostly with CCMP encryption.
57 */
58 if (rx_stats->rs_keyix == ATH9K_RXKEYIX_INVALID ||
59 !test_bit(rx_stats->rs_keyix, common->ccmp_keymap))
60 rx_stats->rs_status &= ~ATH9K_RXERR_KEYMISS;
61
62 mic_error = is_valid_tkip && !ieee80211_is_ctl(fc) &&
63 !ieee80211_has_morefrags(fc) &&
64 !(le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG) &&
65 (rx_stats->rs_status & ATH9K_RXERR_MIC);
66
67 /*
68 * The rx_stats->rs_status will not be set until the end of the
69 * chained descriptors so it can be ignored if rs_more is set. The
70 * rs_more will be false at the last element of the chained
71 * descriptors.
72 */
73 if (rx_stats->rs_status != 0) {
74 u8 status_mask;
75
76 if (rx_stats->rs_status & ATH9K_RXERR_CRC) {
77 rxs->flag |= RX_FLAG_FAILED_FCS_CRC;
78 mic_error = false;
79 }
80
81 if ((rx_stats->rs_status & ATH9K_RXERR_DECRYPT) ||
82 (!is_mc && (rx_stats->rs_status & ATH9K_RXERR_KEYMISS))) {
83 *decrypt_error = true;
84 mic_error = false;
85 }
86
87
88 /*
89 * Reject error frames with the exception of
90 * decryption and MIC failures. For monitor mode,
91 * we also ignore the CRC error.
92 */
93 status_mask = ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC |
94 ATH9K_RXERR_KEYMISS;
95
96 if (ah->is_monitoring && (rxfilter & FIF_FCSFAIL))
97 status_mask |= ATH9K_RXERR_CRC;
98
99 if (rx_stats->rs_status & ~status_mask)
100 return false;
101 }
102
103 /*
104 * For unicast frames the MIC error bit can have false positives,
105 * so all MIC error reports need to be validated in software.
106 * False negatives are not common, so skip software verification
107 * if the hardware considers the MIC valid.
108 */
109 if (strip_mic)
110 rxs->flag |= RX_FLAG_MMIC_STRIPPED;
111 else if (is_mc && mic_error)
112 rxs->flag |= RX_FLAG_MMIC_ERROR;
113
114 return true;
115}
116EXPORT_SYMBOL(ath9k_cmn_rx_accept);
117
Oleksij Rempel5a078fc2014-02-04 10:27:47 +0100118void ath9k_cmn_rx_skb_postprocess(struct ath_common *common,
119 struct sk_buff *skb,
120 struct ath_rx_status *rx_stats,
121 struct ieee80211_rx_status *rxs,
122 bool decrypt_error)
123{
124 struct ath_hw *ah = common->ah;
125 struct ieee80211_hdr *hdr;
126 int hdrlen, padpos, padsize;
127 u8 keyix;
128 __le16 fc;
129
130 /* see if any padding is done by the hw and remove it */
131 hdr = (struct ieee80211_hdr *) skb->data;
132 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
133 fc = hdr->frame_control;
134 padpos = ieee80211_hdrlen(fc);
135
136 /* The MAC header is padded to have 32-bit boundary if the
137 * packet payload is non-zero. The general calculation for
138 * padsize would take into account odd header lengths:
139 * padsize = (4 - padpos % 4) % 4; However, since only
140 * even-length headers are used, padding can only be 0 or 2
141 * bytes and we can optimize this a bit. In addition, we must
142 * not try to remove padding from short control frames that do
143 * not have payload. */
144 padsize = padpos & 3;
145 if (padsize && skb->len>=padpos+padsize+FCS_LEN) {
146 memmove(skb->data + padsize, skb->data, padpos);
147 skb_pull(skb, padsize);
148 }
149
150 keyix = rx_stats->rs_keyix;
151
152 if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error &&
153 ieee80211_has_protected(fc)) {
154 rxs->flag |= RX_FLAG_DECRYPTED;
155 } else if (ieee80211_has_protected(fc)
156 && !decrypt_error && skb->len >= hdrlen + 4) {
157 keyix = skb->data[hdrlen + 3] >> 6;
158
159 if (test_bit(keyix, common->keymap))
160 rxs->flag |= RX_FLAG_DECRYPTED;
161 }
Chun-Yeow Yeohe6510b12014-11-16 03:05:40 +0800162 if (ah->sw_mgmt_crypto_rx &&
Oleksij Rempel5a078fc2014-02-04 10:27:47 +0100163 (rxs->flag & RX_FLAG_DECRYPTED) &&
164 ieee80211_is_mgmt(fc))
165 /* Use software decrypt for management frames. */
166 rxs->flag &= ~RX_FLAG_DECRYPTED;
167}
168EXPORT_SYMBOL(ath9k_cmn_rx_skb_postprocess);
169
Oleksij Rempel12746032014-02-04 10:27:40 +0100170int ath9k_cmn_process_rate(struct ath_common *common,
171 struct ieee80211_hw *hw,
172 struct ath_rx_status *rx_stats,
173 struct ieee80211_rx_status *rxs)
174{
175 struct ieee80211_supported_band *sband;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200176 enum nl80211_band band;
Oleksij Rempel12746032014-02-04 10:27:40 +0100177 unsigned int i = 0;
178 struct ath_hw *ah = common->ah;
179
180 band = ah->curchan->chan->band;
181 sband = hw->wiphy->bands[band];
182
183 if (IS_CHAN_QUARTER_RATE(ah->curchan))
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200184 rxs->enc_flags |= RX_ENC_FLAG_5MHZ;
Oleksij Rempel12746032014-02-04 10:27:40 +0100185 else if (IS_CHAN_HALF_RATE(ah->curchan))
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200186 rxs->enc_flags |= RX_ENC_FLAG_10MHZ;
Oleksij Rempel12746032014-02-04 10:27:40 +0100187
188 if (rx_stats->rs_rate & 0x80) {
189 /* HT rate */
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200190 rxs->enc_flags |= RX_ENC_FLAG_HT | rx_stats->enc_flags;
Oleksij Rempel12746032014-02-04 10:27:40 +0100191 rxs->rate_idx = rx_stats->rs_rate & 0x7f;
192 return 0;
193 }
194
195 for (i = 0; i < sband->n_bitrates; i++) {
196 if (sband->bitrates[i].hw_value == rx_stats->rs_rate) {
197 rxs->rate_idx = i;
198 return 0;
199 }
200 if (sband->bitrates[i].hw_value_short == rx_stats->rs_rate) {
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200201 rxs->enc_flags |= RX_ENC_FLAG_SHORTPRE;
Oleksij Rempel12746032014-02-04 10:27:40 +0100202 rxs->rate_idx = i;
203 return 0;
204 }
205 }
206
207 return -EINVAL;
208}
209EXPORT_SYMBOL(ath9k_cmn_process_rate);
210
Oleksij Rempel32efb0c2014-02-04 10:27:39 +0100211void ath9k_cmn_process_rssi(struct ath_common *common,
212 struct ieee80211_hw *hw,
213 struct ath_rx_status *rx_stats,
214 struct ieee80211_rx_status *rxs)
215{
216 struct ath_hw *ah = common->ah;
217 int last_rssi;
218 int rssi = rx_stats->rs_rssi;
219 int i, j;
220
221 /*
222 * RSSI is not available for subframes in an A-MPDU.
223 */
224 if (rx_stats->rs_moreaggr) {
225 rxs->flag |= RX_FLAG_NO_SIGNAL_VAL;
226 return;
227 }
228
229 /*
230 * Check if the RSSI for the last subframe in an A-MPDU
231 * or an unaggregated frame is valid.
232 */
233 if (rx_stats->rs_rssi == ATH9K_RSSI_BAD) {
234 rxs->flag |= RX_FLAG_NO_SIGNAL_VAL;
235 return;
236 }
237
238 for (i = 0, j = 0; i < ARRAY_SIZE(rx_stats->rs_rssi_ctl); i++) {
239 s8 rssi;
240
241 if (!(ah->rxchainmask & BIT(i)))
242 continue;
243
244 rssi = rx_stats->rs_rssi_ctl[i];
245 if (rssi != ATH9K_RSSI_BAD) {
246 rxs->chains |= BIT(j);
247 rxs->chain_signal[j] = ah->noise + rssi;
248 }
249 j++;
250 }
251
252 /*
253 * Update Beacon RSSI, this is used by ANI.
254 */
255 if (rx_stats->is_mybeacon &&
256 ((ah->opmode == NL80211_IFTYPE_STATION) ||
257 (ah->opmode == NL80211_IFTYPE_ADHOC))) {
258 ATH_RSSI_LPF(common->last_rssi, rx_stats->rs_rssi);
259 last_rssi = common->last_rssi;
260
261 if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER))
262 rssi = ATH_EP_RND(last_rssi, ATH_RSSI_EP_MULTIPLIER);
263 if (rssi < 0)
264 rssi = 0;
265
266 ah->stats.avgbrssi = rssi;
267 }
268
269 rxs->signal = ah->noise + rx_stats->rs_rssi;
270}
271EXPORT_SYMBOL(ath9k_cmn_process_rssi);
272
Sujithfb9987d2010-03-17 14:25:25 +0530273int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb)
274{
275 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
276
277 if (tx_info->control.hw_key) {
Johannes Berg97359d12010-08-10 09:46:38 +0200278 switch (tx_info->control.hw_key->cipher) {
279 case WLAN_CIPHER_SUITE_WEP40:
280 case WLAN_CIPHER_SUITE_WEP104:
Sujithfb9987d2010-03-17 14:25:25 +0530281 return ATH9K_KEY_TYPE_WEP;
Johannes Berg97359d12010-08-10 09:46:38 +0200282 case WLAN_CIPHER_SUITE_TKIP:
Sujithfb9987d2010-03-17 14:25:25 +0530283 return ATH9K_KEY_TYPE_TKIP;
Johannes Berg97359d12010-08-10 09:46:38 +0200284 case WLAN_CIPHER_SUITE_CCMP:
Sujithfb9987d2010-03-17 14:25:25 +0530285 return ATH9K_KEY_TYPE_AES;
Johannes Berg97359d12010-08-10 09:46:38 +0200286 default:
287 break;
288 }
Sujithfb9987d2010-03-17 14:25:25 +0530289 }
290
291 return ATH9K_KEY_TYPE_CLEAR;
292}
293EXPORT_SYMBOL(ath9k_cmn_get_hw_crypto_keytype);
294
Sujithfb9987d2010-03-17 14:25:25 +0530295/*
296 * Update internal channel flags.
297 */
Felix Fietkau2297f1c2013-10-11 23:30:57 +0200298static void ath9k_cmn_update_ichannel(struct ath9k_channel *ichan,
299 struct cfg80211_chan_def *chandef)
Sujithfb9987d2010-03-17 14:25:25 +0530300{
Felix Fietkau6b21fd22013-10-11 23:30:56 +0200301 struct ieee80211_channel *chan = chandef->chan;
302 u16 flags = 0;
Sujithfb9987d2010-03-17 14:25:25 +0530303
Felix Fietkau6b21fd22013-10-11 23:30:56 +0200304 ichan->channel = chan->center_freq;
305 ichan->chan = chan;
306
Johannes Berg57fbcce2016-04-12 15:56:15 +0200307 if (chan->band == NL80211_BAND_5GHZ)
Felix Fietkau6b21fd22013-10-11 23:30:56 +0200308 flags |= CHANNEL_5GHZ;
Sujithfb9987d2010-03-17 14:25:25 +0530309
Simon Wunderlich06718942013-08-16 10:46:04 +0200310 switch (chandef->width) {
311 case NL80211_CHAN_WIDTH_5:
Felix Fietkau6b21fd22013-10-11 23:30:56 +0200312 flags |= CHANNEL_QUARTER;
Simon Wunderlich06718942013-08-16 10:46:04 +0200313 break;
314 case NL80211_CHAN_WIDTH_10:
Felix Fietkau6b21fd22013-10-11 23:30:56 +0200315 flags |= CHANNEL_HALF;
Simon Wunderlich06718942013-08-16 10:46:04 +0200316 break;
317 case NL80211_CHAN_WIDTH_20_NOHT:
318 break;
319 case NL80211_CHAN_WIDTH_20:
Felix Fietkau6b21fd22013-10-11 23:30:56 +0200320 flags |= CHANNEL_HT;
321 break;
Simon Wunderlich06718942013-08-16 10:46:04 +0200322 case NL80211_CHAN_WIDTH_40:
Felix Fietkau6b21fd22013-10-11 23:30:56 +0200323 if (chandef->center_freq1 > chandef->chan->center_freq)
324 flags |= CHANNEL_HT40PLUS | CHANNEL_HT;
325 else
326 flags |= CHANNEL_HT40MINUS | CHANNEL_HT;
Simon Wunderlich06718942013-08-16 10:46:04 +0200327 break;
328 default:
329 WARN_ON(1);
330 }
Felix Fietkau6b21fd22013-10-11 23:30:56 +0200331
332 ichan->channelFlags = flags;
Sujithfb9987d2010-03-17 14:25:25 +0530333}
Sujithfb9987d2010-03-17 14:25:25 +0530334
335/*
336 * Get the internal channel reference.
337 */
Felix Fietkau2297f1c2013-10-11 23:30:57 +0200338struct ath9k_channel *ath9k_cmn_get_channel(struct ieee80211_hw *hw,
339 struct ath_hw *ah,
340 struct cfg80211_chan_def *chandef)
Sujithfb9987d2010-03-17 14:25:25 +0530341{
Felix Fietkau2297f1c2013-10-11 23:30:57 +0200342 struct ieee80211_channel *curchan = chandef->chan;
Sujithfb9987d2010-03-17 14:25:25 +0530343 struct ath9k_channel *channel;
Sujithfb9987d2010-03-17 14:25:25 +0530344
Felix Fietkauf40c4602013-12-14 18:03:35 +0100345 channel = &ah->channels[curchan->hw_value];
Felix Fietkau2297f1c2013-10-11 23:30:57 +0200346 ath9k_cmn_update_ichannel(channel, chandef);
Sujithfb9987d2010-03-17 14:25:25 +0530347
348 return channel;
349}
Felix Fietkau2297f1c2013-10-11 23:30:57 +0200350EXPORT_SYMBOL(ath9k_cmn_get_channel);
Sujithfb9987d2010-03-17 14:25:25 +0530351
Sujith61389f32010-06-02 15:53:37 +0530352int ath9k_cmn_count_streams(unsigned int chainmask, int max)
353{
354 int streams = 0;
355
356 do {
357 if (++streams == max)
358 break;
359 } while ((chainmask = chainmask & (chainmask - 1)));
360
361 return streams;
362}
363EXPORT_SYMBOL(ath9k_cmn_count_streams);
364
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +0530365void ath9k_cmn_update_txpow(struct ath_hw *ah, u16 cur_txpow,
366 u16 new_txpow, u16 *txpower)
367{
Felix Fietkauca2c68c2011-10-08 20:06:20 +0200368 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
369
Felix Fietkau76325452014-10-22 18:17:35 +0200370 if (reg->power_limit != new_txpow)
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +0530371 ath9k_hw_set_txpowerlimit(ah, new_txpow, false);
Felix Fietkau76325452014-10-22 18:17:35 +0200372
373 /* read back in case value is clamped */
374 *txpower = reg->max_power_level;
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +0530375}
376EXPORT_SYMBOL(ath9k_cmn_update_txpow);
377
Rajkumar Manoharanf82b4bd2011-08-13 10:28:15 +0530378void ath9k_cmn_init_crypto(struct ath_hw *ah)
379{
380 struct ath_common *common = ath9k_hw_common(ah);
381 int i = 0;
382
383 /* Get the hardware key cache size. */
384 common->keymax = AR_KEYTABLE_SIZE;
385
386 /*
387 * Check whether the separate key cache entries
388 * are required to handle both tx+rx MIC keys.
389 * With split mic keys the number of stations is limited
390 * to 27 otherwise 59.
391 */
392 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA)
393 common->crypt_caps |= ATH_CRYPT_CAP_MIC_COMBINED;
394
395 /*
396 * Reset the key cache since some parts do not
397 * reset the contents on initial power up.
398 */
399 for (i = 0; i < common->keymax; i++)
400 ath_hw_keyreset(common, (u16) i);
401}
402EXPORT_SYMBOL(ath9k_cmn_init_crypto);
403
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -0800404static int __init ath9k_cmn_init(void)
405{
406 return 0;
407}
408module_init(ath9k_cmn_init);
409
410static void __exit ath9k_cmn_exit(void)
411{
412 return;
413}
414module_exit(ath9k_cmn_exit);