btcoex.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_BMISS_THRESH 50
  25. #define ATH_BT_PRIORITY_TIME_THRESHOLD 1000 /* ms */
  26. #define ATH_BT_CNT_THRESHOLD 3
  27. enum ath_btcoex_scheme {
  28. ATH_BTCOEX_CFG_NONE,
  29. ATH_BTCOEX_CFG_2WIRE,
  30. ATH_BTCOEX_CFG_3WIRE,
  31. };
  32. enum ath_stomp_type {
  33. ATH_BTCOEX_NO_STOMP,
  34. ATH_BTCOEX_STOMP_ALL,
  35. ATH_BTCOEX_STOMP_LOW,
  36. ATH_BTCOEX_STOMP_NONE
  37. };
  38. enum ath_bt_mode {
  39. ATH_BT_COEX_MODE_LEGACY, /* legacy rx_clear mode */
  40. ATH_BT_COEX_MODE_UNSLOTTED, /* untimed/unslotted mode */
  41. ATH_BT_COEX_MODE_SLOTTED, /* slotted mode */
  42. ATH_BT_COEX_MODE_DISALBED, /* coexistence disabled */
  43. };
  44. struct ath_btcoex_config {
  45. u8 bt_time_extend;
  46. bool bt_txstate_extend;
  47. bool bt_txframe_extend;
  48. enum ath_bt_mode bt_mode; /* coexistence mode */
  49. bool bt_quiet_collision;
  50. bool bt_rxclear_polarity; /* invert rx_clear as WLAN_ACTIVE*/
  51. u8 bt_priority_time;
  52. u8 bt_first_slot_time;
  53. bool bt_hold_rx_clear;
  54. };
  55. struct ath_btcoex_info {
  56. enum ath_btcoex_scheme btcoex_scheme;
  57. u8 wlanactive_gpio;
  58. u8 btactive_gpio;
  59. u8 btpriority_gpio;
  60. u8 bt_duty_cycle; /* BT duty cycle in percentage */
  61. int bt_stomp_type; /* Types of BT stomping */
  62. u32 bt_coex_mode; /* Register setting for AR_BT_COEX_MODE */
  63. u32 bt_coex_weights; /* Register setting for AR_BT_COEX_WEIGHT */
  64. u32 bt_coex_mode2; /* Register setting for AR_BT_COEX_MODE2 */
  65. };
  66. bool ath_btcoex_supported(u16 subsysid);
  67. void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah);
  68. void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah);
  69. void ath9k_hw_init_btcoex_hw_info(struct ath_hw *ah, int qnum);
  70. void ath9k_hw_btcoex_enable(struct ath_hw *ah);
  71. void ath9k_hw_btcoex_disable(struct ath_hw *ah);
  72. #endif