blob: e88a0a3f68f038aa8b25831cc68b72122c5e7f09 [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
46/*
47 * Detects if there is any priority bt traffic
48 */
49static void ath_detect_bt_priority(struct ath_softc *sc)
50{
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070051 struct ath_btcoex *btcoex = &sc->btcoex;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053052
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070053 if (ath9k_hw_gpio_get(sc->sc_ah, sc->btcoex_info.btpriority_gpio))
54 btcoex->bt_priority_cnt++;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053055
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070056 if (time_after(jiffies, btcoex->bt_priority_time +
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053057 msecs_to_jiffies(ATH_BT_PRIORITY_TIME_THRESHOLD))) {
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070058 if (btcoex->bt_priority_cnt >= ATH_BT_CNT_THRESHOLD) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -070059 DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX,
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053060 "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. Rodriguez2e202502009-09-09 01:18:09 -070066 btcoex->bt_priority_cnt = 0;
67 btcoex->bt_priority_time = jiffies;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053068 }
69}
70
71/*
72 * Configures appropriate weight based on stomp type.
73 */
74static 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. Rodriguez4d6b2282009-09-07 04:52:26 -070093 DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX, "Invalid Stomptype\n");
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053094 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
106static void ath_btcoex_period_timer(unsigned long data)
107{
108 struct ath_softc *sc = (struct ath_softc *) data;
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700109 struct ath_btcoex *btcoex = &sc->btcoex;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530110 struct ath_btcoex_info *btinfo = &sc->btcoex_info;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530111
112 ath_detect_bt_priority(sc);
113
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700114 spin_lock_bh(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530115
116 ath_btcoex_bt_stomp(sc, btinfo, btinfo->bt_stomp_type);
117
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700118 spin_unlock_bh(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530119
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700120 if (btcoex->btcoex_period != btcoex->btcoex_no_stomp) {
121 if (btcoex->hw_timer_enabled)
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530122 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. Rodriguez2e202502009-09-09 01:18:09 -0700127 btcoex->btcoex_no_stomp),
128 btcoex->btcoex_no_stomp * 10);
129 btcoex->hw_timer_enabled = true;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530130 }
131
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700132 mod_timer(&btcoex->period_timer, jiffies +
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530133 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
141static void ath_btcoex_no_stomp_timer(void *arg)
142{
143 struct ath_softc *sc = (struct ath_softc *)arg;
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700144 struct ath_btcoex *btcoex = &sc->btcoex;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530145 struct ath_btcoex_info *btinfo = &sc->btcoex_info;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530146
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700147 DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX, "no stomp timer running \n");
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530148
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700149 spin_lock_bh(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530150
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. Rodriguez2e202502009-09-09 01:18:09 -0700156 spin_unlock_bh(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530157}
158
159static int ath_init_btcoex_info(struct ath_hw *hw,
160 struct ath_btcoex_info *btcoex_info)
161{
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700162 struct ath_btcoex *btcoex = &hw->ah_sc->btcoex;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530163 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. Rodriguez2e202502009-09-09 01:18:09 -0700187 btcoex->btcoex_period = ATH_BTCOEX_DEF_BT_PERIOD * 1000;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530188
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700189 btcoex->btcoex_no_stomp = (100 - ATH_BTCOEX_DEF_DUTY_CYCLE) *
190 btcoex->btcoex_period / 100;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530191
192 for (i = 0; i < 32; i++)
193 hw->hw_gen_timers.gen_timer_index[(debruijn32 << i) >> 27] = i;
194
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700195 setup_timer(&btcoex->period_timer, ath_btcoex_period_timer,
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530196 (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. Rodriguez2e202502009-09-09 01:18:09 -0700206 spin_lock_init(&btcoex->btcoex_lock);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530207
208 return 0;
209}
210
211int ath9k_hw_btcoex_init(struct ath_hw *ah)
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530212{
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530213 struct ath_btcoex_info *btcoex_info = &ah->ah_sc->btcoex_info;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530214 int ret = 0;
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530215
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530216 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 Thiagarajan17d50d12009-08-26 21:08:44 +0530221
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530222 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
223 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530224
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530225 /* 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 Thiagarajan17d50d12009-08-26 21:08:44 +0530229
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530230 /* 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 Thiagarajan17d50d12009-08-26 21:08:44 +0530257}
258
259void ath9k_hw_btcoex_enable(struct ath_hw *ah)
260{
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530261 struct ath_btcoex_info *btcoex_info = &ah->ah_sc->btcoex_info;
262
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530263 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 Thiagarajan17d50d12009-08-26 21:08:44 +0530288
289 ah->ah_sc->sc_flags |= SC_OP_BTCOEX_ENABLED;
290}
291
292void ath9k_hw_btcoex_disable(struct ath_hw *ah)
293{
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530294 struct ath_btcoex_info *btcoex_info = &ah->ah_sc->btcoex_info;
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530295
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530296 ath9k_hw_set_gpio(ah, btcoex_info->wlanactive_gpio, 0);
297
298 ath9k_hw_cfg_output(ah, btcoex_info->wlanactive_gpio,
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530299 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
300
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530301 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 Thiagarajan17d50d12009-08-26 21:08:44 +0530307 ah->ah_sc->sc_flags &= ~SC_OP_BTCOEX_ENABLED;
308}
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530309
310/*
311 * Pause btcoex timer and bt duty cycle timer
312 */
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700313void ath_btcoex_timer_pause(struct ath_softc *sc)
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530314{
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700315 struct ath_btcoex *btcoex = &sc->btcoex;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530316
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700317 del_timer_sync(&btcoex->period_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530318
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700319 if (btcoex->hw_timer_enabled)
320 ath_gen_timer_stop(sc->sc_ah, sc->btcoex_info.no_stomp_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530321
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700322 btcoex->hw_timer_enabled = false;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530323}
324
325/*
326 * (Re)start btcoex timers
327 */
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700328void ath_btcoex_timer_resume(struct ath_softc *sc)
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530329{
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700330 struct ath_btcoex *btcoex = &sc->btcoex;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530331
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700332 DPRINTF(sc->sc_ah, ATH_DBG_BTCOEX, "Starting btcoex timers");
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530333
334 /* make sure duty cycle timer is also stopped when resuming */
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700335 if (btcoex->hw_timer_enabled)
336 ath_gen_timer_stop(sc->sc_ah, sc->btcoex_info.no_stomp_timer);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530337
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700338 btcoex->bt_priority_cnt = 0;
339 btcoex->bt_priority_time = jiffies;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530340 sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED;
341
Luis R. Rodriguez2e202502009-09-09 01:18:09 -0700342 mod_timer(&btcoex->period_timer, jiffies);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530343}