blob: d169228f59e7006528df76a96d300010f8e44a4b [file] [log] [blame]
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -07001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02005 * Copyright(c) 2008 - 2014 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
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020022 * in the file called COPYING.
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070023 *
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>
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070032#include <linux/sched.h>
Wey-Yi Guydd551ab2012-05-03 14:22:01 -070033#include <net/mac80211.h>
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070034
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070035#include "iwl-io.h"
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070036#include "iwl-agn-hw.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070037#include "iwl-trans.h"
Johannes Berg65de7e82012-04-17 07:36:30 -070038#include "iwl-modparams.h"
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070039
Johannes Berg1023fdc2012-05-15 12:16:34 +020040#include "dev.h"
41#include "agn.h"
42
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070043int iwlagn_hw_valid_rtc_data_addr(u32 addr)
44{
45 return (addr >= IWLAGN_RTC_DATA_LOWER_BOUND) &&
46 (addr < IWLAGN_RTC_DATA_UPPER_BOUND);
47}
48
49int iwlagn_send_tx_power(struct iwl_priv *priv)
50{
Wey-Yi Guyab63c682010-09-20 09:12:31 -070051 struct iwlagn_tx_power_dbm_cmd tx_power_cmd;
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070052 u8 tx_ant_cfg_cmd;
53
Don Fry83626402012-03-07 09:52:37 -080054 if (WARN_ONCE(test_bit(STATUS_SCAN_HW, &priv->status),
Stanislaw Gruszka4beeba72010-10-25 10:34:50 +020055 "TX Power requested while scanning!\n"))
56 return -EAGAIN;
57
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070058 /* half dBm need to multiply */
59 tx_power_cmd.global_lmt = (s8)(2 * priv->tx_power_user_lmt);
60
Eytan Lifshitzb7998c82012-12-01 20:59:49 +020061 if (tx_power_cmd.global_lmt > priv->nvm_data->max_tx_pwr_half_dbm) {
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070062 /*
63 * For the newer devices which using enhanced/extend tx power
64 * table in EEPROM, the format is in half dBm. driver need to
65 * convert to dBm format before report to mac80211.
66 * By doing so, there is a possibility of 1/2 dBm resolution
67 * lost. driver will perform "round-up" operation before
68 * reporting, but it will cause 1/2 dBm tx power over the
69 * regulatory limit. Perform the checking here, if the
70 * "tx_power_user_lmt" is higher than EEPROM value (in
71 * half-dBm format), lower the tx power based on EEPROM
72 */
Johannes Berg26a7ca92012-05-21 11:55:54 +020073 tx_power_cmd.global_lmt =
Eytan Lifshitzb7998c82012-12-01 20:59:49 +020074 priv->nvm_data->max_tx_pwr_half_dbm;
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070075 }
Wey-Yi Guyab63c682010-09-20 09:12:31 -070076 tx_power_cmd.flags = IWLAGN_TX_POWER_NO_CLOSED;
77 tx_power_cmd.srv_chan_lmt = IWLAGN_TX_POWER_AUTO;
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070078
Johannes Berg0692fe42012-03-06 13:30:37 -080079 if (IWL_UCODE_API(priv->fw->ucode_ver) == 1)
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070080 tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD_V1;
81 else
82 tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD;
83
Johannes Berge10a0532012-03-06 13:30:39 -080084 return iwl_dvm_send_cmd_pdu(priv, tx_ant_cfg_cmd, CMD_SYNC,
Emmanuel Grumbache419d622011-07-08 08:46:14 -070085 sizeof(tx_power_cmd), &tx_power_cmd);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070086}
87
88void iwlagn_temperature(struct iwl_priv *priv)
89{
Johannes Berg4ff70fc2012-03-05 11:24:26 -080090 lockdep_assert_held(&priv->statistics.lock);
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
Wey-Yi Guy8d801082010-03-17 13:34:36 -070097int iwlagn_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band)
98{
99 int idx = 0;
100 int band_offset = 0;
101
102 /* HT rate format: mac80211 wants an MCS number, which is just LSB */
103 if (rate_n_flags & RATE_MCS_HT_MSK) {
104 idx = (rate_n_flags & 0xff);
105 return idx;
106 /* Legacy rate format, search for match in table */
107 } else {
108 if (band == IEEE80211_BAND_5GHZ)
109 band_offset = IWL_FIRST_OFDM_RATE;
110 for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++)
111 if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
112 return idx - band_offset;
113 }
114
115 return -1;
116}
117
Johannes Berg1fa61b22010-04-28 08:44:52 -0700118int iwlagn_manage_ibss_station(struct iwl_priv *priv,
119 struct ieee80211_vif *vif, bool add)
120{
Johannes Bergfd1af152010-04-30 11:30:43 -0700121 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
122
Johannes Berg1fa61b22010-04-28 08:44:52 -0700123 if (add)
Johannes Berga30e3112010-09-22 18:02:01 +0200124 return iwlagn_add_bssid_station(priv, vif_priv->ctx,
125 vif->bss_conf.bssid,
126 &vif_priv->ibss_bssid_sta_id);
Johannes Bergfd1af152010-04-30 11:30:43 -0700127 return iwl_remove_station(priv, vif_priv->ibss_bssid_sta_id,
128 vif->bss_conf.bssid);
Johannes Berg1fa61b22010-04-28 08:44:52 -0700129}
Johannes Berg1ff504e2010-05-03 01:22:42 -0700130
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700131/**
132 * iwlagn_txfifo_flush: send REPLY_TXFIFO_FLUSH command to uCode
133 *
134 * pre-requirements:
135 * 1. acquire mutex before calling
136 * 2. make sure rf is on and not in exit state
137 */
Emmanuel Grumbach2d055af2013-04-07 10:13:44 +0300138int iwlagn_txfifo_flush(struct iwl_priv *priv, u32 scd_q_msk)
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700139{
140 struct iwl_txfifo_flush_cmd flush_cmd;
141 struct iwl_host_cmd cmd = {
142 .id = REPLY_TXFIFO_FLUSH,
Johannes Berg3fa50732011-05-04 07:50:38 -0700143 .len = { sizeof(struct iwl_txfifo_flush_cmd), },
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700144 .flags = CMD_SYNC,
Johannes Berg3fa50732011-05-04 07:50:38 -0700145 .data = { &flush_cmd, },
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700146 };
147
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700148 memset(&flush_cmd, 0, sizeof(flush_cmd));
Johannes Berga4dece92012-10-31 22:21:28 +0100149
150 flush_cmd.queue_control = IWL_SCD_VO_MSK | IWL_SCD_VI_MSK |
151 IWL_SCD_BE_MSK | IWL_SCD_BK_MSK |
152 IWL_SCD_MGMT_MSK;
153 if ((priv->valid_contexts != BIT(IWL_RXON_CTX_BSS)))
Johannes Berg37c477d2012-10-31 20:49:32 +0100154 flush_cmd.queue_control |= IWL_PAN_SCD_VO_MSK |
Johannes Berga4dece92012-10-31 22:21:28 +0100155 IWL_PAN_SCD_VI_MSK |
156 IWL_PAN_SCD_BE_MSK |
157 IWL_PAN_SCD_BK_MSK |
158 IWL_PAN_SCD_MGMT_MSK |
159 IWL_PAN_SCD_MULTICAST_MSK;
Wey-Yi Guyf88e0ec2011-06-08 09:57:25 -0700160
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200161 if (priv->nvm_data->sku_cap_11n_enable)
Johannes Berg37c477d2012-10-31 20:49:32 +0100162 flush_cmd.queue_control |= IWL_AGG_TX_QUEUE_MSK;
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700163
Emmanuel Grumbach2d055af2013-04-07 10:13:44 +0300164 if (scd_q_msk)
165 flush_cmd.queue_control = cpu_to_le32(scd_q_msk);
166
Johannes Berg37c477d2012-10-31 20:49:32 +0100167 IWL_DEBUG_INFO(priv, "queue control: 0x%x\n",
168 flush_cmd.queue_control);
Johannes Berga4dece92012-10-31 22:21:28 +0100169 flush_cmd.flush_control = cpu_to_le16(IWL_DROP_ALL);
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700170
Johannes Berge10a0532012-03-06 13:30:39 -0800171 return iwl_dvm_send_cmd(priv, &cmd);
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700172}
Wey-Yi Guy65550632010-06-24 13:18:35 -0700173
Johannes Berga4dece92012-10-31 22:21:28 +0100174void iwlagn_dev_txfifo_flush(struct iwl_priv *priv)
Wey-Yi Guy65550632010-06-24 13:18:35 -0700175{
Johannes Bergb1eea292012-03-06 13:30:42 -0800176 mutex_lock(&priv->mutex);
Wey-Yi Guy65550632010-06-24 13:18:35 -0700177 ieee80211_stop_queues(priv->hw);
Emmanuel Grumbach2d055af2013-04-07 10:13:44 +0300178 if (iwlagn_txfifo_flush(priv, 0)) {
Wey-Yi Guy65550632010-06-24 13:18:35 -0700179 IWL_ERR(priv, "flush request fail\n");
180 goto done;
181 }
182 IWL_DEBUG_INFO(priv, "wait transmit/flush all frames\n");
Emmanuel Grumbach3cafdbe2014-03-24 11:23:51 +0200183 iwl_trans_wait_tx_queue_empty(priv->trans, 0xffffffff);
Wey-Yi Guy65550632010-06-24 13:18:35 -0700184done:
185 ieee80211_wake_queues(priv->hw);
Johannes Bergb1eea292012-03-06 13:30:42 -0800186 mutex_unlock(&priv->mutex);
Wey-Yi Guy65550632010-06-24 13:18:35 -0700187}
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700188
189/*
190 * BT coex
191 */
Wey-Yi Guy4d5ba612012-04-19 09:50:42 -0700192/* Notmal TDM */
193static const __le32 iwlagn_def_3w_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700194 cpu_to_le32(0xaaaaaaaa),
195 cpu_to_le32(0xaaaaaaaa),
196 cpu_to_le32(0xaeaaaaaa),
197 cpu_to_le32(0xaaaaaaaa),
198 cpu_to_le32(0xcc00ff28),
199 cpu_to_le32(0x0000aaaa),
200 cpu_to_le32(0xcc00aaaa),
201 cpu_to_le32(0x0000aaaa),
202 cpu_to_le32(0xc0004000),
203 cpu_to_le32(0x00004000),
204 cpu_to_le32(0xf0005000),
Wey-Yi Guy9a67d762010-11-18 10:40:03 -0800205 cpu_to_le32(0xf0005000),
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700206};
207
Wey-Yi Guy4d5ba612012-04-19 09:50:42 -0700208
209/* Loose Coex */
210static const __le32 iwlagn_loose_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = {
211 cpu_to_le32(0xaaaaaaaa),
212 cpu_to_le32(0xaaaaaaaa),
213 cpu_to_le32(0xaeaaaaaa),
214 cpu_to_le32(0xaaaaaaaa),
215 cpu_to_le32(0xcc00ff28),
216 cpu_to_le32(0x0000aaaa),
217 cpu_to_le32(0xcc00aaaa),
218 cpu_to_le32(0x0000aaaa),
219 cpu_to_le32(0x00000000),
220 cpu_to_le32(0x00000000),
221 cpu_to_le32(0xf0005000),
222 cpu_to_le32(0xf0005000),
223};
224
225/* Full concurrency */
226static const __le32 iwlagn_concurrent_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700227 cpu_to_le32(0xaaaaaaaa),
228 cpu_to_le32(0xaaaaaaaa),
229 cpu_to_le32(0xaaaaaaaa),
230 cpu_to_le32(0xaaaaaaaa),
231 cpu_to_le32(0xaaaaaaaa),
232 cpu_to_le32(0xaaaaaaaa),
233 cpu_to_le32(0xaaaaaaaa),
234 cpu_to_le32(0xaaaaaaaa),
235 cpu_to_le32(0x00000000),
236 cpu_to_le32(0x00000000),
237 cpu_to_le32(0x00000000),
238 cpu_to_le32(0x00000000),
239};
240
241void iwlagn_send_advance_bt_config(struct iwl_priv *priv)
242{
Wey-Yi Guy60132702011-02-18 17:23:54 -0800243 struct iwl_basic_bt_cmd basic = {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700244 .max_kill = IWLAGN_BT_MAX_KILL_DEFAULT,
245 .bt3_timer_t7_value = IWLAGN_BT3_T7_DEFAULT,
246 .bt3_prio_sample_time = IWLAGN_BT3_PRIO_SAMPLE_DEFAULT,
247 .bt3_timer_t2_value = IWLAGN_BT3_T2_DEFAULT,
248 };
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800249 struct iwl_bt_cmd_v1 bt_cmd_v1;
250 struct iwl_bt_cmd_v2 bt_cmd_v2;
Wey-Yi Guy60132702011-02-18 17:23:54 -0800251 int ret;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700252
253 BUILD_BUG_ON(sizeof(iwlagn_def_3w_lookup) !=
Wey-Yi Guy60132702011-02-18 17:23:54 -0800254 sizeof(basic.bt3_lookup_table));
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700255
Johannes Berg0d8877a2013-05-17 10:36:29 +0200256 if (priv->lib->bt_params) {
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800257 /*
258 * newer generation of devices (2000 series and newer)
259 * use the version 2 of the bt command
260 * we need to make sure sending the host command
261 * with correct data structure to avoid uCode assert
262 */
Johannes Berg0d8877a2013-05-17 10:36:29 +0200263 if (priv->lib->bt_params->bt_session_2) {
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800264 bt_cmd_v2.prio_boost = cpu_to_le32(
Johannes Berg0d8877a2013-05-17 10:36:29 +0200265 priv->lib->bt_params->bt_prio_boost);
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800266 bt_cmd_v2.tx_prio_boost = 0;
267 bt_cmd_v2.rx_prio_boost = 0;
Wey-Yi Guy60132702011-02-18 17:23:54 -0800268 } else {
Wey-Yi Guye911ede2012-06-23 09:06:19 -0700269 /* older version only has 8 bits */
Johannes Berg0d8877a2013-05-17 10:36:29 +0200270 WARN_ON(priv->lib->bt_params->bt_prio_boost & ~0xFF);
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800271 bt_cmd_v1.prio_boost =
Johannes Berg0d8877a2013-05-17 10:36:29 +0200272 priv->lib->bt_params->bt_prio_boost;
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800273 bt_cmd_v1.tx_prio_boost = 0;
274 bt_cmd_v1.rx_prio_boost = 0;
Wey-Yi Guy60132702011-02-18 17:23:54 -0800275 }
276 } else {
277 IWL_ERR(priv, "failed to construct BT Coex Config\n");
278 return;
279 }
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800280
Wey-Yi Guy83ce21d2012-05-03 14:22:02 -0700281 /*
282 * Possible situations when BT needs to take over for receive,
283 * at the same time where STA needs to response to AP's frame(s),
284 * reduce the tx power of the required response frames, by that,
285 * allow the concurrent BT receive & WiFi transmit
286 * (BT - ANT A, WiFi -ANT B), without interference to one another
287 *
288 * Reduced tx power apply to control frames only (ACK/Back/CTS)
289 * when indicated by the BT config command
290 */
Wey-Yi Guy60132702011-02-18 17:23:54 -0800291 basic.kill_ack_mask = priv->kill_ack_mask;
292 basic.kill_cts_mask = priv->kill_cts_mask;
Wey-Yi Guy83ce21d2012-05-03 14:22:02 -0700293 if (priv->reduced_txpower)
294 basic.reduce_txpower = IWLAGN_BT_REDUCED_TX_PWR;
Wey-Yi Guy60132702011-02-18 17:23:54 -0800295 basic.valid = priv->bt_valid;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700296
297 /*
298 * Configure BT coex mode to "no coexistence" when the
299 * user disabled BT coexistence, we have no interface
300 * (might be in monitor mode), or the interface is in
301 * IBSS mode (no proper uCode support for coex then).
302 */
Johannes Berg65de7e82012-04-17 07:36:30 -0700303 if (!iwlwifi_mod_params.bt_coex_active ||
Wey-Yi Guyb60eec92011-06-03 13:52:38 -0700304 priv->iw_mode == NL80211_IFTYPE_ADHOC) {
Wey-Yi Guy60132702011-02-18 17:23:54 -0800305 basic.flags = IWLAGN_BT_FLAG_COEX_MODE_DISABLED;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700306 } else {
Wey-Yi Guy60132702011-02-18 17:23:54 -0800307 basic.flags = IWLAGN_BT_FLAG_COEX_MODE_3W <<
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700308 IWLAGN_BT_FLAG_COEX_MODE_SHIFT;
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700309
310 if (!priv->bt_enable_pspoll)
Wey-Yi Guy60132702011-02-18 17:23:54 -0800311 basic.flags |= IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE;
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700312 else
313 basic.flags &= ~IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE;
Wey-Yi Guye3661762010-11-23 10:58:54 -0800314
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700315 if (priv->bt_ch_announce)
Wey-Yi Guy60132702011-02-18 17:23:54 -0800316 basic.flags |= IWLAGN_BT_FLAG_CHANNEL_INHIBITION;
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700317 IWL_DEBUG_COEX(priv, "BT coex flag: 0X%x\n", basic.flags);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700318 }
Wey-Yi Guy60132702011-02-18 17:23:54 -0800319 priv->bt_enable_flag = basic.flags;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700320 if (priv->bt_full_concurrent)
Wey-Yi Guy60132702011-02-18 17:23:54 -0800321 memcpy(basic.bt3_lookup_table, iwlagn_concurrent_lookup,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700322 sizeof(iwlagn_concurrent_lookup));
323 else
Wey-Yi Guy60132702011-02-18 17:23:54 -0800324 memcpy(basic.bt3_lookup_table, iwlagn_def_3w_lookup,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700325 sizeof(iwlagn_def_3w_lookup));
326
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700327 IWL_DEBUG_COEX(priv, "BT coex %s in %s mode\n",
Wey-Yi Guy60132702011-02-18 17:23:54 -0800328 basic.flags ? "active" : "disabled",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700329 priv->bt_full_concurrent ?
330 "full concurrency" : "3-wire");
331
Johannes Berg0d8877a2013-05-17 10:36:29 +0200332 if (priv->lib->bt_params->bt_session_2) {
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800333 memcpy(&bt_cmd_v2.basic, &basic,
Wey-Yi Guy60132702011-02-18 17:23:54 -0800334 sizeof(basic));
Johannes Berge10a0532012-03-06 13:30:39 -0800335 ret = iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800336 CMD_SYNC, sizeof(bt_cmd_v2), &bt_cmd_v2);
Wey-Yi Guy60132702011-02-18 17:23:54 -0800337 } else {
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800338 memcpy(&bt_cmd_v1.basic, &basic,
Wey-Yi Guy60132702011-02-18 17:23:54 -0800339 sizeof(basic));
Johannes Berge10a0532012-03-06 13:30:39 -0800340 ret = iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800341 CMD_SYNC, sizeof(bt_cmd_v1), &bt_cmd_v1);
Wey-Yi Guy60132702011-02-18 17:23:54 -0800342 }
343 if (ret)
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700344 IWL_ERR(priv, "failed to send BT Coex Config\n");
345
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700346}
347
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700348void iwlagn_bt_adjust_rssi_monitor(struct iwl_priv *priv, bool rssi_ena)
349{
350 struct iwl_rxon_context *ctx, *found_ctx = NULL;
351 bool found_ap = false;
352
Johannes Bergb1eea292012-03-06 13:30:42 -0800353 lockdep_assert_held(&priv->mutex);
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700354
355 /* Check whether AP or GO mode is active. */
356 if (rssi_ena) {
357 for_each_context(priv, ctx) {
358 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_AP &&
359 iwl_is_associated_ctx(ctx)) {
360 found_ap = true;
361 break;
362 }
363 }
364 }
365
366 /*
367 * If disable was received or If GO/AP mode, disable RSSI
368 * measurements.
369 */
370 if (!rssi_ena || found_ap) {
371 if (priv->cur_rssi_ctx) {
372 ctx = priv->cur_rssi_ctx;
373 ieee80211_disable_rssi_reports(ctx->vif);
374 priv->cur_rssi_ctx = NULL;
375 }
376 return;
377 }
378
379 /*
380 * If rssi measurements need to be enabled, consider all cases now.
381 * Figure out how many contexts are active.
382 */
383 for_each_context(priv, ctx) {
384 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION &&
385 iwl_is_associated_ctx(ctx)) {
386 found_ctx = ctx;
387 break;
388 }
389 }
390
391 /*
392 * rssi monitor already enabled for the correct interface...nothing
393 * to do.
394 */
395 if (found_ctx == priv->cur_rssi_ctx)
396 return;
397
398 /*
399 * Figure out if rssi monitor is currently enabled, and needs
400 * to be changed. If rssi monitor is already enabled, disable
401 * it first else just enable rssi measurements on the
402 * interface found above.
403 */
404 if (priv->cur_rssi_ctx) {
405 ctx = priv->cur_rssi_ctx;
406 if (ctx->vif)
407 ieee80211_disable_rssi_reports(ctx->vif);
408 }
409
410 priv->cur_rssi_ctx = found_ctx;
411
412 if (!found_ctx)
413 return;
414
415 ieee80211_enable_rssi_reports(found_ctx->vif,
416 IWLAGN_BT_PSP_MIN_RSSI_THRESHOLD,
417 IWLAGN_BT_PSP_MAX_RSSI_THRESHOLD);
418}
419
420static bool iwlagn_bt_traffic_is_sco(struct iwl_bt_uart_msg *uart_msg)
421{
422 return BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3 >>
423 BT_UART_MSG_FRAME3SCOESCO_POS;
424}
425
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700426static void iwlagn_bt_traffic_change_work(struct work_struct *work)
427{
428 struct iwl_priv *priv =
429 container_of(work, struct iwl_priv, bt_traffic_change_work);
Johannes Berg8bd413e2010-08-23 10:46:40 +0200430 struct iwl_rxon_context *ctx;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700431 int smps_request = -1;
432
Wey-Yi Guyc4197c62011-02-06 08:56:35 -0800433 if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) {
434 /* bt coex disabled */
435 return;
436 }
437
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200438 /*
439 * Note: bt_traffic_load can be overridden by scan complete and
440 * coex profile notifications. Ignore that since only bad consequence
441 * can be not matching debug print with actual state.
442 */
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700443 IWL_DEBUG_COEX(priv, "BT traffic load changes: %d\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700444 priv->bt_traffic_load);
445
446 switch (priv->bt_traffic_load) {
447 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
Wey-Yi Guyf5682c02010-10-23 09:15:44 -0700448 if (priv->bt_status)
449 smps_request = IEEE80211_SMPS_DYNAMIC;
450 else
451 smps_request = IEEE80211_SMPS_AUTOMATIC;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700452 break;
453 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
454 smps_request = IEEE80211_SMPS_DYNAMIC;
455 break;
456 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
457 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
458 smps_request = IEEE80211_SMPS_STATIC;
459 break;
460 default:
461 IWL_ERR(priv, "Invalid BT traffic load: %d\n",
462 priv->bt_traffic_load);
463 break;
464 }
465
Johannes Bergb1eea292012-03-06 13:30:42 -0800466 mutex_lock(&priv->mutex);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700467
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200468 /*
469 * We can not send command to firmware while scanning. When the scan
470 * complete we will schedule this work again. We do check with mutex
471 * locked to prevent new scan request to arrive. We do not check
472 * STATUS_SCANNING to avoid race when queue_work two times from
473 * different notifications, but quit and not perform any work at all.
474 */
Don Fry83626402012-03-07 09:52:37 -0800475 if (test_bit(STATUS_SCAN_HW, &priv->status))
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200476 goto out;
477
Fry, Donald H6b6db912011-07-08 08:46:17 -0700478 iwl_update_chain_flags(priv);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700479
Johannes Berg8bd413e2010-08-23 10:46:40 +0200480 if (smps_request != -1) {
Wey-Yi Guy88e9ba72011-06-03 07:54:12 -0700481 priv->current_ht_config.smps = smps_request;
Johannes Berg8bd413e2010-08-23 10:46:40 +0200482 for_each_context(priv, ctx) {
483 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION)
484 ieee80211_request_smps(ctx->vif, smps_request);
485 }
486 }
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700487
488 /*
489 * Dynamic PS poll related functionality. Adjust RSSI measurements if
490 * necessary.
491 */
492 iwlagn_bt_coex_rssi_monitor(priv);
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200493out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800494 mutex_unlock(&priv->mutex);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700495}
496
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700497/*
498 * If BT sco traffic, and RSSI monitor is enabled, move measurements to the
499 * correct interface or disable it if this is the last interface to be
500 * removed.
501 */
502void iwlagn_bt_coex_rssi_monitor(struct iwl_priv *priv)
503{
504 if (priv->bt_is_sco &&
505 priv->bt_traffic_load == IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS)
506 iwlagn_bt_adjust_rssi_monitor(priv, true);
507 else
508 iwlagn_bt_adjust_rssi_monitor(priv, false);
509}
510
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700511static void iwlagn_print_uartmsg(struct iwl_priv *priv,
512 struct iwl_bt_uart_msg *uart_msg)
513{
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700514 IWL_DEBUG_COEX(priv, "Message Type = 0x%X, SSN = 0x%X, "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700515 "Update Req = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700516 (BT_UART_MSG_FRAME1MSGTYPE_MSK & uart_msg->frame1) >>
517 BT_UART_MSG_FRAME1MSGTYPE_POS,
518 (BT_UART_MSG_FRAME1SSN_MSK & uart_msg->frame1) >>
519 BT_UART_MSG_FRAME1SSN_POS,
520 (BT_UART_MSG_FRAME1UPDATEREQ_MSK & uart_msg->frame1) >>
521 BT_UART_MSG_FRAME1UPDATEREQ_POS);
522
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700523 IWL_DEBUG_COEX(priv, "Open connections = 0x%X, Traffic load = 0x%X, "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700524 "Chl_SeqN = 0x%X, In band = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700525 (BT_UART_MSG_FRAME2OPENCONNECTIONS_MSK & uart_msg->frame2) >>
526 BT_UART_MSG_FRAME2OPENCONNECTIONS_POS,
527 (BT_UART_MSG_FRAME2TRAFFICLOAD_MSK & uart_msg->frame2) >>
528 BT_UART_MSG_FRAME2TRAFFICLOAD_POS,
529 (BT_UART_MSG_FRAME2CHLSEQN_MSK & uart_msg->frame2) >>
530 BT_UART_MSG_FRAME2CHLSEQN_POS,
531 (BT_UART_MSG_FRAME2INBAND_MSK & uart_msg->frame2) >>
532 BT_UART_MSG_FRAME2INBAND_POS);
533
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700534 IWL_DEBUG_COEX(priv, "SCO/eSCO = 0x%X, Sniff = 0x%X, A2DP = 0x%X, "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700535 "ACL = 0x%X, Master = 0x%X, OBEX = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700536 (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3) >>
537 BT_UART_MSG_FRAME3SCOESCO_POS,
538 (BT_UART_MSG_FRAME3SNIFF_MSK & uart_msg->frame3) >>
539 BT_UART_MSG_FRAME3SNIFF_POS,
540 (BT_UART_MSG_FRAME3A2DP_MSK & uart_msg->frame3) >>
541 BT_UART_MSG_FRAME3A2DP_POS,
542 (BT_UART_MSG_FRAME3ACL_MSK & uart_msg->frame3) >>
543 BT_UART_MSG_FRAME3ACL_POS,
544 (BT_UART_MSG_FRAME3MASTER_MSK & uart_msg->frame3) >>
545 BT_UART_MSG_FRAME3MASTER_POS,
546 (BT_UART_MSG_FRAME3OBEX_MSK & uart_msg->frame3) >>
547 BT_UART_MSG_FRAME3OBEX_POS);
548
Johannes Berg0ca24da2012-03-15 13:26:46 -0700549 IWL_DEBUG_COEX(priv, "Idle duration = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700550 (BT_UART_MSG_FRAME4IDLEDURATION_MSK & uart_msg->frame4) >>
551 BT_UART_MSG_FRAME4IDLEDURATION_POS);
552
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700553 IWL_DEBUG_COEX(priv, "Tx Activity = 0x%X, Rx Activity = 0x%X, "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700554 "eSCO Retransmissions = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700555 (BT_UART_MSG_FRAME5TXACTIVITY_MSK & uart_msg->frame5) >>
556 BT_UART_MSG_FRAME5TXACTIVITY_POS,
557 (BT_UART_MSG_FRAME5RXACTIVITY_MSK & uart_msg->frame5) >>
558 BT_UART_MSG_FRAME5RXACTIVITY_POS,
559 (BT_UART_MSG_FRAME5ESCORETRANSMIT_MSK & uart_msg->frame5) >>
560 BT_UART_MSG_FRAME5ESCORETRANSMIT_POS);
561
Johannes Berg0ca24da2012-03-15 13:26:46 -0700562 IWL_DEBUG_COEX(priv, "Sniff Interval = 0x%X, Discoverable = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700563 (BT_UART_MSG_FRAME6SNIFFINTERVAL_MSK & uart_msg->frame6) >>
564 BT_UART_MSG_FRAME6SNIFFINTERVAL_POS,
565 (BT_UART_MSG_FRAME6DISCOVERABLE_MSK & uart_msg->frame6) >>
566 BT_UART_MSG_FRAME6DISCOVERABLE_POS);
567
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700568 IWL_DEBUG_COEX(priv, "Sniff Activity = 0x%X, Page = "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700569 "0x%X, Inquiry = 0x%X, Connectable = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700570 (BT_UART_MSG_FRAME7SNIFFACTIVITY_MSK & uart_msg->frame7) >>
571 BT_UART_MSG_FRAME7SNIFFACTIVITY_POS,
Wey-Yi Guy399f66f2011-02-22 08:24:22 -0800572 (BT_UART_MSG_FRAME7PAGE_MSK & uart_msg->frame7) >>
573 BT_UART_MSG_FRAME7PAGE_POS,
574 (BT_UART_MSG_FRAME7INQUIRY_MSK & uart_msg->frame7) >>
575 BT_UART_MSG_FRAME7INQUIRY_POS,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700576 (BT_UART_MSG_FRAME7CONNECTABLE_MSK & uart_msg->frame7) >>
577 BT_UART_MSG_FRAME7CONNECTABLE_POS);
578}
579
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700580static bool iwlagn_set_kill_msk(struct iwl_priv *priv,
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800581 struct iwl_bt_uart_msg *uart_msg)
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700582{
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700583 bool need_update = false;
Wey-Yi Guy9dc4ca92012-04-19 09:50:06 -0700584 u8 kill_msk = IWL_BT_KILL_REDUCE;
585 static const __le32 bt_kill_ack_msg[3] = {
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800586 IWLAGN_BT_KILL_ACK_MASK_DEFAULT,
Wey-Yi Guy9dc4ca92012-04-19 09:50:06 -0700587 IWLAGN_BT_KILL_ACK_CTS_MASK_SCO,
588 IWLAGN_BT_KILL_ACK_CTS_MASK_REDUCE};
589 static const __le32 bt_kill_cts_msg[3] = {
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800590 IWLAGN_BT_KILL_CTS_MASK_DEFAULT,
Wey-Yi Guy9dc4ca92012-04-19 09:50:06 -0700591 IWLAGN_BT_KILL_ACK_CTS_MASK_SCO,
592 IWLAGN_BT_KILL_ACK_CTS_MASK_REDUCE};
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700593
Wey-Yi Guy9dc4ca92012-04-19 09:50:06 -0700594 if (!priv->reduced_txpower)
595 kill_msk = (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3)
596 ? IWL_BT_KILL_OVERRIDE : IWL_BT_KILL_DEFAULT;
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800597 if (priv->kill_ack_mask != bt_kill_ack_msg[kill_msk] ||
598 priv->kill_cts_mask != bt_kill_cts_msg[kill_msk]) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700599 priv->bt_valid |= IWLAGN_BT_VALID_KILL_ACK_MASK;
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800600 priv->kill_ack_mask = bt_kill_ack_msg[kill_msk];
601 priv->bt_valid |= IWLAGN_BT_VALID_KILL_CTS_MASK;
602 priv->kill_cts_mask = bt_kill_cts_msg[kill_msk];
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700603 need_update = true;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700604 }
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700605 return need_update;
606}
607
Wey-Yi Guy83ce21d2012-05-03 14:22:02 -0700608/*
609 * Upon RSSI changes, sends a bt config command with following changes
610 * 1. enable/disable "reduced control frames tx power
611 * 2. update the "kill)ack_mask" and "kill_cts_mask"
612 *
613 * If "reduced tx power" is enabled, uCode shall
614 * 1. ACK/Back/CTS rate shall reduced to 6Mbps
615 * 2. not use duplciate 20/40MHz mode
616 */
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700617static bool iwlagn_fill_txpower_mode(struct iwl_priv *priv,
618 struct iwl_bt_uart_msg *uart_msg)
619{
620 bool need_update = false;
Wey-Yi Guydd551ab2012-05-03 14:22:01 -0700621 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
622 int ave_rssi;
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700623
Ilan Peere19ebca2012-05-10 15:53:14 +0300624 if (!ctx->vif || (ctx->vif->type != NL80211_IFTYPE_STATION)) {
625 IWL_DEBUG_INFO(priv, "BSS ctx not active or not in sta mode\n");
626 return false;
627 }
628
Wey-Yi Guydd551ab2012-05-03 14:22:01 -0700629 ave_rssi = ieee80211_ave_rssi(ctx->vif);
630 if (!ave_rssi) {
631 /* no rssi data, no changes to reduce tx power */
632 IWL_DEBUG_COEX(priv, "no rssi data available\n");
633 return need_update;
634 }
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700635 if (!priv->reduced_txpower &&
636 !iwl_is_associated(priv, IWL_RXON_CTX_PAN) &&
Wey-Yi Guydd551ab2012-05-03 14:22:01 -0700637 (ave_rssi > BT_ENABLE_REDUCED_TXPOWER_THRESHOLD) &&
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700638 (uart_msg->frame3 & (BT_UART_MSG_FRAME3ACL_MSK |
639 BT_UART_MSG_FRAME3OBEX_MSK)) &&
640 !(uart_msg->frame3 & (BT_UART_MSG_FRAME3SCOESCO_MSK |
641 BT_UART_MSG_FRAME3SNIFF_MSK | BT_UART_MSG_FRAME3A2DP_MSK))) {
642 /* enabling reduced tx power */
643 priv->reduced_txpower = true;
644 priv->bt_valid |= IWLAGN_BT_VALID_REDUCED_TX_PWR;
645 need_update = true;
646 } else if (priv->reduced_txpower &&
647 (iwl_is_associated(priv, IWL_RXON_CTX_PAN) ||
Wey-Yi Guydd551ab2012-05-03 14:22:01 -0700648 (ave_rssi < BT_DISABLE_REDUCED_TXPOWER_THRESHOLD) ||
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700649 (uart_msg->frame3 & (BT_UART_MSG_FRAME3SCOESCO_MSK |
650 BT_UART_MSG_FRAME3SNIFF_MSK | BT_UART_MSG_FRAME3A2DP_MSK)) ||
651 !(uart_msg->frame3 & (BT_UART_MSG_FRAME3ACL_MSK |
652 BT_UART_MSG_FRAME3OBEX_MSK)))) {
653 /* disable reduced tx power */
654 priv->reduced_txpower = false;
Wey-Yi Guyf6be8b72012-05-03 14:22:03 -0700655 priv->bt_valid |= IWLAGN_BT_VALID_REDUCED_TX_PWR;
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700656 need_update = true;
657 }
658
659 return need_update;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700660}
661
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700662int iwlagn_bt_coex_profile_notif(struct iwl_priv *priv,
Johannes Berg48a2d662012-03-05 11:24:39 -0800663 struct iwl_rx_cmd_buffer *rxb,
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700664 struct iwl_device_cmd *cmd)
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700665{
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700666 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Johannes Bergf8d7c1a2012-03-06 13:31:02 -0800667 struct iwl_bt_coex_profile_notif *coex = (void *)pkt->data;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700668 struct iwl_bt_uart_msg *uart_msg = &coex->last_bt_uart_msg;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700669
Wey-Yi Guyc4197c62011-02-06 08:56:35 -0800670 if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) {
671 /* bt coex disabled */
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700672 return 0;
Wey-Yi Guyc4197c62011-02-06 08:56:35 -0800673 }
674
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700675 IWL_DEBUG_COEX(priv, "BT Coex notification:\n");
676 IWL_DEBUG_COEX(priv, " status: %d\n", coex->bt_status);
677 IWL_DEBUG_COEX(priv, " traffic load: %d\n", coex->bt_traffic_load);
678 IWL_DEBUG_COEX(priv, " CI compliance: %d\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700679 coex->bt_ci_compliance);
680 iwlagn_print_uartmsg(priv, uart_msg);
681
Wey-Yi Guy66e863a52010-11-08 14:54:37 -0800682 priv->last_bt_traffic_load = priv->bt_traffic_load;
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700683 priv->bt_is_sco = iwlagn_bt_traffic_is_sco(uart_msg);
684
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700685 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
686 if (priv->bt_status != coex->bt_status ||
Wey-Yi Guy66e863a52010-11-08 14:54:37 -0800687 priv->last_bt_traffic_load != coex->bt_traffic_load) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700688 if (coex->bt_status) {
689 /* BT on */
690 if (!priv->bt_ch_announce)
691 priv->bt_traffic_load =
692 IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
693 else
694 priv->bt_traffic_load =
695 coex->bt_traffic_load;
696 } else {
697 /* BT off */
698 priv->bt_traffic_load =
699 IWL_BT_COEX_TRAFFIC_LOAD_NONE;
700 }
701 priv->bt_status = coex->bt_status;
Johannes Berg1ee158d2012-02-17 10:07:44 -0800702 queue_work(priv->workqueue,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700703 &priv->bt_traffic_change_work);
704 }
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700705 }
706
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700707 /* schedule to send runtime bt_config */
Wey-Yi Guy9dc4ca92012-04-19 09:50:06 -0700708 /* check reduce power before change ack/cts kill mask */
709 if (iwlagn_fill_txpower_mode(priv, uart_msg) ||
710 iwlagn_set_kill_msk(priv, uart_msg))
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700711 queue_work(priv->workqueue, &priv->bt_runtime_config);
712
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700713
714 /* FIXME: based on notification, adjust the prio_boost */
715
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700716 priv->bt_ci_compliance = coex->bt_ci_compliance;
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700717 return 0;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700718}
719
720void iwlagn_bt_rx_handler_setup(struct iwl_priv *priv)
721{
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700722 priv->rx_handlers[REPLY_BT_COEX_PROFILE_NOTIF] =
723 iwlagn_bt_coex_profile_notif;
724}
725
726void iwlagn_bt_setup_deferred_work(struct iwl_priv *priv)
727{
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700728 INIT_WORK(&priv->bt_traffic_change_work,
729 iwlagn_bt_traffic_change_work);
730}
731
732void iwlagn_bt_cancel_deferred_work(struct iwl_priv *priv)
733{
734 cancel_work_sync(&priv->bt_traffic_change_work);
735}
Johannes Berg5de33062010-09-22 18:01:58 +0200736
737static bool is_single_rx_stream(struct iwl_priv *priv)
738{
739 return priv->current_ht_config.smps == IEEE80211_SMPS_STATIC ||
740 priv->current_ht_config.single_chain_sufficient;
741}
742
743#define IWL_NUM_RX_CHAINS_MULTIPLE 3
744#define IWL_NUM_RX_CHAINS_SINGLE 2
745#define IWL_NUM_IDLE_CHAINS_DUAL 2
746#define IWL_NUM_IDLE_CHAINS_SINGLE 1
747
748/*
749 * Determine how many receiver/antenna chains to use.
750 *
751 * More provides better reception via diversity. Fewer saves power
752 * at the expense of throughput, but only when not in powersave to
753 * start with.
754 *
755 * MIMO (dual stream) requires at least 2, but works better with 3.
756 * This does not determine *which* chains to use, just how many.
757 */
758static int iwl_get_active_rx_chain_count(struct iwl_priv *priv)
759{
Johannes Berg0d8877a2013-05-17 10:36:29 +0200760 if (priv->lib->bt_params &&
761 priv->lib->bt_params->advanced_bt_coexist &&
Johannes Berg5de33062010-09-22 18:01:58 +0200762 (priv->bt_full_concurrent ||
763 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) {
764 /*
765 * only use chain 'A' in bt high traffic load or
766 * full concurrency mode
767 */
768 return IWL_NUM_RX_CHAINS_SINGLE;
769 }
770 /* # of Rx chains to use when expecting MIMO. */
771 if (is_single_rx_stream(priv))
772 return IWL_NUM_RX_CHAINS_SINGLE;
773 else
774 return IWL_NUM_RX_CHAINS_MULTIPLE;
775}
776
777/*
778 * When we are in power saving mode, unless device support spatial
779 * multiplexing power save, use the active count for rx chain count.
780 */
781static int iwl_get_idle_rx_chain_count(struct iwl_priv *priv, int active_cnt)
782{
783 /* # Rx chains when idling, depending on SMPS mode */
784 switch (priv->current_ht_config.smps) {
785 case IEEE80211_SMPS_STATIC:
786 case IEEE80211_SMPS_DYNAMIC:
787 return IWL_NUM_IDLE_CHAINS_SINGLE;
Wey-Yi Guyb2ccccd2011-11-10 06:55:04 -0800788 case IEEE80211_SMPS_AUTOMATIC:
Johannes Berg5de33062010-09-22 18:01:58 +0200789 case IEEE80211_SMPS_OFF:
790 return active_cnt;
791 default:
792 WARN(1, "invalid SMPS mode %d",
793 priv->current_ht_config.smps);
794 return active_cnt;
795 }
796}
797
798/* up to 4 chains */
799static u8 iwl_count_chain_bitmap(u32 chain_bitmap)
800{
801 u8 res;
802 res = (chain_bitmap & BIT(0)) >> 0;
803 res += (chain_bitmap & BIT(1)) >> 1;
804 res += (chain_bitmap & BIT(2)) >> 2;
805 res += (chain_bitmap & BIT(3)) >> 3;
806 return res;
807}
808
809/**
810 * iwlagn_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
811 *
812 * Selects how many and which Rx receivers/antennas/chains to use.
813 * This should not be used for scan command ... it puts data in wrong place.
814 */
815void iwlagn_set_rxon_chain(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
816{
817 bool is_single = is_single_rx_stream(priv);
Don Fry47107e82012-03-15 13:27:06 -0700818 bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
Johannes Berg5de33062010-09-22 18:01:58 +0200819 u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
820 u32 active_chains;
821 u16 rx_chain;
822
823 /* Tell uCode which antennas are actually connected.
824 * Before first association, we assume all antennas are connected.
825 * Just after first association, iwl_chain_noise_calibration()
826 * checks which antennas actually *are* connected. */
827 if (priv->chain_noise_data.active_chains)
828 active_chains = priv->chain_noise_data.active_chains;
829 else
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200830 active_chains = priv->nvm_data->valid_rx_ant;
Johannes Berg5de33062010-09-22 18:01:58 +0200831
Johannes Berg0d8877a2013-05-17 10:36:29 +0200832 if (priv->lib->bt_params &&
833 priv->lib->bt_params->advanced_bt_coexist &&
Johannes Berg5de33062010-09-22 18:01:58 +0200834 (priv->bt_full_concurrent ||
835 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) {
836 /*
837 * only use chain 'A' in bt high traffic load or
838 * full concurrency mode
839 */
840 active_chains = first_antenna(active_chains);
841 }
842
843 rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
844
845 /* How many receivers should we use? */
846 active_rx_cnt = iwl_get_active_rx_chain_count(priv);
847 idle_rx_cnt = iwl_get_idle_rx_chain_count(priv, active_rx_cnt);
848
849
850 /* correct rx chain count according hw settings
851 * and chain noise calibration
852 */
853 valid_rx_cnt = iwl_count_chain_bitmap(active_chains);
854 if (valid_rx_cnt < active_rx_cnt)
855 active_rx_cnt = valid_rx_cnt;
856
857 if (valid_rx_cnt < idle_rx_cnt)
858 idle_rx_cnt = valid_rx_cnt;
859
860 rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
861 rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
862
863 ctx->staging.rx_chain = cpu_to_le16(rx_chain);
864
865 if (!is_single && (active_rx_cnt >= IWL_NUM_RX_CHAINS_SINGLE) && is_cam)
866 ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
867 else
868 ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
869
870 IWL_DEBUG_ASSOC(priv, "rx_chain=0x%X active=%d idle=%d\n",
871 ctx->staging.rx_chain,
872 active_rx_cnt, idle_rx_cnt);
873
874 WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
875 active_rx_cnt < idle_rx_cnt);
876}
Johannes Bergfacd9822010-09-22 18:02:05 +0200877
878u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant, u8 valid)
879{
880 int i;
881 u8 ind = ant;
882
883 if (priv->band == IEEE80211_BAND_2GHZ &&
884 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)
885 return 0;
886
887 for (i = 0; i < RATE_ANT_NUM - 1; i++) {
888 ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0;
889 if (valid & BIT(ind))
890 return ind;
891 }
892 return ant;
893}
Johannes Bergfed73292010-09-22 18:02:06 +0200894
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800895#ifdef CONFIG_PM_SLEEP
896static void iwlagn_convert_p1k(u16 *p1k, __le16 *out)
897{
898 int i;
899
900 for (i = 0; i < IWLAGN_P1K_SIZE; i++)
901 out[i] = cpu_to_le16(p1k[i]);
902}
903
904struct wowlan_key_data {
905 struct iwl_rxon_context *ctx;
906 struct iwlagn_wowlan_rsc_tsc_params_cmd *rsc_tsc;
907 struct iwlagn_wowlan_tkip_params_cmd *tkip;
908 const u8 *bssid;
909 bool error, use_rsc_tsc, use_tkip;
910};
911
912
913static void iwlagn_wowlan_program_keys(struct ieee80211_hw *hw,
914 struct ieee80211_vif *vif,
915 struct ieee80211_sta *sta,
916 struct ieee80211_key_conf *key,
917 void *_data)
918{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200919 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800920 struct wowlan_key_data *data = _data;
921 struct iwl_rxon_context *ctx = data->ctx;
922 struct aes_sc *aes_sc, *aes_tx_sc = NULL;
923 struct tkip_sc *tkip_sc, *tkip_tx_sc = NULL;
924 struct iwlagn_p1k_cache *rx_p1ks;
925 u8 *rx_mic_key;
926 struct ieee80211_key_seq seq;
927 u32 cur_rx_iv32 = 0;
928 u16 p1k[IWLAGN_P1K_SIZE];
929 int ret, i;
930
Johannes Bergb1eea292012-03-06 13:30:42 -0800931 mutex_lock(&priv->mutex);
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800932
933 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
934 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
935 !sta && !ctx->key_mapping_keys)
936 ret = iwl_set_default_wep_key(priv, ctx, key);
937 else
938 ret = iwl_set_dynamic_key(priv, ctx, key, sta);
939
940 if (ret) {
941 IWL_ERR(priv, "Error setting key during suspend!\n");
942 data->error = true;
943 }
944
945 switch (key->cipher) {
946 case WLAN_CIPHER_SUITE_TKIP:
947 if (sta) {
948 tkip_sc = data->rsc_tsc->all_tsc_rsc.tkip.unicast_rsc;
949 tkip_tx_sc = &data->rsc_tsc->all_tsc_rsc.tkip.tsc;
950
951 rx_p1ks = data->tkip->rx_uni;
952
953 ieee80211_get_key_tx_seq(key, &seq);
954 tkip_tx_sc->iv16 = cpu_to_le16(seq.tkip.iv16);
955 tkip_tx_sc->iv32 = cpu_to_le32(seq.tkip.iv32);
956
957 ieee80211_get_tkip_p1k_iv(key, seq.tkip.iv32, p1k);
958 iwlagn_convert_p1k(p1k, data->tkip->tx.p1k);
959
960 memcpy(data->tkip->mic_keys.tx,
961 &key->key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY],
962 IWLAGN_MIC_KEY_SIZE);
963
964 rx_mic_key = data->tkip->mic_keys.rx_unicast;
965 } else {
966 tkip_sc =
967 data->rsc_tsc->all_tsc_rsc.tkip.multicast_rsc;
968 rx_p1ks = data->tkip->rx_multi;
969 rx_mic_key = data->tkip->mic_keys.rx_mcast;
970 }
971
972 /*
973 * For non-QoS this relies on the fact that both the uCode and
974 * mac80211 use TID 0 (as they need to to avoid replay attacks)
975 * for checking the IV in the frames.
976 */
977 for (i = 0; i < IWLAGN_NUM_RSC; i++) {
978 ieee80211_get_key_rx_seq(key, i, &seq);
979 tkip_sc[i].iv16 = cpu_to_le16(seq.tkip.iv16);
980 tkip_sc[i].iv32 = cpu_to_le32(seq.tkip.iv32);
981 /* wrapping isn't allowed, AP must rekey */
982 if (seq.tkip.iv32 > cur_rx_iv32)
983 cur_rx_iv32 = seq.tkip.iv32;
984 }
985
986 ieee80211_get_tkip_rx_p1k(key, data->bssid, cur_rx_iv32, p1k);
987 iwlagn_convert_p1k(p1k, rx_p1ks[0].p1k);
988 ieee80211_get_tkip_rx_p1k(key, data->bssid,
989 cur_rx_iv32 + 1, p1k);
990 iwlagn_convert_p1k(p1k, rx_p1ks[1].p1k);
991
992 memcpy(rx_mic_key,
993 &key->key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY],
994 IWLAGN_MIC_KEY_SIZE);
995
996 data->use_tkip = true;
997 data->use_rsc_tsc = true;
998 break;
999 case WLAN_CIPHER_SUITE_CCMP:
1000 if (sta) {
1001 u8 *pn = seq.ccmp.pn;
1002
1003 aes_sc = data->rsc_tsc->all_tsc_rsc.aes.unicast_rsc;
1004 aes_tx_sc = &data->rsc_tsc->all_tsc_rsc.aes.tsc;
1005
1006 ieee80211_get_key_tx_seq(key, &seq);
1007 aes_tx_sc->pn = cpu_to_le64(
1008 (u64)pn[5] |
1009 ((u64)pn[4] << 8) |
1010 ((u64)pn[3] << 16) |
1011 ((u64)pn[2] << 24) |
1012 ((u64)pn[1] << 32) |
1013 ((u64)pn[0] << 40));
1014 } else
1015 aes_sc = data->rsc_tsc->all_tsc_rsc.aes.multicast_rsc;
1016
1017 /*
1018 * For non-QoS this relies on the fact that both the uCode and
1019 * mac80211 use TID 0 for checking the IV in the frames.
1020 */
1021 for (i = 0; i < IWLAGN_NUM_RSC; i++) {
1022 u8 *pn = seq.ccmp.pn;
1023
1024 ieee80211_get_key_rx_seq(key, i, &seq);
1025 aes_sc->pn = cpu_to_le64(
1026 (u64)pn[5] |
1027 ((u64)pn[4] << 8) |
1028 ((u64)pn[3] << 16) |
1029 ((u64)pn[2] << 24) |
1030 ((u64)pn[1] << 32) |
1031 ((u64)pn[0] << 40));
1032 }
1033 data->use_rsc_tsc = true;
1034 break;
1035 }
1036
Johannes Bergb1eea292012-03-06 13:30:42 -08001037 mutex_unlock(&priv->mutex);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001038}
1039
1040int iwlagn_send_patterns(struct iwl_priv *priv,
1041 struct cfg80211_wowlan *wowlan)
1042{
1043 struct iwlagn_wowlan_patterns_cmd *pattern_cmd;
1044 struct iwl_host_cmd cmd = {
1045 .id = REPLY_WOWLAN_PATTERNS,
1046 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
1047 .flags = CMD_SYNC,
1048 };
1049 int i, err;
1050
1051 if (!wowlan->n_patterns)
1052 return 0;
1053
1054 cmd.len[0] = sizeof(*pattern_cmd) +
1055 wowlan->n_patterns * sizeof(struct iwlagn_wowlan_pattern);
1056
1057 pattern_cmd = kmalloc(cmd.len[0], GFP_KERNEL);
1058 if (!pattern_cmd)
1059 return -ENOMEM;
1060
1061 pattern_cmd->n_patterns = cpu_to_le32(wowlan->n_patterns);
1062
1063 for (i = 0; i < wowlan->n_patterns; i++) {
1064 int mask_len = DIV_ROUND_UP(wowlan->patterns[i].pattern_len, 8);
1065
1066 memcpy(&pattern_cmd->patterns[i].mask,
1067 wowlan->patterns[i].mask, mask_len);
1068 memcpy(&pattern_cmd->patterns[i].pattern,
1069 wowlan->patterns[i].pattern,
1070 wowlan->patterns[i].pattern_len);
1071 pattern_cmd->patterns[i].mask_size = mask_len;
1072 pattern_cmd->patterns[i].pattern_size =
1073 wowlan->patterns[i].pattern_len;
1074 }
1075
1076 cmd.data[0] = pattern_cmd;
Johannes Berge10a0532012-03-06 13:30:39 -08001077 err = iwl_dvm_send_cmd(priv, &cmd);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001078 kfree(pattern_cmd);
1079 return err;
1080}
1081
Johannes Bergea886a62012-03-07 09:52:15 -08001082int iwlagn_suspend(struct iwl_priv *priv, struct cfg80211_wowlan *wowlan)
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001083{
1084 struct iwlagn_wowlan_wakeup_filter_cmd wakeup_filter_cmd;
1085 struct iwl_rxon_cmd rxon;
1086 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
1087 struct iwlagn_wowlan_kek_kck_material_cmd kek_kck_cmd;
1088 struct iwlagn_wowlan_tkip_params_cmd tkip_cmd = {};
Johannes Bergc9204872013-02-15 11:00:58 +01001089 struct iwlagn_d3_config_cmd d3_cfg_cmd = {
1090 /*
1091 * Program the minimum sleep time to 10 seconds, as many
1092 * platforms have issues processing a wakeup signal while
1093 * still being in the process of suspending.
1094 */
1095 .min_sleep_time = cpu_to_le32(10 * 1000 * 1000),
1096 };
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001097 struct wowlan_key_data key_data = {
1098 .ctx = ctx,
1099 .bssid = ctx->active.bssid_addr,
1100 .use_rsc_tsc = false,
1101 .tkip = &tkip_cmd,
1102 .use_tkip = false,
1103 };
1104 int ret, i;
1105 u16 seq;
1106
1107 key_data.rsc_tsc = kzalloc(sizeof(*key_data.rsc_tsc), GFP_KERNEL);
1108 if (!key_data.rsc_tsc)
1109 return -ENOMEM;
1110
1111 memset(&wakeup_filter_cmd, 0, sizeof(wakeup_filter_cmd));
1112
1113 /*
1114 * We know the last used seqno, and the uCode expects to know that
1115 * one, it will increment before TX.
1116 */
1117 seq = le16_to_cpu(priv->last_seq_ctl) & IEEE80211_SCTL_SEQ;
1118 wakeup_filter_cmd.non_qos_seq = cpu_to_le16(seq);
1119
1120 /*
1121 * For QoS counters, we store the one to use next, so subtract 0x10
1122 * since the uCode will add 0x10 before using the value.
1123 */
Johannes Berge0467a32011-12-02 12:24:45 -08001124 for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
Emmanuel Grumbach04cf6822011-11-23 11:06:12 +02001125 seq = priv->tid_data[IWL_AP_ID][i].seq_number;
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001126 seq -= 0x10;
1127 wakeup_filter_cmd.qos_seq[i] = cpu_to_le16(seq);
1128 }
1129
1130 if (wowlan->disconnect)
1131 wakeup_filter_cmd.enabled |=
1132 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_BEACON_MISS |
1133 IWLAGN_WOWLAN_WAKEUP_LINK_CHANGE);
1134 if (wowlan->magic_pkt)
1135 wakeup_filter_cmd.enabled |=
1136 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_MAGIC_PACKET);
1137 if (wowlan->gtk_rekey_failure)
1138 wakeup_filter_cmd.enabled |=
1139 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_GTK_REKEY_FAIL);
1140 if (wowlan->eap_identity_req)
1141 wakeup_filter_cmd.enabled |=
1142 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_EAP_IDENT_REQ);
1143 if (wowlan->four_way_handshake)
1144 wakeup_filter_cmd.enabled |=
1145 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_4WAY_HANDSHAKE);
1146 if (wowlan->n_patterns)
1147 wakeup_filter_cmd.enabled |=
1148 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_PATTERN_MATCH);
1149
1150 if (wowlan->rfkill_release)
1151 d3_cfg_cmd.wakeup_flags |=
1152 cpu_to_le32(IWLAGN_D3_WAKEUP_RFKILL);
1153
1154 iwl_scan_cancel_timeout(priv, 200);
1155
1156 memcpy(&rxon, &ctx->active, sizeof(rxon));
1157
David Spinadel8f7ffbe2012-03-10 13:00:10 -08001158 priv->ucode_loaded = false;
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -07001159 iwl_trans_stop_device(priv->trans);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001160
Johannes Berg15b86bf2012-03-05 11:24:36 -08001161 priv->wowlan = true;
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001162
Johannes Berge1991882012-03-06 13:30:36 -08001163 ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_WOWLAN);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001164 if (ret)
1165 goto out;
1166
1167 /* now configure WoWLAN ucode */
1168 ret = iwl_alive_start(priv);
1169 if (ret)
1170 goto out;
1171
1172 memcpy(&ctx->staging, &rxon, sizeof(rxon));
1173 ret = iwlagn_commit_rxon(priv, ctx);
1174 if (ret)
1175 goto out;
1176
1177 ret = iwl_power_update_mode(priv, true);
1178 if (ret)
1179 goto out;
1180
Johannes Berg65de7e82012-04-17 07:36:30 -07001181 if (!iwlwifi_mod_params.sw_crypto) {
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001182 /* mark all keys clear */
1183 priv->ucode_key_table = 0;
1184 ctx->key_mapping_keys = 0;
1185
1186 /*
1187 * This needs to be unlocked due to lock ordering
1188 * constraints. Since we're in the suspend path
1189 * that isn't really a problem though.
1190 */
Johannes Bergb1eea292012-03-06 13:30:42 -08001191 mutex_unlock(&priv->mutex);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001192 ieee80211_iter_keys(priv->hw, ctx->vif,
1193 iwlagn_wowlan_program_keys,
1194 &key_data);
Johannes Bergb1eea292012-03-06 13:30:42 -08001195 mutex_lock(&priv->mutex);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001196 if (key_data.error) {
1197 ret = -EIO;
1198 goto out;
1199 }
1200
1201 if (key_data.use_rsc_tsc) {
1202 struct iwl_host_cmd rsc_tsc_cmd = {
1203 .id = REPLY_WOWLAN_TSC_RSC_PARAMS,
1204 .flags = CMD_SYNC,
1205 .data[0] = key_data.rsc_tsc,
1206 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
Johannes Berg182ada12012-03-04 08:31:35 -08001207 .len[0] = sizeof(*key_data.rsc_tsc),
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001208 };
1209
Johannes Berge10a0532012-03-06 13:30:39 -08001210 ret = iwl_dvm_send_cmd(priv, &rsc_tsc_cmd);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001211 if (ret)
1212 goto out;
1213 }
1214
1215 if (key_data.use_tkip) {
Johannes Berge10a0532012-03-06 13:30:39 -08001216 ret = iwl_dvm_send_cmd_pdu(priv,
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001217 REPLY_WOWLAN_TKIP_PARAMS,
1218 CMD_SYNC, sizeof(tkip_cmd),
1219 &tkip_cmd);
1220 if (ret)
1221 goto out;
1222 }
1223
1224 if (priv->have_rekey_data) {
1225 memset(&kek_kck_cmd, 0, sizeof(kek_kck_cmd));
1226 memcpy(kek_kck_cmd.kck, priv->kck, NL80211_KCK_LEN);
1227 kek_kck_cmd.kck_len = cpu_to_le16(NL80211_KCK_LEN);
1228 memcpy(kek_kck_cmd.kek, priv->kek, NL80211_KEK_LEN);
1229 kek_kck_cmd.kek_len = cpu_to_le16(NL80211_KEK_LEN);
1230 kek_kck_cmd.replay_ctr = priv->replay_ctr;
1231
Johannes Berge10a0532012-03-06 13:30:39 -08001232 ret = iwl_dvm_send_cmd_pdu(priv,
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001233 REPLY_WOWLAN_KEK_KCK_MATERIAL,
1234 CMD_SYNC, sizeof(kek_kck_cmd),
1235 &kek_kck_cmd);
1236 if (ret)
1237 goto out;
1238 }
1239 }
1240
Johannes Berge10a0532012-03-06 13:30:39 -08001241 ret = iwl_dvm_send_cmd_pdu(priv, REPLY_D3_CONFIG, CMD_SYNC,
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001242 sizeof(d3_cfg_cmd), &d3_cfg_cmd);
1243 if (ret)
1244 goto out;
1245
Johannes Berge10a0532012-03-06 13:30:39 -08001246 ret = iwl_dvm_send_cmd_pdu(priv, REPLY_WOWLAN_WAKEUP_FILTER,
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001247 CMD_SYNC, sizeof(wakeup_filter_cmd),
1248 &wakeup_filter_cmd);
1249 if (ret)
1250 goto out;
1251
1252 ret = iwlagn_send_patterns(priv, wowlan);
1253 out:
1254 kfree(key_data.rsc_tsc);
1255 return ret;
1256}
1257#endif
Johannes Berge10a0532012-03-06 13:30:39 -08001258
1259int iwl_dvm_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
1260{
Don Fry83626402012-03-07 09:52:37 -08001261 if (iwl_is_rfkill(priv) || iwl_is_ctkill(priv)) {
Johannes Berg721c32f2012-03-06 13:30:40 -08001262 IWL_WARN(priv, "Not sending command - %s KILL\n",
Don Fry83626402012-03-07 09:52:37 -08001263 iwl_is_rfkill(priv) ? "RF" : "CT");
Johannes Berg721c32f2012-03-06 13:30:40 -08001264 return -EIO;
1265 }
1266
Don Fry17acd0b2012-03-15 13:27:05 -07001267 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
1268 IWL_ERR(priv, "Command %s failed: FW Error\n",
Johannes Bergd9fb6462012-03-26 08:23:39 -07001269 iwl_dvm_get_cmd_string(cmd->id));
Don Fry17acd0b2012-03-15 13:27:05 -07001270 return -EIO;
1271 }
1272
Johannes Berg2cc39c92012-03-06 13:30:41 -08001273 /*
Emmanuel Grumbach2d5d50e2013-01-31 15:03:55 +02001274 * This can happen upon FW ASSERT: we clear the STATUS_FW_ERROR flag
1275 * in iwl_down but cancel the workers only later.
1276 */
1277 if (!priv->ucode_loaded) {
1278 IWL_ERR(priv, "Fw not loaded - dropping CMD: %x\n", cmd->id);
1279 return -EIO;
1280 }
1281
1282 /*
Johannes Berg2cc39c92012-03-06 13:30:41 -08001283 * Synchronous commands from this op-mode must hold
1284 * the mutex, this ensures we don't try to send two
1285 * (or more) synchronous commands at a time.
1286 */
Dan Carpenterf6096072012-06-10 14:25:22 +03001287 if (!(cmd->flags & CMD_ASYNC))
Johannes Bergb1eea292012-03-06 13:30:42 -08001288 lockdep_assert_held(&priv->mutex);
Johannes Berg2cc39c92012-03-06 13:30:41 -08001289
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -07001290 return iwl_trans_send_cmd(priv->trans, cmd);
Johannes Berge10a0532012-03-06 13:30:39 -08001291}
1292
1293int iwl_dvm_send_cmd_pdu(struct iwl_priv *priv, u8 id,
1294 u32 flags, u16 len, const void *data)
1295{
1296 struct iwl_host_cmd cmd = {
1297 .id = id,
1298 .len = { len, },
1299 .data = { data, },
1300 .flags = flags,
1301 };
1302
1303 return iwl_dvm_send_cmd(priv, &cmd);
1304}