Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2009 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 | #include <net/mac80211.h> |
| 18 | |
| 19 | #include "../ath.h" |
| 20 | #include "../debug.h" |
| 21 | |
| 22 | #include "hw.h" |
Luis R. Rodriguez | d70357d | 2010-04-15 17:38:06 -0400 | [diff] [blame^] | 23 | #include "hw-ops.h" |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 24 | |
| 25 | /* Common header for Atheros 802.11n base driver cores */ |
| 26 | |
Sujith | fb9987d | 2010-03-17 14:25:25 +0530 | [diff] [blame] | 27 | #define IEEE80211_WEP_NKID 4 |
| 28 | |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 29 | #define WME_NUM_TID 16 |
| 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 | |
| 34 | #define WME_AC_BE 0 |
| 35 | #define WME_AC_BK 1 |
| 36 | #define WME_AC_VI 2 |
| 37 | #define WME_AC_VO 3 |
| 38 | #define WME_NUM_AC 4 |
| 39 | |
| 40 | #define ATH_RSSI_DUMMY_MARKER 0x127 |
| 41 | #define ATH_RSSI_LPF_LEN 10 |
| 42 | #define RSSI_LPF_THRESHOLD -20 |
| 43 | #define ATH_RSSI_EP_MULTIPLIER (1<<7) |
| 44 | #define ATH_EP_MUL(x, mul) ((x) * (mul)) |
| 45 | #define ATH_RSSI_IN(x) (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER)) |
| 46 | #define ATH_LPF_RSSI(x, y, len) \ |
| 47 | ((x != ATH_RSSI_DUMMY_MARKER) ? (((x) * ((len) - 1) + (y)) / (len)) : (y)) |
| 48 | #define ATH_RSSI_LPF(x, y) do { \ |
| 49 | if ((y) >= RSSI_LPF_THRESHOLD) \ |
| 50 | x = ATH_LPF_RSSI((x), ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN); \ |
| 51 | } while (0) |
| 52 | #define ATH_EP_RND(x, mul) \ |
| 53 | ((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul)) |
| 54 | |
| 55 | struct ath_atx_ac { |
| 56 | int sched; |
| 57 | int qnum; |
| 58 | struct list_head list; |
| 59 | struct list_head tid_q; |
| 60 | }; |
| 61 | |
| 62 | struct ath_buf_state { |
| 63 | int bfs_nframes; |
| 64 | u16 bfs_al; |
| 65 | u16 bfs_frmlen; |
| 66 | int bfs_seqno; |
| 67 | int bfs_tidno; |
| 68 | int bfs_retries; |
| 69 | u8 bf_type; |
| 70 | u32 bfs_keyix; |
| 71 | enum ath9k_key_type bfs_keytype; |
| 72 | }; |
| 73 | |
| 74 | struct ath_buf { |
| 75 | struct list_head list; |
| 76 | struct ath_buf *bf_lastbf; /* last buf of this unit (a frame or |
| 77 | an aggregate) */ |
| 78 | struct ath_buf *bf_next; /* next subframe in the aggregate */ |
| 79 | struct sk_buff *bf_mpdu; /* enclosing frame structure */ |
| 80 | struct ath_desc *bf_desc; /* virtual addr of desc */ |
| 81 | dma_addr_t bf_daddr; /* physical addr of desc */ |
| 82 | dma_addr_t bf_buf_addr; /* physical addr of data buffer */ |
| 83 | bool bf_stale; |
Luis R. Rodriguez | e7824a5 | 2009-11-24 02:53:25 -0500 | [diff] [blame] | 84 | bool bf_isnullfunc; |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 85 | u16 bf_flags; |
| 86 | struct ath_buf_state bf_state; |
| 87 | dma_addr_t bf_dmacontext; |
Felix Fietkau | 827e69b | 2009-11-15 23:09:25 +0100 | [diff] [blame] | 88 | struct ath_wiphy *aphy; |
Luis R. Rodriguez | db86f07 | 2009-11-05 08:44:39 -0800 | [diff] [blame] | 89 | }; |
| 90 | |
| 91 | struct ath_atx_tid { |
| 92 | struct list_head list; |
| 93 | struct list_head buf_q; |
| 94 | struct ath_node *an; |
| 95 | struct ath_atx_ac *ac; |
| 96 | struct ath_buf *tx_buf[ATH_TID_MAX_BUFS]; |
| 97 | u16 seq_start; |
| 98 | u16 seq_next; |
| 99 | u16 baw_size; |
| 100 | int tidno; |
| 101 | int baw_head; /* first un-acked tx buffer */ |
| 102 | int baw_tail; /* next unused tx buffer slot */ |
| 103 | int sched; |
| 104 | int paused; |
| 105 | u8 state; |
| 106 | }; |
| 107 | |
| 108 | struct ath_node { |
| 109 | struct ath_common *common; |
| 110 | struct ath_atx_tid tid[WME_NUM_TID]; |
| 111 | struct ath_atx_ac ac[WME_NUM_AC]; |
| 112 | u16 maxampdu; |
| 113 | u8 mpdudensity; |
| 114 | int last_rssi; |
| 115 | }; |
| 116 | |
| 117 | int ath9k_cmn_rx_skb_preprocess(struct ath_common *common, |
| 118 | struct ieee80211_hw *hw, |
| 119 | struct sk_buff *skb, |
| 120 | struct ath_rx_status *rx_stats, |
| 121 | struct ieee80211_rx_status *rx_status, |
| 122 | bool *decrypt_error); |
| 123 | |
| 124 | void ath9k_cmn_rx_skb_postprocess(struct ath_common *common, |
| 125 | struct sk_buff *skb, |
| 126 | struct ath_rx_status *rx_stats, |
| 127 | struct ieee80211_rx_status *rxs, |
| 128 | bool decrypt_error); |
Benoit Papillault | 1bc1488 | 2009-11-24 15:49:18 +0100 | [diff] [blame] | 129 | |
| 130 | int ath9k_cmn_padpos(__le16 frame_control); |
Sujith | fb9987d | 2010-03-17 14:25:25 +0530 | [diff] [blame] | 131 | int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb); |
Sujith | fb9987d | 2010-03-17 14:25:25 +0530 | [diff] [blame] | 132 | void ath9k_cmn_update_ichannel(struct ieee80211_hw *hw, |
| 133 | struct ath9k_channel *ichan); |
| 134 | struct ath9k_channel *ath9k_cmn_get_curchannel(struct ieee80211_hw *hw, |
| 135 | struct ath_hw *ah); |
| 136 | int ath9k_cmn_key_config(struct ath_common *common, |
| 137 | struct ieee80211_vif *vif, |
| 138 | struct ieee80211_sta *sta, |
| 139 | struct ieee80211_key_conf *key); |
| 140 | void ath9k_cmn_key_delete(struct ath_common *common, |
| 141 | struct ieee80211_key_conf *key); |