btcoex.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. #ifndef BTCOEX_H
  17. #define BTCOEX_H
  18. #include "hw.h"
  19. #define ATH_WLANACTIVE_GPIO 5
  20. #define ATH_BTACTIVE_GPIO 6
  21. #define ATH_BTPRIORITY_GPIO 7
  22. #define ATH_BTCOEX_DEF_BT_PERIOD 45
  23. #define ATH_BTCOEX_DEF_DUTY_CYCLE 55
  24. #define ATH_BTCOEX_BTSCAN_DUTY_CYCLE 90
  25. #define ATH_BTCOEX_BMISS_THRESH 50
  26. #define ATH_BT_PRIORITY_TIME_THRESHOLD 1000 /* ms */
  27. #define ATH_BT_CNT_THRESHOLD 3
  28. #define ATH_BT_CNT_SCAN_THRESHOLD 15
  29. enum ath_btcoex_scheme {
  30. ATH_BTCOEX_CFG_NONE,
  31. ATH_BTCOEX_CFG_2WIRE,
  32. ATH_BTCOEX_CFG_3WIRE,
  33. };
  34. struct ath_btcoex_hw {
  35. enum ath_btcoex_scheme scheme;
  36. bool enabled;
  37. u8 wlanactive_gpio;
  38. u8 btactive_gpio;
  39. u8 btpriority_gpio;
  40. u32 bt_coex_mode; /* Register setting for AR_BT_COEX_MODE */
  41. u32 bt_coex_weights; /* Register setting for AR_BT_COEX_WEIGHT */
  42. u32 bt_coex_mode2; /* Register setting for AR_BT_COEX_MODE2 */
  43. };
  44. bool ath9k_hw_btcoex_supported(struct ath_hw *ah);
  45. void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah);
  46. void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah);
  47. void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum);
  48. void ath9k_hw_btcoex_set_weight(struct ath_hw *ah,
  49. u32 bt_weight,
  50. u32 wlan_weight);
  51. void ath9k_hw_btcoex_enable(struct ath_hw *ah);
  52. void ath9k_hw_btcoex_disable(struct ath_hw *ah);
  53. #endif