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