Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 3 | * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved. |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 4 | * |
| 5 | * Portions of this file are derived from the ipw3945 project, as well |
| 6 | * as portions of the ieee80211 subsystem header files. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of version 2 of the GNU General Public License as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 14 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 15 | * more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * this program; if not, write to the Free Software Foundation, Inc., |
| 19 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 20 | * |
| 21 | * The full GNU General Public License is included in this distribution in the |
| 22 | * file called LICENSE. |
| 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 | *****************************************************************************/ |
| 29 | #include <linux/kernel.h> |
| 30 | #include <linux/module.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <linux/dma-mapping.h> |
| 34 | #include <linux/delay.h> |
| 35 | #include <linux/sched.h> |
| 36 | #include <linux/skbuff.h> |
| 37 | #include <linux/netdevice.h> |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 38 | #include <linux/etherdevice.h> |
| 39 | #include <linux/if_arp.h> |
| 40 | |
Johannes Berg | 53e1116 | 2012-05-16 23:59:03 +0200 | [diff] [blame] | 41 | #include <net/ieee80211_radiotap.h> |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 42 | #include <net/mac80211.h> |
| 43 | |
| 44 | #include <asm/div64.h> |
| 45 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 46 | #include "iwl-io.h" |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 47 | #include "iwl-trans.h" |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 48 | #include "iwl-op-mode.h" |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 49 | #include "iwl-modparams.h" |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 50 | |
Johannes Berg | 1023fdc | 2012-05-15 12:16:34 +0200 | [diff] [blame] | 51 | #include "dev.h" |
| 52 | #include "calib.h" |
| 53 | #include "agn.h" |
| 54 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 55 | /***************************************************************************** |
| 56 | * |
| 57 | * mac80211 entry point functions |
| 58 | * |
| 59 | *****************************************************************************/ |
| 60 | |
| 61 | static const struct ieee80211_iface_limit iwlagn_sta_ap_limits[] = { |
| 62 | { |
| 63 | .max = 1, |
| 64 | .types = BIT(NL80211_IFTYPE_STATION), |
| 65 | }, |
| 66 | { |
| 67 | .max = 1, |
| 68 | .types = BIT(NL80211_IFTYPE_AP), |
| 69 | }, |
| 70 | }; |
| 71 | |
| 72 | static const struct ieee80211_iface_limit iwlagn_2sta_limits[] = { |
| 73 | { |
| 74 | .max = 2, |
| 75 | .types = BIT(NL80211_IFTYPE_STATION), |
| 76 | }, |
| 77 | }; |
| 78 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 79 | static const struct ieee80211_iface_combination |
| 80 | iwlagn_iface_combinations_dualmode[] = { |
| 81 | { .num_different_channels = 1, |
| 82 | .max_interfaces = 2, |
| 83 | .beacon_int_infra_match = true, |
| 84 | .limits = iwlagn_sta_ap_limits, |
| 85 | .n_limits = ARRAY_SIZE(iwlagn_sta_ap_limits), |
| 86 | }, |
| 87 | { .num_different_channels = 1, |
| 88 | .max_interfaces = 2, |
| 89 | .limits = iwlagn_2sta_limits, |
| 90 | .n_limits = ARRAY_SIZE(iwlagn_2sta_limits), |
| 91 | }, |
| 92 | }; |
| 93 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 94 | /* |
| 95 | * Not a mac80211 entry point function, but it fits in with all the |
| 96 | * other mac80211 functions grouped here. |
| 97 | */ |
| 98 | int iwlagn_mac_setup_register(struct iwl_priv *priv, |
Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 99 | const struct iwl_ucode_capabilities *capa) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 100 | { |
| 101 | int ret; |
| 102 | struct ieee80211_hw *hw = priv->hw; |
| 103 | struct iwl_rxon_context *ctx; |
| 104 | |
| 105 | hw->rate_control_algorithm = "iwl-agn-rs"; |
| 106 | |
| 107 | /* Tell mac80211 our characteristics */ |
| 108 | hw->flags = IEEE80211_HW_SIGNAL_DBM | |
| 109 | IEEE80211_HW_AMPDU_AGGREGATION | |
Emmanuel Grumbach | c65dd14 | 2012-12-12 10:12:24 +0200 | [diff] [blame] | 110 | IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 111 | IEEE80211_HW_SPECTRUM_MGMT | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 112 | IEEE80211_HW_REPORTS_TX_ACK_STATUS | |
| 113 | IEEE80211_HW_QUEUE_CONTROL | |
| 114 | IEEE80211_HW_SUPPORTS_PS | |
| 115 | IEEE80211_HW_SUPPORTS_DYNAMIC_PS | |
Johannes Berg | f1e3e05 | 2013-02-06 23:57:57 +0100 | [diff] [blame] | 116 | IEEE80211_HW_WANT_MONITOR_VIF; |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 117 | |
| 118 | hw->offchannel_tx_hw_queue = IWL_AUX_QUEUE; |
Johannes Berg | 53e1116 | 2012-05-16 23:59:03 +0200 | [diff] [blame] | 119 | hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FMT; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 120 | |
| 121 | /* |
| 122 | * Including the following line will crash some AP's. This |
| 123 | * workaround removes the stimulus which causes the crash until |
| 124 | * the AP software can be fixed. |
| 125 | hw->max_tx_aggregation_subframes = LINK_QUAL_AGG_FRAME_LIMIT_DEF; |
| 126 | */ |
| 127 | |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 128 | if (priv->nvm_data->sku_cap_11n_enable) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 129 | hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS | |
| 130 | IEEE80211_HW_SUPPORTS_STATIC_SMPS; |
| 131 | |
Johannes Berg | 686681b | 2012-11-15 11:35:57 +0100 | [diff] [blame] | 132 | /* |
| 133 | * Enable 11w if advertised by firmware and software crypto |
| 134 | * is not enabled (as the firmware will interpret some mgmt |
| 135 | * packets, so enabling it with software crypto isn't safe) |
| 136 | */ |
| 137 | if (priv->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP && |
| 138 | !iwlwifi_mod_params.sw_crypto) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 139 | hw->flags |= IEEE80211_HW_MFP_CAPABLE; |
| 140 | |
| 141 | hw->sta_data_size = sizeof(struct iwl_station_priv); |
| 142 | hw->vif_data_size = sizeof(struct iwl_vif_priv); |
| 143 | |
| 144 | for_each_context(priv, ctx) { |
| 145 | hw->wiphy->interface_modes |= ctx->interface_modes; |
| 146 | hw->wiphy->interface_modes |= ctx->exclusive_interface_modes; |
| 147 | } |
| 148 | |
| 149 | BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2); |
| 150 | |
Johannes Berg | da4f87f | 2013-07-01 13:48:56 +0200 | [diff] [blame] | 151 | if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) { |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 152 | hw->wiphy->iface_combinations = |
| 153 | iwlagn_iface_combinations_dualmode; |
| 154 | hw->wiphy->n_iface_combinations = |
| 155 | ARRAY_SIZE(iwlagn_iface_combinations_dualmode); |
| 156 | } |
| 157 | |
Luis R. Rodriguez | a2f73b6 | 2013-11-11 22:15:29 +0100 | [diff] [blame] | 158 | hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN; |
| 159 | hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG | |
| 160 | REGULATORY_DISABLE_BEACON_HINTS; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 161 | |
Johannes Berg | fcb6ff5 | 2012-06-04 13:43:11 +0200 | [diff] [blame] | 162 | #ifdef CONFIG_PM_SLEEP |
David Spinadel | 6dfa8d0 | 2012-03-10 13:00:14 -0800 | [diff] [blame] | 163 | if (priv->fw->img[IWL_UCODE_WOWLAN].sec[0].len && |
Johannes Berg | ddaf5a5 | 2013-01-08 11:25:44 +0100 | [diff] [blame] | 164 | priv->trans->ops->d3_suspend && |
| 165 | priv->trans->ops->d3_resume && |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 166 | device_can_wakeup(priv->trans->dev)) { |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 167 | priv->wowlan_support.flags = WIPHY_WOWLAN_MAGIC_PKT | |
| 168 | WIPHY_WOWLAN_DISCONNECT | |
| 169 | WIPHY_WOWLAN_EAP_IDENTITY_REQ | |
| 170 | WIPHY_WOWLAN_RFKILL_RELEASE; |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 171 | if (!iwlwifi_mod_params.sw_crypto) |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 172 | priv->wowlan_support.flags |= |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 173 | WIPHY_WOWLAN_SUPPORTS_GTK_REKEY | |
| 174 | WIPHY_WOWLAN_GTK_REKEY_FAILURE; |
| 175 | |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 176 | priv->wowlan_support.n_patterns = IWLAGN_WOWLAN_MAX_PATTERNS; |
| 177 | priv->wowlan_support.pattern_min_len = |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 178 | IWLAGN_WOWLAN_MIN_PATTERN_LEN; |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 179 | priv->wowlan_support.pattern_max_len = |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 180 | IWLAGN_WOWLAN_MAX_PATTERN_LEN; |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 181 | hw->wiphy->wowlan = &priv->wowlan_support; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 182 | } |
Johannes Berg | fcb6ff5 | 2012-06-04 13:43:11 +0200 | [diff] [blame] | 183 | #endif |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 184 | |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 185 | if (iwlwifi_mod_params.power_save) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 186 | hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 187 | else |
| 188 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 189 | |
| 190 | hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX; |
David Spinadel | 4f9bfbb | 2012-05-11 10:53:16 +0200 | [diff] [blame] | 191 | /* we create the 802.11 header and a max-length SSID element */ |
| 192 | hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 34; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 193 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 194 | /* |
| 195 | * We don't use all queues: 4 and 9 are unused and any |
| 196 | * aggregation queue gets mapped down to the AC queue. |
| 197 | */ |
| 198 | hw->queues = IWLAGN_FIRST_AMPDU_QUEUE; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 199 | |
| 200 | hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL; |
| 201 | |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 202 | if (priv->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 203 | priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 204 | &priv->nvm_data->bands[IEEE80211_BAND_2GHZ]; |
| 205 | if (priv->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 206 | priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 207 | &priv->nvm_data->bands[IEEE80211_BAND_5GHZ]; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 208 | |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 209 | hw->wiphy->hw_version = priv->trans->hw_id; |
Wey-Yi Guy | 0ba958e | 2011-12-10 11:33:52 -0800 | [diff] [blame] | 210 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 211 | iwl_leds_init(priv); |
| 212 | |
| 213 | ret = ieee80211_register_hw(priv->hw); |
| 214 | if (ret) { |
| 215 | IWL_ERR(priv, "Failed to register hw (error %d)\n", ret); |
Johannes Berg | 0e1fa7e | 2012-06-05 09:38:35 +0200 | [diff] [blame] | 216 | iwl_leds_exit(priv); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 217 | return ret; |
| 218 | } |
| 219 | priv->mac80211_registered = 1; |
| 220 | |
| 221 | return 0; |
| 222 | } |
| 223 | |
Don Fry | 09af140 | 2011-12-09 10:07:38 -0800 | [diff] [blame] | 224 | void iwlagn_mac_unregister(struct iwl_priv *priv) |
| 225 | { |
| 226 | if (!priv->mac80211_registered) |
| 227 | return; |
| 228 | iwl_leds_exit(priv); |
| 229 | ieee80211_unregister_hw(priv->hw); |
| 230 | priv->mac80211_registered = 0; |
| 231 | } |
| 232 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 233 | static int __iwl_up(struct iwl_priv *priv) |
| 234 | { |
| 235 | struct iwl_rxon_context *ctx; |
| 236 | int ret; |
| 237 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 238 | lockdep_assert_held(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 239 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 240 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 241 | IWL_WARN(priv, "Exit pending; will not bring the NIC up\n"); |
| 242 | return -EIO; |
| 243 | } |
| 244 | |
| 245 | for_each_context(priv, ctx) { |
| 246 | ret = iwlagn_alloc_bcast_station(priv, ctx); |
| 247 | if (ret) { |
| 248 | iwl_dealloc_bcast_stations(priv); |
| 249 | return ret; |
| 250 | } |
| 251 | } |
| 252 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 253 | ret = iwl_run_init_ucode(priv); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 254 | if (ret) { |
| 255 | IWL_ERR(priv, "Failed to run INIT ucode: %d\n", ret); |
| 256 | goto error; |
| 257 | } |
| 258 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 259 | ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 260 | if (ret) { |
| 261 | IWL_ERR(priv, "Failed to start RT ucode: %d\n", ret); |
| 262 | goto error; |
| 263 | } |
| 264 | |
| 265 | ret = iwl_alive_start(priv); |
| 266 | if (ret) |
| 267 | goto error; |
| 268 | return 0; |
| 269 | |
| 270 | error: |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 271 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
Emmanuel Grumbach | 78e5a46 | 2012-02-17 10:34:53 -0800 | [diff] [blame] | 272 | iwl_down(priv); |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 273 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 274 | |
| 275 | IWL_ERR(priv, "Unable to initialize device.\n"); |
| 276 | return ret; |
| 277 | } |
| 278 | |
| 279 | static int iwlagn_mac_start(struct ieee80211_hw *hw) |
| 280 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 281 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 282 | int ret; |
| 283 | |
| 284 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 285 | |
| 286 | /* we should be verifying the device is ready to be opened */ |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 287 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 288 | ret = __iwl_up(priv); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 289 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 290 | if (ret) |
| 291 | return ret; |
| 292 | |
| 293 | IWL_DEBUG_INFO(priv, "Start UP work done.\n"); |
| 294 | |
| 295 | /* Now we should be done, and the READY bit should be set. */ |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 296 | if (WARN_ON(!test_bit(STATUS_READY, &priv->status))) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 297 | ret = -EIO; |
| 298 | |
| 299 | iwlagn_led_enable(priv); |
| 300 | |
| 301 | priv->is_open = 1; |
| 302 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 303 | return 0; |
| 304 | } |
| 305 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 306 | static void iwlagn_mac_stop(struct ieee80211_hw *hw) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 307 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 308 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 309 | |
| 310 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 311 | |
| 312 | if (!priv->is_open) |
| 313 | return; |
| 314 | |
| 315 | priv->is_open = 0; |
| 316 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 317 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 318 | iwl_down(priv); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 319 | mutex_unlock(&priv->mutex); |
Emmanuel Grumbach | 78e5a46 | 2012-02-17 10:34:53 -0800 | [diff] [blame] | 320 | |
| 321 | iwl_cancel_deferred_work(priv); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 322 | |
Johannes Berg | 1ee158d | 2012-02-17 10:07:44 -0800 | [diff] [blame] | 323 | flush_workqueue(priv->workqueue); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 324 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 325 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 326 | } |
| 327 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 328 | static void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw, |
| 329 | struct ieee80211_vif *vif, |
| 330 | struct cfg80211_gtk_rekey_data *data) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 331 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 332 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 333 | |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 334 | if (iwlwifi_mod_params.sw_crypto) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 335 | return; |
| 336 | |
| 337 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 338 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 339 | |
| 340 | if (priv->contexts[IWL_RXON_CTX_BSS].vif != vif) |
| 341 | goto out; |
| 342 | |
| 343 | memcpy(priv->kek, data->kek, NL80211_KEK_LEN); |
| 344 | memcpy(priv->kck, data->kck, NL80211_KCK_LEN); |
| 345 | priv->replay_ctr = |
| 346 | cpu_to_le64(be64_to_cpup((__be64 *)&data->replay_ctr)); |
| 347 | priv->have_rekey_data = true; |
| 348 | |
| 349 | out: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 350 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 351 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 352 | } |
| 353 | |
| 354 | #ifdef CONFIG_PM_SLEEP |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 355 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 356 | static int iwlagn_mac_suspend(struct ieee80211_hw *hw, |
| 357 | struct cfg80211_wowlan *wowlan) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 358 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 359 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 360 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Wey-Yi Guy | 023ca58 | 2011-11-10 06:55:17 -0800 | [diff] [blame] | 361 | int ret; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 362 | |
| 363 | if (WARN_ON(!wowlan)) |
| 364 | return -EINVAL; |
| 365 | |
| 366 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 367 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 368 | |
| 369 | /* Don't attempt WoWLAN when not associated, tear down instead. */ |
| 370 | if (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION || |
| 371 | !iwl_is_associated_ctx(ctx)) { |
| 372 | ret = 1; |
| 373 | goto out; |
| 374 | } |
| 375 | |
Johannes Berg | ea886a6 | 2012-03-07 09:52:15 -0800 | [diff] [blame] | 376 | ret = iwlagn_suspend(priv, wowlan); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 377 | if (ret) |
| 378 | goto error; |
| 379 | |
Johannes Berg | 8ade628 | 2013-05-17 12:01:26 +0200 | [diff] [blame] | 380 | /* let the ucode operate on its own */ |
| 381 | iwl_write32(priv->trans, CSR_UCODE_DRV_GP1_SET, |
| 382 | CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE); |
| 383 | |
Johannes Berg | debff61 | 2013-05-14 13:53:45 +0200 | [diff] [blame] | 384 | iwl_trans_d3_suspend(priv->trans, false); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 385 | |
| 386 | goto out; |
| 387 | |
| 388 | error: |
Johannes Berg | 15b86bf | 2012-03-05 11:24:36 -0800 | [diff] [blame] | 389 | priv->wowlan = false; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 390 | iwlagn_prepare_restart(priv); |
| 391 | ieee80211_restart_hw(priv->hw); |
| 392 | out: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 393 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 394 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 395 | |
| 396 | return ret; |
| 397 | } |
| 398 | |
Johannes Berg | 5718d27 | 2013-01-08 11:29:12 +0100 | [diff] [blame] | 399 | struct iwl_resume_data { |
| 400 | struct iwl_priv *priv; |
| 401 | struct iwlagn_wowlan_status *cmd; |
| 402 | bool valid; |
| 403 | }; |
| 404 | |
| 405 | static bool iwl_resume_status_fn(struct iwl_notif_wait_data *notif_wait, |
| 406 | struct iwl_rx_packet *pkt, void *data) |
| 407 | { |
| 408 | struct iwl_resume_data *resume_data = data; |
| 409 | struct iwl_priv *priv = resume_data->priv; |
Johannes Berg | 5718d27 | 2013-01-08 11:29:12 +0100 | [diff] [blame] | 410 | |
Johannes Berg | 65b3034 | 2014-01-08 13:16:33 +0100 | [diff] [blame^] | 411 | if (iwl_rx_packet_payload_len(pkt) != sizeof(*resume_data->cmd)) { |
Johannes Berg | 5718d27 | 2013-01-08 11:29:12 +0100 | [diff] [blame] | 412 | IWL_ERR(priv, "rx wrong size data\n"); |
| 413 | return true; |
| 414 | } |
| 415 | memcpy(resume_data->cmd, pkt->data, sizeof(*resume_data->cmd)); |
| 416 | resume_data->valid = true; |
| 417 | |
| 418 | return true; |
| 419 | } |
| 420 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 421 | static int iwlagn_mac_resume(struct ieee80211_hw *hw) |
| 422 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 423 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 424 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
| 425 | struct ieee80211_vif *vif; |
Johannes Berg | 5718d27 | 2013-01-08 11:29:12 +0100 | [diff] [blame] | 426 | u32 base; |
| 427 | int ret; |
| 428 | enum iwl_d3_status d3_status; |
| 429 | struct error_table_start { |
| 430 | /* cf. struct iwl_error_event_table */ |
| 431 | u32 valid; |
| 432 | u32 error_id; |
| 433 | } err_info; |
| 434 | struct iwl_notification_wait status_wait; |
| 435 | static const u8 status_cmd[] = { |
| 436 | REPLY_WOWLAN_GET_STATUS, |
| 437 | }; |
| 438 | struct iwlagn_wowlan_status status_data = {}; |
| 439 | struct iwl_resume_data resume_data = { |
| 440 | .priv = priv, |
| 441 | .cmd = &status_data, |
| 442 | .valid = false, |
| 443 | }; |
| 444 | struct cfg80211_wowlan_wakeup wakeup = { |
| 445 | .pattern_idx = -1, |
| 446 | }; |
| 447 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 448 | const struct fw_img *img; |
| 449 | #endif |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 450 | |
| 451 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 452 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 453 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 454 | /* we'll clear ctx->vif during iwlagn_prepare_restart() */ |
| 455 | vif = ctx->vif; |
| 456 | |
Johannes Berg | debff61 | 2013-05-14 13:53:45 +0200 | [diff] [blame] | 457 | ret = iwl_trans_d3_resume(priv->trans, &d3_status, false); |
Johannes Berg | 5718d27 | 2013-01-08 11:29:12 +0100 | [diff] [blame] | 458 | if (ret) |
| 459 | goto out_unlock; |
| 460 | |
| 461 | if (d3_status != IWL_D3_STATUS_ALIVE) { |
| 462 | IWL_INFO(priv, "Device was reset during suspend\n"); |
| 463 | goto out_unlock; |
| 464 | } |
| 465 | |
Johannes Berg | 8ade628 | 2013-05-17 12:01:26 +0200 | [diff] [blame] | 466 | /* uCode is no longer operating by itself */ |
| 467 | iwl_write32(priv->trans, CSR_UCODE_DRV_GP1_CLR, |
| 468 | CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE); |
| 469 | |
Johannes Berg | 5718d27 | 2013-01-08 11:29:12 +0100 | [diff] [blame] | 470 | base = priv->device_pointers.error_event_table; |
| 471 | if (!iwlagn_hw_valid_rtc_data_addr(base)) { |
| 472 | IWL_WARN(priv, "Invalid error table during resume!\n"); |
| 473 | goto out_unlock; |
| 474 | } |
| 475 | |
| 476 | iwl_trans_read_mem_bytes(priv->trans, base, |
| 477 | &err_info, sizeof(err_info)); |
| 478 | |
| 479 | if (err_info.valid) { |
| 480 | IWL_INFO(priv, "error table is valid (%d, 0x%x)\n", |
| 481 | err_info.valid, err_info.error_id); |
| 482 | if (err_info.error_id == RF_KILL_INDICATOR_FOR_WOWLAN) { |
| 483 | wakeup.rfkill_release = true; |
| 484 | ieee80211_report_wowlan_wakeup(vif, &wakeup, |
| 485 | GFP_KERNEL); |
| 486 | } |
| 487 | goto out_unlock; |
| 488 | } |
| 489 | |
| 490 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 491 | img = &priv->fw->img[IWL_UCODE_WOWLAN]; |
| 492 | if (!priv->wowlan_sram) |
| 493 | priv->wowlan_sram = |
| 494 | kzalloc(img->sec[IWL_UCODE_SECTION_DATA].len, |
| 495 | GFP_KERNEL); |
| 496 | |
| 497 | if (priv->wowlan_sram) |
| 498 | iwl_trans_read_mem(priv->trans, 0x800000, |
| 499 | priv->wowlan_sram, |
| 500 | img->sec[IWL_UCODE_SECTION_DATA].len / 4); |
| 501 | #endif |
| 502 | |
| 503 | /* |
| 504 | * This is very strange. The GET_STATUS command is sent but the device |
| 505 | * doesn't reply properly, it seems it doesn't close the RBD so one is |
| 506 | * always left open ... As a result, we need to send another command |
| 507 | * and have to reset the driver afterwards. As we need to switch to |
| 508 | * runtime firmware again that'll happen. |
| 509 | */ |
| 510 | |
| 511 | iwl_init_notification_wait(&priv->notif_wait, &status_wait, status_cmd, |
| 512 | ARRAY_SIZE(status_cmd), iwl_resume_status_fn, |
| 513 | &resume_data); |
| 514 | |
| 515 | iwl_dvm_send_cmd_pdu(priv, REPLY_WOWLAN_GET_STATUS, CMD_ASYNC, 0, NULL); |
| 516 | iwl_dvm_send_cmd_pdu(priv, REPLY_ECHO, CMD_ASYNC, 0, NULL); |
| 517 | /* an RBD is left open in the firmware now! */ |
| 518 | |
| 519 | ret = iwl_wait_notification(&priv->notif_wait, &status_wait, HZ/5); |
| 520 | if (ret) |
| 521 | goto out_unlock; |
| 522 | |
| 523 | if (resume_data.valid && priv->contexts[IWL_RXON_CTX_BSS].vif) { |
| 524 | u32 reasons = le32_to_cpu(status_data.wakeup_reason); |
| 525 | struct cfg80211_wowlan_wakeup *wakeup_report; |
| 526 | |
| 527 | IWL_INFO(priv, "WoWLAN wakeup reason(s): 0x%.8x\n", reasons); |
| 528 | |
| 529 | if (reasons) { |
| 530 | if (reasons & IWLAGN_WOWLAN_WAKEUP_MAGIC_PACKET) |
| 531 | wakeup.magic_pkt = true; |
| 532 | if (reasons & IWLAGN_WOWLAN_WAKEUP_PATTERN_MATCH) |
| 533 | wakeup.pattern_idx = status_data.pattern_number; |
| 534 | if (reasons & (IWLAGN_WOWLAN_WAKEUP_BEACON_MISS | |
| 535 | IWLAGN_WOWLAN_WAKEUP_LINK_CHANGE)) |
| 536 | wakeup.disconnect = true; |
| 537 | if (reasons & IWLAGN_WOWLAN_WAKEUP_GTK_REKEY_FAIL) |
| 538 | wakeup.gtk_rekey_failure = true; |
| 539 | if (reasons & IWLAGN_WOWLAN_WAKEUP_EAP_IDENT_REQ) |
| 540 | wakeup.eap_identity_req = true; |
| 541 | if (reasons & IWLAGN_WOWLAN_WAKEUP_4WAY_HANDSHAKE) |
| 542 | wakeup.four_way_handshake = true; |
| 543 | wakeup_report = &wakeup; |
| 544 | } else { |
| 545 | wakeup_report = NULL; |
| 546 | } |
| 547 | |
| 548 | ieee80211_report_wowlan_wakeup(vif, wakeup_report, GFP_KERNEL); |
| 549 | } |
| 550 | |
Johannes Berg | 15b86bf | 2012-03-05 11:24:36 -0800 | [diff] [blame] | 551 | priv->wowlan = false; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 552 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 553 | iwlagn_prepare_restart(priv); |
| 554 | |
| 555 | memset((void *)&ctx->active, 0, sizeof(ctx->active)); |
| 556 | iwl_connection_init_rx_config(priv, ctx); |
| 557 | iwlagn_set_rxon_chain(priv, ctx); |
| 558 | |
Johannes Berg | 5718d27 | 2013-01-08 11:29:12 +0100 | [diff] [blame] | 559 | out_unlock: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 560 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 561 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 562 | |
| 563 | ieee80211_resume_disconnect(vif); |
| 564 | |
| 565 | return 1; |
| 566 | } |
| 567 | |
Johannes Berg | 76ed2ed | 2012-05-16 22:54:25 +0200 | [diff] [blame] | 568 | static void iwlagn_mac_set_wakeup(struct ieee80211_hw *hw, bool enabled) |
| 569 | { |
| 570 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
| 571 | |
| 572 | device_set_wakeup_enable(priv->trans->dev, enabled); |
| 573 | } |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 574 | #endif |
| 575 | |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 576 | static void iwlagn_mac_tx(struct ieee80211_hw *hw, |
| 577 | struct ieee80211_tx_control *control, |
| 578 | struct sk_buff *skb) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 579 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 580 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 581 | |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 582 | if (iwlagn_tx_skb(priv, control->sta, skb)) |
Johannes Berg | 31df3bb | 2012-10-31 22:07:39 +0100 | [diff] [blame] | 583 | ieee80211_free_txskb(hw, skb); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 584 | } |
| 585 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 586 | static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw, |
| 587 | struct ieee80211_vif *vif, |
| 588 | struct ieee80211_key_conf *keyconf, |
| 589 | struct ieee80211_sta *sta, |
| 590 | u32 iv32, u16 *phase1key) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 591 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 592 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 593 | |
| 594 | iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key); |
| 595 | } |
| 596 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 597 | static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
| 598 | struct ieee80211_vif *vif, |
| 599 | struct ieee80211_sta *sta, |
| 600 | struct ieee80211_key_conf *key) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 601 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 602 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 603 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 604 | struct iwl_rxon_context *ctx = vif_priv->ctx; |
| 605 | int ret; |
| 606 | bool is_default_wep_key = false; |
| 607 | |
| 608 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 609 | |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 610 | if (iwlwifi_mod_params.sw_crypto) { |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 611 | IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n"); |
| 612 | return -EOPNOTSUPP; |
| 613 | } |
| 614 | |
Johannes Berg | a7e12c8 | 2011-11-25 03:20:09 -0800 | [diff] [blame] | 615 | switch (key->cipher) { |
| 616 | case WLAN_CIPHER_SUITE_TKIP: |
| 617 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
| 618 | /* fall through */ |
| 619 | case WLAN_CIPHER_SUITE_CCMP: |
| 620 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 621 | break; |
| 622 | default: |
| 623 | break; |
| 624 | } |
| 625 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 626 | /* |
| 627 | * We could program these keys into the hardware as well, but we |
| 628 | * don't expect much multicast traffic in IBSS and having keys |
| 629 | * for more stations is probably more useful. |
| 630 | * |
| 631 | * Mark key TX-only and return 0. |
| 632 | */ |
| 633 | if (vif->type == NL80211_IFTYPE_ADHOC && |
| 634 | !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) { |
| 635 | key->hw_key_idx = WEP_INVALID_OFFSET; |
| 636 | return 0; |
| 637 | } |
| 638 | |
| 639 | /* If they key was TX-only, accept deletion */ |
| 640 | if (cmd == DISABLE_KEY && key->hw_key_idx == WEP_INVALID_OFFSET) |
| 641 | return 0; |
| 642 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 643 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 644 | iwl_scan_cancel_timeout(priv, 100); |
| 645 | |
| 646 | BUILD_BUG_ON(WEP_INVALID_OFFSET == IWLAGN_HW_KEY_DEFAULT); |
| 647 | |
| 648 | /* |
| 649 | * If we are getting WEP group key and we didn't receive any key mapping |
| 650 | * so far, we are in legacy wep mode (group key only), otherwise we are |
| 651 | * in 1X mode. |
| 652 | * In legacy wep mode, we use another host command to the uCode. |
| 653 | */ |
| 654 | if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 || |
| 655 | key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) { |
| 656 | if (cmd == SET_KEY) |
| 657 | is_default_wep_key = !ctx->key_mapping_keys; |
| 658 | else |
| 659 | is_default_wep_key = |
| 660 | key->hw_key_idx == IWLAGN_HW_KEY_DEFAULT; |
| 661 | } |
| 662 | |
| 663 | |
| 664 | switch (cmd) { |
| 665 | case SET_KEY: |
| 666 | if (is_default_wep_key) { |
| 667 | ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key); |
| 668 | break; |
| 669 | } |
| 670 | ret = iwl_set_dynamic_key(priv, vif_priv->ctx, key, sta); |
| 671 | if (ret) { |
| 672 | /* |
| 673 | * can't add key for RX, but we don't need it |
| 674 | * in the device for TX so still return 0 |
| 675 | */ |
| 676 | ret = 0; |
| 677 | key->hw_key_idx = WEP_INVALID_OFFSET; |
| 678 | } |
| 679 | |
| 680 | IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n"); |
| 681 | break; |
| 682 | case DISABLE_KEY: |
| 683 | if (is_default_wep_key) |
| 684 | ret = iwl_remove_default_wep_key(priv, ctx, key); |
| 685 | else |
| 686 | ret = iwl_remove_dynamic_key(priv, ctx, key, sta); |
| 687 | |
| 688 | IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n"); |
| 689 | break; |
| 690 | default: |
| 691 | ret = -EINVAL; |
| 692 | } |
| 693 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 694 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 695 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 696 | |
| 697 | return ret; |
| 698 | } |
| 699 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 700 | static int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw, |
| 701 | struct ieee80211_vif *vif, |
| 702 | enum ieee80211_ampdu_mlme_action action, |
| 703 | struct ieee80211_sta *sta, u16 tid, u16 *ssn, |
| 704 | u8 buf_size) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 705 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 706 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 707 | int ret = -EINVAL; |
| 708 | struct iwl_station_priv *sta_priv = (void *) sta->drv_priv; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 709 | |
| 710 | IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n", |
| 711 | sta->addr, tid); |
| 712 | |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 713 | if (!(priv->nvm_data->sku_cap_11n_enable)) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 714 | return -EACCES; |
| 715 | |
| 716 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 717 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 718 | |
| 719 | switch (action) { |
| 720 | case IEEE80211_AMPDU_RX_START: |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 721 | if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG) |
Johannes Berg | 7428994 | 2011-12-13 00:07:40 -0800 | [diff] [blame] | 722 | break; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 723 | IWL_DEBUG_HT(priv, "start Rx\n"); |
| 724 | ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn); |
| 725 | break; |
| 726 | case IEEE80211_AMPDU_RX_STOP: |
| 727 | IWL_DEBUG_HT(priv, "stop Rx\n"); |
| 728 | ret = iwl_sta_rx_agg_stop(priv, sta, tid); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 729 | break; |
| 730 | case IEEE80211_AMPDU_TX_START: |
Emmanuel Grumbach | 4beaf6c | 2012-05-29 11:29:10 +0300 | [diff] [blame] | 731 | if (!priv->trans->ops->txq_enable) |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 732 | break; |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 733 | if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG) |
Johannes Berg | 7428994 | 2011-12-13 00:07:40 -0800 | [diff] [blame] | 734 | break; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 735 | IWL_DEBUG_HT(priv, "start Tx\n"); |
| 736 | ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn); |
| 737 | break; |
Johannes Berg | 18b559d | 2012-07-18 13:51:25 +0200 | [diff] [blame] | 738 | case IEEE80211_AMPDU_TX_STOP_FLUSH: |
| 739 | case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: |
Emmanuel Grumbach | 2d055af | 2013-04-07 10:13:44 +0300 | [diff] [blame] | 740 | IWL_DEBUG_HT(priv, "Flush Tx\n"); |
| 741 | ret = iwlagn_tx_agg_flush(priv, vif, sta, tid); |
| 742 | break; |
| 743 | case IEEE80211_AMPDU_TX_STOP_CONT: |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 744 | IWL_DEBUG_HT(priv, "stop Tx\n"); |
| 745 | ret = iwlagn_tx_agg_stop(priv, vif, sta, tid); |
| 746 | if ((ret == 0) && (priv->agg_tids_count > 0)) { |
| 747 | priv->agg_tids_count--; |
| 748 | IWL_DEBUG_HT(priv, "priv->agg_tids_count = %u\n", |
| 749 | priv->agg_tids_count); |
| 750 | } |
Johannes Berg | b9ad70d | 2012-03-06 13:30:55 -0800 | [diff] [blame] | 751 | if (!priv->agg_tids_count && |
Johannes Berg | 9e29511 | 2012-04-09 17:46:55 -0700 | [diff] [blame] | 752 | priv->hw_params.use_rts_for_aggregation) { |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 753 | /* |
| 754 | * switch off RTS/CTS if it was previously enabled |
| 755 | */ |
| 756 | sta_priv->lq_sta.lq.general_params.flags &= |
| 757 | ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK; |
| 758 | iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif), |
| 759 | &sta_priv->lq_sta.lq, CMD_ASYNC, false); |
| 760 | } |
| 761 | break; |
| 762 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
Emmanuel Grumbach | 822e8b2 | 2011-11-21 13:25:31 +0200 | [diff] [blame] | 763 | ret = iwlagn_tx_agg_oper(priv, vif, sta, tid, buf_size); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 764 | break; |
| 765 | } |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 766 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 767 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 768 | return ret; |
| 769 | } |
| 770 | |
| 771 | static int iwlagn_mac_sta_add(struct ieee80211_hw *hw, |
| 772 | struct ieee80211_vif *vif, |
| 773 | struct ieee80211_sta *sta) |
| 774 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 775 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 776 | struct iwl_station_priv *sta_priv = (void *)sta->drv_priv; |
| 777 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 778 | bool is_ap = vif->type == NL80211_IFTYPE_STATION; |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 779 | int ret; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 780 | u8 sta_id; |
| 781 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 782 | IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n", |
| 783 | sta->addr); |
| 784 | sta_priv->sta_id = IWL_INVALID_STATION; |
| 785 | |
| 786 | atomic_set(&sta_priv->pending_frames, 0); |
| 787 | if (vif->type == NL80211_IFTYPE_AP) |
| 788 | sta_priv->client = true; |
| 789 | |
| 790 | ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr, |
| 791 | is_ap, sta, &sta_id); |
| 792 | if (ret) { |
| 793 | IWL_ERR(priv, "Unable to add station %pM (%d)\n", |
| 794 | sta->addr, ret); |
| 795 | /* Should we return success if return code is EEXIST ? */ |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 796 | return ret; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 797 | } |
| 798 | |
| 799 | sta_priv->sta_id = sta_id; |
| 800 | |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 801 | return 0; |
| 802 | } |
| 803 | |
| 804 | static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw, |
| 805 | struct ieee80211_vif *vif, |
| 806 | struct ieee80211_sta *sta) |
| 807 | { |
| 808 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
| 809 | struct iwl_station_priv *sta_priv = (void *)sta->drv_priv; |
| 810 | int ret; |
| 811 | |
Johannes Berg | 9742051 | 2012-03-07 09:52:42 -0800 | [diff] [blame] | 812 | IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n", sta->addr); |
| 813 | |
| 814 | if (vif->type == NL80211_IFTYPE_STATION) { |
| 815 | /* |
| 816 | * Station will be removed from device when the RXON |
| 817 | * is set to unassociated -- just deactivate it here |
| 818 | * to avoid re-programming it. |
| 819 | */ |
| 820 | ret = 0; |
| 821 | iwl_deactivate_station(priv, sta_priv->sta_id, sta->addr); |
| 822 | } else { |
| 823 | ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr); |
| 824 | if (ret) |
| 825 | IWL_DEBUG_QUIET_RFKILL(priv, |
| 826 | "Error removing station %pM\n", sta->addr); |
| 827 | } |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 828 | return ret; |
| 829 | } |
| 830 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 831 | static int iwlagn_mac_sta_state(struct ieee80211_hw *hw, |
| 832 | struct ieee80211_vif *vif, |
| 833 | struct ieee80211_sta *sta, |
| 834 | enum ieee80211_sta_state old_state, |
| 835 | enum ieee80211_sta_state new_state) |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 836 | { |
| 837 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Johannes Berg | ab0bd5b | 2012-03-05 11:24:47 -0800 | [diff] [blame] | 838 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 839 | enum { |
Johannes Berg | ab0bd5b | 2012-03-05 11:24:47 -0800 | [diff] [blame] | 840 | NONE, ADD, REMOVE, HT_RATE_INIT, ADD_RATE_INIT, |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 841 | } op = NONE; |
| 842 | int ret; |
| 843 | |
| 844 | IWL_DEBUG_MAC80211(priv, "station %pM state change %d->%d\n", |
| 845 | sta->addr, old_state, new_state); |
| 846 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 847 | mutex_lock(&priv->mutex); |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 848 | if (vif->type == NL80211_IFTYPE_STATION) { |
| 849 | if (old_state == IEEE80211_STA_NOTEXIST && |
| 850 | new_state == IEEE80211_STA_NONE) |
| 851 | op = ADD; |
| 852 | else if (old_state == IEEE80211_STA_NONE && |
| 853 | new_state == IEEE80211_STA_NOTEXIST) |
| 854 | op = REMOVE; |
| 855 | else if (old_state == IEEE80211_STA_AUTH && |
| 856 | new_state == IEEE80211_STA_ASSOC) |
Johannes Berg | ab0bd5b | 2012-03-05 11:24:47 -0800 | [diff] [blame] | 857 | op = HT_RATE_INIT; |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 858 | } else { |
| 859 | if (old_state == IEEE80211_STA_AUTH && |
| 860 | new_state == IEEE80211_STA_ASSOC) |
| 861 | op = ADD_RATE_INIT; |
| 862 | else if (old_state == IEEE80211_STA_ASSOC && |
| 863 | new_state == IEEE80211_STA_AUTH) |
| 864 | op = REMOVE; |
| 865 | } |
| 866 | |
| 867 | switch (op) { |
| 868 | case ADD: |
| 869 | ret = iwlagn_mac_sta_add(hw, vif, sta); |
Johannes Berg | eac9ac6 | 2012-06-25 09:36:41 +0200 | [diff] [blame] | 870 | if (ret) |
| 871 | break; |
| 872 | /* |
| 873 | * Clear the in-progress flag, the AP station entry was added |
| 874 | * but we'll initialize LQ only when we've associated (which |
| 875 | * would also clear the in-progress flag). This is necessary |
| 876 | * in case we never initialize LQ because association fails. |
| 877 | */ |
| 878 | spin_lock_bh(&priv->sta_lock); |
| 879 | priv->stations[iwl_sta_id(sta)].used &= |
| 880 | ~IWL_STA_UCODE_INPROGRESS; |
| 881 | spin_unlock_bh(&priv->sta_lock); |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 882 | break; |
| 883 | case REMOVE: |
| 884 | ret = iwlagn_mac_sta_remove(hw, vif, sta); |
| 885 | break; |
| 886 | case ADD_RATE_INIT: |
| 887 | ret = iwlagn_mac_sta_add(hw, vif, sta); |
| 888 | if (ret) |
| 889 | break; |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 890 | /* Initialize rate scaling */ |
| 891 | IWL_DEBUG_INFO(priv, |
| 892 | "Initializing rate scaling for station %pM\n", |
| 893 | sta->addr); |
| 894 | iwl_rs_rate_init(priv, sta, iwl_sta_id(sta)); |
| 895 | ret = 0; |
| 896 | break; |
Johannes Berg | ab0bd5b | 2012-03-05 11:24:47 -0800 | [diff] [blame] | 897 | case HT_RATE_INIT: |
| 898 | /* Initialize rate scaling */ |
| 899 | ret = iwl_sta_update_ht(priv, vif_priv->ctx, sta); |
| 900 | if (ret) |
| 901 | break; |
| 902 | IWL_DEBUG_INFO(priv, |
| 903 | "Initializing rate scaling for station %pM\n", |
| 904 | sta->addr); |
| 905 | iwl_rs_rate_init(priv, sta, iwl_sta_id(sta)); |
| 906 | ret = 0; |
| 907 | break; |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 908 | default: |
| 909 | ret = 0; |
| 910 | break; |
| 911 | } |
| 912 | |
| 913 | /* |
| 914 | * mac80211 might WARN if we fail, but due the way we |
| 915 | * (badly) handle hard rfkill, we might fail here |
| 916 | */ |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 917 | if (iwl_is_rfkill(priv)) |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 918 | ret = 0; |
| 919 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 920 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 921 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 922 | |
| 923 | return ret; |
| 924 | } |
| 925 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 926 | static void iwlagn_mac_channel_switch(struct ieee80211_hw *hw, |
| 927 | struct ieee80211_channel_switch *ch_switch) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 928 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 929 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 930 | struct ieee80211_conf *conf = &hw->conf; |
Johannes Berg | 85220d7 | 2013-03-25 18:29:27 +0100 | [diff] [blame] | 931 | struct ieee80211_channel *channel = ch_switch->chandef.chan; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 932 | struct iwl_ht_config *ht_conf = &priv->current_ht_config; |
| 933 | /* |
| 934 | * MULTI-FIXME |
| 935 | * When we add support for multiple interfaces, we need to |
| 936 | * revisit this. The channel switch command in the device |
| 937 | * only affects the BSS context, but what does that really |
| 938 | * mean? And what if we get a CSA on the second interface? |
| 939 | * This needs a lot of work. |
| 940 | */ |
| 941 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
| 942 | u16 ch; |
| 943 | |
| 944 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 945 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 946 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 947 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 948 | if (iwl_is_rfkill(priv)) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 949 | goto out; |
| 950 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 951 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || |
| 952 | test_bit(STATUS_SCANNING, &priv->status) || |
| 953 | test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status)) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 954 | goto out; |
| 955 | |
| 956 | if (!iwl_is_associated_ctx(ctx)) |
| 957 | goto out; |
| 958 | |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 959 | if (!priv->lib->set_channel_switch) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 960 | goto out; |
| 961 | |
| 962 | ch = channel->hw_value; |
| 963 | if (le16_to_cpu(ctx->active.channel) == ch) |
| 964 | goto out; |
| 965 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 966 | priv->current_ht_config.smps = conf->smps_mode; |
| 967 | |
| 968 | /* Configure HT40 channels */ |
Johannes Berg | 85220d7 | 2013-03-25 18:29:27 +0100 | [diff] [blame] | 969 | switch (cfg80211_get_chandef_type(&ch_switch->chandef)) { |
| 970 | case NL80211_CHAN_NO_HT: |
| 971 | case NL80211_CHAN_HT20: |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 972 | ctx->ht.is_40mhz = false; |
Johannes Berg | 85220d7 | 2013-03-25 18:29:27 +0100 | [diff] [blame] | 973 | ctx->ht.extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE; |
| 974 | break; |
| 975 | case NL80211_CHAN_HT40MINUS: |
| 976 | ctx->ht.extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW; |
| 977 | ctx->ht.is_40mhz = true; |
| 978 | break; |
| 979 | case NL80211_CHAN_HT40PLUS: |
| 980 | ctx->ht.extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE; |
| 981 | ctx->ht.is_40mhz = true; |
| 982 | break; |
| 983 | } |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 984 | |
| 985 | if ((le16_to_cpu(ctx->staging.channel) != ch)) |
| 986 | ctx->staging.flags = 0; |
| 987 | |
| 988 | iwl_set_rxon_channel(priv, channel, ctx); |
| 989 | iwl_set_rxon_ht(priv, ht_conf); |
| 990 | iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif); |
| 991 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 992 | /* |
| 993 | * at this point, staging_rxon has the |
| 994 | * configuration for channel switch |
| 995 | */ |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 996 | set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 997 | priv->switch_channel = cpu_to_le16(ch); |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 998 | if (priv->lib->set_channel_switch(priv, ch_switch)) { |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 999 | clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1000 | priv->switch_channel = 0; |
| 1001 | ieee80211_chswitch_done(ctx->vif, false); |
| 1002 | } |
| 1003 | |
| 1004 | out: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1005 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1006 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 1007 | } |
| 1008 | |
Meenakshi Venkataraman | bedec3a | 2012-03-13 17:47:23 -0700 | [diff] [blame] | 1009 | void iwl_chswitch_done(struct iwl_priv *priv, bool is_success) |
| 1010 | { |
| 1011 | /* |
| 1012 | * MULTI-FIXME |
| 1013 | * See iwlagn_mac_channel_switch. |
| 1014 | */ |
| 1015 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
| 1016 | |
| 1017 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 1018 | return; |
| 1019 | |
Stanislaw Gruszka | 9186a1fd | 2013-07-26 15:29:09 +0200 | [diff] [blame] | 1020 | if (!test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status)) |
| 1021 | return; |
| 1022 | |
| 1023 | if (ctx->vif) |
Meenakshi Venkataraman | bedec3a | 2012-03-13 17:47:23 -0700 | [diff] [blame] | 1024 | ieee80211_chswitch_done(ctx->vif, is_success); |
| 1025 | } |
| 1026 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1027 | static void iwlagn_configure_filter(struct ieee80211_hw *hw, |
| 1028 | unsigned int changed_flags, |
| 1029 | unsigned int *total_flags, |
| 1030 | u64 multicast) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1031 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1032 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1033 | __le32 filter_or = 0, filter_nand = 0; |
| 1034 | struct iwl_rxon_context *ctx; |
| 1035 | |
| 1036 | #define CHK(test, flag) do { \ |
| 1037 | if (*total_flags & (test)) \ |
| 1038 | filter_or |= (flag); \ |
| 1039 | else \ |
| 1040 | filter_nand |= (flag); \ |
| 1041 | } while (0) |
| 1042 | |
| 1043 | IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n", |
| 1044 | changed_flags, *total_flags); |
| 1045 | |
| 1046 | CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK); |
| 1047 | /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */ |
| 1048 | CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK); |
| 1049 | CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK); |
| 1050 | |
| 1051 | #undef CHK |
| 1052 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1053 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1054 | |
| 1055 | for_each_context(priv, ctx) { |
| 1056 | ctx->staging.filter_flags &= ~filter_nand; |
| 1057 | ctx->staging.filter_flags |= filter_or; |
| 1058 | |
| 1059 | /* |
| 1060 | * Not committing directly because hardware can perform a scan, |
| 1061 | * but we'll eventually commit the filter flags change anyway. |
| 1062 | */ |
| 1063 | } |
| 1064 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1065 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1066 | |
| 1067 | /* |
| 1068 | * Receiving all multicast frames is always enabled by the |
| 1069 | * default flags setup in iwl_connection_init_rx_config() |
| 1070 | * since we currently do not support programming multicast |
| 1071 | * filters into the device. |
| 1072 | */ |
| 1073 | *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS | |
| 1074 | FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL; |
| 1075 | } |
| 1076 | |
Johannes Berg | 39ecc01 | 2013-02-13 12:11:00 +0100 | [diff] [blame] | 1077 | static void iwlagn_mac_flush(struct ieee80211_hw *hw, u32 queues, bool drop) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1078 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1079 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1080 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1081 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1082 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 1083 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1084 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1085 | IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n"); |
| 1086 | goto done; |
| 1087 | } |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1088 | if (iwl_is_rfkill(priv)) { |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1089 | IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n"); |
| 1090 | goto done; |
| 1091 | } |
| 1092 | |
| 1093 | /* |
| 1094 | * mac80211 will not push any more frames for transmit |
| 1095 | * until the flush is completed |
| 1096 | */ |
| 1097 | if (drop) { |
| 1098 | IWL_DEBUG_MAC80211(priv, "send flush command\n"); |
Emmanuel Grumbach | 2d055af | 2013-04-07 10:13:44 +0300 | [diff] [blame] | 1099 | if (iwlagn_txfifo_flush(priv, 0)) { |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1100 | IWL_ERR(priv, "flush request fail\n"); |
| 1101 | goto done; |
| 1102 | } |
| 1103 | } |
| 1104 | IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n"); |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1105 | iwl_trans_wait_tx_queue_empty(priv->trans); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1106 | done: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1107 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1108 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 1109 | } |
| 1110 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1111 | static void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw, |
Emmanuel Grumbach | 887da91 | 2013-01-20 17:32:41 +0200 | [diff] [blame] | 1112 | struct ieee80211_vif *vif, |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1113 | enum ieee80211_rssi_event rssi_event) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1114 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1115 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1116 | |
| 1117 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1118 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1119 | |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 1120 | if (priv->lib->bt_params && |
| 1121 | priv->lib->bt_params->advanced_bt_coexist) { |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1122 | if (rssi_event == RSSI_EVENT_LOW) |
| 1123 | priv->bt_enable_pspoll = true; |
| 1124 | else if (rssi_event == RSSI_EVENT_HIGH) |
| 1125 | priv->bt_enable_pspoll = false; |
| 1126 | |
| 1127 | iwlagn_send_advance_bt_config(priv); |
| 1128 | } else { |
| 1129 | IWL_DEBUG_MAC80211(priv, "Advanced BT coex disabled," |
| 1130 | "ignoring RSSI callback\n"); |
| 1131 | } |
| 1132 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1133 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1134 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 1135 | } |
| 1136 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1137 | static int iwlagn_mac_set_tim(struct ieee80211_hw *hw, |
| 1138 | struct ieee80211_sta *sta, bool set) |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1139 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1140 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1141 | |
Johannes Berg | 1ee158d | 2012-02-17 10:07:44 -0800 | [diff] [blame] | 1142 | queue_work(priv->workqueue, &priv->beacon_update); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1143 | |
| 1144 | return 0; |
| 1145 | } |
| 1146 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1147 | static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw, |
| 1148 | struct ieee80211_vif *vif, u16 queue, |
| 1149 | const struct ieee80211_tx_queue_params *params) |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1150 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1151 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1152 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 1153 | struct iwl_rxon_context *ctx = vif_priv->ctx; |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1154 | int q; |
| 1155 | |
| 1156 | if (WARN_ON(!ctx)) |
| 1157 | return -EINVAL; |
| 1158 | |
| 1159 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 1160 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1161 | if (!iwl_is_ready_rf(priv)) { |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1162 | IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n"); |
| 1163 | return -EIO; |
| 1164 | } |
| 1165 | |
| 1166 | if (queue >= AC_NUM) { |
| 1167 | IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue); |
| 1168 | return 0; |
| 1169 | } |
| 1170 | |
| 1171 | q = AC_NUM - 1 - queue; |
| 1172 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1173 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1174 | |
| 1175 | ctx->qos_data.def_qos_parm.ac[q].cw_min = |
| 1176 | cpu_to_le16(params->cw_min); |
| 1177 | ctx->qos_data.def_qos_parm.ac[q].cw_max = |
| 1178 | cpu_to_le16(params->cw_max); |
| 1179 | ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs; |
| 1180 | ctx->qos_data.def_qos_parm.ac[q].edca_txop = |
| 1181 | cpu_to_le16((params->txop * 32)); |
| 1182 | |
| 1183 | ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0; |
| 1184 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1185 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1186 | |
| 1187 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 1188 | return 0; |
| 1189 | } |
| 1190 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1191 | static int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw) |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1192 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1193 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1194 | |
| 1195 | return priv->ibss_manager == IWL_IBSS_MANAGER; |
| 1196 | } |
| 1197 | |
| 1198 | static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx) |
| 1199 | { |
| 1200 | iwl_connection_init_rx_config(priv, ctx); |
| 1201 | |
| 1202 | iwlagn_set_rxon_chain(priv, ctx); |
| 1203 | |
| 1204 | return iwlagn_commit_rxon(priv, ctx); |
| 1205 | } |
| 1206 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1207 | static int iwl_setup_interface(struct iwl_priv *priv, |
| 1208 | struct iwl_rxon_context *ctx) |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1209 | { |
| 1210 | struct ieee80211_vif *vif = ctx->vif; |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 1211 | int err, ac; |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1212 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1213 | lockdep_assert_held(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1214 | |
| 1215 | /* |
| 1216 | * This variable will be correct only when there's just |
| 1217 | * a single context, but all code using it is for hardware |
| 1218 | * that supports only one context. |
| 1219 | */ |
| 1220 | priv->iw_mode = vif->type; |
| 1221 | |
| 1222 | ctx->is_active = true; |
| 1223 | |
| 1224 | err = iwl_set_mode(priv, ctx); |
| 1225 | if (err) { |
| 1226 | if (!ctx->always_active) |
| 1227 | ctx->is_active = false; |
| 1228 | return err; |
| 1229 | } |
| 1230 | |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 1231 | if (priv->lib->bt_params && priv->lib->bt_params->advanced_bt_coexist && |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1232 | vif->type == NL80211_IFTYPE_ADHOC) { |
| 1233 | /* |
| 1234 | * pretend to have high BT traffic as long as we |
| 1235 | * are operating in IBSS mode, as this will cause |
| 1236 | * the rate scaling etc. to behave as intended. |
| 1237 | */ |
| 1238 | priv->bt_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_HIGH; |
| 1239 | } |
| 1240 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 1241 | /* set up queue mappings */ |
| 1242 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) |
| 1243 | vif->hw_queue[ac] = ctx->ac_to_queue[ac]; |
| 1244 | |
| 1245 | if (vif->type == NL80211_IFTYPE_AP) |
| 1246 | vif->cab_queue = ctx->mcast_queue; |
| 1247 | else |
| 1248 | vif->cab_queue = IEEE80211_INVAL_HW_QUEUE; |
| 1249 | |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1250 | return 0; |
| 1251 | } |
| 1252 | |
| 1253 | static int iwlagn_mac_add_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 1254 | struct ieee80211_vif *vif) |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1255 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1256 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1257 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 1258 | struct iwl_rxon_context *tmp, *ctx = NULL; |
| 1259 | int err; |
| 1260 | enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif); |
Stanislaw Gruszka | 8db4c7e | 2012-04-18 08:01:15 -0700 | [diff] [blame] | 1261 | bool reset = false; |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1262 | |
| 1263 | IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n", |
| 1264 | viftype, vif->addr); |
| 1265 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1266 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1267 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1268 | if (!iwl_is_ready_rf(priv)) { |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1269 | IWL_WARN(priv, "Try to add interface when device not ready\n"); |
| 1270 | err = -EINVAL; |
| 1271 | goto out; |
| 1272 | } |
| 1273 | |
| 1274 | for_each_context(priv, tmp) { |
| 1275 | u32 possible_modes = |
| 1276 | tmp->interface_modes | tmp->exclusive_interface_modes; |
| 1277 | |
| 1278 | if (tmp->vif) { |
Stanislaw Gruszka | 8db4c7e | 2012-04-18 08:01:15 -0700 | [diff] [blame] | 1279 | /* On reset we need to add the same interface again */ |
| 1280 | if (tmp->vif == vif) { |
| 1281 | reset = true; |
| 1282 | ctx = tmp; |
| 1283 | break; |
| 1284 | } |
| 1285 | |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1286 | /* check if this busy context is exclusive */ |
| 1287 | if (tmp->exclusive_interface_modes & |
| 1288 | BIT(tmp->vif->type)) { |
| 1289 | err = -EINVAL; |
| 1290 | goto out; |
| 1291 | } |
| 1292 | continue; |
| 1293 | } |
| 1294 | |
| 1295 | if (!(possible_modes & BIT(viftype))) |
| 1296 | continue; |
| 1297 | |
| 1298 | /* have maybe usable context w/o interface */ |
| 1299 | ctx = tmp; |
| 1300 | break; |
| 1301 | } |
| 1302 | |
| 1303 | if (!ctx) { |
| 1304 | err = -EOPNOTSUPP; |
| 1305 | goto out; |
| 1306 | } |
| 1307 | |
| 1308 | vif_priv->ctx = ctx; |
| 1309 | ctx->vif = vif; |
| 1310 | |
Johannes Berg | 04baaa2 | 2012-11-13 21:28:44 +0100 | [diff] [blame] | 1311 | /* |
| 1312 | * In SNIFFER device type, the firmware reports the FCS to |
| 1313 | * the host, rather than snipping it off. Unfortunately, |
| 1314 | * mac80211 doesn't (yet) provide a per-packet flag for |
| 1315 | * this, so that we have to set the hardware flag based |
| 1316 | * on the interfaces added. As the monitor interface can |
| 1317 | * only be present by itself, and will be removed before |
| 1318 | * other interfaces are added, this is safe. |
| 1319 | */ |
| 1320 | if (vif->type == NL80211_IFTYPE_MONITOR) |
| 1321 | priv->hw->flags |= IEEE80211_HW_RX_INCLUDES_FCS; |
| 1322 | else |
| 1323 | priv->hw->flags &= ~IEEE80211_HW_RX_INCLUDES_FCS; |
| 1324 | |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1325 | err = iwl_setup_interface(priv, ctx); |
Stanislaw Gruszka | 8db4c7e | 2012-04-18 08:01:15 -0700 | [diff] [blame] | 1326 | if (!err || reset) |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1327 | goto out; |
| 1328 | |
| 1329 | ctx->vif = NULL; |
| 1330 | priv->iw_mode = NL80211_IFTYPE_STATION; |
| 1331 | out: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1332 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1333 | |
| 1334 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 1335 | return err; |
| 1336 | } |
| 1337 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1338 | static void iwl_teardown_interface(struct iwl_priv *priv, |
| 1339 | struct ieee80211_vif *vif, |
| 1340 | bool mode_change) |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1341 | { |
| 1342 | struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif); |
| 1343 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1344 | lockdep_assert_held(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1345 | |
| 1346 | if (priv->scan_vif == vif) { |
| 1347 | iwl_scan_cancel_timeout(priv, 200); |
| 1348 | iwl_force_scan_end(priv); |
| 1349 | } |
| 1350 | |
| 1351 | if (!mode_change) { |
| 1352 | iwl_set_mode(priv, ctx); |
| 1353 | if (!ctx->always_active) |
| 1354 | ctx->is_active = false; |
| 1355 | } |
| 1356 | |
| 1357 | /* |
| 1358 | * When removing the IBSS interface, overwrite the |
| 1359 | * BT traffic load with the stored one from the last |
| 1360 | * notification, if any. If this is a device that |
| 1361 | * doesn't implement this, this has no effect since |
| 1362 | * both values are the same and zero. |
| 1363 | */ |
| 1364 | if (vif->type == NL80211_IFTYPE_ADHOC) |
| 1365 | priv->bt_traffic_load = priv->last_bt_traffic_load; |
| 1366 | } |
| 1367 | |
| 1368 | static void iwlagn_mac_remove_interface(struct ieee80211_hw *hw, |
| 1369 | struct ieee80211_vif *vif) |
| 1370 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1371 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1372 | struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif); |
| 1373 | |
| 1374 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 1375 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1376 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1377 | |
| 1378 | if (WARN_ON(ctx->vif != vif)) { |
| 1379 | struct iwl_rxon_context *tmp; |
| 1380 | IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif); |
| 1381 | for_each_context(priv, tmp) |
| 1382 | IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n", |
| 1383 | tmp->ctxid, tmp, tmp->vif); |
| 1384 | } |
| 1385 | ctx->vif = NULL; |
| 1386 | |
| 1387 | iwl_teardown_interface(priv, vif, false); |
| 1388 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1389 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1390 | |
| 1391 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 1392 | |
| 1393 | } |
| 1394 | |
| 1395 | static int iwlagn_mac_change_interface(struct ieee80211_hw *hw, |
Johannes Berg | e75dac9 | 2012-06-20 11:47:42 +0200 | [diff] [blame] | 1396 | struct ieee80211_vif *vif, |
| 1397 | enum nl80211_iftype newtype, bool newp2p) |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1398 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1399 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Johannes Berg | e75dac9 | 2012-06-20 11:47:42 +0200 | [diff] [blame] | 1400 | struct iwl_rxon_context *ctx, *tmp; |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1401 | enum nl80211_iftype newviftype = newtype; |
| 1402 | u32 interface_modes; |
| 1403 | int err; |
| 1404 | |
| 1405 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 1406 | |
| 1407 | newtype = ieee80211_iftype_p2p(newtype, newp2p); |
| 1408 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1409 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1410 | |
Johannes Berg | e75dac9 | 2012-06-20 11:47:42 +0200 | [diff] [blame] | 1411 | ctx = iwl_rxon_ctx_from_vif(vif); |
| 1412 | |
| 1413 | /* |
| 1414 | * To simplify this code, only support changes on the |
| 1415 | * BSS context. The PAN context is usually reassigned |
| 1416 | * by creating/removing P2P interfaces anyway. |
| 1417 | */ |
| 1418 | if (ctx->ctxid != IWL_RXON_CTX_BSS) { |
| 1419 | err = -EBUSY; |
| 1420 | goto out; |
| 1421 | } |
| 1422 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1423 | if (!ctx->vif || !iwl_is_ready_rf(priv)) { |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1424 | /* |
| 1425 | * Huh? But wait ... this can maybe happen when |
| 1426 | * we're in the middle of a firmware restart! |
| 1427 | */ |
| 1428 | err = -EBUSY; |
| 1429 | goto out; |
| 1430 | } |
| 1431 | |
Johannes Berg | e75dac9 | 2012-06-20 11:47:42 +0200 | [diff] [blame] | 1432 | /* Check if the switch is supported in the same context */ |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1433 | interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes; |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1434 | if (!(interface_modes & BIT(newtype))) { |
| 1435 | err = -EBUSY; |
| 1436 | goto out; |
| 1437 | } |
| 1438 | |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1439 | if (ctx->exclusive_interface_modes & BIT(newtype)) { |
| 1440 | for_each_context(priv, tmp) { |
| 1441 | if (ctx == tmp) |
| 1442 | continue; |
| 1443 | |
Johannes Berg | e75dac9 | 2012-06-20 11:47:42 +0200 | [diff] [blame] | 1444 | if (!tmp->is_active) |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1445 | continue; |
| 1446 | |
| 1447 | /* |
| 1448 | * The current mode switch would be exclusive, but |
| 1449 | * another context is active ... refuse the switch. |
| 1450 | */ |
| 1451 | err = -EBUSY; |
| 1452 | goto out; |
| 1453 | } |
| 1454 | } |
| 1455 | |
| 1456 | /* success */ |
| 1457 | iwl_teardown_interface(priv, vif, true); |
| 1458 | vif->type = newviftype; |
| 1459 | vif->p2p = newp2p; |
| 1460 | err = iwl_setup_interface(priv, ctx); |
| 1461 | WARN_ON(err); |
| 1462 | /* |
| 1463 | * We've switched internally, but submitting to the |
| 1464 | * device may have failed for some reason. Mask this |
| 1465 | * error, because otherwise mac80211 will not switch |
| 1466 | * (and set the interface type back) and we'll be |
| 1467 | * out of sync with it. |
| 1468 | */ |
| 1469 | err = 0; |
| 1470 | |
| 1471 | out: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1472 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 0b7a4c7 | 2011-11-10 06:55:14 -0800 | [diff] [blame] | 1473 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 1474 | |
| 1475 | return err; |
| 1476 | } |
| 1477 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1478 | static int iwlagn_mac_hw_scan(struct ieee80211_hw *hw, |
| 1479 | struct ieee80211_vif *vif, |
| 1480 | struct cfg80211_scan_request *req) |
Wey-Yi Guy | ba4c531 | 2011-11-10 06:55:15 -0800 | [diff] [blame] | 1481 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1482 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | ba4c531 | 2011-11-10 06:55:15 -0800 | [diff] [blame] | 1483 | int ret; |
| 1484 | |
| 1485 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 1486 | |
| 1487 | if (req->n_channels == 0) |
| 1488 | return -EINVAL; |
| 1489 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1490 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | ba4c531 | 2011-11-10 06:55:15 -0800 | [diff] [blame] | 1491 | |
| 1492 | /* |
| 1493 | * If an internal scan is in progress, just set |
| 1494 | * up the scan_request as per above. |
| 1495 | */ |
| 1496 | if (priv->scan_type != IWL_SCAN_NORMAL) { |
| 1497 | IWL_DEBUG_SCAN(priv, |
| 1498 | "SCAN request during internal scan - defer\n"); |
| 1499 | priv->scan_request = req; |
| 1500 | priv->scan_vif = vif; |
| 1501 | ret = 0; |
| 1502 | } else { |
| 1503 | priv->scan_request = req; |
| 1504 | priv->scan_vif = vif; |
| 1505 | /* |
| 1506 | * mac80211 will only ask for one band at a time |
| 1507 | * so using channels[0] here is ok |
| 1508 | */ |
| 1509 | ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL, |
| 1510 | req->channels[0]->band); |
| 1511 | if (ret) { |
| 1512 | priv->scan_request = NULL; |
| 1513 | priv->scan_vif = NULL; |
| 1514 | } |
| 1515 | } |
| 1516 | |
| 1517 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 1518 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1519 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | ba4c531 | 2011-11-10 06:55:15 -0800 | [diff] [blame] | 1520 | |
| 1521 | return ret; |
| 1522 | } |
| 1523 | |
Wey-Yi Guy | 76b2933 | 2011-11-10 06:55:16 -0800 | [diff] [blame] | 1524 | static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id) |
| 1525 | { |
Johannes Berg | 9451ca1 | 2012-03-05 11:24:23 -0800 | [diff] [blame] | 1526 | struct iwl_addsta_cmd cmd = { |
| 1527 | .mode = STA_CONTROL_MODIFY_MSK, |
| 1528 | .station_flags_msk = STA_FLG_PWR_SAVE_MSK, |
| 1529 | .sta.sta_id = sta_id, |
| 1530 | }; |
Wey-Yi Guy | 76b2933 | 2011-11-10 06:55:16 -0800 | [diff] [blame] | 1531 | |
Johannes Berg | 9451ca1 | 2012-03-05 11:24:23 -0800 | [diff] [blame] | 1532 | iwl_send_add_sta(priv, &cmd, CMD_ASYNC); |
Wey-Yi Guy | 76b2933 | 2011-11-10 06:55:16 -0800 | [diff] [blame] | 1533 | } |
| 1534 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1535 | static void iwlagn_mac_sta_notify(struct ieee80211_hw *hw, |
| 1536 | struct ieee80211_vif *vif, |
| 1537 | enum sta_notify_cmd cmd, |
| 1538 | struct ieee80211_sta *sta) |
Wey-Yi Guy | 76b2933 | 2011-11-10 06:55:16 -0800 | [diff] [blame] | 1539 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1540 | struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw); |
Wey-Yi Guy | 76b2933 | 2011-11-10 06:55:16 -0800 | [diff] [blame] | 1541 | struct iwl_station_priv *sta_priv = (void *)sta->drv_priv; |
| 1542 | int sta_id; |
| 1543 | |
| 1544 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 1545 | |
| 1546 | switch (cmd) { |
| 1547 | case STA_NOTIFY_SLEEP: |
| 1548 | WARN_ON(!sta_priv->client); |
| 1549 | sta_priv->asleep = true; |
| 1550 | if (atomic_read(&sta_priv->pending_frames) > 0) |
| 1551 | ieee80211_sta_block_awake(hw, sta, true); |
| 1552 | break; |
| 1553 | case STA_NOTIFY_AWAKE: |
| 1554 | WARN_ON(!sta_priv->client); |
| 1555 | if (!sta_priv->asleep) |
| 1556 | break; |
| 1557 | sta_priv->asleep = false; |
| 1558 | sta_id = iwl_sta_id(sta); |
| 1559 | if (sta_id != IWL_INVALID_STATION) |
| 1560 | iwl_sta_modify_ps_wake(priv, sta_id); |
| 1561 | break; |
| 1562 | default: |
| 1563 | break; |
| 1564 | } |
| 1565 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 1566 | } |
| 1567 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1568 | struct ieee80211_ops iwlagn_hw_ops = { |
| 1569 | .tx = iwlagn_mac_tx, |
| 1570 | .start = iwlagn_mac_start, |
| 1571 | .stop = iwlagn_mac_stop, |
| 1572 | #ifdef CONFIG_PM_SLEEP |
| 1573 | .suspend = iwlagn_mac_suspend, |
| 1574 | .resume = iwlagn_mac_resume, |
Johannes Berg | 76ed2ed | 2012-05-16 22:54:25 +0200 | [diff] [blame] | 1575 | .set_wakeup = iwlagn_mac_set_wakeup, |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1576 | #endif |
| 1577 | .add_interface = iwlagn_mac_add_interface, |
| 1578 | .remove_interface = iwlagn_mac_remove_interface, |
| 1579 | .change_interface = iwlagn_mac_change_interface, |
| 1580 | .config = iwlagn_mac_config, |
| 1581 | .configure_filter = iwlagn_configure_filter, |
| 1582 | .set_key = iwlagn_mac_set_key, |
| 1583 | .update_tkip_key = iwlagn_mac_update_tkip_key, |
| 1584 | .set_rekey_data = iwlagn_mac_set_rekey_data, |
| 1585 | .conf_tx = iwlagn_mac_conf_tx, |
| 1586 | .bss_info_changed = iwlagn_bss_info_changed, |
| 1587 | .ampdu_action = iwlagn_mac_ampdu_action, |
| 1588 | .hw_scan = iwlagn_mac_hw_scan, |
| 1589 | .sta_notify = iwlagn_mac_sta_notify, |
Johannes Berg | fb5fe5b | 2012-03-05 11:24:29 -0800 | [diff] [blame] | 1590 | .sta_state = iwlagn_mac_sta_state, |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1591 | .channel_switch = iwlagn_mac_channel_switch, |
| 1592 | .flush = iwlagn_mac_flush, |
| 1593 | .tx_last_beacon = iwlagn_mac_tx_last_beacon, |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1594 | .rssi_callback = iwlagn_mac_rssi_callback, |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1595 | .set_tim = iwlagn_mac_set_tim, |
| 1596 | }; |
| 1597 | |
| 1598 | /* This function both allocates and initializes hw and priv. */ |
| 1599 | struct ieee80211_hw *iwl_alloc_all(void) |
| 1600 | { |
| 1601 | struct iwl_priv *priv; |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1602 | struct iwl_op_mode *op_mode; |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1603 | /* mac80211 allocates memory for this device instance, including |
| 1604 | * space for this driver's private structure */ |
| 1605 | struct ieee80211_hw *hw; |
| 1606 | |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1607 | hw = ieee80211_alloc_hw(sizeof(struct iwl_priv) + |
| 1608 | sizeof(struct iwl_op_mode), &iwlagn_hw_ops); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1609 | if (!hw) |
| 1610 | goto out; |
| 1611 | |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1612 | op_mode = hw->priv; |
| 1613 | priv = IWL_OP_MODE_GET_DVM(op_mode); |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 1614 | priv->hw = hw; |
| 1615 | |
| 1616 | out: |
| 1617 | return hw; |
| 1618 | } |