blob: 5a6361da981850e17129748367819ab53a03d899 [file] [log] [blame]
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +05301/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2009-2011 Atheros Communications Inc.
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +05303 *
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
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070017#include "hw.h"
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +053018
Luis R. Rodriguez8b4fc5b2009-09-09 15:24:02 -070019enum ath_bt_mode {
20 ATH_BT_COEX_MODE_LEGACY, /* legacy rx_clear mode */
21 ATH_BT_COEX_MODE_UNSLOTTED, /* untimed/unslotted mode */
22 ATH_BT_COEX_MODE_SLOTTED, /* slotted mode */
23 ATH_BT_COEX_MODE_DISALBED, /* coexistence disabled */
24};
25
26struct ath_btcoex_config {
27 u8 bt_time_extend;
28 bool bt_txstate_extend;
29 bool bt_txframe_extend;
30 enum ath_bt_mode bt_mode; /* coexistence mode */
31 bool bt_quiet_collision;
32 bool bt_rxclear_polarity; /* invert rx_clear as WLAN_ACTIVE*/
33 u8 bt_priority_time;
34 u8 bt_first_slot_time;
35 bool bt_hold_rx_clear;
36};
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053037
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +053038static const u32 ar9003_wlan_weights[ATH_BTCOEX_STOMP_MAX]
39 [AR9300_NUM_WLAN_WEIGHTS] = {
40 { 0xfffffff0, 0xfffffff0, 0xfffffff0, 0xfffffff0 }, /* STOMP_ALL */
41 { 0x88888880, 0x88888880, 0x88888880, 0x88888880 }, /* STOMP_LOW */
42 { 0x00000000, 0x00000000, 0x00000000, 0x00000000 }, /* STOMP_NONE */
43};
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053044
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +053045static const u32 ar9462_wlan_weights[ATH_BTCOEX_STOMP_MAX]
46 [AR9300_NUM_WLAN_WEIGHTS] = {
47 { 0x01017d01, 0x41414101, 0x41414101, 0x41414141 }, /* STOMP_ALL */
48 { 0x01017d01, 0x3b3b3b01, 0x3b3b3b01, 0x3b3b3b3b }, /* STOMP_LOW */
49 { 0x01017d01, 0x01010101, 0x01010101, 0x01010101 }, /* STOMP_NONE */
50 { 0x01017d01, 0x013b0101, 0x3b3b0101, 0x3b3b013b }, /* STOMP_LOW_FTP */
51};
52
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070053void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum)
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070054{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070055 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez8b4fc5b2009-09-09 15:24:02 -070056 const struct ath_btcoex_config ath_bt_config = {
57 .bt_time_extend = 0,
58 .bt_txstate_extend = true,
59 .bt_txframe_extend = true,
60 .bt_mode = ATH_BT_COEX_MODE_SLOTTED,
61 .bt_quiet_collision = true,
62 .bt_rxclear_polarity = true,
63 .bt_priority_time = 2,
64 .bt_first_slot_time = 5,
65 .bt_hold_rx_clear = true,
66 };
Rajkumar Manoharan02c51722011-07-17 11:38:49 +053067 u32 i, idx;
Vivek Natarajana6ef5302011-04-26 10:39:53 +053068 bool rxclear_polarity = ath_bt_config.bt_rxclear_polarity;
69
70 if (AR_SREV_9300_20_OR_LATER(ah))
71 rxclear_polarity = !ath_bt_config.bt_rxclear_polarity;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053072
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070073 btcoex_hw->bt_coex_mode =
74 (btcoex_hw->bt_coex_mode & AR_BT_QCU_THRESH) |
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053075 SM(ath_bt_config.bt_time_extend, AR_BT_TIME_EXTEND) |
76 SM(ath_bt_config.bt_txstate_extend, AR_BT_TXSTATE_EXTEND) |
77 SM(ath_bt_config.bt_txframe_extend, AR_BT_TX_FRAME_EXTEND) |
78 SM(ath_bt_config.bt_mode, AR_BT_MODE) |
79 SM(ath_bt_config.bt_quiet_collision, AR_BT_QUIET) |
Vivek Natarajana6ef5302011-04-26 10:39:53 +053080 SM(rxclear_polarity, AR_BT_RX_CLEAR_POLARITY) |
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053081 SM(ath_bt_config.bt_priority_time, AR_BT_PRIORITY_TIME) |
82 SM(ath_bt_config.bt_first_slot_time, AR_BT_FIRST_SLOT_TIME) |
83 SM(qnum, AR_BT_QCU_THRESH);
84
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070085 btcoex_hw->bt_coex_mode2 =
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053086 SM(ath_bt_config.bt_hold_rx_clear, AR_BT_HOLD_RX_CLEAR) |
87 SM(ATH_BTCOEX_BMISS_THRESH, AR_BT_BCN_MISS_THRESH) |
88 AR_BT_DISABLE_BT_ANT;
89
Rajkumar Manoharan02c51722011-07-17 11:38:49 +053090 for (i = 0; i < 32; i++) {
91 idx = (debruijn32 << i) >> 27;
92 ah->hw_gen_timers.gen_timer_index[idx] = i;
93 }
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053094}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040095EXPORT_SYMBOL(ath9k_hw_init_btcoex_hw);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053096
Luis R. Rodriguez75d78392009-09-09 04:00:10 -070097void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah)
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -070098{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070099 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700100
101 /* connect bt_active to baseband */
102 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
103 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
104 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
105
106 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
107 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
108
109 /* Set input mux for bt_active to gpio pin */
110 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
111 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700112 btcoex_hw->btactive_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700113
114 /* Configure the desired gpio port for input */
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700115 ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btactive_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700116}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400117EXPORT_SYMBOL(ath9k_hw_btcoex_init_2wire);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700118
Luis R. Rodriguez75d78392009-09-09 04:00:10 -0700119void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah)
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700120{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700121 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700122
123 /* btcoex 3-wire */
124 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
125 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB |
126 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB));
127
128 /* Set input mux for bt_prority_async and
129 * bt_active_async to GPIO pins */
130 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
131 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700132 btcoex_hw->btactive_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700133
134 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
135 AR_GPIO_INPUT_MUX1_BT_PRIORITY,
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700136 btcoex_hw->btpriority_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700137
138 /* Configure the desired GPIO ports for input */
139
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700140 ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btactive_gpio);
141 ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btpriority_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700142}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400143EXPORT_SYMBOL(ath9k_hw_btcoex_init_3wire);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700144
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700145static void ath9k_hw_btcoex_enable_2wire(struct ath_hw *ah)
146{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700147 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700148
149 /* Configure the desired GPIO port for TX_FRAME output */
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700150 ath9k_hw_cfg_output(ah, btcoex_hw->wlanactive_gpio,
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700151 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
152}
153
Luis R. Rodriguez5e197292009-09-09 15:15:55 -0700154void ath9k_hw_btcoex_set_weight(struct ath_hw *ah,
155 u32 bt_weight,
156 u32 wlan_weight)
157{
158 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
159
160 btcoex_hw->bt_coex_weights = SM(bt_weight, AR_BTCOEX_BT_WGHT) |
161 SM(wlan_weight, AR_BTCOEX_WL_WGHT);
162}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400163EXPORT_SYMBOL(ath9k_hw_btcoex_set_weight);
Luis R. Rodriguez5e197292009-09-09 15:15:55 -0700164
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530165
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700166static void ath9k_hw_btcoex_enable_3wire(struct ath_hw *ah)
167{
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530168 struct ath_btcoex_hw *btcoex = &ah->btcoex_hw;
Vivek Natarajan21cb9872010-08-18 19:57:49 +0530169 u32 val;
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530170 int i;
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700171
172 /*
173 * Program coex mode and weight registers to
174 * enable coex 3-wire
175 */
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530176 REG_WRITE(ah, AR_BT_COEX_MODE, btcoex->bt_coex_mode);
177 REG_WRITE(ah, AR_BT_COEX_MODE2, btcoex->bt_coex_mode2);
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700178
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530179
180 if (AR_SREV_9300_20_OR_LATER(ah)) {
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530181 REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS0, btcoex->wlan_weight[0]);
182 REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS1, btcoex->wlan_weight[1]);
183 for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
184 REG_WRITE(ah, AR_BT_COEX_BT_WEIGHTS(i),
185 btcoex->bt_weight[i]);
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530186 } else
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530187 REG_WRITE(ah, AR_BT_COEX_WEIGHT, btcoex->bt_coex_weights);
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530188
189
190
Vivek Natarajan21cb9872010-08-18 19:57:49 +0530191 if (AR_SREV_9271(ah)) {
192 val = REG_READ(ah, 0x50040);
193 val &= 0xFFFFFEFF;
194 REG_WRITE(ah, 0x50040, val);
195 }
196
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700197 REG_RMW_FIELD(ah, AR_QUIET1, AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1);
198 REG_RMW_FIELD(ah, AR_PCU_MISC, AR_PCU_BT_ANT_PREVENT_RX, 0);
199
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530200 ath9k_hw_cfg_output(ah, btcoex->wlanactive_gpio,
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700201 AR_GPIO_OUTPUT_MUX_AS_RX_CLEAR_EXTERNAL);
202}
203
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530204static void ath9k_hw_btcoex_enable_mci(struct ath_hw *ah)
205{
206 struct ath_btcoex_hw *btcoex = &ah->btcoex_hw;
207 int i;
208
209 for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
210 REG_WRITE(ah, AR_MCI_COEX_WL_WEIGHTS(i),
211 btcoex->wlan_weight[i]);
212
213 REG_RMW_FIELD(ah, AR_QUIET1, AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1);
214 btcoex->enabled = true;
215}
216
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530217void ath9k_hw_btcoex_enable(struct ath_hw *ah)
218{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700219 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530220
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700221 switch (btcoex_hw->scheme) {
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700222 case ATH_BTCOEX_CFG_NONE:
223 break;
224 case ATH_BTCOEX_CFG_2WIRE:
225 ath9k_hw_btcoex_enable_2wire(ah);
226 break;
227 case ATH_BTCOEX_CFG_3WIRE:
228 ath9k_hw_btcoex_enable_3wire(ah);
229 break;
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530230 case ATH_BTCOEX_CFG_MCI:
231 ath9k_hw_btcoex_enable_mci(ah);
232 return;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530233 }
234
235 REG_RMW(ah, AR_GPIO_PDPU,
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700236 (0x2 << (btcoex_hw->btactive_gpio * 2)),
237 (0x3 << (btcoex_hw->btactive_gpio * 2)));
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530238
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700239 ah->btcoex_hw.enabled = true;
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530240}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400241EXPORT_SYMBOL(ath9k_hw_btcoex_enable);
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530242
243void ath9k_hw_btcoex_disable(struct ath_hw *ah)
244{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700245 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530246 int i;
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530247
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530248 btcoex_hw->enabled = false;
249 if (btcoex_hw->scheme == ATH_BTCOEX_CFG_MCI) {
250 ath9k_hw_btcoex_bt_stomp(ah, ATH_BTCOEX_STOMP_NONE);
251 for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
252 REG_WRITE(ah, AR_MCI_COEX_WL_WEIGHTS(i),
253 btcoex_hw->wlan_weight[i]);
254 }
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700255 ath9k_hw_set_gpio(ah, btcoex_hw->wlanactive_gpio, 0);
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530256
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700257 ath9k_hw_cfg_output(ah, btcoex_hw->wlanactive_gpio,
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530258 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
259
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700260 if (btcoex_hw->scheme == ATH_BTCOEX_CFG_3WIRE) {
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530261 REG_WRITE(ah, AR_BT_COEX_MODE, AR_BT_QUIET | AR_BT_MODE);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530262 REG_WRITE(ah, AR_BT_COEX_MODE2, 0);
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530263
264 if (AR_SREV_9300_20_OR_LATER(ah)) {
265 REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS0, 0);
266 REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS1, 0);
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530267 for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
268 REG_WRITE(ah, AR_BT_COEX_BT_WEIGHTS(i), 0);
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530269 } else
270 REG_WRITE(ah, AR_BT_COEX_WEIGHT, 0);
271
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530272 }
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530273}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400274EXPORT_SYMBOL(ath9k_hw_btcoex_disable);
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530275
276static void ar9003_btcoex_bt_stomp(struct ath_hw *ah,
277 enum ath_stomp_type stomp_type)
278{
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530279 struct ath_btcoex_hw *btcoex = &ah->btcoex_hw;
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530280 const u32 *weight = AR_SREV_9462(ah) ? ar9003_wlan_weights[stomp_type] :
281 ar9462_wlan_weights[stomp_type];
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530282 int i;
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530283
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530284 for (i = 0; i < AR9300_NUM_WLAN_WEIGHTS; i++) {
285 btcoex->bt_weight[i] = AR9300_BT_WGHT;
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530286 btcoex->wlan_weight[i] = weight[i];
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530287 }
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530288}
289
290/*
291 * Configures appropriate weight based on stomp type.
292 */
293void ath9k_hw_btcoex_bt_stomp(struct ath_hw *ah,
294 enum ath_stomp_type stomp_type)
295{
296 if (AR_SREV_9300_20_OR_LATER(ah)) {
297 ar9003_btcoex_bt_stomp(ah, stomp_type);
298 return;
299 }
300
301 switch (stomp_type) {
302 case ATH_BTCOEX_STOMP_ALL:
303 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
304 AR_STOMP_ALL_WLAN_WGHT);
305 break;
306 case ATH_BTCOEX_STOMP_LOW:
307 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
308 AR_STOMP_LOW_WLAN_WGHT);
309 break;
310 case ATH_BTCOEX_STOMP_NONE:
311 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
312 AR_STOMP_NONE_WLAN_WGHT);
313 break;
314 default:
315 ath_dbg(ath9k_hw_common(ah), ATH_DBG_BTCOEX,
316 "Invalid Stomptype\n");
317 break;
318 }
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530319}
320EXPORT_SYMBOL(ath9k_hw_btcoex_bt_stomp);