Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * This file is provided under a dual BSD/GPLv2 license. When using or |
| 4 | * redistributing this file, you may do so under either license. |
| 5 | * |
| 6 | * GPL LICENSE SUMMARY |
| 7 | * |
| 8 | * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of version 2 of the GNU General Public License as |
| 12 | * published by the Free Software Foundation. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 22 | * USA |
| 23 | * |
| 24 | * The full GNU General Public License is included in this distribution |
Emmanuel Grumbach | 410dc5a | 2013-02-18 09:22:28 +0200 | [diff] [blame] | 25 | * in the file called COPYING. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 26 | * |
| 27 | * Contact Information: |
| 28 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 29 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 30 | * |
| 31 | * BSD LICENSE |
| 32 | * |
| 33 | * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved. |
| 34 | * All rights reserved. |
| 35 | * |
| 36 | * Redistribution and use in source and binary forms, with or without |
| 37 | * modification, are permitted provided that the following conditions |
| 38 | * are met: |
| 39 | * |
| 40 | * * Redistributions of source code must retain the above copyright |
| 41 | * notice, this list of conditions and the following disclaimer. |
| 42 | * * Redistributions in binary form must reproduce the above copyright |
| 43 | * notice, this list of conditions and the following disclaimer in |
| 44 | * the documentation and/or other materials provided with the |
| 45 | * distribution. |
| 46 | * * Neither the name Intel Corporation nor the names of its |
| 47 | * contributors may be used to endorse or promote products derived |
| 48 | * from this software without specific prior written permission. |
| 49 | * |
| 50 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 51 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 52 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 53 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 54 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 55 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 56 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 57 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 58 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 59 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 60 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 61 | * |
| 62 | *****************************************************************************/ |
| 63 | #include <linux/kernel.h> |
| 64 | #include <linux/slab.h> |
| 65 | #include <linux/skbuff.h> |
| 66 | #include <linux/netdevice.h> |
| 67 | #include <linux/etherdevice.h> |
Johannes Berg | f0c2646 | 2013-01-22 20:41:58 +0100 | [diff] [blame] | 68 | #include <linux/ip.h> |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 69 | #include <net/mac80211.h> |
Johannes Berg | f0c2646 | 2013-01-22 20:41:58 +0100 | [diff] [blame] | 70 | #include <net/tcp.h> |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 71 | |
| 72 | #include "iwl-op-mode.h" |
| 73 | #include "iwl-io.h" |
| 74 | #include "mvm.h" |
| 75 | #include "sta.h" |
| 76 | #include "time-event.h" |
| 77 | #include "iwl-eeprom-parse.h" |
| 78 | #include "fw-api-scan.h" |
| 79 | #include "iwl-phy-db.h" |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 80 | #include "testmode.h" |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 81 | |
| 82 | static const struct ieee80211_iface_limit iwl_mvm_limits[] = { |
| 83 | { |
| 84 | .max = 1, |
Ilan Peer | 8eb3871 | 2013-06-01 20:17:18 +0300 | [diff] [blame] | 85 | .types = BIT(NL80211_IFTYPE_STATION), |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 86 | }, |
Johannes Berg | 3c15a0f | 2013-05-31 10:17:19 +0200 | [diff] [blame] | 87 | { |
| 88 | .max = 1, |
Ilan Peer | 8eb3871 | 2013-06-01 20:17:18 +0300 | [diff] [blame] | 89 | .types = BIT(NL80211_IFTYPE_AP) | |
| 90 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
Johannes Berg | 3c15a0f | 2013-05-31 10:17:19 +0200 | [diff] [blame] | 91 | BIT(NL80211_IFTYPE_P2P_GO), |
| 92 | }, |
| 93 | { |
| 94 | .max = 1, |
| 95 | .types = BIT(NL80211_IFTYPE_P2P_DEVICE), |
| 96 | }, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 97 | }; |
| 98 | |
| 99 | static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = { |
| 100 | { |
| 101 | .num_different_channels = 1, |
| 102 | .max_interfaces = 3, |
| 103 | .limits = iwl_mvm_limits, |
| 104 | .n_limits = ARRAY_SIZE(iwl_mvm_limits), |
| 105 | }, |
| 106 | }; |
| 107 | |
Johannes Berg | f0c2646 | 2013-01-22 20:41:58 +0100 | [diff] [blame] | 108 | #ifdef CONFIG_PM_SLEEP |
| 109 | static const struct nl80211_wowlan_tcp_data_token_feature |
| 110 | iwl_mvm_wowlan_tcp_token_feature = { |
| 111 | .min_len = 0, |
| 112 | .max_len = 255, |
| 113 | .bufsize = IWL_WOWLAN_REMOTE_WAKE_MAX_TOKENS, |
| 114 | }; |
| 115 | |
| 116 | static const struct wiphy_wowlan_tcp_support iwl_mvm_wowlan_tcp_support = { |
| 117 | .tok = &iwl_mvm_wowlan_tcp_token_feature, |
| 118 | .data_payload_max = IWL_WOWLAN_TCP_MAX_PACKET_LEN - |
| 119 | sizeof(struct ethhdr) - |
| 120 | sizeof(struct iphdr) - |
| 121 | sizeof(struct tcphdr), |
| 122 | .data_interval_max = 65535, /* __le16 in API */ |
| 123 | .wake_payload_max = IWL_WOWLAN_REMOTE_WAKE_MAX_PACKET_LEN - |
| 124 | sizeof(struct ethhdr) - |
| 125 | sizeof(struct iphdr) - |
| 126 | sizeof(struct tcphdr), |
| 127 | .seq = true, |
| 128 | }; |
| 129 | #endif |
| 130 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 131 | static void iwl_mvm_reset_phy_ctxts(struct iwl_mvm *mvm) |
| 132 | { |
| 133 | int i; |
| 134 | |
| 135 | memset(mvm->phy_ctxts, 0, sizeof(mvm->phy_ctxts)); |
| 136 | for (i = 0; i < NUM_PHY_CTX; i++) { |
| 137 | mvm->phy_ctxts[i].id = i; |
| 138 | mvm->phy_ctxts[i].ref = 0; |
| 139 | } |
| 140 | } |
| 141 | |
David Spinadel | 20f1a5d | 2013-08-21 09:14:27 +0300 | [diff] [blame] | 142 | static int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm) |
| 143 | { |
| 144 | /* we create the 802.11 header and SSID element */ |
| 145 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID) |
| 146 | return mvm->fw->ucode_capa.max_probe_length - 24 - 2; |
| 147 | return mvm->fw->ucode_capa.max_probe_length - 24 - 34; |
| 148 | } |
| 149 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 150 | int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm) |
| 151 | { |
| 152 | struct ieee80211_hw *hw = mvm->hw; |
Ilan Peer | 831e85f | 2013-02-07 17:09:09 +0200 | [diff] [blame] | 153 | int num_mac, ret, i; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 154 | |
| 155 | /* Tell mac80211 our characteristics */ |
| 156 | hw->flags = IEEE80211_HW_SIGNAL_DBM | |
| 157 | IEEE80211_HW_SPECTRUM_MGMT | |
| 158 | IEEE80211_HW_REPORTS_TX_ACK_STATUS | |
| 159 | IEEE80211_HW_QUEUE_CONTROL | |
| 160 | IEEE80211_HW_WANT_MONITOR_VIF | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 161 | IEEE80211_HW_SUPPORTS_PS | |
| 162 | IEEE80211_HW_SUPPORTS_DYNAMIC_PS | |
Johannes Berg | d2931bb | 2013-02-05 18:10:04 +0100 | [diff] [blame] | 163 | IEEE80211_HW_AMPDU_AGGREGATION | |
Hila Gonen | d64048e | 2013-03-13 18:00:03 +0200 | [diff] [blame] | 164 | IEEE80211_HW_TIMING_BEACON_ONLY | |
Emmanuel Grumbach | 147fc9b | 2013-07-28 11:00:52 +0300 | [diff] [blame] | 165 | IEEE80211_HW_CONNECTION_MONITOR | |
| 166 | IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS | |
Alexander Bondar | e8e626a | 2013-10-16 00:21:34 +0200 | [diff] [blame] | 167 | IEEE80211_HW_SUPPORTS_STATIC_SMPS; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 168 | |
Eytan Lifshitz | 19e737c | 2013-09-09 13:30:15 +0200 | [diff] [blame] | 169 | hw->queues = mvm->first_agg_queue; |
Ilan Peer | 398e8c6 | 2013-03-13 15:20:35 +0200 | [diff] [blame] | 170 | hw->offchannel_tx_hw_queue = IWL_MVM_OFFCHANNEL_QUEUE; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 171 | hw->rate_control_algorithm = "iwl-mvm-rs"; |
| 172 | |
| 173 | /* |
| 174 | * Enable 11w if advertised by firmware and software crypto |
| 175 | * is not enabled (as the firmware will interpret some mgmt |
| 176 | * packets, so enabling it with software crypto isn't safe) |
| 177 | */ |
| 178 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP && |
| 179 | !iwlwifi_mod_params.sw_crypto) |
| 180 | hw->flags |= IEEE80211_HW_MFP_CAPABLE; |
| 181 | |
Alexander Bondar | e8e626a | 2013-10-16 00:21:34 +0200 | [diff] [blame] | 182 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT) { |
| 183 | hw->flags |= IEEE80211_HW_SUPPORTS_UAPSD; |
| 184 | hw->uapsd_queues = IWL_UAPSD_AC_INFO; |
| 185 | hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP; |
| 186 | } |
| 187 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 188 | hw->sta_data_size = sizeof(struct iwl_mvm_sta); |
| 189 | hw->vif_data_size = sizeof(struct iwl_mvm_vif); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 190 | hw->chanctx_data_size = sizeof(u16); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 191 | |
| 192 | hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | |
Johannes Berg | 3c15a0f | 2013-05-31 10:17:19 +0200 | [diff] [blame] | 193 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
| 194 | BIT(NL80211_IFTYPE_AP) | |
| 195 | BIT(NL80211_IFTYPE_P2P_GO) | |
| 196 | BIT(NL80211_IFTYPE_P2P_DEVICE); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 197 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 198 | /* IBSS has bugs in older versions */ |
| 199 | if (IWL_UCODE_API(mvm->fw->ucode_ver) >= 8) |
| 200 | hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_ADHOC); |
| 201 | |
Luis R. Rodriguez | a2f73b6 | 2013-11-11 22:15:29 +0100 | [diff] [blame] | 202 | hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN; |
| 203 | hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG | |
| 204 | REGULATORY_DISABLE_BEACON_HINTS; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 205 | |
| 206 | hw->wiphy->iface_combinations = iwl_mvm_iface_combinations; |
| 207 | hw->wiphy->n_iface_combinations = |
| 208 | ARRAY_SIZE(iwl_mvm_iface_combinations); |
| 209 | |
Ilan Peer | c451e6d | 2013-02-20 08:41:54 +0200 | [diff] [blame] | 210 | hw->wiphy->max_remain_on_channel_duration = 10000; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 211 | hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL; |
| 212 | |
| 213 | /* Extract MAC address */ |
| 214 | memcpy(mvm->addresses[0].addr, mvm->nvm_data->hw_addr, ETH_ALEN); |
| 215 | hw->wiphy->addresses = mvm->addresses; |
| 216 | hw->wiphy->n_addresses = 1; |
Ilan Peer | 831e85f | 2013-02-07 17:09:09 +0200 | [diff] [blame] | 217 | |
| 218 | /* Extract additional MAC addresses if available */ |
| 219 | num_mac = (mvm->nvm_data->n_hw_addrs > 1) ? |
| 220 | min(IWL_MVM_MAX_ADDRESSES, mvm->nvm_data->n_hw_addrs) : 1; |
| 221 | |
| 222 | for (i = 1; i < num_mac; i++) { |
| 223 | memcpy(mvm->addresses[i].addr, mvm->addresses[i-1].addr, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 224 | ETH_ALEN); |
Ilan Peer | 831e85f | 2013-02-07 17:09:09 +0200 | [diff] [blame] | 225 | mvm->addresses[i].addr[5]++; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 226 | hw->wiphy->n_addresses++; |
| 227 | } |
| 228 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 229 | iwl_mvm_reset_phy_ctxts(mvm); |
| 230 | |
David Spinadel | 20f1a5d | 2013-08-21 09:14:27 +0300 | [diff] [blame] | 231 | hw->wiphy->max_scan_ie_len = iwl_mvm_max_scan_ie_len(mvm); |
| 232 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 233 | hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX; |
| 234 | |
| 235 | if (mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels) |
| 236 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 237 | &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ]; |
| 238 | if (mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels) |
| 239 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 240 | &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ]; |
| 241 | |
| 242 | hw->wiphy->hw_version = mvm->trans->hw_id; |
| 243 | |
Alexander Bondar | ade5065 | 2013-04-03 16:28:47 +0300 | [diff] [blame] | 244 | if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 245 | hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 246 | else |
| 247 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 248 | |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 249 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_SCHED_SCAN) { |
| 250 | hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN; |
| 251 | hw->wiphy->max_sched_scan_ssids = PROBE_OPTION_MAX; |
| 252 | hw->wiphy->max_match_sets = IWL_SCAN_MAX_PROFILES; |
| 253 | /* we create the 802.11 header and zero length SSID IE. */ |
| 254 | hw->wiphy->max_sched_scan_ie_len = |
| 255 | SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2; |
| 256 | } |
| 257 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 258 | hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN | |
Haim Dreyfuss | 61f6325 | 2013-11-03 23:02:59 +0200 | [diff] [blame] | 259 | NL80211_FEATURE_P2P_GO_OPPPS | |
| 260 | NL80211_FEATURE_LOW_PRIORITY_SCAN; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 261 | |
| 262 | mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD; |
| 263 | |
Max Stepanov | e36e543 | 2013-08-27 19:56:13 +0300 | [diff] [blame] | 264 | /* currently FW API supports only one optional cipher scheme */ |
| 265 | if (mvm->fw->cs && mvm->fw->cs->cipher) { |
| 266 | mvm->hw->n_cipher_schemes = 1; |
| 267 | mvm->hw->cipher_schemes = mvm->fw->cs; |
| 268 | } |
| 269 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 270 | #ifdef CONFIG_PM_SLEEP |
| 271 | if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len && |
| 272 | mvm->trans->ops->d3_suspend && |
| 273 | mvm->trans->ops->d3_resume && |
| 274 | device_can_wakeup(mvm->trans->dev)) { |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 275 | mvm->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT | |
| 276 | WIPHY_WOWLAN_DISCONNECT | |
| 277 | WIPHY_WOWLAN_EAP_IDENTITY_REQ | |
| 278 | WIPHY_WOWLAN_RFKILL_RELEASE; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 279 | if (!iwlwifi_mod_params.sw_crypto) |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 280 | mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY | |
| 281 | WIPHY_WOWLAN_GTK_REKEY_FAILURE | |
| 282 | WIPHY_WOWLAN_4WAY_HANDSHAKE; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 283 | |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 284 | mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS; |
| 285 | mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN; |
| 286 | mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN; |
| 287 | mvm->wowlan.tcp = &iwl_mvm_wowlan_tcp_support; |
| 288 | hw->wiphy->wowlan = &mvm->wowlan; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 289 | } |
| 290 | #endif |
| 291 | |
| 292 | ret = iwl_mvm_leds_init(mvm); |
| 293 | if (ret) |
| 294 | return ret; |
| 295 | |
Emmanuel Grumbach | b7327d8 | 2013-06-24 15:44:03 +0300 | [diff] [blame] | 296 | ret = ieee80211_register_hw(mvm->hw); |
| 297 | if (ret) |
| 298 | iwl_mvm_leds_exit(mvm); |
| 299 | |
| 300 | return ret; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | static void iwl_mvm_mac_tx(struct ieee80211_hw *hw, |
| 304 | struct ieee80211_tx_control *control, |
| 305 | struct sk_buff *skb) |
| 306 | { |
| 307 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 308 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 309 | if (iwl_mvm_is_radio_killed(mvm)) { |
| 310 | IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n"); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 311 | goto drop; |
| 312 | } |
| 313 | |
Ilan Peer | 398e8c6 | 2013-03-13 15:20:35 +0200 | [diff] [blame] | 314 | if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE && |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 315 | !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status)) |
| 316 | goto drop; |
| 317 | |
| 318 | if (control->sta) { |
| 319 | if (iwl_mvm_tx_skb(mvm, skb, control->sta)) |
| 320 | goto drop; |
| 321 | return; |
| 322 | } |
| 323 | |
| 324 | if (iwl_mvm_tx_skb_non_sta(mvm, skb)) |
| 325 | goto drop; |
| 326 | return; |
| 327 | drop: |
| 328 | ieee80211_free_txskb(hw, skb); |
| 329 | } |
| 330 | |
| 331 | static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw, |
| 332 | struct ieee80211_vif *vif, |
| 333 | enum ieee80211_ampdu_mlme_action action, |
| 334 | struct ieee80211_sta *sta, u16 tid, |
| 335 | u16 *ssn, u8 buf_size) |
| 336 | { |
| 337 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 338 | int ret; |
| 339 | |
| 340 | IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n", |
| 341 | sta->addr, tid, action); |
| 342 | |
| 343 | if (!(mvm->nvm_data->sku_cap_11n_enable)) |
| 344 | return -EACCES; |
| 345 | |
| 346 | mutex_lock(&mvm->mutex); |
| 347 | |
| 348 | switch (action) { |
| 349 | case IEEE80211_AMPDU_RX_START: |
| 350 | if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG) { |
| 351 | ret = -EINVAL; |
| 352 | break; |
| 353 | } |
| 354 | ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true); |
| 355 | break; |
| 356 | case IEEE80211_AMPDU_RX_STOP: |
| 357 | ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false); |
| 358 | break; |
| 359 | case IEEE80211_AMPDU_TX_START: |
Emmanuel Grumbach | 5d158ef | 2013-02-19 14:39:58 +0200 | [diff] [blame] | 360 | if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG) { |
| 361 | ret = -EINVAL; |
| 362 | break; |
| 363 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 364 | ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn); |
| 365 | break; |
| 366 | case IEEE80211_AMPDU_TX_STOP_CONT: |
Emmanuel Grumbach | e3d9e7c | 2013-02-19 16:13:53 +0200 | [diff] [blame] | 367 | ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid); |
| 368 | break; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 369 | case IEEE80211_AMPDU_TX_STOP_FLUSH: |
| 370 | case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: |
Emmanuel Grumbach | e3d9e7c | 2013-02-19 16:13:53 +0200 | [diff] [blame] | 371 | ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 372 | break; |
| 373 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
| 374 | ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid, buf_size); |
| 375 | break; |
| 376 | default: |
| 377 | WARN_ON_ONCE(1); |
| 378 | ret = -EINVAL; |
| 379 | break; |
| 380 | } |
| 381 | mutex_unlock(&mvm->mutex); |
| 382 | |
| 383 | return ret; |
| 384 | } |
| 385 | |
| 386 | static void iwl_mvm_cleanup_iterator(void *data, u8 *mac, |
| 387 | struct ieee80211_vif *vif) |
| 388 | { |
| 389 | struct iwl_mvm *mvm = data; |
| 390 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 391 | |
| 392 | mvmvif->uploaded = false; |
| 393 | mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT; |
| 394 | |
| 395 | /* does this make sense at all? */ |
| 396 | mvmvif->color++; |
| 397 | |
| 398 | spin_lock_bh(&mvm->time_event_lock); |
| 399 | iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data); |
| 400 | spin_unlock_bh(&mvm->time_event_lock); |
| 401 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 402 | mvmvif->phy_ctxt = NULL; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm) |
| 406 | { |
| 407 | iwl_trans_stop_device(mvm->trans); |
| 408 | iwl_trans_stop_hw(mvm->trans, false); |
| 409 | |
| 410 | mvm->scan_status = IWL_MVM_SCAN_NONE; |
| 411 | |
| 412 | /* just in case one was running */ |
| 413 | ieee80211_remain_on_channel_expired(mvm->hw); |
| 414 | |
| 415 | ieee80211_iterate_active_interfaces_atomic( |
| 416 | mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL, |
| 417 | iwl_mvm_cleanup_iterator, mvm); |
| 418 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 419 | mvm->p2p_device_vif = NULL; |
| 420 | |
| 421 | iwl_mvm_reset_phy_ctxts(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 422 | memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table)); |
| 423 | memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained)); |
| 424 | |
| 425 | ieee80211_wake_queues(mvm->hw); |
| 426 | |
| 427 | mvm->vif_count = 0; |
Emmanuel Grumbach | 113a044 | 2013-07-02 14:16:38 +0300 | [diff] [blame] | 428 | mvm->rx_ba_sessions = 0; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | static int iwl_mvm_mac_start(struct ieee80211_hw *hw) |
| 432 | { |
| 433 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 434 | int ret; |
| 435 | |
| 436 | mutex_lock(&mvm->mutex); |
| 437 | |
| 438 | /* Clean up some internal and mac80211 state on restart */ |
| 439 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) |
| 440 | iwl_mvm_restart_cleanup(mvm); |
| 441 | |
| 442 | ret = iwl_mvm_up(mvm); |
| 443 | mutex_unlock(&mvm->mutex); |
| 444 | |
| 445 | return ret; |
| 446 | } |
| 447 | |
| 448 | static void iwl_mvm_mac_restart_complete(struct ieee80211_hw *hw) |
| 449 | { |
| 450 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 451 | int ret; |
| 452 | |
| 453 | mutex_lock(&mvm->mutex); |
| 454 | |
| 455 | clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status); |
| 456 | ret = iwl_mvm_update_quotas(mvm, NULL); |
| 457 | if (ret) |
| 458 | IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n", |
| 459 | ret); |
| 460 | |
| 461 | mutex_unlock(&mvm->mutex); |
| 462 | } |
| 463 | |
| 464 | static void iwl_mvm_mac_stop(struct ieee80211_hw *hw) |
| 465 | { |
| 466 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 467 | |
| 468 | flush_work(&mvm->async_handlers_wk); |
| 469 | |
| 470 | mutex_lock(&mvm->mutex); |
| 471 | /* async_handlers_wk is now blocked */ |
| 472 | |
| 473 | /* |
| 474 | * The work item could be running or queued if the |
| 475 | * ROC time event stops just as we get here. |
| 476 | */ |
| 477 | cancel_work_sync(&mvm->roc_done_wk); |
| 478 | |
| 479 | iwl_trans_stop_device(mvm->trans); |
| 480 | iwl_trans_stop_hw(mvm->trans, false); |
| 481 | |
| 482 | iwl_mvm_async_handlers_purge(mvm); |
| 483 | /* async_handlers_list is empty and will stay empty: HW is stopped */ |
| 484 | |
| 485 | /* the fw is stopped, the aux sta is dead: clean up driver state */ |
| 486 | iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta); |
| 487 | |
| 488 | mutex_unlock(&mvm->mutex); |
| 489 | |
| 490 | /* |
| 491 | * The worker might have been waiting for the mutex, let it run and |
| 492 | * discover that its list is now empty. |
| 493 | */ |
| 494 | cancel_work_sync(&mvm->async_handlers_wk); |
| 495 | } |
| 496 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 497 | static void iwl_mvm_power_update_iterator(void *data, u8 *mac, |
| 498 | struct ieee80211_vif *vif) |
| 499 | { |
| 500 | struct iwl_mvm *mvm = data; |
| 501 | |
| 502 | iwl_mvm_power_update_mode(mvm, vif); |
| 503 | } |
| 504 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 505 | static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm) |
| 506 | { |
| 507 | u16 i; |
| 508 | |
| 509 | lockdep_assert_held(&mvm->mutex); |
| 510 | |
| 511 | for (i = 0; i < NUM_PHY_CTX; i++) |
| 512 | if (!mvm->phy_ctxts[i].ref) |
| 513 | return &mvm->phy_ctxts[i]; |
| 514 | |
| 515 | IWL_ERR(mvm, "No available PHY context\n"); |
| 516 | return NULL; |
| 517 | } |
| 518 | |
Emmanuel Grumbach | ee9c6cb | 2013-12-04 13:53:39 +0200 | [diff] [blame] | 519 | static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif, |
| 520 | s8 tx_power) |
| 521 | { |
| 522 | /* FW is in charge of regulatory enforcement */ |
| 523 | struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = { |
| 524 | .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id, |
| 525 | .pwr_restriction = cpu_to_le16(tx_power), |
| 526 | }; |
| 527 | |
| 528 | return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, CMD_SYNC, |
| 529 | sizeof(reduce_txpwr_cmd), |
| 530 | &reduce_txpwr_cmd); |
| 531 | } |
| 532 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 533 | static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw, |
| 534 | struct ieee80211_vif *vif) |
| 535 | { |
| 536 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 537 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 538 | int ret; |
| 539 | |
| 540 | /* |
| 541 | * Not much to do here. The stack will not allow interface |
| 542 | * types or combinations that we didn't advertise, so we |
| 543 | * don't really have to check the types. |
| 544 | */ |
| 545 | |
| 546 | mutex_lock(&mvm->mutex); |
| 547 | |
Eliad Peller | e89044d | 2013-07-16 17:33:26 +0300 | [diff] [blame] | 548 | /* Allocate resources for the MAC context, and add it to the fw */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 549 | ret = iwl_mvm_mac_ctxt_init(mvm, vif); |
| 550 | if (ret) |
| 551 | goto out_unlock; |
| 552 | |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 553 | /* Counting number of interfaces is needed for legacy PM */ |
Ilan Peer | ea183d0 | 2013-07-23 14:41:53 +0300 | [diff] [blame] | 554 | if (vif->type != NL80211_IFTYPE_P2P_DEVICE) |
| 555 | mvm->vif_count++; |
Ilan Peer | ea183d0 | 2013-07-23 14:41:53 +0300 | [diff] [blame] | 556 | |
| 557 | /* |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 558 | * The AP binding flow can be done only after the beacon |
| 559 | * template is configured (which happens only in the mac80211 |
| 560 | * start_ap() flow), and adding the broadcast station can happen |
| 561 | * only after the binding. |
| 562 | * In addition, since modifying the MAC before adding a bcast |
| 563 | * station is not allowed by the FW, delay the adding of MAC context to |
| 564 | * the point where we can also add the bcast station. |
| 565 | * In short: there's not much we can do at this point, other than |
| 566 | * allocating resources :) |
| 567 | */ |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 568 | if (vif->type == NL80211_IFTYPE_AP || |
| 569 | vif->type == NL80211_IFTYPE_ADHOC) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 570 | u32 qmask = iwl_mvm_mac_get_queues_mask(mvm, vif); |
| 571 | ret = iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta, |
| 572 | qmask); |
| 573 | if (ret) { |
| 574 | IWL_ERR(mvm, "Failed to allocate bcast sta\n"); |
| 575 | goto out_release; |
| 576 | } |
| 577 | |
Emmanuel Grumbach | 77740cb | 2013-06-26 23:51:41 +0300 | [diff] [blame] | 578 | iwl_mvm_vif_dbgfs_register(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 579 | goto out_unlock; |
| 580 | } |
| 581 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 582 | ret = iwl_mvm_mac_ctxt_add(mvm, vif); |
| 583 | if (ret) |
| 584 | goto out_release; |
| 585 | |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 586 | iwl_mvm_power_disable(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 587 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 588 | /* beacon filtering */ |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 589 | ret = iwl_mvm_disable_beacon_filter(mvm, vif); |
| 590 | if (ret) |
| 591 | goto out_remove_mac; |
| 592 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 593 | if (!mvm->bf_allowed_vif && |
Hila Gonen | 5dca7c2 | 2013-07-16 11:15:35 +0300 | [diff] [blame] | 594 | vif->type == NL80211_IFTYPE_STATION && !vif->p2p && |
| 595 | mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BF_UPDATED){ |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 596 | mvm->bf_allowed_vif = mvmvif; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 597 | vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER | |
| 598 | IEEE80211_VIF_SUPPORTS_CQM_RSSI; |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 599 | } |
| 600 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 601 | /* |
| 602 | * P2P_DEVICE interface does not have a channel context assigned to it, |
| 603 | * so a dedicated PHY context is allocated to it and the corresponding |
| 604 | * MAC context is bound to it at this stage. |
| 605 | */ |
| 606 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 607 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 608 | mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); |
| 609 | if (!mvmvif->phy_ctxt) { |
| 610 | ret = -ENOSPC; |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 611 | goto out_free_bf; |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 612 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 613 | |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 614 | iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 615 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 616 | if (ret) |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 617 | goto out_unref_phy; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 618 | |
| 619 | ret = iwl_mvm_add_bcast_sta(mvm, vif, &mvmvif->bcast_sta); |
| 620 | if (ret) |
| 621 | goto out_unbind; |
| 622 | |
| 623 | /* Save a pointer to p2p device vif, so it can later be used to |
| 624 | * update the p2p device MAC when a GO is started/stopped */ |
| 625 | mvm->p2p_device_vif = vif; |
| 626 | } |
| 627 | |
Johannes Berg | 6349437 | 2013-03-26 10:47:53 +0100 | [diff] [blame] | 628 | iwl_mvm_vif_dbgfs_register(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 629 | goto out_unlock; |
| 630 | |
| 631 | out_unbind: |
| 632 | iwl_mvm_binding_remove_vif(mvm, vif); |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 633 | out_unref_phy: |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 634 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 635 | out_free_bf: |
| 636 | if (mvm->bf_allowed_vif == mvmvif) { |
| 637 | mvm->bf_allowed_vif = NULL; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 638 | vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER | |
| 639 | IEEE80211_VIF_SUPPORTS_CQM_RSSI); |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 640 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 641 | out_remove_mac: |
| 642 | mvmvif->phy_ctxt = NULL; |
| 643 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 644 | out_release: |
Alexander Bondar | 5ee2b21 | 2013-03-05 10:16:40 +0200 | [diff] [blame] | 645 | if (vif->type != NL80211_IFTYPE_P2P_DEVICE) |
| 646 | mvm->vif_count--; |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 647 | |
| 648 | /* TODO: remove this when legacy PM will be discarded */ |
Alexander Bondar | 4bf881f | 2013-05-29 10:19:50 +0300 | [diff] [blame] | 649 | ieee80211_iterate_active_interfaces( |
| 650 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 651 | iwl_mvm_power_update_iterator, mvm); |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 652 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 653 | iwl_mvm_mac_ctxt_release(mvm, vif); |
| 654 | out_unlock: |
| 655 | mutex_unlock(&mvm->mutex); |
| 656 | |
| 657 | return ret; |
| 658 | } |
| 659 | |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 660 | static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm, |
| 661 | struct ieee80211_vif *vif) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 662 | { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 663 | u32 tfd_msk = 0, ac; |
| 664 | |
| 665 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) |
| 666 | if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE) |
| 667 | tfd_msk |= BIT(vif->hw_queue[ac]); |
| 668 | |
| 669 | if (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE) |
| 670 | tfd_msk |= BIT(vif->cab_queue); |
| 671 | |
| 672 | if (tfd_msk) { |
| 673 | mutex_lock(&mvm->mutex); |
| 674 | iwl_mvm_flush_tx_path(mvm, tfd_msk, true); |
| 675 | mutex_unlock(&mvm->mutex); |
| 676 | } |
| 677 | |
| 678 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
| 679 | /* |
| 680 | * Flush the ROC worker which will flush the OFFCHANNEL queue. |
| 681 | * We assume here that all the packets sent to the OFFCHANNEL |
| 682 | * queue are sent in ROC session. |
| 683 | */ |
| 684 | flush_work(&mvm->roc_done_wk); |
| 685 | } else { |
| 686 | /* |
| 687 | * By now, all the AC queues are empty. The AGG queues are |
| 688 | * empty too. We already got all the Tx responses for all the |
| 689 | * packets in the queues. The drain work can have been |
Emmanuel Grumbach | 0742a75 | 2013-06-10 14:10:33 +0300 | [diff] [blame] | 690 | * triggered. Flush it. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 691 | */ |
| 692 | flush_work(&mvm->sta_drained_wk); |
| 693 | } |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw, |
| 697 | struct ieee80211_vif *vif) |
| 698 | { |
| 699 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 700 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 701 | |
| 702 | iwl_mvm_prepare_mac_removal(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 703 | |
| 704 | mutex_lock(&mvm->mutex); |
| 705 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 706 | if (mvm->bf_allowed_vif == mvmvif) { |
| 707 | mvm->bf_allowed_vif = NULL; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 708 | vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER | |
| 709 | IEEE80211_VIF_SUPPORTS_CQM_RSSI); |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 710 | } |
| 711 | |
Johannes Berg | 6349437 | 2013-03-26 10:47:53 +0100 | [diff] [blame] | 712 | iwl_mvm_vif_dbgfs_clean(mvm, vif); |
| 713 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 714 | /* |
| 715 | * For AP/GO interface, the tear down of the resources allocated to the |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 716 | * interface is be handled as part of the stop_ap flow. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 717 | */ |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 718 | if (vif->type == NL80211_IFTYPE_AP || |
| 719 | vif->type == NL80211_IFTYPE_ADHOC) { |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 720 | #ifdef CONFIG_NL80211_TESTMODE |
| 721 | if (vif == mvm->noa_vif) { |
| 722 | mvm->noa_vif = NULL; |
| 723 | mvm->noa_duration = 0; |
| 724 | } |
| 725 | #endif |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 726 | iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta); |
| 727 | goto out_release; |
| 728 | } |
| 729 | |
| 730 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
| 731 | mvm->p2p_device_vif = NULL; |
| 732 | iwl_mvm_rm_bcast_sta(mvm, &mvmvif->bcast_sta); |
| 733 | iwl_mvm_binding_remove_vif(mvm, vif); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 734 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 735 | mvmvif->phy_ctxt = NULL; |
| 736 | } |
| 737 | |
Alexander Bondar | 5ee2b21 | 2013-03-05 10:16:40 +0200 | [diff] [blame] | 738 | if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 739 | mvm->vif_count--; |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 740 | |
| 741 | /* TODO: remove this when legacy PM will be discarded */ |
| 742 | ieee80211_iterate_active_interfaces( |
| 743 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 744 | iwl_mvm_power_update_iterator, mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 745 | |
| 746 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 747 | |
| 748 | out_release: |
| 749 | iwl_mvm_mac_ctxt_release(mvm, vif); |
| 750 | mutex_unlock(&mvm->mutex); |
| 751 | } |
| 752 | |
| 753 | static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed) |
| 754 | { |
| 755 | return 0; |
| 756 | } |
| 757 | |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 758 | struct iwl_mvm_mc_iter_data { |
| 759 | struct iwl_mvm *mvm; |
| 760 | int port_id; |
| 761 | }; |
| 762 | |
| 763 | static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac, |
| 764 | struct ieee80211_vif *vif) |
| 765 | { |
| 766 | struct iwl_mvm_mc_iter_data *data = _data; |
| 767 | struct iwl_mvm *mvm = data->mvm; |
| 768 | struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd; |
| 769 | int ret, len; |
| 770 | |
| 771 | /* if we don't have free ports, mcast frames will be dropped */ |
| 772 | if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM)) |
| 773 | return; |
| 774 | |
| 775 | if (vif->type != NL80211_IFTYPE_STATION || |
| 776 | !vif->bss_conf.assoc) |
| 777 | return; |
| 778 | |
| 779 | cmd->port_id = data->port_id++; |
| 780 | memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN); |
| 781 | len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4); |
| 782 | |
| 783 | ret = iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_SYNC, len, cmd); |
| 784 | if (ret) |
| 785 | IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret); |
| 786 | } |
| 787 | |
| 788 | static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm) |
| 789 | { |
| 790 | struct iwl_mvm_mc_iter_data iter_data = { |
| 791 | .mvm = mvm, |
| 792 | }; |
| 793 | |
| 794 | lockdep_assert_held(&mvm->mutex); |
| 795 | |
| 796 | if (WARN_ON_ONCE(!mvm->mcast_filter_cmd)) |
| 797 | return; |
| 798 | |
| 799 | ieee80211_iterate_active_interfaces( |
| 800 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 801 | iwl_mvm_mc_iface_iterator, &iter_data); |
| 802 | } |
| 803 | |
| 804 | static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw, |
| 805 | struct netdev_hw_addr_list *mc_list) |
| 806 | { |
| 807 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 808 | struct iwl_mcast_filter_cmd *cmd; |
| 809 | struct netdev_hw_addr *addr; |
| 810 | int addr_count = netdev_hw_addr_list_count(mc_list); |
| 811 | bool pass_all = false; |
| 812 | int len; |
| 813 | |
| 814 | if (addr_count > MAX_MCAST_FILTERING_ADDRESSES) { |
| 815 | pass_all = true; |
| 816 | addr_count = 0; |
| 817 | } |
| 818 | |
| 819 | len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4); |
| 820 | cmd = kzalloc(len, GFP_ATOMIC); |
| 821 | if (!cmd) |
| 822 | return 0; |
| 823 | |
| 824 | if (pass_all) { |
| 825 | cmd->pass_all = 1; |
| 826 | return (u64)(unsigned long)cmd; |
| 827 | } |
| 828 | |
| 829 | netdev_hw_addr_list_for_each(addr, mc_list) { |
| 830 | IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n", |
| 831 | cmd->count, addr->addr); |
| 832 | memcpy(&cmd->addr_list[cmd->count * ETH_ALEN], |
| 833 | addr->addr, ETH_ALEN); |
| 834 | cmd->count++; |
| 835 | } |
| 836 | |
| 837 | return (u64)(unsigned long)cmd; |
| 838 | } |
| 839 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 840 | static void iwl_mvm_configure_filter(struct ieee80211_hw *hw, |
| 841 | unsigned int changed_flags, |
| 842 | unsigned int *total_flags, |
| 843 | u64 multicast) |
| 844 | { |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 845 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 846 | struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast; |
| 847 | |
| 848 | mutex_lock(&mvm->mutex); |
| 849 | |
| 850 | /* replace previous configuration */ |
| 851 | kfree(mvm->mcast_filter_cmd); |
| 852 | mvm->mcast_filter_cmd = cmd; |
| 853 | |
| 854 | if (!cmd) |
| 855 | goto out; |
| 856 | |
| 857 | iwl_mvm_recalc_multicast(mvm); |
| 858 | out: |
| 859 | mutex_unlock(&mvm->mutex); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 860 | *total_flags = 0; |
| 861 | } |
| 862 | |
| 863 | static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm, |
| 864 | struct ieee80211_vif *vif, |
| 865 | struct ieee80211_bss_conf *bss_conf, |
| 866 | u32 changes) |
| 867 | { |
| 868 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 869 | int ret; |
| 870 | |
| 871 | ret = iwl_mvm_mac_ctxt_changed(mvm, vif); |
| 872 | if (ret) |
| 873 | IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr); |
| 874 | |
| 875 | if (changes & BSS_CHANGED_ASSOC) { |
| 876 | if (bss_conf->assoc) { |
| 877 | /* add quota for this interface */ |
| 878 | ret = iwl_mvm_update_quotas(mvm, vif); |
| 879 | if (ret) { |
| 880 | IWL_ERR(mvm, "failed to update quotas\n"); |
| 881 | return; |
| 882 | } |
Johannes Berg | 016d27e | 2013-05-03 11:16:15 +0200 | [diff] [blame] | 883 | |
| 884 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, |
| 885 | &mvm->status)) { |
| 886 | /* |
| 887 | * If we're restarting then the firmware will |
| 888 | * obviously have lost synchronisation with |
| 889 | * the AP. It will attempt to synchronise by |
| 890 | * itself, but we can make it more reliable by |
| 891 | * scheduling a session protection time event. |
| 892 | * |
| 893 | * The firmware needs to receive a beacon to |
| 894 | * catch up with synchronisation, use 110% of |
| 895 | * the beacon interval. |
| 896 | * |
| 897 | * Set a large maximum delay to allow for more |
| 898 | * than a single interface. |
| 899 | */ |
| 900 | u32 dur = (11 * vif->bss_conf.beacon_int) / 10; |
| 901 | iwl_mvm_protect_session(mvm, vif, dur, dur, |
| 902 | 5 * dur); |
| 903 | } |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 904 | |
| 905 | iwl_mvm_sf_update(mvm, vif, false); |
Alexander Bondar | 175a70b | 2013-04-14 20:59:37 +0300 | [diff] [blame] | 906 | iwl_mvm_power_vif_assoc(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 907 | } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) { |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 908 | /* |
| 909 | * If update fails - SF might be running in associated |
| 910 | * mode while disassociated - which is forbidden. |
| 911 | */ |
| 912 | WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false), |
| 913 | "Failed to update SF upon disassociation\n"); |
| 914 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 915 | /* remove AP station now that the MAC is unassoc */ |
| 916 | ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id); |
| 917 | if (ret) |
| 918 | IWL_ERR(mvm, "failed to remove AP station\n"); |
| 919 | mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT; |
| 920 | /* remove quota for this interface */ |
| 921 | ret = iwl_mvm_update_quotas(mvm, NULL); |
| 922 | if (ret) |
| 923 | IWL_ERR(mvm, "failed to update quotas\n"); |
| 924 | } |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 925 | |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 926 | iwl_mvm_recalc_multicast(mvm); |
| 927 | |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 928 | /* reset rssi values */ |
| 929 | mvmvif->bf_data.ave_beacon_signal = 0; |
| 930 | |
Alexander Bondar | e8e626a | 2013-10-16 00:21:34 +0200 | [diff] [blame] | 931 | if (!(mvm->fw->ucode_capa.flags & |
| 932 | IWL_UCODE_TLV_FLAGS_PM_CMD_SUPPORT)) { |
Alexander Bondar | e811ada | 2013-03-10 15:29:44 +0200 | [diff] [blame] | 933 | /* Workaround for FW bug, otherwise FW disables device |
| 934 | * power save upon disassociation |
| 935 | */ |
| 936 | ret = iwl_mvm_power_update_mode(mvm, vif); |
| 937 | if (ret) |
| 938 | IWL_ERR(mvm, "failed to update power mode\n"); |
| 939 | } |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 940 | iwl_mvm_bt_coex_vif_change(mvm); |
Alexander Bondar | 989c650 | 2013-05-16 17:34:17 +0300 | [diff] [blame] | 941 | } else if (changes & BSS_CHANGED_BEACON_INFO) { |
Johannes Berg | 210a544 | 2013-01-24 23:48:23 +0100 | [diff] [blame] | 942 | /* |
| 943 | * We received a beacon _after_ association so |
| 944 | * remove the session protection. |
| 945 | */ |
| 946 | iwl_mvm_remove_time_event(mvm, mvmvif, |
| 947 | &mvmvif->time_event_data); |
Alexander Bondar | 51498cf | 2013-09-02 17:10:14 +0300 | [diff] [blame] | 948 | } else if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS | |
| 949 | BSS_CHANGED_QOS)) { |
Alexander Bondar | 4bf881f | 2013-05-29 10:19:50 +0300 | [diff] [blame] | 950 | ret = iwl_mvm_power_update_mode(mvm, vif); |
| 951 | if (ret) |
| 952 | IWL_ERR(mvm, "failed to update power mode\n"); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 953 | } |
Matti Gottlieb | 88f2fd7 | 2013-07-09 15:25:46 +0300 | [diff] [blame] | 954 | if (changes & BSS_CHANGED_TXPOWER) { |
| 955 | IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n", |
| 956 | bss_conf->txpower); |
| 957 | iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower); |
| 958 | } |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 959 | |
| 960 | if (changes & BSS_CHANGED_CQM) { |
| 961 | IWL_DEBUG_MAC80211(mvm, "cqm info_changed"); |
| 962 | /* reset cqm events tracking */ |
| 963 | mvmvif->bf_data.last_cqm_event = 0; |
| 964 | ret = iwl_mvm_update_beacon_filter(mvm, vif); |
| 965 | if (ret) |
| 966 | IWL_ERR(mvm, "failed to update CQM thresholds\n"); |
| 967 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 968 | } |
| 969 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 970 | static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw, |
| 971 | struct ieee80211_vif *vif) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 972 | { |
| 973 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 974 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 975 | int ret; |
| 976 | |
| 977 | mutex_lock(&mvm->mutex); |
| 978 | |
| 979 | /* Send the beacon template */ |
| 980 | ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif); |
| 981 | if (ret) |
| 982 | goto out_unlock; |
| 983 | |
| 984 | /* Add the mac context */ |
| 985 | ret = iwl_mvm_mac_ctxt_add(mvm, vif); |
| 986 | if (ret) |
| 987 | goto out_unlock; |
| 988 | |
| 989 | /* Perform the binding */ |
| 990 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 991 | if (ret) |
| 992 | goto out_remove; |
| 993 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 994 | mvmvif->ap_ibss_active = true; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 995 | |
| 996 | /* Send the bcast station. At this stage the TBTT and DTIM time events |
| 997 | * are added and applied to the scheduler */ |
| 998 | ret = iwl_mvm_send_bcast_sta(mvm, vif, &mvmvif->bcast_sta); |
| 999 | if (ret) |
| 1000 | goto out_unbind; |
| 1001 | |
| 1002 | ret = iwl_mvm_update_quotas(mvm, vif); |
| 1003 | if (ret) |
| 1004 | goto out_rm_bcast; |
| 1005 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1006 | /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1007 | if (vif->p2p && mvm->p2p_device_vif) |
| 1008 | iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif); |
| 1009 | |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 1010 | iwl_mvm_bt_coex_vif_change(mvm); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 1011 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1012 | mutex_unlock(&mvm->mutex); |
| 1013 | return 0; |
| 1014 | |
| 1015 | out_rm_bcast: |
| 1016 | iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta); |
| 1017 | out_unbind: |
| 1018 | iwl_mvm_binding_remove_vif(mvm, vif); |
| 1019 | out_remove: |
| 1020 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 1021 | out_unlock: |
| 1022 | mutex_unlock(&mvm->mutex); |
| 1023 | return ret; |
| 1024 | } |
| 1025 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1026 | static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw, |
| 1027 | struct ieee80211_vif *vif) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1028 | { |
| 1029 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1030 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1031 | |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 1032 | iwl_mvm_prepare_mac_removal(mvm, vif); |
| 1033 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1034 | mutex_lock(&mvm->mutex); |
| 1035 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1036 | mvmvif->ap_ibss_active = false; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1037 | |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 1038 | iwl_mvm_bt_coex_vif_change(mvm); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 1039 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1040 | /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1041 | if (vif->p2p && mvm->p2p_device_vif) |
| 1042 | iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif); |
| 1043 | |
| 1044 | iwl_mvm_update_quotas(mvm, NULL); |
| 1045 | iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta); |
| 1046 | iwl_mvm_binding_remove_vif(mvm, vif); |
| 1047 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 1048 | |
| 1049 | mutex_unlock(&mvm->mutex); |
| 1050 | } |
| 1051 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1052 | static void |
| 1053 | iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm, |
| 1054 | struct ieee80211_vif *vif, |
| 1055 | struct ieee80211_bss_conf *bss_conf, |
| 1056 | u32 changes) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1057 | { |
Avri Altman | 8a5e366 | 2013-11-12 19:16:03 +0200 | [diff] [blame] | 1058 | enum ieee80211_bss_change ht_change = BSS_CHANGED_ERP_CTS_PROT | |
| 1059 | BSS_CHANGED_HT | |
| 1060 | BSS_CHANGED_BANDWIDTH; |
| 1061 | int ret; |
| 1062 | |
| 1063 | if (changes & ht_change) { |
| 1064 | ret = iwl_mvm_mac_ctxt_changed(mvm, vif); |
| 1065 | if (ret) |
| 1066 | IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr); |
| 1067 | } |
| 1068 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1069 | /* Need to send a new beacon template to the FW */ |
| 1070 | if (changes & BSS_CHANGED_BEACON) { |
| 1071 | if (iwl_mvm_mac_ctxt_beacon_changed(mvm, vif)) |
| 1072 | IWL_WARN(mvm, "Failed updating beacon data\n"); |
| 1073 | } |
| 1074 | } |
| 1075 | |
| 1076 | static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw, |
| 1077 | struct ieee80211_vif *vif, |
| 1078 | struct ieee80211_bss_conf *bss_conf, |
| 1079 | u32 changes) |
| 1080 | { |
| 1081 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1082 | |
| 1083 | mutex_lock(&mvm->mutex); |
| 1084 | |
| 1085 | switch (vif->type) { |
| 1086 | case NL80211_IFTYPE_STATION: |
| 1087 | iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes); |
| 1088 | break; |
| 1089 | case NL80211_IFTYPE_AP: |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1090 | case NL80211_IFTYPE_ADHOC: |
| 1091 | iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1092 | break; |
| 1093 | default: |
| 1094 | /* shouldn't happen */ |
| 1095 | WARN_ON_ONCE(1); |
| 1096 | } |
| 1097 | |
| 1098 | mutex_unlock(&mvm->mutex); |
| 1099 | } |
| 1100 | |
| 1101 | static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw, |
| 1102 | struct ieee80211_vif *vif, |
| 1103 | struct cfg80211_scan_request *req) |
| 1104 | { |
| 1105 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1106 | int ret; |
| 1107 | |
| 1108 | if (req->n_channels == 0 || req->n_channels > MAX_NUM_SCAN_CHANNELS) |
| 1109 | return -EINVAL; |
| 1110 | |
| 1111 | mutex_lock(&mvm->mutex); |
| 1112 | |
| 1113 | if (mvm->scan_status == IWL_MVM_SCAN_NONE) |
| 1114 | ret = iwl_mvm_scan_request(mvm, vif, req); |
| 1115 | else |
| 1116 | ret = -EBUSY; |
| 1117 | |
| 1118 | mutex_unlock(&mvm->mutex); |
| 1119 | |
| 1120 | return ret; |
| 1121 | } |
| 1122 | |
| 1123 | static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw, |
| 1124 | struct ieee80211_vif *vif) |
| 1125 | { |
| 1126 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1127 | |
| 1128 | mutex_lock(&mvm->mutex); |
| 1129 | |
| 1130 | iwl_mvm_cancel_scan(mvm); |
| 1131 | |
| 1132 | mutex_unlock(&mvm->mutex); |
| 1133 | } |
| 1134 | |
| 1135 | static void |
| 1136 | iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw, |
| 1137 | struct ieee80211_sta *sta, u16 tid, |
| 1138 | int num_frames, |
| 1139 | enum ieee80211_frame_release_type reason, |
| 1140 | bool more_data) |
| 1141 | { |
| 1142 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1143 | |
| 1144 | /* TODO: how do we tell the fw to send frames for a specific TID */ |
| 1145 | |
| 1146 | /* |
| 1147 | * The fw will send EOSP notification when the last frame will be |
| 1148 | * transmitted. |
| 1149 | */ |
Johannes Berg | 9cc4071 | 2013-02-15 22:47:48 +0100 | [diff] [blame] | 1150 | iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw, |
| 1154 | struct ieee80211_vif *vif, |
| 1155 | enum sta_notify_cmd cmd, |
| 1156 | struct ieee80211_sta *sta) |
| 1157 | { |
| 1158 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 5b577a9 | 2013-11-14 18:20:04 +0100 | [diff] [blame] | 1159 | struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1160 | |
| 1161 | switch (cmd) { |
| 1162 | case STA_NOTIFY_SLEEP: |
Emmanuel Grumbach | e3d4bc8 | 2013-05-07 14:08:24 +0300 | [diff] [blame] | 1163 | if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1164 | ieee80211_sta_block_awake(hw, sta, true); |
| 1165 | /* |
| 1166 | * The fw updates the STA to be asleep. Tx packets on the Tx |
| 1167 | * queues to this station will not be transmitted. The fw will |
| 1168 | * send a Tx response with TX_STATUS_FAIL_DEST_PS. |
| 1169 | */ |
| 1170 | break; |
| 1171 | case STA_NOTIFY_AWAKE: |
Emmanuel Grumbach | 881acd8 | 2013-03-19 16:16:00 +0200 | [diff] [blame] | 1172 | if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT)) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1173 | break; |
Johannes Berg | 9cc4071 | 2013-02-15 22:47:48 +0100 | [diff] [blame] | 1174 | iwl_mvm_sta_modify_ps_wake(mvm, sta); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1175 | break; |
| 1176 | default: |
| 1177 | break; |
| 1178 | } |
| 1179 | } |
| 1180 | |
| 1181 | static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw, |
| 1182 | struct ieee80211_vif *vif, |
| 1183 | struct ieee80211_sta *sta, |
| 1184 | enum ieee80211_sta_state old_state, |
| 1185 | enum ieee80211_sta_state new_state) |
| 1186 | { |
| 1187 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1188 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1189 | int ret; |
| 1190 | |
| 1191 | IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n", |
| 1192 | sta->addr, old_state, new_state); |
| 1193 | |
| 1194 | /* this would be a mac80211 bug ... but don't crash */ |
| 1195 | if (WARN_ON_ONCE(!mvmvif->phy_ctxt)) |
| 1196 | return -EINVAL; |
| 1197 | |
| 1198 | /* if a STA is being removed, reuse its ID */ |
| 1199 | flush_work(&mvm->sta_drained_wk); |
| 1200 | |
| 1201 | mutex_lock(&mvm->mutex); |
| 1202 | if (old_state == IEEE80211_STA_NOTEXIST && |
| 1203 | new_state == IEEE80211_STA_NONE) { |
Johannes Berg | 48bc130 | 2013-07-04 15:55:29 +0200 | [diff] [blame] | 1204 | /* |
| 1205 | * Firmware bug - it'll crash if the beacon interval is less |
| 1206 | * than 16. We can't avoid connecting at all, so refuse the |
| 1207 | * station state change, this will cause mac80211 to abandon |
| 1208 | * attempts to connect to this AP, and eventually wpa_s will |
| 1209 | * blacklist the AP... |
| 1210 | */ |
| 1211 | if (vif->type == NL80211_IFTYPE_STATION && |
| 1212 | vif->bss_conf.beacon_int < 16) { |
| 1213 | IWL_ERR(mvm, |
| 1214 | "AP %pM beacon interval is %d, refusing due to firmware bug!\n", |
| 1215 | sta->addr, vif->bss_conf.beacon_int); |
| 1216 | ret = -EINVAL; |
| 1217 | goto out_unlock; |
| 1218 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1219 | ret = iwl_mvm_add_sta(mvm, vif, sta); |
| 1220 | } else if (old_state == IEEE80211_STA_NONE && |
| 1221 | new_state == IEEE80211_STA_AUTH) { |
| 1222 | ret = 0; |
| 1223 | } else if (old_state == IEEE80211_STA_AUTH && |
| 1224 | new_state == IEEE80211_STA_ASSOC) { |
Johannes Berg | 7a45397 | 2013-02-12 13:10:44 +0100 | [diff] [blame] | 1225 | ret = iwl_mvm_update_sta(mvm, vif, sta); |
| 1226 | if (ret == 0) |
| 1227 | iwl_mvm_rs_rate_init(mvm, sta, |
Eyal Shapira | b87c217 | 2013-11-09 23:37:55 +0200 | [diff] [blame] | 1228 | mvmvif->phy_ctxt->channel->band, |
| 1229 | true); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1230 | } else if (old_state == IEEE80211_STA_ASSOC && |
| 1231 | new_state == IEEE80211_STA_AUTHORIZED) { |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1232 | /* enable beacon filtering */ |
| 1233 | WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1234 | ret = 0; |
| 1235 | } else if (old_state == IEEE80211_STA_AUTHORIZED && |
| 1236 | new_state == IEEE80211_STA_ASSOC) { |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1237 | /* disable beacon filtering */ |
| 1238 | WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1239 | ret = 0; |
| 1240 | } else if (old_state == IEEE80211_STA_ASSOC && |
| 1241 | new_state == IEEE80211_STA_AUTH) { |
| 1242 | ret = 0; |
| 1243 | } else if (old_state == IEEE80211_STA_AUTH && |
| 1244 | new_state == IEEE80211_STA_NONE) { |
| 1245 | ret = 0; |
| 1246 | } else if (old_state == IEEE80211_STA_NONE && |
| 1247 | new_state == IEEE80211_STA_NOTEXIST) { |
| 1248 | ret = iwl_mvm_rm_sta(mvm, vif, sta); |
| 1249 | } else { |
| 1250 | ret = -EIO; |
| 1251 | } |
Johannes Berg | 48bc130 | 2013-07-04 15:55:29 +0200 | [diff] [blame] | 1252 | out_unlock: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1253 | mutex_unlock(&mvm->mutex); |
| 1254 | |
| 1255 | return ret; |
| 1256 | } |
| 1257 | |
| 1258 | static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value) |
| 1259 | { |
| 1260 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1261 | |
| 1262 | mvm->rts_threshold = value; |
| 1263 | |
| 1264 | return 0; |
| 1265 | } |
| 1266 | |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 1267 | static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw, |
| 1268 | struct ieee80211_vif *vif, |
| 1269 | struct ieee80211_sta *sta, u32 changed) |
| 1270 | { |
| 1271 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1272 | |
| 1273 | if (vif->type == NL80211_IFTYPE_STATION && |
| 1274 | changed & IEEE80211_RC_NSS_CHANGED) |
| 1275 | iwl_mvm_sf_update(mvm, vif, false); |
| 1276 | } |
| 1277 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1278 | static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw, |
| 1279 | struct ieee80211_vif *vif, u16 ac, |
| 1280 | const struct ieee80211_tx_queue_params *params) |
| 1281 | { |
| 1282 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1283 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1284 | |
| 1285 | mvmvif->queue_params[ac] = *params; |
| 1286 | |
| 1287 | /* |
| 1288 | * No need to update right away, we'll get BSS_CHANGED_QOS |
| 1289 | * The exception is P2P_DEVICE interface which needs immediate update. |
| 1290 | */ |
| 1291 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
| 1292 | int ret; |
| 1293 | |
| 1294 | mutex_lock(&mvm->mutex); |
| 1295 | ret = iwl_mvm_mac_ctxt_changed(mvm, vif); |
| 1296 | mutex_unlock(&mvm->mutex); |
| 1297 | return ret; |
| 1298 | } |
| 1299 | return 0; |
| 1300 | } |
| 1301 | |
| 1302 | static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw, |
| 1303 | struct ieee80211_vif *vif) |
| 1304 | { |
| 1305 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1306 | u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS, |
| 1307 | 200 + vif->bss_conf.beacon_int); |
| 1308 | u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS, |
| 1309 | 100 + vif->bss_conf.beacon_int); |
| 1310 | |
| 1311 | if (WARN_ON_ONCE(vif->bss_conf.assoc)) |
| 1312 | return; |
| 1313 | |
| 1314 | mutex_lock(&mvm->mutex); |
| 1315 | /* Try really hard to protect the session and hear a beacon */ |
Johannes Berg | 016d27e | 2013-05-03 11:16:15 +0200 | [diff] [blame] | 1316 | iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1317 | mutex_unlock(&mvm->mutex); |
| 1318 | } |
| 1319 | |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 1320 | static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw, |
| 1321 | struct ieee80211_vif *vif, |
| 1322 | struct cfg80211_sched_scan_request *req, |
| 1323 | struct ieee80211_sched_scan_ies *ies) |
| 1324 | { |
| 1325 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1326 | int ret; |
| 1327 | |
| 1328 | mutex_lock(&mvm->mutex); |
| 1329 | |
| 1330 | if (mvm->scan_status != IWL_MVM_SCAN_NONE) { |
| 1331 | IWL_DEBUG_SCAN(mvm, |
| 1332 | "SCHED SCAN request during internal scan - abort\n"); |
| 1333 | ret = -EBUSY; |
| 1334 | goto out; |
| 1335 | } |
| 1336 | |
| 1337 | mvm->scan_status = IWL_MVM_SCAN_SCHED; |
| 1338 | |
| 1339 | ret = iwl_mvm_config_sched_scan(mvm, vif, req, ies); |
| 1340 | if (ret) |
| 1341 | goto err; |
| 1342 | |
| 1343 | ret = iwl_mvm_config_sched_scan_profiles(mvm, req); |
| 1344 | if (ret) |
| 1345 | goto err; |
| 1346 | |
| 1347 | ret = iwl_mvm_sched_scan_start(mvm, req); |
| 1348 | if (!ret) |
| 1349 | goto out; |
| 1350 | err: |
| 1351 | mvm->scan_status = IWL_MVM_SCAN_NONE; |
| 1352 | out: |
| 1353 | mutex_unlock(&mvm->mutex); |
| 1354 | return ret; |
| 1355 | } |
| 1356 | |
| 1357 | static void iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw, |
| 1358 | struct ieee80211_vif *vif) |
| 1359 | { |
| 1360 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1361 | |
| 1362 | mutex_lock(&mvm->mutex); |
| 1363 | iwl_mvm_sched_scan_stop(mvm); |
| 1364 | mutex_unlock(&mvm->mutex); |
| 1365 | } |
| 1366 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1367 | static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw, |
| 1368 | enum set_key_cmd cmd, |
| 1369 | struct ieee80211_vif *vif, |
| 1370 | struct ieee80211_sta *sta, |
| 1371 | struct ieee80211_key_conf *key) |
| 1372 | { |
| 1373 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1374 | int ret; |
| 1375 | |
| 1376 | if (iwlwifi_mod_params.sw_crypto) { |
| 1377 | IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n"); |
| 1378 | return -EOPNOTSUPP; |
| 1379 | } |
| 1380 | |
| 1381 | switch (key->cipher) { |
| 1382 | case WLAN_CIPHER_SUITE_TKIP: |
| 1383 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
| 1384 | /* fall-through */ |
| 1385 | case WLAN_CIPHER_SUITE_CCMP: |
| 1386 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 1387 | break; |
| 1388 | case WLAN_CIPHER_SUITE_AES_CMAC: |
| 1389 | WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE)); |
| 1390 | break; |
| 1391 | case WLAN_CIPHER_SUITE_WEP40: |
| 1392 | case WLAN_CIPHER_SUITE_WEP104: |
| 1393 | /* |
| 1394 | * Support for TX only, at least for now, so accept |
| 1395 | * the key and do nothing else. Then mac80211 will |
| 1396 | * pass it for TX but we don't have to use it for RX. |
| 1397 | */ |
| 1398 | return 0; |
| 1399 | default: |
Max Stepanov | e36e543 | 2013-08-27 19:56:13 +0300 | [diff] [blame] | 1400 | /* currently FW supports only one optional cipher scheme */ |
| 1401 | if (hw->n_cipher_schemes && |
| 1402 | hw->cipher_schemes->cipher == key->cipher) |
| 1403 | key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE; |
| 1404 | else |
| 1405 | return -EOPNOTSUPP; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1406 | } |
| 1407 | |
| 1408 | mutex_lock(&mvm->mutex); |
| 1409 | |
| 1410 | switch (cmd) { |
| 1411 | case SET_KEY: |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1412 | if ((vif->type == NL80211_IFTYPE_ADHOC || |
| 1413 | vif->type == NL80211_IFTYPE_AP) && !sta) { |
| 1414 | /* |
| 1415 | * GTK on AP interface is a TX-only key, return 0; |
| 1416 | * on IBSS they're per-station and because we're lazy |
| 1417 | * we don't support them for RX, so do the same. |
| 1418 | */ |
Johannes Berg | 6caffd4 | 2013-03-06 13:15:21 +0100 | [diff] [blame] | 1419 | ret = 0; |
| 1420 | key->hw_key_idx = STA_KEY_IDX_INVALID; |
| 1421 | break; |
| 1422 | } |
| 1423 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1424 | IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n"); |
| 1425 | ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, false); |
| 1426 | if (ret) { |
| 1427 | IWL_WARN(mvm, "set key failed\n"); |
| 1428 | /* |
| 1429 | * can't add key for RX, but we don't need it |
| 1430 | * in the device for TX so still return 0 |
| 1431 | */ |
Johannes Berg | 6caffd4 | 2013-03-06 13:15:21 +0100 | [diff] [blame] | 1432 | key->hw_key_idx = STA_KEY_IDX_INVALID; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1433 | ret = 0; |
| 1434 | } |
| 1435 | |
| 1436 | break; |
| 1437 | case DISABLE_KEY: |
Johannes Berg | 6caffd4 | 2013-03-06 13:15:21 +0100 | [diff] [blame] | 1438 | if (key->hw_key_idx == STA_KEY_IDX_INVALID) { |
| 1439 | ret = 0; |
| 1440 | break; |
| 1441 | } |
| 1442 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1443 | IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n"); |
| 1444 | ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key); |
| 1445 | break; |
| 1446 | default: |
| 1447 | ret = -EINVAL; |
| 1448 | } |
| 1449 | |
| 1450 | mutex_unlock(&mvm->mutex); |
| 1451 | return ret; |
| 1452 | } |
| 1453 | |
| 1454 | static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw, |
| 1455 | struct ieee80211_vif *vif, |
| 1456 | struct ieee80211_key_conf *keyconf, |
| 1457 | struct ieee80211_sta *sta, |
| 1458 | u32 iv32, u16 *phase1key) |
| 1459 | { |
| 1460 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1461 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1462 | if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID) |
| 1463 | return; |
| 1464 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1465 | iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key); |
| 1466 | } |
| 1467 | |
| 1468 | |
| 1469 | static int iwl_mvm_roc(struct ieee80211_hw *hw, |
| 1470 | struct ieee80211_vif *vif, |
| 1471 | struct ieee80211_channel *channel, |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 1472 | int duration, |
| 1473 | enum ieee80211_roc_type type) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1474 | { |
| 1475 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1476 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1477 | struct cfg80211_chan_def chandef; |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 1478 | struct iwl_mvm_phy_ctxt *phy_ctxt; |
| 1479 | int ret, i; |
| 1480 | |
| 1481 | IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value, |
| 1482 | duration, type); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1483 | |
| 1484 | if (vif->type != NL80211_IFTYPE_P2P_DEVICE) { |
| 1485 | IWL_ERR(mvm, "vif isn't a P2P_DEVICE: %d\n", vif->type); |
| 1486 | return -EINVAL; |
| 1487 | } |
| 1488 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1489 | mutex_lock(&mvm->mutex); |
| 1490 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 1491 | for (i = 0; i < NUM_PHY_CTX; i++) { |
| 1492 | phy_ctxt = &mvm->phy_ctxts[i]; |
| 1493 | if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt) |
| 1494 | continue; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1495 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 1496 | if (phy_ctxt->ref && channel == phy_ctxt->channel) { |
| 1497 | /* |
| 1498 | * Unbind the P2P_DEVICE from the current PHY context, |
| 1499 | * and if the PHY context is not used remove it. |
| 1500 | */ |
| 1501 | ret = iwl_mvm_binding_remove_vif(mvm, vif); |
| 1502 | if (WARN(ret, "Failed unbinding P2P_DEVICE\n")) |
| 1503 | goto out_unlock; |
| 1504 | |
| 1505 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
| 1506 | |
| 1507 | /* Bind the P2P_DEVICE to the current PHY Context */ |
| 1508 | mvmvif->phy_ctxt = phy_ctxt; |
| 1509 | |
| 1510 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 1511 | if (WARN(ret, "Failed binding P2P_DEVICE\n")) |
| 1512 | goto out_unlock; |
| 1513 | |
| 1514 | iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt); |
| 1515 | goto schedule_time_event; |
| 1516 | } |
| 1517 | } |
| 1518 | |
| 1519 | /* Need to update the PHY context only if the ROC channel changed */ |
| 1520 | if (channel == mvmvif->phy_ctxt->channel) |
| 1521 | goto schedule_time_event; |
| 1522 | |
| 1523 | cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT); |
| 1524 | |
| 1525 | /* |
| 1526 | * Change the PHY context configuration as it is currently referenced |
| 1527 | * only by the P2P Device MAC |
| 1528 | */ |
| 1529 | if (mvmvif->phy_ctxt->ref == 1) { |
| 1530 | ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt, |
| 1531 | &chandef, 1, 1); |
| 1532 | if (ret) |
| 1533 | goto out_unlock; |
| 1534 | } else { |
| 1535 | /* |
| 1536 | * The PHY context is shared with other MACs. Need to remove the |
| 1537 | * P2P Device from the binding, allocate an new PHY context and |
| 1538 | * create a new binding |
| 1539 | */ |
| 1540 | phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); |
| 1541 | if (!phy_ctxt) { |
| 1542 | ret = -ENOSPC; |
| 1543 | goto out_unlock; |
| 1544 | } |
| 1545 | |
| 1546 | ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef, |
| 1547 | 1, 1); |
| 1548 | if (ret) { |
| 1549 | IWL_ERR(mvm, "Failed to change PHY context\n"); |
| 1550 | goto out_unlock; |
| 1551 | } |
| 1552 | |
| 1553 | /* Unbind the P2P_DEVICE from the current PHY context */ |
| 1554 | ret = iwl_mvm_binding_remove_vif(mvm, vif); |
| 1555 | if (WARN(ret, "Failed unbinding P2P_DEVICE\n")) |
| 1556 | goto out_unlock; |
| 1557 | |
| 1558 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
| 1559 | |
| 1560 | /* Bind the P2P_DEVICE to the new allocated PHY context */ |
| 1561 | mvmvif->phy_ctxt = phy_ctxt; |
| 1562 | |
| 1563 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 1564 | if (WARN(ret, "Failed binding P2P_DEVICE\n")) |
| 1565 | goto out_unlock; |
| 1566 | |
| 1567 | iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt); |
| 1568 | } |
| 1569 | |
| 1570 | schedule_time_event: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1571 | /* Schedule the time events */ |
Ilan Peer | e635c79 | 2013-02-13 11:05:18 +0200 | [diff] [blame] | 1572 | ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1573 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 1574 | out_unlock: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1575 | mutex_unlock(&mvm->mutex); |
| 1576 | IWL_DEBUG_MAC80211(mvm, "leave\n"); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1577 | return ret; |
| 1578 | } |
| 1579 | |
| 1580 | static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw) |
| 1581 | { |
| 1582 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1583 | |
| 1584 | IWL_DEBUG_MAC80211(mvm, "enter\n"); |
| 1585 | |
| 1586 | mutex_lock(&mvm->mutex); |
| 1587 | iwl_mvm_stop_p2p_roc(mvm); |
| 1588 | mutex_unlock(&mvm->mutex); |
| 1589 | |
| 1590 | IWL_DEBUG_MAC80211(mvm, "leave\n"); |
| 1591 | return 0; |
| 1592 | } |
| 1593 | |
| 1594 | static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw, |
| 1595 | struct ieee80211_chanctx_conf *ctx) |
| 1596 | { |
| 1597 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1598 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 1599 | struct iwl_mvm_phy_ctxt *phy_ctxt; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1600 | int ret; |
| 1601 | |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 1602 | IWL_DEBUG_MAC80211(mvm, "Add channel context\n"); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1603 | |
| 1604 | mutex_lock(&mvm->mutex); |
| 1605 | phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); |
| 1606 | if (!phy_ctxt) { |
| 1607 | ret = -ENOSPC; |
| 1608 | goto out; |
| 1609 | } |
| 1610 | |
Eliad Peller | dcbc3e1 | 2013-10-31 14:31:25 +0200 | [diff] [blame^] | 1611 | ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def, |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 1612 | ctx->rx_chains_static, |
| 1613 | ctx->rx_chains_dynamic); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1614 | if (ret) { |
| 1615 | IWL_ERR(mvm, "Failed to add PHY context\n"); |
| 1616 | goto out; |
| 1617 | } |
| 1618 | |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 1619 | iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1620 | *phy_ctxt_id = phy_ctxt->id; |
| 1621 | out: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1622 | mutex_unlock(&mvm->mutex); |
| 1623 | return ret; |
| 1624 | } |
| 1625 | |
| 1626 | static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw, |
| 1627 | struct ieee80211_chanctx_conf *ctx) |
| 1628 | { |
| 1629 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1630 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 1631 | struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id]; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1632 | |
| 1633 | mutex_lock(&mvm->mutex); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1634 | iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1635 | mutex_unlock(&mvm->mutex); |
| 1636 | } |
| 1637 | |
| 1638 | static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw, |
| 1639 | struct ieee80211_chanctx_conf *ctx, |
| 1640 | u32 changed) |
| 1641 | { |
| 1642 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1643 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 1644 | struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id]; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1645 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 1646 | if (WARN_ONCE((phy_ctxt->ref > 1) && |
| 1647 | (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH | |
| 1648 | IEEE80211_CHANCTX_CHANGE_RX_CHAINS | |
| 1649 | IEEE80211_CHANCTX_CHANGE_RADAR)), |
| 1650 | "Cannot change PHY. Ref=%d, changed=0x%X\n", |
| 1651 | phy_ctxt->ref, changed)) |
| 1652 | return; |
| 1653 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1654 | mutex_lock(&mvm->mutex); |
Eliad Peller | dcbc3e1 | 2013-10-31 14:31:25 +0200 | [diff] [blame^] | 1655 | iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1656 | ctx->rx_chains_static, |
| 1657 | ctx->rx_chains_dynamic); |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 1658 | iwl_mvm_bt_coex_vif_change(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1659 | mutex_unlock(&mvm->mutex); |
| 1660 | } |
| 1661 | |
| 1662 | static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw, |
| 1663 | struct ieee80211_vif *vif, |
| 1664 | struct ieee80211_chanctx_conf *ctx) |
| 1665 | { |
| 1666 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1667 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 1668 | struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id]; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1669 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1670 | int ret; |
| 1671 | |
| 1672 | mutex_lock(&mvm->mutex); |
| 1673 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1674 | mvmvif->phy_ctxt = phy_ctxt; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1675 | |
| 1676 | switch (vif->type) { |
| 1677 | case NL80211_IFTYPE_AP: |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1678 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1679 | /* |
| 1680 | * The AP binding flow is handled as part of the start_ap flow |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1681 | * (in bss_info_changed), similarly for IBSS. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1682 | */ |
| 1683 | ret = 0; |
| 1684 | goto out_unlock; |
| 1685 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1686 | case NL80211_IFTYPE_MONITOR: |
| 1687 | break; |
| 1688 | default: |
| 1689 | ret = -EINVAL; |
| 1690 | goto out_unlock; |
| 1691 | } |
| 1692 | |
| 1693 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 1694 | if (ret) |
| 1695 | goto out_unlock; |
| 1696 | |
| 1697 | /* |
Alexander Bondar | 92d8556 | 2013-10-23 11:50:34 +0200 | [diff] [blame] | 1698 | * Power state must be updated before quotas, |
| 1699 | * otherwise fw will complain. |
| 1700 | */ |
| 1701 | mvm->bound_vif_cnt++; |
| 1702 | iwl_mvm_power_update_binding(mvm, vif, true); |
| 1703 | |
| 1704 | /* Setting the quota at this stage is only required for monitor |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1705 | * interfaces. For the other types, the bss_info changed flow |
| 1706 | * will handle quota settings. |
| 1707 | */ |
| 1708 | if (vif->type == NL80211_IFTYPE_MONITOR) { |
Ilan Peer | 1e1391c | 2013-03-13 14:52:04 +0200 | [diff] [blame] | 1709 | mvmvif->monitor_active = true; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1710 | ret = iwl_mvm_update_quotas(mvm, vif); |
| 1711 | if (ret) |
| 1712 | goto out_remove_binding; |
| 1713 | } |
| 1714 | |
| 1715 | goto out_unlock; |
| 1716 | |
| 1717 | out_remove_binding: |
| 1718 | iwl_mvm_binding_remove_vif(mvm, vif); |
Alexander Bondar | 92d8556 | 2013-10-23 11:50:34 +0200 | [diff] [blame] | 1719 | mvm->bound_vif_cnt--; |
| 1720 | iwl_mvm_power_update_binding(mvm, vif, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1721 | out_unlock: |
| 1722 | mutex_unlock(&mvm->mutex); |
| 1723 | if (ret) |
| 1724 | mvmvif->phy_ctxt = NULL; |
| 1725 | return ret; |
| 1726 | } |
| 1727 | |
| 1728 | static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw, |
| 1729 | struct ieee80211_vif *vif, |
| 1730 | struct ieee80211_chanctx_conf *ctx) |
| 1731 | { |
| 1732 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1733 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1734 | |
| 1735 | mutex_lock(&mvm->mutex); |
| 1736 | |
| 1737 | iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data); |
| 1738 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1739 | switch (vif->type) { |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1740 | case NL80211_IFTYPE_AP: |
| 1741 | case NL80211_IFTYPE_ADHOC: |
| 1742 | goto out_unlock; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1743 | case NL80211_IFTYPE_MONITOR: |
Ilan Peer | 1e1391c | 2013-03-13 14:52:04 +0200 | [diff] [blame] | 1744 | mvmvif->monitor_active = false; |
| 1745 | iwl_mvm_update_quotas(mvm, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1746 | break; |
| 1747 | default: |
| 1748 | break; |
| 1749 | } |
| 1750 | |
Ilan Peer | 1e1391c | 2013-03-13 14:52:04 +0200 | [diff] [blame] | 1751 | iwl_mvm_binding_remove_vif(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1752 | out_unlock: |
| 1753 | mvmvif->phy_ctxt = NULL; |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 1754 | mvm->bound_vif_cnt--; |
Alexander Bondar | 92d8556 | 2013-10-23 11:50:34 +0200 | [diff] [blame] | 1755 | iwl_mvm_power_update_binding(mvm, vif, false); |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 1756 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1757 | mutex_unlock(&mvm->mutex); |
| 1758 | } |
| 1759 | |
| 1760 | static int iwl_mvm_set_tim(struct ieee80211_hw *hw, |
| 1761 | struct ieee80211_sta *sta, |
| 1762 | bool set) |
| 1763 | { |
| 1764 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1765 | struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv; |
| 1766 | |
| 1767 | if (!mvm_sta || !mvm_sta->vif) { |
| 1768 | IWL_ERR(mvm, "Station is not associated to a vif\n"); |
| 1769 | return -EINVAL; |
| 1770 | } |
| 1771 | |
| 1772 | return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif); |
| 1773 | } |
| 1774 | |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 1775 | #ifdef CONFIG_NL80211_TESTMODE |
| 1776 | static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = { |
| 1777 | [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 }, |
| 1778 | [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 }, |
Johannes Berg | f6c6ad42 | 2013-08-01 14:17:15 +0200 | [diff] [blame] | 1779 | [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 }, |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 1780 | }; |
| 1781 | |
| 1782 | static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm, |
| 1783 | struct ieee80211_vif *vif, |
| 1784 | void *data, int len) |
| 1785 | { |
| 1786 | struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1]; |
| 1787 | int err; |
| 1788 | u32 noa_duration; |
| 1789 | |
| 1790 | err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy); |
| 1791 | if (err) |
| 1792 | return err; |
| 1793 | |
| 1794 | if (!tb[IWL_MVM_TM_ATTR_CMD]) |
| 1795 | return -EINVAL; |
| 1796 | |
| 1797 | switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) { |
| 1798 | case IWL_MVM_TM_CMD_SET_NOA: |
| 1799 | if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p || |
| 1800 | !vif->bss_conf.enable_beacon || |
| 1801 | !tb[IWL_MVM_TM_ATTR_NOA_DURATION]) |
| 1802 | return -EINVAL; |
| 1803 | |
| 1804 | noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]); |
| 1805 | if (noa_duration >= vif->bss_conf.beacon_int) |
| 1806 | return -EINVAL; |
| 1807 | |
| 1808 | mvm->noa_duration = noa_duration; |
| 1809 | mvm->noa_vif = vif; |
| 1810 | |
| 1811 | return iwl_mvm_update_quotas(mvm, NULL); |
Johannes Berg | f6c6ad42 | 2013-08-01 14:17:15 +0200 | [diff] [blame] | 1812 | case IWL_MVM_TM_CMD_SET_BEACON_FILTER: |
| 1813 | /* must be associated client vif - ignore authorized */ |
| 1814 | if (!vif || vif->type != NL80211_IFTYPE_STATION || |
| 1815 | !vif->bss_conf.assoc || !vif->bss_conf.dtim_period || |
| 1816 | !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]) |
| 1817 | return -EINVAL; |
| 1818 | |
| 1819 | if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])) |
| 1820 | return iwl_mvm_enable_beacon_filter(mvm, vif); |
| 1821 | return iwl_mvm_disable_beacon_filter(mvm, vif); |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 1822 | } |
| 1823 | |
| 1824 | return -EOPNOTSUPP; |
| 1825 | } |
| 1826 | |
| 1827 | static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw, |
| 1828 | struct ieee80211_vif *vif, |
| 1829 | void *data, int len) |
| 1830 | { |
| 1831 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1832 | int err; |
| 1833 | |
| 1834 | mutex_lock(&mvm->mutex); |
| 1835 | err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len); |
| 1836 | mutex_unlock(&mvm->mutex); |
| 1837 | |
| 1838 | return err; |
| 1839 | } |
| 1840 | #endif |
| 1841 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1842 | struct ieee80211_ops iwl_mvm_hw_ops = { |
| 1843 | .tx = iwl_mvm_mac_tx, |
| 1844 | .ampdu_action = iwl_mvm_mac_ampdu_action, |
| 1845 | .start = iwl_mvm_mac_start, |
| 1846 | .restart_complete = iwl_mvm_mac_restart_complete, |
| 1847 | .stop = iwl_mvm_mac_stop, |
| 1848 | .add_interface = iwl_mvm_mac_add_interface, |
| 1849 | .remove_interface = iwl_mvm_mac_remove_interface, |
| 1850 | .config = iwl_mvm_mac_config, |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1851 | .prepare_multicast = iwl_mvm_prepare_multicast, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1852 | .configure_filter = iwl_mvm_configure_filter, |
| 1853 | .bss_info_changed = iwl_mvm_bss_info_changed, |
| 1854 | .hw_scan = iwl_mvm_mac_hw_scan, |
| 1855 | .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan, |
| 1856 | .sta_state = iwl_mvm_mac_sta_state, |
| 1857 | .sta_notify = iwl_mvm_mac_sta_notify, |
| 1858 | .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames, |
| 1859 | .set_rts_threshold = iwl_mvm_mac_set_rts_threshold, |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 1860 | .sta_rc_update = iwl_mvm_sta_rc_update, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1861 | .conf_tx = iwl_mvm_mac_conf_tx, |
| 1862 | .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx, |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 1863 | .sched_scan_start = iwl_mvm_mac_sched_scan_start, |
| 1864 | .sched_scan_stop = iwl_mvm_mac_sched_scan_stop, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1865 | .set_key = iwl_mvm_mac_set_key, |
| 1866 | .update_tkip_key = iwl_mvm_mac_update_tkip_key, |
| 1867 | .remain_on_channel = iwl_mvm_roc, |
| 1868 | .cancel_remain_on_channel = iwl_mvm_cancel_roc, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1869 | .add_chanctx = iwl_mvm_add_chanctx, |
| 1870 | .remove_chanctx = iwl_mvm_remove_chanctx, |
| 1871 | .change_chanctx = iwl_mvm_change_chanctx, |
| 1872 | .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx, |
| 1873 | .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx, |
| 1874 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1875 | .start_ap = iwl_mvm_start_ap_ibss, |
| 1876 | .stop_ap = iwl_mvm_stop_ap_ibss, |
| 1877 | .join_ibss = iwl_mvm_start_ap_ibss, |
| 1878 | .leave_ibss = iwl_mvm_stop_ap_ibss, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1879 | |
| 1880 | .set_tim = iwl_mvm_set_tim, |
| 1881 | |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 1882 | CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd) |
| 1883 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1884 | #ifdef CONFIG_PM_SLEEP |
| 1885 | /* look at d3.c */ |
| 1886 | .suspend = iwl_mvm_suspend, |
| 1887 | .resume = iwl_mvm_resume, |
| 1888 | .set_wakeup = iwl_mvm_set_wakeup, |
| 1889 | .set_rekey_data = iwl_mvm_set_rekey_data, |
| 1890 | #if IS_ENABLED(CONFIG_IPV6) |
| 1891 | .ipv6_addr_change = iwl_mvm_ipv6_addr_change, |
| 1892 | #endif |
| 1893 | .set_default_unicast_key = iwl_mvm_set_default_unicast_key, |
| 1894 | #endif |
| 1895 | }; |