common.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. /* Common header for Atheros 802.11n base driver cores */
  21. #define WME_BA_BMP_SIZE 64
  22. #define WME_MAX_BA WME_BA_BMP_SIZE
  23. #define ATH_TID_MAX_BUFS (2 * WME_MAX_BA)
  24. #define ATH_RSSI_DUMMY_MARKER 127
  25. #define ATH_RSSI_LPF_LEN 10
  26. #define RSSI_LPF_THRESHOLD -20
  27. #define ATH_RSSI_EP_MULTIPLIER (1<<7)
  28. #define ATH_EP_MUL(x, mul) ((x) * (mul))
  29. #define ATH_RSSI_IN(x) (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER))
  30. #define ATH_LPF_RSSI(x, y, len) \
  31. ((x != ATH_RSSI_DUMMY_MARKER) ? (((x) * ((len) - 1) + (y)) / (len)) : (y))
  32. #define ATH_RSSI_LPF(x, y) do { \
  33. if ((y) >= RSSI_LPF_THRESHOLD) \
  34. x = ATH_LPF_RSSI((x), ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN); \
  35. } while (0)
  36. #define ATH_EP_RND(x, mul) \
  37. ((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
  38. int ath9k_cmn_padpos(__le16 frame_control);
  39. int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb);
  40. void ath9k_cmn_update_ichannel(struct ath9k_channel *ichan,
  41. struct ieee80211_channel *chan,
  42. enum nl80211_channel_type channel_type);
  43. struct ath9k_channel *ath9k_cmn_get_curchannel(struct ieee80211_hw *hw,
  44. struct ath_hw *ah);
  45. int ath9k_cmn_count_streams(unsigned int chainmask, int max);
  46. void ath9k_cmn_btcoex_bt_stomp(struct ath_common *common,
  47. enum ath_stomp_type stomp_type);
  48. void ath9k_cmn_update_txpow(struct ath_hw *ah, u16 cur_txpow,
  49. u16 new_txpow, u16 *txpower);
  50. void ath9k_cmn_init_crypto(struct ath_hw *ah);