blob: d23737342f4fe7b311c84a7d556cad6e94ecf1f1 [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#include <net/mac80211.h>
18
19#include "../ath.h"
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -080020
21#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040022#include "hw-ops.h"
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -080023
Oleksij Rempel13f71052014-02-25 14:48:50 +010024#include "common-init.h"
Oleksij Rempelcbbdf2a2014-03-01 21:15:56 +010025#include "common-beacon.h"
Oleksij Rempelf2c3c952014-05-11 10:04:31 +020026#include "common-debug.h"
Oleksij Rempel67dc74f2014-11-06 08:53:30 +010027#include "common-spectral.h"
Oleksij Rempel13f71052014-02-25 14:48:50 +010028
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -080029/* Common header for Atheros 802.11n base driver cores */
30
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -080031#define WME_BA_BMP_SIZE 64
32#define WME_MAX_BA WME_BA_BMP_SIZE
33#define ATH_TID_MAX_BUFS (2 * WME_MAX_BA)
34
Felix Fietkaua3d63ca2013-02-22 21:09:17 +010035#define ATH_RSSI_DUMMY_MARKER 127
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -080036#define ATH_RSSI_LPF_LEN 10
37#define RSSI_LPF_THRESHOLD -20
38#define ATH_RSSI_EP_MULTIPLIER (1<<7)
39#define ATH_EP_MUL(x, mul) ((x) * (mul))
40#define ATH_RSSI_IN(x) (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER))
41#define ATH_LPF_RSSI(x, y, len) \
42 ((x != ATH_RSSI_DUMMY_MARKER) ? (((x) * ((len) - 1) + (y)) / (len)) : (y))
43#define ATH_RSSI_LPF(x, y) do { \
44 if ((y) >= RSSI_LPF_THRESHOLD) \
45 x = ATH_LPF_RSSI((x), ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN); \
46} while (0)
47#define ATH_EP_RND(x, mul) \
Bob Copeland4ba910d2013-02-26 13:41:52 -050048 (((x) + ((mul)/2)) / (mul))
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -080049
Oleksij Rempelc7303262014-03-01 21:15:54 +010050#define IEEE80211_MS_TO_TU(x) (((x) * 1000) / 1024)
51
Oleksij Rempelfd0ab792014-03-01 21:15:44 +010052struct ath_beacon_config {
53 int beacon_interval;
54 u16 dtim_period;
55 u16 bmiss_timeout;
56 u8 dtim_count;
Felix Fietkau1cf48f22015-03-12 17:17:18 +010057 u8 enable_beacon;
Oleksij Rempelfd0ab792014-03-01 21:15:44 +010058 bool ibss_creator;
Oleksij Rempela2030b92014-03-01 21:15:55 +010059 u32 nexttbtt;
60 u32 intval;
Oleksij Rempelfd0ab792014-03-01 21:15:44 +010061};
62
Oleksij Rempel64386962014-02-04 10:27:41 +010063bool ath9k_cmn_rx_accept(struct ath_common *common,
64 struct ieee80211_hdr *hdr,
65 struct ieee80211_rx_status *rxs,
66 struct ath_rx_status *rx_stats,
67 bool *decrypt_error,
68 unsigned int rxfilter);
Oleksij Rempel5a078fc2014-02-04 10:27:47 +010069void ath9k_cmn_rx_skb_postprocess(struct ath_common *common,
70 struct sk_buff *skb,
71 struct ath_rx_status *rx_stats,
72 struct ieee80211_rx_status *rxs,
73 bool decrypt_error);
Oleksij Rempel12746032014-02-04 10:27:40 +010074int ath9k_cmn_process_rate(struct ath_common *common,
75 struct ieee80211_hw *hw,
76 struct ath_rx_status *rx_stats,
77 struct ieee80211_rx_status *rxs);
Oleksij Rempel32efb0c2014-02-04 10:27:39 +010078void ath9k_cmn_process_rssi(struct ath_common *common,
79 struct ieee80211_hw *hw,
80 struct ath_rx_status *rx_stats,
81 struct ieee80211_rx_status *rxs);
Sujithfb9987d2010-03-17 14:25:25 +053082int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb);
Felix Fietkau2297f1c2013-10-11 23:30:57 +020083struct ath9k_channel *ath9k_cmn_get_channel(struct ieee80211_hw *hw,
84 struct ath_hw *ah,
85 struct cfg80211_chan_def *chandef);
Sujith61389f32010-06-02 15:53:37 +053086int ath9k_cmn_count_streams(unsigned int chainmask, int max);
Vivek Natarajand99eeb82010-08-18 19:57:48 +053087void ath9k_cmn_btcoex_bt_stomp(struct ath_common *common,
88 enum ath_stomp_type stomp_type);
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +053089void ath9k_cmn_update_txpow(struct ath_hw *ah, u16 cur_txpow,
90 u16 new_txpow, u16 *txpower);
Rajkumar Manoharanf82b4bd2011-08-13 10:28:15 +053091void ath9k_cmn_init_crypto(struct ath_hw *ah);