btcoex.c 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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 "hw.h"
  17. enum ath_bt_mode {
  18. ATH_BT_COEX_MODE_LEGACY, /* legacy rx_clear mode */
  19. ATH_BT_COEX_MODE_UNSLOTTED, /* untimed/unslotted mode */
  20. ATH_BT_COEX_MODE_SLOTTED, /* slotted mode */
  21. ATH_BT_COEX_MODE_DISALBED, /* coexistence disabled */
  22. };
  23. struct ath_btcoex_config {
  24. u8 bt_time_extend;
  25. bool bt_txstate_extend;
  26. bool bt_txframe_extend;
  27. enum ath_bt_mode bt_mode; /* coexistence mode */
  28. bool bt_quiet_collision;
  29. bool bt_rxclear_polarity; /* invert rx_clear as WLAN_ACTIVE*/
  30. u8 bt_priority_time;
  31. u8 bt_first_slot_time;
  32. bool bt_hold_rx_clear;
  33. };
  34. static const u32 ar9003_wlan_weights[ATH_BTCOEX_STOMP_MAX]
  35. [AR9300_NUM_WLAN_WEIGHTS] = {
  36. { 0xfffffff0, 0xfffffff0, 0xfffffff0, 0xfffffff0 }, /* STOMP_ALL */
  37. { 0x88888880, 0x88888880, 0x88888880, 0x88888880 }, /* STOMP_LOW */
  38. { 0x00000000, 0x00000000, 0x00000000, 0x00000000 }, /* STOMP_NONE */
  39. };
  40. static const u32 ar9462_wlan_weights[ATH_BTCOEX_STOMP_MAX]
  41. [AR9300_NUM_WLAN_WEIGHTS] = {
  42. { 0x01017d01, 0x41414101, 0x41414101, 0x41414141 }, /* STOMP_ALL */
  43. { 0x01017d01, 0x3b3b3b01, 0x3b3b3b01, 0x3b3b3b3b }, /* STOMP_LOW */
  44. { 0x01017d01, 0x01010101, 0x01010101, 0x01010101 }, /* STOMP_NONE */
  45. { 0x01017d01, 0x013b0101, 0x3b3b0101, 0x3b3b013b }, /* STOMP_LOW_FTP */
  46. };
  47. void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum)
  48. {
  49. struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
  50. const struct ath_btcoex_config ath_bt_config = {
  51. .bt_time_extend = 0,
  52. .bt_txstate_extend = true,
  53. .bt_txframe_extend = true,
  54. .bt_mode = ATH_BT_COEX_MODE_SLOTTED,
  55. .bt_quiet_collision = true,
  56. .bt_rxclear_polarity = true,
  57. .bt_priority_time = 2,
  58. .bt_first_slot_time = 5,
  59. .bt_hold_rx_clear = true,
  60. };
  61. u32 i, idx;
  62. bool rxclear_polarity = ath_bt_config.bt_rxclear_polarity;
  63. if (AR_SREV_9300_20_OR_LATER(ah))
  64. rxclear_polarity = !ath_bt_config.bt_rxclear_polarity;
  65. btcoex_hw->bt_coex_mode =
  66. (btcoex_hw->bt_coex_mode & AR_BT_QCU_THRESH) |
  67. SM(ath_bt_config.bt_time_extend, AR_BT_TIME_EXTEND) |
  68. SM(ath_bt_config.bt_txstate_extend, AR_BT_TXSTATE_EXTEND) |
  69. SM(ath_bt_config.bt_txframe_extend, AR_BT_TX_FRAME_EXTEND) |
  70. SM(ath_bt_config.bt_mode, AR_BT_MODE) |
  71. SM(ath_bt_config.bt_quiet_collision, AR_BT_QUIET) |
  72. SM(rxclear_polarity, AR_BT_RX_CLEAR_POLARITY) |
  73. SM(ath_bt_config.bt_priority_time, AR_BT_PRIORITY_TIME) |
  74. SM(ath_bt_config.bt_first_slot_time, AR_BT_FIRST_SLOT_TIME) |
  75. SM(qnum, AR_BT_QCU_THRESH);
  76. btcoex_hw->bt_coex_mode2 =
  77. SM(ath_bt_config.bt_hold_rx_clear, AR_BT_HOLD_RX_CLEAR) |
  78. SM(ATH_BTCOEX_BMISS_THRESH, AR_BT_BCN_MISS_THRESH) |
  79. AR_BT_DISABLE_BT_ANT;
  80. for (i = 0; i < 32; i++) {
  81. idx = (debruijn32 << i) >> 27;
  82. ah->hw_gen_timers.gen_timer_index[idx] = i;
  83. }
  84. }
  85. EXPORT_SYMBOL(ath9k_hw_init_btcoex_hw);
  86. void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah)
  87. {
  88. struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
  89. /* connect bt_active to baseband */
  90. REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
  91. (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
  92. AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
  93. REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
  94. AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
  95. /* Set input mux for bt_active to gpio pin */
  96. REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
  97. AR_GPIO_INPUT_MUX1_BT_ACTIVE,
  98. btcoex_hw->btactive_gpio);
  99. /* Configure the desired gpio port for input */
  100. ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btactive_gpio);
  101. }
  102. EXPORT_SYMBOL(ath9k_hw_btcoex_init_2wire);
  103. void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah)
  104. {
  105. struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
  106. /* btcoex 3-wire */
  107. REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
  108. (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB |
  109. AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB));
  110. /* Set input mux for bt_prority_async and
  111. * bt_active_async to GPIO pins */
  112. REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
  113. AR_GPIO_INPUT_MUX1_BT_ACTIVE,
  114. btcoex_hw->btactive_gpio);
  115. REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
  116. AR_GPIO_INPUT_MUX1_BT_PRIORITY,
  117. btcoex_hw->btpriority_gpio);
  118. /* Configure the desired GPIO ports for input */
  119. ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btactive_gpio);
  120. ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btpriority_gpio);
  121. }
  122. EXPORT_SYMBOL(ath9k_hw_btcoex_init_3wire);
  123. static void ath9k_hw_btcoex_enable_2wire(struct ath_hw *ah)
  124. {
  125. struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
  126. /* Configure the desired GPIO port for TX_FRAME output */
  127. ath9k_hw_cfg_output(ah, btcoex_hw->wlanactive_gpio,
  128. AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
  129. }
  130. void ath9k_hw_btcoex_set_weight(struct ath_hw *ah,
  131. u32 bt_weight,
  132. u32 wlan_weight)
  133. {
  134. struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
  135. btcoex_hw->bt_coex_weights = SM(bt_weight, AR_BTCOEX_BT_WGHT) |
  136. SM(wlan_weight, AR_BTCOEX_WL_WGHT);
  137. }
  138. EXPORT_SYMBOL(ath9k_hw_btcoex_set_weight);
  139. static void ath9k_hw_btcoex_enable_3wire(struct ath_hw *ah)
  140. {
  141. struct ath_btcoex_hw *btcoex = &ah->btcoex_hw;
  142. u32 val;
  143. int i;
  144. /*
  145. * Program coex mode and weight registers to
  146. * enable coex 3-wire
  147. */
  148. REG_WRITE(ah, AR_BT_COEX_MODE, btcoex->bt_coex_mode);
  149. REG_WRITE(ah, AR_BT_COEX_MODE2, btcoex->bt_coex_mode2);
  150. if (AR_SREV_9300_20_OR_LATER(ah)) {
  151. REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS0, btcoex->wlan_weight[0]);
  152. REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS1, btcoex->wlan_weight[1]);
  153. for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
  154. REG_WRITE(ah, AR_BT_COEX_BT_WEIGHTS(i),
  155. btcoex->bt_weight[i]);
  156. } else
  157. REG_WRITE(ah, AR_BT_COEX_WEIGHT, btcoex->bt_coex_weights);
  158. if (AR_SREV_9271(ah)) {
  159. val = REG_READ(ah, 0x50040);
  160. val &= 0xFFFFFEFF;
  161. REG_WRITE(ah, 0x50040, val);
  162. }
  163. REG_RMW_FIELD(ah, AR_QUIET1, AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1);
  164. REG_RMW_FIELD(ah, AR_PCU_MISC, AR_PCU_BT_ANT_PREVENT_RX, 0);
  165. ath9k_hw_cfg_output(ah, btcoex->wlanactive_gpio,
  166. AR_GPIO_OUTPUT_MUX_AS_RX_CLEAR_EXTERNAL);
  167. }
  168. static void ath9k_hw_btcoex_enable_mci(struct ath_hw *ah)
  169. {
  170. struct ath_btcoex_hw *btcoex = &ah->btcoex_hw;
  171. int i;
  172. for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
  173. REG_WRITE(ah, AR_MCI_COEX_WL_WEIGHTS(i),
  174. btcoex->wlan_weight[i]);
  175. REG_RMW_FIELD(ah, AR_QUIET1, AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1);
  176. btcoex->enabled = true;
  177. }
  178. void ath9k_hw_btcoex_enable(struct ath_hw *ah)
  179. {
  180. struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
  181. switch (btcoex_hw->scheme) {
  182. case ATH_BTCOEX_CFG_NONE:
  183. break;
  184. case ATH_BTCOEX_CFG_2WIRE:
  185. ath9k_hw_btcoex_enable_2wire(ah);
  186. break;
  187. case ATH_BTCOEX_CFG_3WIRE:
  188. ath9k_hw_btcoex_enable_3wire(ah);
  189. break;
  190. case ATH_BTCOEX_CFG_MCI:
  191. ath9k_hw_btcoex_enable_mci(ah);
  192. return;
  193. }
  194. REG_RMW(ah, AR_GPIO_PDPU,
  195. (0x2 << (btcoex_hw->btactive_gpio * 2)),
  196. (0x3 << (btcoex_hw->btactive_gpio * 2)));
  197. ah->btcoex_hw.enabled = true;
  198. }
  199. EXPORT_SYMBOL(ath9k_hw_btcoex_enable);
  200. void ath9k_hw_btcoex_disable(struct ath_hw *ah)
  201. {
  202. struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
  203. int i;
  204. btcoex_hw->enabled = false;
  205. if (btcoex_hw->scheme == ATH_BTCOEX_CFG_MCI) {
  206. ath9k_hw_btcoex_bt_stomp(ah, ATH_BTCOEX_STOMP_NONE);
  207. for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
  208. REG_WRITE(ah, AR_MCI_COEX_WL_WEIGHTS(i),
  209. btcoex_hw->wlan_weight[i]);
  210. }
  211. ath9k_hw_set_gpio(ah, btcoex_hw->wlanactive_gpio, 0);
  212. ath9k_hw_cfg_output(ah, btcoex_hw->wlanactive_gpio,
  213. AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
  214. if (btcoex_hw->scheme == ATH_BTCOEX_CFG_3WIRE) {
  215. REG_WRITE(ah, AR_BT_COEX_MODE, AR_BT_QUIET | AR_BT_MODE);
  216. REG_WRITE(ah, AR_BT_COEX_MODE2, 0);
  217. if (AR_SREV_9300_20_OR_LATER(ah)) {
  218. REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS0, 0);
  219. REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS1, 0);
  220. for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
  221. REG_WRITE(ah, AR_BT_COEX_BT_WEIGHTS(i), 0);
  222. } else
  223. REG_WRITE(ah, AR_BT_COEX_WEIGHT, 0);
  224. }
  225. }
  226. EXPORT_SYMBOL(ath9k_hw_btcoex_disable);
  227. static void ar9003_btcoex_bt_stomp(struct ath_hw *ah,
  228. enum ath_stomp_type stomp_type)
  229. {
  230. struct ath_btcoex_hw *btcoex = &ah->btcoex_hw;
  231. const u32 *weight = AR_SREV_9462(ah) ? ar9003_wlan_weights[stomp_type] :
  232. ar9462_wlan_weights[stomp_type];
  233. int i;
  234. for (i = 0; i < AR9300_NUM_WLAN_WEIGHTS; i++) {
  235. btcoex->bt_weight[i] = AR9300_BT_WGHT;
  236. btcoex->wlan_weight[i] = weight[i];
  237. }
  238. }
  239. /*
  240. * Configures appropriate weight based on stomp type.
  241. */
  242. void ath9k_hw_btcoex_bt_stomp(struct ath_hw *ah,
  243. enum ath_stomp_type stomp_type)
  244. {
  245. if (AR_SREV_9300_20_OR_LATER(ah)) {
  246. ar9003_btcoex_bt_stomp(ah, stomp_type);
  247. return;
  248. }
  249. switch (stomp_type) {
  250. case ATH_BTCOEX_STOMP_ALL:
  251. ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
  252. AR_STOMP_ALL_WLAN_WGHT);
  253. break;
  254. case ATH_BTCOEX_STOMP_LOW:
  255. ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
  256. AR_STOMP_LOW_WLAN_WGHT);
  257. break;
  258. case ATH_BTCOEX_STOMP_NONE:
  259. ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
  260. AR_STOMP_NONE_WLAN_WGHT);
  261. break;
  262. default:
  263. ath_dbg(ath9k_hw_common(ah), ATH_DBG_BTCOEX,
  264. "Invalid Stomptype\n");
  265. break;
  266. }
  267. }
  268. EXPORT_SYMBOL(ath9k_hw_btcoex_bt_stomp);