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