blob: a65b1bb12b3dc4f68acbe44b27e4f1eb541a36d1 [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
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +030073#define BT_ANTENNA_COUPLING_THRESHOLD (30)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +020074
Emmanuel Grumbach1459f262014-07-06 09:34:38 +030075const u32 iwl_bt_ctl_kill_msk[BT_KILL_MSK_MAX] = {
76 [BT_KILL_MSK_DEFAULT] = 0xfffffc00,
77 [BT_KILL_MSK_NEVER] = 0xffffffff,
78 [BT_KILL_MSK_ALWAYS] = 0,
Emmanuel Grumbach931d4162013-01-17 09:42:25 +020079};
80
Emmanuel Grumbach1459f262014-07-06 09:34:38 +030081const u8 iwl_bt_cts_kill_msk[BT_MAX_AG][BT_COEX_MAX_LUT] = {
82 {
83 BT_KILL_MSK_ALWAYS,
84 BT_KILL_MSK_ALWAYS,
85 BT_KILL_MSK_ALWAYS,
86 },
87 {
88 BT_KILL_MSK_NEVER,
89 BT_KILL_MSK_NEVER,
90 BT_KILL_MSK_NEVER,
91 },
92 {
93 BT_KILL_MSK_NEVER,
94 BT_KILL_MSK_NEVER,
95 BT_KILL_MSK_NEVER,
96 },
97 {
98 BT_KILL_MSK_DEFAULT,
99 BT_KILL_MSK_NEVER,
100 BT_KILL_MSK_DEFAULT,
101 },
102};
103
104const u8 iwl_bt_ack_kill_msk[BT_MAX_AG][BT_COEX_MAX_LUT] = {
105 {
106 BT_KILL_MSK_ALWAYS,
107 BT_KILL_MSK_ALWAYS,
108 BT_KILL_MSK_ALWAYS,
109 },
110 {
111 BT_KILL_MSK_ALWAYS,
112 BT_KILL_MSK_ALWAYS,
113 BT_KILL_MSK_ALWAYS,
114 },
115 {
116 BT_KILL_MSK_ALWAYS,
117 BT_KILL_MSK_ALWAYS,
118 BT_KILL_MSK_ALWAYS,
119 },
120 {
121 BT_KILL_MSK_DEFAULT,
122 BT_KILL_MSK_ALWAYS,
123 BT_KILL_MSK_DEFAULT,
124 },
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200125};
126
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300127static const __le32 iwl_bt_prio_boost[BT_COEX_BOOST_SIZE] = {
Emmanuel Grumbach2adc8942014-05-11 17:28:05 +0300128 cpu_to_le32(0xf0f0f0f0), /* 50% */
129 cpu_to_le32(0xc0c0c0c0), /* 25% */
130 cpu_to_le32(0xfcfcfcfc), /* 75% */
131 cpu_to_le32(0xfefefefe), /* 87.5% */
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200132};
133
Emmanuel Grumbachd1d5e3c2013-09-11 13:33:28 +0300134static const __le32 iwl_single_shared_ant[BT_COEX_MAX_LUT][BT_COEX_LUT_SIZE] = {
135 {
136 cpu_to_le32(0x40000000),
137 cpu_to_le32(0x00000000),
138 cpu_to_le32(0x44000000),
139 cpu_to_le32(0x00000000),
140 cpu_to_le32(0x40000000),
141 cpu_to_le32(0x00000000),
142 cpu_to_le32(0x44000000),
143 cpu_to_le32(0x00000000),
144 cpu_to_le32(0xc0004000),
145 cpu_to_le32(0xf0005000),
146 cpu_to_le32(0xc0004000),
147 cpu_to_le32(0xf0005000),
148 },
149 {
150 cpu_to_le32(0x40000000),
151 cpu_to_le32(0x00000000),
152 cpu_to_le32(0x44000000),
153 cpu_to_le32(0x00000000),
154 cpu_to_le32(0x40000000),
155 cpu_to_le32(0x00000000),
156 cpu_to_le32(0x44000000),
157 cpu_to_le32(0x00000000),
158 cpu_to_le32(0xc0004000),
159 cpu_to_le32(0xf0005000),
160 cpu_to_le32(0xc0004000),
161 cpu_to_le32(0xf0005000),
162 },
163 {
164 cpu_to_le32(0x40000000),
165 cpu_to_le32(0x00000000),
166 cpu_to_le32(0x44000000),
167 cpu_to_le32(0x00000000),
168 cpu_to_le32(0x40000000),
169 cpu_to_le32(0x00000000),
170 cpu_to_le32(0x44000000),
171 cpu_to_le32(0x00000000),
172 cpu_to_le32(0xc0004000),
173 cpu_to_le32(0xf0005000),
174 cpu_to_le32(0xc0004000),
175 cpu_to_le32(0xf0005000),
176 },
177};
178
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300179static const __le32 iwl_combined_lookup[BT_COEX_MAX_LUT][BT_COEX_LUT_SIZE] = {
180 {
181 /* Tight */
182 cpu_to_le32(0xaaaaaaaa),
183 cpu_to_le32(0xaaaaaaaa),
184 cpu_to_le32(0xaeaaaaaa),
185 cpu_to_le32(0xaaaaaaaa),
186 cpu_to_le32(0xcc00ff28),
187 cpu_to_le32(0x0000aaaa),
188 cpu_to_le32(0xcc00aaaa),
189 cpu_to_le32(0x0000aaaa),
190 cpu_to_le32(0xc0004000),
Emmanuel Grumbacha6bc9282014-04-13 15:51:41 +0300191 cpu_to_le32(0x00004000),
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300192 cpu_to_le32(0xf0005000),
193 cpu_to_le32(0xf0005000),
194 },
195 {
196 /* Loose */
197 cpu_to_le32(0xaaaaaaaa),
198 cpu_to_le32(0xaaaaaaaa),
199 cpu_to_le32(0xaaaaaaaa),
200 cpu_to_le32(0xaaaaaaaa),
201 cpu_to_le32(0xcc00ff28),
202 cpu_to_le32(0x0000aaaa),
203 cpu_to_le32(0xcc00aaaa),
204 cpu_to_le32(0x0000aaaa),
205 cpu_to_le32(0x00000000),
206 cpu_to_le32(0x00000000),
207 cpu_to_le32(0xf0005000),
208 cpu_to_le32(0xf0005000),
209 },
210 {
211 /* Tx Tx disabled */
212 cpu_to_le32(0xaaaaaaaa),
213 cpu_to_le32(0xaaaaaaaa),
Emmanuel Grumbacha6bc9282014-04-13 15:51:41 +0300214 cpu_to_le32(0xeeaaaaaa),
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300215 cpu_to_le32(0xaaaaaaaa),
216 cpu_to_le32(0xcc00ff28),
217 cpu_to_le32(0x0000aaaa),
218 cpu_to_le32(0xcc00aaaa),
219 cpu_to_le32(0x0000aaaa),
Emmanuel Grumbacha6bc9282014-04-13 15:51:41 +0300220 cpu_to_le32(0xc0004000),
221 cpu_to_le32(0xc0004000),
222 cpu_to_le32(0xf0005000),
223 cpu_to_le32(0xf0005000),
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300224 },
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200225};
226
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300227/* 20MHz / 40MHz below / 40Mhz above*/
228static const __le64 iwl_ci_mask[][3] = {
229 /* dummy entry for channel 0 */
230 {cpu_to_le64(0), cpu_to_le64(0), cpu_to_le64(0)},
231 {
232 cpu_to_le64(0x0000001FFFULL),
233 cpu_to_le64(0x0ULL),
234 cpu_to_le64(0x00007FFFFFULL),
235 },
236 {
237 cpu_to_le64(0x000000FFFFULL),
238 cpu_to_le64(0x0ULL),
239 cpu_to_le64(0x0003FFFFFFULL),
240 },
241 {
242 cpu_to_le64(0x000003FFFCULL),
243 cpu_to_le64(0x0ULL),
244 cpu_to_le64(0x000FFFFFFCULL),
245 },
246 {
247 cpu_to_le64(0x00001FFFE0ULL),
248 cpu_to_le64(0x0ULL),
249 cpu_to_le64(0x007FFFFFE0ULL),
250 },
251 {
252 cpu_to_le64(0x00007FFF80ULL),
253 cpu_to_le64(0x00007FFFFFULL),
254 cpu_to_le64(0x01FFFFFF80ULL),
255 },
256 {
257 cpu_to_le64(0x0003FFFC00ULL),
258 cpu_to_le64(0x0003FFFFFFULL),
259 cpu_to_le64(0x0FFFFFFC00ULL),
260 },
261 {
262 cpu_to_le64(0x000FFFF000ULL),
263 cpu_to_le64(0x000FFFFFFCULL),
264 cpu_to_le64(0x3FFFFFF000ULL),
265 },
266 {
267 cpu_to_le64(0x007FFF8000ULL),
268 cpu_to_le64(0x007FFFFFE0ULL),
269 cpu_to_le64(0xFFFFFF8000ULL),
270 },
271 {
272 cpu_to_le64(0x01FFFE0000ULL),
273 cpu_to_le64(0x01FFFFFF80ULL),
274 cpu_to_le64(0xFFFFFE0000ULL),
275 },
276 {
277 cpu_to_le64(0x0FFFF00000ULL),
278 cpu_to_le64(0x0FFFFFFC00ULL),
279 cpu_to_le64(0x0ULL),
280 },
281 {
282 cpu_to_le64(0x3FFFC00000ULL),
283 cpu_to_le64(0x3FFFFFF000ULL),
284 cpu_to_le64(0x0)
285 },
286 {
287 cpu_to_le64(0xFFFE000000ULL),
288 cpu_to_le64(0xFFFFFF8000ULL),
289 cpu_to_le64(0x0)
290 },
291 {
292 cpu_to_le64(0xFFF8000000ULL),
293 cpu_to_le64(0xFFFFFE0000ULL),
294 cpu_to_le64(0x0)
295 },
296 {
Emmanuel Grumbachd2ccc902013-12-24 10:55:24 +0200297 cpu_to_le64(0xFFC0000000ULL),
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300298 cpu_to_le64(0x0ULL),
Emmanuel Grumbachd2ccc902013-12-24 10:55:24 +0200299 cpu_to_le64(0x0ULL)
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300300 },
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200301};
302
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300303static const __le32 iwl_bt_mprio_lut[BT_COEX_MULTI_PRIO_LUT_SIZE] = {
Emmanuel Grumbach2adc8942014-05-11 17:28:05 +0300304 cpu_to_le32(0x28412201),
305 cpu_to_le32(0x11118451),
Emmanuel Grumbache715c3a2013-06-18 05:34:58 +0300306};
307
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +0200308struct corunning_block_luts {
309 u8 range;
310 __le32 lut20[BT_COEX_CORUN_LUT_SIZE];
311};
312
313/*
314 * Ranges for the antenna coupling calibration / co-running block LUT:
315 * LUT0: [ 0, 12[
316 * LUT1: [12, 20[
317 * LUT2: [20, 21[
318 * LUT3: [21, 23[
319 * LUT4: [23, 27[
320 * LUT5: [27, 30[
321 * LUT6: [30, 32[
322 * LUT7: [32, 33[
323 * LUT8: [33, - [
324 */
325static const struct corunning_block_luts antenna_coupling_ranges[] = {
326 {
327 .range = 0,
328 .lut20 = {
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 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
345 },
346 },
347 {
348 .range = 12,
349 .lut20 = {
350 cpu_to_le32(0x00000001), 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 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
366 },
367 },
368 {
369 .range = 20,
370 .lut20 = {
371 cpu_to_le32(0x00000002), 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 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
387 },
388 },
389 {
390 .range = 21,
391 .lut20 = {
392 cpu_to_le32(0x00000003), 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 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
408 },
409 },
410 {
411 .range = 23,
412 .lut20 = {
413 cpu_to_le32(0x00000004), 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 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
429 },
430 },
431 {
432 .range = 27,
433 .lut20 = {
434 cpu_to_le32(0x00000005), 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 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
450 },
451 },
452 {
453 .range = 30,
454 .lut20 = {
455 cpu_to_le32(0x00000006), 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 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
471 },
472 },
473 {
474 .range = 32,
475 .lut20 = {
476 cpu_to_le32(0x00000007), 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 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
492 },
493 },
494 {
495 .range = 33,
496 .lut20 = {
497 cpu_to_le32(0x00000008), 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 cpu_to_le32(0x00000000), cpu_to_le32(0x00000000),
513 },
514 },
515};
516
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300517static enum iwl_bt_coex_lut_type
518iwl_get_coex_type(struct iwl_mvm *mvm, const struct ieee80211_vif *vif)
519{
520 struct ieee80211_chanctx_conf *chanctx_conf;
521 enum iwl_bt_coex_lut_type ret;
522 u16 phy_ctx_id;
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300523 u32 primary_ch_phy_id, secondary_ch_phy_id;
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300524
Emmanuel Grumbach9145d152013-07-18 08:45:41 +0300525 /*
526 * Checking that we hold mvm->mutex is a good idea, but the rate
527 * control can't acquire the mutex since it runs in Tx path.
528 * So this is racy in that case, but in the worst case, the AMPDU
529 * size limit will be wrong for a short time which is not a big
530 * issue.
531 */
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300532
533 rcu_read_lock();
534
535 chanctx_conf = rcu_dereference(vif->chanctx_conf);
536
537 if (!chanctx_conf ||
538 chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ) {
539 rcu_read_unlock();
Emmanuel Grumbach7fa4fa02014-05-25 13:58:31 +0300540 return BT_COEX_INVALID_LUT;
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300541 }
542
543 ret = BT_COEX_TX_DIS_LUT;
544
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300545 if (mvm->cfg->bt_shared_single_ant) {
546 rcu_read_unlock();
547 return ret;
548 }
549
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300550 phy_ctx_id = *((u16 *)chanctx_conf->drv_priv);
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300551 primary_ch_phy_id = le32_to_cpu(mvm->last_bt_ci_cmd.primary_ch_phy_id);
552 secondary_ch_phy_id =
553 le32_to_cpu(mvm->last_bt_ci_cmd.secondary_ch_phy_id);
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300554
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300555 if (primary_ch_phy_id == phy_ctx_id)
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300556 ret = le32_to_cpu(mvm->last_bt_notif.primary_ch_lut);
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300557 else if (secondary_ch_phy_id == phy_ctx_id)
Emmanuel Grumbach4515f302013-06-30 07:51:54 +0300558 ret = le32_to_cpu(mvm->last_bt_notif.secondary_ch_lut);
559 /* else - default = TX TX disallowed */
560
561 rcu_read_unlock();
562
563 return ret;
564}
565
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200566int iwl_send_bt_init_conf(struct iwl_mvm *mvm)
567{
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300568 struct iwl_bt_coex_cmd *bt_cmd;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300569 struct iwl_host_cmd cmd = {
570 .id = BT_CONFIG,
571 .len = { sizeof(*bt_cmd), },
572 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200573 };
574 int ret;
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300575 u32 mode;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300576
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +0300577 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT))
578 return iwl_send_bt_init_conf_old(mvm);
579
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300580 bt_cmd = kzalloc(sizeof(*bt_cmd), GFP_KERNEL);
581 if (!bt_cmd)
582 return -ENOMEM;
583 cmd.data[0] = bt_cmd;
584
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300585 lockdep_assert_held(&mvm->mutex);
586
587 if (unlikely(mvm->bt_force_ant_mode != BT_FORCE_ANT_DIS)) {
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300588 u32 mode;
589
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300590 switch (mvm->bt_force_ant_mode) {
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300591 case BT_FORCE_ANT_BT:
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300592 mode = BT_COEX_BT;
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300593 break;
594 case BT_FORCE_ANT_WIFI:
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300595 mode = BT_COEX_WIFI;
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300596 break;
597 default:
598 WARN_ON(1);
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300599 mode = 0;
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300600 }
601
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300602 bt_cmd->mode = cpu_to_le32(mode);
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300603 goto send_cmd;
604 }
605
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300606 bt_cmd->max_kill = cpu_to_le32(5);
607 bt_cmd->bt4_antenna_isolation_thr =
608 cpu_to_le32(BT_ANTENNA_COUPLING_THRESHOLD);
609 bt_cmd->bt4_tx_tx_delta_freq_thr = cpu_to_le32(15);
610 bt_cmd->bt4_tx_rx_max_freq0 = cpu_to_le32(15);
611 bt_cmd->override_primary_lut = cpu_to_le32(BT_COEX_INVALID_LUT);
612 bt_cmd->override_secondary_lut = cpu_to_le32(BT_COEX_INVALID_LUT);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300613
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300614 mode = iwlwifi_mod_params.bt_coex_active ? BT_COEX_NW : BT_COEX_DISABLE;
615 bt_cmd->mode = cpu_to_le32(mode);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300616
Emmanuel Grumbach741e7032014-01-27 12:12:50 +0200617 if (IWL_MVM_BT_COEX_SYNC2SCO)
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300618 bt_cmd->enabled_modules |=
619 cpu_to_le32(BT_COEX_SYNC2SCO_ENABLED);
Emmanuel Grumbach741e7032014-01-27 12:12:50 +0200620
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300621 if (IWL_MVM_BT_COEX_CORUNNING)
622 bt_cmd->enabled_modules |= cpu_to_le32(BT_COEX_CORUN_ENABLED);
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +0200623
Emmanuel Grumbachcdb00562014-03-16 21:55:43 +0200624 if (IWL_MVM_BT_COEX_MPLUT) {
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300625 bt_cmd->enabled_modules |= cpu_to_le32(BT_COEX_MPLUT_ENABLED);
626 bt_cmd->enabled_modules |=
627 cpu_to_le32(BT_COEX_MPLUT_BOOST_ENABLED);
Emmanuel Grumbachcdb00562014-03-16 21:55:43 +0200628 }
629
Emmanuel Grumbach261c0ec2014-06-11 15:37:25 +0300630 bt_cmd->enabled_modules |= cpu_to_le32(BT_COEX_HIGH_BAND_RET);
631
Emmanuel Grumbachd1d5e3c2013-09-11 13:33:28 +0300632 if (mvm->cfg->bt_shared_single_ant)
633 memcpy(&bt_cmd->decision_lut, iwl_single_shared_ant,
634 sizeof(iwl_single_shared_ant));
635 else
636 memcpy(&bt_cmd->decision_lut, iwl_combined_lookup,
637 sizeof(iwl_combined_lookup));
638
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300639 memcpy(&bt_cmd->mplut_prio_boost, iwl_bt_prio_boost,
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300640 sizeof(iwl_bt_prio_boost));
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300641 memcpy(&bt_cmd->multiprio_lut, iwl_bt_mprio_lut,
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300642 sizeof(iwl_bt_mprio_lut));
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300643
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300644send_cmd:
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300645 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 Grumbach1459f262014-07-06 09:34:38 +0300654static int iwl_mvm_bt_udpate_sw_boost(struct iwl_mvm *mvm)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200655{
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300656 struct iwl_bt_coex_profile_notif *notif = &mvm->last_bt_notif;
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300657 u32 primary_lut = le32_to_cpu(notif->primary_ch_lut);
658 u32 secondary_lut = le32_to_cpu(notif->secondary_ch_lut);
659 u32 ag = le32_to_cpu(notif->bt_activity_grading);
660 struct iwl_bt_coex_sw_boost_update_cmd cmd = {};
661 u8 ack_kill_msk[NUM_PHY_CTX] = {};
662 u8 cts_kill_msk[NUM_PHY_CTX] = {};
663 int i;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200664
665 lockdep_assert_held(&mvm->mutex);
666
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300667 ack_kill_msk[0] = iwl_bt_ack_kill_msk[ag][primary_lut];
668 cts_kill_msk[0] = iwl_bt_cts_kill_msk[ag][primary_lut];
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200669
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300670 ack_kill_msk[1] = iwl_bt_ack_kill_msk[ag][secondary_lut];
671 cts_kill_msk[1] = iwl_bt_cts_kill_msk[ag][secondary_lut];
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200672
673 /* Don't send HCMD if there is no update */
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300674 if (!memcmp(ack_kill_msk, mvm->bt_ack_kill_msk, sizeof(ack_kill_msk)) ||
675 !memcmp(cts_kill_msk, mvm->bt_cts_kill_msk, sizeof(cts_kill_msk)))
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200676 return 0;
677
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300678 memcpy(mvm->bt_ack_kill_msk, ack_kill_msk,
679 sizeof(mvm->bt_ack_kill_msk));
680 memcpy(mvm->bt_cts_kill_msk, cts_kill_msk,
681 sizeof(mvm->bt_cts_kill_msk));
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300682
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300683 BUILD_BUG_ON(ARRAY_SIZE(ack_kill_msk) < ARRAY_SIZE(cmd.boost_values));
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300684
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300685 for (i = 0; i < ARRAY_SIZE(cmd.boost_values); i++) {
686 cmd.boost_values[i].kill_ack_msk =
687 cpu_to_le32(iwl_bt_ctl_kill_msk[ack_kill_msk[i]]);
688 cmd.boost_values[i].kill_cts_msk =
689 cpu_to_le32(iwl_bt_ctl_kill_msk[cts_kill_msk[i]]);
690 }
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300691
Emmanuel Grumbachdf878f32014-04-02 12:23:09 +0300692 return iwl_mvm_send_cmd_pdu(mvm, BT_COEX_UPDATE_SW_BOOST, 0,
693 sizeof(cmd), &cmd);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200694}
695
Emmanuel Grumbach1fa477c2014-05-20 13:54:27 +0300696static int iwl_mvm_bt_coex_reduced_txp(struct iwl_mvm *mvm, u8 sta_id,
697 bool enable)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200698{
Emmanuel Grumbach455e7ac2014-05-22 12:48:27 +0300699 struct iwl_bt_coex_reduced_txp_update_cmd cmd = {};
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200700 struct iwl_mvm_sta *mvmsta;
Emmanuel Grumbach455e7ac2014-05-22 12:48:27 +0300701 u32 value;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300702 int ret;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200703
Emmanuel Grumbachf327b042014-01-14 08:30:32 +0200704 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, sta_id);
705 if (!mvmsta)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200706 return 0;
707
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200708 /* nothing to do */
Emmanuel Grumbach1fa477c2014-05-20 13:54:27 +0300709 if (mvmsta->bt_reduced_txpower == enable)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200710 return 0;
711
Emmanuel Grumbach455e7ac2014-05-22 12:48:27 +0300712 value = mvmsta->sta_id;
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300713
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200714 if (enable)
Emmanuel Grumbach455e7ac2014-05-22 12:48:27 +0300715 value |= BT_REDUCED_TX_POWER_BIT;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200716
717 IWL_DEBUG_COEX(mvm, "%sable reduced Tx Power for sta %d\n",
718 enable ? "en" : "dis", sta_id);
719
Emmanuel Grumbach455e7ac2014-05-22 12:48:27 +0300720 cmd.reduced_txp = cpu_to_le32(value);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200721 mvmsta->bt_reduced_txpower = enable;
722
Emmanuel Grumbach455e7ac2014-05-22 12:48:27 +0300723 ret = iwl_mvm_send_cmd_pdu(mvm, BT_COEX_UPDATE_REDUCED_TXP, CMD_ASYNC,
724 sizeof(cmd), &cmd);
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300725
Emmanuel Grumbach03e304e2013-06-26 15:54:34 +0300726 return ret;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200727}
728
729struct iwl_bt_iterator_data {
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300730 struct iwl_bt_coex_profile_notif *notif;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200731 struct iwl_mvm *mvm;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300732 struct ieee80211_chanctx_conf *primary;
733 struct ieee80211_chanctx_conf *secondary;
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200734 bool primary_ll;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200735};
736
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +0300737static inline
738void iwl_mvm_bt_coex_enable_rssi_event(struct iwl_mvm *mvm,
739 struct ieee80211_vif *vif,
740 bool enable, int rssi)
741{
742 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
743
744 mvmvif->bf_data.last_bt_coex_event = rssi;
745 mvmvif->bf_data.bt_coex_max_thold =
Emmanuel Grumbach8286d9f2014-05-27 22:54:18 +0300746 enable ? -IWL_MVM_BT_COEX_EN_RED_TXP_THRESH : 0;
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +0300747 mvmvif->bf_data.bt_coex_min_thold =
Emmanuel Grumbach8286d9f2014-05-27 22:54:18 +0300748 enable ? -IWL_MVM_BT_COEX_DIS_RED_TXP_THRESH : 0;
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +0300749}
750
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300751/* must be called under rcu_read_lock */
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200752static void iwl_mvm_bt_notif_iterator(void *_data, u8 *mac,
753 struct ieee80211_vif *vif)
754{
755 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200756 struct iwl_bt_iterator_data *data = _data;
757 struct iwl_mvm *mvm = data->mvm;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200758 struct ieee80211_chanctx_conf *chanctx_conf;
759 enum ieee80211_smps_mode smps_mode;
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200760 u32 bt_activity_grading;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200761 int ave_rssi;
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200762
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300763 lockdep_assert_held(&mvm->mutex);
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200764
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200765 switch (vif->type) {
766 case NL80211_IFTYPE_STATION:
767 /* default smps_mode for BSS / P2P client is AUTOMATIC */
768 smps_mode = IEEE80211_SMPS_AUTOMATIC;
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200769 break;
770 case NL80211_IFTYPE_AP:
771 /* default smps_mode for AP / GO is OFF */
772 smps_mode = IEEE80211_SMPS_OFF;
773 if (!mvmvif->ap_ibss_active) {
774 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX,
775 smps_mode);
776 return;
777 }
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200778 break;
779 default:
780 return;
781 }
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200782
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300783 chanctx_conf = rcu_dereference(vif->chanctx_conf);
784
785 /* If channel context is invalid or not on 2.4GHz .. */
786 if ((!chanctx_conf ||
787 chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ)) {
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200788 /* ... relax constraints and disable rssi events */
789 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX,
790 smps_mode);
Emmanuel Grumbach0f618e62014-05-20 15:48:18 +0300791 if (vif->type == NL80211_IFTYPE_STATION) {
792 iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id,
793 false);
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200794 iwl_mvm_bt_coex_enable_rssi_event(mvm, vif, false, 0);
Emmanuel Grumbach0f618e62014-05-20 15:48:18 +0300795 }
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300796 return;
797 }
798
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200799 bt_activity_grading = le32_to_cpu(data->notif->bt_activity_grading);
800 if (bt_activity_grading >= BT_HIGH_TRAFFIC)
801 smps_mode = IEEE80211_SMPS_STATIC;
802 else if (bt_activity_grading >= BT_LOW_TRAFFIC)
803 smps_mode = vif->type == NL80211_IFTYPE_AP ?
804 IEEE80211_SMPS_OFF :
805 IEEE80211_SMPS_DYNAMIC;
Emmanuel Grumbach4d664492014-04-30 18:09:59 +0300806
807 /* relax SMPS contraints for next association */
808 if (!vif->bss_conf.assoc)
809 smps_mode = IEEE80211_SMPS_AUTOMATIC;
810
Emmanuel Grumbach4c86f932014-06-30 10:26:02 +0300811 if (IWL_COEX_IS_RRC_ON(mvm->last_bt_notif.ttc_rrc_status,
812 mvmvif->phy_ctxt->id))
813 smps_mode = IEEE80211_SMPS_AUTOMATIC;
814
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200815 IWL_DEBUG_COEX(data->mvm,
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300816 "mac %d: bt_activity_grading %d smps_req %d\n",
817 mvmvif->id, bt_activity_grading, smps_mode);
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200818
819 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX, smps_mode);
820
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200821 /* low latency is always primary */
822 if (iwl_mvm_vif_low_latency(mvmvif)) {
823 data->primary_ll = true;
824
825 data->secondary = data->primary;
826 data->primary = chanctx_conf;
827 }
828
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300829 if (vif->type == NL80211_IFTYPE_AP) {
Johannes Berg5023d962013-07-31 14:07:43 +0200830 if (!mvmvif->ap_ibss_active)
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300831 return;
832
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300833 if (chanctx_conf == data->primary)
834 return;
835
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200836 if (!data->primary_ll) {
837 /*
838 * downgrade the current primary no matter what its
839 * type is.
840 */
841 data->secondary = data->primary;
842 data->primary = chanctx_conf;
843 } else {
844 /* there is low latency vif - we will be secondary */
845 data->secondary = chanctx_conf;
846 }
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300847 return;
848 }
849
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200850 /*
851 * STA / P2P Client, try to be primary if first vif. If we are in low
852 * latency mode, we are already in primary and just don't do much
853 */
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300854 if (!data->primary || data->primary == chanctx_conf)
855 data->primary = chanctx_conf;
856 else if (!data->secondary)
857 /* if secondary is not NULL, it might be a GO */
858 data->secondary = chanctx_conf;
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200859
Emmanuel Grumbach4d664492014-04-30 18:09:59 +0300860 /*
861 * don't reduce the Tx power if one of these is true:
862 * we are in LOOSE
863 * single share antenna product
864 * BT is active
865 * we are associated
866 */
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300867 if (iwl_get_coex_type(mvm, vif) == BT_COEX_LOOSE_LUT ||
Emmanuel Grumbach4d664492014-04-30 18:09:59 +0300868 mvm->cfg->bt_shared_single_ant || !vif->bss_conf.assoc ||
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300869 le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) == BT_OFF) {
Emmanuel Grumbach0f618e62014-05-20 15:48:18 +0300870 iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, false);
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +0300871 iwl_mvm_bt_coex_enable_rssi_event(mvm, vif, false, 0);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200872 return;
Emmanuel Grumbach39149912013-07-14 13:40:21 +0300873 }
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200874
Andrei Otcheretianski911222b2013-07-21 17:37:19 +0300875 /* try to get the avg rssi from fw */
876 ave_rssi = mvmvif->bf_data.ave_beacon_signal;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200877
878 /* if the RSSI isn't valid, fake it is very low */
879 if (!ave_rssi)
880 ave_rssi = -100;
Emmanuel Grumbach8286d9f2014-05-27 22:54:18 +0300881 if (ave_rssi > -IWL_MVM_BT_COEX_EN_RED_TXP_THRESH) {
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200882 if (iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, true))
883 IWL_ERR(mvm, "Couldn't send BT_CONFIG cmd\n");
Emmanuel Grumbach8286d9f2014-05-27 22:54:18 +0300884 } else if (ave_rssi < -IWL_MVM_BT_COEX_DIS_RED_TXP_THRESH) {
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200885 if (iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, false))
886 IWL_ERR(mvm, "Couldn't send BT_CONFIG cmd\n");
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200887 }
888
889 /* Begin to monitor the RSSI: it may influence the reduced Tx power */
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +0300890 iwl_mvm_bt_coex_enable_rssi_event(mvm, vif, true, ave_rssi);
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200891}
892
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +0300893static void iwl_mvm_bt_coex_notif_handle(struct iwl_mvm *mvm)
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200894{
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200895 struct iwl_bt_iterator_data data = {
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200896 .mvm = mvm,
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +0300897 .notif = &mvm->last_bt_notif,
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200898 };
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300899 struct iwl_bt_coex_ci_cmd cmd = {};
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300900 u8 ci_bw_idx;
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200901
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300902 /* Ignore updates if we are in force mode */
903 if (unlikely(mvm->bt_force_ant_mode != BT_FORCE_ANT_DIS))
904 return;
905
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300906 rcu_read_lock();
Emmanuel Grumbach7da052b2013-02-10 17:06:17 +0200907 ieee80211_iterate_active_interfaces_atomic(
908 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
909 iwl_mvm_bt_notif_iterator, &data);
910
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300911 if (data.primary) {
912 struct ieee80211_chanctx_conf *chan = data.primary;
913 if (WARN_ON(!chan->def.chan)) {
914 rcu_read_unlock();
915 return;
916 }
917
918 if (chan->def.width < NL80211_CHAN_WIDTH_40) {
919 ci_bw_idx = 0;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300920 } else {
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300921 if (chan->def.center_freq1 >
922 chan->def.chan->center_freq)
923 ci_bw_idx = 2;
924 else
925 ci_bw_idx = 1;
926 }
927
928 cmd.bt_primary_ci =
929 iwl_ci_mask[chan->def.chan->hw_value][ci_bw_idx];
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300930 cmd.primary_ch_phy_id =
931 cpu_to_le32(*((u16 *)data.primary->drv_priv));
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300932 }
933
934 if (data.secondary) {
935 struct ieee80211_chanctx_conf *chan = data.secondary;
936 if (WARN_ON(!data.secondary->def.chan)) {
937 rcu_read_unlock();
938 return;
939 }
940
941 if (chan->def.width < NL80211_CHAN_WIDTH_40) {
942 ci_bw_idx = 0;
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300943 } else {
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300944 if (chan->def.center_freq1 >
945 chan->def.chan->center_freq)
946 ci_bw_idx = 2;
947 else
948 ci_bw_idx = 1;
949 }
950
951 cmd.bt_secondary_ci =
952 iwl_ci_mask[chan->def.chan->hw_value][ci_bw_idx];
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +0300953 cmd.secondary_ch_phy_id =
954 cpu_to_le32(*((u16 *)data.secondary->drv_priv));
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300955 }
956
957 rcu_read_unlock();
958
959 /* Don't spam the fw with the same command over and over */
960 if (memcmp(&cmd, &mvm->last_bt_ci_cmd, sizeof(cmd))) {
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300961 if (iwl_mvm_send_cmd_pdu(mvm, BT_COEX_CI, 0,
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300962 sizeof(cmd), &cmd))
Johannes Berg3c6acb62014-05-07 11:47:53 +0200963 IWL_ERR(mvm, "Failed to send BT_CI cmd\n");
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300964 memcpy(&mvm->last_bt_ci_cmd, &cmd, sizeof(cmd));
965 }
966
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300967 if (iwl_mvm_bt_udpate_sw_boost(mvm))
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200968 IWL_ERR(mvm, "Failed to update the ctrl_kill_msk\n");
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200969}
970
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200971int iwl_mvm_rx_bt_coex_notif(struct iwl_mvm *mvm,
972 struct iwl_rx_cmd_buffer *rxb,
973 struct iwl_device_cmd *dev_cmd)
974{
975 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Emmanuel Grumbachdf878f32014-04-02 12:23:09 +0300976 struct iwl_bt_coex_profile_notif *notif = (void *)pkt->data;
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200977
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +0300978 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT))
979 return iwl_mvm_rx_bt_coex_notif_old(mvm, rxb, dev_cmd);
980
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200981 IWL_DEBUG_COEX(mvm, "BT Coex Notification received\n");
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300982 IWL_DEBUG_COEX(mvm, "\tBT ci compliance %d\n", notif->bt_ci_compliance);
983 IWL_DEBUG_COEX(mvm, "\tBT primary_ch_lut %d\n",
984 le32_to_cpu(notif->primary_ch_lut));
985 IWL_DEBUG_COEX(mvm, "\tBT secondary_ch_lut %d\n",
986 le32_to_cpu(notif->secondary_ch_lut));
987 IWL_DEBUG_COEX(mvm, "\tBT activity grading %d\n",
988 le32_to_cpu(notif->bt_activity_grading));
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200989
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +0300990 /* remember this notification for future use: rssi fluctuations */
991 memcpy(&mvm->last_bt_notif, notif, sizeof(mvm->last_bt_notif));
992
993 iwl_mvm_bt_coex_notif_handle(mvm);
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200994
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200995 /*
996 * This is an async handler for a notification, returning anything other
997 * than 0 doesn't make sense even if HCMD failed.
998 */
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200999 return 0;
1000}
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001001
1002static void iwl_mvm_bt_rssi_iterator(void *_data, u8 *mac,
1003 struct ieee80211_vif *vif)
1004{
1005 struct iwl_mvm_vif *mvmvif = (void *)vif->drv_priv;
1006 struct iwl_bt_iterator_data *data = _data;
1007 struct iwl_mvm *mvm = data->mvm;
1008
1009 struct ieee80211_sta *sta;
1010 struct iwl_mvm_sta *mvmsta;
1011
Emmanuel Grumbachf6fc5772013-09-08 08:57:15 +03001012 struct ieee80211_chanctx_conf *chanctx_conf;
1013
1014 rcu_read_lock();
1015 chanctx_conf = rcu_dereference(vif->chanctx_conf);
1016 /* If channel context is invalid or not on 2.4GHz - don't count it */
1017 if (!chanctx_conf ||
1018 chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ) {
1019 rcu_read_unlock();
1020 return;
1021 }
1022 rcu_read_unlock();
1023
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001024 if (vif->type != NL80211_IFTYPE_STATION ||
1025 mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT)
1026 return;
1027
1028 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[mvmvif->ap_sta_id],
1029 lockdep_is_held(&mvm->mutex));
Emmanuel Grumbach56c07a92013-10-21 11:03:53 +03001030
1031 /* This can happen if the station has been removed right now */
1032 if (IS_ERR_OR_NULL(sta))
1033 return;
1034
Johannes Berg5b577a92013-11-14 18:20:04 +01001035 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001036}
1037
1038void iwl_mvm_bt_rssi_event(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1039 enum ieee80211_rssi_event rssi_event)
1040{
1041 struct iwl_mvm_vif *mvmvif = (void *)vif->drv_priv;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001042 struct iwl_bt_iterator_data data = {
1043 .mvm = mvm,
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001044 };
1045 int ret;
1046
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +03001047 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) {
1048 iwl_mvm_bt_rssi_event_old(mvm, vif, rssi_event);
1049 return;
1050 }
1051
Johannes Berg3dd1cd22013-10-02 12:05:24 +02001052 lockdep_assert_held(&mvm->mutex);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001053
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +03001054 /* Ignore updates if we are in force mode */
1055 if (unlikely(mvm->bt_force_ant_mode != BT_FORCE_ANT_DIS))
1056 return;
1057
Emmanuel Grumbach1e929192014-03-04 10:28:23 +02001058 /*
1059 * Rssi update while not associated - can happen since the statistics
1060 * are handled asynchronously
1061 */
1062 if (mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT)
Johannes Berg3dd1cd22013-10-02 12:05:24 +02001063 return;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001064
Emmanuel Grumbach4515f302013-06-30 07:51:54 +03001065 /* No BT - reports should be disabled */
Emmanuel Grumbach430a3bb2014-04-02 09:55:16 +03001066 if (le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) == BT_OFF)
Johannes Berg3dd1cd22013-10-02 12:05:24 +02001067 return;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001068
1069 IWL_DEBUG_COEX(mvm, "RSSI for %pM is now %s\n", vif->bss_conf.bssid,
1070 rssi_event == RSSI_EVENT_HIGH ? "HIGH" : "LOW");
1071
1072 /*
1073 * Check if rssi is good enough for reduced Tx power, but not in loose
1074 * scheme.
1075 */
Emmanuel Grumbach39149912013-07-14 13:40:21 +03001076 if (rssi_event == RSSI_EVENT_LOW || mvm->cfg->bt_shared_single_ant ||
Emmanuel Grumbach4515f302013-06-30 07:51:54 +03001077 iwl_get_coex_type(mvm, vif) == BT_COEX_LOOSE_LUT)
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001078 ret = iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id,
1079 false);
1080 else
1081 ret = iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, true);
1082
1083 if (ret)
1084 IWL_ERR(mvm, "couldn't send BT_CONFIG HCMD upon RSSI event\n");
1085
1086 ieee80211_iterate_active_interfaces_atomic(
1087 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1088 iwl_mvm_bt_rssi_iterator, &data);
1089
Emmanuel Grumbach1459f262014-07-06 09:34:38 +03001090 if (iwl_mvm_bt_udpate_sw_boost(mvm))
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001091 IWL_ERR(mvm, "Failed to update the ctrl_kill_msk\n");
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +02001092}
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001093
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001094#define LINK_QUAL_AGG_TIME_LIMIT_DEF (4000)
1095#define LINK_QUAL_AGG_TIME_LIMIT_BT_ACT (1200)
1096
Emmanuel Grumbach5b7ff612014-03-11 19:27:45 +02001097u16 iwl_mvm_coex_agg_time_limit(struct iwl_mvm *mvm,
1098 struct ieee80211_sta *sta)
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001099{
Johannes Berg5b577a92013-11-14 18:20:04 +01001100 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach4c86f932014-06-30 10:26:02 +03001101 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
1102 struct iwl_mvm_phy_ctxt *phy_ctxt = mvmvif->phy_ctxt;
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001103 enum iwl_bt_coex_lut_type lut_type;
1104
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +03001105 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT))
1106 return iwl_mvm_coex_agg_time_limit_old(mvm, sta);
1107
Emmanuel Grumbach4c86f932014-06-30 10:26:02 +03001108 if (IWL_COEX_IS_TTC_ON(mvm->last_bt_notif.ttc_rrc_status, phy_ctxt->id))
1109 return LINK_QUAL_AGG_TIME_LIMIT_DEF;
1110
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001111 if (le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) <
Emmanuel Grumbachc2119352013-11-13 22:00:30 +02001112 BT_HIGH_TRAFFIC)
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001113 return LINK_QUAL_AGG_TIME_LIMIT_DEF;
Emmanuel Grumbach35fbf5d2014-06-02 16:18:42 +03001114
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001115 lut_type = iwl_get_coex_type(mvm, mvmsta->vif);
1116
Emmanuel Grumbach7fa4fa02014-05-25 13:58:31 +03001117 if (lut_type == BT_COEX_LOOSE_LUT || lut_type == BT_COEX_INVALID_LUT)
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001118 return LINK_QUAL_AGG_TIME_LIMIT_DEF;
1119
1120 /* tight coex, high bt traffic, reduce AGG time limit */
1121 return LINK_QUAL_AGG_TIME_LIMIT_BT_ACT;
1122}
1123
Emmanuel Grumbachffa6c702013-10-06 11:41:20 +03001124bool iwl_mvm_bt_coex_is_mimo_allowed(struct iwl_mvm *mvm,
1125 struct ieee80211_sta *sta)
1126{
Johannes Berg5b577a92013-11-14 18:20:04 +01001127 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach4c86f932014-06-30 10:26:02 +03001128 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
1129 struct iwl_mvm_phy_ctxt *phy_ctxt = mvmvif->phy_ctxt;
Emmanuel Grumbach7fa4fa02014-05-25 13:58:31 +03001130 enum iwl_bt_coex_lut_type lut_type;
Emmanuel Grumbachffa6c702013-10-06 11:41:20 +03001131
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +03001132 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT))
Emmanuel Grumbach5fc7d862014-07-08 08:44:31 +03001133 return iwl_mvm_bt_coex_is_mimo_allowed_old(mvm, sta);
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +03001134
Emmanuel Grumbach4c86f932014-06-30 10:26:02 +03001135 if (IWL_COEX_IS_TTC_ON(mvm->last_bt_notif.ttc_rrc_status, phy_ctxt->id))
Emmanuel Grumbach35fbf5d2014-06-02 16:18:42 +03001136 return true;
1137
Emmanuel Grumbachffa6c702013-10-06 11:41:20 +03001138 if (le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) <
1139 BT_HIGH_TRAFFIC)
1140 return true;
1141
1142 /*
Emmanuel Grumbach7fa4fa02014-05-25 13:58:31 +03001143 * In Tight / TxTxDis, BT can't Rx while we Tx, so use both antennas
1144 * since BT is already killed.
1145 * In Loose, BT can Rx while we Tx, so forbid MIMO to let BT Rx while
1146 * we Tx.
1147 * When we are in 5GHz, we'll get BT_COEX_INVALID_LUT allowing MIMO.
Emmanuel Grumbachffa6c702013-10-06 11:41:20 +03001148 */
Emmanuel Grumbach7fa4fa02014-05-25 13:58:31 +03001149 lut_type = iwl_get_coex_type(mvm, mvmsta->vif);
1150 return lut_type != BT_COEX_LOOSE_LUT;
Emmanuel Grumbachffa6c702013-10-06 11:41:20 +03001151}
1152
Emmanuel Grumbach34c8b242014-05-28 21:53:39 +03001153bool iwl_mvm_bt_coex_is_shared_ant_avail(struct iwl_mvm *mvm)
1154{
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +03001155 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT))
1156 return iwl_mvm_bt_coex_is_shared_ant_avail_old(mvm);
1157
Emmanuel Grumbach34c8b242014-05-28 21:53:39 +03001158 return le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) == BT_OFF;
1159}
1160
Eliad Peller2fd647f2014-03-13 17:21:36 +02001161bool iwl_mvm_bt_coex_is_tpc_allowed(struct iwl_mvm *mvm,
1162 enum ieee80211_band band)
1163{
1164 u32 bt_activity = le32_to_cpu(mvm->last_bt_notif.bt_activity_grading);
1165
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +03001166 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT))
1167 return iwl_mvm_bt_coex_is_tpc_allowed_old(mvm, band);
1168
Eliad Peller2fd647f2014-03-13 17:21:36 +02001169 if (band != IEEE80211_BAND_2GHZ)
1170 return false;
1171
1172 return bt_activity >= BT_LOW_TRAFFIC;
1173}
1174
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001175u8 iwl_mvm_bt_coex_tx_prio(struct iwl_mvm *mvm, struct ieee80211_hdr *hdr,
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001176 struct ieee80211_tx_info *info, u8 ac)
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001177{
1178 __le16 fc = hdr->frame_control;
1179
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001180 if (info->band != IEEE80211_BAND_2GHZ)
1181 return 0;
1182
Emmanuel Grumbachcdb00562014-03-16 21:55:43 +02001183 if (unlikely(mvm->bt_tx_prio))
1184 return mvm->bt_tx_prio - 1;
1185
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001186 /* High prio packet (wrt. BT coex) if it is EAPOL, MCAST or MGMT */
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001187 if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO ||
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001188 is_multicast_ether_addr(hdr->addr1) ||
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001189 ieee80211_is_ctl(fc) || ieee80211_is_mgmt(fc) ||
1190 ieee80211_is_nullfunc(fc) || ieee80211_is_qos_nullfunc(fc))
1191 return 3;
1192
1193 switch (ac) {
1194 case IEEE80211_AC_BE:
1195 return 1;
1196 case IEEE80211_AC_VO:
1197 return 3;
1198 case IEEE80211_AC_VI:
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001199 return 2;
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001200 default:
1201 break;
1202 }
Emmanuel Grumbachee7bea52014-03-06 10:30:49 +02001203
1204 return 0;
1205}
1206
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001207void iwl_mvm_bt_coex_vif_change(struct iwl_mvm *mvm)
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001208{
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +03001209 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) {
1210 iwl_mvm_bt_coex_vif_change_old(mvm);
1211 return;
1212 }
1213
Emmanuel Grumbachd37cac92013-03-29 14:56:19 +03001214 iwl_mvm_bt_coex_notif_handle(mvm);
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +02001215}
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001216
1217int iwl_mvm_rx_ant_coupling_notif(struct iwl_mvm *mvm,
1218 struct iwl_rx_cmd_buffer *rxb,
1219 struct iwl_device_cmd *dev_cmd)
1220{
1221 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1222 u32 ant_isolation = le32_to_cpup((void *)pkt->data);
Emmanuel Grumbach704602a2014-04-02 12:23:09 +03001223 struct iwl_bt_coex_corun_lut_update_cmd cmd = {};
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001224 u8 __maybe_unused lower_bound, upper_bound;
1225 u8 lut;
1226
Emmanuel Grumbach0ea8d042014-04-02 09:31:36 +03001227 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT))
1228 return iwl_mvm_rx_ant_coupling_notif_old(mvm, rxb, dev_cmd);
1229
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001230 if (!IWL_MVM_BT_COEX_CORUNNING)
1231 return 0;
1232
1233 lockdep_assert_held(&mvm->mutex);
1234
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +03001235 /* Ignore updates if we are in force mode */
1236 if (unlikely(mvm->bt_force_ant_mode != BT_FORCE_ANT_DIS))
1237 return 0;
1238
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001239 if (ant_isolation == mvm->last_ant_isol)
1240 return 0;
1241
1242 for (lut = 0; lut < ARRAY_SIZE(antenna_coupling_ranges) - 1; lut++)
1243 if (ant_isolation < antenna_coupling_ranges[lut + 1].range)
1244 break;
1245
1246 lower_bound = antenna_coupling_ranges[lut].range;
1247
1248 if (lut < ARRAY_SIZE(antenna_coupling_ranges) - 1)
1249 upper_bound = antenna_coupling_ranges[lut + 1].range;
1250 else
1251 upper_bound = antenna_coupling_ranges[lut].range;
1252
1253 IWL_DEBUG_COEX(mvm, "Antenna isolation=%d in range [%d,%d[, lut=%d\n",
1254 ant_isolation, lower_bound, upper_bound, lut);
1255
1256 mvm->last_ant_isol = ant_isolation;
1257
1258 if (mvm->last_corun_lut == lut)
1259 return 0;
1260
1261 mvm->last_corun_lut = lut;
1262
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001263 /* For the moment, use the same LUT for 20GHz and 40GHz */
Emmanuel Grumbach704602a2014-04-02 12:23:09 +03001264 memcpy(&cmd.corun_lut20, antenna_coupling_ranges[lut].lut20,
1265 sizeof(cmd.corun_lut20));
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001266
Emmanuel Grumbach704602a2014-04-02 12:23:09 +03001267 memcpy(&cmd.corun_lut40, antenna_coupling_ranges[lut].lut20,
1268 sizeof(cmd.corun_lut40));
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001269
Emmanuel Grumbach704602a2014-04-02 12:23:09 +03001270 return iwl_mvm_send_cmd_pdu(mvm, BT_COEX_UPDATE_CORUN_LUT, 0,
1271 sizeof(cmd), &cmd);
Emmanuel Grumbachb9fae2d2014-02-17 11:24:10 +02001272}