common.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. #include <net/mac80211.h>
  17. #include "../ath.h"
  18. #include "../debug.h"
  19. #include "hw.h"
  20. #include "hw-ops.h"
  21. /* Common header for Atheros 802.11n base driver cores */
  22. #define IEEE80211_WEP_NKID 4
  23. #define WME_NUM_TID 16
  24. #define WME_BA_BMP_SIZE 64
  25. #define WME_MAX_BA WME_BA_BMP_SIZE
  26. #define ATH_TID_MAX_BUFS (2 * WME_MAX_BA)
  27. #define WME_AC_BE 0
  28. #define WME_AC_BK 1
  29. #define WME_AC_VI 2
  30. #define WME_AC_VO 3
  31. #define WME_NUM_AC 4
  32. #define ATH_RSSI_DUMMY_MARKER 0x127
  33. #define ATH_RSSI_LPF_LEN 10
  34. #define RSSI_LPF_THRESHOLD -20
  35. #define ATH_RSSI_EP_MULTIPLIER (1<<7)
  36. #define ATH_EP_MUL(x, mul) ((x) * (mul))
  37. #define ATH_RSSI_IN(x) (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER))
  38. #define ATH_LPF_RSSI(x, y, len) \
  39. ((x != ATH_RSSI_DUMMY_MARKER) ? (((x) * ((len) - 1) + (y)) / (len)) : (y))
  40. #define ATH_RSSI_LPF(x, y) do { \
  41. if ((y) >= RSSI_LPF_THRESHOLD) \
  42. x = ATH_LPF_RSSI((x), ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN); \
  43. } while (0)
  44. #define ATH_EP_RND(x, mul) \
  45. ((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
  46. int ath9k_cmn_padpos(__le16 frame_control);
  47. int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb);
  48. void ath9k_cmn_update_ichannel(struct ieee80211_hw *hw,
  49. struct ath9k_channel *ichan);
  50. struct ath9k_channel *ath9k_cmn_get_curchannel(struct ieee80211_hw *hw,
  51. struct ath_hw *ah);
  52. int ath9k_cmn_key_config(struct ath_common *common,
  53. struct ieee80211_vif *vif,
  54. struct ieee80211_sta *sta,
  55. struct ieee80211_key_conf *key);
  56. void ath9k_cmn_key_delete(struct ath_common *common,
  57. struct ieee80211_key_conf *key);
  58. int ath9k_cmn_count_streams(unsigned int chainmask, int max);