Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 1 | /* |
Sujith Manoharan | 5b68138 | 2011-05-17 13:36:18 +0530 | [diff] [blame] | 2 | * Copyright (c) 2009-2011 Atheros Communications Inc. |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 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 | #include <net/mac80211.h> |
| 18 | |
| 19 | #include "../ath.h" |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 20 | |
| 21 | #include "hw.h" |
Luis R. Rodriguez | d70357d | 2010-04-15 17:38:06 -0400 | [diff] [blame] | 22 | #include "hw-ops.h" |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 23 | |
Oleksij Rempel | 13f7105 | 2014-02-25 14:48:50 +0100 | [diff] [blame] | 24 | #include "common-init.h" |
Oleksij Rempel | cbbdf2a | 2014-03-01 21:15:56 +0100 | [diff] [blame] | 25 | #include "common-beacon.h" |
Oleksij Rempel | f2c3c95 | 2014-05-11 10:04:31 +0200 | [diff] [blame] | 26 | #include "common-debug.h" |
Oleksij Rempel | 13f7105 | 2014-02-25 14:48:50 +0100 | [diff] [blame] | 27 | |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 28 | /* Common header for Atheros 802.11n base driver cores */ |
| 29 | |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 30 | #define WME_BA_BMP_SIZE 64 |
| 31 | #define WME_MAX_BA WME_BA_BMP_SIZE |
| 32 | #define ATH_TID_MAX_BUFS (2 * WME_MAX_BA) |
| 33 | |
Felix Fietkau | a3d63ca | 2013-02-22 21:09:17 +0100 | [diff] [blame] | 34 | #define ATH_RSSI_DUMMY_MARKER 127 |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 35 | #define ATH_RSSI_LPF_LEN 10 |
| 36 | #define RSSI_LPF_THRESHOLD -20 |
| 37 | #define ATH_RSSI_EP_MULTIPLIER (1<<7) |
| 38 | #define ATH_EP_MUL(x, mul) ((x) * (mul)) |
| 39 | #define ATH_RSSI_IN(x) (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER)) |
| 40 | #define ATH_LPF_RSSI(x, y, len) \ |
| 41 | ((x != ATH_RSSI_DUMMY_MARKER) ? (((x) * ((len) - 1) + (y)) / (len)) : (y)) |
| 42 | #define ATH_RSSI_LPF(x, y) do { \ |
| 43 | if ((y) >= RSSI_LPF_THRESHOLD) \ |
| 44 | x = ATH_LPF_RSSI((x), ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN); \ |
| 45 | } while (0) |
| 46 | #define ATH_EP_RND(x, mul) \ |
Bob Copeland | 4ba910d | 2013-02-26 13:41:52 -0500 | [diff] [blame] | 47 | (((x) + ((mul)/2)) / (mul)) |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 48 | |
Oleksij Rempel | c730326 | 2014-03-01 21:15:54 +0100 | [diff] [blame] | 49 | #define IEEE80211_MS_TO_TU(x) (((x) * 1000) / 1024) |
| 50 | |
Oleksij Rempel | fd0ab79 | 2014-03-01 21:15:44 +0100 | [diff] [blame] | 51 | struct ath_beacon_config { |
| 52 | int beacon_interval; |
| 53 | u16 dtim_period; |
| 54 | u16 bmiss_timeout; |
| 55 | u8 dtim_count; |
| 56 | bool enable_beacon; |
| 57 | bool ibss_creator; |
Oleksij Rempel | a2030b9 | 2014-03-01 21:15:55 +0100 | [diff] [blame] | 58 | u32 nexttbtt; |
| 59 | u32 intval; |
Oleksij Rempel | fd0ab79 | 2014-03-01 21:15:44 +0100 | [diff] [blame] | 60 | }; |
| 61 | |
Oleksij Rempel | 6438696 | 2014-02-04 10:27:41 +0100 | [diff] [blame] | 62 | bool ath9k_cmn_rx_accept(struct ath_common *common, |
| 63 | struct ieee80211_hdr *hdr, |
| 64 | struct ieee80211_rx_status *rxs, |
| 65 | struct ath_rx_status *rx_stats, |
| 66 | bool *decrypt_error, |
| 67 | unsigned int rxfilter); |
Oleksij Rempel | 5a078fc | 2014-02-04 10:27:47 +0100 | [diff] [blame] | 68 | void ath9k_cmn_rx_skb_postprocess(struct ath_common *common, |
| 69 | struct sk_buff *skb, |
| 70 | struct ath_rx_status *rx_stats, |
| 71 | struct ieee80211_rx_status *rxs, |
| 72 | bool decrypt_error); |
Oleksij Rempel | 1274603 | 2014-02-04 10:27:40 +0100 | [diff] [blame] | 73 | int ath9k_cmn_process_rate(struct ath_common *common, |
| 74 | struct ieee80211_hw *hw, |
| 75 | struct ath_rx_status *rx_stats, |
| 76 | struct ieee80211_rx_status *rxs); |
Oleksij Rempel | 32efb0c | 2014-02-04 10:27:39 +0100 | [diff] [blame] | 77 | void ath9k_cmn_process_rssi(struct ath_common *common, |
| 78 | struct ieee80211_hw *hw, |
| 79 | struct ath_rx_status *rx_stats, |
| 80 | struct ieee80211_rx_status *rxs); |
Sujith | fb9987d | 2010-03-17 14:25:25 +0530 | [diff] [blame] | 81 | int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb); |
Felix Fietkau | 2297f1c | 2013-10-11 23:30:57 +0200 | [diff] [blame] | 82 | struct ath9k_channel *ath9k_cmn_get_channel(struct ieee80211_hw *hw, |
| 83 | struct ath_hw *ah, |
| 84 | struct cfg80211_chan_def *chandef); |
Sujith | 61389f3 | 2010-06-02 15:53:37 +0530 | [diff] [blame] | 85 | int ath9k_cmn_count_streams(unsigned int chainmask, int max); |
Vivek Natarajan | d99eeb8 | 2010-08-18 19:57:48 +0530 | [diff] [blame] | 86 | void ath9k_cmn_btcoex_bt_stomp(struct ath_common *common, |
| 87 | enum ath_stomp_type stomp_type); |
Rajkumar Manoharan | 5048e8c | 2011-01-31 23:47:44 +0530 | [diff] [blame] | 88 | void ath9k_cmn_update_txpow(struct ath_hw *ah, u16 cur_txpow, |
| 89 | u16 new_txpow, u16 *txpower); |
Rajkumar Manoharan | f82b4bd | 2011-08-13 10:28:15 +0530 | [diff] [blame] | 90 | void ath9k_cmn_init_crypto(struct ath_hw *ah); |