blob: be699241ca75247a6c2b87d1b6538049762661ee [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
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700228static void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah)
229{
230 struct ath_btcoex_info *btcoex_info = &ah->btcoex_info;
231
232 /* connect bt_active to baseband */
233 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
234 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
235 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
236
237 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
238 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
239
240 /* Set input mux for bt_active to gpio pin */
241 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
242 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
243 btcoex_info->btactive_gpio);
244
245 /* Configure the desired gpio port for input */
246 ath9k_hw_cfg_gpio_input(ah, btcoex_info->btactive_gpio);
247}
248
249static void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah)
250{
251 struct ath_btcoex_info *btcoex_info = &ah->btcoex_info;
252
253 /* btcoex 3-wire */
254 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
255 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB |
256 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB));
257
258 /* Set input mux for bt_prority_async and
259 * bt_active_async to GPIO pins */
260 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
261 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
262 btcoex_info->btactive_gpio);
263
264 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
265 AR_GPIO_INPUT_MUX1_BT_PRIORITY,
266 btcoex_info->btpriority_gpio);
267
268 /* Configure the desired GPIO ports for input */
269
270 ath9k_hw_cfg_gpio_input(ah, btcoex_info->btactive_gpio);
271 ath9k_hw_cfg_gpio_input(ah, btcoex_info->btpriority_gpio);
272}
273
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530274int ath9k_hw_btcoex_init(struct ath_hw *ah)
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530275{
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700276 struct ath_btcoex_info *btcoex_info = &ah->btcoex_info;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530277 int ret = 0;
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530278
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700279 if (btcoex_info->btcoex_scheme == ATH_BTCOEX_CFG_2WIRE)
280 ath9k_hw_btcoex_init_2wire(ah);
281 else {
282 ath9k_hw_btcoex_init_3wire(ah);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530283 ret = ath_init_btcoex_info(ah, btcoex_info);
284 }
285
286 return ret;
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530287}
288
289void ath9k_hw_btcoex_enable(struct ath_hw *ah)
290{
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700291 struct ath_btcoex_info *btcoex_info = &ah->btcoex_info;
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530292
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530293 if (btcoex_info->btcoex_scheme == ATH_BTCOEX_CFG_2WIRE) {
294 /* Configure the desired GPIO port for TX_FRAME output */
295 ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio,
296 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
297 } else {
298 /*
299 * Program coex mode and weight registers to
300 * enable coex 3-wire
301 */
302 REG_WRITE(ah, AR_BT_COEX_MODE, btcoex_info->bt_coex_mode);
303 REG_WRITE(ah, AR_BT_COEX_WEIGHT, btcoex_info->bt_coex_weights);
304 REG_WRITE(ah, AR_BT_COEX_MODE2, btcoex_info->bt_coex_mode2);
305
306 REG_RMW_FIELD(ah, AR_QUIET1,
307 AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1);
308 REG_RMW_FIELD(ah, AR_PCU_MISC,
309 AR_PCU_BT_ANT_PREVENT_RX, 0);
310
311 ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio,
312 AR_GPIO_OUTPUT_MUX_AS_RX_CLEAR_EXTERNAL);
313 }
314
315 REG_RMW(ah, AR_GPIO_PDPU,
316 (0x2 << (btcoex_info->btactive_gpio * 2)),
317 (0x3 << (btcoex_info->btactive_gpio * 2)));
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530318
319 ah->ah_sc->sc_flags |= SC_OP_BTCOEX_ENABLED;
320}
321
322void ath9k_hw_btcoex_disable(struct ath_hw *ah)
323{
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700324 struct ath_btcoex_info *btcoex_info = &ah->btcoex_info;
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530325
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530326 ath9k_hw_set_gpio(ah, btcoex_info->wlanactive_gpio, 0);
327
328 ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio,
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530329 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
330
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530331 if (btcoex_info->btcoex_scheme == ATH_BTCOEX_CFG_3WIRE) {
332 REG_WRITE(ah, AR_BT_COEX_MODE, AR_BT_QUIET | AR_BT_MODE);
333 REG_WRITE(ah, AR_BT_COEX_WEIGHT, 0);
334 REG_WRITE(ah, AR_BT_COEX_MODE2, 0);
335 }
336
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530337 ah->ah_sc->sc_flags &= ~SC_OP_BTCOEX_ENABLED;
338}
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530339
340/*
341 * Pause btcoex timer and bt duty cycle timer
342 */
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700343void ath_btcoex_timer_pause(struct ath_softc *sc)
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530344{
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700345 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700346 struct ath_hw *ah = sc->sc_ah;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530347
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700348 del_timer_sync(&btcoex->period_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530349
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700350 if (btcoex->hw_timer_enabled)
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700351 ath_gen_timer_stop(ah, ah->btcoex_info.no_stomp_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530352
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700353 btcoex->hw_timer_enabled = false;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530354}
355
356/*
357 * (Re)start btcoex timers
358 */
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700359void ath_btcoex_timer_resume(struct ath_softc *sc)
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530360{
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700361 struct ath_btcoex *btcoex = &sc->btcoex;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700362 struct ath_hw *ah = sc->sc_ah;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530363
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700364 DPRINTF(ah, ATH_DBG_BTCOEX, "Starting btcoex timers");
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530365
366 /* make sure duty cycle timer is also stopped when resuming */
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700367 if (btcoex->hw_timer_enabled)
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700368 ath_gen_timer_stop(sc->sc_ah, ah->btcoex_info.no_stomp_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530369
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700370 btcoex->bt_priority_cnt = 0;
371 btcoex->bt_priority_time = jiffies;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530372 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
373
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700374 mod_timer(&btcoex->period_timer, jiffies);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530375}