btcoex.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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 ATH_BTCOEX_RX_WAIT_TIME 100
  33. #define ATH_BTCOEX_STOMP_FTP_THRESH 5
  34. #define ATH_BTCOEX_HT20_MAX_TXPOWER 0x14
  35. #define ATH_BTCOEX_HT40_MAX_TXPOWER 0x10
  36. #define AR9300_NUM_BT_WEIGHTS 4
  37. #define AR9300_NUM_WLAN_WEIGHTS 4
  38. #define ATH_AIC_MAX_BT_CHANNEL 79
  39. /* Defines the BT AR_BT_COEX_WGHT used */
  40. enum ath_stomp_type {
  41. ATH_BTCOEX_STOMP_ALL,
  42. ATH_BTCOEX_STOMP_LOW,
  43. ATH_BTCOEX_STOMP_NONE,
  44. ATH_BTCOEX_STOMP_LOW_FTP,
  45. ATH_BTCOEX_STOMP_AUDIO,
  46. ATH_BTCOEX_STOMP_MAX
  47. };
  48. enum ath_btcoex_scheme {
  49. ATH_BTCOEX_CFG_NONE,
  50. ATH_BTCOEX_CFG_2WIRE,
  51. ATH_BTCOEX_CFG_3WIRE,
  52. ATH_BTCOEX_CFG_MCI,
  53. };
  54. struct ath9k_hw_mci {
  55. u32 raw_intr;
  56. u32 rx_msg_intr;
  57. u32 cont_status;
  58. u32 gpm_addr;
  59. u32 gpm_len;
  60. u32 gpm_idx;
  61. u32 sched_addr;
  62. u32 wlan_channels[4];
  63. u32 wlan_cal_seq;
  64. u32 wlan_cal_done;
  65. u32 config;
  66. u8 *gpm_buf;
  67. bool ready;
  68. bool update_2g5g;
  69. bool is_2g;
  70. bool query_bt;
  71. bool unhalt_bt_gpm; /* need send UNHALT */
  72. bool halted_bt_gpm; /* HALT sent */
  73. bool need_flush_btinfo;
  74. bool bt_version_known;
  75. bool wlan_channels_update;
  76. u8 wlan_ver_major;
  77. u8 wlan_ver_minor;
  78. u8 bt_ver_major;
  79. u8 bt_ver_minor;
  80. u8 bt_state;
  81. u8 stomp_ftp;
  82. bool concur_tx;
  83. u32 last_recovery;
  84. };
  85. struct ath9k_hw_aic {
  86. bool aic_enabled;
  87. u8 aic_cal_state;
  88. u8 aic_caled_chan;
  89. u32 aic_sram[ATH_AIC_MAX_BT_CHANNEL];
  90. u32 aic_cal_start_time;
  91. };
  92. struct ath_btcoex_hw {
  93. enum ath_btcoex_scheme scheme;
  94. struct ath9k_hw_mci mci;
  95. struct ath9k_hw_aic aic;
  96. bool enabled;
  97. u8 wlanactive_gpio;
  98. u8 btactive_gpio;
  99. u8 btpriority_gpio;
  100. u32 bt_coex_mode; /* Register setting for AR_BT_COEX_MODE */
  101. u32 bt_coex_weights; /* Register setting for AR_BT_COEX_WEIGHT */
  102. u32 bt_coex_mode2; /* Register setting for AR_BT_COEX_MODE2 */
  103. u32 bt_weight[AR9300_NUM_BT_WEIGHTS];
  104. u32 wlan_weight[AR9300_NUM_WLAN_WEIGHTS];
  105. u8 tx_prio[ATH_BTCOEX_STOMP_MAX];
  106. };
  107. void ath9k_hw_btcoex_init_scheme(struct ath_hw *ah);
  108. void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah);
  109. void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah);
  110. void ath9k_hw_btcoex_init_mci(struct ath_hw *ah);
  111. void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum);
  112. void ath9k_hw_btcoex_set_weight(struct ath_hw *ah,
  113. u32 bt_weight,
  114. u32 wlan_weight,
  115. enum ath_stomp_type stomp_type);
  116. void ath9k_hw_btcoex_disable(struct ath_hw *ah);
  117. void ath9k_hw_btcoex_bt_stomp(struct ath_hw *ah,
  118. enum ath_stomp_type stomp_type);
  119. void ath9k_hw_btcoex_set_concur_txprio(struct ath_hw *ah, u8 *stomp_txprio);
  120. #endif