btcoex.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. #ifndef BTCOEX_H
  17. #define BTCOEX_H
  18. #include "hw.h"
  19. #define ATH_WLANACTIVE_GPIO_9280 5
  20. #define ATH_BTACTIVE_GPIO_9280 6
  21. #define ATH_BTPRIORITY_GPIO_9285 7
  22. #define ATH_WLANACTIVE_GPIO_9300 5
  23. #define ATH_BTACTIVE_GPIO_9300 4
  24. #define ATH_BTPRIORITY_GPIO_9300 8
  25. #define ATH_BTCOEX_DEF_BT_PERIOD 45
  26. #define ATH_BTCOEX_DEF_DUTY_CYCLE 55
  27. #define ATH_BTCOEX_BTSCAN_DUTY_CYCLE 90
  28. #define ATH_BTCOEX_BMISS_THRESH 50
  29. #define ATH_BT_PRIORITY_TIME_THRESHOLD 1000 /* ms */
  30. #define ATH_BT_CNT_THRESHOLD 3
  31. #define ATH_BT_CNT_SCAN_THRESHOLD 15
  32. #define AR9300_NUM_BT_WEIGHTS 4
  33. #define AR9300_NUM_WLAN_WEIGHTS 4
  34. /* Defines the BT AR_BT_COEX_WGHT used */
  35. enum ath_stomp_type {
  36. ATH_BTCOEX_STOMP_ALL,
  37. ATH_BTCOEX_STOMP_LOW,
  38. ATH_BTCOEX_STOMP_NONE,
  39. ATH_BTCOEX_STOMP_MAX
  40. };
  41. enum ath_btcoex_scheme {
  42. ATH_BTCOEX_CFG_NONE,
  43. ATH_BTCOEX_CFG_2WIRE,
  44. ATH_BTCOEX_CFG_3WIRE,
  45. };
  46. struct ath_btcoex_hw {
  47. enum ath_btcoex_scheme scheme;
  48. bool enabled;
  49. u8 wlanactive_gpio;
  50. u8 btactive_gpio;
  51. u8 btpriority_gpio;
  52. u32 bt_coex_mode; /* Register setting for AR_BT_COEX_MODE */
  53. u32 bt_coex_weights; /* Register setting for AR_BT_COEX_WEIGHT */
  54. u32 bt_coex_mode2; /* Register setting for AR_BT_COEX_MODE2 */
  55. u32 bt_weight[AR9300_NUM_BT_WEIGHTS];
  56. u32 wlan_weight[AR9300_NUM_WLAN_WEIGHTS];
  57. };
  58. void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah);
  59. void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah);
  60. void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum);
  61. void ath9k_hw_btcoex_set_weight(struct ath_hw *ah,
  62. u32 bt_weight,
  63. u32 wlan_weight);
  64. void ath9k_hw_btcoex_enable(struct ath_hw *ah);
  65. void ath9k_hw_btcoex_disable(struct ath_hw *ah);
  66. void ath9k_hw_btcoex_bt_stomp(struct ath_hw *ah,
  67. enum ath_stomp_type stomp_type);
  68. #endif