Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * GPL LICENSE SUMMARY |
| 4 | * |
Wey-Yi Guy | fb4961d | 2012-01-06 13:16:33 -0800 | [diff] [blame] | 5 | * Copyright(c) 2008 - 2012 Intel Corporation. All rights reserved. |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 6 | * |
| 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 Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 29 | #include <linux/etherdevice.h> |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 30 | #include <linux/kernel.h> |
| 31 | #include <linux/module.h> |
| 32 | #include <linux/init.h> |
| 33 | #include <linux/sched.h> |
Wey-Yi Guy | dd551ab | 2012-05-03 14:22:01 -0700 | [diff] [blame] | 34 | #include <net/mac80211.h> |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 35 | |
| 36 | #include "iwl-dev.h" |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 37 | #include "iwl-io.h" |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 38 | #include "iwl-agn-hw.h" |
| 39 | #include "iwl-agn.h" |
Emmanuel Grumbach | bdfbf09 | 2011-07-08 08:46:16 -0700 | [diff] [blame] | 40 | #include "iwl-trans.h" |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 41 | #include "iwl-modparams.h" |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 42 | |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 43 | int 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 | |
| 49 | int iwlagn_send_tx_power(struct iwl_priv *priv) |
| 50 | { |
Wey-Yi Guy | ab63c68 | 2010-09-20 09:12:31 -0700 | [diff] [blame] | 51 | struct iwlagn_tx_power_dbm_cmd tx_power_cmd; |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 52 | u8 tx_ant_cfg_cmd; |
| 53 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 54 | if (WARN_ONCE(test_bit(STATUS_SCAN_HW, &priv->status), |
Stanislaw Gruszka | 4beeba7 | 2010-10-25 10:34:50 +0200 | [diff] [blame] | 55 | "TX Power requested while scanning!\n")) |
| 56 | return -EAGAIN; |
| 57 | |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 58 | /* half dBm need to multiply */ |
| 59 | tx_power_cmd.global_lmt = (s8)(2 * priv->tx_power_user_lmt); |
| 60 | |
| 61 | if (priv->tx_power_lmt_in_half_dbm && |
| 62 | priv->tx_power_lmt_in_half_dbm < tx_power_cmd.global_lmt) { |
| 63 | /* |
| 64 | * For the newer devices which using enhanced/extend tx power |
| 65 | * table in EEPROM, the format is in half dBm. driver need to |
| 66 | * convert to dBm format before report to mac80211. |
| 67 | * By doing so, there is a possibility of 1/2 dBm resolution |
| 68 | * lost. driver will perform "round-up" operation before |
| 69 | * reporting, but it will cause 1/2 dBm tx power over the |
| 70 | * regulatory limit. Perform the checking here, if the |
| 71 | * "tx_power_user_lmt" is higher than EEPROM value (in |
| 72 | * half-dBm format), lower the tx power based on EEPROM |
| 73 | */ |
| 74 | tx_power_cmd.global_lmt = priv->tx_power_lmt_in_half_dbm; |
| 75 | } |
Wey-Yi Guy | ab63c68 | 2010-09-20 09:12:31 -0700 | [diff] [blame] | 76 | tx_power_cmd.flags = IWLAGN_TX_POWER_NO_CLOSED; |
| 77 | tx_power_cmd.srv_chan_lmt = IWLAGN_TX_POWER_AUTO; |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 78 | |
Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 79 | if (IWL_UCODE_API(priv->fw->ucode_ver) == 1) |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 80 | tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD_V1; |
| 81 | else |
| 82 | tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD; |
| 83 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 84 | return iwl_dvm_send_cmd_pdu(priv, tx_ant_cfg_cmd, CMD_SYNC, |
Emmanuel Grumbach | e419d62 | 2011-07-08 08:46:14 -0700 | [diff] [blame] | 85 | sizeof(tx_power_cmd), &tx_power_cmd); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | void iwlagn_temperature(struct iwl_priv *priv) |
| 89 | { |
Johannes Berg | 4ff70fc | 2012-03-05 11:24:26 -0800 | [diff] [blame] | 90 | lockdep_assert_held(&priv->statistics.lock); |
| 91 | |
Fry, Donald H | f8f79a5 | 2011-02-25 09:44:48 -0800 | [diff] [blame] | 92 | /* store temperature from correct statistics (in Celsius) */ |
Johannes Berg | 0da0e5b | 2011-04-08 08:14:56 -0700 | [diff] [blame] | 93 | priv->temperature = le32_to_cpu(priv->statistics.common.temperature); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 94 | iwl_tt_handler(priv); |
| 95 | } |
| 96 | |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 97 | int 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 Berg | 1fa61b2 | 2010-04-28 08:44:52 -0700 | [diff] [blame] | 118 | int iwlagn_manage_ibss_station(struct iwl_priv *priv, |
| 119 | struct ieee80211_vif *vif, bool add) |
| 120 | { |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 121 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 122 | |
Johannes Berg | 1fa61b2 | 2010-04-28 08:44:52 -0700 | [diff] [blame] | 123 | if (add) |
Johannes Berg | a30e311 | 2010-09-22 18:02:01 +0200 | [diff] [blame] | 124 | return iwlagn_add_bssid_station(priv, vif_priv->ctx, |
| 125 | vif->bss_conf.bssid, |
| 126 | &vif_priv->ibss_bssid_sta_id); |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 127 | return iwl_remove_station(priv, vif_priv->ibss_bssid_sta_id, |
| 128 | vif->bss_conf.bssid); |
Johannes Berg | 1fa61b2 | 2010-04-28 08:44:52 -0700 | [diff] [blame] | 129 | } |
Johannes Berg | 1ff504e | 2010-05-03 01:22:42 -0700 | [diff] [blame] | 130 | |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 131 | /** |
| 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 | */ |
| 138 | int iwlagn_txfifo_flush(struct iwl_priv *priv, u16 flush_control) |
| 139 | { |
| 140 | struct iwl_txfifo_flush_cmd flush_cmd; |
| 141 | struct iwl_host_cmd cmd = { |
| 142 | .id = REPLY_TXFIFO_FLUSH, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 143 | .len = { sizeof(struct iwl_txfifo_flush_cmd), }, |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 144 | .flags = CMD_SYNC, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 145 | .data = { &flush_cmd, }, |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | might_sleep(); |
| 149 | |
| 150 | memset(&flush_cmd, 0, sizeof(flush_cmd)); |
Wey-Yi Guy | ecdbe86 | 2011-06-08 09:57:26 -0700 | [diff] [blame] | 151 | if (flush_control & BIT(IWL_RXON_CTX_BSS)) |
| 152 | flush_cmd.fifo_control = IWL_SCD_VO_MSK | IWL_SCD_VI_MSK | |
Wey-Yi Guy | f88e0ec | 2011-06-08 09:57:25 -0700 | [diff] [blame] | 153 | IWL_SCD_BE_MSK | IWL_SCD_BK_MSK | |
| 154 | IWL_SCD_MGMT_MSK; |
Wey-Yi Guy | ecdbe86 | 2011-06-08 09:57:26 -0700 | [diff] [blame] | 155 | if ((flush_control & BIT(IWL_RXON_CTX_PAN)) && |
Johannes Berg | a18f61b | 2012-03-15 13:26:53 -0700 | [diff] [blame] | 156 | (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS))) |
Wey-Yi Guy | f88e0ec | 2011-06-08 09:57:25 -0700 | [diff] [blame] | 157 | flush_cmd.fifo_control |= IWL_PAN_SCD_VO_MSK | |
| 158 | IWL_PAN_SCD_VI_MSK | IWL_PAN_SCD_BE_MSK | |
| 159 | IWL_PAN_SCD_BK_MSK | IWL_PAN_SCD_MGMT_MSK | |
| 160 | IWL_PAN_SCD_MULTICAST_MSK; |
| 161 | |
Johannes Berg | 9e29511 | 2012-04-09 17:46:55 -0700 | [diff] [blame] | 162 | if (priv->hw_params.sku & EEPROM_SKU_CAP_11N_ENABLE) |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 163 | flush_cmd.fifo_control |= IWL_AGG_TX_QUEUE_MSK; |
| 164 | |
| 165 | IWL_DEBUG_INFO(priv, "fifo queue control: 0X%x\n", |
| 166 | flush_cmd.fifo_control); |
| 167 | flush_cmd.flush_control = cpu_to_le16(flush_control); |
| 168 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 169 | return iwl_dvm_send_cmd(priv, &cmd); |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 170 | } |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 171 | |
| 172 | void iwlagn_dev_txfifo_flush(struct iwl_priv *priv, u16 flush_control) |
| 173 | { |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 174 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 175 | ieee80211_stop_queues(priv->hw); |
Wey-Yi Guy | c68744f | 2011-06-18 08:03:18 -0700 | [diff] [blame] | 176 | if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) { |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 177 | IWL_ERR(priv, "flush request fail\n"); |
| 178 | goto done; |
| 179 | } |
| 180 | IWL_DEBUG_INFO(priv, "wait transmit/flush all frames\n"); |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 181 | iwl_trans_wait_tx_queue_empty(priv->trans); |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 182 | done: |
| 183 | ieee80211_wake_queues(priv->hw); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 184 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 185 | } |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 186 | |
| 187 | /* |
| 188 | * BT coex |
| 189 | */ |
Wey-Yi Guy | 4d5ba61 | 2012-04-19 09:50:42 -0700 | [diff] [blame] | 190 | /* Notmal TDM */ |
| 191 | static const __le32 iwlagn_def_3w_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 192 | cpu_to_le32(0xaaaaaaaa), |
| 193 | cpu_to_le32(0xaaaaaaaa), |
| 194 | cpu_to_le32(0xaeaaaaaa), |
| 195 | cpu_to_le32(0xaaaaaaaa), |
| 196 | cpu_to_le32(0xcc00ff28), |
| 197 | cpu_to_le32(0x0000aaaa), |
| 198 | cpu_to_le32(0xcc00aaaa), |
| 199 | cpu_to_le32(0x0000aaaa), |
| 200 | cpu_to_le32(0xc0004000), |
| 201 | cpu_to_le32(0x00004000), |
| 202 | cpu_to_le32(0xf0005000), |
Wey-Yi Guy | 9a67d76 | 2010-11-18 10:40:03 -0800 | [diff] [blame] | 203 | cpu_to_le32(0xf0005000), |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 204 | }; |
| 205 | |
Wey-Yi Guy | 4d5ba61 | 2012-04-19 09:50:42 -0700 | [diff] [blame] | 206 | |
| 207 | /* Loose Coex */ |
| 208 | static const __le32 iwlagn_loose_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = { |
| 209 | cpu_to_le32(0xaaaaaaaa), |
| 210 | cpu_to_le32(0xaaaaaaaa), |
| 211 | cpu_to_le32(0xaeaaaaaa), |
| 212 | cpu_to_le32(0xaaaaaaaa), |
| 213 | cpu_to_le32(0xcc00ff28), |
| 214 | cpu_to_le32(0x0000aaaa), |
| 215 | cpu_to_le32(0xcc00aaaa), |
| 216 | cpu_to_le32(0x0000aaaa), |
| 217 | cpu_to_le32(0x00000000), |
| 218 | cpu_to_le32(0x00000000), |
| 219 | cpu_to_le32(0xf0005000), |
| 220 | cpu_to_le32(0xf0005000), |
| 221 | }; |
| 222 | |
| 223 | /* Full concurrency */ |
| 224 | static const __le32 iwlagn_concurrent_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 225 | cpu_to_le32(0xaaaaaaaa), |
| 226 | cpu_to_le32(0xaaaaaaaa), |
| 227 | 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(0x00000000), |
| 234 | cpu_to_le32(0x00000000), |
| 235 | cpu_to_le32(0x00000000), |
| 236 | cpu_to_le32(0x00000000), |
| 237 | }; |
| 238 | |
| 239 | void iwlagn_send_advance_bt_config(struct iwl_priv *priv) |
| 240 | { |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 241 | struct iwl_basic_bt_cmd basic = { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 242 | .max_kill = IWLAGN_BT_MAX_KILL_DEFAULT, |
| 243 | .bt3_timer_t7_value = IWLAGN_BT3_T7_DEFAULT, |
| 244 | .bt3_prio_sample_time = IWLAGN_BT3_PRIO_SAMPLE_DEFAULT, |
| 245 | .bt3_timer_t2_value = IWLAGN_BT3_T2_DEFAULT, |
| 246 | }; |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 247 | struct iwl_bt_cmd_v1 bt_cmd_v1; |
| 248 | struct iwl_bt_cmd_v2 bt_cmd_v2; |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 249 | int ret; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 250 | |
| 251 | BUILD_BUG_ON(sizeof(iwlagn_def_3w_lookup) != |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 252 | sizeof(basic.bt3_lookup_table)); |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 253 | |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 254 | if (priv->cfg->bt_params) { |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 255 | /* |
| 256 | * newer generation of devices (2000 series and newer) |
| 257 | * use the version 2 of the bt command |
| 258 | * we need to make sure sending the host command |
| 259 | * with correct data structure to avoid uCode assert |
| 260 | */ |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 261 | if (priv->cfg->bt_params->bt_session_2) { |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 262 | bt_cmd_v2.prio_boost = cpu_to_le32( |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 263 | priv->cfg->bt_params->bt_prio_boost); |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 264 | bt_cmd_v2.tx_prio_boost = 0; |
| 265 | bt_cmd_v2.rx_prio_boost = 0; |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 266 | } else { |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 267 | bt_cmd_v1.prio_boost = |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 268 | priv->cfg->bt_params->bt_prio_boost; |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 269 | bt_cmd_v1.tx_prio_boost = 0; |
| 270 | bt_cmd_v1.rx_prio_boost = 0; |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 271 | } |
| 272 | } else { |
| 273 | IWL_ERR(priv, "failed to construct BT Coex Config\n"); |
| 274 | return; |
| 275 | } |
Wey-Yi Guy | 506aa15 | 2010-11-24 17:25:03 -0800 | [diff] [blame] | 276 | |
Wey-Yi Guy | 83ce21d | 2012-05-03 14:22:02 -0700 | [diff] [blame] | 277 | /* |
| 278 | * Possible situations when BT needs to take over for receive, |
| 279 | * at the same time where STA needs to response to AP's frame(s), |
| 280 | * reduce the tx power of the required response frames, by that, |
| 281 | * allow the concurrent BT receive & WiFi transmit |
| 282 | * (BT - ANT A, WiFi -ANT B), without interference to one another |
| 283 | * |
| 284 | * Reduced tx power apply to control frames only (ACK/Back/CTS) |
| 285 | * when indicated by the BT config command |
| 286 | */ |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 287 | basic.kill_ack_mask = priv->kill_ack_mask; |
| 288 | basic.kill_cts_mask = priv->kill_cts_mask; |
Wey-Yi Guy | 83ce21d | 2012-05-03 14:22:02 -0700 | [diff] [blame] | 289 | if (priv->reduced_txpower) |
| 290 | basic.reduce_txpower = IWLAGN_BT_REDUCED_TX_PWR; |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 291 | basic.valid = priv->bt_valid; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 292 | |
| 293 | /* |
| 294 | * Configure BT coex mode to "no coexistence" when the |
| 295 | * user disabled BT coexistence, we have no interface |
| 296 | * (might be in monitor mode), or the interface is in |
| 297 | * IBSS mode (no proper uCode support for coex then). |
| 298 | */ |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 299 | if (!iwlwifi_mod_params.bt_coex_active || |
Wey-Yi Guy | b60eec9 | 2011-06-03 13:52:38 -0700 | [diff] [blame] | 300 | priv->iw_mode == NL80211_IFTYPE_ADHOC) { |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 301 | basic.flags = IWLAGN_BT_FLAG_COEX_MODE_DISABLED; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 302 | } else { |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 303 | basic.flags = IWLAGN_BT_FLAG_COEX_MODE_3W << |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 304 | IWLAGN_BT_FLAG_COEX_MODE_SHIFT; |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 305 | |
| 306 | if (!priv->bt_enable_pspoll) |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 307 | basic.flags |= IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE; |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 308 | else |
| 309 | basic.flags &= ~IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE; |
Wey-Yi Guy | e366176 | 2010-11-23 10:58:54 -0800 | [diff] [blame] | 310 | |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 311 | if (priv->bt_ch_announce) |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 312 | basic.flags |= IWLAGN_BT_FLAG_CHANNEL_INHIBITION; |
Wey-Yi Guy | fa7f141 | 2011-06-06 12:49:25 -0700 | [diff] [blame] | 313 | IWL_DEBUG_COEX(priv, "BT coex flag: 0X%x\n", basic.flags); |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 314 | } |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 315 | priv->bt_enable_flag = basic.flags; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 316 | if (priv->bt_full_concurrent) |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 317 | memcpy(basic.bt3_lookup_table, iwlagn_concurrent_lookup, |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 318 | sizeof(iwlagn_concurrent_lookup)); |
| 319 | else |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 320 | memcpy(basic.bt3_lookup_table, iwlagn_def_3w_lookup, |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 321 | sizeof(iwlagn_def_3w_lookup)); |
| 322 | |
Wey-Yi Guy | fa7f141 | 2011-06-06 12:49:25 -0700 | [diff] [blame] | 323 | IWL_DEBUG_COEX(priv, "BT coex %s in %s mode\n", |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 324 | basic.flags ? "active" : "disabled", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 325 | priv->bt_full_concurrent ? |
| 326 | "full concurrency" : "3-wire"); |
| 327 | |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 328 | if (priv->cfg->bt_params->bt_session_2) { |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 329 | memcpy(&bt_cmd_v2.basic, &basic, |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 330 | sizeof(basic)); |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 331 | ret = iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG, |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 332 | CMD_SYNC, sizeof(bt_cmd_v2), &bt_cmd_v2); |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 333 | } else { |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 334 | memcpy(&bt_cmd_v1.basic, &basic, |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 335 | sizeof(basic)); |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 336 | ret = iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG, |
Wey-Yi Guy | 8347deb | 2012-03-09 07:15:04 -0800 | [diff] [blame] | 337 | CMD_SYNC, sizeof(bt_cmd_v1), &bt_cmd_v1); |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 338 | } |
| 339 | if (ret) |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 340 | IWL_ERR(priv, "failed to send BT Coex Config\n"); |
| 341 | |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 344 | void iwlagn_bt_adjust_rssi_monitor(struct iwl_priv *priv, bool rssi_ena) |
| 345 | { |
| 346 | struct iwl_rxon_context *ctx, *found_ctx = NULL; |
| 347 | bool found_ap = false; |
| 348 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 349 | lockdep_assert_held(&priv->mutex); |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 350 | |
| 351 | /* Check whether AP or GO mode is active. */ |
| 352 | if (rssi_ena) { |
| 353 | for_each_context(priv, ctx) { |
| 354 | if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_AP && |
| 355 | iwl_is_associated_ctx(ctx)) { |
| 356 | found_ap = true; |
| 357 | break; |
| 358 | } |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | /* |
| 363 | * If disable was received or If GO/AP mode, disable RSSI |
| 364 | * measurements. |
| 365 | */ |
| 366 | if (!rssi_ena || found_ap) { |
| 367 | if (priv->cur_rssi_ctx) { |
| 368 | ctx = priv->cur_rssi_ctx; |
| 369 | ieee80211_disable_rssi_reports(ctx->vif); |
| 370 | priv->cur_rssi_ctx = NULL; |
| 371 | } |
| 372 | return; |
| 373 | } |
| 374 | |
| 375 | /* |
| 376 | * If rssi measurements need to be enabled, consider all cases now. |
| 377 | * Figure out how many contexts are active. |
| 378 | */ |
| 379 | for_each_context(priv, ctx) { |
| 380 | if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION && |
| 381 | iwl_is_associated_ctx(ctx)) { |
| 382 | found_ctx = ctx; |
| 383 | break; |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | /* |
| 388 | * rssi monitor already enabled for the correct interface...nothing |
| 389 | * to do. |
| 390 | */ |
| 391 | if (found_ctx == priv->cur_rssi_ctx) |
| 392 | return; |
| 393 | |
| 394 | /* |
| 395 | * Figure out if rssi monitor is currently enabled, and needs |
| 396 | * to be changed. If rssi monitor is already enabled, disable |
| 397 | * it first else just enable rssi measurements on the |
| 398 | * interface found above. |
| 399 | */ |
| 400 | if (priv->cur_rssi_ctx) { |
| 401 | ctx = priv->cur_rssi_ctx; |
| 402 | if (ctx->vif) |
| 403 | ieee80211_disable_rssi_reports(ctx->vif); |
| 404 | } |
| 405 | |
| 406 | priv->cur_rssi_ctx = found_ctx; |
| 407 | |
| 408 | if (!found_ctx) |
| 409 | return; |
| 410 | |
| 411 | ieee80211_enable_rssi_reports(found_ctx->vif, |
| 412 | IWLAGN_BT_PSP_MIN_RSSI_THRESHOLD, |
| 413 | IWLAGN_BT_PSP_MAX_RSSI_THRESHOLD); |
| 414 | } |
| 415 | |
| 416 | static bool iwlagn_bt_traffic_is_sco(struct iwl_bt_uart_msg *uart_msg) |
| 417 | { |
| 418 | return BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3 >> |
| 419 | BT_UART_MSG_FRAME3SCOESCO_POS; |
| 420 | } |
| 421 | |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 422 | static void iwlagn_bt_traffic_change_work(struct work_struct *work) |
| 423 | { |
| 424 | struct iwl_priv *priv = |
| 425 | container_of(work, struct iwl_priv, bt_traffic_change_work); |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 426 | struct iwl_rxon_context *ctx; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 427 | int smps_request = -1; |
| 428 | |
Wey-Yi Guy | c4197c6 | 2011-02-06 08:56:35 -0800 | [diff] [blame] | 429 | if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) { |
| 430 | /* bt coex disabled */ |
| 431 | return; |
| 432 | } |
| 433 | |
Stanislaw Gruszka | 5eda74a | 2010-10-22 17:04:28 +0200 | [diff] [blame] | 434 | /* |
| 435 | * Note: bt_traffic_load can be overridden by scan complete and |
| 436 | * coex profile notifications. Ignore that since only bad consequence |
| 437 | * can be not matching debug print with actual state. |
| 438 | */ |
Wey-Yi Guy | fa7f141 | 2011-06-06 12:49:25 -0700 | [diff] [blame] | 439 | IWL_DEBUG_COEX(priv, "BT traffic load changes: %d\n", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 440 | priv->bt_traffic_load); |
| 441 | |
| 442 | switch (priv->bt_traffic_load) { |
| 443 | case IWL_BT_COEX_TRAFFIC_LOAD_NONE: |
Wey-Yi Guy | f5682c0 | 2010-10-23 09:15:44 -0700 | [diff] [blame] | 444 | if (priv->bt_status) |
| 445 | smps_request = IEEE80211_SMPS_DYNAMIC; |
| 446 | else |
| 447 | smps_request = IEEE80211_SMPS_AUTOMATIC; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 448 | break; |
| 449 | case IWL_BT_COEX_TRAFFIC_LOAD_LOW: |
| 450 | smps_request = IEEE80211_SMPS_DYNAMIC; |
| 451 | break; |
| 452 | case IWL_BT_COEX_TRAFFIC_LOAD_HIGH: |
| 453 | case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS: |
| 454 | smps_request = IEEE80211_SMPS_STATIC; |
| 455 | break; |
| 456 | default: |
| 457 | IWL_ERR(priv, "Invalid BT traffic load: %d\n", |
| 458 | priv->bt_traffic_load); |
| 459 | break; |
| 460 | } |
| 461 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 462 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 463 | |
Stanislaw Gruszka | 5eda74a | 2010-10-22 17:04:28 +0200 | [diff] [blame] | 464 | /* |
| 465 | * We can not send command to firmware while scanning. When the scan |
| 466 | * complete we will schedule this work again. We do check with mutex |
| 467 | * locked to prevent new scan request to arrive. We do not check |
| 468 | * STATUS_SCANNING to avoid race when queue_work two times from |
| 469 | * different notifications, but quit and not perform any work at all. |
| 470 | */ |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 471 | if (test_bit(STATUS_SCAN_HW, &priv->status)) |
Stanislaw Gruszka | 5eda74a | 2010-10-22 17:04:28 +0200 | [diff] [blame] | 472 | goto out; |
| 473 | |
Fry, Donald H | 6b6db91 | 2011-07-08 08:46:17 -0700 | [diff] [blame] | 474 | iwl_update_chain_flags(priv); |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 475 | |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 476 | if (smps_request != -1) { |
Wey-Yi Guy | 88e9ba7 | 2011-06-03 07:54:12 -0700 | [diff] [blame] | 477 | priv->current_ht_config.smps = smps_request; |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 478 | for_each_context(priv, ctx) { |
| 479 | if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION) |
| 480 | ieee80211_request_smps(ctx->vif, smps_request); |
| 481 | } |
| 482 | } |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 483 | |
| 484 | /* |
| 485 | * Dynamic PS poll related functionality. Adjust RSSI measurements if |
| 486 | * necessary. |
| 487 | */ |
| 488 | iwlagn_bt_coex_rssi_monitor(priv); |
Stanislaw Gruszka | 5eda74a | 2010-10-22 17:04:28 +0200 | [diff] [blame] | 489 | out: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 490 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 491 | } |
| 492 | |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 493 | /* |
| 494 | * If BT sco traffic, and RSSI monitor is enabled, move measurements to the |
| 495 | * correct interface or disable it if this is the last interface to be |
| 496 | * removed. |
| 497 | */ |
| 498 | void iwlagn_bt_coex_rssi_monitor(struct iwl_priv *priv) |
| 499 | { |
| 500 | if (priv->bt_is_sco && |
| 501 | priv->bt_traffic_load == IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS) |
| 502 | iwlagn_bt_adjust_rssi_monitor(priv, true); |
| 503 | else |
| 504 | iwlagn_bt_adjust_rssi_monitor(priv, false); |
| 505 | } |
| 506 | |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 507 | static void iwlagn_print_uartmsg(struct iwl_priv *priv, |
| 508 | struct iwl_bt_uart_msg *uart_msg) |
| 509 | { |
Wey-Yi Guy | fa7f141 | 2011-06-06 12:49:25 -0700 | [diff] [blame] | 510 | IWL_DEBUG_COEX(priv, "Message Type = 0x%X, SSN = 0x%X, " |
Johannes Berg | 0ca24da | 2012-03-15 13:26:46 -0700 | [diff] [blame] | 511 | "Update Req = 0x%X\n", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 512 | (BT_UART_MSG_FRAME1MSGTYPE_MSK & uart_msg->frame1) >> |
| 513 | BT_UART_MSG_FRAME1MSGTYPE_POS, |
| 514 | (BT_UART_MSG_FRAME1SSN_MSK & uart_msg->frame1) >> |
| 515 | BT_UART_MSG_FRAME1SSN_POS, |
| 516 | (BT_UART_MSG_FRAME1UPDATEREQ_MSK & uart_msg->frame1) >> |
| 517 | BT_UART_MSG_FRAME1UPDATEREQ_POS); |
| 518 | |
Wey-Yi Guy | fa7f141 | 2011-06-06 12:49:25 -0700 | [diff] [blame] | 519 | IWL_DEBUG_COEX(priv, "Open connections = 0x%X, Traffic load = 0x%X, " |
Johannes Berg | 0ca24da | 2012-03-15 13:26:46 -0700 | [diff] [blame] | 520 | "Chl_SeqN = 0x%X, In band = 0x%X\n", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 521 | (BT_UART_MSG_FRAME2OPENCONNECTIONS_MSK & uart_msg->frame2) >> |
| 522 | BT_UART_MSG_FRAME2OPENCONNECTIONS_POS, |
| 523 | (BT_UART_MSG_FRAME2TRAFFICLOAD_MSK & uart_msg->frame2) >> |
| 524 | BT_UART_MSG_FRAME2TRAFFICLOAD_POS, |
| 525 | (BT_UART_MSG_FRAME2CHLSEQN_MSK & uart_msg->frame2) >> |
| 526 | BT_UART_MSG_FRAME2CHLSEQN_POS, |
| 527 | (BT_UART_MSG_FRAME2INBAND_MSK & uart_msg->frame2) >> |
| 528 | BT_UART_MSG_FRAME2INBAND_POS); |
| 529 | |
Wey-Yi Guy | fa7f141 | 2011-06-06 12:49:25 -0700 | [diff] [blame] | 530 | IWL_DEBUG_COEX(priv, "SCO/eSCO = 0x%X, Sniff = 0x%X, A2DP = 0x%X, " |
Johannes Berg | 0ca24da | 2012-03-15 13:26:46 -0700 | [diff] [blame] | 531 | "ACL = 0x%X, Master = 0x%X, OBEX = 0x%X\n", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 532 | (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3) >> |
| 533 | BT_UART_MSG_FRAME3SCOESCO_POS, |
| 534 | (BT_UART_MSG_FRAME3SNIFF_MSK & uart_msg->frame3) >> |
| 535 | BT_UART_MSG_FRAME3SNIFF_POS, |
| 536 | (BT_UART_MSG_FRAME3A2DP_MSK & uart_msg->frame3) >> |
| 537 | BT_UART_MSG_FRAME3A2DP_POS, |
| 538 | (BT_UART_MSG_FRAME3ACL_MSK & uart_msg->frame3) >> |
| 539 | BT_UART_MSG_FRAME3ACL_POS, |
| 540 | (BT_UART_MSG_FRAME3MASTER_MSK & uart_msg->frame3) >> |
| 541 | BT_UART_MSG_FRAME3MASTER_POS, |
| 542 | (BT_UART_MSG_FRAME3OBEX_MSK & uart_msg->frame3) >> |
| 543 | BT_UART_MSG_FRAME3OBEX_POS); |
| 544 | |
Johannes Berg | 0ca24da | 2012-03-15 13:26:46 -0700 | [diff] [blame] | 545 | IWL_DEBUG_COEX(priv, "Idle duration = 0x%X\n", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 546 | (BT_UART_MSG_FRAME4IDLEDURATION_MSK & uart_msg->frame4) >> |
| 547 | BT_UART_MSG_FRAME4IDLEDURATION_POS); |
| 548 | |
Wey-Yi Guy | fa7f141 | 2011-06-06 12:49:25 -0700 | [diff] [blame] | 549 | IWL_DEBUG_COEX(priv, "Tx Activity = 0x%X, Rx Activity = 0x%X, " |
Johannes Berg | 0ca24da | 2012-03-15 13:26:46 -0700 | [diff] [blame] | 550 | "eSCO Retransmissions = 0x%X\n", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 551 | (BT_UART_MSG_FRAME5TXACTIVITY_MSK & uart_msg->frame5) >> |
| 552 | BT_UART_MSG_FRAME5TXACTIVITY_POS, |
| 553 | (BT_UART_MSG_FRAME5RXACTIVITY_MSK & uart_msg->frame5) >> |
| 554 | BT_UART_MSG_FRAME5RXACTIVITY_POS, |
| 555 | (BT_UART_MSG_FRAME5ESCORETRANSMIT_MSK & uart_msg->frame5) >> |
| 556 | BT_UART_MSG_FRAME5ESCORETRANSMIT_POS); |
| 557 | |
Johannes Berg | 0ca24da | 2012-03-15 13:26:46 -0700 | [diff] [blame] | 558 | IWL_DEBUG_COEX(priv, "Sniff Interval = 0x%X, Discoverable = 0x%X\n", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 559 | (BT_UART_MSG_FRAME6SNIFFINTERVAL_MSK & uart_msg->frame6) >> |
| 560 | BT_UART_MSG_FRAME6SNIFFINTERVAL_POS, |
| 561 | (BT_UART_MSG_FRAME6DISCOVERABLE_MSK & uart_msg->frame6) >> |
| 562 | BT_UART_MSG_FRAME6DISCOVERABLE_POS); |
| 563 | |
Wey-Yi Guy | fa7f141 | 2011-06-06 12:49:25 -0700 | [diff] [blame] | 564 | IWL_DEBUG_COEX(priv, "Sniff Activity = 0x%X, Page = " |
Johannes Berg | 0ca24da | 2012-03-15 13:26:46 -0700 | [diff] [blame] | 565 | "0x%X, Inquiry = 0x%X, Connectable = 0x%X\n", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 566 | (BT_UART_MSG_FRAME7SNIFFACTIVITY_MSK & uart_msg->frame7) >> |
| 567 | BT_UART_MSG_FRAME7SNIFFACTIVITY_POS, |
Wey-Yi Guy | 399f66f | 2011-02-22 08:24:22 -0800 | [diff] [blame] | 568 | (BT_UART_MSG_FRAME7PAGE_MSK & uart_msg->frame7) >> |
| 569 | BT_UART_MSG_FRAME7PAGE_POS, |
| 570 | (BT_UART_MSG_FRAME7INQUIRY_MSK & uart_msg->frame7) >> |
| 571 | BT_UART_MSG_FRAME7INQUIRY_POS, |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 572 | (BT_UART_MSG_FRAME7CONNECTABLE_MSK & uart_msg->frame7) >> |
| 573 | BT_UART_MSG_FRAME7CONNECTABLE_POS); |
| 574 | } |
| 575 | |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 576 | static bool iwlagn_set_kill_msk(struct iwl_priv *priv, |
Wey-Yi Guy | 506aa15 | 2010-11-24 17:25:03 -0800 | [diff] [blame] | 577 | struct iwl_bt_uart_msg *uart_msg) |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 578 | { |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 579 | bool need_update = false; |
Wey-Yi Guy | 9dc4ca9 | 2012-04-19 09:50:06 -0700 | [diff] [blame] | 580 | u8 kill_msk = IWL_BT_KILL_REDUCE; |
| 581 | static const __le32 bt_kill_ack_msg[3] = { |
Wey-Yi Guy | 506aa15 | 2010-11-24 17:25:03 -0800 | [diff] [blame] | 582 | IWLAGN_BT_KILL_ACK_MASK_DEFAULT, |
Wey-Yi Guy | 9dc4ca9 | 2012-04-19 09:50:06 -0700 | [diff] [blame] | 583 | IWLAGN_BT_KILL_ACK_CTS_MASK_SCO, |
| 584 | IWLAGN_BT_KILL_ACK_CTS_MASK_REDUCE}; |
| 585 | static const __le32 bt_kill_cts_msg[3] = { |
Wey-Yi Guy | 506aa15 | 2010-11-24 17:25:03 -0800 | [diff] [blame] | 586 | IWLAGN_BT_KILL_CTS_MASK_DEFAULT, |
Wey-Yi Guy | 9dc4ca9 | 2012-04-19 09:50:06 -0700 | [diff] [blame] | 587 | IWLAGN_BT_KILL_ACK_CTS_MASK_SCO, |
| 588 | IWLAGN_BT_KILL_ACK_CTS_MASK_REDUCE}; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 589 | |
Wey-Yi Guy | 9dc4ca9 | 2012-04-19 09:50:06 -0700 | [diff] [blame] | 590 | if (!priv->reduced_txpower) |
| 591 | kill_msk = (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3) |
| 592 | ? IWL_BT_KILL_OVERRIDE : IWL_BT_KILL_DEFAULT; |
Wey-Yi Guy | 506aa15 | 2010-11-24 17:25:03 -0800 | [diff] [blame] | 593 | if (priv->kill_ack_mask != bt_kill_ack_msg[kill_msk] || |
| 594 | priv->kill_cts_mask != bt_kill_cts_msg[kill_msk]) { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 595 | priv->bt_valid |= IWLAGN_BT_VALID_KILL_ACK_MASK; |
Wey-Yi Guy | 506aa15 | 2010-11-24 17:25:03 -0800 | [diff] [blame] | 596 | priv->kill_ack_mask = bt_kill_ack_msg[kill_msk]; |
| 597 | priv->bt_valid |= IWLAGN_BT_VALID_KILL_CTS_MASK; |
| 598 | priv->kill_cts_mask = bt_kill_cts_msg[kill_msk]; |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 599 | need_update = true; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 600 | } |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 601 | return need_update; |
| 602 | } |
| 603 | |
Wey-Yi Guy | 83ce21d | 2012-05-03 14:22:02 -0700 | [diff] [blame] | 604 | /* |
| 605 | * Upon RSSI changes, sends a bt config command with following changes |
| 606 | * 1. enable/disable "reduced control frames tx power |
| 607 | * 2. update the "kill)ack_mask" and "kill_cts_mask" |
| 608 | * |
| 609 | * If "reduced tx power" is enabled, uCode shall |
| 610 | * 1. ACK/Back/CTS rate shall reduced to 6Mbps |
| 611 | * 2. not use duplciate 20/40MHz mode |
| 612 | */ |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 613 | static bool iwlagn_fill_txpower_mode(struct iwl_priv *priv, |
| 614 | struct iwl_bt_uart_msg *uart_msg) |
| 615 | { |
| 616 | bool need_update = false; |
Wey-Yi Guy | dd551ab | 2012-05-03 14:22:01 -0700 | [diff] [blame] | 617 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
| 618 | int ave_rssi; |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 619 | |
Ilan Peer | e19ebca | 2012-05-10 15:53:14 +0300 | [diff] [blame^] | 620 | if (!ctx->vif || (ctx->vif->type != NL80211_IFTYPE_STATION)) { |
| 621 | IWL_DEBUG_INFO(priv, "BSS ctx not active or not in sta mode\n"); |
| 622 | return false; |
| 623 | } |
| 624 | |
Wey-Yi Guy | dd551ab | 2012-05-03 14:22:01 -0700 | [diff] [blame] | 625 | ave_rssi = ieee80211_ave_rssi(ctx->vif); |
| 626 | if (!ave_rssi) { |
| 627 | /* no rssi data, no changes to reduce tx power */ |
| 628 | IWL_DEBUG_COEX(priv, "no rssi data available\n"); |
| 629 | return need_update; |
| 630 | } |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 631 | if (!priv->reduced_txpower && |
| 632 | !iwl_is_associated(priv, IWL_RXON_CTX_PAN) && |
Wey-Yi Guy | dd551ab | 2012-05-03 14:22:01 -0700 | [diff] [blame] | 633 | (ave_rssi > BT_ENABLE_REDUCED_TXPOWER_THRESHOLD) && |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 634 | (uart_msg->frame3 & (BT_UART_MSG_FRAME3ACL_MSK | |
| 635 | BT_UART_MSG_FRAME3OBEX_MSK)) && |
| 636 | !(uart_msg->frame3 & (BT_UART_MSG_FRAME3SCOESCO_MSK | |
| 637 | BT_UART_MSG_FRAME3SNIFF_MSK | BT_UART_MSG_FRAME3A2DP_MSK))) { |
| 638 | /* enabling reduced tx power */ |
| 639 | priv->reduced_txpower = true; |
| 640 | priv->bt_valid |= IWLAGN_BT_VALID_REDUCED_TX_PWR; |
| 641 | need_update = true; |
| 642 | } else if (priv->reduced_txpower && |
| 643 | (iwl_is_associated(priv, IWL_RXON_CTX_PAN) || |
Wey-Yi Guy | dd551ab | 2012-05-03 14:22:01 -0700 | [diff] [blame] | 644 | (ave_rssi < BT_DISABLE_REDUCED_TXPOWER_THRESHOLD) || |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 645 | (uart_msg->frame3 & (BT_UART_MSG_FRAME3SCOESCO_MSK | |
| 646 | BT_UART_MSG_FRAME3SNIFF_MSK | BT_UART_MSG_FRAME3A2DP_MSK)) || |
| 647 | !(uart_msg->frame3 & (BT_UART_MSG_FRAME3ACL_MSK | |
| 648 | BT_UART_MSG_FRAME3OBEX_MSK)))) { |
| 649 | /* disable reduced tx power */ |
| 650 | priv->reduced_txpower = false; |
Wey-Yi Guy | f6be8b7 | 2012-05-03 14:22:03 -0700 | [diff] [blame] | 651 | priv->bt_valid |= IWLAGN_BT_VALID_REDUCED_TX_PWR; |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 652 | need_update = true; |
| 653 | } |
| 654 | |
| 655 | return need_update; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Emmanuel Grumbach | 247c61d | 2011-09-20 15:37:23 -0700 | [diff] [blame] | 658 | int iwlagn_bt_coex_profile_notif(struct iwl_priv *priv, |
Johannes Berg | 48a2d66 | 2012-03-05 11:24:39 -0800 | [diff] [blame] | 659 | struct iwl_rx_cmd_buffer *rxb, |
Emmanuel Grumbach | 247c61d | 2011-09-20 15:37:23 -0700 | [diff] [blame] | 660 | struct iwl_device_cmd *cmd) |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 661 | { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 662 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
Johannes Berg | f8d7c1a | 2012-03-06 13:31:02 -0800 | [diff] [blame] | 663 | struct iwl_bt_coex_profile_notif *coex = (void *)pkt->data; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 664 | struct iwl_bt_uart_msg *uart_msg = &coex->last_bt_uart_msg; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 665 | |
Wey-Yi Guy | c4197c6 | 2011-02-06 08:56:35 -0800 | [diff] [blame] | 666 | if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) { |
| 667 | /* bt coex disabled */ |
Emmanuel Grumbach | 247c61d | 2011-09-20 15:37:23 -0700 | [diff] [blame] | 668 | return 0; |
Wey-Yi Guy | c4197c6 | 2011-02-06 08:56:35 -0800 | [diff] [blame] | 669 | } |
| 670 | |
Wey-Yi Guy | fa7f141 | 2011-06-06 12:49:25 -0700 | [diff] [blame] | 671 | IWL_DEBUG_COEX(priv, "BT Coex notification:\n"); |
| 672 | IWL_DEBUG_COEX(priv, " status: %d\n", coex->bt_status); |
| 673 | IWL_DEBUG_COEX(priv, " traffic load: %d\n", coex->bt_traffic_load); |
| 674 | IWL_DEBUG_COEX(priv, " CI compliance: %d\n", |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 675 | coex->bt_ci_compliance); |
| 676 | iwlagn_print_uartmsg(priv, uart_msg); |
| 677 | |
Wey-Yi Guy | 66e863a5 | 2010-11-08 14:54:37 -0800 | [diff] [blame] | 678 | priv->last_bt_traffic_load = priv->bt_traffic_load; |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 679 | priv->bt_is_sco = iwlagn_bt_traffic_is_sco(uart_msg); |
| 680 | |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 681 | if (priv->iw_mode != NL80211_IFTYPE_ADHOC) { |
| 682 | if (priv->bt_status != coex->bt_status || |
Wey-Yi Guy | 66e863a5 | 2010-11-08 14:54:37 -0800 | [diff] [blame] | 683 | priv->last_bt_traffic_load != coex->bt_traffic_load) { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 684 | if (coex->bt_status) { |
| 685 | /* BT on */ |
| 686 | if (!priv->bt_ch_announce) |
| 687 | priv->bt_traffic_load = |
| 688 | IWL_BT_COEX_TRAFFIC_LOAD_HIGH; |
| 689 | else |
| 690 | priv->bt_traffic_load = |
| 691 | coex->bt_traffic_load; |
| 692 | } else { |
| 693 | /* BT off */ |
| 694 | priv->bt_traffic_load = |
| 695 | IWL_BT_COEX_TRAFFIC_LOAD_NONE; |
| 696 | } |
| 697 | priv->bt_status = coex->bt_status; |
Johannes Berg | 1ee158d | 2012-02-17 10:07:44 -0800 | [diff] [blame] | 698 | queue_work(priv->workqueue, |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 699 | &priv->bt_traffic_change_work); |
| 700 | } |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 701 | } |
| 702 | |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 703 | /* schedule to send runtime bt_config */ |
Wey-Yi Guy | 9dc4ca9 | 2012-04-19 09:50:06 -0700 | [diff] [blame] | 704 | /* check reduce power before change ack/cts kill mask */ |
| 705 | if (iwlagn_fill_txpower_mode(priv, uart_msg) || |
| 706 | iwlagn_set_kill_msk(priv, uart_msg)) |
Wey-Yi Guy | 354ce4a | 2012-04-19 09:48:01 -0700 | [diff] [blame] | 707 | queue_work(priv->workqueue, &priv->bt_runtime_config); |
| 708 | |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 709 | |
| 710 | /* FIXME: based on notification, adjust the prio_boost */ |
| 711 | |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 712 | priv->bt_ci_compliance = coex->bt_ci_compliance; |
Emmanuel Grumbach | 247c61d | 2011-09-20 15:37:23 -0700 | [diff] [blame] | 713 | return 0; |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | void iwlagn_bt_rx_handler_setup(struct iwl_priv *priv) |
| 717 | { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 718 | priv->rx_handlers[REPLY_BT_COEX_PROFILE_NOTIF] = |
| 719 | iwlagn_bt_coex_profile_notif; |
| 720 | } |
| 721 | |
| 722 | void iwlagn_bt_setup_deferred_work(struct iwl_priv *priv) |
| 723 | { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 724 | INIT_WORK(&priv->bt_traffic_change_work, |
| 725 | iwlagn_bt_traffic_change_work); |
| 726 | } |
| 727 | |
| 728 | void iwlagn_bt_cancel_deferred_work(struct iwl_priv *priv) |
| 729 | { |
| 730 | cancel_work_sync(&priv->bt_traffic_change_work); |
| 731 | } |
Johannes Berg | 5de3306 | 2010-09-22 18:01:58 +0200 | [diff] [blame] | 732 | |
| 733 | static bool is_single_rx_stream(struct iwl_priv *priv) |
| 734 | { |
| 735 | return priv->current_ht_config.smps == IEEE80211_SMPS_STATIC || |
| 736 | priv->current_ht_config.single_chain_sufficient; |
| 737 | } |
| 738 | |
| 739 | #define IWL_NUM_RX_CHAINS_MULTIPLE 3 |
| 740 | #define IWL_NUM_RX_CHAINS_SINGLE 2 |
| 741 | #define IWL_NUM_IDLE_CHAINS_DUAL 2 |
| 742 | #define IWL_NUM_IDLE_CHAINS_SINGLE 1 |
| 743 | |
| 744 | /* |
| 745 | * Determine how many receiver/antenna chains to use. |
| 746 | * |
| 747 | * More provides better reception via diversity. Fewer saves power |
| 748 | * at the expense of throughput, but only when not in powersave to |
| 749 | * start with. |
| 750 | * |
| 751 | * MIMO (dual stream) requires at least 2, but works better with 3. |
| 752 | * This does not determine *which* chains to use, just how many. |
| 753 | */ |
| 754 | static int iwl_get_active_rx_chain_count(struct iwl_priv *priv) |
| 755 | { |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 756 | if (priv->cfg->bt_params && |
| 757 | priv->cfg->bt_params->advanced_bt_coexist && |
Johannes Berg | 5de3306 | 2010-09-22 18:01:58 +0200 | [diff] [blame] | 758 | (priv->bt_full_concurrent || |
| 759 | priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) { |
| 760 | /* |
| 761 | * only use chain 'A' in bt high traffic load or |
| 762 | * full concurrency mode |
| 763 | */ |
| 764 | return IWL_NUM_RX_CHAINS_SINGLE; |
| 765 | } |
| 766 | /* # of Rx chains to use when expecting MIMO. */ |
| 767 | if (is_single_rx_stream(priv)) |
| 768 | return IWL_NUM_RX_CHAINS_SINGLE; |
| 769 | else |
| 770 | return IWL_NUM_RX_CHAINS_MULTIPLE; |
| 771 | } |
| 772 | |
| 773 | /* |
| 774 | * When we are in power saving mode, unless device support spatial |
| 775 | * multiplexing power save, use the active count for rx chain count. |
| 776 | */ |
| 777 | static int iwl_get_idle_rx_chain_count(struct iwl_priv *priv, int active_cnt) |
| 778 | { |
| 779 | /* # Rx chains when idling, depending on SMPS mode */ |
| 780 | switch (priv->current_ht_config.smps) { |
| 781 | case IEEE80211_SMPS_STATIC: |
| 782 | case IEEE80211_SMPS_DYNAMIC: |
| 783 | return IWL_NUM_IDLE_CHAINS_SINGLE; |
Wey-Yi Guy | b2ccccd | 2011-11-10 06:55:04 -0800 | [diff] [blame] | 784 | case IEEE80211_SMPS_AUTOMATIC: |
Johannes Berg | 5de3306 | 2010-09-22 18:01:58 +0200 | [diff] [blame] | 785 | case IEEE80211_SMPS_OFF: |
| 786 | return active_cnt; |
| 787 | default: |
| 788 | WARN(1, "invalid SMPS mode %d", |
| 789 | priv->current_ht_config.smps); |
| 790 | return active_cnt; |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | /* up to 4 chains */ |
| 795 | static u8 iwl_count_chain_bitmap(u32 chain_bitmap) |
| 796 | { |
| 797 | u8 res; |
| 798 | res = (chain_bitmap & BIT(0)) >> 0; |
| 799 | res += (chain_bitmap & BIT(1)) >> 1; |
| 800 | res += (chain_bitmap & BIT(2)) >> 2; |
| 801 | res += (chain_bitmap & BIT(3)) >> 3; |
| 802 | return res; |
| 803 | } |
| 804 | |
| 805 | /** |
| 806 | * iwlagn_set_rxon_chain - Set up Rx chain usage in "staging" RXON image |
| 807 | * |
| 808 | * Selects how many and which Rx receivers/antennas/chains to use. |
| 809 | * This should not be used for scan command ... it puts data in wrong place. |
| 810 | */ |
| 811 | void iwlagn_set_rxon_chain(struct iwl_priv *priv, struct iwl_rxon_context *ctx) |
| 812 | { |
| 813 | bool is_single = is_single_rx_stream(priv); |
Don Fry | 47107e8 | 2012-03-15 13:27:06 -0700 | [diff] [blame] | 814 | bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status); |
Johannes Berg | 5de3306 | 2010-09-22 18:01:58 +0200 | [diff] [blame] | 815 | u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt; |
| 816 | u32 active_chains; |
| 817 | u16 rx_chain; |
| 818 | |
| 819 | /* Tell uCode which antennas are actually connected. |
| 820 | * Before first association, we assume all antennas are connected. |
| 821 | * Just after first association, iwl_chain_noise_calibration() |
| 822 | * checks which antennas actually *are* connected. */ |
| 823 | if (priv->chain_noise_data.active_chains) |
| 824 | active_chains = priv->chain_noise_data.active_chains; |
| 825 | else |
Johannes Berg | 9e29511 | 2012-04-09 17:46:55 -0700 | [diff] [blame] | 826 | active_chains = priv->hw_params.valid_rx_ant; |
Johannes Berg | 5de3306 | 2010-09-22 18:01:58 +0200 | [diff] [blame] | 827 | |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 828 | if (priv->cfg->bt_params && |
| 829 | priv->cfg->bt_params->advanced_bt_coexist && |
Johannes Berg | 5de3306 | 2010-09-22 18:01:58 +0200 | [diff] [blame] | 830 | (priv->bt_full_concurrent || |
| 831 | priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) { |
| 832 | /* |
| 833 | * only use chain 'A' in bt high traffic load or |
| 834 | * full concurrency mode |
| 835 | */ |
| 836 | active_chains = first_antenna(active_chains); |
| 837 | } |
| 838 | |
| 839 | rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS; |
| 840 | |
| 841 | /* How many receivers should we use? */ |
| 842 | active_rx_cnt = iwl_get_active_rx_chain_count(priv); |
| 843 | idle_rx_cnt = iwl_get_idle_rx_chain_count(priv, active_rx_cnt); |
| 844 | |
| 845 | |
| 846 | /* correct rx chain count according hw settings |
| 847 | * and chain noise calibration |
| 848 | */ |
| 849 | valid_rx_cnt = iwl_count_chain_bitmap(active_chains); |
| 850 | if (valid_rx_cnt < active_rx_cnt) |
| 851 | active_rx_cnt = valid_rx_cnt; |
| 852 | |
| 853 | if (valid_rx_cnt < idle_rx_cnt) |
| 854 | idle_rx_cnt = valid_rx_cnt; |
| 855 | |
| 856 | rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS; |
| 857 | rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS; |
| 858 | |
| 859 | ctx->staging.rx_chain = cpu_to_le16(rx_chain); |
| 860 | |
| 861 | if (!is_single && (active_rx_cnt >= IWL_NUM_RX_CHAINS_SINGLE) && is_cam) |
| 862 | ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK; |
| 863 | else |
| 864 | ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK; |
| 865 | |
| 866 | IWL_DEBUG_ASSOC(priv, "rx_chain=0x%X active=%d idle=%d\n", |
| 867 | ctx->staging.rx_chain, |
| 868 | active_rx_cnt, idle_rx_cnt); |
| 869 | |
| 870 | WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 || |
| 871 | active_rx_cnt < idle_rx_cnt); |
| 872 | } |
Johannes Berg | facd982 | 2010-09-22 18:02:05 +0200 | [diff] [blame] | 873 | |
| 874 | u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant, u8 valid) |
| 875 | { |
| 876 | int i; |
| 877 | u8 ind = ant; |
| 878 | |
| 879 | if (priv->band == IEEE80211_BAND_2GHZ && |
| 880 | priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) |
| 881 | return 0; |
| 882 | |
| 883 | for (i = 0; i < RATE_ANT_NUM - 1; i++) { |
| 884 | ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0; |
| 885 | if (valid & BIT(ind)) |
| 886 | return ind; |
| 887 | } |
| 888 | return ant; |
| 889 | } |
Johannes Berg | fed7329 | 2010-09-22 18:02:06 +0200 | [diff] [blame] | 890 | |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 891 | #ifdef CONFIG_PM_SLEEP |
| 892 | static void iwlagn_convert_p1k(u16 *p1k, __le16 *out) |
| 893 | { |
| 894 | int i; |
| 895 | |
| 896 | for (i = 0; i < IWLAGN_P1K_SIZE; i++) |
| 897 | out[i] = cpu_to_le16(p1k[i]); |
| 898 | } |
| 899 | |
| 900 | struct wowlan_key_data { |
| 901 | struct iwl_rxon_context *ctx; |
| 902 | struct iwlagn_wowlan_rsc_tsc_params_cmd *rsc_tsc; |
| 903 | struct iwlagn_wowlan_tkip_params_cmd *tkip; |
| 904 | const u8 *bssid; |
| 905 | bool error, use_rsc_tsc, use_tkip; |
| 906 | }; |
| 907 | |
| 908 | |
| 909 | static void iwlagn_wowlan_program_keys(struct ieee80211_hw *hw, |
| 910 | struct ieee80211_vif *vif, |
| 911 | struct ieee80211_sta *sta, |
| 912 | struct ieee80211_key_conf *key, |
| 913 | void *_data) |
| 914 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 915 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 916 | struct wowlan_key_data *data = _data; |
| 917 | struct iwl_rxon_context *ctx = data->ctx; |
| 918 | struct aes_sc *aes_sc, *aes_tx_sc = NULL; |
| 919 | struct tkip_sc *tkip_sc, *tkip_tx_sc = NULL; |
| 920 | struct iwlagn_p1k_cache *rx_p1ks; |
| 921 | u8 *rx_mic_key; |
| 922 | struct ieee80211_key_seq seq; |
| 923 | u32 cur_rx_iv32 = 0; |
| 924 | u16 p1k[IWLAGN_P1K_SIZE]; |
| 925 | int ret, i; |
| 926 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 927 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 928 | |
| 929 | if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 || |
| 930 | key->cipher == WLAN_CIPHER_SUITE_WEP104) && |
| 931 | !sta && !ctx->key_mapping_keys) |
| 932 | ret = iwl_set_default_wep_key(priv, ctx, key); |
| 933 | else |
| 934 | ret = iwl_set_dynamic_key(priv, ctx, key, sta); |
| 935 | |
| 936 | if (ret) { |
| 937 | IWL_ERR(priv, "Error setting key during suspend!\n"); |
| 938 | data->error = true; |
| 939 | } |
| 940 | |
| 941 | switch (key->cipher) { |
| 942 | case WLAN_CIPHER_SUITE_TKIP: |
| 943 | if (sta) { |
| 944 | tkip_sc = data->rsc_tsc->all_tsc_rsc.tkip.unicast_rsc; |
| 945 | tkip_tx_sc = &data->rsc_tsc->all_tsc_rsc.tkip.tsc; |
| 946 | |
| 947 | rx_p1ks = data->tkip->rx_uni; |
| 948 | |
| 949 | ieee80211_get_key_tx_seq(key, &seq); |
| 950 | tkip_tx_sc->iv16 = cpu_to_le16(seq.tkip.iv16); |
| 951 | tkip_tx_sc->iv32 = cpu_to_le32(seq.tkip.iv32); |
| 952 | |
| 953 | ieee80211_get_tkip_p1k_iv(key, seq.tkip.iv32, p1k); |
| 954 | iwlagn_convert_p1k(p1k, data->tkip->tx.p1k); |
| 955 | |
| 956 | memcpy(data->tkip->mic_keys.tx, |
| 957 | &key->key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY], |
| 958 | IWLAGN_MIC_KEY_SIZE); |
| 959 | |
| 960 | rx_mic_key = data->tkip->mic_keys.rx_unicast; |
| 961 | } else { |
| 962 | tkip_sc = |
| 963 | data->rsc_tsc->all_tsc_rsc.tkip.multicast_rsc; |
| 964 | rx_p1ks = data->tkip->rx_multi; |
| 965 | rx_mic_key = data->tkip->mic_keys.rx_mcast; |
| 966 | } |
| 967 | |
| 968 | /* |
| 969 | * For non-QoS this relies on the fact that both the uCode and |
| 970 | * mac80211 use TID 0 (as they need to to avoid replay attacks) |
| 971 | * for checking the IV in the frames. |
| 972 | */ |
| 973 | for (i = 0; i < IWLAGN_NUM_RSC; i++) { |
| 974 | ieee80211_get_key_rx_seq(key, i, &seq); |
| 975 | tkip_sc[i].iv16 = cpu_to_le16(seq.tkip.iv16); |
| 976 | tkip_sc[i].iv32 = cpu_to_le32(seq.tkip.iv32); |
| 977 | /* wrapping isn't allowed, AP must rekey */ |
| 978 | if (seq.tkip.iv32 > cur_rx_iv32) |
| 979 | cur_rx_iv32 = seq.tkip.iv32; |
| 980 | } |
| 981 | |
| 982 | ieee80211_get_tkip_rx_p1k(key, data->bssid, cur_rx_iv32, p1k); |
| 983 | iwlagn_convert_p1k(p1k, rx_p1ks[0].p1k); |
| 984 | ieee80211_get_tkip_rx_p1k(key, data->bssid, |
| 985 | cur_rx_iv32 + 1, p1k); |
| 986 | iwlagn_convert_p1k(p1k, rx_p1ks[1].p1k); |
| 987 | |
| 988 | memcpy(rx_mic_key, |
| 989 | &key->key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY], |
| 990 | IWLAGN_MIC_KEY_SIZE); |
| 991 | |
| 992 | data->use_tkip = true; |
| 993 | data->use_rsc_tsc = true; |
| 994 | break; |
| 995 | case WLAN_CIPHER_SUITE_CCMP: |
| 996 | if (sta) { |
| 997 | u8 *pn = seq.ccmp.pn; |
| 998 | |
| 999 | aes_sc = data->rsc_tsc->all_tsc_rsc.aes.unicast_rsc; |
| 1000 | aes_tx_sc = &data->rsc_tsc->all_tsc_rsc.aes.tsc; |
| 1001 | |
| 1002 | ieee80211_get_key_tx_seq(key, &seq); |
| 1003 | aes_tx_sc->pn = cpu_to_le64( |
| 1004 | (u64)pn[5] | |
| 1005 | ((u64)pn[4] << 8) | |
| 1006 | ((u64)pn[3] << 16) | |
| 1007 | ((u64)pn[2] << 24) | |
| 1008 | ((u64)pn[1] << 32) | |
| 1009 | ((u64)pn[0] << 40)); |
| 1010 | } else |
| 1011 | aes_sc = data->rsc_tsc->all_tsc_rsc.aes.multicast_rsc; |
| 1012 | |
| 1013 | /* |
| 1014 | * For non-QoS this relies on the fact that both the uCode and |
| 1015 | * mac80211 use TID 0 for checking the IV in the frames. |
| 1016 | */ |
| 1017 | for (i = 0; i < IWLAGN_NUM_RSC; i++) { |
| 1018 | u8 *pn = seq.ccmp.pn; |
| 1019 | |
| 1020 | ieee80211_get_key_rx_seq(key, i, &seq); |
| 1021 | aes_sc->pn = cpu_to_le64( |
| 1022 | (u64)pn[5] | |
| 1023 | ((u64)pn[4] << 8) | |
| 1024 | ((u64)pn[3] << 16) | |
| 1025 | ((u64)pn[2] << 24) | |
| 1026 | ((u64)pn[1] << 32) | |
| 1027 | ((u64)pn[0] << 40)); |
| 1028 | } |
| 1029 | data->use_rsc_tsc = true; |
| 1030 | break; |
| 1031 | } |
| 1032 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1033 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1034 | } |
| 1035 | |
| 1036 | int iwlagn_send_patterns(struct iwl_priv *priv, |
| 1037 | struct cfg80211_wowlan *wowlan) |
| 1038 | { |
| 1039 | struct iwlagn_wowlan_patterns_cmd *pattern_cmd; |
| 1040 | struct iwl_host_cmd cmd = { |
| 1041 | .id = REPLY_WOWLAN_PATTERNS, |
| 1042 | .dataflags[0] = IWL_HCMD_DFL_NOCOPY, |
| 1043 | .flags = CMD_SYNC, |
| 1044 | }; |
| 1045 | int i, err; |
| 1046 | |
| 1047 | if (!wowlan->n_patterns) |
| 1048 | return 0; |
| 1049 | |
| 1050 | cmd.len[0] = sizeof(*pattern_cmd) + |
| 1051 | wowlan->n_patterns * sizeof(struct iwlagn_wowlan_pattern); |
| 1052 | |
| 1053 | pattern_cmd = kmalloc(cmd.len[0], GFP_KERNEL); |
| 1054 | if (!pattern_cmd) |
| 1055 | return -ENOMEM; |
| 1056 | |
| 1057 | pattern_cmd->n_patterns = cpu_to_le32(wowlan->n_patterns); |
| 1058 | |
| 1059 | for (i = 0; i < wowlan->n_patterns; i++) { |
| 1060 | int mask_len = DIV_ROUND_UP(wowlan->patterns[i].pattern_len, 8); |
| 1061 | |
| 1062 | memcpy(&pattern_cmd->patterns[i].mask, |
| 1063 | wowlan->patterns[i].mask, mask_len); |
| 1064 | memcpy(&pattern_cmd->patterns[i].pattern, |
| 1065 | wowlan->patterns[i].pattern, |
| 1066 | wowlan->patterns[i].pattern_len); |
| 1067 | pattern_cmd->patterns[i].mask_size = mask_len; |
| 1068 | pattern_cmd->patterns[i].pattern_size = |
| 1069 | wowlan->patterns[i].pattern_len; |
| 1070 | } |
| 1071 | |
| 1072 | cmd.data[0] = pattern_cmd; |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 1073 | err = iwl_dvm_send_cmd(priv, &cmd); |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1074 | kfree(pattern_cmd); |
| 1075 | return err; |
| 1076 | } |
| 1077 | |
Johannes Berg | ea886a6 | 2012-03-07 09:52:15 -0800 | [diff] [blame] | 1078 | int iwlagn_suspend(struct iwl_priv *priv, struct cfg80211_wowlan *wowlan) |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1079 | { |
| 1080 | struct iwlagn_wowlan_wakeup_filter_cmd wakeup_filter_cmd; |
| 1081 | struct iwl_rxon_cmd rxon; |
| 1082 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
| 1083 | struct iwlagn_wowlan_kek_kck_material_cmd kek_kck_cmd; |
| 1084 | struct iwlagn_wowlan_tkip_params_cmd tkip_cmd = {}; |
| 1085 | struct iwlagn_d3_config_cmd d3_cfg_cmd = {}; |
| 1086 | struct wowlan_key_data key_data = { |
| 1087 | .ctx = ctx, |
| 1088 | .bssid = ctx->active.bssid_addr, |
| 1089 | .use_rsc_tsc = false, |
| 1090 | .tkip = &tkip_cmd, |
| 1091 | .use_tkip = false, |
| 1092 | }; |
| 1093 | int ret, i; |
| 1094 | u16 seq; |
| 1095 | |
| 1096 | key_data.rsc_tsc = kzalloc(sizeof(*key_data.rsc_tsc), GFP_KERNEL); |
| 1097 | if (!key_data.rsc_tsc) |
| 1098 | return -ENOMEM; |
| 1099 | |
| 1100 | memset(&wakeup_filter_cmd, 0, sizeof(wakeup_filter_cmd)); |
| 1101 | |
| 1102 | /* |
| 1103 | * We know the last used seqno, and the uCode expects to know that |
| 1104 | * one, it will increment before TX. |
| 1105 | */ |
| 1106 | seq = le16_to_cpu(priv->last_seq_ctl) & IEEE80211_SCTL_SEQ; |
| 1107 | wakeup_filter_cmd.non_qos_seq = cpu_to_le16(seq); |
| 1108 | |
| 1109 | /* |
| 1110 | * For QoS counters, we store the one to use next, so subtract 0x10 |
| 1111 | * since the uCode will add 0x10 before using the value. |
| 1112 | */ |
Johannes Berg | e0467a3 | 2011-12-02 12:24:45 -0800 | [diff] [blame] | 1113 | for (i = 0; i < IWL_MAX_TID_COUNT; i++) { |
Emmanuel Grumbach | 04cf682 | 2011-11-23 11:06:12 +0200 | [diff] [blame] | 1114 | seq = priv->tid_data[IWL_AP_ID][i].seq_number; |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1115 | seq -= 0x10; |
| 1116 | wakeup_filter_cmd.qos_seq[i] = cpu_to_le16(seq); |
| 1117 | } |
| 1118 | |
| 1119 | if (wowlan->disconnect) |
| 1120 | wakeup_filter_cmd.enabled |= |
| 1121 | cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_BEACON_MISS | |
| 1122 | IWLAGN_WOWLAN_WAKEUP_LINK_CHANGE); |
| 1123 | if (wowlan->magic_pkt) |
| 1124 | wakeup_filter_cmd.enabled |= |
| 1125 | cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_MAGIC_PACKET); |
| 1126 | if (wowlan->gtk_rekey_failure) |
| 1127 | wakeup_filter_cmd.enabled |= |
| 1128 | cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_GTK_REKEY_FAIL); |
| 1129 | if (wowlan->eap_identity_req) |
| 1130 | wakeup_filter_cmd.enabled |= |
| 1131 | cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_EAP_IDENT_REQ); |
| 1132 | if (wowlan->four_way_handshake) |
| 1133 | wakeup_filter_cmd.enabled |= |
| 1134 | cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_4WAY_HANDSHAKE); |
| 1135 | if (wowlan->n_patterns) |
| 1136 | wakeup_filter_cmd.enabled |= |
| 1137 | cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_PATTERN_MATCH); |
| 1138 | |
| 1139 | if (wowlan->rfkill_release) |
| 1140 | d3_cfg_cmd.wakeup_flags |= |
| 1141 | cpu_to_le32(IWLAGN_D3_WAKEUP_RFKILL); |
| 1142 | |
| 1143 | iwl_scan_cancel_timeout(priv, 200); |
| 1144 | |
| 1145 | memcpy(&rxon, &ctx->active, sizeof(rxon)); |
| 1146 | |
David Spinadel | 8f7ffbe | 2012-03-10 13:00:10 -0800 | [diff] [blame] | 1147 | priv->ucode_loaded = false; |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1148 | iwl_trans_stop_device(priv->trans); |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1149 | |
Johannes Berg | 15b86bf | 2012-03-05 11:24:36 -0800 | [diff] [blame] | 1150 | priv->wowlan = true; |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1151 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 1152 | ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_WOWLAN); |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1153 | if (ret) |
| 1154 | goto out; |
| 1155 | |
| 1156 | /* now configure WoWLAN ucode */ |
| 1157 | ret = iwl_alive_start(priv); |
| 1158 | if (ret) |
| 1159 | goto out; |
| 1160 | |
| 1161 | memcpy(&ctx->staging, &rxon, sizeof(rxon)); |
| 1162 | ret = iwlagn_commit_rxon(priv, ctx); |
| 1163 | if (ret) |
| 1164 | goto out; |
| 1165 | |
| 1166 | ret = iwl_power_update_mode(priv, true); |
| 1167 | if (ret) |
| 1168 | goto out; |
| 1169 | |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 1170 | if (!iwlwifi_mod_params.sw_crypto) { |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1171 | /* mark all keys clear */ |
| 1172 | priv->ucode_key_table = 0; |
| 1173 | ctx->key_mapping_keys = 0; |
| 1174 | |
| 1175 | /* |
| 1176 | * This needs to be unlocked due to lock ordering |
| 1177 | * constraints. Since we're in the suspend path |
| 1178 | * that isn't really a problem though. |
| 1179 | */ |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1180 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1181 | ieee80211_iter_keys(priv->hw, ctx->vif, |
| 1182 | iwlagn_wowlan_program_keys, |
| 1183 | &key_data); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1184 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1185 | if (key_data.error) { |
| 1186 | ret = -EIO; |
| 1187 | goto out; |
| 1188 | } |
| 1189 | |
| 1190 | if (key_data.use_rsc_tsc) { |
| 1191 | struct iwl_host_cmd rsc_tsc_cmd = { |
| 1192 | .id = REPLY_WOWLAN_TSC_RSC_PARAMS, |
| 1193 | .flags = CMD_SYNC, |
| 1194 | .data[0] = key_data.rsc_tsc, |
| 1195 | .dataflags[0] = IWL_HCMD_DFL_NOCOPY, |
Johannes Berg | 182ada1 | 2012-03-04 08:31:35 -0800 | [diff] [blame] | 1196 | .len[0] = sizeof(*key_data.rsc_tsc), |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1197 | }; |
| 1198 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 1199 | ret = iwl_dvm_send_cmd(priv, &rsc_tsc_cmd); |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1200 | if (ret) |
| 1201 | goto out; |
| 1202 | } |
| 1203 | |
| 1204 | if (key_data.use_tkip) { |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 1205 | ret = iwl_dvm_send_cmd_pdu(priv, |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1206 | REPLY_WOWLAN_TKIP_PARAMS, |
| 1207 | CMD_SYNC, sizeof(tkip_cmd), |
| 1208 | &tkip_cmd); |
| 1209 | if (ret) |
| 1210 | goto out; |
| 1211 | } |
| 1212 | |
| 1213 | if (priv->have_rekey_data) { |
| 1214 | memset(&kek_kck_cmd, 0, sizeof(kek_kck_cmd)); |
| 1215 | memcpy(kek_kck_cmd.kck, priv->kck, NL80211_KCK_LEN); |
| 1216 | kek_kck_cmd.kck_len = cpu_to_le16(NL80211_KCK_LEN); |
| 1217 | memcpy(kek_kck_cmd.kek, priv->kek, NL80211_KEK_LEN); |
| 1218 | kek_kck_cmd.kek_len = cpu_to_le16(NL80211_KEK_LEN); |
| 1219 | kek_kck_cmd.replay_ctr = priv->replay_ctr; |
| 1220 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 1221 | ret = iwl_dvm_send_cmd_pdu(priv, |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1222 | REPLY_WOWLAN_KEK_KCK_MATERIAL, |
| 1223 | CMD_SYNC, sizeof(kek_kck_cmd), |
| 1224 | &kek_kck_cmd); |
| 1225 | if (ret) |
| 1226 | goto out; |
| 1227 | } |
| 1228 | } |
| 1229 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 1230 | ret = iwl_dvm_send_cmd_pdu(priv, REPLY_D3_CONFIG, CMD_SYNC, |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1231 | sizeof(d3_cfg_cmd), &d3_cfg_cmd); |
| 1232 | if (ret) |
| 1233 | goto out; |
| 1234 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 1235 | ret = iwl_dvm_send_cmd_pdu(priv, REPLY_WOWLAN_WAKEUP_FILTER, |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 1236 | CMD_SYNC, sizeof(wakeup_filter_cmd), |
| 1237 | &wakeup_filter_cmd); |
| 1238 | if (ret) |
| 1239 | goto out; |
| 1240 | |
| 1241 | ret = iwlagn_send_patterns(priv, wowlan); |
| 1242 | out: |
| 1243 | kfree(key_data.rsc_tsc); |
| 1244 | return ret; |
| 1245 | } |
| 1246 | #endif |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 1247 | |
| 1248 | int iwl_dvm_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd) |
| 1249 | { |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1250 | if (iwl_is_rfkill(priv) || iwl_is_ctkill(priv)) { |
Johannes Berg | 721c32f | 2012-03-06 13:30:40 -0800 | [diff] [blame] | 1251 | IWL_WARN(priv, "Not sending command - %s KILL\n", |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1252 | iwl_is_rfkill(priv) ? "RF" : "CT"); |
Johannes Berg | 721c32f | 2012-03-06 13:30:40 -0800 | [diff] [blame] | 1253 | return -EIO; |
| 1254 | } |
| 1255 | |
Don Fry | 17acd0b | 2012-03-15 13:27:05 -0700 | [diff] [blame] | 1256 | if (test_bit(STATUS_FW_ERROR, &priv->status)) { |
| 1257 | IWL_ERR(priv, "Command %s failed: FW Error\n", |
Johannes Berg | d9fb646 | 2012-03-26 08:23:39 -0700 | [diff] [blame] | 1258 | iwl_dvm_get_cmd_string(cmd->id)); |
Don Fry | 17acd0b | 2012-03-15 13:27:05 -0700 | [diff] [blame] | 1259 | return -EIO; |
| 1260 | } |
| 1261 | |
Johannes Berg | 2cc39c9 | 2012-03-06 13:30:41 -0800 | [diff] [blame] | 1262 | /* |
| 1263 | * Synchronous commands from this op-mode must hold |
| 1264 | * the mutex, this ensures we don't try to send two |
| 1265 | * (or more) synchronous commands at a time. |
| 1266 | */ |
| 1267 | if (cmd->flags & CMD_SYNC) |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1268 | lockdep_assert_held(&priv->mutex); |
Johannes Berg | 2cc39c9 | 2012-03-06 13:30:41 -0800 | [diff] [blame] | 1269 | |
Johannes Berg | 947a940 | 2012-03-06 13:30:59 -0800 | [diff] [blame] | 1270 | if (priv->ucode_owner == IWL_OWNERSHIP_TM && |
| 1271 | !(cmd->flags & CMD_ON_DEMAND)) { |
| 1272 | IWL_DEBUG_HC(priv, "tm own the uCode, no regular hcmd send\n"); |
| 1273 | return -EIO; |
| 1274 | } |
| 1275 | |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1276 | return iwl_trans_send_cmd(priv->trans, cmd); |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 1277 | } |
| 1278 | |
| 1279 | int iwl_dvm_send_cmd_pdu(struct iwl_priv *priv, u8 id, |
| 1280 | u32 flags, u16 len, const void *data) |
| 1281 | { |
| 1282 | struct iwl_host_cmd cmd = { |
| 1283 | .id = id, |
| 1284 | .len = { len, }, |
| 1285 | .data = { data, }, |
| 1286 | .flags = flags, |
| 1287 | }; |
| 1288 | |
| 1289 | return iwl_dvm_send_cmd(priv, &cmd); |
| 1290 | } |