blob: cbad3ef3de0e9e71dfa9c9c829f211dd834cedf2 [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 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2013 - 2014 Intel Corporation. All rights reserved.
Emmanuel Grumbach931d4162013-01-17 09:42:25 +02009 *
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 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020033 * Copyright(c) 2013 - 2014 Intel Corporation. All rights reserved.
Emmanuel Grumbach931d4162013-01-17 09:42:25 +020034 * 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 Grumbachee7bea52014-03-06 10:30:49 +020064#include <linux/ieee80211.h>
65#include <linux/etherdevice.h>
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +020066#include <net/mac80211.h>
67
Emmanuel Grumbach5b7ff612014-03-11 19:27:45 +020068#include "fw-api-coex.h"
Emmanuel Grumbach931d4162013-01-17 09:42:25 +020069#include "iwl-modparams.h"
70#include "mvm.h"
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +020071#include "iwl-debug.h"
Emmanuel Grumbach931d4162013-01-17 09:42:25 +020072
73#define EVENT_PRIO_ANT(_evt, _prio, _shrd_ant) \
74 [(_evt)] = (((_prio) << BT_COEX_PRIO_TBL_PRIO_POS) | \
75 ((_shrd_ant) << BT_COEX_PRIO_TBL_SHRD_ANT_POS))
76
77static const u8 iwl_bt_prio_tbl[BT_COEX_PRIO_TBL_EVT_MAX] = {
78 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_INIT_CALIB1,
79 BT_COEX_PRIO_TBL_PRIO_BYPASS, 0),
80 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_INIT_CALIB2,
81 BT_COEX_PRIO_TBL_PRIO_BYPASS, 1),
82 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_LOW1,
83 BT_COEX_PRIO_TBL_PRIO_LOW, 0),
84 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_LOW2,
85 BT_COEX_PRIO_TBL_PRIO_LOW, 1),
86 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_HIGH1,
87 BT_COEX_PRIO_TBL_PRIO_HIGH, 0),
88 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_HIGH2,
89 BT_COEX_PRIO_TBL_PRIO_HIGH, 1),
90 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_DTIM,
91 BT_COEX_PRIO_TBL_DISABLED, 0),
92 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_SCAN52,
93 BT_COEX_PRIO_TBL_PRIO_COEX_OFF, 0),
94 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_SCAN24,
95 BT_COEX_PRIO_TBL_PRIO_COEX_ON, 0),
96 EVENT_PRIO_ANT(BT_COEX_PRIO_TBL_EVT_IDLE,
97 BT_COEX_PRIO_TBL_PRIO_COEX_IDLE, 0),
98 0, 0, 0, 0, 0, 0,
99};
100
101#undef EVENT_PRIO_ANT
102
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200103#define BT_ENABLE_REDUCED_TXPOWER_THRESHOLD (-62)
104#define BT_DISABLE_REDUCED_TXPOWER_THRESHOLD (-65)
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300105#define BT_ANTENNA_COUPLING_THRESHOLD (30)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200106
Emmanuel Grumbachae397472014-03-30 16:55:18 +0300107static int iwl_send_bt_prio_tbl(struct iwl_mvm *mvm)
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200108{
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300109 return iwl_mvm_send_cmd_pdu(mvm, BT_COEX_PRIO_TABLE, 0,
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200110 sizeof(struct iwl_bt_coex_prio_tbl_cmd),
111 &iwl_bt_prio_tbl);
112}
113
Emmanuel Grumbach2de13ca2013-06-30 07:43:28 +0300114const u32 iwl_bt_ack_kill_msk[BT_KILL_MSK_MAX] = {
Emmanuel Grumbach5b7e6622013-03-10 20:15:24 +0200115 [BT_KILL_MSK_DEFAULT] = 0xffff0000,
116 [BT_KILL_MSK_SCO_HID_A2DP] = 0xffffffff,
117 [BT_KILL_MSK_REDUCED_TXPOW] = 0,
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200118};
119
Emmanuel Grumbach2de13ca2013-06-30 07:43:28 +0300120const u32 iwl_bt_cts_kill_msk[BT_KILL_MSK_MAX] = {
Emmanuel Grumbach5b7e6622013-03-10 20:15:24 +0200121 [BT_KILL_MSK_DEFAULT] = 0xffff0000,
122 [BT_KILL_MSK_SCO_HID_A2DP] = 0xffffffff,
123 [BT_KILL_MSK_REDUCED_TXPOW] = 0,
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200124};
125
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300126static const __le32 iwl_bt_prio_boost[BT_COEX_BOOST_SIZE] = {
Emmanuel Grumbach2adc8942014-05-11 17:28:05 +0300127 cpu_to_le32(0xf0f0f0f0), /* 50% */
128 cpu_to_le32(0xc0c0c0c0), /* 25% */
129 cpu_to_le32(0xfcfcfcfc), /* 75% */
130 cpu_to_le32(0xfefefefe), /* 87.5% */
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200131};
132
Emmanuel Grumbachd1d5e3c2013-09-11 13:33:28 +0300133static const __le32 iwl_single_shared_ant[BT_COEX_MAX_LUT][BT_COEX_LUT_SIZE] = {
134 {
135 cpu_to_le32(0x40000000),
136 cpu_to_le32(0x00000000),
137 cpu_to_le32(0x44000000),
138 cpu_to_le32(0x00000000),
139 cpu_to_le32(0x40000000),
140 cpu_to_le32(0x00000000),
141 cpu_to_le32(0x44000000),
142 cpu_to_le32(0x00000000),
143 cpu_to_le32(0xc0004000),
144 cpu_to_le32(0xf0005000),
145 cpu_to_le32(0xc0004000),
146 cpu_to_le32(0xf0005000),
147 },
148 {
149 cpu_to_le32(0x40000000),
150 cpu_to_le32(0x00000000),
151 cpu_to_le32(0x44000000),
152 cpu_to_le32(0x00000000),
153 cpu_to_le32(0x40000000),
154 cpu_to_le32(0x00000000),
155 cpu_to_le32(0x44000000),
156 cpu_to_le32(0x00000000),
157 cpu_to_le32(0xc0004000),
158 cpu_to_le32(0xf0005000),
159 cpu_to_le32(0xc0004000),
160 cpu_to_le32(0xf0005000),
161 },
162 {
163 cpu_to_le32(0x40000000),
164 cpu_to_le32(0x00000000),
165 cpu_to_le32(0x44000000),
166 cpu_to_le32(0x00000000),
167 cpu_to_le32(0x40000000),
168 cpu_to_le32(0x00000000),
169 cpu_to_le32(0x44000000),
170 cpu_to_le32(0x00000000),
171 cpu_to_le32(0xc0004000),
172 cpu_to_le32(0xf0005000),
173 cpu_to_le32(0xc0004000),
174 cpu_to_le32(0xf0005000),
175 },
176};
177
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300178static const __le32 iwl_combined_lookup[BT_COEX_MAX_LUT][BT_COEX_LUT_SIZE] = {
179 {
180 /* Tight */
181 cpu_to_le32(0xaaaaaaaa),
182 cpu_to_le32(0xaaaaaaaa),
183 cpu_to_le32(0xaeaaaaaa),
184 cpu_to_le32(0xaaaaaaaa),
185 cpu_to_le32(0xcc00ff28),
186 cpu_to_le32(0x0000aaaa),
187 cpu_to_le32(0xcc00aaaa),
188 cpu_to_le32(0x0000aaaa),
189 cpu_to_le32(0xc0004000),
Emmanuel Grumbacha6bc9282014-04-13 15:51:41 +0300190 cpu_to_le32(0x00004000),
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300191 cpu_to_le32(0xf0005000),
192 cpu_to_le32(0xf0005000),
193 },
194 {
195 /* Loose */
196 cpu_to_le32(0xaaaaaaaa),
197 cpu_to_le32(0xaaaaaaaa),
198 cpu_to_le32(0xaaaaaaaa),
199 cpu_to_le32(0xaaaaaaaa),
200 cpu_to_le32(0xcc00ff28),
201 cpu_to_le32(0x0000aaaa),
202 cpu_to_le32(0xcc00aaaa),
203 cpu_to_le32(0x0000aaaa),
204 cpu_to_le32(0x00000000),
205 cpu_to_le32(0x00000000),
206 cpu_to_le32(0xf0005000),
207 cpu_to_le32(0xf0005000),
208 },
209 {
210 /* Tx Tx disabled */
211 cpu_to_le32(0xaaaaaaaa),
212 cpu_to_le32(0xaaaaaaaa),
Emmanuel Grumbacha6bc9282014-04-13 15:51:41 +0300213 cpu_to_le32(0xeeaaaaaa),
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300214 cpu_to_le32(0xaaaaaaaa),
215 cpu_to_le32(0xcc00ff28),
216 cpu_to_le32(0x0000aaaa),
217 cpu_to_le32(0xcc00aaaa),
218 cpu_to_le32(0x0000aaaa),
Emmanuel Grumbacha6bc9282014-04-13 15:51:41 +0300219 cpu_to_le32(0xc0004000),
220 cpu_to_le32(0xc0004000),
221 cpu_to_le32(0xf0005000),
222 cpu_to_le32(0xf0005000),
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300223 },
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200224};
225
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300226/* 20MHz / 40MHz below / 40Mhz above*/
227static const __le64 iwl_ci_mask[][3] = {
228 /* dummy entry for channel 0 */
229 {cpu_to_le64(0), cpu_to_le64(0), cpu_to_le64(0)},
230 {
231 cpu_to_le64(0x0000001FFFULL),
232 cpu_to_le64(0x0ULL),
233 cpu_to_le64(0x00007FFFFFULL),
234 },
235 {
236 cpu_to_le64(0x000000FFFFULL),
237 cpu_to_le64(0x0ULL),
238 cpu_to_le64(0x0003FFFFFFULL),
239 },
240 {
241 cpu_to_le64(0x000003FFFCULL),
242 cpu_to_le64(0x0ULL),
243 cpu_to_le64(0x000FFFFFFCULL),
244 },
245 {
246 cpu_to_le64(0x00001FFFE0ULL),
247 cpu_to_le64(0x0ULL),
248 cpu_to_le64(0x007FFFFFE0ULL),
249 },
250 {
251 cpu_to_le64(0x00007FFF80ULL),
252 cpu_to_le64(0x00007FFFFFULL),
253 cpu_to_le64(0x01FFFFFF80ULL),
254 },
255 {
256 cpu_to_le64(0x0003FFFC00ULL),
257 cpu_to_le64(0x0003FFFFFFULL),
258 cpu_to_le64(0x0FFFFFFC00ULL),
259 },
260 {
261 cpu_to_le64(0x000FFFF000ULL),
262 cpu_to_le64(0x000FFFFFFCULL),
263 cpu_to_le64(0x3FFFFFF000ULL),
264 },
265 {
266 cpu_to_le64(0x007FFF8000ULL),
267 cpu_to_le64(0x007FFFFFE0ULL),
268 cpu_to_le64(0xFFFFFF8000ULL),
269 },
270 {
271 cpu_to_le64(0x01FFFE0000ULL),
272 cpu_to_le64(0x01FFFFFF80ULL),
273 cpu_to_le64(0xFFFFFE0000ULL),
274 },
275 {
276 cpu_to_le64(0x0FFFF00000ULL),
277 cpu_to_le64(0x0FFFFFFC00ULL),
278 cpu_to_le64(0x0ULL),
279 },
280 {
281 cpu_to_le64(0x3FFFC00000ULL),
282 cpu_to_le64(0x3FFFFFF000ULL),
283 cpu_to_le64(0x0)
284 },
285 {
286 cpu_to_le64(0xFFFE000000ULL),
287 cpu_to_le64(0xFFFFFF8000ULL),
288 cpu_to_le64(0x0)
289 },
290 {
291 cpu_to_le64(0xFFF8000000ULL),
292 cpu_to_le64(0xFFFFFE0000ULL),
293 cpu_to_le64(0x0)
294 },
295 {
Emmanuel Grumbachd2ccc902013-12-24 10:55:24 +0200296 cpu_to_le64(0xFFC0000000ULL),
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300297 cpu_to_le64(0x0ULL),
Emmanuel Grumbachd2ccc902013-12-24 10:55:24 +0200298 cpu_to_le64(0x0ULL)
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300299 },
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200300};
301
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300302static const __le32 iwl_bt_mprio_lut[BT_COEX_MULTI_PRIO_LUT_SIZE] = {
Emmanuel Grumbach2adc8942014-05-11 17:28:05 +0300303 cpu_to_le32(0x28412201),
304 cpu_to_le32(0x11118451),
Emmanuel Grumbache715c3a2013-06-18 05:34:58 +0300305};
306
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +0200307struct corunning_block_luts {
308 u8 range;
309 __le32 lut20[BT_COEX_CORUN_LUT_SIZE];
310};
311
312/*
313 * Ranges for the antenna coupling calibration / co-running block LUT:
314 * LUT0: [ 0, 12[
315 * LUT1: [12, 20[
316 * LUT2: [20, 21[
317 * LUT3: [21, 23[
318 * LUT4: [23, 27[
319 * LUT5: [27, 30[
320 * LUT6: [30, 32[
321 * LUT7: [32, 33[
322 * LUT8: [33, - [
323 */
324static const struct corunning_block_luts antenna_coupling_ranges[] = {
325 {
326 .range = 0,
327 .lut20 = {
328 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
329 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
330 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
331 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
332 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
333 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
334 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
335 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
336 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
337 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
338 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
339 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
340 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
341 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
342 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
343 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
344 },
345 },
346 {
347 .range = 12,
348 .lut20 = {
349 cpu_to_le32(0x00000001), cpu_to_le32(0x00000000),
350 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
351 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
352 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
353 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
354 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
355 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
356 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
357 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
358 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
359 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
360 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
361 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
362 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
363 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
364 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
365 },
366 },
367 {
368 .range = 20,
369 .lut20 = {
370 cpu_to_le32(0x00000002), cpu_to_le32(0x00000000),
371 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
372 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
373 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
374 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
375 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
376 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
377 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
378 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
379 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
380 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
381 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
382 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
383 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
384 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
385 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
386 },
387 },
388 {
389 .range = 21,
390 .lut20 = {
391 cpu_to_le32(0x00000003), cpu_to_le32(0x00000000),
392 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
393 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
394 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
395 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
396 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
397 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
398 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
399 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
400 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
401 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
402 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
403 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
404 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
405 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
406 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
407 },
408 },
409 {
410 .range = 23,
411 .lut20 = {
412 cpu_to_le32(0x00000004), cpu_to_le32(0x00000000),
413 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
414 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
415 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
416 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
417 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
418 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
419 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
420 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
421 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
422 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
423 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
424 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
425 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
426 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
427 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
428 },
429 },
430 {
431 .range = 27,
432 .lut20 = {
433 cpu_to_le32(0x00000005), cpu_to_le32(0x00000000),
434 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
435 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
436 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
437 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
438 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
439 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
440 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
441 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
442 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
443 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
444 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
445 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
446 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
447 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
448 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
449 },
450 },
451 {
452 .range = 30,
453 .lut20 = {
454 cpu_to_le32(0x00000006), cpu_to_le32(0x00000000),
455 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
456 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
457 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
458 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
459 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
460 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
461 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
462 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
463 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
464 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
465 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
466 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
467 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
468 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
469 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
470 },
471 },
472 {
473 .range = 32,
474 .lut20 = {
475 cpu_to_le32(0x00000007), cpu_to_le32(0x00000000),
476 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
477 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
478 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
479 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
480 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
481 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
482 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
483 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
484 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
485 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
486 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
487 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
488 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
489 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
490 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
491 },
492 },
493 {
494 .range = 33,
495 .lut20 = {
496 cpu_to_le32(0x00000008), cpu_to_le32(0x00000000),
497 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
498 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
499 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
500 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
501 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
502 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
503 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
504 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
505 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
506 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
507 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
508 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
509 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
510 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
511 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
512 },
513 },
514};
515
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300516static enum iwl_bt_coex_lut_type
517iwl_get_coex_type(struct iwl_mvm *mvm, const struct ieee80211_vif *vif)
518{
519 struct ieee80211_chanctx_conf *chanctx_conf;
520 enum iwl_bt_coex_lut_type ret;
521 u16 phy_ctx_id;
522
Emmanuel Grumbach9145d152013-07-18 08:45:41 +0300523 /*
524 * Checking that we hold mvm->mutex is a good idea, but the rate
525 * control can't acquire the mutex since it runs in Tx path.
526 * So this is racy in that case, but in the worst case, the AMPDU
527 * size limit will be wrong for a short time which is not a big
528 * issue.
529 */
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300530
531 rcu_read_lock();
532
533 chanctx_conf = rcu_dereference(vif->chanctx_conf);
534
535 if (!chanctx_conf ||
536 chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ) {
537 rcu_read_unlock();
538 return BT_COEX_LOOSE_LUT;
539 }
540
541 ret = BT_COEX_TX_DIS_LUT;
542
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300543 if (mvm->cfg->bt_shared_single_ant) {
544 rcu_read_unlock();
545 return ret;
546 }
547
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300548 phy_ctx_id = *((u16 *)chanctx_conf->drv_priv);
549
550 if (mvm->last_bt_ci_cmd.primary_ch_phy_id == phy_ctx_id)
551 ret = le32_to_cpu(mvm->last_bt_notif.primary_ch_lut);
552 else if (mvm->last_bt_ci_cmd.secondary_ch_phy_id == phy_ctx_id)
553 ret = le32_to_cpu(mvm->last_bt_notif.secondary_ch_lut);
554 /* else - default = TX TX disallowed */
555
556 rcu_read_unlock();
557
558 return ret;
559}
560
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200561int iwl_send_bt_init_conf(struct iwl_mvm *mvm)
562{
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300563 struct iwl_bt_coex_cmd *bt_cmd;
564 struct iwl_host_cmd cmd = {
565 .id = BT_CONFIG,
566 .len = { sizeof(*bt_cmd), },
567 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200568 };
569 int ret;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300570 u32 flags;
571
Emmanuel Grumbachae397472014-03-30 16:55:18 +0300572 ret = iwl_send_bt_prio_tbl(mvm);
573 if (ret)
574 return ret;
575
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300576 bt_cmd = kzalloc(sizeof(*bt_cmd), GFP_KERNEL);
577 if (!bt_cmd)
578 return -ENOMEM;
579 cmd.data[0] = bt_cmd;
580
581 bt_cmd->max_kill = 5;
Emmanuel Grumbach8a0063a2014-04-02 08:57:42 +0300582 bt_cmd->bt4_antenna_isolation_thr = BT_ANTENNA_COUPLING_THRESHOLD;
583 bt_cmd->bt4_antenna_isolation = iwlwifi_mod_params.ant_coupling;
584 bt_cmd->bt4_tx_tx_delta_freq_thr = 15;
585 bt_cmd->bt4_tx_rx_max_freq0 = 15;
Emmanuel Grumbache78973e2014-04-02 09:23:13 +0300586 bt_cmd->override_primary_lut = BT_COEX_INVALID_LUT;
587 bt_cmd->override_secondary_lut = BT_COEX_INVALID_LUT;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300588
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300589 flags = iwlwifi_mod_params.bt_coex_active ?
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300590 BT_COEX_NW : BT_COEX_DISABLE;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300591 bt_cmd->flags = cpu_to_le32(flags);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300592
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300593 bt_cmd->valid_bit_msk = cpu_to_le32(BT_VALID_ENABLE |
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300594 BT_VALID_BT_PRIO_BOOST |
595 BT_VALID_MAX_KILL |
596 BT_VALID_3W_TMRS |
597 BT_VALID_KILL_ACK |
598 BT_VALID_KILL_CTS |
599 BT_VALID_REDUCED_TX_POWER |
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300600 BT_VALID_LUT |
601 BT_VALID_WIFI_RX_SW_PRIO_BOOST |
602 BT_VALID_WIFI_TX_SW_PRIO_BOOST |
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300603 BT_VALID_ANT_ISOLATION |
604 BT_VALID_ANT_ISOLATION_THRS |
605 BT_VALID_TXTX_DELTA_FREQ_THRS |
Emmanuel Grumbachb9c509c2013-11-28 14:58:20 +0200606 BT_VALID_TXRX_MAX_FREQ_0 |
607 BT_VALID_SYNC_TO_SCO);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300608
Emmanuel Grumbach741e7032014-01-27 12:12:50 +0200609 if (IWL_MVM_BT_COEX_SYNC2SCO)
610 bt_cmd->flags |= cpu_to_le32(BT_COEX_SYNC2SCO);
611
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +0200612 if (IWL_MVM_BT_COEX_CORUNNING) {
Emmanuel Grumbach0fed2bc2014-04-13 22:55:27 +0300613 bt_cmd->valid_bit_msk |= cpu_to_le32(BT_VALID_CORUN_LUT_20 |
614 BT_VALID_CORUN_LUT_40);
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +0200615 bt_cmd->flags |= cpu_to_le32(BT_COEX_CORUNNING);
616 }
617
Emmanuel Grumbachcdb00562014-03-16 21:55:43 +0200618 if (IWL_MVM_BT_COEX_MPLUT) {
619 bt_cmd->flags |= cpu_to_le32(BT_COEX_MPLUT);
Emmanuel Grumbach0fed2bc2014-04-13 22:55:27 +0300620 bt_cmd->valid_bit_msk |= cpu_to_le32(BT_VALID_MULTI_PRIO_LUT);
Emmanuel Grumbachcdb00562014-03-16 21:55:43 +0200621 }
622
Emmanuel Grumbachd1d5e3c2013-09-11 13:33:28 +0300623 if (mvm->cfg->bt_shared_single_ant)
624 memcpy(&bt_cmd->decision_lut, iwl_single_shared_ant,
625 sizeof(iwl_single_shared_ant));
626 else
627 memcpy(&bt_cmd->decision_lut, iwl_combined_lookup,
628 sizeof(iwl_combined_lookup));
629
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +0200630 /* Take first Co-running block LUT to get started */
631 memcpy(bt_cmd->bt4_corun_lut20, antenna_coupling_ranges[0].lut20,
632 sizeof(bt_cmd->bt4_corun_lut20));
633 memcpy(bt_cmd->bt4_corun_lut40, antenna_coupling_ranges[0].lut20,
634 sizeof(bt_cmd->bt4_corun_lut40));
635
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300636 memcpy(&bt_cmd->bt_prio_boost, iwl_bt_prio_boost,
637 sizeof(iwl_bt_prio_boost));
638 memcpy(&bt_cmd->bt4_multiprio_lut, iwl_bt_mprio_lut,
639 sizeof(iwl_bt_mprio_lut));
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300640 bt_cmd->kill_ack_msk =
641 cpu_to_le32(iwl_bt_ack_kill_msk[BT_KILL_MSK_DEFAULT]);
642 bt_cmd->kill_cts_msk =
643 cpu_to_le32(iwl_bt_cts_kill_msk[BT_KILL_MSK_DEFAULT]);
644
645 memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif));
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300646 memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd));
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300647
648 ret = iwl_mvm_send_cmd(mvm, &cmd);
649
650 kfree(bt_cmd);
651 return ret;
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200652}
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200653
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200654static int iwl_mvm_bt_udpate_ctrl_kill_msk(struct iwl_mvm *mvm,
655 bool reduced_tx_power)
656{
657 enum iwl_bt_kill_msk bt_kill_msk;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300658 struct iwl_bt_coex_cmd *bt_cmd;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200659 struct iwl_bt_coex_profile_notif *notif = &mvm->last_bt_notif;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300660 struct iwl_host_cmd cmd = {
661 .id = BT_CONFIG,
662 .data[0] = &bt_cmd,
663 .len = { sizeof(*bt_cmd), },
664 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300665 };
666 int ret = 0;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200667
668 lockdep_assert_held(&mvm->mutex);
669
670 if (reduced_tx_power) {
671 /* Reduced Tx power has precedence on the type of the profile */
672 bt_kill_msk = BT_KILL_MSK_REDUCED_TXPOW;
673 } else {
674 /* Low latency BT profile is active: give higher prio to BT */
675 if (BT_MBOX_MSG(notif, 3, SCO_STATE) ||
676 BT_MBOX_MSG(notif, 3, A2DP_STATE) ||
677 BT_MBOX_MSG(notif, 3, SNIFF_STATE))
678 bt_kill_msk = BT_KILL_MSK_SCO_HID_A2DP;
679 else
680 bt_kill_msk = BT_KILL_MSK_DEFAULT;
681 }
682
683 IWL_DEBUG_COEX(mvm,
684 "Update kill_msk: %d - SCO %sactive A2DP %sactive SNIFF %sactive\n",
685 bt_kill_msk,
686 BT_MBOX_MSG(notif, 3, SCO_STATE) ? "" : "in",
687 BT_MBOX_MSG(notif, 3, A2DP_STATE) ? "" : "in",
688 BT_MBOX_MSG(notif, 3, SNIFF_STATE) ? "" : "in");
689
690 /* Don't send HCMD if there is no update */
691 if (bt_kill_msk == mvm->bt_kill_msk)
692 return 0;
693
694 mvm->bt_kill_msk = bt_kill_msk;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300695
696 bt_cmd = kzalloc(sizeof(*bt_cmd), GFP_KERNEL);
697 if (!bt_cmd)
698 return -ENOMEM;
699 cmd.data[0] = bt_cmd;
Emmanuel Grumbach7352cac2013-10-14 18:52:23 +0300700 bt_cmd->flags = cpu_to_le32(BT_COEX_NW);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300701
702 bt_cmd->kill_ack_msk = cpu_to_le32(iwl_bt_ack_kill_msk[bt_kill_msk]);
703 bt_cmd->kill_cts_msk = cpu_to_le32(iwl_bt_cts_kill_msk[bt_kill_msk]);
Emmanuel Grumbach7352cac2013-10-14 18:52:23 +0300704 bt_cmd->valid_bit_msk |= cpu_to_le32(BT_VALID_ENABLE |
705 BT_VALID_KILL_ACK |
706 BT_VALID_KILL_CTS);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200707
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300708 IWL_DEBUG_COEX(mvm, "ACK Kill msk = 0x%08x, CTS Kill msk = 0x%08x\n",
709 iwl_bt_ack_kill_msk[bt_kill_msk],
710 iwl_bt_cts_kill_msk[bt_kill_msk]);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300711
712 ret = iwl_mvm_send_cmd(mvm, &cmd);
713
714 kfree(bt_cmd);
715 return ret;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200716}
717
Emmanuel Grumbach32a65c32014-01-12 11:19:13 +0200718int iwl_mvm_bt_coex_reduced_txp(struct iwl_mvm *mvm, u8 sta_id, bool enable)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200719{
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300720 struct iwl_bt_coex_cmd *bt_cmd;
721 /* Send ASYNC since this can be sent from an atomic context */
722 struct iwl_host_cmd cmd = {
723 .id = BT_CONFIG,
724 .len = { sizeof(*bt_cmd), },
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +0200725 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300726 .flags = CMD_ASYNC,
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200727 };
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200728 struct iwl_mvm_sta *mvmsta;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300729 int ret;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200730
Emmanuel Grumbachf327b042014-01-14 08:30:32 +0200731 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, sta_id);
732 if (!mvmsta)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200733 return 0;
734
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200735 /* nothing to do */
Emmanuel Grumbach32a65c32014-01-12 11:19:13 +0200736 if (mvmsta->bt_reduced_txpower_dbg ||
737 mvmsta->bt_reduced_txpower == enable)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200738 return 0;
739
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300740 bt_cmd = kzalloc(sizeof(*bt_cmd), GFP_ATOMIC);
741 if (!bt_cmd)
742 return -ENOMEM;
743 cmd.data[0] = bt_cmd;
Emmanuel Grumbach7352cac2013-10-14 18:52:23 +0300744 bt_cmd->flags = cpu_to_le32(BT_COEX_NW);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300745
Emmanuel Grumbach7352cac2013-10-14 18:52:23 +0300746 bt_cmd->valid_bit_msk =
747 cpu_to_le32(BT_VALID_ENABLE | BT_VALID_REDUCED_TX_POWER);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300748 bt_cmd->bt_reduced_tx_power = sta_id;
749
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200750 if (enable)
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300751 bt_cmd->bt_reduced_tx_power |= BT_REDUCED_TX_POWER_BIT;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200752
753 IWL_DEBUG_COEX(mvm, "%sable reduced Tx Power for sta %d\n",
754 enable ? "en" : "dis", sta_id);
755
756 mvmsta->bt_reduced_txpower = enable;
757
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300758 ret = iwl_mvm_send_cmd(mvm, &cmd);
759
760 kfree(bt_cmd);
761 return ret;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200762}
763
764struct iwl_bt_iterator_data {
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200765 struct iwl_bt_coex_profile_notif *notif;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200766 struct iwl_mvm *mvm;
767 u32 num_bss_ifaces;
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300768 bool reduced_tx_power;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300769 struct ieee80211_chanctx_conf *primary;
770 struct ieee80211_chanctx_conf *secondary;
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200771 bool primary_ll;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200772};
773
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +0300774static inline
775void iwl_mvm_bt_coex_enable_rssi_event(struct iwl_mvm *mvm,
776 struct ieee80211_vif *vif,
777 bool enable, int rssi)
778{
779 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
780
781 mvmvif->bf_data.last_bt_coex_event = rssi;
782 mvmvif->bf_data.bt_coex_max_thold =
783 enable ? BT_ENABLE_REDUCED_TXPOWER_THRESHOLD : 0;
784 mvmvif->bf_data.bt_coex_min_thold =
785 enable ? BT_DISABLE_REDUCED_TXPOWER_THRESHOLD : 0;
786}
787
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300788/* must be called under rcu_read_lock */
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200789static void iwl_mvm_bt_notif_iterator(void *_data, u8 *mac,
790 struct ieee80211_vif *vif)
791{
792 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200793 struct iwl_bt_iterator_data *data = _data;
794 struct iwl_mvm *mvm = data->mvm;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200795 struct ieee80211_chanctx_conf *chanctx_conf;
796 enum ieee80211_smps_mode smps_mode;
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200797 u32 bt_activity_grading;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200798 int ave_rssi;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200799
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300800 lockdep_assert_held(&mvm->mutex);
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200801
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200802 switch (vif->type) {
803 case NL80211_IFTYPE_STATION:
Emmanuel Grumbach4d664492014-04-30 18:09:59 +0300804 /* Count BSSes vifs */
805 data->num_bss_ifaces++;
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200806 /* default smps_mode for BSS / P2P client is AUTOMATIC */
807 smps_mode = IEEE80211_SMPS_AUTOMATIC;
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200808 break;
809 case NL80211_IFTYPE_AP:
810 /* default smps_mode for AP / GO is OFF */
811 smps_mode = IEEE80211_SMPS_OFF;
812 if (!mvmvif->ap_ibss_active) {
813 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX,
814 smps_mode);
815 return;
816 }
817
818 /* the Ack / Cts kill mask must be default if AP / GO */
819 data->reduced_tx_power = false;
820 break;
821 default:
822 return;
823 }
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200824
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300825 chanctx_conf = rcu_dereference(vif->chanctx_conf);
826
827 /* If channel context is invalid or not on 2.4GHz .. */
828 if ((!chanctx_conf ||
829 chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ)) {
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200830 /* ... relax constraints and disable rssi events */
831 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX,
832 smps_mode);
Emmanuel Grumbach4d664492014-04-30 18:09:59 +0300833 data->reduced_tx_power = false;
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200834 if (vif->type == NL80211_IFTYPE_STATION)
835 iwl_mvm_bt_coex_enable_rssi_event(mvm, vif, false, 0);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300836 return;
837 }
838
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200839 bt_activity_grading = le32_to_cpu(data->notif->bt_activity_grading);
840 if (bt_activity_grading >= BT_HIGH_TRAFFIC)
841 smps_mode = IEEE80211_SMPS_STATIC;
842 else if (bt_activity_grading >= BT_LOW_TRAFFIC)
843 smps_mode = vif->type == NL80211_IFTYPE_AP ?
844 IEEE80211_SMPS_OFF :
845 IEEE80211_SMPS_DYNAMIC;
Emmanuel Grumbach4d664492014-04-30 18:09:59 +0300846
847 /* relax SMPS contraints for next association */
848 if (!vif->bss_conf.assoc)
849 smps_mode = IEEE80211_SMPS_AUTOMATIC;
850
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200851 IWL_DEBUG_COEX(data->mvm,
852 "mac %d: bt_status %d bt_activity_grading %d smps_req %d\n",
853 mvmvif->id, data->notif->bt_status, bt_activity_grading,
854 smps_mode);
855
856 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX, smps_mode);
857
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200858 /* low latency is always primary */
859 if (iwl_mvm_vif_low_latency(mvmvif)) {
860 data->primary_ll = true;
861
862 data->secondary = data->primary;
863 data->primary = chanctx_conf;
864 }
865
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300866 if (vif->type == NL80211_IFTYPE_AP) {
Johannes Berg5023d962013-07-31 14:07:43 +0200867 if (!mvmvif->ap_ibss_active)
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300868 return;
869
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300870 if (chanctx_conf == data->primary)
871 return;
872
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200873 if (!data->primary_ll) {
874 /*
875 * downgrade the current primary no matter what its
876 * type is.
877 */
878 data->secondary = data->primary;
879 data->primary = chanctx_conf;
880 } else {
881 /* there is low latency vif - we will be secondary */
882 data->secondary = chanctx_conf;
883 }
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300884 return;
885 }
886
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200887 /*
888 * STA / P2P Client, try to be primary if first vif. If we are in low
889 * latency mode, we are already in primary and just don't do much
890 */
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300891 if (!data->primary || data->primary == chanctx_conf)
892 data->primary = chanctx_conf;
893 else if (!data->secondary)
894 /* if secondary is not NULL, it might be a GO */
895 data->secondary = chanctx_conf;
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200896
Emmanuel Grumbach4d664492014-04-30 18:09:59 +0300897 /*
898 * don't reduce the Tx power if one of these is true:
899 * we are in LOOSE
900 * single share antenna product
901 * BT is active
902 * we are associated
903 */
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300904 if (iwl_get_coex_type(mvm, vif) == BT_COEX_LOOSE_LUT ||
Emmanuel Grumbach4d664492014-04-30 18:09:59 +0300905 mvm->cfg->bt_shared_single_ant || !vif->bss_conf.assoc ||
906 !data->notif->bt_status) {
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300907 data->reduced_tx_power = false;
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +0300908 iwl_mvm_bt_coex_enable_rssi_event(mvm, vif, false, 0);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200909 return;
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300910 }
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200911
Andrei Otcheretianski911222b2013-07-21 17:37:19 +0300912 /* try to get the avg rssi from fw */
913 ave_rssi = mvmvif->bf_data.ave_beacon_signal;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200914
915 /* if the RSSI isn't valid, fake it is very low */
916 if (!ave_rssi)
917 ave_rssi = -100;
918 if (ave_rssi > BT_ENABLE_REDUCED_TXPOWER_THRESHOLD) {
919 if (iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, true))
920 IWL_ERR(mvm, "Couldn't send BT_CONFIG cmd\n");
921
922 /*
923 * bt_kill_msk can be BT_KILL_MSK_REDUCED_TXPOW only if all the
924 * BSS / P2P clients have rssi above threshold.
925 * We set the bt_kill_msk to BT_KILL_MSK_REDUCED_TXPOW before
926 * the iteration, if one interface's rssi isn't good enough,
927 * bt_kill_msk will be set to default values.
928 */
929 } else if (ave_rssi < BT_DISABLE_REDUCED_TXPOWER_THRESHOLD) {
930 if (iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, false))
931 IWL_ERR(mvm, "Couldn't send BT_CONFIG cmd\n");
932
933 /*
934 * One interface hasn't rssi above threshold, bt_kill_msk must
935 * be set to default values.
936 */
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300937 data->reduced_tx_power = false;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200938 }
939
940 /* Begin to monitor the RSSI: it may influence the reduced Tx power */
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +0300941 iwl_mvm_bt_coex_enable_rssi_event(mvm, vif, true, ave_rssi);
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200942}
943
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +0300944static void iwl_mvm_bt_coex_notif_handle(struct iwl_mvm *mvm)
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200945{
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200946 struct iwl_bt_iterator_data data = {
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200947 .mvm = mvm,
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +0300948 .notif = &mvm->last_bt_notif,
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +0300949 .reduced_tx_power = true,
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200950 };
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300951 struct iwl_bt_coex_ci_cmd cmd = {};
952 u8 ci_bw_idx;
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200953
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300954 rcu_read_lock();
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200955 ieee80211_iterate_active_interfaces_atomic(
956 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
957 iwl_mvm_bt_notif_iterator, &data);
958
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300959 if (data.primary) {
960 struct ieee80211_chanctx_conf *chan = data.primary;
961 if (WARN_ON(!chan->def.chan)) {
962 rcu_read_unlock();
963 return;
964 }
965
966 if (chan->def.width < NL80211_CHAN_WIDTH_40) {
967 ci_bw_idx = 0;
968 cmd.co_run_bw_primary = 0;
969 } else {
970 cmd.co_run_bw_primary = 1;
971 if (chan->def.center_freq1 >
972 chan->def.chan->center_freq)
973 ci_bw_idx = 2;
974 else
975 ci_bw_idx = 1;
976 }
977
978 cmd.bt_primary_ci =
979 iwl_ci_mask[chan->def.chan->hw_value][ci_bw_idx];
980 cmd.primary_ch_phy_id = *((u16 *)data.primary->drv_priv);
981 }
982
983 if (data.secondary) {
984 struct ieee80211_chanctx_conf *chan = data.secondary;
985 if (WARN_ON(!data.secondary->def.chan)) {
986 rcu_read_unlock();
987 return;
988 }
989
990 if (chan->def.width < NL80211_CHAN_WIDTH_40) {
991 ci_bw_idx = 0;
992 cmd.co_run_bw_secondary = 0;
993 } else {
994 cmd.co_run_bw_secondary = 1;
995 if (chan->def.center_freq1 >
996 chan->def.chan->center_freq)
997 ci_bw_idx = 2;
998 else
999 ci_bw_idx = 1;
1000 }
1001
1002 cmd.bt_secondary_ci =
1003 iwl_ci_mask[chan->def.chan->hw_value][ci_bw_idx];
Emmanuel Grumbachc92f06a2013-10-29 22:50:49 +02001004 cmd.secondary_ch_phy_id = *((u16 *)data.secondary->drv_priv);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001005 }
1006
1007 rcu_read_unlock();
1008
1009 /* Don't spam the fw with the same command over and over */
1010 if (memcmp(&cmd, &mvm->last_bt_ci_cmd, sizeof(cmd))) {
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001011 if (iwl_mvm_send_cmd_pdu(mvm, BT_COEX_CI, 0,
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001012 sizeof(cmd), &cmd))
Johannes Berg3c6acb62014-05-07 11:47:53 +02001013 IWL_ERR(mvm, "Failed to send BT_CI cmd\n");
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001014 memcpy(&mvm->last_bt_ci_cmd, &cmd, sizeof(cmd));
1015 }
1016
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001017 /*
1018 * If there are no BSS / P2P client interfaces, reduced Tx Power is
1019 * irrelevant since it is based on the RSSI coming from the beacon.
1020 * Use BT_KILL_MSK_DEFAULT in that case.
1021 */
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +03001022 data.reduced_tx_power = data.reduced_tx_power && data.num_bss_ifaces;
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +02001023
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +03001024 if (iwl_mvm_bt_udpate_ctrl_kill_msk(mvm, data.reduced_tx_power))
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001025 IWL_ERR(mvm, "Failed to update the ctrl_kill_msk\n");
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001026}
1027
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001028int iwl_mvm_rx_bt_coex_notif(struct iwl_mvm *mvm,
1029 struct iwl_rx_cmd_buffer *rxb,
1030 struct iwl_device_cmd *dev_cmd)
1031{
1032 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1033 struct iwl_bt_coex_profile_notif *notif = (void *)pkt->data;
1034
1035
1036 IWL_DEBUG_COEX(mvm, "BT Coex Notification received\n");
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001037 IWL_DEBUG_COEX(mvm, "\tBT status: %s\n",
1038 notif->bt_status ? "ON" : "OFF");
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001039 IWL_DEBUG_COEX(mvm, "\tBT open conn %d\n", notif->bt_open_conn);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001040 IWL_DEBUG_COEX(mvm, "\tBT ci compliance %d\n", notif->bt_ci_compliance);
1041 IWL_DEBUG_COEX(mvm, "\tBT primary_ch_lut %d\n",
1042 le32_to_cpu(notif->primary_ch_lut));
1043 IWL_DEBUG_COEX(mvm, "\tBT secondary_ch_lut %d\n",
1044 le32_to_cpu(notif->secondary_ch_lut));
1045 IWL_DEBUG_COEX(mvm, "\tBT activity grading %d\n",
1046 le32_to_cpu(notif->bt_activity_grading));
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001047 IWL_DEBUG_COEX(mvm, "\tBT agg traffic load %d\n",
1048 notif->bt_agg_traffic_load);
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001049
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +03001050 /* remember this notification for future use: rssi fluctuations */
1051 memcpy(&mvm->last_bt_notif, notif, sizeof(mvm->last_bt_notif));
1052
1053 iwl_mvm_bt_coex_notif_handle(mvm);
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +02001054
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001055 /*
1056 * This is an async handler for a notification, returning anything other
1057 * than 0 doesn't make sense even if HCMD failed.
1058 */
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +02001059 return 0;
1060}
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001061
1062static void iwl_mvm_bt_rssi_iterator(void *_data, u8 *mac,
1063 struct ieee80211_vif *vif)
1064{
1065 struct iwl_mvm_vif *mvmvif = (void *)vif->drv_priv;
1066 struct iwl_bt_iterator_data *data = _data;
1067 struct iwl_mvm *mvm = data->mvm;
1068
1069 struct ieee80211_sta *sta;
1070 struct iwl_mvm_sta *mvmsta;
1071
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +03001072 struct ieee80211_chanctx_conf *chanctx_conf;
1073
1074 rcu_read_lock();
1075 chanctx_conf = rcu_dereference(vif->chanctx_conf);
1076 /* If channel context is invalid or not on 2.4GHz - don't count it */
1077 if (!chanctx_conf ||
1078 chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ) {
1079 rcu_read_unlock();
1080 return;
1081 }
1082 rcu_read_unlock();
1083
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001084 if (vif->type != NL80211_IFTYPE_STATION ||
1085 mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT)
1086 return;
1087
1088 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[mvmvif->ap_sta_id],
1089 lockdep_is_held(&mvm->mutex));
Emmanuel Grumbach56c07a92013-10-21 11:03:53 +03001090
1091 /* This can happen if the station has been removed right now */
1092 if (IS_ERR_OR_NULL(sta))
1093 return;
1094
Johannes Berg5b577a92013-11-14 18:20:04 +01001095 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001096
Emmanuel Grumbach8e0366f2013-06-25 21:57:08 +03001097 data->num_bss_ifaces++;
1098
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001099 /*
1100 * This interface doesn't support reduced Tx power (because of low
1101 * RSSI probably), then set bt_kill_msk to default values.
1102 */
1103 if (!mvmsta->bt_reduced_txpower)
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +03001104 data->reduced_tx_power = false;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001105 /* else - possibly leave it to BT_KILL_MSK_REDUCED_TXPOW */
1106}
1107
1108void iwl_mvm_bt_rssi_event(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1109 enum ieee80211_rssi_event rssi_event)
1110{
1111 struct iwl_mvm_vif *mvmvif = (void *)vif->drv_priv;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001112 struct iwl_bt_iterator_data data = {
1113 .mvm = mvm,
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +03001114 .reduced_tx_power = true,
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001115 };
1116 int ret;
1117
Johannes Berg3dd1cd22013-10-02 12:05:24 +02001118 lockdep_assert_held(&mvm->mutex);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001119
Emmanuel Grumbach1e929192014-03-04 10:28:23 +02001120 /*
1121 * Rssi update while not associated - can happen since the statistics
1122 * are handled asynchronously
1123 */
1124 if (mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT)
Johannes Berg3dd1cd22013-10-02 12:05:24 +02001125 return;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001126
Emmanuel Grumbach4515f302013-06-30 07:51:54 +03001127 /* No BT - reports should be disabled */
Emmanuel Grumbach0af88352013-10-15 12:37:38 +03001128 if (!mvm->last_bt_notif.bt_status)
Johannes Berg3dd1cd22013-10-02 12:05:24 +02001129 return;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001130
1131 IWL_DEBUG_COEX(mvm, "RSSI for %pM is now %s\n", vif->bss_conf.bssid,
1132 rssi_event == RSSI_EVENT_HIGH ? "HIGH" : "LOW");
1133
1134 /*
1135 * Check if rssi is good enough for reduced Tx power, but not in loose
1136 * scheme.
1137 */
Emmanuel Grumbach39149912013-07-14 13:40:21 +03001138 if (rssi_event == RSSI_EVENT_LOW || mvm->cfg->bt_shared_single_ant ||
Emmanuel Grumbach4515f302013-06-30 07:51:54 +03001139 iwl_get_coex_type(mvm, vif) == BT_COEX_LOOSE_LUT)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001140 ret = iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id,
1141 false);
1142 else
1143 ret = iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, true);
1144
1145 if (ret)
1146 IWL_ERR(mvm, "couldn't send BT_CONFIG HCMD upon RSSI event\n");
1147
1148 ieee80211_iterate_active_interfaces_atomic(
1149 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1150 iwl_mvm_bt_rssi_iterator, &data);
1151
1152 /*
1153 * If there are no BSS / P2P client interfaces, reduced Tx Power is
1154 * irrelevant since it is based on the RSSI coming from the beacon.
1155 * Use BT_KILL_MSK_DEFAULT in that case.
1156 */
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +03001157 data.reduced_tx_power = data.reduced_tx_power && data.num_bss_ifaces;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001158
Emmanuel Grumbach9e511c32013-03-29 14:52:17 +03001159 if (iwl_mvm_bt_udpate_ctrl_kill_msk(mvm, data.reduced_tx_power))
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001160 IWL_ERR(mvm, "Failed to update the ctrl_kill_msk\n");
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001161}
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001162
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001163#define LINK_QUAL_AGG_TIME_LIMIT_DEF (4000)
1164#define LINK_QUAL_AGG_TIME_LIMIT_BT_ACT (1200)
1165
Emmanuel Grumbach5b7ff612014-03-11 19:27:45 +02001166u16 iwl_mvm_coex_agg_time_limit(struct iwl_mvm *mvm,
1167 struct ieee80211_sta *sta)
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001168{
Johannes Berg5b577a92013-11-14 18:20:04 +01001169 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001170 enum iwl_bt_coex_lut_type lut_type;
1171
1172 if (le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) <
Emmanuel Grumbachc2119352013-11-13 22:00:30 +02001173 BT_HIGH_TRAFFIC)
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001174 return LINK_QUAL_AGG_TIME_LIMIT_DEF;
1175
1176 lut_type = iwl_get_coex_type(mvm, mvmsta->vif);
1177
1178 if (lut_type == BT_COEX_LOOSE_LUT)
1179 return LINK_QUAL_AGG_TIME_LIMIT_DEF;
1180
1181 /* tight coex, high bt traffic, reduce AGG time limit */
1182 return LINK_QUAL_AGG_TIME_LIMIT_BT_ACT;
1183}
1184
Emmanuel Grumbachffa6c702013-10-06 11:41:20 +03001185bool iwl_mvm_bt_coex_is_mimo_allowed(struct iwl_mvm *mvm,
1186 struct ieee80211_sta *sta)
1187{
Johannes Berg5b577a92013-11-14 18:20:04 +01001188 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbachffa6c702013-10-06 11:41:20 +03001189
1190 if (le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) <
1191 BT_HIGH_TRAFFIC)
1192 return true;
1193
1194 /*
1195 * In Tight, BT can't Rx while we Tx, so use both antennas since BT is
1196 * already killed.
1197 * In Loose, BT can Rx while we Tx, so forbid MIMO to let BT Rx while we
1198 * Tx.
1199 */
1200 return iwl_get_coex_type(mvm, mvmsta->vif) == BT_COEX_TIGHT_LUT;
1201}
1202
Eliad Peller2fd647f2014-03-13 17:21:36 +02001203bool iwl_mvm_bt_coex_is_tpc_allowed(struct iwl_mvm *mvm,
1204 enum ieee80211_band band)
1205{
1206 u32 bt_activity = le32_to_cpu(mvm->last_bt_notif.bt_activity_grading);
1207
1208 if (band != IEEE80211_BAND_2GHZ)
1209 return false;
1210
1211 return bt_activity >= BT_LOW_TRAFFIC;
1212}
1213
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001214u8 iwl_mvm_bt_coex_tx_prio(struct iwl_mvm *mvm, struct ieee80211_hdr *hdr,
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001215 struct ieee80211_tx_info *info, u8 ac)
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001216{
1217 __le16 fc = hdr->frame_control;
1218
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001219 if (info->band != IEEE80211_BAND_2GHZ)
1220 return 0;
1221
Emmanuel Grumbachcdb00562014-03-16 21:55:43 +02001222 if (unlikely(mvm->bt_tx_prio))
1223 return mvm->bt_tx_prio - 1;
1224
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001225 /* High prio packet (wrt. BT coex) if it is EAPOL, MCAST or MGMT */
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001226 if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO ||
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001227 is_multicast_ether_addr(hdr->addr1) ||
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001228 ieee80211_is_ctl(fc) || ieee80211_is_mgmt(fc) ||
1229 ieee80211_is_nullfunc(fc) || ieee80211_is_qos_nullfunc(fc))
1230 return 3;
1231
1232 switch (ac) {
1233 case IEEE80211_AC_BE:
1234 return 1;
1235 case IEEE80211_AC_VO:
1236 return 3;
1237 case IEEE80211_AC_VI:
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001238 return 2;
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001239 default:
1240 break;
1241 }
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001242
1243 return 0;
1244}
1245
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001246void iwl_mvm_bt_coex_vif_change(struct iwl_mvm *mvm)
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001247{
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +03001248 iwl_mvm_bt_coex_notif_handle(mvm);
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001249}
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001250
1251int iwl_mvm_rx_ant_coupling_notif(struct iwl_mvm *mvm,
1252 struct iwl_rx_cmd_buffer *rxb,
1253 struct iwl_device_cmd *dev_cmd)
1254{
1255 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1256 u32 ant_isolation = le32_to_cpup((void *)pkt->data);
1257 u8 __maybe_unused lower_bound, upper_bound;
Emmanuel Grumbachfff47eb2014-04-02 15:29:07 +03001258 int ret;
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001259 u8 lut;
1260
1261 struct iwl_bt_coex_cmd *bt_cmd;
1262 struct iwl_host_cmd cmd = {
1263 .id = BT_CONFIG,
1264 .len = { sizeof(*bt_cmd), },
1265 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001266 };
1267
1268 if (!IWL_MVM_BT_COEX_CORUNNING)
1269 return 0;
1270
1271 lockdep_assert_held(&mvm->mutex);
1272
1273 if (ant_isolation == mvm->last_ant_isol)
1274 return 0;
1275
1276 for (lut = 0; lut < ARRAY_SIZE(antenna_coupling_ranges) - 1; lut++)
1277 if (ant_isolation < antenna_coupling_ranges[lut + 1].range)
1278 break;
1279
1280 lower_bound = antenna_coupling_ranges[lut].range;
1281
1282 if (lut < ARRAY_SIZE(antenna_coupling_ranges) - 1)
1283 upper_bound = antenna_coupling_ranges[lut + 1].range;
1284 else
1285 upper_bound = antenna_coupling_ranges[lut].range;
1286
1287 IWL_DEBUG_COEX(mvm, "Antenna isolation=%d in range [%d,%d[, lut=%d\n",
1288 ant_isolation, lower_bound, upper_bound, lut);
1289
1290 mvm->last_ant_isol = ant_isolation;
1291
1292 if (mvm->last_corun_lut == lut)
1293 return 0;
1294
1295 mvm->last_corun_lut = lut;
1296
1297 bt_cmd = kzalloc(sizeof(*bt_cmd), GFP_KERNEL);
1298 if (!bt_cmd)
1299 return 0;
1300 cmd.data[0] = bt_cmd;
1301
1302 bt_cmd->flags = cpu_to_le32(BT_COEX_NW);
1303 bt_cmd->valid_bit_msk |= cpu_to_le32(BT_VALID_ENABLE |
1304 BT_VALID_CORUN_LUT_20 |
1305 BT_VALID_CORUN_LUT_40);
1306
1307 /* For the moment, use the same LUT for 20GHz and 40GHz */
1308 memcpy(bt_cmd->bt4_corun_lut20, antenna_coupling_ranges[lut].lut20,
1309 sizeof(bt_cmd->bt4_corun_lut20));
1310
1311 memcpy(bt_cmd->bt4_corun_lut40, antenna_coupling_ranges[lut].lut20,
1312 sizeof(bt_cmd->bt4_corun_lut40));
1313
Emmanuel Grumbachfff47eb2014-04-02 15:29:07 +03001314 ret = iwl_mvm_send_cmd(mvm, &cmd);
1315
1316 kfree(bt_cmd);
1317 return ret;
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001318}