blob: d30714be515b38249028337f59d6238b7deff305 [file] [log] [blame]
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -07001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
Wey-Yi Guy901069c2011-04-05 09:42:00 -07005 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
19 * USA
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
Wey-Yi Guy8d801082010-03-17 13:34:36 -070029#include <linux/etherdevice.h>
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/init.h>
33#include <linux/sched.h>
34
35#include "iwl-dev.h"
36#include "iwl-core.h"
37#include "iwl-io.h"
38#include "iwl-helpers.h"
39#include "iwl-agn-hw.h"
40#include "iwl-agn.h"
Johannes Berg1fa61b22010-04-28 08:44:52 -070041#include "iwl-sta.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070042#include "iwl-trans.h"
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -070043#include "iwl-shared.h"
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070044
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070045int iwlagn_hw_valid_rtc_data_addr(u32 addr)
46{
47 return (addr >= IWLAGN_RTC_DATA_LOWER_BOUND) &&
48 (addr < IWLAGN_RTC_DATA_UPPER_BOUND);
49}
50
51int iwlagn_send_tx_power(struct iwl_priv *priv)
52{
Wey-Yi Guyab63c682010-09-20 09:12:31 -070053 struct iwlagn_tx_power_dbm_cmd tx_power_cmd;
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070054 u8 tx_ant_cfg_cmd;
55
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -070056 if (WARN_ONCE(test_bit(STATUS_SCAN_HW, &priv->shrd->status),
Stanislaw Gruszka4beeba72010-10-25 10:34:50 +020057 "TX Power requested while scanning!\n"))
58 return -EAGAIN;
59
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070060 /* half dBm need to multiply */
61 tx_power_cmd.global_lmt = (s8)(2 * priv->tx_power_user_lmt);
62
63 if (priv->tx_power_lmt_in_half_dbm &&
64 priv->tx_power_lmt_in_half_dbm < tx_power_cmd.global_lmt) {
65 /*
66 * For the newer devices which using enhanced/extend tx power
67 * table in EEPROM, the format is in half dBm. driver need to
68 * convert to dBm format before report to mac80211.
69 * By doing so, there is a possibility of 1/2 dBm resolution
70 * lost. driver will perform "round-up" operation before
71 * reporting, but it will cause 1/2 dBm tx power over the
72 * regulatory limit. Perform the checking here, if the
73 * "tx_power_user_lmt" is higher than EEPROM value (in
74 * half-dBm format), lower the tx power based on EEPROM
75 */
76 tx_power_cmd.global_lmt = priv->tx_power_lmt_in_half_dbm;
77 }
Wey-Yi Guyab63c682010-09-20 09:12:31 -070078 tx_power_cmd.flags = IWLAGN_TX_POWER_NO_CLOSED;
79 tx_power_cmd.srv_chan_lmt = IWLAGN_TX_POWER_AUTO;
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070080
81 if (IWL_UCODE_API(priv->ucode_ver) == 1)
82 tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD_V1;
83 else
84 tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD;
85
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070086 return iwl_trans_send_cmd_pdu(trans(priv), tx_ant_cfg_cmd, CMD_SYNC,
Emmanuel Grumbache419d622011-07-08 08:46:14 -070087 sizeof(tx_power_cmd), &tx_power_cmd);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070088}
89
90void iwlagn_temperature(struct iwl_priv *priv)
91{
Fry, Donald Hf8f79a52011-02-25 09:44:48 -080092 /* store temperature from correct statistics (in Celsius) */
Johannes Berg0da0e5b2011-04-08 08:14:56 -070093 priv->temperature = le32_to_cpu(priv->statistics.common.temperature);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070094 iwl_tt_handler(priv);
95}
96
97u16 iwlagn_eeprom_calib_version(struct iwl_priv *priv)
98{
Wey-Yi Guy7d8f2d52011-09-15 11:46:51 -070099 struct iwl_eeprom_calib_hdr *hdr;
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700100
101 hdr = (struct iwl_eeprom_calib_hdr *)iwl_eeprom_query_addr(priv,
Wey-Yi Guy7944f8e2010-04-06 21:10:33 -0700102 EEPROM_CALIB_ALL);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700103 return hdr->version;
104
105}
106
107/*
108 * EEPROM
109 */
110static u32 eeprom_indirect_address(const struct iwl_priv *priv, u32 address)
111{
112 u16 offset = 0;
113
114 if ((address & INDIRECT_ADDRESS) == 0)
115 return address;
116
117 switch (address & INDIRECT_TYPE_MSK) {
118 case INDIRECT_HOST:
Wey-Yi Guy7944f8e2010-04-06 21:10:33 -0700119 offset = iwl_eeprom_query16(priv, EEPROM_LINK_HOST);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700120 break;
121 case INDIRECT_GENERAL:
Wey-Yi Guy7944f8e2010-04-06 21:10:33 -0700122 offset = iwl_eeprom_query16(priv, EEPROM_LINK_GENERAL);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700123 break;
124 case INDIRECT_REGULATORY:
Wey-Yi Guy7944f8e2010-04-06 21:10:33 -0700125 offset = iwl_eeprom_query16(priv, EEPROM_LINK_REGULATORY);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700126 break;
Johannes Berg8d6748c2010-12-09 09:30:14 -0800127 case INDIRECT_TXP_LIMIT:
128 offset = iwl_eeprom_query16(priv, EEPROM_LINK_TXP_LIMIT);
129 break;
130 case INDIRECT_TXP_LIMIT_SIZE:
131 offset = iwl_eeprom_query16(priv, EEPROM_LINK_TXP_LIMIT_SIZE);
132 break;
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700133 case INDIRECT_CALIBRATION:
Wey-Yi Guy7944f8e2010-04-06 21:10:33 -0700134 offset = iwl_eeprom_query16(priv, EEPROM_LINK_CALIBRATION);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700135 break;
136 case INDIRECT_PROCESS_ADJST:
Wey-Yi Guy7944f8e2010-04-06 21:10:33 -0700137 offset = iwl_eeprom_query16(priv, EEPROM_LINK_PROCESS_ADJST);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700138 break;
139 case INDIRECT_OTHERS:
Wey-Yi Guy7944f8e2010-04-06 21:10:33 -0700140 offset = iwl_eeprom_query16(priv, EEPROM_LINK_OTHERS);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700141 break;
142 default:
143 IWL_ERR(priv, "illegal indirect type: 0x%X\n",
144 address & INDIRECT_TYPE_MSK);
145 break;
146 }
147
148 /* translate the offset from words to byte */
149 return (address & ADDRESS_MSK) + (offset << 1);
150}
151
Fry, Donald H70e3e8a2011-07-08 08:46:19 -0700152const u8 *iwl_eeprom_query_addr(const struct iwl_priv *priv, size_t offset)
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700153{
154 u32 address = eeprom_indirect_address(priv, offset);
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700155 BUG_ON(address >= priv->cfg->base_params->eeprom_size);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700156 return &priv->eeprom[address];
157}
Wey-Yi Guy348ee7c2010-03-16 12:37:27 -0700158
159struct iwl_mod_params iwlagn_mod_params = {
160 .amsdu_size_8K = 1,
161 .restart_fw = 1,
Stanislaw Gruszkab7977ff2011-02-28 14:33:15 +0100162 .plcp_check = true,
Wey-Yi Guyb60eec92011-06-03 13:52:38 -0700163 .bt_coex_active = true,
Wey-Yi Guy3f1e5f42011-06-03 13:52:40 -0700164 .no_sleep_autoadjust = true,
Wey-Yi Guyf7538162011-06-11 10:00:06 -0700165 .power_level = IWL_POWER_INDEX_1,
Wey-Yi Guyfee84f02011-08-25 23:10:57 -0700166 .bt_ch_announce = true,
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -0700167 .wanted_ucode_alternative = 1,
Wey-Yi Guydd5b6d02011-08-25 23:10:55 -0700168 .auto_agg = true,
Wey-Yi Guy348ee7c2010-03-16 12:37:27 -0700169 /* the rest are 0 by default */
170};
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700171
Wey-Yi Guy8d801082010-03-17 13:34:36 -0700172int iwlagn_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band)
173{
174 int idx = 0;
175 int band_offset = 0;
176
177 /* HT rate format: mac80211 wants an MCS number, which is just LSB */
178 if (rate_n_flags & RATE_MCS_HT_MSK) {
179 idx = (rate_n_flags & 0xff);
180 return idx;
181 /* Legacy rate format, search for match in table */
182 } else {
183 if (band == IEEE80211_BAND_5GHZ)
184 band_offset = IWL_FIRST_OFDM_RATE;
185 for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++)
186 if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
187 return idx - band_offset;
188 }
189
190 return -1;
191}
192
Johannes Berg1fa61b22010-04-28 08:44:52 -0700193int iwlagn_manage_ibss_station(struct iwl_priv *priv,
194 struct ieee80211_vif *vif, bool add)
195{
Johannes Bergfd1af152010-04-30 11:30:43 -0700196 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
197
Johannes Berg1fa61b22010-04-28 08:44:52 -0700198 if (add)
Johannes Berga30e3112010-09-22 18:02:01 +0200199 return iwlagn_add_bssid_station(priv, vif_priv->ctx,
200 vif->bss_conf.bssid,
201 &vif_priv->ibss_bssid_sta_id);
Johannes Bergfd1af152010-04-30 11:30:43 -0700202 return iwl_remove_station(priv, vif_priv->ibss_bssid_sta_id,
203 vif->bss_conf.bssid);
Johannes Berg1fa61b22010-04-28 08:44:52 -0700204}
Johannes Berg1ff504e2010-05-03 01:22:42 -0700205
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700206/**
207 * iwlagn_txfifo_flush: send REPLY_TXFIFO_FLUSH command to uCode
208 *
209 * pre-requirements:
210 * 1. acquire mutex before calling
211 * 2. make sure rf is on and not in exit state
212 */
213int iwlagn_txfifo_flush(struct iwl_priv *priv, u16 flush_control)
214{
215 struct iwl_txfifo_flush_cmd flush_cmd;
216 struct iwl_host_cmd cmd = {
217 .id = REPLY_TXFIFO_FLUSH,
Johannes Berg3fa50732011-05-04 07:50:38 -0700218 .len = { sizeof(struct iwl_txfifo_flush_cmd), },
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700219 .flags = CMD_SYNC,
Johannes Berg3fa50732011-05-04 07:50:38 -0700220 .data = { &flush_cmd, },
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700221 };
222
223 might_sleep();
224
225 memset(&flush_cmd, 0, sizeof(flush_cmd));
Wey-Yi Guyecdbe862011-06-08 09:57:26 -0700226 if (flush_control & BIT(IWL_RXON_CTX_BSS))
227 flush_cmd.fifo_control = IWL_SCD_VO_MSK | IWL_SCD_VI_MSK |
Wey-Yi Guyf88e0ec2011-06-08 09:57:25 -0700228 IWL_SCD_BE_MSK | IWL_SCD_BK_MSK |
229 IWL_SCD_MGMT_MSK;
Wey-Yi Guyecdbe862011-06-08 09:57:26 -0700230 if ((flush_control & BIT(IWL_RXON_CTX_PAN)) &&
Emmanuel Grumbach7a10e3e2011-09-06 09:31:21 -0700231 (priv->shrd->valid_contexts != BIT(IWL_RXON_CTX_BSS)))
Wey-Yi Guyf88e0ec2011-06-08 09:57:25 -0700232 flush_cmd.fifo_control |= IWL_PAN_SCD_VO_MSK |
233 IWL_PAN_SCD_VI_MSK | IWL_PAN_SCD_BE_MSK |
234 IWL_PAN_SCD_BK_MSK | IWL_PAN_SCD_MGMT_MSK |
235 IWL_PAN_SCD_MULTICAST_MSK;
236
Wey-Yi Guy88950752011-06-06 12:05:46 -0700237 if (priv->cfg->sku & EEPROM_SKU_CAP_11N_ENABLE)
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700238 flush_cmd.fifo_control |= IWL_AGG_TX_QUEUE_MSK;
239
240 IWL_DEBUG_INFO(priv, "fifo queue control: 0X%x\n",
241 flush_cmd.fifo_control);
242 flush_cmd.flush_control = cpu_to_le16(flush_control);
243
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700244 return iwl_trans_send_cmd(trans(priv), &cmd);
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700245}
Wey-Yi Guy65550632010-06-24 13:18:35 -0700246
247void iwlagn_dev_txfifo_flush(struct iwl_priv *priv, u16 flush_control)
248{
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700249 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guy65550632010-06-24 13:18:35 -0700250 ieee80211_stop_queues(priv->hw);
Wey-Yi Guyc68744f2011-06-18 08:03:18 -0700251 if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) {
Wey-Yi Guy65550632010-06-24 13:18:35 -0700252 IWL_ERR(priv, "flush request fail\n");
253 goto done;
254 }
255 IWL_DEBUG_INFO(priv, "wait transmit/flush all frames\n");
Emmanuel Grumbach5f178cd2011-08-25 23:11:29 -0700256 iwl_trans_wait_tx_queue_empty(trans(priv));
Wey-Yi Guy65550632010-06-24 13:18:35 -0700257done:
258 ieee80211_wake_queues(priv->hw);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700259 mutex_unlock(&priv->shrd->mutex);
Wey-Yi Guy65550632010-06-24 13:18:35 -0700260}
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700261
262/*
263 * BT coex
264 */
265/*
266 * Macros to access the lookup table.
267 *
268 * The lookup table has 7 inputs: bt3_prio, bt3_txrx, bt_rf_act, wifi_req,
269* wifi_prio, wifi_txrx and wifi_sh_ant_req.
270 *
271 * It has three outputs: WLAN_ACTIVE, WLAN_KILL and ANT_SWITCH
272 *
273 * The format is that "registers" 8 through 11 contain the WLAN_ACTIVE bits
274 * one after another in 32-bit registers, and "registers" 0 through 7 contain
275 * the WLAN_KILL and ANT_SWITCH bits interleaved (in that order).
276 *
277 * These macros encode that format.
278 */
279#define LUT_VALUE(bt3_prio, bt3_txrx, bt_rf_act, wifi_req, wifi_prio, \
280 wifi_txrx, wifi_sh_ant_req) \
281 (bt3_prio | (bt3_txrx << 1) | (bt_rf_act << 2) | (wifi_req << 3) | \
282 (wifi_prio << 4) | (wifi_txrx << 5) | (wifi_sh_ant_req << 6))
283
284#define LUT_PTA_WLAN_ACTIVE_OP(lut, op, val) \
285 lut[8 + ((val) >> 5)] op (cpu_to_le32(BIT((val) & 0x1f)))
286#define LUT_TEST_PTA_WLAN_ACTIVE(lut, bt3_prio, bt3_txrx, bt_rf_act, wifi_req, \
287 wifi_prio, wifi_txrx, wifi_sh_ant_req) \
288 (!!(LUT_PTA_WLAN_ACTIVE_OP(lut, &, LUT_VALUE(bt3_prio, bt3_txrx, \
289 bt_rf_act, wifi_req, wifi_prio, wifi_txrx, \
290 wifi_sh_ant_req))))
291#define LUT_SET_PTA_WLAN_ACTIVE(lut, bt3_prio, bt3_txrx, bt_rf_act, wifi_req, \
292 wifi_prio, wifi_txrx, wifi_sh_ant_req) \
293 LUT_PTA_WLAN_ACTIVE_OP(lut, |=, LUT_VALUE(bt3_prio, bt3_txrx, \
294 bt_rf_act, wifi_req, wifi_prio, wifi_txrx, \
295 wifi_sh_ant_req))
296#define LUT_CLEAR_PTA_WLAN_ACTIVE(lut, bt3_prio, bt3_txrx, bt_rf_act, \
297 wifi_req, wifi_prio, wifi_txrx, \
298 wifi_sh_ant_req) \
299 LUT_PTA_WLAN_ACTIVE_OP(lut, &= ~, LUT_VALUE(bt3_prio, bt3_txrx, \
300 bt_rf_act, wifi_req, wifi_prio, wifi_txrx, \
301 wifi_sh_ant_req))
302
303#define LUT_WLAN_KILL_OP(lut, op, val) \
304 lut[(val) >> 4] op (cpu_to_le32(BIT(((val) << 1) & 0x1e)))
305#define LUT_TEST_WLAN_KILL(lut, bt3_prio, bt3_txrx, bt_rf_act, wifi_req, \
306 wifi_prio, wifi_txrx, wifi_sh_ant_req) \
307 (!!(LUT_WLAN_KILL_OP(lut, &, LUT_VALUE(bt3_prio, bt3_txrx, bt_rf_act, \
308 wifi_req, wifi_prio, wifi_txrx, wifi_sh_ant_req))))
309#define LUT_SET_WLAN_KILL(lut, bt3_prio, bt3_txrx, bt_rf_act, wifi_req, \
310 wifi_prio, wifi_txrx, wifi_sh_ant_req) \
311 LUT_WLAN_KILL_OP(lut, |=, LUT_VALUE(bt3_prio, bt3_txrx, bt_rf_act, \
312 wifi_req, wifi_prio, wifi_txrx, wifi_sh_ant_req))
313#define LUT_CLEAR_WLAN_KILL(lut, bt3_prio, bt3_txrx, bt_rf_act, wifi_req, \
314 wifi_prio, wifi_txrx, wifi_sh_ant_req) \
315 LUT_WLAN_KILL_OP(lut, &= ~, LUT_VALUE(bt3_prio, bt3_txrx, bt_rf_act, \
316 wifi_req, wifi_prio, wifi_txrx, wifi_sh_ant_req))
317
318#define LUT_ANT_SWITCH_OP(lut, op, val) \
319 lut[(val) >> 4] op (cpu_to_le32(BIT((((val) << 1) & 0x1e) + 1)))
320#define LUT_TEST_ANT_SWITCH(lut, bt3_prio, bt3_txrx, bt_rf_act, wifi_req, \
321 wifi_prio, wifi_txrx, wifi_sh_ant_req) \
322 (!!(LUT_ANT_SWITCH_OP(lut, &, LUT_VALUE(bt3_prio, bt3_txrx, bt_rf_act, \
323 wifi_req, wifi_prio, wifi_txrx, \
324 wifi_sh_ant_req))))
325#define LUT_SET_ANT_SWITCH(lut, bt3_prio, bt3_txrx, bt_rf_act, wifi_req, \
326 wifi_prio, wifi_txrx, wifi_sh_ant_req) \
327 LUT_ANT_SWITCH_OP(lut, |=, LUT_VALUE(bt3_prio, bt3_txrx, bt_rf_act, \
328 wifi_req, wifi_prio, wifi_txrx, wifi_sh_ant_req))
329#define LUT_CLEAR_ANT_SWITCH(lut, bt3_prio, bt3_txrx, bt_rf_act, wifi_req, \
330 wifi_prio, wifi_txrx, wifi_sh_ant_req) \
331 LUT_ANT_SWITCH_OP(lut, &= ~, LUT_VALUE(bt3_prio, bt3_txrx, bt_rf_act, \
332 wifi_req, wifi_prio, wifi_txrx, wifi_sh_ant_req))
333
334static const __le32 iwlagn_def_3w_lookup[12] = {
335 cpu_to_le32(0xaaaaaaaa),
336 cpu_to_le32(0xaaaaaaaa),
337 cpu_to_le32(0xaeaaaaaa),
338 cpu_to_le32(0xaaaaaaaa),
339 cpu_to_le32(0xcc00ff28),
340 cpu_to_le32(0x0000aaaa),
341 cpu_to_le32(0xcc00aaaa),
342 cpu_to_le32(0x0000aaaa),
343 cpu_to_le32(0xc0004000),
344 cpu_to_le32(0x00004000),
345 cpu_to_le32(0xf0005000),
Wey-Yi Guy9a67d762010-11-18 10:40:03 -0800346 cpu_to_le32(0xf0005000),
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700347};
348
349static const __le32 iwlagn_concurrent_lookup[12] = {
350 cpu_to_le32(0xaaaaaaaa),
351 cpu_to_le32(0xaaaaaaaa),
352 cpu_to_le32(0xaaaaaaaa),
353 cpu_to_le32(0xaaaaaaaa),
354 cpu_to_le32(0xaaaaaaaa),
355 cpu_to_le32(0xaaaaaaaa),
356 cpu_to_le32(0xaaaaaaaa),
357 cpu_to_le32(0xaaaaaaaa),
358 cpu_to_le32(0x00000000),
359 cpu_to_le32(0x00000000),
360 cpu_to_le32(0x00000000),
361 cpu_to_le32(0x00000000),
362};
363
364void iwlagn_send_advance_bt_config(struct iwl_priv *priv)
365{
Wey-Yi Guy60132702011-02-18 17:23:54 -0800366 struct iwl_basic_bt_cmd basic = {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700367 .max_kill = IWLAGN_BT_MAX_KILL_DEFAULT,
368 .bt3_timer_t7_value = IWLAGN_BT3_T7_DEFAULT,
369 .bt3_prio_sample_time = IWLAGN_BT3_PRIO_SAMPLE_DEFAULT,
370 .bt3_timer_t2_value = IWLAGN_BT3_T2_DEFAULT,
371 };
Wey-Yi Guy60132702011-02-18 17:23:54 -0800372 struct iwl6000_bt_cmd bt_cmd_6000;
373 struct iwl2000_bt_cmd bt_cmd_2000;
374 int ret;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700375
376 BUILD_BUG_ON(sizeof(iwlagn_def_3w_lookup) !=
Wey-Yi Guy60132702011-02-18 17:23:54 -0800377 sizeof(basic.bt3_lookup_table));
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700378
Wey-Yi Guy60132702011-02-18 17:23:54 -0800379 if (priv->cfg->bt_params) {
380 if (priv->cfg->bt_params->bt_session_2) {
381 bt_cmd_2000.prio_boost = cpu_to_le32(
382 priv->cfg->bt_params->bt_prio_boost);
383 bt_cmd_2000.tx_prio_boost = 0;
384 bt_cmd_2000.rx_prio_boost = 0;
385 } else {
386 bt_cmd_6000.prio_boost =
387 priv->cfg->bt_params->bt_prio_boost;
388 bt_cmd_6000.tx_prio_boost = 0;
389 bt_cmd_6000.rx_prio_boost = 0;
390 }
391 } else {
392 IWL_ERR(priv, "failed to construct BT Coex Config\n");
393 return;
394 }
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800395
Wey-Yi Guy60132702011-02-18 17:23:54 -0800396 basic.kill_ack_mask = priv->kill_ack_mask;
397 basic.kill_cts_mask = priv->kill_cts_mask;
398 basic.valid = priv->bt_valid;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700399
400 /*
401 * Configure BT coex mode to "no coexistence" when the
402 * user disabled BT coexistence, we have no interface
403 * (might be in monitor mode), or the interface is in
404 * IBSS mode (no proper uCode support for coex then).
405 */
Wey-Yi Guyb60eec92011-06-03 13:52:38 -0700406 if (!iwlagn_mod_params.bt_coex_active ||
407 priv->iw_mode == NL80211_IFTYPE_ADHOC) {
Wey-Yi Guy60132702011-02-18 17:23:54 -0800408 basic.flags = IWLAGN_BT_FLAG_COEX_MODE_DISABLED;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700409 } else {
Wey-Yi Guy60132702011-02-18 17:23:54 -0800410 basic.flags = IWLAGN_BT_FLAG_COEX_MODE_3W <<
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700411 IWLAGN_BT_FLAG_COEX_MODE_SHIFT;
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700412
413 if (!priv->bt_enable_pspoll)
Wey-Yi Guy60132702011-02-18 17:23:54 -0800414 basic.flags |= IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE;
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700415 else
416 basic.flags &= ~IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE;
Wey-Yi Guye3661762010-11-23 10:58:54 -0800417
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700418 if (priv->bt_ch_announce)
Wey-Yi Guy60132702011-02-18 17:23:54 -0800419 basic.flags |= IWLAGN_BT_FLAG_CHANNEL_INHIBITION;
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700420 IWL_DEBUG_COEX(priv, "BT coex flag: 0X%x\n", basic.flags);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700421 }
Wey-Yi Guy60132702011-02-18 17:23:54 -0800422 priv->bt_enable_flag = basic.flags;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700423 if (priv->bt_full_concurrent)
Wey-Yi Guy60132702011-02-18 17:23:54 -0800424 memcpy(basic.bt3_lookup_table, iwlagn_concurrent_lookup,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700425 sizeof(iwlagn_concurrent_lookup));
426 else
Wey-Yi Guy60132702011-02-18 17:23:54 -0800427 memcpy(basic.bt3_lookup_table, iwlagn_def_3w_lookup,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700428 sizeof(iwlagn_def_3w_lookup));
429
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700430 IWL_DEBUG_COEX(priv, "BT coex %s in %s mode\n",
Wey-Yi Guy60132702011-02-18 17:23:54 -0800431 basic.flags ? "active" : "disabled",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700432 priv->bt_full_concurrent ?
433 "full concurrency" : "3-wire");
434
Wey-Yi Guy60132702011-02-18 17:23:54 -0800435 if (priv->cfg->bt_params->bt_session_2) {
436 memcpy(&bt_cmd_2000.basic, &basic,
437 sizeof(basic));
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700438 ret = iwl_trans_send_cmd_pdu(trans(priv), REPLY_BT_CONFIG,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700439 CMD_SYNC, sizeof(bt_cmd_2000), &bt_cmd_2000);
Wey-Yi Guy60132702011-02-18 17:23:54 -0800440 } else {
441 memcpy(&bt_cmd_6000.basic, &basic,
442 sizeof(basic));
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700443 ret = iwl_trans_send_cmd_pdu(trans(priv), REPLY_BT_CONFIG,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700444 CMD_SYNC, sizeof(bt_cmd_6000), &bt_cmd_6000);
Wey-Yi Guy60132702011-02-18 17:23:54 -0800445 }
446 if (ret)
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700447 IWL_ERR(priv, "failed to send BT Coex Config\n");
448
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700449}
450
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700451void iwlagn_bt_adjust_rssi_monitor(struct iwl_priv *priv, bool rssi_ena)
452{
453 struct iwl_rxon_context *ctx, *found_ctx = NULL;
454 bool found_ap = false;
455
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700456 lockdep_assert_held(&priv->shrd->mutex);
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700457
458 /* Check whether AP or GO mode is active. */
459 if (rssi_ena) {
460 for_each_context(priv, ctx) {
461 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_AP &&
462 iwl_is_associated_ctx(ctx)) {
463 found_ap = true;
464 break;
465 }
466 }
467 }
468
469 /*
470 * If disable was received or If GO/AP mode, disable RSSI
471 * measurements.
472 */
473 if (!rssi_ena || found_ap) {
474 if (priv->cur_rssi_ctx) {
475 ctx = priv->cur_rssi_ctx;
476 ieee80211_disable_rssi_reports(ctx->vif);
477 priv->cur_rssi_ctx = NULL;
478 }
479 return;
480 }
481
482 /*
483 * If rssi measurements need to be enabled, consider all cases now.
484 * Figure out how many contexts are active.
485 */
486 for_each_context(priv, ctx) {
487 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION &&
488 iwl_is_associated_ctx(ctx)) {
489 found_ctx = ctx;
490 break;
491 }
492 }
493
494 /*
495 * rssi monitor already enabled for the correct interface...nothing
496 * to do.
497 */
498 if (found_ctx == priv->cur_rssi_ctx)
499 return;
500
501 /*
502 * Figure out if rssi monitor is currently enabled, and needs
503 * to be changed. If rssi monitor is already enabled, disable
504 * it first else just enable rssi measurements on the
505 * interface found above.
506 */
507 if (priv->cur_rssi_ctx) {
508 ctx = priv->cur_rssi_ctx;
509 if (ctx->vif)
510 ieee80211_disable_rssi_reports(ctx->vif);
511 }
512
513 priv->cur_rssi_ctx = found_ctx;
514
515 if (!found_ctx)
516 return;
517
518 ieee80211_enable_rssi_reports(found_ctx->vif,
519 IWLAGN_BT_PSP_MIN_RSSI_THRESHOLD,
520 IWLAGN_BT_PSP_MAX_RSSI_THRESHOLD);
521}
522
523static bool iwlagn_bt_traffic_is_sco(struct iwl_bt_uart_msg *uart_msg)
524{
525 return BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3 >>
526 BT_UART_MSG_FRAME3SCOESCO_POS;
527}
528
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700529static void iwlagn_bt_traffic_change_work(struct work_struct *work)
530{
531 struct iwl_priv *priv =
532 container_of(work, struct iwl_priv, bt_traffic_change_work);
Johannes Berg8bd413e2010-08-23 10:46:40 +0200533 struct iwl_rxon_context *ctx;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700534 int smps_request = -1;
535
Wey-Yi Guyc4197c62011-02-06 08:56:35 -0800536 if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) {
537 /* bt coex disabled */
538 return;
539 }
540
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200541 /*
542 * Note: bt_traffic_load can be overridden by scan complete and
543 * coex profile notifications. Ignore that since only bad consequence
544 * can be not matching debug print with actual state.
545 */
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700546 IWL_DEBUG_COEX(priv, "BT traffic load changes: %d\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700547 priv->bt_traffic_load);
548
549 switch (priv->bt_traffic_load) {
550 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
Wey-Yi Guyf5682c02010-10-23 09:15:44 -0700551 if (priv->bt_status)
552 smps_request = IEEE80211_SMPS_DYNAMIC;
553 else
554 smps_request = IEEE80211_SMPS_AUTOMATIC;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700555 break;
556 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
557 smps_request = IEEE80211_SMPS_DYNAMIC;
558 break;
559 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
560 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
561 smps_request = IEEE80211_SMPS_STATIC;
562 break;
563 default:
564 IWL_ERR(priv, "Invalid BT traffic load: %d\n",
565 priv->bt_traffic_load);
566 break;
567 }
568
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700569 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700570
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200571 /*
572 * We can not send command to firmware while scanning. When the scan
573 * complete we will schedule this work again. We do check with mutex
574 * locked to prevent new scan request to arrive. We do not check
575 * STATUS_SCANNING to avoid race when queue_work two times from
576 * different notifications, but quit and not perform any work at all.
577 */
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700578 if (test_bit(STATUS_SCAN_HW, &priv->shrd->status))
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200579 goto out;
580
Fry, Donald H6b6db912011-07-08 08:46:17 -0700581 iwl_update_chain_flags(priv);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700582
Johannes Berg8bd413e2010-08-23 10:46:40 +0200583 if (smps_request != -1) {
Wey-Yi Guy88e9ba72011-06-03 07:54:12 -0700584 priv->current_ht_config.smps = smps_request;
Johannes Berg8bd413e2010-08-23 10:46:40 +0200585 for_each_context(priv, ctx) {
586 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION)
587 ieee80211_request_smps(ctx->vif, smps_request);
588 }
589 }
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700590
591 /*
592 * Dynamic PS poll related functionality. Adjust RSSI measurements if
593 * necessary.
594 */
595 iwlagn_bt_coex_rssi_monitor(priv);
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200596out:
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700597 mutex_unlock(&priv->shrd->mutex);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700598}
599
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700600/*
601 * If BT sco traffic, and RSSI monitor is enabled, move measurements to the
602 * correct interface or disable it if this is the last interface to be
603 * removed.
604 */
605void iwlagn_bt_coex_rssi_monitor(struct iwl_priv *priv)
606{
607 if (priv->bt_is_sco &&
608 priv->bt_traffic_load == IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS)
609 iwlagn_bt_adjust_rssi_monitor(priv, true);
610 else
611 iwlagn_bt_adjust_rssi_monitor(priv, false);
612}
613
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700614static void iwlagn_print_uartmsg(struct iwl_priv *priv,
615 struct iwl_bt_uart_msg *uart_msg)
616{
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700617 IWL_DEBUG_COEX(priv, "Message Type = 0x%X, SSN = 0x%X, "
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700618 "Update Req = 0x%X",
619 (BT_UART_MSG_FRAME1MSGTYPE_MSK & uart_msg->frame1) >>
620 BT_UART_MSG_FRAME1MSGTYPE_POS,
621 (BT_UART_MSG_FRAME1SSN_MSK & uart_msg->frame1) >>
622 BT_UART_MSG_FRAME1SSN_POS,
623 (BT_UART_MSG_FRAME1UPDATEREQ_MSK & uart_msg->frame1) >>
624 BT_UART_MSG_FRAME1UPDATEREQ_POS);
625
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700626 IWL_DEBUG_COEX(priv, "Open connections = 0x%X, Traffic load = 0x%X, "
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700627 "Chl_SeqN = 0x%X, In band = 0x%X",
628 (BT_UART_MSG_FRAME2OPENCONNECTIONS_MSK & uart_msg->frame2) >>
629 BT_UART_MSG_FRAME2OPENCONNECTIONS_POS,
630 (BT_UART_MSG_FRAME2TRAFFICLOAD_MSK & uart_msg->frame2) >>
631 BT_UART_MSG_FRAME2TRAFFICLOAD_POS,
632 (BT_UART_MSG_FRAME2CHLSEQN_MSK & uart_msg->frame2) >>
633 BT_UART_MSG_FRAME2CHLSEQN_POS,
634 (BT_UART_MSG_FRAME2INBAND_MSK & uart_msg->frame2) >>
635 BT_UART_MSG_FRAME2INBAND_POS);
636
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700637 IWL_DEBUG_COEX(priv, "SCO/eSCO = 0x%X, Sniff = 0x%X, A2DP = 0x%X, "
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700638 "ACL = 0x%X, Master = 0x%X, OBEX = 0x%X",
639 (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3) >>
640 BT_UART_MSG_FRAME3SCOESCO_POS,
641 (BT_UART_MSG_FRAME3SNIFF_MSK & uart_msg->frame3) >>
642 BT_UART_MSG_FRAME3SNIFF_POS,
643 (BT_UART_MSG_FRAME3A2DP_MSK & uart_msg->frame3) >>
644 BT_UART_MSG_FRAME3A2DP_POS,
645 (BT_UART_MSG_FRAME3ACL_MSK & uart_msg->frame3) >>
646 BT_UART_MSG_FRAME3ACL_POS,
647 (BT_UART_MSG_FRAME3MASTER_MSK & uart_msg->frame3) >>
648 BT_UART_MSG_FRAME3MASTER_POS,
649 (BT_UART_MSG_FRAME3OBEX_MSK & uart_msg->frame3) >>
650 BT_UART_MSG_FRAME3OBEX_POS);
651
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700652 IWL_DEBUG_COEX(priv, "Idle duration = 0x%X",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700653 (BT_UART_MSG_FRAME4IDLEDURATION_MSK & uart_msg->frame4) >>
654 BT_UART_MSG_FRAME4IDLEDURATION_POS);
655
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700656 IWL_DEBUG_COEX(priv, "Tx Activity = 0x%X, Rx Activity = 0x%X, "
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700657 "eSCO Retransmissions = 0x%X",
658 (BT_UART_MSG_FRAME5TXACTIVITY_MSK & uart_msg->frame5) >>
659 BT_UART_MSG_FRAME5TXACTIVITY_POS,
660 (BT_UART_MSG_FRAME5RXACTIVITY_MSK & uart_msg->frame5) >>
661 BT_UART_MSG_FRAME5RXACTIVITY_POS,
662 (BT_UART_MSG_FRAME5ESCORETRANSMIT_MSK & uart_msg->frame5) >>
663 BT_UART_MSG_FRAME5ESCORETRANSMIT_POS);
664
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700665 IWL_DEBUG_COEX(priv, "Sniff Interval = 0x%X, Discoverable = 0x%X",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700666 (BT_UART_MSG_FRAME6SNIFFINTERVAL_MSK & uart_msg->frame6) >>
667 BT_UART_MSG_FRAME6SNIFFINTERVAL_POS,
668 (BT_UART_MSG_FRAME6DISCOVERABLE_MSK & uart_msg->frame6) >>
669 BT_UART_MSG_FRAME6DISCOVERABLE_POS);
670
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700671 IWL_DEBUG_COEX(priv, "Sniff Activity = 0x%X, Page = "
Wey-Yi Guy399f66f2011-02-22 08:24:22 -0800672 "0x%X, Inquiry = 0x%X, Connectable = 0x%X",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700673 (BT_UART_MSG_FRAME7SNIFFACTIVITY_MSK & uart_msg->frame7) >>
674 BT_UART_MSG_FRAME7SNIFFACTIVITY_POS,
Wey-Yi Guy399f66f2011-02-22 08:24:22 -0800675 (BT_UART_MSG_FRAME7PAGE_MSK & uart_msg->frame7) >>
676 BT_UART_MSG_FRAME7PAGE_POS,
677 (BT_UART_MSG_FRAME7INQUIRY_MSK & uart_msg->frame7) >>
678 BT_UART_MSG_FRAME7INQUIRY_POS,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700679 (BT_UART_MSG_FRAME7CONNECTABLE_MSK & uart_msg->frame7) >>
680 BT_UART_MSG_FRAME7CONNECTABLE_POS);
681}
682
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800683static void iwlagn_set_kill_msk(struct iwl_priv *priv,
684 struct iwl_bt_uart_msg *uart_msg)
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700685{
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800686 u8 kill_msk;
Joe Perches20407ed2010-11-20 18:38:57 -0800687 static const __le32 bt_kill_ack_msg[2] = {
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800688 IWLAGN_BT_KILL_ACK_MASK_DEFAULT,
689 IWLAGN_BT_KILL_ACK_CTS_MASK_SCO };
690 static const __le32 bt_kill_cts_msg[2] = {
691 IWLAGN_BT_KILL_CTS_MASK_DEFAULT,
692 IWLAGN_BT_KILL_ACK_CTS_MASK_SCO };
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700693
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800694 kill_msk = (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3)
695 ? 1 : 0;
696 if (priv->kill_ack_mask != bt_kill_ack_msg[kill_msk] ||
697 priv->kill_cts_mask != bt_kill_cts_msg[kill_msk]) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700698 priv->bt_valid |= IWLAGN_BT_VALID_KILL_ACK_MASK;
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800699 priv->kill_ack_mask = bt_kill_ack_msg[kill_msk];
700 priv->bt_valid |= IWLAGN_BT_VALID_KILL_CTS_MASK;
701 priv->kill_cts_mask = bt_kill_cts_msg[kill_msk];
702
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700703 /* schedule to send runtime bt_config */
Emmanuel Grumbach74e28e42011-08-25 23:10:41 -0700704 queue_work(priv->shrd->workqueue, &priv->bt_runtime_config);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700705 }
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700706}
707
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700708int iwlagn_bt_coex_profile_notif(struct iwl_priv *priv,
709 struct iwl_rx_mem_buffer *rxb,
710 struct iwl_device_cmd *cmd)
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700711{
712 unsigned long flags;
713 struct iwl_rx_packet *pkt = rxb_addr(rxb);
714 struct iwl_bt_coex_profile_notif *coex = &pkt->u.bt_coex_profile_notif;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700715 struct iwl_bt_uart_msg *uart_msg = &coex->last_bt_uart_msg;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700716
Wey-Yi Guyc4197c62011-02-06 08:56:35 -0800717 if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) {
718 /* bt coex disabled */
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700719 return 0;
Wey-Yi Guyc4197c62011-02-06 08:56:35 -0800720 }
721
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700722 IWL_DEBUG_COEX(priv, "BT Coex notification:\n");
723 IWL_DEBUG_COEX(priv, " status: %d\n", coex->bt_status);
724 IWL_DEBUG_COEX(priv, " traffic load: %d\n", coex->bt_traffic_load);
725 IWL_DEBUG_COEX(priv, " CI compliance: %d\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700726 coex->bt_ci_compliance);
727 iwlagn_print_uartmsg(priv, uart_msg);
728
Wey-Yi Guy66e863a52010-11-08 14:54:37 -0800729 priv->last_bt_traffic_load = priv->bt_traffic_load;
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700730 priv->bt_is_sco = iwlagn_bt_traffic_is_sco(uart_msg);
731
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700732 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
733 if (priv->bt_status != coex->bt_status ||
Wey-Yi Guy66e863a52010-11-08 14:54:37 -0800734 priv->last_bt_traffic_load != coex->bt_traffic_load) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700735 if (coex->bt_status) {
736 /* BT on */
737 if (!priv->bt_ch_announce)
738 priv->bt_traffic_load =
739 IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
740 else
741 priv->bt_traffic_load =
742 coex->bt_traffic_load;
743 } else {
744 /* BT off */
745 priv->bt_traffic_load =
746 IWL_BT_COEX_TRAFFIC_LOAD_NONE;
747 }
748 priv->bt_status = coex->bt_status;
Emmanuel Grumbach74e28e42011-08-25 23:10:41 -0700749 queue_work(priv->shrd->workqueue,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700750 &priv->bt_traffic_change_work);
751 }
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700752 }
753
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800754 iwlagn_set_kill_msk(priv, uart_msg);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700755
756 /* FIXME: based on notification, adjust the prio_boost */
757
Emmanuel Grumbach10b15e62011-08-25 23:10:43 -0700758 spin_lock_irqsave(&priv->shrd->lock, flags);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700759 priv->bt_ci_compliance = coex->bt_ci_compliance;
Emmanuel Grumbach10b15e62011-08-25 23:10:43 -0700760 spin_unlock_irqrestore(&priv->shrd->lock, flags);
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700761 return 0;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700762}
763
764void iwlagn_bt_rx_handler_setup(struct iwl_priv *priv)
765{
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700766 priv->rx_handlers[REPLY_BT_COEX_PROFILE_NOTIF] =
767 iwlagn_bt_coex_profile_notif;
768}
769
770void iwlagn_bt_setup_deferred_work(struct iwl_priv *priv)
771{
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700772 INIT_WORK(&priv->bt_traffic_change_work,
773 iwlagn_bt_traffic_change_work);
774}
775
776void iwlagn_bt_cancel_deferred_work(struct iwl_priv *priv)
777{
778 cancel_work_sync(&priv->bt_traffic_change_work);
779}
Johannes Berg5de33062010-09-22 18:01:58 +0200780
781static bool is_single_rx_stream(struct iwl_priv *priv)
782{
783 return priv->current_ht_config.smps == IEEE80211_SMPS_STATIC ||
784 priv->current_ht_config.single_chain_sufficient;
785}
786
787#define IWL_NUM_RX_CHAINS_MULTIPLE 3
788#define IWL_NUM_RX_CHAINS_SINGLE 2
789#define IWL_NUM_IDLE_CHAINS_DUAL 2
790#define IWL_NUM_IDLE_CHAINS_SINGLE 1
791
792/*
793 * Determine how many receiver/antenna chains to use.
794 *
795 * More provides better reception via diversity. Fewer saves power
796 * at the expense of throughput, but only when not in powersave to
797 * start with.
798 *
799 * MIMO (dual stream) requires at least 2, but works better with 3.
800 * This does not determine *which* chains to use, just how many.
801 */
802static int iwl_get_active_rx_chain_count(struct iwl_priv *priv)
803{
804 if (priv->cfg->bt_params &&
805 priv->cfg->bt_params->advanced_bt_coexist &&
806 (priv->bt_full_concurrent ||
807 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) {
808 /*
809 * only use chain 'A' in bt high traffic load or
810 * full concurrency mode
811 */
812 return IWL_NUM_RX_CHAINS_SINGLE;
813 }
814 /* # of Rx chains to use when expecting MIMO. */
815 if (is_single_rx_stream(priv))
816 return IWL_NUM_RX_CHAINS_SINGLE;
817 else
818 return IWL_NUM_RX_CHAINS_MULTIPLE;
819}
820
821/*
822 * When we are in power saving mode, unless device support spatial
823 * multiplexing power save, use the active count for rx chain count.
824 */
825static int iwl_get_idle_rx_chain_count(struct iwl_priv *priv, int active_cnt)
826{
827 /* # Rx chains when idling, depending on SMPS mode */
828 switch (priv->current_ht_config.smps) {
829 case IEEE80211_SMPS_STATIC:
830 case IEEE80211_SMPS_DYNAMIC:
831 return IWL_NUM_IDLE_CHAINS_SINGLE;
832 case IEEE80211_SMPS_OFF:
833 return active_cnt;
834 default:
835 WARN(1, "invalid SMPS mode %d",
836 priv->current_ht_config.smps);
837 return active_cnt;
838 }
839}
840
841/* up to 4 chains */
842static u8 iwl_count_chain_bitmap(u32 chain_bitmap)
843{
844 u8 res;
845 res = (chain_bitmap & BIT(0)) >> 0;
846 res += (chain_bitmap & BIT(1)) >> 1;
847 res += (chain_bitmap & BIT(2)) >> 2;
848 res += (chain_bitmap & BIT(3)) >> 3;
849 return res;
850}
851
852/**
853 * iwlagn_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
854 *
855 * Selects how many and which Rx receivers/antennas/chains to use.
856 * This should not be used for scan command ... it puts data in wrong place.
857 */
858void iwlagn_set_rxon_chain(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
859{
860 bool is_single = is_single_rx_stream(priv);
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700861 bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->shrd->status);
Johannes Berg5de33062010-09-22 18:01:58 +0200862 u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
863 u32 active_chains;
864 u16 rx_chain;
865
866 /* Tell uCode which antennas are actually connected.
867 * Before first association, we assume all antennas are connected.
868 * Just after first association, iwl_chain_noise_calibration()
869 * checks which antennas actually *are* connected. */
870 if (priv->chain_noise_data.active_chains)
871 active_chains = priv->chain_noise_data.active_chains;
872 else
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700873 active_chains = hw_params(priv).valid_rx_ant;
Johannes Berg5de33062010-09-22 18:01:58 +0200874
875 if (priv->cfg->bt_params &&
876 priv->cfg->bt_params->advanced_bt_coexist &&
877 (priv->bt_full_concurrent ||
878 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) {
879 /*
880 * only use chain 'A' in bt high traffic load or
881 * full concurrency mode
882 */
883 active_chains = first_antenna(active_chains);
884 }
885
886 rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
887
888 /* How many receivers should we use? */
889 active_rx_cnt = iwl_get_active_rx_chain_count(priv);
890 idle_rx_cnt = iwl_get_idle_rx_chain_count(priv, active_rx_cnt);
891
892
893 /* correct rx chain count according hw settings
894 * and chain noise calibration
895 */
896 valid_rx_cnt = iwl_count_chain_bitmap(active_chains);
897 if (valid_rx_cnt < active_rx_cnt)
898 active_rx_cnt = valid_rx_cnt;
899
900 if (valid_rx_cnt < idle_rx_cnt)
901 idle_rx_cnt = valid_rx_cnt;
902
903 rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
904 rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
905
906 ctx->staging.rx_chain = cpu_to_le16(rx_chain);
907
908 if (!is_single && (active_rx_cnt >= IWL_NUM_RX_CHAINS_SINGLE) && is_cam)
909 ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
910 else
911 ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
912
913 IWL_DEBUG_ASSOC(priv, "rx_chain=0x%X active=%d idle=%d\n",
914 ctx->staging.rx_chain,
915 active_rx_cnt, idle_rx_cnt);
916
917 WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
918 active_rx_cnt < idle_rx_cnt);
919}
Johannes Bergfacd9822010-09-22 18:02:05 +0200920
921u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant, u8 valid)
922{
923 int i;
924 u8 ind = ant;
925
926 if (priv->band == IEEE80211_BAND_2GHZ &&
927 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)
928 return 0;
929
930 for (i = 0; i < RATE_ANT_NUM - 1; i++) {
931 ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0;
932 if (valid & BIT(ind))
933 return ind;
934 }
935 return ant;
936}
Johannes Bergfed73292010-09-22 18:02:06 +0200937
Johannes Berg7194207c2011-01-04 16:22:00 -0800938/* notification wait support */
939void iwlagn_init_notification_wait(struct iwl_priv *priv,
940 struct iwl_notification_wait *wait_entry,
Johannes Berg09f18af2011-04-13 03:14:47 -0700941 u8 cmd,
Johannes Berg7194207c2011-01-04 16:22:00 -0800942 void (*fn)(struct iwl_priv *priv,
Johannes Berg09f18af2011-04-13 03:14:47 -0700943 struct iwl_rx_packet *pkt,
944 void *data),
945 void *fn_data)
Johannes Berg7194207c2011-01-04 16:22:00 -0800946{
947 wait_entry->fn = fn;
Johannes Berg09f18af2011-04-13 03:14:47 -0700948 wait_entry->fn_data = fn_data;
Johannes Berg7194207c2011-01-04 16:22:00 -0800949 wait_entry->cmd = cmd;
950 wait_entry->triggered = false;
Johannes Berge74fe232011-04-13 03:14:49 -0700951 wait_entry->aborted = false;
Johannes Berg7194207c2011-01-04 16:22:00 -0800952
Wey-Yi Guy898ed672011-07-13 08:38:57 -0700953 spin_lock_bh(&priv->notif_wait_lock);
954 list_add(&wait_entry->list, &priv->notif_waits);
955 spin_unlock_bh(&priv->notif_wait_lock);
Johannes Berg7194207c2011-01-04 16:22:00 -0800956}
957
Johannes Berga8674a12011-04-13 03:14:48 -0700958int iwlagn_wait_notification(struct iwl_priv *priv,
959 struct iwl_notification_wait *wait_entry,
960 unsigned long timeout)
Johannes Berg7194207c2011-01-04 16:22:00 -0800961{
962 int ret;
963
Wey-Yi Guy898ed672011-07-13 08:38:57 -0700964 ret = wait_event_timeout(priv->notif_waitq,
Johannes Berge74fe232011-04-13 03:14:49 -0700965 wait_entry->triggered || wait_entry->aborted,
Johannes Berg7194207c2011-01-04 16:22:00 -0800966 timeout);
967
Wey-Yi Guy898ed672011-07-13 08:38:57 -0700968 spin_lock_bh(&priv->notif_wait_lock);
Johannes Berg7194207c2011-01-04 16:22:00 -0800969 list_del(&wait_entry->list);
Wey-Yi Guy898ed672011-07-13 08:38:57 -0700970 spin_unlock_bh(&priv->notif_wait_lock);
Johannes Berg7194207c2011-01-04 16:22:00 -0800971
Johannes Berge74fe232011-04-13 03:14:49 -0700972 if (wait_entry->aborted)
973 return -EIO;
974
Johannes Berga8674a12011-04-13 03:14:48 -0700975 /* return value is always >= 0 */
976 if (ret <= 0)
977 return -ETIMEDOUT;
978 return 0;
Johannes Berg7194207c2011-01-04 16:22:00 -0800979}
980
981void iwlagn_remove_notification(struct iwl_priv *priv,
982 struct iwl_notification_wait *wait_entry)
983{
Wey-Yi Guy898ed672011-07-13 08:38:57 -0700984 spin_lock_bh(&priv->notif_wait_lock);
Johannes Berg7194207c2011-01-04 16:22:00 -0800985 list_del(&wait_entry->list);
Wey-Yi Guy898ed672011-07-13 08:38:57 -0700986 spin_unlock_bh(&priv->notif_wait_lock);
Johannes Berg7194207c2011-01-04 16:22:00 -0800987}