Emmanuel Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 1 | /****************************************************************************** |
| 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 Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 8 | * Copyright(c) 2013 - 2014 Intel Corporation. All rights reserved. |
Emmanuel Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of version 2 of the GNU General Public License as |
| 12 | * published by the Free Software Foundation. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 22 | * USA |
| 23 | * |
| 24 | * The full GNU General Public License is included in this distribution |
| 25 | * in the file called COPYING. |
| 26 | * |
| 27 | * Contact Information: |
| 28 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 29 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 30 | * |
| 31 | * BSD LICENSE |
| 32 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 33 | * Copyright(c) 2013 - 2014 Intel Corporation. All rights reserved. |
Emmanuel Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 34 | * All rights reserved. |
| 35 | * |
| 36 | * Redistribution and use in source and binary forms, with or without |
| 37 | * modification, are permitted provided that the following conditions |
| 38 | * are met: |
| 39 | * |
| 40 | * * Redistributions of source code must retain the above copyright |
| 41 | * notice, this list of conditions and the following disclaimer. |
| 42 | * * Redistributions in binary form must reproduce the above copyright |
| 43 | * notice, this list of conditions and the following disclaimer in |
| 44 | * the documentation and/or other materials provided with the |
| 45 | * distribution. |
| 46 | * * Neither the name Intel Corporation nor the names of its |
| 47 | * contributors may be used to endorse or promote products derived |
| 48 | * from this software without specific prior written permission. |
| 49 | * |
| 50 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 51 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 52 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 53 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 54 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 55 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 56 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 57 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 58 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 59 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 60 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 61 | * |
| 62 | *****************************************************************************/ |
| 63 | |
Emmanuel Grumbach | ee7bea5 | 2014-03-06 10:30:49 +0200 | [diff] [blame] | 64 | #include <linux/ieee80211.h> |
| 65 | #include <linux/etherdevice.h> |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 66 | #include <net/mac80211.h> |
| 67 | |
Emmanuel Grumbach | 5b7ff61 | 2014-03-11 19:27:45 +0200 | [diff] [blame] | 68 | #include "fw-api-coex.h" |
Emmanuel Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 69 | #include "iwl-modparams.h" |
| 70 | #include "mvm.h" |
Emmanuel Grumbach | f421f9c | 2013-01-17 14:20:29 +0200 | [diff] [blame] | 71 | #include "iwl-debug.h" |
Emmanuel Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 72 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 73 | #define BT_ANTENNA_COUPLING_THRESHOLD (30) |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 74 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 75 | const 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 Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 79 | }; |
| 80 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 81 | const 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 | |
| 104 | const 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 Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 125 | }; |
| 126 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 127 | static const __le32 iwl_bt_prio_boost[BT_COEX_BOOST_SIZE] = { |
Emmanuel Grumbach | 2adc894 | 2014-05-11 17:28:05 +0300 | [diff] [blame] | 128 | 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 Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 132 | }; |
| 133 | |
Emmanuel Grumbach | d1d5e3c | 2013-09-11 13:33:28 +0300 | [diff] [blame] | 134 | static 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 Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 179 | static 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 Grumbach | a6bc928 | 2014-04-13 15:51:41 +0300 | [diff] [blame] | 191 | cpu_to_le32(0x00004000), |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 192 | 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 Grumbach | a6bc928 | 2014-04-13 15:51:41 +0300 | [diff] [blame] | 214 | cpu_to_le32(0xeeaaaaaa), |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 215 | 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 Grumbach | a6bc928 | 2014-04-13 15:51:41 +0300 | [diff] [blame] | 220 | cpu_to_le32(0xc0004000), |
| 221 | cpu_to_le32(0xc0004000), |
| 222 | cpu_to_le32(0xf0005000), |
| 223 | cpu_to_le32(0xf0005000), |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 224 | }, |
Emmanuel Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 225 | }; |
| 226 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 227 | /* 20MHz / 40MHz below / 40Mhz above*/ |
| 228 | static 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 Grumbach | d2ccc90 | 2013-12-24 10:55:24 +0200 | [diff] [blame] | 297 | cpu_to_le64(0xFFC0000000ULL), |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 298 | cpu_to_le64(0x0ULL), |
Emmanuel Grumbach | d2ccc90 | 2013-12-24 10:55:24 +0200 | [diff] [blame] | 299 | cpu_to_le64(0x0ULL) |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 300 | }, |
Emmanuel Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 301 | }; |
| 302 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 303 | static const __le32 iwl_bt_mprio_lut[BT_COEX_MULTI_PRIO_LUT_SIZE] = { |
Emmanuel Grumbach | 2adc894 | 2014-05-11 17:28:05 +0300 | [diff] [blame] | 304 | cpu_to_le32(0x28412201), |
| 305 | cpu_to_le32(0x11118451), |
Emmanuel Grumbach | e715c3a | 2013-06-18 05:34:58 +0300 | [diff] [blame] | 306 | }; |
| 307 | |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 308 | struct 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 | */ |
| 325 | static 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 Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 517 | static enum iwl_bt_coex_lut_type |
| 518 | iwl_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 Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 523 | u32 primary_ch_phy_id, secondary_ch_phy_id; |
Emmanuel Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 524 | |
Emmanuel Grumbach | 9145d15 | 2013-07-18 08:45:41 +0300 | [diff] [blame] | 525 | /* |
| 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 Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 532 | |
| 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 Grumbach | 7fa4fa0 | 2014-05-25 13:58:31 +0300 | [diff] [blame] | 540 | return BT_COEX_INVALID_LUT; |
Emmanuel Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | ret = BT_COEX_TX_DIS_LUT; |
| 544 | |
Emmanuel Grumbach | 3914991 | 2013-07-14 13:40:21 +0300 | [diff] [blame] | 545 | if (mvm->cfg->bt_shared_single_ant) { |
| 546 | rcu_read_unlock(); |
| 547 | return ret; |
| 548 | } |
| 549 | |
Emmanuel Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 550 | phy_ctx_id = *((u16 *)chanctx_conf->drv_priv); |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 551 | 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 Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 554 | |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 555 | if (primary_ch_phy_id == phy_ctx_id) |
Emmanuel Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 556 | ret = le32_to_cpu(mvm->last_bt_notif.primary_ch_lut); |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 557 | else if (secondary_ch_phy_id == phy_ctx_id) |
Emmanuel Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 558 | 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 Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 566 | int iwl_send_bt_init_conf(struct iwl_mvm *mvm) |
| 567 | { |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 568 | struct iwl_bt_coex_cmd *bt_cmd; |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 569 | struct iwl_host_cmd cmd = { |
| 570 | .id = BT_CONFIG, |
| 571 | .len = { sizeof(*bt_cmd), }, |
| 572 | .dataflags = { IWL_HCMD_DFL_NOCOPY, }, |
Emmanuel Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 573 | }; |
| 574 | int ret; |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 575 | u32 mode; |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 576 | |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 577 | 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 Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 580 | bt_cmd = kzalloc(sizeof(*bt_cmd), GFP_KERNEL); |
| 581 | if (!bt_cmd) |
| 582 | return -ENOMEM; |
| 583 | cmd.data[0] = bt_cmd; |
| 584 | |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 585 | lockdep_assert_held(&mvm->mutex); |
| 586 | |
| 587 | if (unlikely(mvm->bt_force_ant_mode != BT_FORCE_ANT_DIS)) { |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 588 | u32 mode; |
| 589 | |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 590 | switch (mvm->bt_force_ant_mode) { |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 591 | case BT_FORCE_ANT_BT: |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 592 | mode = BT_COEX_BT; |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 593 | break; |
| 594 | case BT_FORCE_ANT_WIFI: |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 595 | mode = BT_COEX_WIFI; |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 596 | break; |
| 597 | default: |
| 598 | WARN_ON(1); |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 599 | mode = 0; |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 600 | } |
| 601 | |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 602 | bt_cmd->mode = cpu_to_le32(mode); |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 603 | goto send_cmd; |
| 604 | } |
| 605 | |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 606 | 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 Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 613 | |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 614 | mode = iwlwifi_mod_params.bt_coex_active ? BT_COEX_NW : BT_COEX_DISABLE; |
| 615 | bt_cmd->mode = cpu_to_le32(mode); |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 616 | |
Emmanuel Grumbach | 741e703 | 2014-01-27 12:12:50 +0200 | [diff] [blame] | 617 | if (IWL_MVM_BT_COEX_SYNC2SCO) |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 618 | bt_cmd->enabled_modules |= |
| 619 | cpu_to_le32(BT_COEX_SYNC2SCO_ENABLED); |
Emmanuel Grumbach | 741e703 | 2014-01-27 12:12:50 +0200 | [diff] [blame] | 620 | |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 621 | if (IWL_MVM_BT_COEX_CORUNNING) |
| 622 | bt_cmd->enabled_modules |= cpu_to_le32(BT_COEX_CORUN_ENABLED); |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 623 | |
Emmanuel Grumbach | cdb0056 | 2014-03-16 21:55:43 +0200 | [diff] [blame] | 624 | if (IWL_MVM_BT_COEX_MPLUT) { |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 625 | 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 Grumbach | cdb0056 | 2014-03-16 21:55:43 +0200 | [diff] [blame] | 628 | } |
| 629 | |
Emmanuel Grumbach | 261c0ec | 2014-06-11 15:37:25 +0300 | [diff] [blame] | 630 | bt_cmd->enabled_modules |= cpu_to_le32(BT_COEX_HIGH_BAND_RET); |
| 631 | |
Emmanuel Grumbach | d1d5e3c | 2013-09-11 13:33:28 +0300 | [diff] [blame] | 632 | 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 Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 639 | memcpy(&bt_cmd->mplut_prio_boost, iwl_bt_prio_boost, |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 640 | sizeof(iwl_bt_prio_boost)); |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 641 | memcpy(&bt_cmd->multiprio_lut, iwl_bt_mprio_lut, |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 642 | sizeof(iwl_bt_mprio_lut)); |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 643 | |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 644 | send_cmd: |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 645 | memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif)); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 646 | memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd)); |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 647 | |
| 648 | ret = iwl_mvm_send_cmd(mvm, &cmd); |
| 649 | |
| 650 | kfree(bt_cmd); |
| 651 | return ret; |
Emmanuel Grumbach | 931d416 | 2013-01-17 09:42:25 +0200 | [diff] [blame] | 652 | } |
Emmanuel Grumbach | f421f9c | 2013-01-17 14:20:29 +0200 | [diff] [blame] | 653 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 654 | static int iwl_mvm_bt_udpate_sw_boost(struct iwl_mvm *mvm) |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 655 | { |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 656 | struct iwl_bt_coex_profile_notif *notif = &mvm->last_bt_notif; |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 657 | 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 Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 664 | |
| 665 | lockdep_assert_held(&mvm->mutex); |
| 666 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 667 | 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 Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 669 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 670 | 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 Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 672 | |
| 673 | /* Don't send HCMD if there is no update */ |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 674 | 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 Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 676 | return 0; |
| 677 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 678 | 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 Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 682 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 683 | BUILD_BUG_ON(ARRAY_SIZE(ack_kill_msk) < ARRAY_SIZE(cmd.boost_values)); |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 684 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 685 | 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 Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 691 | |
Emmanuel Grumbach | df878f3 | 2014-04-02 12:23:09 +0300 | [diff] [blame] | 692 | return iwl_mvm_send_cmd_pdu(mvm, BT_COEX_UPDATE_SW_BOOST, 0, |
| 693 | sizeof(cmd), &cmd); |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 694 | } |
| 695 | |
Emmanuel Grumbach | 1fa477c | 2014-05-20 13:54:27 +0300 | [diff] [blame] | 696 | static int iwl_mvm_bt_coex_reduced_txp(struct iwl_mvm *mvm, u8 sta_id, |
| 697 | bool enable) |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 698 | { |
Emmanuel Grumbach | 455e7ac | 2014-05-22 12:48:27 +0300 | [diff] [blame] | 699 | struct iwl_bt_coex_reduced_txp_update_cmd cmd = {}; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 700 | struct iwl_mvm_sta *mvmsta; |
Emmanuel Grumbach | 455e7ac | 2014-05-22 12:48:27 +0300 | [diff] [blame] | 701 | u32 value; |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 702 | int ret; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 703 | |
Emmanuel Grumbach | f327b04 | 2014-01-14 08:30:32 +0200 | [diff] [blame] | 704 | mvmsta = iwl_mvm_sta_from_staid_protected(mvm, sta_id); |
| 705 | if (!mvmsta) |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 706 | return 0; |
| 707 | |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 708 | /* nothing to do */ |
Emmanuel Grumbach | 1fa477c | 2014-05-20 13:54:27 +0300 | [diff] [blame] | 709 | if (mvmsta->bt_reduced_txpower == enable) |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 710 | return 0; |
| 711 | |
Emmanuel Grumbach | 455e7ac | 2014-05-22 12:48:27 +0300 | [diff] [blame] | 712 | value = mvmsta->sta_id; |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 713 | |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 714 | if (enable) |
Emmanuel Grumbach | 455e7ac | 2014-05-22 12:48:27 +0300 | [diff] [blame] | 715 | value |= BT_REDUCED_TX_POWER_BIT; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 716 | |
| 717 | IWL_DEBUG_COEX(mvm, "%sable reduced Tx Power for sta %d\n", |
| 718 | enable ? "en" : "dis", sta_id); |
| 719 | |
Emmanuel Grumbach | 455e7ac | 2014-05-22 12:48:27 +0300 | [diff] [blame] | 720 | cmd.reduced_txp = cpu_to_le32(value); |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 721 | mvmsta->bt_reduced_txpower = enable; |
| 722 | |
Emmanuel Grumbach | 455e7ac | 2014-05-22 12:48:27 +0300 | [diff] [blame] | 723 | ret = iwl_mvm_send_cmd_pdu(mvm, BT_COEX_UPDATE_REDUCED_TXP, CMD_ASYNC, |
| 724 | sizeof(cmd), &cmd); |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 725 | |
Emmanuel Grumbach | 03e304e | 2013-06-26 15:54:34 +0300 | [diff] [blame] | 726 | return ret; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 727 | } |
| 728 | |
| 729 | struct iwl_bt_iterator_data { |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 730 | struct iwl_bt_coex_profile_notif *notif; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 731 | struct iwl_mvm *mvm; |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 732 | struct ieee80211_chanctx_conf *primary; |
| 733 | struct ieee80211_chanctx_conf *secondary; |
Emmanuel Grumbach | 0ee5bcd | 2014-01-15 16:57:54 +0200 | [diff] [blame] | 734 | bool primary_ll; |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 735 | }; |
| 736 | |
Emmanuel Grumbach | f6fc577 | 2013-09-08 08:57:15 +0300 | [diff] [blame] | 737 | static inline |
| 738 | void 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 Grumbach | 8286d9f | 2014-05-27 22:54:18 +0300 | [diff] [blame] | 746 | enable ? -IWL_MVM_BT_COEX_EN_RED_TXP_THRESH : 0; |
Emmanuel Grumbach | f6fc577 | 2013-09-08 08:57:15 +0300 | [diff] [blame] | 747 | mvmvif->bf_data.bt_coex_min_thold = |
Emmanuel Grumbach | 8286d9f | 2014-05-27 22:54:18 +0300 | [diff] [blame] | 748 | enable ? -IWL_MVM_BT_COEX_DIS_RED_TXP_THRESH : 0; |
Emmanuel Grumbach | f6fc577 | 2013-09-08 08:57:15 +0300 | [diff] [blame] | 749 | } |
| 750 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 751 | /* must be called under rcu_read_lock */ |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 752 | static 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 Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 756 | struct iwl_bt_iterator_data *data = _data; |
| 757 | struct iwl_mvm *mvm = data->mvm; |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 758 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 759 | enum ieee80211_smps_mode smps_mode; |
Emmanuel Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 760 | u32 bt_activity_grading; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 761 | int ave_rssi; |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 762 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 763 | lockdep_assert_held(&mvm->mutex); |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 764 | |
Emmanuel Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 765 | 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 Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 769 | break; |
| 770 | case NL80211_IFTYPE_AP: |
Emmanuel Grumbach | 45bbb2c | 2014-07-07 14:38:39 +0300 | [diff] [blame] | 771 | if (!mvmvif->ap_ibss_active) |
Emmanuel Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 772 | return; |
Emmanuel Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 773 | break; |
| 774 | default: |
| 775 | return; |
| 776 | } |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 777 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 778 | chanctx_conf = rcu_dereference(vif->chanctx_conf); |
| 779 | |
| 780 | /* If channel context is invalid or not on 2.4GHz .. */ |
| 781 | if ((!chanctx_conf || |
| 782 | chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ)) { |
Emmanuel Grumbach | 0f618e6 | 2014-05-20 15:48:18 +0300 | [diff] [blame] | 783 | if (vif->type == NL80211_IFTYPE_STATION) { |
Emmanuel Grumbach | 45bbb2c | 2014-07-07 14:38:39 +0300 | [diff] [blame] | 784 | /* ... relax constraints and disable rssi events */ |
| 785 | iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX, |
| 786 | smps_mode); |
Emmanuel Grumbach | 0f618e6 | 2014-05-20 15:48:18 +0300 | [diff] [blame] | 787 | iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, |
| 788 | false); |
Emmanuel Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 789 | iwl_mvm_bt_coex_enable_rssi_event(mvm, vif, false, 0); |
Emmanuel Grumbach | 0f618e6 | 2014-05-20 15:48:18 +0300 | [diff] [blame] | 790 | } |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 791 | return; |
| 792 | } |
| 793 | |
Emmanuel Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 794 | bt_activity_grading = le32_to_cpu(data->notif->bt_activity_grading); |
| 795 | if (bt_activity_grading >= BT_HIGH_TRAFFIC) |
| 796 | smps_mode = IEEE80211_SMPS_STATIC; |
| 797 | else if (bt_activity_grading >= BT_LOW_TRAFFIC) |
Emmanuel Grumbach | 45bbb2c | 2014-07-07 14:38:39 +0300 | [diff] [blame] | 798 | smps_mode = IEEE80211_SMPS_DYNAMIC; |
Emmanuel Grumbach | 4d66449 | 2014-04-30 18:09:59 +0300 | [diff] [blame] | 799 | |
| 800 | /* relax SMPS contraints for next association */ |
| 801 | if (!vif->bss_conf.assoc) |
| 802 | smps_mode = IEEE80211_SMPS_AUTOMATIC; |
| 803 | |
Emmanuel Grumbach | 4c86f93 | 2014-06-30 10:26:02 +0300 | [diff] [blame] | 804 | if (IWL_COEX_IS_RRC_ON(mvm->last_bt_notif.ttc_rrc_status, |
| 805 | mvmvif->phy_ctxt->id)) |
| 806 | smps_mode = IEEE80211_SMPS_AUTOMATIC; |
| 807 | |
Emmanuel Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 808 | IWL_DEBUG_COEX(data->mvm, |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 809 | "mac %d: bt_activity_grading %d smps_req %d\n", |
| 810 | mvmvif->id, bt_activity_grading, smps_mode); |
Emmanuel Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 811 | |
Emmanuel Grumbach | 45bbb2c | 2014-07-07 14:38:39 +0300 | [diff] [blame] | 812 | if (vif->type == NL80211_IFTYPE_STATION) |
| 813 | iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_BT_COEX, |
| 814 | smps_mode); |
Emmanuel Grumbach | f6415f6 | 2013-12-26 15:32:40 +0200 | [diff] [blame] | 815 | |
Emmanuel Grumbach | 0ee5bcd | 2014-01-15 16:57:54 +0200 | [diff] [blame] | 816 | /* low latency is always primary */ |
| 817 | if (iwl_mvm_vif_low_latency(mvmvif)) { |
| 818 | data->primary_ll = true; |
| 819 | |
| 820 | data->secondary = data->primary; |
| 821 | data->primary = chanctx_conf; |
| 822 | } |
| 823 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 824 | if (vif->type == NL80211_IFTYPE_AP) { |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 825 | if (!mvmvif->ap_ibss_active) |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 826 | return; |
| 827 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 828 | if (chanctx_conf == data->primary) |
| 829 | return; |
| 830 | |
Emmanuel Grumbach | 0ee5bcd | 2014-01-15 16:57:54 +0200 | [diff] [blame] | 831 | if (!data->primary_ll) { |
| 832 | /* |
| 833 | * downgrade the current primary no matter what its |
| 834 | * type is. |
| 835 | */ |
| 836 | data->secondary = data->primary; |
| 837 | data->primary = chanctx_conf; |
| 838 | } else { |
| 839 | /* there is low latency vif - we will be secondary */ |
| 840 | data->secondary = chanctx_conf; |
| 841 | } |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 842 | return; |
| 843 | } |
| 844 | |
Emmanuel Grumbach | 0ee5bcd | 2014-01-15 16:57:54 +0200 | [diff] [blame] | 845 | /* |
| 846 | * STA / P2P Client, try to be primary if first vif. If we are in low |
| 847 | * latency mode, we are already in primary and just don't do much |
| 848 | */ |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 849 | if (!data->primary || data->primary == chanctx_conf) |
| 850 | data->primary = chanctx_conf; |
| 851 | else if (!data->secondary) |
| 852 | /* if secondary is not NULL, it might be a GO */ |
| 853 | data->secondary = chanctx_conf; |
Emmanuel Grumbach | 9166b1e | 2013-03-20 15:28:27 +0200 | [diff] [blame] | 854 | |
Emmanuel Grumbach | 4d66449 | 2014-04-30 18:09:59 +0300 | [diff] [blame] | 855 | /* |
| 856 | * don't reduce the Tx power if one of these is true: |
| 857 | * we are in LOOSE |
| 858 | * single share antenna product |
| 859 | * BT is active |
| 860 | * we are associated |
| 861 | */ |
Emmanuel Grumbach | 3914991 | 2013-07-14 13:40:21 +0300 | [diff] [blame] | 862 | if (iwl_get_coex_type(mvm, vif) == BT_COEX_LOOSE_LUT || |
Emmanuel Grumbach | 4d66449 | 2014-04-30 18:09:59 +0300 | [diff] [blame] | 863 | mvm->cfg->bt_shared_single_ant || !vif->bss_conf.assoc || |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 864 | le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) == BT_OFF) { |
Emmanuel Grumbach | 0f618e6 | 2014-05-20 15:48:18 +0300 | [diff] [blame] | 865 | iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, false); |
Emmanuel Grumbach | f6fc577 | 2013-09-08 08:57:15 +0300 | [diff] [blame] | 866 | iwl_mvm_bt_coex_enable_rssi_event(mvm, vif, false, 0); |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 867 | return; |
Emmanuel Grumbach | 3914991 | 2013-07-14 13:40:21 +0300 | [diff] [blame] | 868 | } |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 869 | |
Andrei Otcheretianski | 911222b | 2013-07-21 17:37:19 +0300 | [diff] [blame] | 870 | /* try to get the avg rssi from fw */ |
| 871 | ave_rssi = mvmvif->bf_data.ave_beacon_signal; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 872 | |
| 873 | /* if the RSSI isn't valid, fake it is very low */ |
| 874 | if (!ave_rssi) |
| 875 | ave_rssi = -100; |
Emmanuel Grumbach | 8286d9f | 2014-05-27 22:54:18 +0300 | [diff] [blame] | 876 | if (ave_rssi > -IWL_MVM_BT_COEX_EN_RED_TXP_THRESH) { |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 877 | if (iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, true)) |
| 878 | IWL_ERR(mvm, "Couldn't send BT_CONFIG cmd\n"); |
Emmanuel Grumbach | 8286d9f | 2014-05-27 22:54:18 +0300 | [diff] [blame] | 879 | } else if (ave_rssi < -IWL_MVM_BT_COEX_DIS_RED_TXP_THRESH) { |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 880 | if (iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, false)) |
| 881 | IWL_ERR(mvm, "Couldn't send BT_CONFIG cmd\n"); |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | /* Begin to monitor the RSSI: it may influence the reduced Tx power */ |
Emmanuel Grumbach | f6fc577 | 2013-09-08 08:57:15 +0300 | [diff] [blame] | 885 | iwl_mvm_bt_coex_enable_rssi_event(mvm, vif, true, ave_rssi); |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 886 | } |
| 887 | |
Emmanuel Grumbach | d37cac9 | 2013-03-29 14:56:19 +0300 | [diff] [blame] | 888 | static void iwl_mvm_bt_coex_notif_handle(struct iwl_mvm *mvm) |
Emmanuel Grumbach | f421f9c | 2013-01-17 14:20:29 +0200 | [diff] [blame] | 889 | { |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 890 | struct iwl_bt_iterator_data data = { |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 891 | .mvm = mvm, |
Emmanuel Grumbach | d37cac9 | 2013-03-29 14:56:19 +0300 | [diff] [blame] | 892 | .notif = &mvm->last_bt_notif, |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 893 | }; |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 894 | struct iwl_bt_coex_ci_cmd cmd = {}; |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 895 | u8 ci_bw_idx; |
Emmanuel Grumbach | f421f9c | 2013-01-17 14:20:29 +0200 | [diff] [blame] | 896 | |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 897 | /* Ignore updates if we are in force mode */ |
| 898 | if (unlikely(mvm->bt_force_ant_mode != BT_FORCE_ANT_DIS)) |
| 899 | return; |
| 900 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 901 | rcu_read_lock(); |
Emmanuel Grumbach | 7da052b | 2013-02-10 17:06:17 +0200 | [diff] [blame] | 902 | ieee80211_iterate_active_interfaces_atomic( |
| 903 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 904 | iwl_mvm_bt_notif_iterator, &data); |
| 905 | |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 906 | if (data.primary) { |
| 907 | struct ieee80211_chanctx_conf *chan = data.primary; |
| 908 | if (WARN_ON(!chan->def.chan)) { |
| 909 | rcu_read_unlock(); |
| 910 | return; |
| 911 | } |
| 912 | |
| 913 | if (chan->def.width < NL80211_CHAN_WIDTH_40) { |
| 914 | ci_bw_idx = 0; |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 915 | } else { |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 916 | if (chan->def.center_freq1 > |
| 917 | chan->def.chan->center_freq) |
| 918 | ci_bw_idx = 2; |
| 919 | else |
| 920 | ci_bw_idx = 1; |
| 921 | } |
| 922 | |
| 923 | cmd.bt_primary_ci = |
| 924 | iwl_ci_mask[chan->def.chan->hw_value][ci_bw_idx]; |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 925 | cmd.primary_ch_phy_id = |
| 926 | cpu_to_le32(*((u16 *)data.primary->drv_priv)); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | if (data.secondary) { |
| 930 | struct ieee80211_chanctx_conf *chan = data.secondary; |
| 931 | if (WARN_ON(!data.secondary->def.chan)) { |
| 932 | rcu_read_unlock(); |
| 933 | return; |
| 934 | } |
| 935 | |
| 936 | if (chan->def.width < NL80211_CHAN_WIDTH_40) { |
| 937 | ci_bw_idx = 0; |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 938 | } else { |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 939 | if (chan->def.center_freq1 > |
| 940 | chan->def.chan->center_freq) |
| 941 | ci_bw_idx = 2; |
| 942 | else |
| 943 | ci_bw_idx = 1; |
| 944 | } |
| 945 | |
| 946 | cmd.bt_secondary_ci = |
| 947 | iwl_ci_mask[chan->def.chan->hw_value][ci_bw_idx]; |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 948 | cmd.secondary_ch_phy_id = |
| 949 | cpu_to_le32(*((u16 *)data.secondary->drv_priv)); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 950 | } |
| 951 | |
| 952 | rcu_read_unlock(); |
| 953 | |
| 954 | /* Don't spam the fw with the same command over and over */ |
| 955 | if (memcmp(&cmd, &mvm->last_bt_ci_cmd, sizeof(cmd))) { |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 956 | if (iwl_mvm_send_cmd_pdu(mvm, BT_COEX_CI, 0, |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 957 | sizeof(cmd), &cmd)) |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 958 | IWL_ERR(mvm, "Failed to send BT_CI cmd\n"); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 959 | memcpy(&mvm->last_bt_ci_cmd, &cmd, sizeof(cmd)); |
| 960 | } |
| 961 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 962 | if (iwl_mvm_bt_udpate_sw_boost(mvm)) |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 963 | IWL_ERR(mvm, "Failed to update the ctrl_kill_msk\n"); |
Emmanuel Grumbach | 9166b1e | 2013-03-20 15:28:27 +0200 | [diff] [blame] | 964 | } |
| 965 | |
Emmanuel Grumbach | 9166b1e | 2013-03-20 15:28:27 +0200 | [diff] [blame] | 966 | int iwl_mvm_rx_bt_coex_notif(struct iwl_mvm *mvm, |
| 967 | struct iwl_rx_cmd_buffer *rxb, |
| 968 | struct iwl_device_cmd *dev_cmd) |
| 969 | { |
| 970 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
Emmanuel Grumbach | df878f3 | 2014-04-02 12:23:09 +0300 | [diff] [blame] | 971 | struct iwl_bt_coex_profile_notif *notif = (void *)pkt->data; |
Emmanuel Grumbach | 9166b1e | 2013-03-20 15:28:27 +0200 | [diff] [blame] | 972 | |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 973 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) |
| 974 | return iwl_mvm_rx_bt_coex_notif_old(mvm, rxb, dev_cmd); |
| 975 | |
Emmanuel Grumbach | 9166b1e | 2013-03-20 15:28:27 +0200 | [diff] [blame] | 976 | IWL_DEBUG_COEX(mvm, "BT Coex Notification received\n"); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 977 | IWL_DEBUG_COEX(mvm, "\tBT ci compliance %d\n", notif->bt_ci_compliance); |
| 978 | IWL_DEBUG_COEX(mvm, "\tBT primary_ch_lut %d\n", |
| 979 | le32_to_cpu(notif->primary_ch_lut)); |
| 980 | IWL_DEBUG_COEX(mvm, "\tBT secondary_ch_lut %d\n", |
| 981 | le32_to_cpu(notif->secondary_ch_lut)); |
| 982 | IWL_DEBUG_COEX(mvm, "\tBT activity grading %d\n", |
| 983 | le32_to_cpu(notif->bt_activity_grading)); |
Emmanuel Grumbach | 9166b1e | 2013-03-20 15:28:27 +0200 | [diff] [blame] | 984 | |
Emmanuel Grumbach | d37cac9 | 2013-03-29 14:56:19 +0300 | [diff] [blame] | 985 | /* remember this notification for future use: rssi fluctuations */ |
| 986 | memcpy(&mvm->last_bt_notif, notif, sizeof(mvm->last_bt_notif)); |
| 987 | |
| 988 | iwl_mvm_bt_coex_notif_handle(mvm); |
Emmanuel Grumbach | f421f9c | 2013-01-17 14:20:29 +0200 | [diff] [blame] | 989 | |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 990 | /* |
| 991 | * This is an async handler for a notification, returning anything other |
| 992 | * than 0 doesn't make sense even if HCMD failed. |
| 993 | */ |
Emmanuel Grumbach | f421f9c | 2013-01-17 14:20:29 +0200 | [diff] [blame] | 994 | return 0; |
| 995 | } |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 996 | |
| 997 | static void iwl_mvm_bt_rssi_iterator(void *_data, u8 *mac, |
| 998 | struct ieee80211_vif *vif) |
| 999 | { |
| 1000 | struct iwl_mvm_vif *mvmvif = (void *)vif->drv_priv; |
| 1001 | struct iwl_bt_iterator_data *data = _data; |
| 1002 | struct iwl_mvm *mvm = data->mvm; |
| 1003 | |
| 1004 | struct ieee80211_sta *sta; |
| 1005 | struct iwl_mvm_sta *mvmsta; |
| 1006 | |
Emmanuel Grumbach | f6fc577 | 2013-09-08 08:57:15 +0300 | [diff] [blame] | 1007 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 1008 | |
| 1009 | rcu_read_lock(); |
| 1010 | chanctx_conf = rcu_dereference(vif->chanctx_conf); |
| 1011 | /* If channel context is invalid or not on 2.4GHz - don't count it */ |
| 1012 | if (!chanctx_conf || |
| 1013 | chanctx_conf->def.chan->band != IEEE80211_BAND_2GHZ) { |
| 1014 | rcu_read_unlock(); |
| 1015 | return; |
| 1016 | } |
| 1017 | rcu_read_unlock(); |
| 1018 | |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1019 | if (vif->type != NL80211_IFTYPE_STATION || |
| 1020 | mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT) |
| 1021 | return; |
| 1022 | |
| 1023 | sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[mvmvif->ap_sta_id], |
| 1024 | lockdep_is_held(&mvm->mutex)); |
Emmanuel Grumbach | 56c07a9 | 2013-10-21 11:03:53 +0300 | [diff] [blame] | 1025 | |
| 1026 | /* This can happen if the station has been removed right now */ |
| 1027 | if (IS_ERR_OR_NULL(sta)) |
| 1028 | return; |
| 1029 | |
Johannes Berg | 5b577a9 | 2013-11-14 18:20:04 +0100 | [diff] [blame] | 1030 | mvmsta = iwl_mvm_sta_from_mac80211(sta); |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1031 | } |
| 1032 | |
| 1033 | void iwl_mvm_bt_rssi_event(struct iwl_mvm *mvm, struct ieee80211_vif *vif, |
| 1034 | enum ieee80211_rssi_event rssi_event) |
| 1035 | { |
| 1036 | struct iwl_mvm_vif *mvmvif = (void *)vif->drv_priv; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1037 | struct iwl_bt_iterator_data data = { |
| 1038 | .mvm = mvm, |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1039 | }; |
| 1040 | int ret; |
| 1041 | |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 1042 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) { |
| 1043 | iwl_mvm_bt_rssi_event_old(mvm, vif, rssi_event); |
| 1044 | return; |
| 1045 | } |
| 1046 | |
Johannes Berg | 3dd1cd2 | 2013-10-02 12:05:24 +0200 | [diff] [blame] | 1047 | lockdep_assert_held(&mvm->mutex); |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1048 | |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 1049 | /* Ignore updates if we are in force mode */ |
| 1050 | if (unlikely(mvm->bt_force_ant_mode != BT_FORCE_ANT_DIS)) |
| 1051 | return; |
| 1052 | |
Emmanuel Grumbach | 1e92919 | 2014-03-04 10:28:23 +0200 | [diff] [blame] | 1053 | /* |
| 1054 | * Rssi update while not associated - can happen since the statistics |
| 1055 | * are handled asynchronously |
| 1056 | */ |
| 1057 | if (mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT) |
Johannes Berg | 3dd1cd2 | 2013-10-02 12:05:24 +0200 | [diff] [blame] | 1058 | return; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1059 | |
Emmanuel Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 1060 | /* No BT - reports should be disabled */ |
Emmanuel Grumbach | 430a3bb | 2014-04-02 09:55:16 +0300 | [diff] [blame] | 1061 | if (le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) == BT_OFF) |
Johannes Berg | 3dd1cd2 | 2013-10-02 12:05:24 +0200 | [diff] [blame] | 1062 | return; |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1063 | |
| 1064 | IWL_DEBUG_COEX(mvm, "RSSI for %pM is now %s\n", vif->bss_conf.bssid, |
| 1065 | rssi_event == RSSI_EVENT_HIGH ? "HIGH" : "LOW"); |
| 1066 | |
| 1067 | /* |
| 1068 | * Check if rssi is good enough for reduced Tx power, but not in loose |
| 1069 | * scheme. |
| 1070 | */ |
Emmanuel Grumbach | 3914991 | 2013-07-14 13:40:21 +0300 | [diff] [blame] | 1071 | if (rssi_event == RSSI_EVENT_LOW || mvm->cfg->bt_shared_single_ant || |
Emmanuel Grumbach | 4515f30 | 2013-06-30 07:51:54 +0300 | [diff] [blame] | 1072 | iwl_get_coex_type(mvm, vif) == BT_COEX_LOOSE_LUT) |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1073 | ret = iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, |
| 1074 | false); |
| 1075 | else |
| 1076 | ret = iwl_mvm_bt_coex_reduced_txp(mvm, mvmvif->ap_sta_id, true); |
| 1077 | |
| 1078 | if (ret) |
| 1079 | IWL_ERR(mvm, "couldn't send BT_CONFIG HCMD upon RSSI event\n"); |
| 1080 | |
| 1081 | ieee80211_iterate_active_interfaces_atomic( |
| 1082 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 1083 | iwl_mvm_bt_rssi_iterator, &data); |
| 1084 | |
Emmanuel Grumbach | 1459f26 | 2014-07-06 09:34:38 +0300 | [diff] [blame] | 1085 | if (iwl_mvm_bt_udpate_sw_boost(mvm)) |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1086 | IWL_ERR(mvm, "Failed to update the ctrl_kill_msk\n"); |
Emmanuel Grumbach | 2b76ef1 | 2013-01-24 10:35:13 +0200 | [diff] [blame] | 1087 | } |
Emmanuel Grumbach | 9166b1e | 2013-03-20 15:28:27 +0200 | [diff] [blame] | 1088 | |
Emmanuel Grumbach | 9145d15 | 2013-07-18 08:45:41 +0300 | [diff] [blame] | 1089 | #define LINK_QUAL_AGG_TIME_LIMIT_DEF (4000) |
| 1090 | #define LINK_QUAL_AGG_TIME_LIMIT_BT_ACT (1200) |
| 1091 | |
Emmanuel Grumbach | 5b7ff61 | 2014-03-11 19:27:45 +0200 | [diff] [blame] | 1092 | u16 iwl_mvm_coex_agg_time_limit(struct iwl_mvm *mvm, |
| 1093 | struct ieee80211_sta *sta) |
Emmanuel Grumbach | 9145d15 | 2013-07-18 08:45:41 +0300 | [diff] [blame] | 1094 | { |
Johannes Berg | 5b577a9 | 2013-11-14 18:20:04 +0100 | [diff] [blame] | 1095 | struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); |
Emmanuel Grumbach | 4c86f93 | 2014-06-30 10:26:02 +0300 | [diff] [blame] | 1096 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif); |
| 1097 | struct iwl_mvm_phy_ctxt *phy_ctxt = mvmvif->phy_ctxt; |
Emmanuel Grumbach | 9145d15 | 2013-07-18 08:45:41 +0300 | [diff] [blame] | 1098 | enum iwl_bt_coex_lut_type lut_type; |
| 1099 | |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 1100 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) |
| 1101 | return iwl_mvm_coex_agg_time_limit_old(mvm, sta); |
| 1102 | |
Emmanuel Grumbach | 4c86f93 | 2014-06-30 10:26:02 +0300 | [diff] [blame] | 1103 | if (IWL_COEX_IS_TTC_ON(mvm->last_bt_notif.ttc_rrc_status, phy_ctxt->id)) |
| 1104 | return LINK_QUAL_AGG_TIME_LIMIT_DEF; |
| 1105 | |
Emmanuel Grumbach | 9145d15 | 2013-07-18 08:45:41 +0300 | [diff] [blame] | 1106 | if (le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) < |
Emmanuel Grumbach | c211935 | 2013-11-13 22:00:30 +0200 | [diff] [blame] | 1107 | BT_HIGH_TRAFFIC) |
Emmanuel Grumbach | 9145d15 | 2013-07-18 08:45:41 +0300 | [diff] [blame] | 1108 | return LINK_QUAL_AGG_TIME_LIMIT_DEF; |
Emmanuel Grumbach | 35fbf5d | 2014-06-02 16:18:42 +0300 | [diff] [blame] | 1109 | |
Emmanuel Grumbach | 9145d15 | 2013-07-18 08:45:41 +0300 | [diff] [blame] | 1110 | lut_type = iwl_get_coex_type(mvm, mvmsta->vif); |
| 1111 | |
Emmanuel Grumbach | 7fa4fa0 | 2014-05-25 13:58:31 +0300 | [diff] [blame] | 1112 | if (lut_type == BT_COEX_LOOSE_LUT || lut_type == BT_COEX_INVALID_LUT) |
Emmanuel Grumbach | 9145d15 | 2013-07-18 08:45:41 +0300 | [diff] [blame] | 1113 | return LINK_QUAL_AGG_TIME_LIMIT_DEF; |
| 1114 | |
| 1115 | /* tight coex, high bt traffic, reduce AGG time limit */ |
| 1116 | return LINK_QUAL_AGG_TIME_LIMIT_BT_ACT; |
| 1117 | } |
| 1118 | |
Emmanuel Grumbach | ffa6c70 | 2013-10-06 11:41:20 +0300 | [diff] [blame] | 1119 | bool iwl_mvm_bt_coex_is_mimo_allowed(struct iwl_mvm *mvm, |
| 1120 | struct ieee80211_sta *sta) |
| 1121 | { |
Johannes Berg | 5b577a9 | 2013-11-14 18:20:04 +0100 | [diff] [blame] | 1122 | struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); |
Emmanuel Grumbach | 4c86f93 | 2014-06-30 10:26:02 +0300 | [diff] [blame] | 1123 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif); |
| 1124 | struct iwl_mvm_phy_ctxt *phy_ctxt = mvmvif->phy_ctxt; |
Emmanuel Grumbach | 7fa4fa0 | 2014-05-25 13:58:31 +0300 | [diff] [blame] | 1125 | enum iwl_bt_coex_lut_type lut_type; |
Emmanuel Grumbach | ffa6c70 | 2013-10-06 11:41:20 +0300 | [diff] [blame] | 1126 | |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 1127 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) |
Emmanuel Grumbach | 5fc7d86 | 2014-07-08 08:44:31 +0300 | [diff] [blame] | 1128 | return iwl_mvm_bt_coex_is_mimo_allowed_old(mvm, sta); |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 1129 | |
Emmanuel Grumbach | 4c86f93 | 2014-06-30 10:26:02 +0300 | [diff] [blame] | 1130 | if (IWL_COEX_IS_TTC_ON(mvm->last_bt_notif.ttc_rrc_status, phy_ctxt->id)) |
Emmanuel Grumbach | 35fbf5d | 2014-06-02 16:18:42 +0300 | [diff] [blame] | 1131 | return true; |
| 1132 | |
Emmanuel Grumbach | ffa6c70 | 2013-10-06 11:41:20 +0300 | [diff] [blame] | 1133 | if (le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) < |
| 1134 | BT_HIGH_TRAFFIC) |
| 1135 | return true; |
| 1136 | |
| 1137 | /* |
Emmanuel Grumbach | 7fa4fa0 | 2014-05-25 13:58:31 +0300 | [diff] [blame] | 1138 | * In Tight / TxTxDis, BT can't Rx while we Tx, so use both antennas |
| 1139 | * since BT is already killed. |
| 1140 | * In Loose, BT can Rx while we Tx, so forbid MIMO to let BT Rx while |
| 1141 | * we Tx. |
| 1142 | * When we are in 5GHz, we'll get BT_COEX_INVALID_LUT allowing MIMO. |
Emmanuel Grumbach | ffa6c70 | 2013-10-06 11:41:20 +0300 | [diff] [blame] | 1143 | */ |
Emmanuel Grumbach | 7fa4fa0 | 2014-05-25 13:58:31 +0300 | [diff] [blame] | 1144 | lut_type = iwl_get_coex_type(mvm, mvmsta->vif); |
| 1145 | return lut_type != BT_COEX_LOOSE_LUT; |
Emmanuel Grumbach | ffa6c70 | 2013-10-06 11:41:20 +0300 | [diff] [blame] | 1146 | } |
| 1147 | |
Emmanuel Grumbach | 34c8b24 | 2014-05-28 21:53:39 +0300 | [diff] [blame] | 1148 | bool iwl_mvm_bt_coex_is_shared_ant_avail(struct iwl_mvm *mvm) |
| 1149 | { |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 1150 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) |
| 1151 | return iwl_mvm_bt_coex_is_shared_ant_avail_old(mvm); |
| 1152 | |
Emmanuel Grumbach | 34c8b24 | 2014-05-28 21:53:39 +0300 | [diff] [blame] | 1153 | return le32_to_cpu(mvm->last_bt_notif.bt_activity_grading) == BT_OFF; |
| 1154 | } |
| 1155 | |
Eliad Peller | 2fd647f | 2014-03-13 17:21:36 +0200 | [diff] [blame] | 1156 | bool iwl_mvm_bt_coex_is_tpc_allowed(struct iwl_mvm *mvm, |
| 1157 | enum ieee80211_band band) |
| 1158 | { |
| 1159 | u32 bt_activity = le32_to_cpu(mvm->last_bt_notif.bt_activity_grading); |
| 1160 | |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 1161 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) |
| 1162 | return iwl_mvm_bt_coex_is_tpc_allowed_old(mvm, band); |
| 1163 | |
Eliad Peller | 2fd647f | 2014-03-13 17:21:36 +0200 | [diff] [blame] | 1164 | if (band != IEEE80211_BAND_2GHZ) |
| 1165 | return false; |
| 1166 | |
| 1167 | return bt_activity >= BT_LOW_TRAFFIC; |
| 1168 | } |
| 1169 | |
Emmanuel Grumbach | ee7bea5 | 2014-03-06 10:30:49 +0200 | [diff] [blame] | 1170 | u8 iwl_mvm_bt_coex_tx_prio(struct iwl_mvm *mvm, struct ieee80211_hdr *hdr, |
Emmanuel Grumbach | b797e3f | 2014-03-06 14:49:36 +0200 | [diff] [blame] | 1171 | struct ieee80211_tx_info *info, u8 ac) |
Emmanuel Grumbach | ee7bea5 | 2014-03-06 10:30:49 +0200 | [diff] [blame] | 1172 | { |
| 1173 | __le16 fc = hdr->frame_control; |
| 1174 | |
Emmanuel Grumbach | b797e3f | 2014-03-06 14:49:36 +0200 | [diff] [blame] | 1175 | if (info->band != IEEE80211_BAND_2GHZ) |
| 1176 | return 0; |
| 1177 | |
Emmanuel Grumbach | cdb0056 | 2014-03-16 21:55:43 +0200 | [diff] [blame] | 1178 | if (unlikely(mvm->bt_tx_prio)) |
| 1179 | return mvm->bt_tx_prio - 1; |
| 1180 | |
Emmanuel Grumbach | ee7bea5 | 2014-03-06 10:30:49 +0200 | [diff] [blame] | 1181 | /* High prio packet (wrt. BT coex) if it is EAPOL, MCAST or MGMT */ |
Emmanuel Grumbach | b797e3f | 2014-03-06 14:49:36 +0200 | [diff] [blame] | 1182 | if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO || |
Emmanuel Grumbach | ee7bea5 | 2014-03-06 10:30:49 +0200 | [diff] [blame] | 1183 | is_multicast_ether_addr(hdr->addr1) || |
Emmanuel Grumbach | b797e3f | 2014-03-06 14:49:36 +0200 | [diff] [blame] | 1184 | ieee80211_is_ctl(fc) || ieee80211_is_mgmt(fc) || |
| 1185 | ieee80211_is_nullfunc(fc) || ieee80211_is_qos_nullfunc(fc)) |
| 1186 | return 3; |
| 1187 | |
| 1188 | switch (ac) { |
| 1189 | case IEEE80211_AC_BE: |
| 1190 | return 1; |
| 1191 | case IEEE80211_AC_VO: |
| 1192 | return 3; |
| 1193 | case IEEE80211_AC_VI: |
Emmanuel Grumbach | ee7bea5 | 2014-03-06 10:30:49 +0200 | [diff] [blame] | 1194 | return 2; |
Emmanuel Grumbach | b797e3f | 2014-03-06 14:49:36 +0200 | [diff] [blame] | 1195 | default: |
| 1196 | break; |
| 1197 | } |
Emmanuel Grumbach | ee7bea5 | 2014-03-06 10:30:49 +0200 | [diff] [blame] | 1198 | |
| 1199 | return 0; |
| 1200 | } |
| 1201 | |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 1202 | void iwl_mvm_bt_coex_vif_change(struct iwl_mvm *mvm) |
Emmanuel Grumbach | 9166b1e | 2013-03-20 15:28:27 +0200 | [diff] [blame] | 1203 | { |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 1204 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) { |
| 1205 | iwl_mvm_bt_coex_vif_change_old(mvm); |
| 1206 | return; |
| 1207 | } |
| 1208 | |
Emmanuel Grumbach | d37cac9 | 2013-03-29 14:56:19 +0300 | [diff] [blame] | 1209 | iwl_mvm_bt_coex_notif_handle(mvm); |
Emmanuel Grumbach | 9166b1e | 2013-03-20 15:28:27 +0200 | [diff] [blame] | 1210 | } |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 1211 | |
| 1212 | int iwl_mvm_rx_ant_coupling_notif(struct iwl_mvm *mvm, |
| 1213 | struct iwl_rx_cmd_buffer *rxb, |
| 1214 | struct iwl_device_cmd *dev_cmd) |
| 1215 | { |
| 1216 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 1217 | u32 ant_isolation = le32_to_cpup((void *)pkt->data); |
Emmanuel Grumbach | 704602a | 2014-04-02 12:23:09 +0300 | [diff] [blame] | 1218 | struct iwl_bt_coex_corun_lut_update_cmd cmd = {}; |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 1219 | u8 __maybe_unused lower_bound, upper_bound; |
| 1220 | u8 lut; |
| 1221 | |
Emmanuel Grumbach | 0ea8d04 | 2014-04-02 09:31:36 +0300 | [diff] [blame] | 1222 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) |
| 1223 | return iwl_mvm_rx_ant_coupling_notif_old(mvm, rxb, dev_cmd); |
| 1224 | |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 1225 | if (!IWL_MVM_BT_COEX_CORUNNING) |
| 1226 | return 0; |
| 1227 | |
| 1228 | lockdep_assert_held(&mvm->mutex); |
| 1229 | |
Emmanuel Grumbach | a39979a | 2014-05-28 12:06:41 +0300 | [diff] [blame] | 1230 | /* Ignore updates if we are in force mode */ |
| 1231 | if (unlikely(mvm->bt_force_ant_mode != BT_FORCE_ANT_DIS)) |
| 1232 | return 0; |
| 1233 | |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 1234 | if (ant_isolation == mvm->last_ant_isol) |
| 1235 | return 0; |
| 1236 | |
| 1237 | for (lut = 0; lut < ARRAY_SIZE(antenna_coupling_ranges) - 1; lut++) |
| 1238 | if (ant_isolation < antenna_coupling_ranges[lut + 1].range) |
| 1239 | break; |
| 1240 | |
| 1241 | lower_bound = antenna_coupling_ranges[lut].range; |
| 1242 | |
| 1243 | if (lut < ARRAY_SIZE(antenna_coupling_ranges) - 1) |
| 1244 | upper_bound = antenna_coupling_ranges[lut + 1].range; |
| 1245 | else |
| 1246 | upper_bound = antenna_coupling_ranges[lut].range; |
| 1247 | |
| 1248 | IWL_DEBUG_COEX(mvm, "Antenna isolation=%d in range [%d,%d[, lut=%d\n", |
| 1249 | ant_isolation, lower_bound, upper_bound, lut); |
| 1250 | |
| 1251 | mvm->last_ant_isol = ant_isolation; |
| 1252 | |
| 1253 | if (mvm->last_corun_lut == lut) |
| 1254 | return 0; |
| 1255 | |
| 1256 | mvm->last_corun_lut = lut; |
| 1257 | |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 1258 | /* For the moment, use the same LUT for 20GHz and 40GHz */ |
Emmanuel Grumbach | 704602a | 2014-04-02 12:23:09 +0300 | [diff] [blame] | 1259 | memcpy(&cmd.corun_lut20, antenna_coupling_ranges[lut].lut20, |
| 1260 | sizeof(cmd.corun_lut20)); |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 1261 | |
Emmanuel Grumbach | 704602a | 2014-04-02 12:23:09 +0300 | [diff] [blame] | 1262 | memcpy(&cmd.corun_lut40, antenna_coupling_ranges[lut].lut20, |
| 1263 | sizeof(cmd.corun_lut40)); |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 1264 | |
Emmanuel Grumbach | 704602a | 2014-04-02 12:23:09 +0300 | [diff] [blame] | 1265 | return iwl_mvm_send_cmd_pdu(mvm, BT_COEX_UPDATE_CORUN_LUT, 0, |
| 1266 | sizeof(cmd), &cmd); |
Emmanuel Grumbach | b9fae2d | 2014-02-17 11:24:10 +0200 | [diff] [blame] | 1267 | } |