blob: 908a8a9ca564caff2a12d6d84e5822f658c63eec [file] [log] [blame]
Emmanuel Grumbach931d4162013-01-17 09:42:25 +02001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
8 * Copyright(c) 2013 Intel Corporation. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
25 * in the file called COPYING.
26 *
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
33 * Copyright(c) 2013 Intel Corporation. All rights reserved.
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *
62 *****************************************************************************/
63
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +020064#include <net/mac80211.h>
65
Emmanuel Grumbach931d4162013-01-17 09:42:25 +020066#include "fw-api-bt-coex.h"
67#include "iwl-modparams.h"
68#include "mvm.h"
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +020069#include "iwl-debug.h"
Emmanuel Grumbach931d4162013-01-17 09:42:25 +020070
71#define EVENT_PRIO_ANT(_evt, _prio, _shrd_ant) \
72 [(_evt)] = (((_prio) << BT_COEX_PRIO_TBL_PRIO_POS) | \
73 ((_shrd_ant) << BT_COEX_PRIO_TBL_SHRD_ANT_POS))
74
75static const u8 iwl_bt_prio_tbl[BT_COEX_PRIO_TBL_EVT_MAX] = {
76 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_INIT_CALIB1,
77 BT_COEX_PRIO_TBL_PRIO_BYPASS, 0),
78 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_INIT_CALIB2,
79 BT_COEX_PRIO_TBL_PRIO_BYPASS, 1),
80 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_LOW1,
81 BT_COEX_PRIO_TBL_PRIO_LOW, 0),
82 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_LOW2,
83 BT_COEX_PRIO_TBL_PRIO_LOW, 1),
84 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_HIGH1,
85 BT_COEX_PRIO_TBL_PRIO_HIGH, 0),
86 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_HIGH2,
87 BT_COEX_PRIO_TBL_PRIO_HIGH, 1),
88 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_DTIM,
89 BT_COEX_PRIO_TBL_DISABLED, 0),
90 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_SCAN52,
91 BT_COEX_PRIO_TBL_PRIO_COEX_OFF, 0),
92 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_SCAN24,
93 BT_COEX_PRIO_TBL_PRIO_COEX_ON, 0),
94 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_IDLE,
95 BT_COEX_PRIO_TBL_PRIO_COEX_IDLE, 0),
96 0, 0, 0, 0, 0, 0,
97};
98
99#undef EVENT_PRIO_ANT
100
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200101#define BT_ENABLE_REDUCED_TXPOWER_THRESHOLD (-62)
102#define BT_DISABLE_REDUCED_TXPOWER_THRESHOLD (-65)
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300103#define BT_ANTENNA_COUPLING_THRESHOLD (30)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200104
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200105int iwl_send_bt_prio_tbl(struct iwl_mvm *mvm)
106{
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300107 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NEWBT_COEX))
108 return 0;
109
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200110 return iwl_mvm_send_cmd_pdu(mvm, BT_COEX_PRIO_TABLE, CMD_SYNC,
111 sizeof(struct iwl_bt_coex_prio_tbl_cmd),
112 &iwl_bt_prio_tbl);
113}
114
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200115enum iwl_bt_kill_msk {
116 BT_KILL_MSK_DEFAULT,
117 BT_KILL_MSK_SCO_HID_A2DP,
118 BT_KILL_MSK_REDUCED_TXPOW,
119 BT_KILL_MSK_MAX,
120};
121
122static const u32 iwl_bt_ack_kill_msk[BT_KILL_MSK_MAX] = {
Emmanuel Grumbach5b7e6622013-03-10 20:15:24 +0200123 [BT_KILL_MSK_DEFAULT] = 0xffff0000,
124 [BT_KILL_MSK_SCO_HID_A2DP] = 0xffffffff,
125 [BT_KILL_MSK_REDUCED_TXPOW] = 0,
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200126};
127
128static const u32 iwl_bt_cts_kill_msk[BT_KILL_MSK_MAX] = {
Emmanuel Grumbach5b7e6622013-03-10 20:15:24 +0200129 [BT_KILL_MSK_DEFAULT] = 0xffff0000,
130 [BT_KILL_MSK_SCO_HID_A2DP] = 0xffffffff,
131 [BT_KILL_MSK_REDUCED_TXPOW] = 0,
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200132};
133
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300134static const __le32 iwl_bt_prio_boost[BT_COEX_BOOST_SIZE] = {
135 cpu_to_le32(0xf0f0f0f0),
136 cpu_to_le32(0xc0c0c0c0),
137 cpu_to_le32(0xfcfcfcfc),
138 cpu_to_le32(0xff00ff00),
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200139};
140
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300141static const __le32 iwl_combined_lookup[BT_COEX_MAX_LUT][BT_COEX_LUT_SIZE] = {
142 {
143 /* Tight */
144 cpu_to_le32(0xaaaaaaaa),
145 cpu_to_le32(0xaaaaaaaa),
146 cpu_to_le32(0xaeaaaaaa),
147 cpu_to_le32(0xaaaaaaaa),
148 cpu_to_le32(0xcc00ff28),
149 cpu_to_le32(0x0000aaaa),
150 cpu_to_le32(0xcc00aaaa),
151 cpu_to_le32(0x0000aaaa),
152 cpu_to_le32(0xc0004000),
153 cpu_to_le32(0x00000000),
154 cpu_to_le32(0xf0005000),
155 cpu_to_le32(0xf0005000),
156 },
157 {
158 /* Loose */
159 cpu_to_le32(0xaaaaaaaa),
160 cpu_to_le32(0xaaaaaaaa),
161 cpu_to_le32(0xaaaaaaaa),
162 cpu_to_le32(0xaaaaaaaa),
163 cpu_to_le32(0xcc00ff28),
164 cpu_to_le32(0x0000aaaa),
165 cpu_to_le32(0xcc00aaaa),
166 cpu_to_le32(0x0000aaaa),
167 cpu_to_le32(0x00000000),
168 cpu_to_le32(0x00000000),
169 cpu_to_le32(0xf0005000),
170 cpu_to_le32(0xf0005000),
171 },
172 {
173 /* Tx Tx disabled */
174 cpu_to_le32(0xaaaaaaaa),
175 cpu_to_le32(0xaaaaaaaa),
176 cpu_to_le32(0xaaaaaaaa),
177 cpu_to_le32(0xaaaaaaaa),
178 cpu_to_le32(0xcc00ff28),
179 cpu_to_le32(0x0000aaaa),
180 cpu_to_le32(0xcc00aaaa),
181 cpu_to_le32(0x0000aaaa),
182 cpu_to_le32(0xC0004000),
183 cpu_to_le32(0xC0004000),
184 cpu_to_le32(0xF0005000),
185 cpu_to_le32(0xF0005000),
186 },
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200187};
188
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300189/* 20MHz / 40MHz below / 40Mhz above*/
190static const __le64 iwl_ci_mask[][3] = {
191 /* dummy entry for channel 0 */
192 {cpu_to_le64(0), cpu_to_le64(0), cpu_to_le64(0)},
193 {
194 cpu_to_le64(0x0000001FFFULL),
195 cpu_to_le64(0x0ULL),
196 cpu_to_le64(0x00007FFFFFULL),
197 },
198 {
199 cpu_to_le64(0x000000FFFFULL),
200 cpu_to_le64(0x0ULL),
201 cpu_to_le64(0x0003FFFFFFULL),
202 },
203 {
204 cpu_to_le64(0x000003FFFCULL),
205 cpu_to_le64(0x0ULL),
206 cpu_to_le64(0x000FFFFFFCULL),
207 },
208 {
209 cpu_to_le64(0x00001FFFE0ULL),
210 cpu_to_le64(0x0ULL),
211 cpu_to_le64(0x007FFFFFE0ULL),
212 },
213 {
214 cpu_to_le64(0x00007FFF80ULL),
215 cpu_to_le64(0x00007FFFFFULL),
216 cpu_to_le64(0x01FFFFFF80ULL),
217 },
218 {
219 cpu_to_le64(0x0003FFFC00ULL),
220 cpu_to_le64(0x0003FFFFFFULL),
221 cpu_to_le64(0x0FFFFFFC00ULL),
222 },
223 {
224 cpu_to_le64(0x000FFFF000ULL),
225 cpu_to_le64(0x000FFFFFFCULL),
226 cpu_to_le64(0x3FFFFFF000ULL),
227 },
228 {
229 cpu_to_le64(0x007FFF8000ULL),
230 cpu_to_le64(0x007FFFFFE0ULL),
231 cpu_to_le64(0xFFFFFF8000ULL),
232 },
233 {
234 cpu_to_le64(0x01FFFE0000ULL),
235 cpu_to_le64(0x01FFFFFF80ULL),
236 cpu_to_le64(0xFFFFFE0000ULL),
237 },
238 {
239 cpu_to_le64(0x0FFFF00000ULL),
240 cpu_to_le64(0x0FFFFFFC00ULL),
241 cpu_to_le64(0x0ULL),
242 },
243 {
244 cpu_to_le64(0x3FFFC00000ULL),
245 cpu_to_le64(0x3FFFFFF000ULL),
246 cpu_to_le64(0x0)
247 },
248 {
249 cpu_to_le64(0xFFFE000000ULL),
250 cpu_to_le64(0xFFFFFF8000ULL),
251 cpu_to_le64(0x0)
252 },
253 {
254 cpu_to_le64(0xFFF8000000ULL),
255 cpu_to_le64(0xFFFFFE0000ULL),
256 cpu_to_le64(0x0)
257 },
258 {
259 cpu_to_le64(0xFE00000000ULL),
260 cpu_to_le64(0x0ULL),
261 cpu_to_le64(0x0)
262 },
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200263};
264
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300265static const __le32 iwl_bt_mprio_lut[BT_COEX_MULTI_PRIO_LUT_SIZE] = {
266 cpu_to_le32(0x22002200),
267 cpu_to_le32(0x33113311),
Emmanuel Grumbache715c3a2013-06-18 05:34:58 +0300268};
269
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300270static enum iwl_bt_coex_lut_type
271iwl_get_coex_type(struct iwl_mvm *mvm, const struct ieee80211_vif *vif)
272{
273 struct ieee80211_chanctx_conf *chanctx_conf;
274 enum iwl_bt_coex_lut_type ret;
275 u16 phy_ctx_id;
276
277 lockdep_assert_held(&mvm->mutex);
278
279 rcu_read_lock();
280
281 chanctx_conf = rcu_dereference(vif->chanctx_conf);
282
283 if (!chanctx_conf ||
284 chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ) {
285 rcu_read_unlock();
286 return BT_COEX_LOOSE_LUT;
287 }
288
289 ret = BT_COEX_TX_DIS_LUT;
290
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300291 if (mvm->cfg->bt_shared_single_ant) {
292 rcu_read_unlock();
293 return ret;
294 }
295
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300296 phy_ctx_id = *((u16 *)chanctx_conf->drv_priv);
297
298 if (mvm->last_bt_ci_cmd.primary_ch_phy_id == phy_ctx_id)
299 ret = le32_to_cpu(mvm->last_bt_notif.primary_ch_lut);
300 else if (mvm->last_bt_ci_cmd.secondary_ch_phy_id == phy_ctx_id)
301 ret = le32_to_cpu(mvm->last_bt_notif.secondary_ch_lut);
302 /* else - default = TX TX disallowed */
303
304 rcu_read_unlock();
305
306 return ret;
307}
308
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200309int iwl_send_bt_init_conf(struct iwl_mvm *mvm)
310{
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300311 struct iwl_bt_coex_cmd *bt_cmd;
312 struct iwl_host_cmd cmd = {
313 .id = BT_CONFIG,
314 .len = { sizeof(*bt_cmd), },
315 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
316 .flags = CMD_SYNC,
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200317 };
318 int ret;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300319 u32 flags;
320
321 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NEWBT_COEX))
322 return 0;
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200323
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300324 bt_cmd = kzalloc(sizeof(*bt_cmd), GFP_KERNEL);
325 if (!bt_cmd)
326 return -ENOMEM;
327 cmd.data[0] = bt_cmd;
328
329 bt_cmd->max_kill = 5;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300330 bt_cmd->bt4_antenna_isolation_thr = BT_ANTENNA_COUPLING_THRESHOLD,
331 bt_cmd->bt4_antenna_isolation = iwlwifi_mod_params.ant_coupling,
332 bt_cmd->bt4_tx_tx_delta_freq_thr = 15,
333 bt_cmd->bt4_tx_rx_max_freq0 = 15,
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300334
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300335 flags = iwlwifi_mod_params.bt_coex_active ?
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300336 BT_COEX_NW : BT_COEX_DISABLE;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300337 flags |= BT_CH_PRIMARY_EN | BT_CH_SECONDARY_EN | BT_SYNC_2_BT_DISABLE;
338 bt_cmd->flags = cpu_to_le32(flags);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300339
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300340 bt_cmd->valid_bit_msk = cpu_to_le32(BT_VALID_ENABLE |
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300341 BT_VALID_BT_PRIO_BOOST |
342 BT_VALID_MAX_KILL |
343 BT_VALID_3W_TMRS |
344 BT_VALID_KILL_ACK |
345 BT_VALID_KILL_CTS |
346 BT_VALID_REDUCED_TX_POWER |
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300347 BT_VALID_LUT |
348 BT_VALID_WIFI_RX_SW_PRIO_BOOST |
349 BT_VALID_WIFI_TX_SW_PRIO_BOOST |
350 BT_VALID_MULTI_PRIO_LUT |
351 BT_VALID_CORUN_LUT_20 |
352 BT_VALID_CORUN_LUT_40 |
353 BT_VALID_ANT_ISOLATION |
354 BT_VALID_ANT_ISOLATION_THRS |
355 BT_VALID_TXTX_DELTA_FREQ_THRS |
356 BT_VALID_TXRX_MAX_FREQ_0);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300357
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300358 memcpy(&bt_cmd->decision_lut, iwl_combined_lookup,
359 sizeof(iwl_combined_lookup));
360 memcpy(&bt_cmd->bt_prio_boost, iwl_bt_prio_boost,
361 sizeof(iwl_bt_prio_boost));
362 memcpy(&bt_cmd->bt4_multiprio_lut, iwl_bt_mprio_lut,
363 sizeof(iwl_bt_mprio_lut));
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300364 bt_cmd->kill_ack_msk =
365 cpu_to_le32(iwl_bt_ack_kill_msk[BT_KILL_MSK_DEFAULT]);
366 bt_cmd->kill_cts_msk =
367 cpu_to_le32(iwl_bt_cts_kill_msk[BT_KILL_MSK_DEFAULT]);
368
369 memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif));
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300370 memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd));
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300371
372 ret = iwl_mvm_send_cmd(mvm, &cmd);
373
374 kfree(bt_cmd);
375 return ret;
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200376}
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200377
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200378static int iwl_mvm_bt_udpate_ctrl_kill_msk(struct iwl_mvm *mvm,
379 bool reduced_tx_power)
380{
381 enum iwl_bt_kill_msk bt_kill_msk;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300382 struct iwl_bt_coex_cmd *bt_cmd;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200383 struct iwl_bt_coex_profile_notif *notif = &mvm->last_bt_notif;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300384 struct iwl_host_cmd cmd = {
385 .id = BT_CONFIG,
386 .data[0] = &bt_cmd,
387 .len = { sizeof(*bt_cmd), },
388 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
389 .flags = CMD_SYNC,
390 };
391 int ret = 0;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200392
393 lockdep_assert_held(&mvm->mutex);
394
395 if (reduced_tx_power) {
396 /* Reduced Tx power has precedence on the type of the profile */
397 bt_kill_msk = BT_KILL_MSK_REDUCED_TXPOW;
398 } else {
399 /* Low latency BT profile is active: give higher prio to BT */
400 if (BT_MBOX_MSG(notif, 3, SCO_STATE) ||
401 BT_MBOX_MSG(notif, 3, A2DP_STATE) ||
402 BT_MBOX_MSG(notif, 3, SNIFF_STATE))
403 bt_kill_msk = BT_KILL_MSK_SCO_HID_A2DP;
404 else
405 bt_kill_msk = BT_KILL_MSK_DEFAULT;
406 }
407
408 IWL_DEBUG_COEX(mvm,
409 "Update kill_msk: %d - SCO %sactive A2DP %sactive SNIFF %sactive\n",
410 bt_kill_msk,
411 BT_MBOX_MSG(notif, 3, SCO_STATE) ? "" : "in",
412 BT_MBOX_MSG(notif, 3, A2DP_STATE) ? "" : "in",
413 BT_MBOX_MSG(notif, 3, SNIFF_STATE) ? "" : "in");
414
415 /* Don't send HCMD if there is no update */
416 if (bt_kill_msk == mvm->bt_kill_msk)
417 return 0;
418
419 mvm->bt_kill_msk = bt_kill_msk;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300420
421 bt_cmd = kzalloc(sizeof(*bt_cmd), GFP_KERNEL);
422 if (!bt_cmd)
423 return -ENOMEM;
424 cmd.data[0] = bt_cmd;
425
426 bt_cmd->kill_ack_msk = cpu_to_le32(iwl_bt_ack_kill_msk[bt_kill_msk]);
427 bt_cmd->kill_cts_msk = cpu_to_le32(iwl_bt_cts_kill_msk[bt_kill_msk]);
428 bt_cmd->valid_bit_msk =
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300429 cpu_to_le32(BT_VALID_KILL_ACK | BT_VALID_KILL_CTS);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200430
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300431 IWL_DEBUG_COEX(mvm, "ACK Kill msk = 0x%08x, CTS Kill msk = 0x%08x\n",
432 iwl_bt_ack_kill_msk[bt_kill_msk],
433 iwl_bt_cts_kill_msk[bt_kill_msk]);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300434
435 ret = iwl_mvm_send_cmd(mvm, &cmd);
436
437 kfree(bt_cmd);
438 return ret;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200439}
440
441static int iwl_mvm_bt_coex_reduced_txp(struct iwl_mvm *mvm, u8 sta_id,
442 bool enable)
443{
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300444 struct iwl_bt_coex_cmd *bt_cmd;
445 /* Send ASYNC since this can be sent from an atomic context */
446 struct iwl_host_cmd cmd = {
447 .id = BT_CONFIG,
448 .len = { sizeof(*bt_cmd), },
449 .dataflags = { IWL_HCMD_DFL_DUP, },
450 .flags = CMD_ASYNC,
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200451 };
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300452
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200453 struct ieee80211_sta *sta;
454 struct iwl_mvm_sta *mvmsta;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300455 int ret;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200456
457 /* This can happen if the station has been removed right now */
458 if (sta_id == IWL_MVM_STATION_COUNT)
459 return 0;
460
461 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
462 lockdep_is_held(&mvm->mutex));
463 mvmsta = (void *)sta->drv_priv;
464
465 /* nothing to do */
466 if (mvmsta->bt_reduced_txpower == enable)
467 return 0;
468
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300469 bt_cmd = kzalloc(sizeof(*bt_cmd), GFP_ATOMIC);
470 if (!bt_cmd)
471 return -ENOMEM;
472 cmd.data[0] = bt_cmd;
473
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300474 bt_cmd->valid_bit_msk = cpu_to_le32(BT_VALID_REDUCED_TX_POWER),
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300475 bt_cmd->bt_reduced_tx_power = sta_id;
476
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200477 if (enable)
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300478 bt_cmd->bt_reduced_tx_power |= BT_REDUCED_TX_POWER_BIT;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200479
480 IWL_DEBUG_COEX(mvm, "%sable reduced Tx Power for sta %d\n",
481 enable ? "en" : "dis", sta_id);
482
483 mvmsta->bt_reduced_txpower = enable;
484
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300485 ret = iwl_mvm_send_cmd(mvm, &cmd);
486
487 kfree(bt_cmd);
488 return ret;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200489}
490
491struct iwl_bt_iterator_data {
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200492 struct iwl_bt_coex_profile_notif *notif;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200493 struct iwl_mvm *mvm;
494 u32 num_bss_ifaces;
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300495 bool reduced_tx_power;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300496 struct ieee80211_chanctx_conf *primary;
497 struct ieee80211_chanctx_conf *secondary;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200498};
499
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300500/* must be called under rcu_read_lock */
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200501static void iwl_mvm_bt_notif_iterator(void *_data, u8 *mac,
502 struct ieee80211_vif *vif)
503{
504 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200505 struct iwl_bt_iterator_data *data = _data;
506 struct iwl_mvm *mvm = data->mvm;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200507 struct ieee80211_chanctx_conf *chanctx_conf;
508 enum ieee80211_smps_mode smps_mode;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200509 int ave_rssi;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200510
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300511 lockdep_assert_held(&mvm->mutex);
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200512
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300513 if (vif->type != NL80211_IFTYPE_STATION &&
514 vif->type != NL80211_IFTYPE_AP)
515 return;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200516
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200517 smps_mode = IEEE80211_SMPS_AUTOMATIC;
518
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300519 chanctx_conf = rcu_dereference(vif->chanctx_conf);
520
521 /* If channel context is invalid or not on 2.4GHz .. */
522 if ((!chanctx_conf ||
523 chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ)) {
524 /* ... and it is an associated STATION, relax constraints */
525 if (vif->type == NL80211_IFTYPE_STATION && vif->bss_conf.assoc)
526 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX,
527 smps_mode);
528 return;
529 }
530
531 /* SoftAP / GO will always be primary */
532 if (vif->type == NL80211_IFTYPE_AP) {
533 if (!mvmvif->ap_active)
534 return;
535
536 /* the Ack / Cts kill mask must be default if AP / GO */
537 data->reduced_tx_power = false;
538
539 if (chanctx_conf == data->primary)
540 return;
541
542 /* downgrade the current primary no matter what its type is */
543 data->secondary = data->primary;
544 data->primary = chanctx_conf;
545 return;
546 }
547
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300548 data->num_bss_ifaces++;
549
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300550 /* we are now a STA / P2P Client, and take associated ones only */
Emmanuel Grumbach41069b42013-06-25 21:49:19 +0300551 if (!vif->bss_conf.assoc)
552 return;
553
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300554 /* STA / P2P Client, try to be primary if first vif */
555 if (!data->primary || data->primary == chanctx_conf)
556 data->primary = chanctx_conf;
557 else if (!data->secondary)
558 /* if secondary is not NULL, it might be a GO */
559 data->secondary = chanctx_conf;
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200560
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200561 if (data->notif->bt_status)
562 smps_mode = IEEE80211_SMPS_DYNAMIC;
563
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300564 if (le32_to_cpu(data->notif->bt_activity_grading) >= BT_LOW_TRAFFIC)
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200565 smps_mode = IEEE80211_SMPS_STATIC;
566
567 IWL_DEBUG_COEX(data->mvm,
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300568 "mac %d: bt_status %d bt_activity_grading %d smps_req %d\n",
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200569 mvmvif->id, data->notif->bt_status,
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300570 data->notif->bt_activity_grading, smps_mode);
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200571
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300572 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX, smps_mode);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200573
574 /* don't reduce the Tx power if in loose scheme */
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300575 if (iwl_get_coex_type(mvm, vif) == BT_COEX_LOOSE_LUT ||
576 mvm->cfg->bt_shared_single_ant) {
577 data->reduced_tx_power = false;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200578 return;
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300579 }
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200580
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300581 /* reduced Txpower only if BT is on, so ...*/
582 if (le32_to_cpu(data->notif->bt_activity_grading) == BT_OFF) {
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200583 /* ... cancel reduced Tx power ... */
584 if (iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, false))
585 IWL_ERR(mvm, "Couldn't send BT_CONFIG cmd\n");
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300586 data->reduced_tx_power = false;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200587
588 /* ... and there is no need to get reports on RSSI any more. */
Andrei Otcheretianski911222b2013-07-21 17:37:19 +0300589 mvmvif->bf_data.last_bt_coex_event = 0;
590 mvmvif->bf_data.bt_coex_max_thold = 0;
591 mvmvif->bf_data.bt_coex_min_thold = 0;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200592 return;
593 }
594
Andrei Otcheretianski911222b2013-07-21 17:37:19 +0300595 /* try to get the avg rssi from fw */
596 ave_rssi = mvmvif->bf_data.ave_beacon_signal;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200597
598 /* if the RSSI isn't valid, fake it is very low */
599 if (!ave_rssi)
600 ave_rssi = -100;
601 if (ave_rssi > BT_ENABLE_REDUCED_TXPOWER_THRESHOLD) {
602 if (iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, true))
603 IWL_ERR(mvm, "Couldn't send BT_CONFIG cmd\n");
604
605 /*
606 * bt_kill_msk can be BT_KILL_MSK_REDUCED_TXPOW only if all the
607 * BSS / P2P clients have rssi above threshold.
608 * We set the bt_kill_msk to BT_KILL_MSK_REDUCED_TXPOW before
609 * the iteration, if one interface's rssi isn't good enough,
610 * bt_kill_msk will be set to default values.
611 */
612 } else if (ave_rssi < BT_DISABLE_REDUCED_TXPOWER_THRESHOLD) {
613 if (iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, false))
614 IWL_ERR(mvm, "Couldn't send BT_CONFIG cmd\n");
615
616 /*
617 * One interface hasn't rssi above threshold, bt_kill_msk must
618 * be set to default values.
619 */
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300620 data->reduced_tx_power = false;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200621 }
622
623 /* Begin to monitor the RSSI: it may influence the reduced Tx power */
Andrei Otcheretianski911222b2013-07-21 17:37:19 +0300624
625 /* reset previous bt coex event tracking */
626 mvmvif->bf_data.last_bt_coex_event = 0;
627 mvmvif->bf_data.bt_coex_max_thold =
628 BT_ENABLE_REDUCED_TXPOWER_THRESHOLD;
629 mvmvif->bf_data.bt_coex_min_thold =
630 BT_DISABLE_REDUCED_TXPOWER_THRESHOLD;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200631}
632
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +0300633static void iwl_mvm_bt_coex_notif_handle(struct iwl_mvm *mvm)
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200634{
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200635 struct iwl_bt_iterator_data data = {
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200636 .mvm = mvm,
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +0300637 .notif = &mvm->last_bt_notif,
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300638 .reduced_tx_power = true,
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200639 };
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300640 struct iwl_bt_coex_ci_cmd cmd = {};
641 u8 ci_bw_idx;
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200642
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300643 rcu_read_lock();
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200644 ieee80211_iterate_active_interfaces_atomic(
645 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
646 iwl_mvm_bt_notif_iterator, &data);
647
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300648 if (data.primary) {
649 struct ieee80211_chanctx_conf *chan = data.primary;
650 if (WARN_ON(!chan->def.chan)) {
651 rcu_read_unlock();
652 return;
653 }
654
655 if (chan->def.width < NL80211_CHAN_WIDTH_40) {
656 ci_bw_idx = 0;
657 cmd.co_run_bw_primary = 0;
658 } else {
659 cmd.co_run_bw_primary = 1;
660 if (chan->def.center_freq1 >
661 chan->def.chan->center_freq)
662 ci_bw_idx = 2;
663 else
664 ci_bw_idx = 1;
665 }
666
667 cmd.bt_primary_ci =
668 iwl_ci_mask[chan->def.chan->hw_value][ci_bw_idx];
669 cmd.primary_ch_phy_id = *((u16 *)data.primary->drv_priv);
670 }
671
672 if (data.secondary) {
673 struct ieee80211_chanctx_conf *chan = data.secondary;
674 if (WARN_ON(!data.secondary->def.chan)) {
675 rcu_read_unlock();
676 return;
677 }
678
679 if (chan->def.width < NL80211_CHAN_WIDTH_40) {
680 ci_bw_idx = 0;
681 cmd.co_run_bw_secondary = 0;
682 } else {
683 cmd.co_run_bw_secondary = 1;
684 if (chan->def.center_freq1 >
685 chan->def.chan->center_freq)
686 ci_bw_idx = 2;
687 else
688 ci_bw_idx = 1;
689 }
690
691 cmd.bt_secondary_ci =
692 iwl_ci_mask[chan->def.chan->hw_value][ci_bw_idx];
693 cmd.secondary_ch_phy_id = *((u16 *)data.primary->drv_priv);
694 }
695
696 rcu_read_unlock();
697
698 /* Don't spam the fw with the same command over and over */
699 if (memcmp(&cmd, &mvm->last_bt_ci_cmd, sizeof(cmd))) {
700 if (iwl_mvm_send_cmd_pdu(mvm, BT_COEX_CI, CMD_SYNC,
701 sizeof(cmd), &cmd))
702 IWL_ERR(mvm, "Failed to send BT_CI cmd");
703 memcpy(&mvm->last_bt_ci_cmd, &cmd, sizeof(cmd));
704 }
705
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200706 /*
707 * If there are no BSS / P2P client interfaces, reduced Tx Power is
708 * irrelevant since it is based on the RSSI coming from the beacon.
709 * Use BT_KILL_MSK_DEFAULT in that case.
710 */
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300711 data.reduced_tx_power = data.reduced_tx_power && data.num_bss_ifaces;
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200712
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300713 if (iwl_mvm_bt_udpate_ctrl_kill_msk(mvm, data.reduced_tx_power))
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200714 IWL_ERR(mvm, "Failed to update the ctrl_kill_msk\n");
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200715}
716
717/* upon association, the fw will send in BT Coex notification */
718int iwl_mvm_rx_bt_coex_notif(struct iwl_mvm *mvm,
719 struct iwl_rx_cmd_buffer *rxb,
720 struct iwl_device_cmd *dev_cmd)
721{
722 struct iwl_rx_packet *pkt = rxb_addr(rxb);
723 struct iwl_bt_coex_profile_notif *notif = (void *)pkt->data;
724
725
726 IWL_DEBUG_COEX(mvm, "BT Coex Notification received\n");
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300727 IWL_DEBUG_COEX(mvm, "\tBT status: %s\n",
728 notif->bt_status ? "ON" : "OFF");
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200729 IWL_DEBUG_COEX(mvm, "\tBT open conn %d\n", notif->bt_open_conn);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300730 IWL_DEBUG_COEX(mvm, "\tBT ci compliance %d\n", notif->bt_ci_compliance);
731 IWL_DEBUG_COEX(mvm, "\tBT primary_ch_lut %d\n",
732 le32_to_cpu(notif->primary_ch_lut));
733 IWL_DEBUG_COEX(mvm, "\tBT secondary_ch_lut %d\n",
734 le32_to_cpu(notif->secondary_ch_lut));
735 IWL_DEBUG_COEX(mvm, "\tBT activity grading %d\n",
736 le32_to_cpu(notif->bt_activity_grading));
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200737 IWL_DEBUG_COEX(mvm, "\tBT agg traffic load %d\n",
738 notif->bt_agg_traffic_load);
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200739
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +0300740 /* remember this notification for future use: rssi fluctuations */
741 memcpy(&mvm->last_bt_notif, notif, sizeof(mvm->last_bt_notif));
742
743 iwl_mvm_bt_coex_notif_handle(mvm);
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200744
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200745 /*
746 * This is an async handler for a notification, returning anything other
747 * than 0 doesn't make sense even if HCMD failed.
748 */
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200749 return 0;
750}
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200751
752static void iwl_mvm_bt_rssi_iterator(void *_data, u8 *mac,
753 struct ieee80211_vif *vif)
754{
755 struct iwl_mvm_vif *mvmvif = (void *)vif->drv_priv;
756 struct iwl_bt_iterator_data *data = _data;
757 struct iwl_mvm *mvm = data->mvm;
758
759 struct ieee80211_sta *sta;
760 struct iwl_mvm_sta *mvmsta;
761
762 if (vif->type != NL80211_IFTYPE_STATION ||
763 mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT)
764 return;
765
766 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[mvmvif->ap_sta_id],
767 lockdep_is_held(&mvm->mutex));
768 mvmsta = (void *)sta->drv_priv;
769
Emmanuel Grumbach8e0366f2013-06-25 21:57:08 +0300770 data->num_bss_ifaces++;
771
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200772 /*
773 * This interface doesn't support reduced Tx power (because of low
774 * RSSI probably), then set bt_kill_msk to default values.
775 */
776 if (!mvmsta->bt_reduced_txpower)
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300777 data->reduced_tx_power = false;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200778 /* else - possibly leave it to BT_KILL_MSK_REDUCED_TXPOW */
779}
780
781void iwl_mvm_bt_rssi_event(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
782 enum ieee80211_rssi_event rssi_event)
783{
784 struct iwl_mvm_vif *mvmvif = (void *)vif->drv_priv;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200785 struct iwl_bt_iterator_data data = {
786 .mvm = mvm,
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300787 .reduced_tx_power = true,
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200788 };
789 int ret;
790
Johannes Berg3dd1cd22013-10-02 12:05:24 +0200791 lockdep_assert_held(&mvm->mutex);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200792
793 /* Rssi update while not associated ?! */
794 if (WARN_ON_ONCE(mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg3dd1cd22013-10-02 12:05:24 +0200795 return;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200796
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300797 /* No BT - reports should be disabled */
798 if (le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) == BT_OFF)
Johannes Berg3dd1cd22013-10-02 12:05:24 +0200799 return;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200800
801 IWL_DEBUG_COEX(mvm, "RSSI for %pM is now %s\n", vif->bss_conf.bssid,
802 rssi_event == RSSI_EVENT_HIGH ? "HIGH" : "LOW");
803
804 /*
805 * Check if rssi is good enough for reduced Tx power, but not in loose
806 * scheme.
807 */
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300808 if (rssi_event == RSSI_EVENT_LOW || mvm->cfg->bt_shared_single_ant ||
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300809 iwl_get_coex_type(mvm, vif) == BT_COEX_LOOSE_LUT)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200810 ret = iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id,
811 false);
812 else
813 ret = iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, true);
814
815 if (ret)
816 IWL_ERR(mvm, "couldn't send BT_CONFIG HCMD upon RSSI event\n");
817
818 ieee80211_iterate_active_interfaces_atomic(
819 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
820 iwl_mvm_bt_rssi_iterator, &data);
821
822 /*
823 * If there are no BSS / P2P client interfaces, reduced Tx Power is
824 * irrelevant since it is based on the RSSI coming from the beacon.
825 * Use BT_KILL_MSK_DEFAULT in that case.
826 */
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300827 data.reduced_tx_power = data.reduced_tx_power && data.num_bss_ifaces;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200828
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300829 if (iwl_mvm_bt_udpate_ctrl_kill_msk(mvm, data.reduced_tx_power))
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200830 IWL_ERR(mvm, "Failed to update the ctrl_kill_msk\n");
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200831}
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200832
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300833void iwl_mvm_bt_coex_vif_change(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200834{
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300835 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NEWBT_COEX))
836 return;
837
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +0300838 iwl_mvm_bt_coex_notif_handle(mvm);
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200839}