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