common.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Copyright (c) 2009-2011 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 "hw.h"
  19. #include "hw-ops.h"
  20. #include "common-init.h"
  21. #include "common-beacon.h"
  22. #include "common-debug.h"
  23. #include "common-spectral.h"
  24. /* Common header for Atheros 802.11n base driver cores */
  25. #define WME_BA_BMP_SIZE 64
  26. #define WME_MAX_BA WME_BA_BMP_SIZE
  27. #define ATH_TID_MAX_BUFS (2 * WME_MAX_BA)
  28. #define ATH_RSSI_DUMMY_MARKER 127
  29. #define ATH_RSSI_LPF_LEN 10
  30. #define RSSI_LPF_THRESHOLD -20
  31. #define ATH_RSSI_EP_MULTIPLIER (1<<7)
  32. #define ATH_EP_MUL(x, mul) ((x) * (mul))
  33. #define ATH_RSSI_IN(x) (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER))
  34. #define ATH_LPF_RSSI(x, y, len) \
  35. ((x != ATH_RSSI_DUMMY_MARKER) ? (((x) * ((len) - 1) + (y)) / (len)) : (y))
  36. #define ATH_RSSI_LPF(x, y) do { \
  37. if ((y) >= RSSI_LPF_THRESHOLD) \
  38. x = ATH_LPF_RSSI((x), ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN); \
  39. } while (0)
  40. #define ATH_EP_RND(x, mul) \
  41. (((x) + ((mul)/2)) / (mul))
  42. #define IEEE80211_MS_TO_TU(x) (((x) * 1000) / 1024)
  43. struct ath_beacon_config {
  44. int beacon_interval;
  45. u16 dtim_period;
  46. u16 bmiss_timeout;
  47. u8 dtim_count;
  48. u8 enable_beacon;
  49. bool ibss_creator;
  50. u32 nexttbtt;
  51. u32 intval;
  52. };
  53. bool ath9k_cmn_rx_accept(struct ath_common *common,
  54. struct ieee80211_hdr *hdr,
  55. struct ieee80211_rx_status *rxs,
  56. struct ath_rx_status *rx_stats,
  57. bool *decrypt_error,
  58. unsigned int rxfilter);
  59. void ath9k_cmn_rx_skb_postprocess(struct ath_common *common,
  60. struct sk_buff *skb,
  61. struct ath_rx_status *rx_stats,
  62. struct ieee80211_rx_status *rxs,
  63. bool decrypt_error);
  64. int ath9k_cmn_process_rate(struct ath_common *common,
  65. struct ieee80211_hw *hw,
  66. struct ath_rx_status *rx_stats,
  67. struct ieee80211_rx_status *rxs);
  68. void ath9k_cmn_process_rssi(struct ath_common *common,
  69. struct ieee80211_hw *hw,
  70. struct ath_rx_status *rx_stats,
  71. struct ieee80211_rx_status *rxs);
  72. int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb);
  73. struct ath9k_channel *ath9k_cmn_get_channel(struct ieee80211_hw *hw,
  74. struct ath_hw *ah,
  75. struct cfg80211_chan_def *chandef);
  76. int ath9k_cmn_count_streams(unsigned int chainmask, int max);
  77. void ath9k_cmn_btcoex_bt_stomp(struct ath_common *common,
  78. enum ath_stomp_type stomp_type);
  79. void ath9k_cmn_update_txpow(struct ath_hw *ah, u16 cur_txpow,
  80. u16 new_txpow, u16 *txpower);
  81. void ath9k_cmn_init_crypto(struct ath_hw *ah);