blob: ac483eb2c69dc8ce7a68a34e9a3f273e36d9c754 [file] [log] [blame]
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -07001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
Wey-Yi Guyfb4961d2012-01-06 13:16:33 -08005 * Copyright(c) 2008 - 2012 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"
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070036#include "iwl-io.h"
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070037#include "iwl-agn-hw.h"
38#include "iwl-agn.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070039#include "iwl-trans.h"
Johannes Berg65de7e82012-04-17 07:36:30 -070040#include "iwl-modparams.h"
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070041
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070042int iwlagn_hw_valid_rtc_data_addr(u32 addr)
43{
44 return (addr >= IWLAGN_RTC_DATA_LOWER_BOUND) &&
45 (addr < IWLAGN_RTC_DATA_UPPER_BOUND);
46}
47
48int iwlagn_send_tx_power(struct iwl_priv *priv)
49{
Wey-Yi Guyab63c682010-09-20 09:12:31 -070050 struct iwlagn_tx_power_dbm_cmd tx_power_cmd;
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070051 u8 tx_ant_cfg_cmd;
52
Don Fry83626402012-03-07 09:52:37 -080053 if (WARN_ONCE(test_bit(STATUS_SCAN_HW, &priv->status),
Stanislaw Gruszka4beeba72010-10-25 10:34:50 +020054 "TX Power requested while scanning!\n"))
55 return -EAGAIN;
56
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070057 /* half dBm need to multiply */
58 tx_power_cmd.global_lmt = (s8)(2 * priv->tx_power_user_lmt);
59
60 if (priv->tx_power_lmt_in_half_dbm &&
61 priv->tx_power_lmt_in_half_dbm < tx_power_cmd.global_lmt) {
62 /*
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 */
73 tx_power_cmd.global_lmt = priv->tx_power_lmt_in_half_dbm;
74 }
Wey-Yi Guyab63c682010-09-20 09:12:31 -070075 tx_power_cmd.flags = IWLAGN_TX_POWER_NO_CLOSED;
76 tx_power_cmd.srv_chan_lmt = IWLAGN_TX_POWER_AUTO;
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070077
Johannes Berg0692fe42012-03-06 13:30:37 -080078 if (IWL_UCODE_API(priv->fw->ucode_ver) == 1)
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070079 tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD_V1;
80 else
81 tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD;
82
Johannes Berge10a0532012-03-06 13:30:39 -080083 return iwl_dvm_send_cmd_pdu(priv, tx_ant_cfg_cmd, CMD_SYNC,
Emmanuel Grumbache419d622011-07-08 08:46:14 -070084 sizeof(tx_power_cmd), &tx_power_cmd);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070085}
86
87void iwlagn_temperature(struct iwl_priv *priv)
88{
Johannes Berg4ff70fc2012-03-05 11:24:26 -080089 lockdep_assert_held(&priv->statistics.lock);
90
Fry, Donald Hf8f79a52011-02-25 09:44:48 -080091 /* store temperature from correct statistics (in Celsius) */
Johannes Berg0da0e5b2011-04-08 08:14:56 -070092 priv->temperature = le32_to_cpu(priv->statistics.common.temperature);
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -070093 iwl_tt_handler(priv);
94}
95
Wey-Yi Guy8d801082010-03-17 13:34:36 -070096int iwlagn_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band)
97{
98 int idx = 0;
99 int band_offset = 0;
100
101 /* HT rate format: mac80211 wants an MCS number, which is just LSB */
102 if (rate_n_flags & RATE_MCS_HT_MSK) {
103 idx = (rate_n_flags & 0xff);
104 return idx;
105 /* Legacy rate format, search for match in table */
106 } else {
107 if (band == IEEE80211_BAND_5GHZ)
108 band_offset = IWL_FIRST_OFDM_RATE;
109 for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++)
110 if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
111 return idx - band_offset;
112 }
113
114 return -1;
115}
116
Johannes Berg1fa61b22010-04-28 08:44:52 -0700117int iwlagn_manage_ibss_station(struct iwl_priv *priv,
118 struct ieee80211_vif *vif, bool add)
119{
Johannes Bergfd1af152010-04-30 11:30:43 -0700120 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
121
Johannes Berg1fa61b22010-04-28 08:44:52 -0700122 if (add)
Johannes Berga30e3112010-09-22 18:02:01 +0200123 return iwlagn_add_bssid_station(priv, vif_priv->ctx,
124 vif->bss_conf.bssid,
125 &vif_priv->ibss_bssid_sta_id);
Johannes Bergfd1af152010-04-30 11:30:43 -0700126 return iwl_remove_station(priv, vif_priv->ibss_bssid_sta_id,
127 vif->bss_conf.bssid);
Johannes Berg1fa61b22010-04-28 08:44:52 -0700128}
Johannes Berg1ff504e2010-05-03 01:22:42 -0700129
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700130/**
131 * iwlagn_txfifo_flush: send REPLY_TXFIFO_FLUSH command to uCode
132 *
133 * pre-requirements:
134 * 1. acquire mutex before calling
135 * 2. make sure rf is on and not in exit state
136 */
137int iwlagn_txfifo_flush(struct iwl_priv *priv, u16 flush_control)
138{
139 struct iwl_txfifo_flush_cmd flush_cmd;
140 struct iwl_host_cmd cmd = {
141 .id = REPLY_TXFIFO_FLUSH,
Johannes Berg3fa50732011-05-04 07:50:38 -0700142 .len = { sizeof(struct iwl_txfifo_flush_cmd), },
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700143 .flags = CMD_SYNC,
Johannes Berg3fa50732011-05-04 07:50:38 -0700144 .data = { &flush_cmd, },
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700145 };
146
147 might_sleep();
148
149 memset(&flush_cmd, 0, sizeof(flush_cmd));
Wey-Yi Guyecdbe862011-06-08 09:57:26 -0700150 if (flush_control & BIT(IWL_RXON_CTX_BSS))
151 flush_cmd.fifo_control = IWL_SCD_VO_MSK | IWL_SCD_VI_MSK |
Wey-Yi Guyf88e0ec2011-06-08 09:57:25 -0700152 IWL_SCD_BE_MSK | IWL_SCD_BK_MSK |
153 IWL_SCD_MGMT_MSK;
Wey-Yi Guyecdbe862011-06-08 09:57:26 -0700154 if ((flush_control & BIT(IWL_RXON_CTX_PAN)) &&
Johannes Berga18f61b2012-03-15 13:26:53 -0700155 (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS)))
Wey-Yi Guyf88e0ec2011-06-08 09:57:25 -0700156 flush_cmd.fifo_control |= IWL_PAN_SCD_VO_MSK |
157 IWL_PAN_SCD_VI_MSK | IWL_PAN_SCD_BE_MSK |
158 IWL_PAN_SCD_BK_MSK | IWL_PAN_SCD_MGMT_MSK |
159 IWL_PAN_SCD_MULTICAST_MSK;
160
Johannes Berg9e295112012-04-09 17:46:55 -0700161 if (priv->hw_params.sku & EEPROM_SKU_CAP_11N_ENABLE)
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700162 flush_cmd.fifo_control |= IWL_AGG_TX_QUEUE_MSK;
163
164 IWL_DEBUG_INFO(priv, "fifo queue control: 0X%x\n",
165 flush_cmd.fifo_control);
166 flush_cmd.flush_control = cpu_to_le16(flush_control);
167
Johannes Berge10a0532012-03-06 13:30:39 -0800168 return iwl_dvm_send_cmd(priv, &cmd);
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700169}
Wey-Yi Guy65550632010-06-24 13:18:35 -0700170
171void iwlagn_dev_txfifo_flush(struct iwl_priv *priv, u16 flush_control)
172{
Johannes Bergb1eea292012-03-06 13:30:42 -0800173 mutex_lock(&priv->mutex);
Wey-Yi Guy65550632010-06-24 13:18:35 -0700174 ieee80211_stop_queues(priv->hw);
Wey-Yi Guyc68744f2011-06-18 08:03:18 -0700175 if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) {
Wey-Yi Guy65550632010-06-24 13:18:35 -0700176 IWL_ERR(priv, "flush request fail\n");
177 goto done;
178 }
179 IWL_DEBUG_INFO(priv, "wait transmit/flush all frames\n");
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700180 iwl_trans_wait_tx_queue_empty(priv->trans);
Wey-Yi Guy65550632010-06-24 13:18:35 -0700181done:
182 ieee80211_wake_queues(priv->hw);
Johannes Bergb1eea292012-03-06 13:30:42 -0800183 mutex_unlock(&priv->mutex);
Wey-Yi Guy65550632010-06-24 13:18:35 -0700184}
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700185
186/*
187 * BT coex
188 */
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700189static const __le32 iwlagn_def_3w_lookup[12] = {
190 cpu_to_le32(0xaaaaaaaa),
191 cpu_to_le32(0xaaaaaaaa),
192 cpu_to_le32(0xaeaaaaaa),
193 cpu_to_le32(0xaaaaaaaa),
194 cpu_to_le32(0xcc00ff28),
195 cpu_to_le32(0x0000aaaa),
196 cpu_to_le32(0xcc00aaaa),
197 cpu_to_le32(0x0000aaaa),
198 cpu_to_le32(0xc0004000),
199 cpu_to_le32(0x00004000),
200 cpu_to_le32(0xf0005000),
Wey-Yi Guy9a67d762010-11-18 10:40:03 -0800201 cpu_to_le32(0xf0005000),
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700202};
203
204static const __le32 iwlagn_concurrent_lookup[12] = {
205 cpu_to_le32(0xaaaaaaaa),
206 cpu_to_le32(0xaaaaaaaa),
207 cpu_to_le32(0xaaaaaaaa),
208 cpu_to_le32(0xaaaaaaaa),
209 cpu_to_le32(0xaaaaaaaa),
210 cpu_to_le32(0xaaaaaaaa),
211 cpu_to_le32(0xaaaaaaaa),
212 cpu_to_le32(0xaaaaaaaa),
213 cpu_to_le32(0x00000000),
214 cpu_to_le32(0x00000000),
215 cpu_to_le32(0x00000000),
216 cpu_to_le32(0x00000000),
217};
218
219void iwlagn_send_advance_bt_config(struct iwl_priv *priv)
220{
Wey-Yi Guy60132702011-02-18 17:23:54 -0800221 struct iwl_basic_bt_cmd basic = {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700222 .max_kill = IWLAGN_BT_MAX_KILL_DEFAULT,
223 .bt3_timer_t7_value = IWLAGN_BT3_T7_DEFAULT,
224 .bt3_prio_sample_time = IWLAGN_BT3_PRIO_SAMPLE_DEFAULT,
225 .bt3_timer_t2_value = IWLAGN_BT3_T2_DEFAULT,
226 };
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800227 struct iwl_bt_cmd_v1 bt_cmd_v1;
228 struct iwl_bt_cmd_v2 bt_cmd_v2;
Wey-Yi Guy60132702011-02-18 17:23:54 -0800229 int ret;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700230
231 BUILD_BUG_ON(sizeof(iwlagn_def_3w_lookup) !=
Wey-Yi Guy60132702011-02-18 17:23:54 -0800232 sizeof(basic.bt3_lookup_table));
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700233
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200234 if (priv->cfg->bt_params) {
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800235 /*
236 * newer generation of devices (2000 series and newer)
237 * use the version 2 of the bt command
238 * we need to make sure sending the host command
239 * with correct data structure to avoid uCode assert
240 */
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200241 if (priv->cfg->bt_params->bt_session_2) {
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800242 bt_cmd_v2.prio_boost = cpu_to_le32(
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200243 priv->cfg->bt_params->bt_prio_boost);
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800244 bt_cmd_v2.tx_prio_boost = 0;
245 bt_cmd_v2.rx_prio_boost = 0;
Wey-Yi Guy60132702011-02-18 17:23:54 -0800246 } else {
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800247 bt_cmd_v1.prio_boost =
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200248 priv->cfg->bt_params->bt_prio_boost;
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800249 bt_cmd_v1.tx_prio_boost = 0;
250 bt_cmd_v1.rx_prio_boost = 0;
Wey-Yi Guy60132702011-02-18 17:23:54 -0800251 }
252 } else {
253 IWL_ERR(priv, "failed to construct BT Coex Config\n");
254 return;
255 }
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800256
Wey-Yi Guy60132702011-02-18 17:23:54 -0800257 basic.kill_ack_mask = priv->kill_ack_mask;
258 basic.kill_cts_mask = priv->kill_cts_mask;
Wey-Yi Guy310fbfd2012-04-19 09:49:44 -0700259 basic.reduce_txpower = priv->reduced_txpower;
Wey-Yi Guy60132702011-02-18 17:23:54 -0800260 basic.valid = priv->bt_valid;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700261
262 /*
263 * Configure BT coex mode to "no coexistence" when the
264 * user disabled BT coexistence, we have no interface
265 * (might be in monitor mode), or the interface is in
266 * IBSS mode (no proper uCode support for coex then).
267 */
Johannes Berg65de7e82012-04-17 07:36:30 -0700268 if (!iwlwifi_mod_params.bt_coex_active ||
Wey-Yi Guyb60eec92011-06-03 13:52:38 -0700269 priv->iw_mode == NL80211_IFTYPE_ADHOC) {
Wey-Yi Guy60132702011-02-18 17:23:54 -0800270 basic.flags = IWLAGN_BT_FLAG_COEX_MODE_DISABLED;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700271 } else {
Wey-Yi Guy60132702011-02-18 17:23:54 -0800272 basic.flags = IWLAGN_BT_FLAG_COEX_MODE_3W <<
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700273 IWLAGN_BT_FLAG_COEX_MODE_SHIFT;
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700274
275 if (!priv->bt_enable_pspoll)
Wey-Yi Guy60132702011-02-18 17:23:54 -0800276 basic.flags |= IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE;
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700277 else
278 basic.flags &= ~IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE;
Wey-Yi Guye3661762010-11-23 10:58:54 -0800279
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700280 if (priv->bt_ch_announce)
Wey-Yi Guy60132702011-02-18 17:23:54 -0800281 basic.flags |= IWLAGN_BT_FLAG_CHANNEL_INHIBITION;
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700282 IWL_DEBUG_COEX(priv, "BT coex flag: 0X%x\n", basic.flags);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700283 }
Wey-Yi Guy60132702011-02-18 17:23:54 -0800284 priv->bt_enable_flag = basic.flags;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700285 if (priv->bt_full_concurrent)
Wey-Yi Guy60132702011-02-18 17:23:54 -0800286 memcpy(basic.bt3_lookup_table, iwlagn_concurrent_lookup,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700287 sizeof(iwlagn_concurrent_lookup));
288 else
Wey-Yi Guy60132702011-02-18 17:23:54 -0800289 memcpy(basic.bt3_lookup_table, iwlagn_def_3w_lookup,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700290 sizeof(iwlagn_def_3w_lookup));
291
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700292 IWL_DEBUG_COEX(priv, "BT coex %s in %s mode\n",
Wey-Yi Guy60132702011-02-18 17:23:54 -0800293 basic.flags ? "active" : "disabled",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700294 priv->bt_full_concurrent ?
295 "full concurrency" : "3-wire");
296
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200297 if (priv->cfg->bt_params->bt_session_2) {
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800298 memcpy(&bt_cmd_v2.basic, &basic,
Wey-Yi Guy60132702011-02-18 17:23:54 -0800299 sizeof(basic));
Johannes Berge10a0532012-03-06 13:30:39 -0800300 ret = iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800301 CMD_SYNC, sizeof(bt_cmd_v2), &bt_cmd_v2);
Wey-Yi Guy60132702011-02-18 17:23:54 -0800302 } else {
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800303 memcpy(&bt_cmd_v1.basic, &basic,
Wey-Yi Guy60132702011-02-18 17:23:54 -0800304 sizeof(basic));
Johannes Berge10a0532012-03-06 13:30:39 -0800305 ret = iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Wey-Yi Guy8347deb2012-03-09 07:15:04 -0800306 CMD_SYNC, sizeof(bt_cmd_v1), &bt_cmd_v1);
Wey-Yi Guy60132702011-02-18 17:23:54 -0800307 }
308 if (ret)
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700309 IWL_ERR(priv, "failed to send BT Coex Config\n");
310
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700311}
312
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700313void iwlagn_bt_adjust_rssi_monitor(struct iwl_priv *priv, bool rssi_ena)
314{
315 struct iwl_rxon_context *ctx, *found_ctx = NULL;
316 bool found_ap = false;
317
Johannes Bergb1eea292012-03-06 13:30:42 -0800318 lockdep_assert_held(&priv->mutex);
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700319
320 /* Check whether AP or GO mode is active. */
321 if (rssi_ena) {
322 for_each_context(priv, ctx) {
323 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_AP &&
324 iwl_is_associated_ctx(ctx)) {
325 found_ap = true;
326 break;
327 }
328 }
329 }
330
331 /*
332 * If disable was received or If GO/AP mode, disable RSSI
333 * measurements.
334 */
335 if (!rssi_ena || found_ap) {
336 if (priv->cur_rssi_ctx) {
337 ctx = priv->cur_rssi_ctx;
338 ieee80211_disable_rssi_reports(ctx->vif);
339 priv->cur_rssi_ctx = NULL;
340 }
341 return;
342 }
343
344 /*
345 * If rssi measurements need to be enabled, consider all cases now.
346 * Figure out how many contexts are active.
347 */
348 for_each_context(priv, ctx) {
349 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION &&
350 iwl_is_associated_ctx(ctx)) {
351 found_ctx = ctx;
352 break;
353 }
354 }
355
356 /*
357 * rssi monitor already enabled for the correct interface...nothing
358 * to do.
359 */
360 if (found_ctx == priv->cur_rssi_ctx)
361 return;
362
363 /*
364 * Figure out if rssi monitor is currently enabled, and needs
365 * to be changed. If rssi monitor is already enabled, disable
366 * it first else just enable rssi measurements on the
367 * interface found above.
368 */
369 if (priv->cur_rssi_ctx) {
370 ctx = priv->cur_rssi_ctx;
371 if (ctx->vif)
372 ieee80211_disable_rssi_reports(ctx->vif);
373 }
374
375 priv->cur_rssi_ctx = found_ctx;
376
377 if (!found_ctx)
378 return;
379
380 ieee80211_enable_rssi_reports(found_ctx->vif,
381 IWLAGN_BT_PSP_MIN_RSSI_THRESHOLD,
382 IWLAGN_BT_PSP_MAX_RSSI_THRESHOLD);
383}
384
385static bool iwlagn_bt_traffic_is_sco(struct iwl_bt_uart_msg *uart_msg)
386{
387 return BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3 >>
388 BT_UART_MSG_FRAME3SCOESCO_POS;
389}
390
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700391static void iwlagn_bt_traffic_change_work(struct work_struct *work)
392{
393 struct iwl_priv *priv =
394 container_of(work, struct iwl_priv, bt_traffic_change_work);
Johannes Berg8bd413e2010-08-23 10:46:40 +0200395 struct iwl_rxon_context *ctx;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700396 int smps_request = -1;
397
Wey-Yi Guyc4197c62011-02-06 08:56:35 -0800398 if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) {
399 /* bt coex disabled */
400 return;
401 }
402
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200403 /*
404 * Note: bt_traffic_load can be overridden by scan complete and
405 * coex profile notifications. Ignore that since only bad consequence
406 * can be not matching debug print with actual state.
407 */
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700408 IWL_DEBUG_COEX(priv, "BT traffic load changes: %d\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700409 priv->bt_traffic_load);
410
411 switch (priv->bt_traffic_load) {
412 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
Wey-Yi Guyf5682c02010-10-23 09:15:44 -0700413 if (priv->bt_status)
414 smps_request = IEEE80211_SMPS_DYNAMIC;
415 else
416 smps_request = IEEE80211_SMPS_AUTOMATIC;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700417 break;
418 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
419 smps_request = IEEE80211_SMPS_DYNAMIC;
420 break;
421 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
422 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
423 smps_request = IEEE80211_SMPS_STATIC;
424 break;
425 default:
426 IWL_ERR(priv, "Invalid BT traffic load: %d\n",
427 priv->bt_traffic_load);
428 break;
429 }
430
Johannes Bergb1eea292012-03-06 13:30:42 -0800431 mutex_lock(&priv->mutex);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700432
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200433 /*
434 * We can not send command to firmware while scanning. When the scan
435 * complete we will schedule this work again. We do check with mutex
436 * locked to prevent new scan request to arrive. We do not check
437 * STATUS_SCANNING to avoid race when queue_work two times from
438 * different notifications, but quit and not perform any work at all.
439 */
Don Fry83626402012-03-07 09:52:37 -0800440 if (test_bit(STATUS_SCAN_HW, &priv->status))
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200441 goto out;
442
Fry, Donald H6b6db912011-07-08 08:46:17 -0700443 iwl_update_chain_flags(priv);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700444
Johannes Berg8bd413e2010-08-23 10:46:40 +0200445 if (smps_request != -1) {
Wey-Yi Guy88e9ba72011-06-03 07:54:12 -0700446 priv->current_ht_config.smps = smps_request;
Johannes Berg8bd413e2010-08-23 10:46:40 +0200447 for_each_context(priv, ctx) {
448 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION)
449 ieee80211_request_smps(ctx->vif, smps_request);
450 }
451 }
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700452
453 /*
454 * Dynamic PS poll related functionality. Adjust RSSI measurements if
455 * necessary.
456 */
457 iwlagn_bt_coex_rssi_monitor(priv);
Stanislaw Gruszka5eda74a2010-10-22 17:04:28 +0200458out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800459 mutex_unlock(&priv->mutex);
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700460}
461
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700462/*
463 * If BT sco traffic, and RSSI monitor is enabled, move measurements to the
464 * correct interface or disable it if this is the last interface to be
465 * removed.
466 */
467void iwlagn_bt_coex_rssi_monitor(struct iwl_priv *priv)
468{
469 if (priv->bt_is_sco &&
470 priv->bt_traffic_load == IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS)
471 iwlagn_bt_adjust_rssi_monitor(priv, true);
472 else
473 iwlagn_bt_adjust_rssi_monitor(priv, false);
474}
475
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700476static void iwlagn_print_uartmsg(struct iwl_priv *priv,
477 struct iwl_bt_uart_msg *uart_msg)
478{
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700479 IWL_DEBUG_COEX(priv, "Message Type = 0x%X, SSN = 0x%X, "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700480 "Update Req = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700481 (BT_UART_MSG_FRAME1MSGTYPE_MSK & uart_msg->frame1) >>
482 BT_UART_MSG_FRAME1MSGTYPE_POS,
483 (BT_UART_MSG_FRAME1SSN_MSK & uart_msg->frame1) >>
484 BT_UART_MSG_FRAME1SSN_POS,
485 (BT_UART_MSG_FRAME1UPDATEREQ_MSK & uart_msg->frame1) >>
486 BT_UART_MSG_FRAME1UPDATEREQ_POS);
487
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700488 IWL_DEBUG_COEX(priv, "Open connections = 0x%X, Traffic load = 0x%X, "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700489 "Chl_SeqN = 0x%X, In band = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700490 (BT_UART_MSG_FRAME2OPENCONNECTIONS_MSK & uart_msg->frame2) >>
491 BT_UART_MSG_FRAME2OPENCONNECTIONS_POS,
492 (BT_UART_MSG_FRAME2TRAFFICLOAD_MSK & uart_msg->frame2) >>
493 BT_UART_MSG_FRAME2TRAFFICLOAD_POS,
494 (BT_UART_MSG_FRAME2CHLSEQN_MSK & uart_msg->frame2) >>
495 BT_UART_MSG_FRAME2CHLSEQN_POS,
496 (BT_UART_MSG_FRAME2INBAND_MSK & uart_msg->frame2) >>
497 BT_UART_MSG_FRAME2INBAND_POS);
498
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700499 IWL_DEBUG_COEX(priv, "SCO/eSCO = 0x%X, Sniff = 0x%X, A2DP = 0x%X, "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700500 "ACL = 0x%X, Master = 0x%X, OBEX = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700501 (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3) >>
502 BT_UART_MSG_FRAME3SCOESCO_POS,
503 (BT_UART_MSG_FRAME3SNIFF_MSK & uart_msg->frame3) >>
504 BT_UART_MSG_FRAME3SNIFF_POS,
505 (BT_UART_MSG_FRAME3A2DP_MSK & uart_msg->frame3) >>
506 BT_UART_MSG_FRAME3A2DP_POS,
507 (BT_UART_MSG_FRAME3ACL_MSK & uart_msg->frame3) >>
508 BT_UART_MSG_FRAME3ACL_POS,
509 (BT_UART_MSG_FRAME3MASTER_MSK & uart_msg->frame3) >>
510 BT_UART_MSG_FRAME3MASTER_POS,
511 (BT_UART_MSG_FRAME3OBEX_MSK & uart_msg->frame3) >>
512 BT_UART_MSG_FRAME3OBEX_POS);
513
Johannes Berg0ca24da2012-03-15 13:26:46 -0700514 IWL_DEBUG_COEX(priv, "Idle duration = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700515 (BT_UART_MSG_FRAME4IDLEDURATION_MSK & uart_msg->frame4) >>
516 BT_UART_MSG_FRAME4IDLEDURATION_POS);
517
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700518 IWL_DEBUG_COEX(priv, "Tx Activity = 0x%X, Rx Activity = 0x%X, "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700519 "eSCO Retransmissions = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700520 (BT_UART_MSG_FRAME5TXACTIVITY_MSK & uart_msg->frame5) >>
521 BT_UART_MSG_FRAME5TXACTIVITY_POS,
522 (BT_UART_MSG_FRAME5RXACTIVITY_MSK & uart_msg->frame5) >>
523 BT_UART_MSG_FRAME5RXACTIVITY_POS,
524 (BT_UART_MSG_FRAME5ESCORETRANSMIT_MSK & uart_msg->frame5) >>
525 BT_UART_MSG_FRAME5ESCORETRANSMIT_POS);
526
Johannes Berg0ca24da2012-03-15 13:26:46 -0700527 IWL_DEBUG_COEX(priv, "Sniff Interval = 0x%X, Discoverable = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700528 (BT_UART_MSG_FRAME6SNIFFINTERVAL_MSK & uart_msg->frame6) >>
529 BT_UART_MSG_FRAME6SNIFFINTERVAL_POS,
530 (BT_UART_MSG_FRAME6DISCOVERABLE_MSK & uart_msg->frame6) >>
531 BT_UART_MSG_FRAME6DISCOVERABLE_POS);
532
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700533 IWL_DEBUG_COEX(priv, "Sniff Activity = 0x%X, Page = "
Johannes Berg0ca24da2012-03-15 13:26:46 -0700534 "0x%X, Inquiry = 0x%X, Connectable = 0x%X\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700535 (BT_UART_MSG_FRAME7SNIFFACTIVITY_MSK & uart_msg->frame7) >>
536 BT_UART_MSG_FRAME7SNIFFACTIVITY_POS,
Wey-Yi Guy399f66f2011-02-22 08:24:22 -0800537 (BT_UART_MSG_FRAME7PAGE_MSK & uart_msg->frame7) >>
538 BT_UART_MSG_FRAME7PAGE_POS,
539 (BT_UART_MSG_FRAME7INQUIRY_MSK & uart_msg->frame7) >>
540 BT_UART_MSG_FRAME7INQUIRY_POS,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700541 (BT_UART_MSG_FRAME7CONNECTABLE_MSK & uart_msg->frame7) >>
542 BT_UART_MSG_FRAME7CONNECTABLE_POS);
543}
544
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700545static bool iwlagn_set_kill_msk(struct iwl_priv *priv,
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800546 struct iwl_bt_uart_msg *uart_msg)
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700547{
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700548 bool need_update = false;
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800549 u8 kill_msk;
Joe Perches20407ed2010-11-20 18:38:57 -0800550 static const __le32 bt_kill_ack_msg[2] = {
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800551 IWLAGN_BT_KILL_ACK_MASK_DEFAULT,
552 IWLAGN_BT_KILL_ACK_CTS_MASK_SCO };
553 static const __le32 bt_kill_cts_msg[2] = {
554 IWLAGN_BT_KILL_CTS_MASK_DEFAULT,
555 IWLAGN_BT_KILL_ACK_CTS_MASK_SCO };
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700556
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800557 kill_msk = (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3)
558 ? 1 : 0;
559 if (priv->kill_ack_mask != bt_kill_ack_msg[kill_msk] ||
560 priv->kill_cts_mask != bt_kill_cts_msg[kill_msk]) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700561 priv->bt_valid |= IWLAGN_BT_VALID_KILL_ACK_MASK;
Wey-Yi Guy506aa152010-11-24 17:25:03 -0800562 priv->kill_ack_mask = bt_kill_ack_msg[kill_msk];
563 priv->bt_valid |= IWLAGN_BT_VALID_KILL_CTS_MASK;
564 priv->kill_cts_mask = bt_kill_cts_msg[kill_msk];
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700565 need_update = true;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700566 }
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700567 return need_update;
568}
569
570static bool iwlagn_fill_txpower_mode(struct iwl_priv *priv,
571 struct iwl_bt_uart_msg *uart_msg)
572{
573 bool need_update = false;
574
575 if (!priv->reduced_txpower &&
576 !iwl_is_associated(priv, IWL_RXON_CTX_PAN) &&
577 (uart_msg->frame3 & (BT_UART_MSG_FRAME3ACL_MSK |
578 BT_UART_MSG_FRAME3OBEX_MSK)) &&
579 !(uart_msg->frame3 & (BT_UART_MSG_FRAME3SCOESCO_MSK |
580 BT_UART_MSG_FRAME3SNIFF_MSK | BT_UART_MSG_FRAME3A2DP_MSK))) {
581 /* enabling reduced tx power */
582 priv->reduced_txpower = true;
583 priv->bt_valid |= IWLAGN_BT_VALID_REDUCED_TX_PWR;
584 need_update = true;
585 } else if (priv->reduced_txpower &&
586 (iwl_is_associated(priv, IWL_RXON_CTX_PAN) ||
587 (uart_msg->frame3 & (BT_UART_MSG_FRAME3SCOESCO_MSK |
588 BT_UART_MSG_FRAME3SNIFF_MSK | BT_UART_MSG_FRAME3A2DP_MSK)) ||
589 !(uart_msg->frame3 & (BT_UART_MSG_FRAME3ACL_MSK |
590 BT_UART_MSG_FRAME3OBEX_MSK)))) {
591 /* disable reduced tx power */
592 priv->reduced_txpower = false;
593 priv->bt_valid &= ~IWLAGN_BT_VALID_REDUCED_TX_PWR;
594 need_update = true;
595 }
596
597 return need_update;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700598}
599
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700600int iwlagn_bt_coex_profile_notif(struct iwl_priv *priv,
Johannes Berg48a2d662012-03-05 11:24:39 -0800601 struct iwl_rx_cmd_buffer *rxb,
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700602 struct iwl_device_cmd *cmd)
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700603{
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700604 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Johannes Bergf8d7c1a2012-03-06 13:31:02 -0800605 struct iwl_bt_coex_profile_notif *coex = (void *)pkt->data;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700606 struct iwl_bt_uart_msg *uart_msg = &coex->last_bt_uart_msg;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700607
Wey-Yi Guyc4197c62011-02-06 08:56:35 -0800608 if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) {
609 /* bt coex disabled */
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700610 return 0;
Wey-Yi Guyc4197c62011-02-06 08:56:35 -0800611 }
612
Wey-Yi Guyfa7f1412011-06-06 12:49:25 -0700613 IWL_DEBUG_COEX(priv, "BT Coex notification:\n");
614 IWL_DEBUG_COEX(priv, " status: %d\n", coex->bt_status);
615 IWL_DEBUG_COEX(priv, " traffic load: %d\n", coex->bt_traffic_load);
616 IWL_DEBUG_COEX(priv, " CI compliance: %d\n",
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700617 coex->bt_ci_compliance);
618 iwlagn_print_uartmsg(priv, uart_msg);
619
Wey-Yi Guy66e863a52010-11-08 14:54:37 -0800620 priv->last_bt_traffic_load = priv->bt_traffic_load;
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700621 priv->bt_is_sco = iwlagn_bt_traffic_is_sco(uart_msg);
622
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700623 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
624 if (priv->bt_status != coex->bt_status ||
Wey-Yi Guy66e863a52010-11-08 14:54:37 -0800625 priv->last_bt_traffic_load != coex->bt_traffic_load) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700626 if (coex->bt_status) {
627 /* BT on */
628 if (!priv->bt_ch_announce)
629 priv->bt_traffic_load =
630 IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
631 else
632 priv->bt_traffic_load =
633 coex->bt_traffic_load;
634 } else {
635 /* BT off */
636 priv->bt_traffic_load =
637 IWL_BT_COEX_TRAFFIC_LOAD_NONE;
638 }
639 priv->bt_status = coex->bt_status;
Johannes Berg1ee158d2012-02-17 10:07:44 -0800640 queue_work(priv->workqueue,
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700641 &priv->bt_traffic_change_work);
642 }
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700643 }
644
Wey-Yi Guy354ce4a2012-04-19 09:48:01 -0700645 /* schedule to send runtime bt_config */
646 if (iwlagn_set_kill_msk(priv, uart_msg) ||
647 iwlagn_fill_txpower_mode(priv, uart_msg))
648 queue_work(priv->workqueue, &priv->bt_runtime_config);
649
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700650
651 /* FIXME: based on notification, adjust the prio_boost */
652
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700653 priv->bt_ci_compliance = coex->bt_ci_compliance;
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700654 return 0;
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700655}
656
657void iwlagn_bt_rx_handler_setup(struct iwl_priv *priv)
658{
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700659 priv->rx_handlers[REPLY_BT_COEX_PROFILE_NOTIF] =
660 iwlagn_bt_coex_profile_notif;
661}
662
663void iwlagn_bt_setup_deferred_work(struct iwl_priv *priv)
664{
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -0700665 INIT_WORK(&priv->bt_traffic_change_work,
666 iwlagn_bt_traffic_change_work);
667}
668
669void iwlagn_bt_cancel_deferred_work(struct iwl_priv *priv)
670{
671 cancel_work_sync(&priv->bt_traffic_change_work);
672}
Johannes Berg5de33062010-09-22 18:01:58 +0200673
674static bool is_single_rx_stream(struct iwl_priv *priv)
675{
676 return priv->current_ht_config.smps == IEEE80211_SMPS_STATIC ||
677 priv->current_ht_config.single_chain_sufficient;
678}
679
680#define IWL_NUM_RX_CHAINS_MULTIPLE 3
681#define IWL_NUM_RX_CHAINS_SINGLE 2
682#define IWL_NUM_IDLE_CHAINS_DUAL 2
683#define IWL_NUM_IDLE_CHAINS_SINGLE 1
684
685/*
686 * Determine how many receiver/antenna chains to use.
687 *
688 * More provides better reception via diversity. Fewer saves power
689 * at the expense of throughput, but only when not in powersave to
690 * start with.
691 *
692 * MIMO (dual stream) requires at least 2, but works better with 3.
693 * This does not determine *which* chains to use, just how many.
694 */
695static int iwl_get_active_rx_chain_count(struct iwl_priv *priv)
696{
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200697 if (priv->cfg->bt_params &&
698 priv->cfg->bt_params->advanced_bt_coexist &&
Johannes Berg5de33062010-09-22 18:01:58 +0200699 (priv->bt_full_concurrent ||
700 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) {
701 /*
702 * only use chain 'A' in bt high traffic load or
703 * full concurrency mode
704 */
705 return IWL_NUM_RX_CHAINS_SINGLE;
706 }
707 /* # of Rx chains to use when expecting MIMO. */
708 if (is_single_rx_stream(priv))
709 return IWL_NUM_RX_CHAINS_SINGLE;
710 else
711 return IWL_NUM_RX_CHAINS_MULTIPLE;
712}
713
714/*
715 * When we are in power saving mode, unless device support spatial
716 * multiplexing power save, use the active count for rx chain count.
717 */
718static int iwl_get_idle_rx_chain_count(struct iwl_priv *priv, int active_cnt)
719{
720 /* # Rx chains when idling, depending on SMPS mode */
721 switch (priv->current_ht_config.smps) {
722 case IEEE80211_SMPS_STATIC:
723 case IEEE80211_SMPS_DYNAMIC:
724 return IWL_NUM_IDLE_CHAINS_SINGLE;
Wey-Yi Guyb2ccccd2011-11-10 06:55:04 -0800725 case IEEE80211_SMPS_AUTOMATIC:
Johannes Berg5de33062010-09-22 18:01:58 +0200726 case IEEE80211_SMPS_OFF:
727 return active_cnt;
728 default:
729 WARN(1, "invalid SMPS mode %d",
730 priv->current_ht_config.smps);
731 return active_cnt;
732 }
733}
734
735/* up to 4 chains */
736static u8 iwl_count_chain_bitmap(u32 chain_bitmap)
737{
738 u8 res;
739 res = (chain_bitmap & BIT(0)) >> 0;
740 res += (chain_bitmap & BIT(1)) >> 1;
741 res += (chain_bitmap & BIT(2)) >> 2;
742 res += (chain_bitmap & BIT(3)) >> 3;
743 return res;
744}
745
746/**
747 * iwlagn_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
748 *
749 * Selects how many and which Rx receivers/antennas/chains to use.
750 * This should not be used for scan command ... it puts data in wrong place.
751 */
752void iwlagn_set_rxon_chain(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
753{
754 bool is_single = is_single_rx_stream(priv);
Don Fry47107e82012-03-15 13:27:06 -0700755 bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
Johannes Berg5de33062010-09-22 18:01:58 +0200756 u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
757 u32 active_chains;
758 u16 rx_chain;
759
760 /* Tell uCode which antennas are actually connected.
761 * Before first association, we assume all antennas are connected.
762 * Just after first association, iwl_chain_noise_calibration()
763 * checks which antennas actually *are* connected. */
764 if (priv->chain_noise_data.active_chains)
765 active_chains = priv->chain_noise_data.active_chains;
766 else
Johannes Berg9e295112012-04-09 17:46:55 -0700767 active_chains = priv->hw_params.valid_rx_ant;
Johannes Berg5de33062010-09-22 18:01:58 +0200768
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200769 if (priv->cfg->bt_params &&
770 priv->cfg->bt_params->advanced_bt_coexist &&
Johannes Berg5de33062010-09-22 18:01:58 +0200771 (priv->bt_full_concurrent ||
772 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) {
773 /*
774 * only use chain 'A' in bt high traffic load or
775 * full concurrency mode
776 */
777 active_chains = first_antenna(active_chains);
778 }
779
780 rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
781
782 /* How many receivers should we use? */
783 active_rx_cnt = iwl_get_active_rx_chain_count(priv);
784 idle_rx_cnt = iwl_get_idle_rx_chain_count(priv, active_rx_cnt);
785
786
787 /* correct rx chain count according hw settings
788 * and chain noise calibration
789 */
790 valid_rx_cnt = iwl_count_chain_bitmap(active_chains);
791 if (valid_rx_cnt < active_rx_cnt)
792 active_rx_cnt = valid_rx_cnt;
793
794 if (valid_rx_cnt < idle_rx_cnt)
795 idle_rx_cnt = valid_rx_cnt;
796
797 rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
798 rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
799
800 ctx->staging.rx_chain = cpu_to_le16(rx_chain);
801
802 if (!is_single && (active_rx_cnt >= IWL_NUM_RX_CHAINS_SINGLE) && is_cam)
803 ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
804 else
805 ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
806
807 IWL_DEBUG_ASSOC(priv, "rx_chain=0x%X active=%d idle=%d\n",
808 ctx->staging.rx_chain,
809 active_rx_cnt, idle_rx_cnt);
810
811 WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
812 active_rx_cnt < idle_rx_cnt);
813}
Johannes Bergfacd9822010-09-22 18:02:05 +0200814
815u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant, u8 valid)
816{
817 int i;
818 u8 ind = ant;
819
820 if (priv->band == IEEE80211_BAND_2GHZ &&
821 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)
822 return 0;
823
824 for (i = 0; i < RATE_ANT_NUM - 1; i++) {
825 ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0;
826 if (valid & BIT(ind))
827 return ind;
828 }
829 return ant;
830}
Johannes Bergfed73292010-09-22 18:02:06 +0200831
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800832#ifdef CONFIG_PM_SLEEP
833static void iwlagn_convert_p1k(u16 *p1k, __le16 *out)
834{
835 int i;
836
837 for (i = 0; i < IWLAGN_P1K_SIZE; i++)
838 out[i] = cpu_to_le16(p1k[i]);
839}
840
841struct wowlan_key_data {
842 struct iwl_rxon_context *ctx;
843 struct iwlagn_wowlan_rsc_tsc_params_cmd *rsc_tsc;
844 struct iwlagn_wowlan_tkip_params_cmd *tkip;
845 const u8 *bssid;
846 bool error, use_rsc_tsc, use_tkip;
847};
848
849
850static void iwlagn_wowlan_program_keys(struct ieee80211_hw *hw,
851 struct ieee80211_vif *vif,
852 struct ieee80211_sta *sta,
853 struct ieee80211_key_conf *key,
854 void *_data)
855{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200856 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800857 struct wowlan_key_data *data = _data;
858 struct iwl_rxon_context *ctx = data->ctx;
859 struct aes_sc *aes_sc, *aes_tx_sc = NULL;
860 struct tkip_sc *tkip_sc, *tkip_tx_sc = NULL;
861 struct iwlagn_p1k_cache *rx_p1ks;
862 u8 *rx_mic_key;
863 struct ieee80211_key_seq seq;
864 u32 cur_rx_iv32 = 0;
865 u16 p1k[IWLAGN_P1K_SIZE];
866 int ret, i;
867
Johannes Bergb1eea292012-03-06 13:30:42 -0800868 mutex_lock(&priv->mutex);
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800869
870 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
871 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
872 !sta && !ctx->key_mapping_keys)
873 ret = iwl_set_default_wep_key(priv, ctx, key);
874 else
875 ret = iwl_set_dynamic_key(priv, ctx, key, sta);
876
877 if (ret) {
878 IWL_ERR(priv, "Error setting key during suspend!\n");
879 data->error = true;
880 }
881
882 switch (key->cipher) {
883 case WLAN_CIPHER_SUITE_TKIP:
884 if (sta) {
885 tkip_sc = data->rsc_tsc->all_tsc_rsc.tkip.unicast_rsc;
886 tkip_tx_sc = &data->rsc_tsc->all_tsc_rsc.tkip.tsc;
887
888 rx_p1ks = data->tkip->rx_uni;
889
890 ieee80211_get_key_tx_seq(key, &seq);
891 tkip_tx_sc->iv16 = cpu_to_le16(seq.tkip.iv16);
892 tkip_tx_sc->iv32 = cpu_to_le32(seq.tkip.iv32);
893
894 ieee80211_get_tkip_p1k_iv(key, seq.tkip.iv32, p1k);
895 iwlagn_convert_p1k(p1k, data->tkip->tx.p1k);
896
897 memcpy(data->tkip->mic_keys.tx,
898 &key->key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY],
899 IWLAGN_MIC_KEY_SIZE);
900
901 rx_mic_key = data->tkip->mic_keys.rx_unicast;
902 } else {
903 tkip_sc =
904 data->rsc_tsc->all_tsc_rsc.tkip.multicast_rsc;
905 rx_p1ks = data->tkip->rx_multi;
906 rx_mic_key = data->tkip->mic_keys.rx_mcast;
907 }
908
909 /*
910 * For non-QoS this relies on the fact that both the uCode and
911 * mac80211 use TID 0 (as they need to to avoid replay attacks)
912 * for checking the IV in the frames.
913 */
914 for (i = 0; i < IWLAGN_NUM_RSC; i++) {
915 ieee80211_get_key_rx_seq(key, i, &seq);
916 tkip_sc[i].iv16 = cpu_to_le16(seq.tkip.iv16);
917 tkip_sc[i].iv32 = cpu_to_le32(seq.tkip.iv32);
918 /* wrapping isn't allowed, AP must rekey */
919 if (seq.tkip.iv32 > cur_rx_iv32)
920 cur_rx_iv32 = seq.tkip.iv32;
921 }
922
923 ieee80211_get_tkip_rx_p1k(key, data->bssid, cur_rx_iv32, p1k);
924 iwlagn_convert_p1k(p1k, rx_p1ks[0].p1k);
925 ieee80211_get_tkip_rx_p1k(key, data->bssid,
926 cur_rx_iv32 + 1, p1k);
927 iwlagn_convert_p1k(p1k, rx_p1ks[1].p1k);
928
929 memcpy(rx_mic_key,
930 &key->key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY],
931 IWLAGN_MIC_KEY_SIZE);
932
933 data->use_tkip = true;
934 data->use_rsc_tsc = true;
935 break;
936 case WLAN_CIPHER_SUITE_CCMP:
937 if (sta) {
938 u8 *pn = seq.ccmp.pn;
939
940 aes_sc = data->rsc_tsc->all_tsc_rsc.aes.unicast_rsc;
941 aes_tx_sc = &data->rsc_tsc->all_tsc_rsc.aes.tsc;
942
943 ieee80211_get_key_tx_seq(key, &seq);
944 aes_tx_sc->pn = cpu_to_le64(
945 (u64)pn[5] |
946 ((u64)pn[4] << 8) |
947 ((u64)pn[3] << 16) |
948 ((u64)pn[2] << 24) |
949 ((u64)pn[1] << 32) |
950 ((u64)pn[0] << 40));
951 } else
952 aes_sc = data->rsc_tsc->all_tsc_rsc.aes.multicast_rsc;
953
954 /*
955 * For non-QoS this relies on the fact that both the uCode and
956 * mac80211 use TID 0 for checking the IV in the frames.
957 */
958 for (i = 0; i < IWLAGN_NUM_RSC; i++) {
959 u8 *pn = seq.ccmp.pn;
960
961 ieee80211_get_key_rx_seq(key, i, &seq);
962 aes_sc->pn = cpu_to_le64(
963 (u64)pn[5] |
964 ((u64)pn[4] << 8) |
965 ((u64)pn[3] << 16) |
966 ((u64)pn[2] << 24) |
967 ((u64)pn[1] << 32) |
968 ((u64)pn[0] << 40));
969 }
970 data->use_rsc_tsc = true;
971 break;
972 }
973
Johannes Bergb1eea292012-03-06 13:30:42 -0800974 mutex_unlock(&priv->mutex);
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800975}
976
977int iwlagn_send_patterns(struct iwl_priv *priv,
978 struct cfg80211_wowlan *wowlan)
979{
980 struct iwlagn_wowlan_patterns_cmd *pattern_cmd;
981 struct iwl_host_cmd cmd = {
982 .id = REPLY_WOWLAN_PATTERNS,
983 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
984 .flags = CMD_SYNC,
985 };
986 int i, err;
987
988 if (!wowlan->n_patterns)
989 return 0;
990
991 cmd.len[0] = sizeof(*pattern_cmd) +
992 wowlan->n_patterns * sizeof(struct iwlagn_wowlan_pattern);
993
994 pattern_cmd = kmalloc(cmd.len[0], GFP_KERNEL);
995 if (!pattern_cmd)
996 return -ENOMEM;
997
998 pattern_cmd->n_patterns = cpu_to_le32(wowlan->n_patterns);
999
1000 for (i = 0; i < wowlan->n_patterns; i++) {
1001 int mask_len = DIV_ROUND_UP(wowlan->patterns[i].pattern_len, 8);
1002
1003 memcpy(&pattern_cmd->patterns[i].mask,
1004 wowlan->patterns[i].mask, mask_len);
1005 memcpy(&pattern_cmd->patterns[i].pattern,
1006 wowlan->patterns[i].pattern,
1007 wowlan->patterns[i].pattern_len);
1008 pattern_cmd->patterns[i].mask_size = mask_len;
1009 pattern_cmd->patterns[i].pattern_size =
1010 wowlan->patterns[i].pattern_len;
1011 }
1012
1013 cmd.data[0] = pattern_cmd;
Johannes Berge10a0532012-03-06 13:30:39 -08001014 err = iwl_dvm_send_cmd(priv, &cmd);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001015 kfree(pattern_cmd);
1016 return err;
1017}
1018
Johannes Bergea886a62012-03-07 09:52:15 -08001019int iwlagn_suspend(struct iwl_priv *priv, struct cfg80211_wowlan *wowlan)
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001020{
1021 struct iwlagn_wowlan_wakeup_filter_cmd wakeup_filter_cmd;
1022 struct iwl_rxon_cmd rxon;
1023 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
1024 struct iwlagn_wowlan_kek_kck_material_cmd kek_kck_cmd;
1025 struct iwlagn_wowlan_tkip_params_cmd tkip_cmd = {};
1026 struct iwlagn_d3_config_cmd d3_cfg_cmd = {};
1027 struct wowlan_key_data key_data = {
1028 .ctx = ctx,
1029 .bssid = ctx->active.bssid_addr,
1030 .use_rsc_tsc = false,
1031 .tkip = &tkip_cmd,
1032 .use_tkip = false,
1033 };
1034 int ret, i;
1035 u16 seq;
1036
1037 key_data.rsc_tsc = kzalloc(sizeof(*key_data.rsc_tsc), GFP_KERNEL);
1038 if (!key_data.rsc_tsc)
1039 return -ENOMEM;
1040
1041 memset(&wakeup_filter_cmd, 0, sizeof(wakeup_filter_cmd));
1042
1043 /*
1044 * We know the last used seqno, and the uCode expects to know that
1045 * one, it will increment before TX.
1046 */
1047 seq = le16_to_cpu(priv->last_seq_ctl) & IEEE80211_SCTL_SEQ;
1048 wakeup_filter_cmd.non_qos_seq = cpu_to_le16(seq);
1049
1050 /*
1051 * For QoS counters, we store the one to use next, so subtract 0x10
1052 * since the uCode will add 0x10 before using the value.
1053 */
Johannes Berge0467a32011-12-02 12:24:45 -08001054 for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
Emmanuel Grumbach04cf6822011-11-23 11:06:12 +02001055 seq = priv->tid_data[IWL_AP_ID][i].seq_number;
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001056 seq -= 0x10;
1057 wakeup_filter_cmd.qos_seq[i] = cpu_to_le16(seq);
1058 }
1059
1060 if (wowlan->disconnect)
1061 wakeup_filter_cmd.enabled |=
1062 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_BEACON_MISS |
1063 IWLAGN_WOWLAN_WAKEUP_LINK_CHANGE);
1064 if (wowlan->magic_pkt)
1065 wakeup_filter_cmd.enabled |=
1066 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_MAGIC_PACKET);
1067 if (wowlan->gtk_rekey_failure)
1068 wakeup_filter_cmd.enabled |=
1069 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_GTK_REKEY_FAIL);
1070 if (wowlan->eap_identity_req)
1071 wakeup_filter_cmd.enabled |=
1072 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_EAP_IDENT_REQ);
1073 if (wowlan->four_way_handshake)
1074 wakeup_filter_cmd.enabled |=
1075 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_4WAY_HANDSHAKE);
1076 if (wowlan->n_patterns)
1077 wakeup_filter_cmd.enabled |=
1078 cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_PATTERN_MATCH);
1079
1080 if (wowlan->rfkill_release)
1081 d3_cfg_cmd.wakeup_flags |=
1082 cpu_to_le32(IWLAGN_D3_WAKEUP_RFKILL);
1083
1084 iwl_scan_cancel_timeout(priv, 200);
1085
1086 memcpy(&rxon, &ctx->active, sizeof(rxon));
1087
David Spinadel8f7ffbe2012-03-10 13:00:10 -08001088 priv->ucode_loaded = false;
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -07001089 iwl_trans_stop_device(priv->trans);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001090
Johannes Berg15b86bf2012-03-05 11:24:36 -08001091 priv->wowlan = true;
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001092
Johannes Berge1991882012-03-06 13:30:36 -08001093 ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_WOWLAN);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001094 if (ret)
1095 goto out;
1096
1097 /* now configure WoWLAN ucode */
1098 ret = iwl_alive_start(priv);
1099 if (ret)
1100 goto out;
1101
1102 memcpy(&ctx->staging, &rxon, sizeof(rxon));
1103 ret = iwlagn_commit_rxon(priv, ctx);
1104 if (ret)
1105 goto out;
1106
1107 ret = iwl_power_update_mode(priv, true);
1108 if (ret)
1109 goto out;
1110
Johannes Berg65de7e82012-04-17 07:36:30 -07001111 if (!iwlwifi_mod_params.sw_crypto) {
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001112 /* mark all keys clear */
1113 priv->ucode_key_table = 0;
1114 ctx->key_mapping_keys = 0;
1115
1116 /*
1117 * This needs to be unlocked due to lock ordering
1118 * constraints. Since we're in the suspend path
1119 * that isn't really a problem though.
1120 */
Johannes Bergb1eea292012-03-06 13:30:42 -08001121 mutex_unlock(&priv->mutex);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001122 ieee80211_iter_keys(priv->hw, ctx->vif,
1123 iwlagn_wowlan_program_keys,
1124 &key_data);
Johannes Bergb1eea292012-03-06 13:30:42 -08001125 mutex_lock(&priv->mutex);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001126 if (key_data.error) {
1127 ret = -EIO;
1128 goto out;
1129 }
1130
1131 if (key_data.use_rsc_tsc) {
1132 struct iwl_host_cmd rsc_tsc_cmd = {
1133 .id = REPLY_WOWLAN_TSC_RSC_PARAMS,
1134 .flags = CMD_SYNC,
1135 .data[0] = key_data.rsc_tsc,
1136 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
Johannes Berg182ada12012-03-04 08:31:35 -08001137 .len[0] = sizeof(*key_data.rsc_tsc),
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001138 };
1139
Johannes Berge10a0532012-03-06 13:30:39 -08001140 ret = iwl_dvm_send_cmd(priv, &rsc_tsc_cmd);
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001141 if (ret)
1142 goto out;
1143 }
1144
1145 if (key_data.use_tkip) {
Johannes Berge10a0532012-03-06 13:30:39 -08001146 ret = iwl_dvm_send_cmd_pdu(priv,
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001147 REPLY_WOWLAN_TKIP_PARAMS,
1148 CMD_SYNC, sizeof(tkip_cmd),
1149 &tkip_cmd);
1150 if (ret)
1151 goto out;
1152 }
1153
1154 if (priv->have_rekey_data) {
1155 memset(&kek_kck_cmd, 0, sizeof(kek_kck_cmd));
1156 memcpy(kek_kck_cmd.kck, priv->kck, NL80211_KCK_LEN);
1157 kek_kck_cmd.kck_len = cpu_to_le16(NL80211_KCK_LEN);
1158 memcpy(kek_kck_cmd.kek, priv->kek, NL80211_KEK_LEN);
1159 kek_kck_cmd.kek_len = cpu_to_le16(NL80211_KEK_LEN);
1160 kek_kck_cmd.replay_ctr = priv->replay_ctr;
1161
Johannes Berge10a0532012-03-06 13:30:39 -08001162 ret = iwl_dvm_send_cmd_pdu(priv,
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001163 REPLY_WOWLAN_KEK_KCK_MATERIAL,
1164 CMD_SYNC, sizeof(kek_kck_cmd),
1165 &kek_kck_cmd);
1166 if (ret)
1167 goto out;
1168 }
1169 }
1170
Johannes Berge10a0532012-03-06 13:30:39 -08001171 ret = iwl_dvm_send_cmd_pdu(priv, REPLY_D3_CONFIG, CMD_SYNC,
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001172 sizeof(d3_cfg_cmd), &d3_cfg_cmd);
1173 if (ret)
1174 goto out;
1175
Johannes Berge10a0532012-03-06 13:30:39 -08001176 ret = iwl_dvm_send_cmd_pdu(priv, REPLY_WOWLAN_WAKEUP_FILTER,
Wey-Yi Guy023ca582011-11-10 06:55:17 -08001177 CMD_SYNC, sizeof(wakeup_filter_cmd),
1178 &wakeup_filter_cmd);
1179 if (ret)
1180 goto out;
1181
1182 ret = iwlagn_send_patterns(priv, wowlan);
1183 out:
1184 kfree(key_data.rsc_tsc);
1185 return ret;
1186}
1187#endif
Johannes Berge10a0532012-03-06 13:30:39 -08001188
1189int iwl_dvm_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
1190{
Don Fry83626402012-03-07 09:52:37 -08001191 if (iwl_is_rfkill(priv) || iwl_is_ctkill(priv)) {
Johannes Berg721c32f2012-03-06 13:30:40 -08001192 IWL_WARN(priv, "Not sending command - %s KILL\n",
Don Fry83626402012-03-07 09:52:37 -08001193 iwl_is_rfkill(priv) ? "RF" : "CT");
Johannes Berg721c32f2012-03-06 13:30:40 -08001194 return -EIO;
1195 }
1196
Don Fry17acd0b2012-03-15 13:27:05 -07001197 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
1198 IWL_ERR(priv, "Command %s failed: FW Error\n",
Johannes Bergd9fb6462012-03-26 08:23:39 -07001199 iwl_dvm_get_cmd_string(cmd->id));
Don Fry17acd0b2012-03-15 13:27:05 -07001200 return -EIO;
1201 }
1202
Johannes Berg2cc39c92012-03-06 13:30:41 -08001203 /*
1204 * Synchronous commands from this op-mode must hold
1205 * the mutex, this ensures we don't try to send two
1206 * (or more) synchronous commands at a time.
1207 */
1208 if (cmd->flags & CMD_SYNC)
Johannes Bergb1eea292012-03-06 13:30:42 -08001209 lockdep_assert_held(&priv->mutex);
Johannes Berg2cc39c92012-03-06 13:30:41 -08001210
Johannes Berg947a9402012-03-06 13:30:59 -08001211 if (priv->ucode_owner == IWL_OWNERSHIP_TM &&
1212 !(cmd->flags & CMD_ON_DEMAND)) {
1213 IWL_DEBUG_HC(priv, "tm own the uCode, no regular hcmd send\n");
1214 return -EIO;
1215 }
1216
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -07001217 return iwl_trans_send_cmd(priv->trans, cmd);
Johannes Berge10a0532012-03-06 13:30:39 -08001218}
1219
1220int iwl_dvm_send_cmd_pdu(struct iwl_priv *priv, u8 id,
1221 u32 flags, u16 len, const void *data)
1222{
1223 struct iwl_host_cmd cmd = {
1224 .id = id,
1225 .len = { len, },
1226 .data = { data, },
1227 .flags = flags,
1228 };
1229
1230 return iwl_dvm_send_cmd(priv, &cmd);
1231}