Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 1 | /* |
Sujith Manoharan | 5b68138 | 2011-05-17 13:36:18 +0530 | [diff] [blame] | 2 | * Copyright (c) 2009-2011 Atheros Communications Inc. |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 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 | |
Paul Gortmaker | ee40fa0 | 2011-05-27 16:14:23 -0400 | [diff] [blame] | 17 | #include <linux/export.h> |
Miaoqing Pan | c8770bc | 2016-03-07 10:38:18 +0800 | [diff] [blame] | 18 | #include <linux/types.h> |
| 19 | #include <linux/ath9k_platform.h> |
Luis R. Rodriguez | cfe8cba | 2009-09-13 23:39:31 -0700 | [diff] [blame] | 20 | #include "hw.h" |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 21 | |
Luis R. Rodriguez | 8b4fc5b | 2009-09-09 15:24:02 -0700 | [diff] [blame] | 22 | enum ath_bt_mode { |
| 23 | ATH_BT_COEX_MODE_LEGACY, /* legacy rx_clear mode */ |
| 24 | ATH_BT_COEX_MODE_UNSLOTTED, /* untimed/unslotted mode */ |
| 25 | ATH_BT_COEX_MODE_SLOTTED, /* slotted mode */ |
Mohammed Shafi Shajakhan | 32b1076 | 2011-11-30 10:41:29 +0530 | [diff] [blame] | 26 | ATH_BT_COEX_MODE_DISABLED, /* coexistence disabled */ |
Luis R. Rodriguez | 8b4fc5b | 2009-09-09 15:24:02 -0700 | [diff] [blame] | 27 | }; |
| 28 | |
| 29 | struct ath_btcoex_config { |
| 30 | u8 bt_time_extend; |
| 31 | bool bt_txstate_extend; |
| 32 | bool bt_txframe_extend; |
| 33 | enum ath_bt_mode bt_mode; /* coexistence mode */ |
| 34 | bool bt_quiet_collision; |
| 35 | bool bt_rxclear_polarity; /* invert rx_clear as WLAN_ACTIVE*/ |
| 36 | u8 bt_priority_time; |
| 37 | u8 bt_first_slot_time; |
| 38 | bool bt_hold_rx_clear; |
Miaoqing Pan | c7212b7 | 2016-03-07 10:38:21 +0800 | [diff] [blame] | 39 | u8 wl_active_time; |
| 40 | u8 wl_qc_time; |
Luis R. Rodriguez | 8b4fc5b | 2009-09-09 15:24:02 -0700 | [diff] [blame] | 41 | }; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 42 | |
Rajkumar Manoharan | 54f10b0 | 2011-11-12 19:35:47 +0530 | [diff] [blame] | 43 | static const u32 ar9003_wlan_weights[ATH_BTCOEX_STOMP_MAX] |
| 44 | [AR9300_NUM_WLAN_WEIGHTS] = { |
| 45 | { 0xfffffff0, 0xfffffff0, 0xfffffff0, 0xfffffff0 }, /* STOMP_ALL */ |
| 46 | { 0x88888880, 0x88888880, 0x88888880, 0x88888880 }, /* STOMP_LOW */ |
| 47 | { 0x00000000, 0x00000000, 0x00000000, 0x00000000 }, /* STOMP_NONE */ |
| 48 | }; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 49 | |
Sujith Manoharan | 5160b46 | 2012-09-28 11:13:51 +0530 | [diff] [blame] | 50 | static const u32 mci_wlan_weights[ATH_BTCOEX_STOMP_MAX] |
| 51 | [AR9300_NUM_WLAN_WEIGHTS] = { |
Rajkumar Manoharan | 8227bf4 | 2011-11-12 19:35:48 +0530 | [diff] [blame] | 52 | { 0x01017d01, 0x41414101, 0x41414101, 0x41414141 }, /* STOMP_ALL */ |
| 53 | { 0x01017d01, 0x3b3b3b01, 0x3b3b3b01, 0x3b3b3b3b }, /* STOMP_LOW */ |
| 54 | { 0x01017d01, 0x01010101, 0x01010101, 0x01010101 }, /* STOMP_NONE */ |
| 55 | { 0x01017d01, 0x013b0101, 0x3b3b0101, 0x3b3b013b }, /* STOMP_LOW_FTP */ |
Rajkumar Manoharan | 2884561 | 2012-11-20 18:30:01 +0530 | [diff] [blame] | 56 | { 0xffffff01, 0xffffffff, 0xffffff01, 0xffffffff }, /* STOMP_AUDIO */ |
Rajkumar Manoharan | 8227bf4 | 2011-11-12 19:35:48 +0530 | [diff] [blame] | 57 | }; |
| 58 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 59 | void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum) |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 60 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 61 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Luis R. Rodriguez | 8b4fc5b | 2009-09-09 15:24:02 -0700 | [diff] [blame] | 62 | const struct ath_btcoex_config ath_bt_config = { |
| 63 | .bt_time_extend = 0, |
| 64 | .bt_txstate_extend = true, |
| 65 | .bt_txframe_extend = true, |
| 66 | .bt_mode = ATH_BT_COEX_MODE_SLOTTED, |
| 67 | .bt_quiet_collision = true, |
| 68 | .bt_rxclear_polarity = true, |
| 69 | .bt_priority_time = 2, |
| 70 | .bt_first_slot_time = 5, |
| 71 | .bt_hold_rx_clear = true, |
Miaoqing Pan | c7212b7 | 2016-03-07 10:38:21 +0800 | [diff] [blame] | 72 | .wl_active_time = 0x20, |
| 73 | .wl_qc_time = 0x20, |
Luis R. Rodriguez | 8b4fc5b | 2009-09-09 15:24:02 -0700 | [diff] [blame] | 74 | }; |
Vivek Natarajan | a6ef530 | 2011-04-26 10:39:53 +0530 | [diff] [blame] | 75 | bool rxclear_polarity = ath_bt_config.bt_rxclear_polarity; |
Miaoqing Pan | c7212b7 | 2016-03-07 10:38:21 +0800 | [diff] [blame] | 76 | u8 time_extend = ath_bt_config.bt_time_extend; |
| 77 | u8 first_slot_time = ath_bt_config.bt_first_slot_time; |
Vivek Natarajan | a6ef530 | 2011-04-26 10:39:53 +0530 | [diff] [blame] | 78 | |
| 79 | if (AR_SREV_9300_20_OR_LATER(ah)) |
| 80 | rxclear_polarity = !ath_bt_config.bt_rxclear_polarity; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 81 | |
Miaoqing Pan | c7212b7 | 2016-03-07 10:38:21 +0800 | [diff] [blame] | 82 | if (AR_SREV_SOC(ah)) { |
| 83 | first_slot_time = 0x1d; |
| 84 | time_extend = 0xa; |
| 85 | |
| 86 | btcoex_hw->bt_coex_mode3 = |
| 87 | SM(ath_bt_config.wl_active_time, AR_BT_WL_ACTIVE_TIME) | |
| 88 | SM(ath_bt_config.wl_qc_time, AR_BT_WL_QC_TIME); |
| 89 | |
| 90 | btcoex_hw->bt_coex_mode2 = |
| 91 | AR_BT_PROTECT_BT_AFTER_WAKEUP | |
| 92 | AR_BT_PHY_ERR_BT_COLL_ENABLE; |
| 93 | } |
| 94 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 95 | btcoex_hw->bt_coex_mode = |
| 96 | (btcoex_hw->bt_coex_mode & AR_BT_QCU_THRESH) | |
Miaoqing Pan | c7212b7 | 2016-03-07 10:38:21 +0800 | [diff] [blame] | 97 | SM(time_extend, AR_BT_TIME_EXTEND) | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 98 | SM(ath_bt_config.bt_txstate_extend, AR_BT_TXSTATE_EXTEND) | |
| 99 | SM(ath_bt_config.bt_txframe_extend, AR_BT_TX_FRAME_EXTEND) | |
| 100 | SM(ath_bt_config.bt_mode, AR_BT_MODE) | |
| 101 | SM(ath_bt_config.bt_quiet_collision, AR_BT_QUIET) | |
Vivek Natarajan | a6ef530 | 2011-04-26 10:39:53 +0530 | [diff] [blame] | 102 | SM(rxclear_polarity, AR_BT_RX_CLEAR_POLARITY) | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 103 | SM(ath_bt_config.bt_priority_time, AR_BT_PRIORITY_TIME) | |
Miaoqing Pan | c7212b7 | 2016-03-07 10:38:21 +0800 | [diff] [blame] | 104 | SM(first_slot_time, AR_BT_FIRST_SLOT_TIME) | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 105 | SM(qnum, AR_BT_QCU_THRESH); |
| 106 | |
Miaoqing Pan | c7212b7 | 2016-03-07 10:38:21 +0800 | [diff] [blame] | 107 | btcoex_hw->bt_coex_mode2 |= |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 108 | SM(ath_bt_config.bt_hold_rx_clear, AR_BT_HOLD_RX_CLEAR) | |
| 109 | SM(ATH_BTCOEX_BMISS_THRESH, AR_BT_BCN_MISS_THRESH) | |
| 110 | AR_BT_DISABLE_BT_ANT; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 111 | } |
Luis R. Rodriguez | 7322fd1 | 2009-09-23 23:07:00 -0400 | [diff] [blame] | 112 | EXPORT_SYMBOL(ath9k_hw_init_btcoex_hw); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 113 | |
Miaoqing Pan | c8770bc | 2016-03-07 10:38:18 +0800 | [diff] [blame] | 114 | static void ath9k_hw_btcoex_pin_init(struct ath_hw *ah, u8 wlanactive_gpio, |
| 115 | u8 btactive_gpio, u8 btpriority_gpio) |
| 116 | { |
| 117 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
| 118 | struct ath9k_platform_data *pdata = ah->dev->platform_data; |
| 119 | |
| 120 | if (btcoex_hw->scheme != ATH_BTCOEX_CFG_2WIRE && |
| 121 | btcoex_hw->scheme != ATH_BTCOEX_CFG_3WIRE) |
| 122 | return; |
| 123 | |
| 124 | /* bt priority GPIO will be ignored by 2 wire scheme */ |
| 125 | if (pdata && (pdata->bt_active_pin || pdata->bt_priority_pin || |
| 126 | pdata->wlan_active_pin)) { |
| 127 | btcoex_hw->btactive_gpio = pdata->bt_active_pin; |
| 128 | btcoex_hw->wlanactive_gpio = pdata->wlan_active_pin; |
| 129 | btcoex_hw->btpriority_gpio = pdata->bt_priority_pin; |
| 130 | } else { |
| 131 | btcoex_hw->btactive_gpio = btactive_gpio; |
| 132 | btcoex_hw->wlanactive_gpio = wlanactive_gpio; |
| 133 | btcoex_hw->btpriority_gpio = btpriority_gpio; |
| 134 | } |
| 135 | } |
| 136 | |
Sujith Manoharan | d68475d | 2012-02-22 12:40:49 +0530 | [diff] [blame] | 137 | void ath9k_hw_btcoex_init_scheme(struct ath_hw *ah) |
| 138 | { |
| 139 | struct ath_common *common = ath9k_hw_common(ah); |
| 140 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
| 141 | |
| 142 | /* |
| 143 | * Check if BTCOEX is globally disabled. |
| 144 | */ |
| 145 | if (!common->btcoex_enabled) { |
| 146 | btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE; |
| 147 | return; |
| 148 | } |
| 149 | |
Sujith Manoharan | e1ff147 | 2015-03-01 11:53:46 +0530 | [diff] [blame] | 150 | if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI) { |
| 151 | btcoex_hw->scheme = ATH_BTCOEX_CFG_MCI; |
| 152 | } else if (AR_SREV_9300_20_OR_LATER(ah)) { |
Sujith Manoharan | d68475d | 2012-02-22 12:40:49 +0530 | [diff] [blame] | 153 | btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE; |
Sujith Manoharan | d68475d | 2012-02-22 12:40:49 +0530 | [diff] [blame] | 154 | |
Miaoqing Pan | c8770bc | 2016-03-07 10:38:18 +0800 | [diff] [blame] | 155 | ath9k_hw_btcoex_pin_init(ah, ATH_WLANACTIVE_GPIO_9300, |
| 156 | ATH_BTACTIVE_GPIO_9300, |
| 157 | ATH_BTPRIORITY_GPIO_9300); |
| 158 | } else if (AR_SREV_9280_20_OR_LATER(ah)) { |
| 159 | if (AR_SREV_9285(ah)) |
Sujith Manoharan | d68475d | 2012-02-22 12:40:49 +0530 | [diff] [blame] | 160 | btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE; |
Miaoqing Pan | c8770bc | 2016-03-07 10:38:18 +0800 | [diff] [blame] | 161 | else |
Sujith Manoharan | d68475d | 2012-02-22 12:40:49 +0530 | [diff] [blame] | 162 | btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE; |
Miaoqing Pan | c8770bc | 2016-03-07 10:38:18 +0800 | [diff] [blame] | 163 | |
| 164 | ath9k_hw_btcoex_pin_init(ah, ATH_WLANACTIVE_GPIO_9280, |
| 165 | ATH_BTACTIVE_GPIO_9280, |
| 166 | ATH_BTPRIORITY_GPIO_9285); |
Sujith Manoharan | d68475d | 2012-02-22 12:40:49 +0530 | [diff] [blame] | 167 | } |
| 168 | } |
| 169 | EXPORT_SYMBOL(ath9k_hw_btcoex_init_scheme); |
| 170 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 171 | void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah) |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 172 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 173 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 174 | |
| 175 | /* connect bt_active to baseband */ |
| 176 | REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL, |
| 177 | (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF | |
| 178 | AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF)); |
| 179 | |
| 180 | REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, |
| 181 | AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB); |
| 182 | |
| 183 | /* Set input mux for bt_active to gpio pin */ |
Miaoqing Pan | dfcf02c | 2016-03-07 10:38:20 +0800 | [diff] [blame] | 184 | if (!AR_SREV_SOC(ah)) |
| 185 | REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1, |
| 186 | AR_GPIO_INPUT_MUX1_BT_ACTIVE, |
| 187 | btcoex_hw->btactive_gpio); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 188 | |
| 189 | /* Configure the desired gpio port for input */ |
Miaoqing Pan | b2d70d4 | 2016-03-07 10:38:15 +0800 | [diff] [blame] | 190 | ath9k_hw_gpio_request_in(ah, btcoex_hw->btactive_gpio, |
| 191 | "ath9k-btactive"); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 192 | } |
Luis R. Rodriguez | 7322fd1 | 2009-09-23 23:07:00 -0400 | [diff] [blame] | 193 | EXPORT_SYMBOL(ath9k_hw_btcoex_init_2wire); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 194 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 195 | void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah) |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 196 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 197 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 198 | |
| 199 | /* btcoex 3-wire */ |
| 200 | REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, |
| 201 | (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB | |
| 202 | AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB)); |
| 203 | |
| 204 | /* Set input mux for bt_prority_async and |
| 205 | * bt_active_async to GPIO pins */ |
Miaoqing Pan | dfcf02c | 2016-03-07 10:38:20 +0800 | [diff] [blame] | 206 | if (!AR_SREV_SOC(ah)) { |
| 207 | REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1, |
| 208 | AR_GPIO_INPUT_MUX1_BT_ACTIVE, |
| 209 | btcoex_hw->btactive_gpio); |
| 210 | REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1, |
| 211 | AR_GPIO_INPUT_MUX1_BT_PRIORITY, |
| 212 | btcoex_hw->btpriority_gpio); |
| 213 | } |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 214 | |
| 215 | /* Configure the desired GPIO ports for input */ |
Miaoqing Pan | b2d70d4 | 2016-03-07 10:38:15 +0800 | [diff] [blame] | 216 | ath9k_hw_gpio_request_in(ah, btcoex_hw->btactive_gpio, |
| 217 | "ath9k-btactive"); |
| 218 | ath9k_hw_gpio_request_in(ah, btcoex_hw->btpriority_gpio, |
| 219 | "ath9k-btpriority"); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 220 | } |
Luis R. Rodriguez | 7322fd1 | 2009-09-23 23:07:00 -0400 | [diff] [blame] | 221 | EXPORT_SYMBOL(ath9k_hw_btcoex_init_3wire); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 222 | |
Miaoqing Pan | db22219 | 2016-03-07 10:38:16 +0800 | [diff] [blame] | 223 | void ath9k_hw_btcoex_deinit(struct ath_hw *ah) |
| 224 | { |
| 225 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
| 226 | |
| 227 | ath9k_hw_gpio_free(ah, btcoex_hw->btactive_gpio); |
| 228 | ath9k_hw_gpio_free(ah, btcoex_hw->btpriority_gpio); |
| 229 | ath9k_hw_gpio_free(ah, btcoex_hw->wlanactive_gpio); |
| 230 | } |
| 231 | EXPORT_SYMBOL(ath9k_hw_btcoex_deinit); |
| 232 | |
Sujith Manoharan | d3c83ac | 2012-02-22 12:40:15 +0530 | [diff] [blame] | 233 | void ath9k_hw_btcoex_init_mci(struct ath_hw *ah) |
| 234 | { |
| 235 | ah->btcoex_hw.mci.ready = false; |
| 236 | ah->btcoex_hw.mci.bt_state = 0; |
| 237 | ah->btcoex_hw.mci.bt_ver_major = 3; |
| 238 | ah->btcoex_hw.mci.bt_ver_minor = 0; |
| 239 | ah->btcoex_hw.mci.bt_version_known = false; |
| 240 | ah->btcoex_hw.mci.update_2g5g = true; |
| 241 | ah->btcoex_hw.mci.is_2g = true; |
| 242 | ah->btcoex_hw.mci.wlan_channels_update = false; |
| 243 | ah->btcoex_hw.mci.wlan_channels[0] = 0x00000000; |
| 244 | ah->btcoex_hw.mci.wlan_channels[1] = 0xffffffff; |
| 245 | ah->btcoex_hw.mci.wlan_channels[2] = 0xffffffff; |
| 246 | ah->btcoex_hw.mci.wlan_channels[3] = 0x7fffffff; |
| 247 | ah->btcoex_hw.mci.query_bt = true; |
| 248 | ah->btcoex_hw.mci.unhalt_bt_gpm = true; |
| 249 | ah->btcoex_hw.mci.halted_bt_gpm = false; |
| 250 | ah->btcoex_hw.mci.need_flush_btinfo = false; |
| 251 | ah->btcoex_hw.mci.wlan_cal_seq = 0; |
| 252 | ah->btcoex_hw.mci.wlan_cal_done = 0; |
Rajkumar Manoharan | 3c5c9d0 | 2012-10-15 15:29:53 +0530 | [diff] [blame] | 253 | ah->btcoex_hw.mci.config = (AR_SREV_9462(ah)) ? 0x2201 : 0xa4c1; |
Sujith Manoharan | d3c83ac | 2012-02-22 12:40:15 +0530 | [diff] [blame] | 254 | } |
| 255 | EXPORT_SYMBOL(ath9k_hw_btcoex_init_mci); |
| 256 | |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 257 | static void ath9k_hw_btcoex_enable_2wire(struct ath_hw *ah) |
| 258 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 259 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 260 | |
| 261 | /* Configure the desired GPIO port for TX_FRAME output */ |
Miaoqing Pan | b2d70d4 | 2016-03-07 10:38:15 +0800 | [diff] [blame] | 262 | ath9k_hw_gpio_request_out(ah, btcoex_hw->wlanactive_gpio, |
| 263 | "ath9k-wlanactive", |
| 264 | AR_GPIO_OUTPUT_MUX_AS_TX_FRAME); |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Sujith Manoharan | 5160b46 | 2012-09-28 11:13:51 +0530 | [diff] [blame] | 267 | /* |
| 268 | * For AR9002, bt_weight/wlan_weight are used. |
| 269 | * For AR9003 and above, stomp_type is used. |
| 270 | */ |
Luis R. Rodriguez | 5e19729 | 2009-09-09 15:15:55 -0700 | [diff] [blame] | 271 | void ath9k_hw_btcoex_set_weight(struct ath_hw *ah, |
| 272 | u32 bt_weight, |
Sujith Manoharan | 5160b46 | 2012-09-28 11:13:51 +0530 | [diff] [blame] | 273 | u32 wlan_weight, |
| 274 | enum ath_stomp_type stomp_type) |
Luis R. Rodriguez | 5e19729 | 2009-09-09 15:15:55 -0700 | [diff] [blame] | 275 | { |
| 276 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Rajkumar Manoharan | db60428 | 2012-10-12 14:07:23 +0530 | [diff] [blame] | 277 | struct ath9k_hw_mci *mci_hw = &ah->btcoex_hw.mci; |
| 278 | u8 txprio_shift[] = { 24, 16, 16, 0 }; /* tx priority weight */ |
| 279 | bool concur_tx = (mci_hw->concur_tx && btcoex_hw->tx_prio[stomp_type]); |
| 280 | const u32 *weight = ar9003_wlan_weights[stomp_type]; |
| 281 | int i; |
Luis R. Rodriguez | 5e19729 | 2009-09-09 15:15:55 -0700 | [diff] [blame] | 282 | |
Rajkumar Manoharan | db60428 | 2012-10-12 14:07:23 +0530 | [diff] [blame] | 283 | if (!AR_SREV_9300_20_OR_LATER(ah)) { |
Sujith Manoharan | 5160b46 | 2012-09-28 11:13:51 +0530 | [diff] [blame] | 284 | btcoex_hw->bt_coex_weights = |
| 285 | SM(bt_weight, AR_BTCOEX_BT_WGHT) | |
| 286 | SM(wlan_weight, AR_BTCOEX_WL_WGHT); |
Rajkumar Manoharan | db60428 | 2012-10-12 14:07:23 +0530 | [diff] [blame] | 287 | return; |
Sujith Manoharan | 5160b46 | 2012-09-28 11:13:51 +0530 | [diff] [blame] | 288 | } |
Rajkumar Manoharan | db60428 | 2012-10-12 14:07:23 +0530 | [diff] [blame] | 289 | |
| 290 | if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) { |
| 291 | enum ath_stomp_type stype = |
| 292 | ((stomp_type == ATH_BTCOEX_STOMP_LOW) && |
| 293 | btcoex_hw->mci.stomp_ftp) ? |
| 294 | ATH_BTCOEX_STOMP_LOW_FTP : stomp_type; |
| 295 | weight = mci_wlan_weights[stype]; |
| 296 | } |
| 297 | |
| 298 | for (i = 0; i < AR9300_NUM_WLAN_WEIGHTS; i++) { |
| 299 | btcoex_hw->bt_weight[i] = AR9300_BT_WGHT; |
| 300 | btcoex_hw->wlan_weight[i] = weight[i]; |
| 301 | if (concur_tx && i) { |
| 302 | btcoex_hw->wlan_weight[i] &= |
| 303 | ~(0xff << txprio_shift[i-1]); |
| 304 | btcoex_hw->wlan_weight[i] |= |
| 305 | (btcoex_hw->tx_prio[stomp_type] << |
| 306 | txprio_shift[i-1]); |
| 307 | } |
| 308 | } |
Miaoqing Pan | dfcf02c | 2016-03-07 10:38:20 +0800 | [diff] [blame] | 309 | |
Rajkumar Manoharan | db60428 | 2012-10-12 14:07:23 +0530 | [diff] [blame] | 310 | /* Last WLAN weight has to be adjusted wrt tx priority */ |
| 311 | if (concur_tx) { |
| 312 | btcoex_hw->wlan_weight[i-1] &= ~(0xff << txprio_shift[i-1]); |
| 313 | btcoex_hw->wlan_weight[i-1] |= (btcoex_hw->tx_prio[stomp_type] |
| 314 | << txprio_shift[i-1]); |
| 315 | } |
Luis R. Rodriguez | 5e19729 | 2009-09-09 15:15:55 -0700 | [diff] [blame] | 316 | } |
Luis R. Rodriguez | 7322fd1 | 2009-09-23 23:07:00 -0400 | [diff] [blame] | 317 | EXPORT_SYMBOL(ath9k_hw_btcoex_set_weight); |
Luis R. Rodriguez | 5e19729 | 2009-09-09 15:15:55 -0700 | [diff] [blame] | 318 | |
Vivek Natarajan | a6ef530 | 2011-04-26 10:39:53 +0530 | [diff] [blame] | 319 | |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 320 | static void ath9k_hw_btcoex_enable_3wire(struct ath_hw *ah) |
| 321 | { |
Rajkumar Manoharan | 54f10b0 | 2011-11-12 19:35:47 +0530 | [diff] [blame] | 322 | struct ath_btcoex_hw *btcoex = &ah->btcoex_hw; |
Vivek Natarajan | 21cb987 | 2010-08-18 19:57:49 +0530 | [diff] [blame] | 323 | u32 val; |
Rajkumar Manoharan | 54f10b0 | 2011-11-12 19:35:47 +0530 | [diff] [blame] | 324 | int i; |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 325 | |
| 326 | /* |
| 327 | * Program coex mode and weight registers to |
| 328 | * enable coex 3-wire |
| 329 | */ |
Miaoqing Pan | c7212b7 | 2016-03-07 10:38:21 +0800 | [diff] [blame] | 330 | if (AR_SREV_SOC(ah)) |
| 331 | REG_CLR_BIT(ah, AR_BT_COEX_MODE2, AR_BT_PHY_ERR_BT_COLL_ENABLE); |
| 332 | |
Rajkumar Manoharan | 54f10b0 | 2011-11-12 19:35:47 +0530 | [diff] [blame] | 333 | REG_WRITE(ah, AR_BT_COEX_MODE, btcoex->bt_coex_mode); |
| 334 | REG_WRITE(ah, AR_BT_COEX_MODE2, btcoex->bt_coex_mode2); |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 335 | |
Miaoqing Pan | c7212b7 | 2016-03-07 10:38:21 +0800 | [diff] [blame] | 336 | if (AR_SREV_SOC(ah)) |
| 337 | REG_WRITE(ah, AR_BT_COEX_MODE3, btcoex->bt_coex_mode3); |
| 338 | |
Vivek Natarajan | a6ef530 | 2011-04-26 10:39:53 +0530 | [diff] [blame] | 339 | if (AR_SREV_9300_20_OR_LATER(ah)) { |
Rajkumar Manoharan | 54f10b0 | 2011-11-12 19:35:47 +0530 | [diff] [blame] | 340 | REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS0, btcoex->wlan_weight[0]); |
| 341 | REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS1, btcoex->wlan_weight[1]); |
| 342 | for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++) |
| 343 | REG_WRITE(ah, AR_BT_COEX_BT_WEIGHTS(i), |
| 344 | btcoex->bt_weight[i]); |
Vivek Natarajan | a6ef530 | 2011-04-26 10:39:53 +0530 | [diff] [blame] | 345 | } else |
Rajkumar Manoharan | 54f10b0 | 2011-11-12 19:35:47 +0530 | [diff] [blame] | 346 | REG_WRITE(ah, AR_BT_COEX_WEIGHT, btcoex->bt_coex_weights); |
Vivek Natarajan | a6ef530 | 2011-04-26 10:39:53 +0530 | [diff] [blame] | 347 | |
Vivek Natarajan | 21cb987 | 2010-08-18 19:57:49 +0530 | [diff] [blame] | 348 | if (AR_SREV_9271(ah)) { |
| 349 | val = REG_READ(ah, 0x50040); |
| 350 | val &= 0xFFFFFEFF; |
| 351 | REG_WRITE(ah, 0x50040, val); |
| 352 | } |
| 353 | |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 354 | REG_RMW_FIELD(ah, AR_QUIET1, AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1); |
| 355 | REG_RMW_FIELD(ah, AR_PCU_MISC, AR_PCU_BT_ANT_PREVENT_RX, 0); |
| 356 | |
Miaoqing Pan | b2d70d4 | 2016-03-07 10:38:15 +0800 | [diff] [blame] | 357 | ath9k_hw_gpio_request_out(ah, btcoex->wlanactive_gpio, |
| 358 | "ath9k-wlanactive", |
| 359 | AR_GPIO_OUTPUT_MUX_AS_RX_CLEAR_EXTERNAL); |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 360 | } |
| 361 | |
Rajkumar Manoharan | 8227bf4 | 2011-11-12 19:35:48 +0530 | [diff] [blame] | 362 | static void ath9k_hw_btcoex_enable_mci(struct ath_hw *ah) |
| 363 | { |
| 364 | struct ath_btcoex_hw *btcoex = &ah->btcoex_hw; |
| 365 | int i; |
| 366 | |
| 367 | for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++) |
| 368 | REG_WRITE(ah, AR_MCI_COEX_WL_WEIGHTS(i), |
| 369 | btcoex->wlan_weight[i]); |
| 370 | |
| 371 | REG_RMW_FIELD(ah, AR_QUIET1, AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1); |
| 372 | btcoex->enabled = true; |
| 373 | } |
| 374 | |
Sujith Manoharan | e1ff147 | 2015-03-01 11:53:46 +0530 | [diff] [blame] | 375 | static void ath9k_hw_btcoex_disable_mci(struct ath_hw *ah) |
| 376 | { |
| 377 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
| 378 | int i; |
| 379 | |
| 380 | ath9k_hw_btcoex_bt_stomp(ah, ATH_BTCOEX_STOMP_NONE); |
| 381 | |
| 382 | for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++) |
| 383 | REG_WRITE(ah, AR_MCI_COEX_WL_WEIGHTS(i), |
| 384 | btcoex_hw->wlan_weight[i]); |
| 385 | } |
| 386 | |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 387 | void ath9k_hw_btcoex_enable(struct ath_hw *ah) |
| 388 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 389 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 390 | |
Felix Fietkau | 8a30930 | 2011-12-17 16:47:56 +0100 | [diff] [blame] | 391 | switch (ath9k_hw_get_btcoex_scheme(ah)) { |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 392 | case ATH_BTCOEX_CFG_NONE: |
Felix Fietkau | 8a30930 | 2011-12-17 16:47:56 +0100 | [diff] [blame] | 393 | return; |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 394 | case ATH_BTCOEX_CFG_2WIRE: |
| 395 | ath9k_hw_btcoex_enable_2wire(ah); |
| 396 | break; |
| 397 | case ATH_BTCOEX_CFG_3WIRE: |
| 398 | ath9k_hw_btcoex_enable_3wire(ah); |
| 399 | break; |
Sujith Manoharan | e1ff147 | 2015-03-01 11:53:46 +0530 | [diff] [blame] | 400 | case ATH_BTCOEX_CFG_MCI: |
| 401 | ath9k_hw_btcoex_enable_mci(ah); |
| 402 | break; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 403 | } |
| 404 | |
Miaoqing Pan | dfcf02c | 2016-03-07 10:38:20 +0800 | [diff] [blame] | 405 | if (ath9k_hw_get_btcoex_scheme(ah) != ATH_BTCOEX_CFG_MCI && |
| 406 | !AR_SREV_SOC(ah)) { |
Sujith Manoharan | e1ff147 | 2015-03-01 11:53:46 +0530 | [diff] [blame] | 407 | REG_RMW(ah, AR_GPIO_PDPU, |
| 408 | (0x2 << (btcoex_hw->btactive_gpio * 2)), |
| 409 | (0x3 << (btcoex_hw->btactive_gpio * 2))); |
| 410 | } |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 411 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 412 | ah->btcoex_hw.enabled = true; |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 413 | } |
Luis R. Rodriguez | 7322fd1 | 2009-09-23 23:07:00 -0400 | [diff] [blame] | 414 | EXPORT_SYMBOL(ath9k_hw_btcoex_enable); |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 415 | |
| 416 | void ath9k_hw_btcoex_disable(struct ath_hw *ah) |
| 417 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 418 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Rajkumar Manoharan | 54f10b0 | 2011-11-12 19:35:47 +0530 | [diff] [blame] | 419 | int i; |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 420 | |
Rajkumar Manoharan | 8227bf4 | 2011-11-12 19:35:48 +0530 | [diff] [blame] | 421 | btcoex_hw->enabled = false; |
Sujith Manoharan | e1ff147 | 2015-03-01 11:53:46 +0530 | [diff] [blame] | 422 | |
| 423 | if (ath9k_hw_get_btcoex_scheme(ah) == ATH_BTCOEX_CFG_MCI) { |
| 424 | ath9k_hw_btcoex_disable_mci(ah); |
Rajkumar Manoharan | 0466e25 | 2012-04-19 19:13:52 +0530 | [diff] [blame] | 425 | return; |
Rajkumar Manoharan | 8227bf4 | 2011-11-12 19:35:48 +0530 | [diff] [blame] | 426 | } |
Sujith Manoharan | e1ff147 | 2015-03-01 11:53:46 +0530 | [diff] [blame] | 427 | |
Sujith Manoharan | 30b8189 | 2015-03-01 11:53:47 +0530 | [diff] [blame] | 428 | if (!AR_SREV_9300_20_OR_LATER(ah)) |
| 429 | ath9k_hw_set_gpio(ah, btcoex_hw->wlanactive_gpio, 0); |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 430 | |
Miaoqing Pan | b2d70d4 | 2016-03-07 10:38:15 +0800 | [diff] [blame] | 431 | ath9k_hw_gpio_request_out(ah, btcoex_hw->wlanactive_gpio, |
| 432 | NULL, AR_GPIO_OUTPUT_MUX_AS_OUTPUT); |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 433 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 434 | if (btcoex_hw->scheme == ATH_BTCOEX_CFG_3WIRE) { |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 435 | REG_WRITE(ah, AR_BT_COEX_MODE, AR_BT_QUIET | AR_BT_MODE); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 436 | REG_WRITE(ah, AR_BT_COEX_MODE2, 0); |
Vivek Natarajan | a6ef530 | 2011-04-26 10:39:53 +0530 | [diff] [blame] | 437 | |
| 438 | if (AR_SREV_9300_20_OR_LATER(ah)) { |
| 439 | REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS0, 0); |
| 440 | REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS1, 0); |
Rajkumar Manoharan | 54f10b0 | 2011-11-12 19:35:47 +0530 | [diff] [blame] | 441 | for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++) |
| 442 | REG_WRITE(ah, AR_BT_COEX_BT_WEIGHTS(i), 0); |
Vivek Natarajan | a6ef530 | 2011-04-26 10:39:53 +0530 | [diff] [blame] | 443 | } else |
| 444 | REG_WRITE(ah, AR_BT_COEX_WEIGHT, 0); |
| 445 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 446 | } |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 447 | } |
Luis R. Rodriguez | 7322fd1 | 2009-09-23 23:07:00 -0400 | [diff] [blame] | 448 | EXPORT_SYMBOL(ath9k_hw_btcoex_disable); |
Vivek Natarajan | 978f78b | 2011-04-26 10:39:52 +0530 | [diff] [blame] | 449 | |
Vivek Natarajan | 978f78b | 2011-04-26 10:39:52 +0530 | [diff] [blame] | 450 | /* |
| 451 | * Configures appropriate weight based on stomp type. |
| 452 | */ |
| 453 | void ath9k_hw_btcoex_bt_stomp(struct ath_hw *ah, |
| 454 | enum ath_stomp_type stomp_type) |
| 455 | { |
| 456 | if (AR_SREV_9300_20_OR_LATER(ah)) { |
Sujith Manoharan | 5160b46 | 2012-09-28 11:13:51 +0530 | [diff] [blame] | 457 | ath9k_hw_btcoex_set_weight(ah, 0, 0, stomp_type); |
Vivek Natarajan | 978f78b | 2011-04-26 10:39:52 +0530 | [diff] [blame] | 458 | return; |
| 459 | } |
| 460 | |
| 461 | switch (stomp_type) { |
| 462 | case ATH_BTCOEX_STOMP_ALL: |
| 463 | ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT, |
Sujith Manoharan | 5160b46 | 2012-09-28 11:13:51 +0530 | [diff] [blame] | 464 | AR_STOMP_ALL_WLAN_WGHT, 0); |
Vivek Natarajan | 978f78b | 2011-04-26 10:39:52 +0530 | [diff] [blame] | 465 | break; |
| 466 | case ATH_BTCOEX_STOMP_LOW: |
| 467 | ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT, |
Sujith Manoharan | 5160b46 | 2012-09-28 11:13:51 +0530 | [diff] [blame] | 468 | AR_STOMP_LOW_WLAN_WGHT, 0); |
Vivek Natarajan | 978f78b | 2011-04-26 10:39:52 +0530 | [diff] [blame] | 469 | break; |
| 470 | case ATH_BTCOEX_STOMP_NONE: |
| 471 | ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT, |
Sujith Manoharan | 5160b46 | 2012-09-28 11:13:51 +0530 | [diff] [blame] | 472 | AR_STOMP_NONE_WLAN_WGHT, 0); |
Vivek Natarajan | 978f78b | 2011-04-26 10:39:52 +0530 | [diff] [blame] | 473 | break; |
| 474 | default: |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 475 | ath_dbg(ath9k_hw_common(ah), BTCOEX, "Invalid Stomptype\n"); |
Vivek Natarajan | 978f78b | 2011-04-26 10:39:52 +0530 | [diff] [blame] | 476 | break; |
| 477 | } |
Vivek Natarajan | 978f78b | 2011-04-26 10:39:52 +0530 | [diff] [blame] | 478 | } |
| 479 | EXPORT_SYMBOL(ath9k_hw_btcoex_bt_stomp); |
Rajkumar Manoharan | db60428 | 2012-10-12 14:07:23 +0530 | [diff] [blame] | 480 | |
| 481 | void ath9k_hw_btcoex_set_concur_txprio(struct ath_hw *ah, u8 *stomp_txprio) |
| 482 | { |
| 483 | struct ath_btcoex_hw *btcoex = &ah->btcoex_hw; |
| 484 | int i; |
| 485 | |
| 486 | for (i = 0; i < ATH_BTCOEX_STOMP_MAX; i++) |
| 487 | btcoex->tx_prio[i] = stomp_txprio[i]; |
| 488 | } |
| 489 | EXPORT_SYMBOL(ath9k_hw_btcoex_set_concur_txprio); |