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