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