blob: 1ca6da80d4ad3f16c1ac152b31d1b8724e598052 [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
Paul Gortmakeree40fa02011-05-27 16:14:23 -040017#include <linux/export.h>
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070018#include "hw.h"
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +053019
Luis R. Rodriguez8b4fc5b2009-09-09 15:24:02 -070020enum ath_bt_mode {
21 ATH_BT_COEX_MODE_LEGACY, /* legacy rx_clear mode */
22 ATH_BT_COEX_MODE_UNSLOTTED, /* untimed/unslotted mode */
23 ATH_BT_COEX_MODE_SLOTTED, /* slotted mode */
Mohammed Shafi Shajakhan32b10762011-11-30 10:41:29 +053024 ATH_BT_COEX_MODE_DISABLED, /* coexistence disabled */
Luis R. Rodriguez8b4fc5b2009-09-09 15:24:02 -070025};
26
27struct ath_btcoex_config {
28 u8 bt_time_extend;
29 bool bt_txstate_extend;
30 bool bt_txframe_extend;
31 enum ath_bt_mode bt_mode; /* coexistence mode */
32 bool bt_quiet_collision;
33 bool bt_rxclear_polarity; /* invert rx_clear as WLAN_ACTIVE*/
34 u8 bt_priority_time;
35 u8 bt_first_slot_time;
36 bool bt_hold_rx_clear;
37};
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053038
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +053039static const u32 ar9003_wlan_weights[ATH_BTCOEX_STOMP_MAX]
40 [AR9300_NUM_WLAN_WEIGHTS] = {
41 { 0xfffffff0, 0xfffffff0, 0xfffffff0, 0xfffffff0 }, /* STOMP_ALL */
42 { 0x88888880, 0x88888880, 0x88888880, 0x88888880 }, /* STOMP_LOW */
43 { 0x00000000, 0x00000000, 0x00000000, 0x00000000 }, /* STOMP_NONE */
44};
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053045
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +053046static const u32 ar9462_wlan_weights[ATH_BTCOEX_STOMP_MAX]
47 [AR9300_NUM_WLAN_WEIGHTS] = {
48 { 0x01017d01, 0x41414101, 0x41414101, 0x41414141 }, /* STOMP_ALL */
49 { 0x01017d01, 0x3b3b3b01, 0x3b3b3b01, 0x3b3b3b3b }, /* STOMP_LOW */
50 { 0x01017d01, 0x01010101, 0x01010101, 0x01010101 }, /* STOMP_NONE */
51 { 0x01017d01, 0x013b0101, 0x3b3b0101, 0x3b3b013b }, /* STOMP_LOW_FTP */
52};
53
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070054void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum)
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070055{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070056 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez8b4fc5b2009-09-09 15:24:02 -070057 const struct ath_btcoex_config ath_bt_config = {
58 .bt_time_extend = 0,
59 .bt_txstate_extend = true,
60 .bt_txframe_extend = true,
61 .bt_mode = ATH_BT_COEX_MODE_SLOTTED,
62 .bt_quiet_collision = true,
63 .bt_rxclear_polarity = true,
64 .bt_priority_time = 2,
65 .bt_first_slot_time = 5,
66 .bt_hold_rx_clear = true,
67 };
Rajkumar Manoharan02c51722011-07-17 11:38:49 +053068 u32 i, idx;
Vivek Natarajana6ef5302011-04-26 10:39:53 +053069 bool rxclear_polarity = ath_bt_config.bt_rxclear_polarity;
70
71 if (AR_SREV_9300_20_OR_LATER(ah))
72 rxclear_polarity = !ath_bt_config.bt_rxclear_polarity;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053073
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070074 btcoex_hw->bt_coex_mode =
75 (btcoex_hw->bt_coex_mode & AR_BT_QCU_THRESH) |
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053076 SM(ath_bt_config.bt_time_extend, AR_BT_TIME_EXTEND) |
77 SM(ath_bt_config.bt_txstate_extend, AR_BT_TXSTATE_EXTEND) |
78 SM(ath_bt_config.bt_txframe_extend, AR_BT_TX_FRAME_EXTEND) |
79 SM(ath_bt_config.bt_mode, AR_BT_MODE) |
80 SM(ath_bt_config.bt_quiet_collision, AR_BT_QUIET) |
Vivek Natarajana6ef5302011-04-26 10:39:53 +053081 SM(rxclear_polarity, AR_BT_RX_CLEAR_POLARITY) |
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053082 SM(ath_bt_config.bt_priority_time, AR_BT_PRIORITY_TIME) |
83 SM(ath_bt_config.bt_first_slot_time, AR_BT_FIRST_SLOT_TIME) |
84 SM(qnum, AR_BT_QCU_THRESH);
85
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070086 btcoex_hw->bt_coex_mode2 =
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053087 SM(ath_bt_config.bt_hold_rx_clear, AR_BT_HOLD_RX_CLEAR) |
88 SM(ATH_BTCOEX_BMISS_THRESH, AR_BT_BCN_MISS_THRESH) |
89 AR_BT_DISABLE_BT_ANT;
90
Rajkumar Manoharan02c51722011-07-17 11:38:49 +053091 for (i = 0; i < 32; i++) {
92 idx = (debruijn32 << i) >> 27;
93 ah->hw_gen_timers.gen_timer_index[idx] = i;
94 }
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053095}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040096EXPORT_SYMBOL(ath9k_hw_init_btcoex_hw);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053097
Sujith Manoharand68475d2012-02-22 12:40:49 +053098void ath9k_hw_btcoex_init_scheme(struct ath_hw *ah)
99{
100 struct ath_common *common = ath9k_hw_common(ah);
101 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
102
103 /*
104 * Check if BTCOEX is globally disabled.
105 */
106 if (!common->btcoex_enabled) {
107 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
108 return;
109 }
110
Rajkumar Manoharan0466e252012-04-19 19:13:52 +0530111 if (AR_SREV_9300_20_OR_LATER(ah)) {
Sujith Manoharand68475d2012-02-22 12:40:49 +0530112 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
113 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9300;
114 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9300;
115 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO_9300;
116 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
117 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9280;
118 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9280;
119
120 if (AR_SREV_9285(ah)) {
121 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
122 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO_9285;
123 } else {
124 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
125 }
126 }
127}
128EXPORT_SYMBOL(ath9k_hw_btcoex_init_scheme);
129
Luis R. Rodriguez75d78392009-09-09 04:00:10 -0700130void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah)
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700131{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700132 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700133
134 /* connect bt_active to baseband */
135 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
136 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
137 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
138
139 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
140 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
141
142 /* Set input mux for bt_active to gpio pin */
143 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
144 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700145 btcoex_hw->btactive_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700146
147 /* Configure the desired gpio port for input */
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700148 ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btactive_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700149}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400150EXPORT_SYMBOL(ath9k_hw_btcoex_init_2wire);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700151
Luis R. Rodriguez75d78392009-09-09 04:00:10 -0700152void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah)
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700153{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700154 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700155
156 /* btcoex 3-wire */
157 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
158 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB |
159 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB));
160
161 /* Set input mux for bt_prority_async and
162 * bt_active_async to GPIO pins */
163 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
164 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700165 btcoex_hw->btactive_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700166
167 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
168 AR_GPIO_INPUT_MUX1_BT_PRIORITY,
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700169 btcoex_hw->btpriority_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700170
171 /* Configure the desired GPIO ports for input */
172
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700173 ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btactive_gpio);
174 ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btpriority_gpio);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700175}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400176EXPORT_SYMBOL(ath9k_hw_btcoex_init_3wire);
Luis R. Rodriguez7a2f0f52009-09-09 02:54:40 -0700177
Sujith Manoharand3c83ac2012-02-22 12:40:15 +0530178void ath9k_hw_btcoex_init_mci(struct ath_hw *ah)
179{
180 ah->btcoex_hw.mci.ready = false;
181 ah->btcoex_hw.mci.bt_state = 0;
182 ah->btcoex_hw.mci.bt_ver_major = 3;
183 ah->btcoex_hw.mci.bt_ver_minor = 0;
184 ah->btcoex_hw.mci.bt_version_known = false;
185 ah->btcoex_hw.mci.update_2g5g = true;
186 ah->btcoex_hw.mci.is_2g = true;
187 ah->btcoex_hw.mci.wlan_channels_update = false;
188 ah->btcoex_hw.mci.wlan_channels[0] = 0x00000000;
189 ah->btcoex_hw.mci.wlan_channels[1] = 0xffffffff;
190 ah->btcoex_hw.mci.wlan_channels[2] = 0xffffffff;
191 ah->btcoex_hw.mci.wlan_channels[3] = 0x7fffffff;
192 ah->btcoex_hw.mci.query_bt = true;
193 ah->btcoex_hw.mci.unhalt_bt_gpm = true;
194 ah->btcoex_hw.mci.halted_bt_gpm = false;
195 ah->btcoex_hw.mci.need_flush_btinfo = false;
196 ah->btcoex_hw.mci.wlan_cal_seq = 0;
197 ah->btcoex_hw.mci.wlan_cal_done = 0;
198 ah->btcoex_hw.mci.config = 0x2201;
199}
200EXPORT_SYMBOL(ath9k_hw_btcoex_init_mci);
201
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700202static void ath9k_hw_btcoex_enable_2wire(struct ath_hw *ah)
203{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700204 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700205
206 /* Configure the desired GPIO port for TX_FRAME output */
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700207 ath9k_hw_cfg_output(ah, btcoex_hw->wlanactive_gpio,
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700208 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
209}
210
Luis R. Rodriguez5e197292009-09-09 15:15:55 -0700211void ath9k_hw_btcoex_set_weight(struct ath_hw *ah,
212 u32 bt_weight,
213 u32 wlan_weight)
214{
215 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
216
217 btcoex_hw->bt_coex_weights = SM(bt_weight, AR_BTCOEX_BT_WGHT) |
218 SM(wlan_weight, AR_BTCOEX_WL_WGHT);
219}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400220EXPORT_SYMBOL(ath9k_hw_btcoex_set_weight);
Luis R. Rodriguez5e197292009-09-09 15:15:55 -0700221
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530222
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700223static void ath9k_hw_btcoex_enable_3wire(struct ath_hw *ah)
224{
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530225 struct ath_btcoex_hw *btcoex = &ah->btcoex_hw;
Vivek Natarajan21cb9872010-08-18 19:57:49 +0530226 u32 val;
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530227 int i;
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700228
229 /*
230 * Program coex mode and weight registers to
231 * enable coex 3-wire
232 */
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530233 REG_WRITE(ah, AR_BT_COEX_MODE, btcoex->bt_coex_mode);
234 REG_WRITE(ah, AR_BT_COEX_MODE2, btcoex->bt_coex_mode2);
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700235
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530236
237 if (AR_SREV_9300_20_OR_LATER(ah)) {
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530238 REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS0, btcoex->wlan_weight[0]);
239 REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS1, btcoex->wlan_weight[1]);
240 for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
241 REG_WRITE(ah, AR_BT_COEX_BT_WEIGHTS(i),
242 btcoex->bt_weight[i]);
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530243 } else
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530244 REG_WRITE(ah, AR_BT_COEX_WEIGHT, btcoex->bt_coex_weights);
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530245
246
247
Vivek Natarajan21cb9872010-08-18 19:57:49 +0530248 if (AR_SREV_9271(ah)) {
249 val = REG_READ(ah, 0x50040);
250 val &= 0xFFFFFEFF;
251 REG_WRITE(ah, 0x50040, val);
252 }
253
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700254 REG_RMW_FIELD(ah, AR_QUIET1, AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1);
255 REG_RMW_FIELD(ah, AR_PCU_MISC, AR_PCU_BT_ANT_PREVENT_RX, 0);
256
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530257 ath9k_hw_cfg_output(ah, btcoex->wlanactive_gpio,
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700258 AR_GPIO_OUTPUT_MUX_AS_RX_CLEAR_EXTERNAL);
259}
260
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530261static void ath9k_hw_btcoex_enable_mci(struct ath_hw *ah)
262{
263 struct ath_btcoex_hw *btcoex = &ah->btcoex_hw;
264 int i;
265
266 for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
267 REG_WRITE(ah, AR_MCI_COEX_WL_WEIGHTS(i),
268 btcoex->wlan_weight[i]);
269
270 REG_RMW_FIELD(ah, AR_QUIET1, AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1);
271 btcoex->enabled = true;
272}
273
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530274void ath9k_hw_btcoex_enable(struct ath_hw *ah)
275{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700276 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530277
Felix Fietkau8a309302011-12-17 16:47:56 +0100278 switch (ath9k_hw_get_btcoex_scheme(ah)) {
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700279 case ATH_BTCOEX_CFG_NONE:
Felix Fietkau8a309302011-12-17 16:47:56 +0100280 return;
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700281 case ATH_BTCOEX_CFG_2WIRE:
282 ath9k_hw_btcoex_enable_2wire(ah);
283 break;
284 case ATH_BTCOEX_CFG_3WIRE:
Rajkumar Manoharan0466e252012-04-19 19:13:52 +0530285 if (AR_SREV_9462(ah)) {
286 ath9k_hw_btcoex_enable_mci(ah);
287 return;
288 }
Luis R. Rodriguezbc74bf82009-09-09 04:17:45 -0700289 ath9k_hw_btcoex_enable_3wire(ah);
290 break;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530291 }
292
293 REG_RMW(ah, AR_GPIO_PDPU,
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700294 (0x2 << (btcoex_hw->btactive_gpio * 2)),
295 (0x3 << (btcoex_hw->btactive_gpio * 2)));
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530296
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700297 ah->btcoex_hw.enabled = true;
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530298}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400299EXPORT_SYMBOL(ath9k_hw_btcoex_enable);
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530300
301void ath9k_hw_btcoex_disable(struct ath_hw *ah)
302{
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700303 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530304 int i;
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530305
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530306 btcoex_hw->enabled = false;
Rajkumar Manoharan0466e252012-04-19 19:13:52 +0530307 if (AR_SREV_9462(ah)) {
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530308 ath9k_hw_btcoex_bt_stomp(ah, ATH_BTCOEX_STOMP_NONE);
309 for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
310 REG_WRITE(ah, AR_MCI_COEX_WL_WEIGHTS(i),
311 btcoex_hw->wlan_weight[i]);
Rajkumar Manoharan0466e252012-04-19 19:13:52 +0530312 return;
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530313 }
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700314 ath9k_hw_set_gpio(ah, btcoex_hw->wlanactive_gpio, 0);
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +0530315
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700316 ath9k_hw_cfg_output(ah, btcoex_hw->wlanactive_gpio,
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530317 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
318
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -0700319 if (btcoex_hw->scheme == ATH_BTCOEX_CFG_3WIRE) {
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530320 REG_WRITE(ah, AR_BT_COEX_MODE, AR_BT_QUIET | AR_BT_MODE);
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530321 REG_WRITE(ah, AR_BT_COEX_MODE2, 0);
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530322
323 if (AR_SREV_9300_20_OR_LATER(ah)) {
324 REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS0, 0);
325 REG_WRITE(ah, AR_BT_COEX_WL_WEIGHTS1, 0);
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530326 for (i = 0; i < AR9300_NUM_BT_WEIGHTS; i++)
327 REG_WRITE(ah, AR_BT_COEX_BT_WEIGHTS(i), 0);
Vivek Natarajana6ef5302011-04-26 10:39:53 +0530328 } else
329 REG_WRITE(ah, AR_BT_COEX_WEIGHT, 0);
330
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530331 }
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +0530332}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400333EXPORT_SYMBOL(ath9k_hw_btcoex_disable);
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530334
335static void ar9003_btcoex_bt_stomp(struct ath_hw *ah,
336 enum ath_stomp_type stomp_type)
337{
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530338 struct ath_btcoex_hw *btcoex = &ah->btcoex_hw;
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530339 const u32 *weight = AR_SREV_9462(ah) ? ar9003_wlan_weights[stomp_type] :
340 ar9462_wlan_weights[stomp_type];
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530341 int i;
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530342
Rajkumar Manoharan54f10b02011-11-12 19:35:47 +0530343 for (i = 0; i < AR9300_NUM_WLAN_WEIGHTS; i++) {
344 btcoex->bt_weight[i] = AR9300_BT_WGHT;
Rajkumar Manoharan8227bf42011-11-12 19:35:48 +0530345 btcoex->wlan_weight[i] = weight[i];
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530346 }
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530347}
348
349/*
350 * Configures appropriate weight based on stomp type.
351 */
352void ath9k_hw_btcoex_bt_stomp(struct ath_hw *ah,
353 enum ath_stomp_type stomp_type)
354{
355 if (AR_SREV_9300_20_OR_LATER(ah)) {
356 ar9003_btcoex_bt_stomp(ah, stomp_type);
357 return;
358 }
359
360 switch (stomp_type) {
361 case ATH_BTCOEX_STOMP_ALL:
362 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
363 AR_STOMP_ALL_WLAN_WGHT);
364 break;
365 case ATH_BTCOEX_STOMP_LOW:
366 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
367 AR_STOMP_LOW_WLAN_WGHT);
368 break;
369 case ATH_BTCOEX_STOMP_NONE:
370 ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
371 AR_STOMP_NONE_WLAN_WGHT);
372 break;
373 default:
Joe Perchesd2182b62011-12-15 14:55:53 -0800374 ath_dbg(ath9k_hw_common(ah), BTCOEX, "Invalid Stomptype\n");
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530375 break;
376 }
Vivek Natarajan978f78b2011-04-26 10:39:52 +0530377}
378EXPORT_SYMBOL(ath9k_hw_btcoex_bt_stomp);