Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 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 | |
| 17 | #include "ath9k.h" |
| 18 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 19 | static const struct ath_btcoex_config ath_bt_config = { 0, true, true, |
| 20 | ATH_BT_COEX_MODE_SLOTTED, true, true, 2, 5, true }; |
| 21 | |
Vasanthakumar Thiagarajan | fe12946 | 2009-09-09 15:25:50 +0530 | [diff] [blame] | 22 | static const u16 ath_subsysid_tbl[] = { |
| 23 | AR9280_COEX2WIRE_SUBSYSID, |
| 24 | AT9285_COEX3WIRE_SA_SUBSYSID, |
| 25 | AT9285_COEX3WIRE_DA_SUBSYSID |
| 26 | }; |
| 27 | |
| 28 | /* |
| 29 | * Checks the subsystem id of the device to see if it |
| 30 | * supports btcoex |
| 31 | */ |
| 32 | bool ath_btcoex_supported(u16 subsysid) |
| 33 | { |
| 34 | int i; |
| 35 | |
| 36 | if (!subsysid) |
| 37 | return false; |
| 38 | |
| 39 | for (i = 0; i < ARRAY_SIZE(ath_subsysid_tbl); i++) |
| 40 | if (subsysid == ath_subsysid_tbl[i]) |
| 41 | return true; |
| 42 | |
| 43 | return false; |
| 44 | } |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 45 | |
| 46 | /* |
| 47 | * Detects if there is any priority bt traffic |
| 48 | */ |
| 49 | static void ath_detect_bt_priority(struct ath_softc *sc) |
| 50 | { |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 51 | struct ath_btcoex *btcoex = &sc->btcoex; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 52 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 53 | if (ath9k_hw_gpio_get(sc->sc_ah, sc->btcoex_info.btpriority_gpio)) |
| 54 | btcoex->bt_priority_cnt++; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 55 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 56 | if (time_after(jiffies, btcoex->bt_priority_time + |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 57 | msecs_to_jiffies(ATH_BT_PRIORITY_TIME_THRESHOLD))) { |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 58 | if (btcoex->bt_priority_cnt >= ATH_BT_CNT_THRESHOLD) { |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 59 | DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX, |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 60 | "BT priority traffic detected"); |
| 61 | sc->sc_flags |= SC_OP_BT_PRIORITY_DETECTED; |
| 62 | } else { |
| 63 | sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED; |
| 64 | } |
| 65 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 66 | btcoex->bt_priority_cnt = 0; |
| 67 | btcoex->bt_priority_time = jiffies; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 68 | } |
| 69 | } |
| 70 | |
| 71 | /* |
| 72 | * Configures appropriate weight based on stomp type. |
| 73 | */ |
| 74 | static void ath_btcoex_bt_stomp(struct ath_softc *sc, |
| 75 | struct ath_btcoex_info *btinfo, |
| 76 | int stomp_type) |
| 77 | { |
| 78 | |
| 79 | switch (stomp_type) { |
| 80 | case ATH_BTCOEX_STOMP_ALL: |
| 81 | ath_btcoex_set_weight(btinfo, AR_BT_COEX_WGHT, |
| 82 | AR_STOMP_ALL_WLAN_WGHT); |
| 83 | break; |
| 84 | case ATH_BTCOEX_STOMP_LOW: |
| 85 | ath_btcoex_set_weight(btinfo, AR_BT_COEX_WGHT, |
| 86 | AR_STOMP_LOW_WLAN_WGHT); |
| 87 | break; |
| 88 | case ATH_BTCOEX_STOMP_NONE: |
| 89 | ath_btcoex_set_weight(btinfo, AR_BT_COEX_WGHT, |
| 90 | AR_STOMP_NONE_WLAN_WGHT); |
| 91 | break; |
| 92 | default: |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 93 | DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX, "Invalid Stomptype\n"); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 94 | break; |
| 95 | } |
| 96 | |
| 97 | ath9k_hw_btcoex_enable(sc->sc_ah); |
| 98 | } |
| 99 | |
| 100 | /* |
| 101 | * This is the master bt coex timer which runs for every |
| 102 | * 45ms, bt traffic will be given priority during 55% of this |
| 103 | * period while wlan gets remaining 45% |
| 104 | */ |
| 105 | |
| 106 | static void ath_btcoex_period_timer(unsigned long data) |
| 107 | { |
| 108 | struct ath_softc *sc = (struct ath_softc *) data; |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 109 | struct ath_btcoex *btcoex = &sc->btcoex; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 110 | struct ath_btcoex_info *btinfo = &sc->btcoex_info; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 111 | |
| 112 | ath_detect_bt_priority(sc); |
| 113 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 114 | spin_lock_bh(&btcoex->btcoex_lock); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 115 | |
| 116 | ath_btcoex_bt_stomp(sc, btinfo, btinfo->bt_stomp_type); |
| 117 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 118 | spin_unlock_bh(&btcoex->btcoex_lock); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 119 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 120 | if (btcoex->btcoex_period != btcoex->btcoex_no_stomp) { |
| 121 | if (btcoex->hw_timer_enabled) |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 122 | ath_gen_timer_stop(sc->sc_ah, btinfo->no_stomp_timer); |
| 123 | |
| 124 | ath_gen_timer_start(sc->sc_ah, |
| 125 | btinfo->no_stomp_timer, |
| 126 | (ath9k_hw_gettsf32(sc->sc_ah) + |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 127 | btcoex->btcoex_no_stomp), |
| 128 | btcoex->btcoex_no_stomp * 10); |
| 129 | btcoex->hw_timer_enabled = true; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 130 | } |
| 131 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 132 | mod_timer(&btcoex->period_timer, jiffies + |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 133 | msecs_to_jiffies(ATH_BTCOEX_DEF_BT_PERIOD)); |
| 134 | } |
| 135 | |
| 136 | /* |
| 137 | * Generic tsf based hw timer which configures weight |
| 138 | * registers to time slice between wlan and bt traffic |
| 139 | */ |
| 140 | |
| 141 | static void ath_btcoex_no_stomp_timer(void *arg) |
| 142 | { |
| 143 | struct ath_softc *sc = (struct ath_softc *)arg; |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 144 | struct ath_btcoex *btcoex = &sc->btcoex; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 145 | struct ath_btcoex_info *btinfo = &sc->btcoex_info; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 146 | |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 147 | DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX, "no stomp timer running \n"); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 148 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 149 | spin_lock_bh(&btcoex->btcoex_lock); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 150 | |
| 151 | if (btinfo->bt_stomp_type == ATH_BTCOEX_STOMP_LOW) |
| 152 | ath_btcoex_bt_stomp(sc, btinfo, ATH_BTCOEX_STOMP_NONE); |
| 153 | else if (btinfo->bt_stomp_type == ATH_BTCOEX_STOMP_ALL) |
| 154 | ath_btcoex_bt_stomp(sc, btinfo, ATH_BTCOEX_STOMP_LOW); |
| 155 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 156 | spin_unlock_bh(&btcoex->btcoex_lock); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | static int ath_init_btcoex_info(struct ath_hw *hw, |
| 160 | struct ath_btcoex_info *btcoex_info) |
| 161 | { |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 162 | struct ath_btcoex *btcoex = &hw->ah_sc->btcoex; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 163 | u32 i; |
| 164 | int qnum; |
| 165 | |
| 166 | qnum = ath_tx_get_qnum(hw->ah_sc, ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE); |
| 167 | |
| 168 | btcoex_info->bt_coex_mode = |
| 169 | (btcoex_info->bt_coex_mode & AR_BT_QCU_THRESH) | |
| 170 | SM(ath_bt_config.bt_time_extend, AR_BT_TIME_EXTEND) | |
| 171 | SM(ath_bt_config.bt_txstate_extend, AR_BT_TXSTATE_EXTEND) | |
| 172 | SM(ath_bt_config.bt_txframe_extend, AR_BT_TX_FRAME_EXTEND) | |
| 173 | SM(ath_bt_config.bt_mode, AR_BT_MODE) | |
| 174 | SM(ath_bt_config.bt_quiet_collision, AR_BT_QUIET) | |
| 175 | SM(ath_bt_config.bt_rxclear_polarity, AR_BT_RX_CLEAR_POLARITY) | |
| 176 | SM(ath_bt_config.bt_priority_time, AR_BT_PRIORITY_TIME) | |
| 177 | SM(ath_bt_config.bt_first_slot_time, AR_BT_FIRST_SLOT_TIME) | |
| 178 | SM(qnum, AR_BT_QCU_THRESH); |
| 179 | |
| 180 | btcoex_info->bt_coex_mode2 = |
| 181 | SM(ath_bt_config.bt_hold_rx_clear, AR_BT_HOLD_RX_CLEAR) | |
| 182 | SM(ATH_BTCOEX_BMISS_THRESH, AR_BT_BCN_MISS_THRESH) | |
| 183 | AR_BT_DISABLE_BT_ANT; |
| 184 | |
| 185 | btcoex_info->bt_stomp_type = ATH_BTCOEX_STOMP_LOW; |
| 186 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 187 | btcoex->btcoex_period = ATH_BTCOEX_DEF_BT_PERIOD * 1000; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 188 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 189 | btcoex->btcoex_no_stomp = (100 - ATH_BTCOEX_DEF_DUTY_CYCLE) * |
| 190 | btcoex->btcoex_period / 100; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 191 | |
| 192 | for (i = 0; i < 32; i++) |
| 193 | hw->hw_gen_timers.gen_timer_index[(debruijn32 << i) >> 27] = i; |
| 194 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 195 | setup_timer(&btcoex->period_timer, ath_btcoex_period_timer, |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 196 | (unsigned long) hw->ah_sc); |
| 197 | |
| 198 | btcoex_info->no_stomp_timer = ath_gen_timer_alloc(hw, |
| 199 | ath_btcoex_no_stomp_timer, |
| 200 | ath_btcoex_no_stomp_timer, |
| 201 | (void *)hw->ah_sc, AR_FIRST_NDP_TIMER); |
| 202 | |
| 203 | if (btcoex_info->no_stomp_timer == NULL) |
| 204 | return -ENOMEM; |
| 205 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 206 | spin_lock_init(&btcoex->btcoex_lock); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | int ath9k_hw_btcoex_init(struct ath_hw *ah) |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 212 | { |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 213 | struct ath_btcoex_info *btcoex_info = &ah->ah_sc->btcoex_info; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 214 | int ret = 0; |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 215 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 216 | if (btcoex_info->btcoex_scheme == ATH_BTCOEX_CFG_2WIRE) { |
| 217 | /* connect bt_active to baseband */ |
| 218 | REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL, |
| 219 | (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF | |
| 220 | AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF)); |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 221 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 222 | REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, |
| 223 | AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB); |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 224 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 225 | /* Set input mux for bt_active to gpio pin */ |
| 226 | REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1, |
| 227 | AR_GPIO_INPUT_MUX1_BT_ACTIVE, |
| 228 | btcoex_info->btactive_gpio); |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 229 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 230 | /* Configure the desired gpio port for input */ |
| 231 | ath9k_hw_cfg_gpio_input(ah, btcoex_info->btactive_gpio); |
| 232 | } else { |
| 233 | /* btcoex 3-wire */ |
| 234 | REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, |
| 235 | (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB | |
| 236 | AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB)); |
| 237 | |
| 238 | /* Set input mux for bt_prority_async and |
| 239 | * bt_active_async to GPIO pins */ |
| 240 | REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1, |
| 241 | AR_GPIO_INPUT_MUX1_BT_ACTIVE, |
| 242 | btcoex_info->btactive_gpio); |
| 243 | |
| 244 | REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1, |
| 245 | AR_GPIO_INPUT_MUX1_BT_PRIORITY, |
| 246 | btcoex_info->btpriority_gpio); |
| 247 | |
| 248 | /* Configure the desired GPIO ports for input */ |
| 249 | |
| 250 | ath9k_hw_cfg_gpio_input(ah, btcoex_info->btactive_gpio); |
| 251 | ath9k_hw_cfg_gpio_input(ah, btcoex_info->btpriority_gpio); |
| 252 | |
| 253 | ret = ath_init_btcoex_info(ah, btcoex_info); |
| 254 | } |
| 255 | |
| 256 | return ret; |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | void ath9k_hw_btcoex_enable(struct ath_hw *ah) |
| 260 | { |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 261 | struct ath_btcoex_info *btcoex_info = &ah->ah_sc->btcoex_info; |
| 262 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 263 | if (btcoex_info->btcoex_scheme == ATH_BTCOEX_CFG_2WIRE) { |
| 264 | /* Configure the desired GPIO port for TX_FRAME output */ |
| 265 | ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio, |
| 266 | AR_GPIO_OUTPUT_MUX_AS_TX_FRAME); |
| 267 | } else { |
| 268 | /* |
| 269 | * Program coex mode and weight registers to |
| 270 | * enable coex 3-wire |
| 271 | */ |
| 272 | REG_WRITE(ah, AR_BT_COEX_MODE, btcoex_info->bt_coex_mode); |
| 273 | REG_WRITE(ah, AR_BT_COEX_WEIGHT, btcoex_info->bt_coex_weights); |
| 274 | REG_WRITE(ah, AR_BT_COEX_MODE2, btcoex_info->bt_coex_mode2); |
| 275 | |
| 276 | REG_RMW_FIELD(ah, AR_QUIET1, |
| 277 | AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1); |
| 278 | REG_RMW_FIELD(ah, AR_PCU_MISC, |
| 279 | AR_PCU_BT_ANT_PREVENT_RX, 0); |
| 280 | |
| 281 | ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio, |
| 282 | AR_GPIO_OUTPUT_MUX_AS_RX_CLEAR_EXTERNAL); |
| 283 | } |
| 284 | |
| 285 | REG_RMW(ah, AR_GPIO_PDPU, |
| 286 | (0x2 << (btcoex_info->btactive_gpio * 2)), |
| 287 | (0x3 << (btcoex_info->btactive_gpio * 2))); |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 288 | |
| 289 | ah->ah_sc->sc_flags |= SC_OP_BTCOEX_ENABLED; |
| 290 | } |
| 291 | |
| 292 | void ath9k_hw_btcoex_disable(struct ath_hw *ah) |
| 293 | { |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 294 | struct ath_btcoex_info *btcoex_info = &ah->ah_sc->btcoex_info; |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 295 | |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 296 | ath9k_hw_set_gpio(ah, btcoex_info->wlanactive_gpio, 0); |
| 297 | |
| 298 | ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio, |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 299 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); |
| 300 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 301 | if (btcoex_info->btcoex_scheme == ATH_BTCOEX_CFG_3WIRE) { |
| 302 | REG_WRITE(ah, AR_BT_COEX_MODE, AR_BT_QUIET | AR_BT_MODE); |
| 303 | REG_WRITE(ah, AR_BT_COEX_WEIGHT, 0); |
| 304 | REG_WRITE(ah, AR_BT_COEX_MODE2, 0); |
| 305 | } |
| 306 | |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 307 | ah->ah_sc->sc_flags &= ~SC_OP_BTCOEX_ENABLED; |
| 308 | } |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 309 | |
| 310 | /* |
| 311 | * Pause btcoex timer and bt duty cycle timer |
| 312 | */ |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 313 | void ath_btcoex_timer_pause(struct ath_softc *sc) |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 314 | { |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 315 | struct ath_btcoex *btcoex = &sc->btcoex; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 316 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 317 | del_timer_sync(&btcoex->period_timer); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 318 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 319 | if (btcoex->hw_timer_enabled) |
| 320 | ath_gen_timer_stop(sc->sc_ah, sc->btcoex_info.no_stomp_timer); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 321 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 322 | btcoex->hw_timer_enabled = false; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | /* |
| 326 | * (Re)start btcoex timers |
| 327 | */ |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 328 | void ath_btcoex_timer_resume(struct ath_softc *sc) |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 329 | { |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 330 | struct ath_btcoex *btcoex = &sc->btcoex; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 331 | |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 332 | DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX, "Starting btcoex timers"); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 333 | |
| 334 | /* make sure duty cycle timer is also stopped when resuming */ |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 335 | if (btcoex->hw_timer_enabled) |
| 336 | ath_gen_timer_stop(sc->sc_ah, sc->btcoex_info.no_stomp_timer); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 337 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 338 | btcoex->bt_priority_cnt = 0; |
| 339 | btcoex->bt_priority_time = jiffies; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 340 | sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED; |
| 341 | |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame^] | 342 | mod_timer(&btcoex->period_timer, jiffies); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 343 | } |