blob: dfbcbd0969e6cc86a7ae8af20b80b571b2592f04 [file] [log] [blame]
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +05301/*
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 Thiagarajan17739122009-08-26 21:08:50 +053019static const struct ath_btcoex_config ath_bt_config = { 0, true, true,
20 ATH_BT_COEX_MODE_SLOTTED, true, true, 2, 5, true };
21
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +053022static 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 */
32bool 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 Thiagarajan17739122009-08-26 21:08:50 +053045
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070046static void ath_btcoex_set_weight(struct ath_btcoex_info *btcoex_info,
47 u32 bt_weight,
48 u32 wlan_weight)
49{
50 btcoex_info->bt_coex_weights = SM(bt_weight, AR_BTCOEX_BT_WGHT) |
51 SM(wlan_weight, AR_BTCOEX_WL_WGHT);
52}
53
54void ath9k_hw_btcoex_init_weight(struct ath_hw *ah)
55{
56 ath_btcoex_set_weight(&ah->btcoex_info, AR_BT_COEX_WGHT,
57 AR_STOMP_LOW_WLAN_WGHT);
58}
59
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053060/*
61 * Detects if there is any priority bt traffic
62 */
63static void ath_detect_bt_priority(struct ath_softc *sc)
64{
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070065 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070066 struct ath_hw *ah = sc->sc_ah;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053067
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070068 if (ath9k_hw_gpio_get(sc->sc_ah, ah->btcoex_info.btpriority_gpio))
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070069 btcoex->bt_priority_cnt++;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053070
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070071 if (time_after(jiffies, btcoex->bt_priority_time +
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053072 msecs_to_jiffies(ATH_BT_PRIORITY_TIME_THRESHOLD))) {
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070073 if (btcoex->bt_priority_cnt >= ATH_BT_CNT_THRESHOLD) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -070074 DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX,
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053075 "BT priority traffic detected");
76 sc->sc_flags |= SC_OP_BT_PRIORITY_DETECTED;
77 } else {
78 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
79 }
80
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070081 btcoex->bt_priority_cnt = 0;
82 btcoex->bt_priority_time = jiffies;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053083 }
84}
85
86/*
87 * Configures appropriate weight based on stomp type.
88 */
89static void ath_btcoex_bt_stomp(struct ath_softc *sc,
90 struct ath_btcoex_info *btinfo,
91 int stomp_type)
92{
93
94 switch (stomp_type) {
95 case ATH_BTCOEX_STOMP_ALL:
96 ath_btcoex_set_weight(btinfo, AR_BT_COEX_WGHT,
97 AR_STOMP_ALL_WLAN_WGHT);
98 break;
99 case ATH_BTCOEX_STOMP_LOW:
100 ath_btcoex_set_weight(btinfo, AR_BT_COEX_WGHT,
101 AR_STOMP_LOW_WLAN_WGHT);
102 break;
103 case ATH_BTCOEX_STOMP_NONE:
104 ath_btcoex_set_weight(btinfo, AR_BT_COEX_WGHT,
105 AR_STOMP_NONE_WLAN_WGHT);
106 break;
107 default:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700108 DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX, "Invalid Stomptype\n");
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530109 break;
110 }
111
112 ath9k_hw_btcoex_enable(sc->sc_ah);
113}
114
115/*
116 * This is the master bt coex timer which runs for every
117 * 45ms, bt traffic will be given priority during 55% of this
118 * period while wlan gets remaining 45%
119 */
120
121static void ath_btcoex_period_timer(unsigned long data)
122{
123 struct ath_softc *sc = (struct ath_softc *) data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700124 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700125 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700126 struct ath_btcoex_info *btinfo = &ah->btcoex_info;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530127
128 ath_detect_bt_priority(sc);
129
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700130 spin_lock_bh(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530131
132 ath_btcoex_bt_stomp(sc, btinfo, btinfo->bt_stomp_type);
133
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700134 spin_unlock_bh(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530135
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700136 if (btcoex->btcoex_period != btcoex->btcoex_no_stomp) {
137 if (btcoex->hw_timer_enabled)
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700138 ath_gen_timer_stop(ah, btinfo->no_stomp_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530139
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700140 ath_gen_timer_start(ah,
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530141 btinfo->no_stomp_timer,
142 (ath9k_hw_gettsf32(sc->sc_ah) +
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700143 btcoex->btcoex_no_stomp),
144 btcoex->btcoex_no_stomp * 10);
145 btcoex->hw_timer_enabled = true;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530146 }
147
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700148 mod_timer(&btcoex->period_timer, jiffies +
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530149 msecs_to_jiffies(ATH_BTCOEX_DEF_BT_PERIOD));
150}
151
152/*
153 * Generic tsf based hw timer which configures weight
154 * registers to time slice between wlan and bt traffic
155 */
156
157static void ath_btcoex_no_stomp_timer(void *arg)
158{
159 struct ath_softc *sc = (struct ath_softc *)arg;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700160 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700161 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700162 struct ath_btcoex_info *btinfo = &ah->btcoex_info;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530163
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700164 DPRINTF(ah, ATH_DBG_BTCOEX, "no stomp timer running \n");
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530165
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700166 spin_lock_bh(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530167
168 if (btinfo->bt_stomp_type == ATH_BTCOEX_STOMP_LOW)
169 ath_btcoex_bt_stomp(sc, btinfo, ATH_BTCOEX_STOMP_NONE);
170 else if (btinfo->bt_stomp_type == ATH_BTCOEX_STOMP_ALL)
171 ath_btcoex_bt_stomp(sc, btinfo, ATH_BTCOEX_STOMP_LOW);
172
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700173 spin_unlock_bh(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530174}
175
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700176static int ath_init_btcoex_info(struct ath_hw *ah,
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530177 struct ath_btcoex_info *btcoex_info)
178{
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700179 struct ath_btcoex *btcoex = &ah->ah_sc->btcoex;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530180 u32 i;
181 int qnum;
182
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700183 qnum = ath_tx_get_qnum(ah->ah_sc, ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530184
185 btcoex_info->bt_coex_mode =
186 (btcoex_info->bt_coex_mode & AR_BT_QCU_THRESH) |
187 SM(ath_bt_config.bt_time_extend, AR_BT_TIME_EXTEND) |
188 SM(ath_bt_config.bt_txstate_extend, AR_BT_TXSTATE_EXTEND) |
189 SM(ath_bt_config.bt_txframe_extend, AR_BT_TX_FRAME_EXTEND) |
190 SM(ath_bt_config.bt_mode, AR_BT_MODE) |
191 SM(ath_bt_config.bt_quiet_collision, AR_BT_QUIET) |
192 SM(ath_bt_config.bt_rxclear_polarity, AR_BT_RX_CLEAR_POLARITY) |
193 SM(ath_bt_config.bt_priority_time, AR_BT_PRIORITY_TIME) |
194 SM(ath_bt_config.bt_first_slot_time, AR_BT_FIRST_SLOT_TIME) |
195 SM(qnum, AR_BT_QCU_THRESH);
196
197 btcoex_info->bt_coex_mode2 =
198 SM(ath_bt_config.bt_hold_rx_clear, AR_BT_HOLD_RX_CLEAR) |
199 SM(ATH_BTCOEX_BMISS_THRESH, AR_BT_BCN_MISS_THRESH) |
200 AR_BT_DISABLE_BT_ANT;
201
202 btcoex_info->bt_stomp_type = ATH_BTCOEX_STOMP_LOW;
203
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700204 btcoex->btcoex_period = ATH_BTCOEX_DEF_BT_PERIOD * 1000;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530205
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700206 btcoex->btcoex_no_stomp = (100 - ATH_BTCOEX_DEF_DUTY_CYCLE) *
207 btcoex->btcoex_period / 100;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530208
209 for (i = 0; i < 32; i++)
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700210 ah->hw_gen_timers.gen_timer_index[(debruijn32 << i) >> 27] = i;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530211
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700212 setup_timer(&btcoex->period_timer, ath_btcoex_period_timer,
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700213 (unsigned long) ah->ah_sc);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530214
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700215 btcoex_info->no_stomp_timer = ath_gen_timer_alloc(ah,
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530216 ath_btcoex_no_stomp_timer,
217 ath_btcoex_no_stomp_timer,
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700218 (void *)ah->ah_sc, AR_FIRST_NDP_TIMER);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530219
220 if (btcoex_info->no_stomp_timer == NULL)
221 return -ENOMEM;
222
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700223 spin_lock_init(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530224
225 return 0;
226}
227
228int ath9k_hw_btcoex_init(struct ath_hw *ah)
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530229{
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700230 struct ath_btcoex_info *btcoex_info = &ah->btcoex_info;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530231 int ret = 0;
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530232
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530233 if (btcoex_info->btcoex_scheme == ATH_BTCOEX_CFG_2WIRE) {
234 /* connect bt_active to baseband */
235 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
236 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
237 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530238
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530239 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
240 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530241
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530242 /* Set input mux for bt_active to gpio pin */
243 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
244 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
245 btcoex_info->btactive_gpio);
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530246
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530247 /* Configure the desired gpio port for input */
248 ath9k_hw_cfg_gpio_input(ah, btcoex_info->btactive_gpio);
249 } else {
250 /* btcoex 3-wire */
251 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
252 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB |
253 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB));
254
255 /* Set input mux for bt_prority_async and
256 * bt_active_async to GPIO pins */
257 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
258 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
259 btcoex_info->btactive_gpio);
260
261 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
262 AR_GPIO_INPUT_MUX1_BT_PRIORITY,
263 btcoex_info->btpriority_gpio);
264
265 /* Configure the desired GPIO ports for input */
266
267 ath9k_hw_cfg_gpio_input(ah, btcoex_info->btactive_gpio);
268 ath9k_hw_cfg_gpio_input(ah, btcoex_info->btpriority_gpio);
269
270 ret = ath_init_btcoex_info(ah, btcoex_info);
271 }
272
273 return ret;
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530274}
275
276void ath9k_hw_btcoex_enable(struct ath_hw *ah)
277{
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700278 struct ath_btcoex_info *btcoex_info = &ah->btcoex_info;
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530279
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530280 if (btcoex_info->btcoex_scheme == ATH_BTCOEX_CFG_2WIRE) {
281 /* Configure the desired GPIO port for TX_FRAME output */
282 ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio,
283 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
284 } else {
285 /*
286 * Program coex mode and weight registers to
287 * enable coex 3-wire
288 */
289 REG_WRITE(ah, AR_BT_COEX_MODE, btcoex_info->bt_coex_mode);
290 REG_WRITE(ah, AR_BT_COEX_WEIGHT, btcoex_info->bt_coex_weights);
291 REG_WRITE(ah, AR_BT_COEX_MODE2, btcoex_info->bt_coex_mode2);
292
293 REG_RMW_FIELD(ah, AR_QUIET1,
294 AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1);
295 REG_RMW_FIELD(ah, AR_PCU_MISC,
296 AR_PCU_BT_ANT_PREVENT_RX, 0);
297
298 ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio,
299 AR_GPIO_OUTPUT_MUX_AS_RX_CLEAR_EXTERNAL);
300 }
301
302 REG_RMW(ah, AR_GPIO_PDPU,
303 (0x2 << (btcoex_info->btactive_gpio * 2)),
304 (0x3 << (btcoex_info->btactive_gpio * 2)));
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530305
306 ah->ah_sc->sc_flags |= SC_OP_BTCOEX_ENABLED;
307}
308
309void ath9k_hw_btcoex_disable(struct ath_hw *ah)
310{
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700311 struct ath_btcoex_info *btcoex_info = &ah->btcoex_info;
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530312
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530313 ath9k_hw_set_gpio(ah, btcoex_info->wlanactive_gpio, 0);
314
315 ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio,
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530316 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
317
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530318 if (btcoex_info->btcoex_scheme == ATH_BTCOEX_CFG_3WIRE) {
319 REG_WRITE(ah, AR_BT_COEX_MODE, AR_BT_QUIET | AR_BT_MODE);
320 REG_WRITE(ah, AR_BT_COEX_WEIGHT, 0);
321 REG_WRITE(ah, AR_BT_COEX_MODE2, 0);
322 }
323
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530324 ah->ah_sc->sc_flags &= ~SC_OP_BTCOEX_ENABLED;
325}
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530326
327/*
328 * Pause btcoex timer and bt duty cycle timer
329 */
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700330void ath_btcoex_timer_pause(struct ath_softc *sc)
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530331{
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700332 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700333 struct ath_hw *ah = sc->sc_ah;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530334
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700335 del_timer_sync(&btcoex->period_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530336
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700337 if (btcoex->hw_timer_enabled)
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700338 ath_gen_timer_stop(ah, ah->btcoex_info.no_stomp_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530339
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700340 btcoex->hw_timer_enabled = false;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530341}
342
343/*
344 * (Re)start btcoex timers
345 */
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700346void ath_btcoex_timer_resume(struct ath_softc *sc)
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530347{
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700348 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700349 struct ath_hw *ah = sc->sc_ah;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530350
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700351 DPRINTF(ah, ATH_DBG_BTCOEX, "Starting btcoex timers");
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530352
353 /* make sure duty cycle timer is also stopped when resuming */
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700354 if (btcoex->hw_timer_enabled)
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700355 ath_gen_timer_stop(sc->sc_ah, ah->btcoex_info.no_stomp_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530356
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700357 btcoex->bt_priority_cnt = 0;
358 btcoex->bt_priority_time = jiffies;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530359 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
360
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700361 mod_timer(&btcoex->period_timer, jiffies);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530362}