2009-11-06 00:44:39 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 Atheros Communications Inc.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <net/mac80211.h>
|
|
|
|
|
|
|
|
#include "../ath.h"
|
|
|
|
#include "../debug.h"
|
|
|
|
|
|
|
|
#include "hw.h"
|
2010-04-16 05:38:06 +08:00
|
|
|
#include "hw-ops.h"
|
2009-11-06 00:44:39 +08:00
|
|
|
|
|
|
|
/* Common header for Atheros 802.11n base driver cores */
|
|
|
|
|
2010-03-17 16:55:25 +08:00
|
|
|
#define IEEE80211_WEP_NKID 4
|
|
|
|
|
2009-11-06 00:44:39 +08:00
|
|
|
#define WME_NUM_TID 16
|
|
|
|
#define WME_BA_BMP_SIZE 64
|
|
|
|
#define WME_MAX_BA WME_BA_BMP_SIZE
|
|
|
|
#define ATH_TID_MAX_BUFS (2 * WME_MAX_BA)
|
|
|
|
|
|
|
|
#define WME_AC_BE 0
|
|
|
|
#define WME_AC_BK 1
|
|
|
|
#define WME_AC_VI 2
|
|
|
|
#define WME_AC_VO 3
|
|
|
|
#define WME_NUM_AC 4
|
|
|
|
|
|
|
|
#define ATH_RSSI_DUMMY_MARKER 0x127
|
|
|
|
#define ATH_RSSI_LPF_LEN 10
|
|
|
|
#define RSSI_LPF_THRESHOLD -20
|
|
|
|
#define ATH_RSSI_EP_MULTIPLIER (1<<7)
|
|
|
|
#define ATH_EP_MUL(x, mul) ((x) * (mul))
|
|
|
|
#define ATH_RSSI_IN(x) (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER))
|
|
|
|
#define ATH_LPF_RSSI(x, y, len) \
|
|
|
|
((x != ATH_RSSI_DUMMY_MARKER) ? (((x) * ((len) - 1) + (y)) / (len)) : (y))
|
|
|
|
#define ATH_RSSI_LPF(x, y) do { \
|
|
|
|
if ((y) >= RSSI_LPF_THRESHOLD) \
|
|
|
|
x = ATH_LPF_RSSI((x), ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN); \
|
|
|
|
} while (0)
|
|
|
|
#define ATH_EP_RND(x, mul) \
|
|
|
|
((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
|
|
|
|
|
2009-11-24 22:49:18 +08:00
|
|
|
int ath9k_cmn_padpos(__le16 frame_control);
|
2010-03-17 16:55:25 +08:00
|
|
|
int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb);
|
|
|
|
void ath9k_cmn_update_ichannel(struct ieee80211_hw *hw,
|
|
|
|
struct ath9k_channel *ichan);
|
|
|
|
struct ath9k_channel *ath9k_cmn_get_curchannel(struct ieee80211_hw *hw,
|
|
|
|
struct ath_hw *ah);
|
|
|
|
int ath9k_cmn_key_config(struct ath_common *common,
|
|
|
|
struct ieee80211_vif *vif,
|
|
|
|
struct ieee80211_sta *sta,
|
|
|
|
struct ieee80211_key_conf *key);
|
|
|
|
void ath9k_cmn_key_delete(struct ath_common *common,
|
|
|
|
struct ieee80211_key_conf *key);
|