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 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 8 | * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 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 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 33 | * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 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> |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 69 | #include <linux/if_arp.h> |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 70 | #include <net/mac80211.h> |
Emmanuel Grumbach | 7b1dd04 | 2014-02-04 15:32:43 +0200 | [diff] [blame] | 71 | #include <net/ieee80211_radiotap.h> |
Johannes Berg | f0c2646 | 2013-01-22 20:41:58 +0100 | [diff] [blame] | 72 | #include <net/tcp.h> |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 73 | |
| 74 | #include "iwl-op-mode.h" |
| 75 | #include "iwl-io.h" |
| 76 | #include "mvm.h" |
| 77 | #include "sta.h" |
| 78 | #include "time-event.h" |
| 79 | #include "iwl-eeprom-parse.h" |
| 80 | #include "fw-api-scan.h" |
| 81 | #include "iwl-phy-db.h" |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 82 | #include "testmode.h" |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 83 | #include "iwl-fw-error-dump.h" |
| 84 | #include "iwl-prph.h" |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 85 | |
| 86 | static const struct ieee80211_iface_limit iwl_mvm_limits[] = { |
| 87 | { |
| 88 | .max = 1, |
Ilan Peer | 8eb3871 | 2013-06-01 20:17:18 +0300 | [diff] [blame] | 89 | .types = BIT(NL80211_IFTYPE_STATION), |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 90 | }, |
Johannes Berg | 3c15a0f | 2013-05-31 10:17:19 +0200 | [diff] [blame] | 91 | { |
| 92 | .max = 1, |
Ilan Peer | 8eb3871 | 2013-06-01 20:17:18 +0300 | [diff] [blame] | 93 | .types = BIT(NL80211_IFTYPE_AP) | |
| 94 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
Johannes Berg | 3c15a0f | 2013-05-31 10:17:19 +0200 | [diff] [blame] | 95 | BIT(NL80211_IFTYPE_P2P_GO), |
| 96 | }, |
| 97 | { |
| 98 | .max = 1, |
| 99 | .types = BIT(NL80211_IFTYPE_P2P_DEVICE), |
| 100 | }, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = { |
| 104 | { |
| 105 | .num_different_channels = 1, |
| 106 | .max_interfaces = 3, |
| 107 | .limits = iwl_mvm_limits, |
| 108 | .n_limits = ARRAY_SIZE(iwl_mvm_limits), |
| 109 | }, |
| 110 | }; |
| 111 | |
Johannes Berg | f0c2646 | 2013-01-22 20:41:58 +0100 | [diff] [blame] | 112 | #ifdef CONFIG_PM_SLEEP |
| 113 | static const struct nl80211_wowlan_tcp_data_token_feature |
| 114 | iwl_mvm_wowlan_tcp_token_feature = { |
| 115 | .min_len = 0, |
| 116 | .max_len = 255, |
| 117 | .bufsize = IWL_WOWLAN_REMOTE_WAKE_MAX_TOKENS, |
| 118 | }; |
| 119 | |
| 120 | static const struct wiphy_wowlan_tcp_support iwl_mvm_wowlan_tcp_support = { |
| 121 | .tok = &iwl_mvm_wowlan_tcp_token_feature, |
| 122 | .data_payload_max = IWL_WOWLAN_TCP_MAX_PACKET_LEN - |
| 123 | sizeof(struct ethhdr) - |
| 124 | sizeof(struct iphdr) - |
| 125 | sizeof(struct tcphdr), |
| 126 | .data_interval_max = 65535, /* __le16 in API */ |
| 127 | .wake_payload_max = IWL_WOWLAN_REMOTE_WAKE_MAX_PACKET_LEN - |
| 128 | sizeof(struct ethhdr) - |
| 129 | sizeof(struct iphdr) - |
| 130 | sizeof(struct tcphdr), |
| 131 | .seq = true, |
| 132 | }; |
| 133 | #endif |
| 134 | |
Eliad Peller | 7773692 | 2014-01-14 12:35:49 +0200 | [diff] [blame] | 135 | #ifdef CONFIG_IWLWIFI_BCAST_FILTERING |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 136 | /* |
| 137 | * Use the reserved field to indicate magic values. |
| 138 | * these values will only be used internally by the driver, |
| 139 | * and won't make it to the fw (reserved will be 0). |
| 140 | * BC_FILTER_MAGIC_IP - configure the val of this attribute to |
| 141 | * be the vif's ip address. in case there is not a single |
| 142 | * ip address (0, or more than 1), this attribute will |
| 143 | * be skipped. |
| 144 | * BC_FILTER_MAGIC_MAC - set the val of this attribute to |
| 145 | * the LSB bytes of the vif's mac address |
| 146 | */ |
| 147 | enum { |
| 148 | BC_FILTER_MAGIC_NONE = 0, |
| 149 | BC_FILTER_MAGIC_IP, |
| 150 | BC_FILTER_MAGIC_MAC, |
| 151 | }; |
| 152 | |
Eliad Peller | 7773692 | 2014-01-14 12:35:49 +0200 | [diff] [blame] | 153 | static const struct iwl_fw_bcast_filter iwl_mvm_default_bcast_filters[] = { |
| 154 | { |
| 155 | /* arp */ |
| 156 | .discard = 0, |
| 157 | .frame_type = BCAST_FILTER_FRAME_TYPE_ALL, |
| 158 | .attrs = { |
| 159 | { |
| 160 | /* frame type - arp, hw type - ethernet */ |
| 161 | .offset_type = |
| 162 | BCAST_FILTER_OFFSET_PAYLOAD_START, |
| 163 | .offset = sizeof(rfc1042_header), |
| 164 | .val = cpu_to_be32(0x08060001), |
| 165 | .mask = cpu_to_be32(0xffffffff), |
| 166 | }, |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 167 | { |
| 168 | /* arp dest ip */ |
| 169 | .offset_type = |
| 170 | BCAST_FILTER_OFFSET_PAYLOAD_START, |
| 171 | .offset = sizeof(rfc1042_header) + 2 + |
| 172 | sizeof(struct arphdr) + |
| 173 | ETH_ALEN + sizeof(__be32) + |
| 174 | ETH_ALEN, |
| 175 | .mask = cpu_to_be32(0xffffffff), |
| 176 | /* mark it as special field */ |
| 177 | .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_IP), |
| 178 | }, |
| 179 | }, |
| 180 | }, |
| 181 | { |
| 182 | /* dhcp offer bcast */ |
| 183 | .discard = 0, |
| 184 | .frame_type = BCAST_FILTER_FRAME_TYPE_IPV4, |
| 185 | .attrs = { |
| 186 | { |
| 187 | /* udp dest port - 68 (bootp client)*/ |
| 188 | .offset_type = BCAST_FILTER_OFFSET_IP_END, |
| 189 | .offset = offsetof(struct udphdr, dest), |
| 190 | .val = cpu_to_be32(0x00440000), |
| 191 | .mask = cpu_to_be32(0xffff0000), |
| 192 | }, |
| 193 | { |
| 194 | /* dhcp - lsb bytes of client hw address */ |
| 195 | .offset_type = BCAST_FILTER_OFFSET_IP_END, |
| 196 | .offset = 38, |
| 197 | .mask = cpu_to_be32(0xffffffff), |
| 198 | /* mark it as special field */ |
| 199 | .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_MAC), |
| 200 | }, |
Eliad Peller | 7773692 | 2014-01-14 12:35:49 +0200 | [diff] [blame] | 201 | }, |
| 202 | }, |
| 203 | /* last filter must be empty */ |
| 204 | {}, |
| 205 | }; |
| 206 | #endif |
| 207 | |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 208 | void iwl_mvm_ref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type) |
| 209 | { |
Eliad Peller | 7bb426e | 2014-02-24 12:54:37 +0200 | [diff] [blame] | 210 | if (!iwl_mvm_is_d0i3_supported(mvm)) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 211 | return; |
| 212 | |
| 213 | IWL_DEBUG_RPM(mvm, "Take mvm reference - type %d\n", ref_type); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 214 | spin_lock_bh(&mvm->refs_lock); |
| 215 | mvm->refs[ref_type]++; |
| 216 | spin_unlock_bh(&mvm->refs_lock); |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 217 | iwl_trans_ref(mvm->trans); |
| 218 | } |
| 219 | |
| 220 | void iwl_mvm_unref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type) |
| 221 | { |
Eliad Peller | 7bb426e | 2014-02-24 12:54:37 +0200 | [diff] [blame] | 222 | if (!iwl_mvm_is_d0i3_supported(mvm)) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 223 | return; |
| 224 | |
| 225 | IWL_DEBUG_RPM(mvm, "Leave mvm reference - type %d\n", ref_type); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 226 | spin_lock_bh(&mvm->refs_lock); |
| 227 | WARN_ON(!mvm->refs[ref_type]--); |
| 228 | spin_unlock_bh(&mvm->refs_lock); |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 229 | iwl_trans_unref(mvm->trans); |
| 230 | } |
| 231 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 232 | static void iwl_mvm_unref_all_except(struct iwl_mvm *mvm, |
| 233 | enum iwl_mvm_ref_type except_ref) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 234 | { |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 235 | int i, j; |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 236 | |
Eliad Peller | 7bb426e | 2014-02-24 12:54:37 +0200 | [diff] [blame] | 237 | if (!iwl_mvm_is_d0i3_supported(mvm)) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 238 | return; |
| 239 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 240 | spin_lock_bh(&mvm->refs_lock); |
| 241 | for (i = 0; i < IWL_MVM_REF_COUNT; i++) { |
| 242 | if (except_ref == i || !mvm->refs[i]) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 243 | continue; |
| 244 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 245 | IWL_DEBUG_RPM(mvm, "Cleanup: remove mvm ref type %d (%d)\n", |
| 246 | i, mvm->refs[i]); |
| 247 | for (j = 0; j < mvm->refs[i]; j++) |
| 248 | iwl_trans_unref(mvm->trans); |
| 249 | mvm->refs[i] = 0; |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 250 | } |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 251 | spin_unlock_bh(&mvm->refs_lock); |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 252 | } |
| 253 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 254 | int iwl_mvm_ref_sync(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type) |
Gregory Greenman | d40fc48 | 2014-06-25 14:08:50 +0200 | [diff] [blame] | 255 | { |
| 256 | iwl_mvm_ref(mvm, ref_type); |
| 257 | |
| 258 | if (!wait_event_timeout(mvm->d0i3_exit_waitq, |
| 259 | !test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status), |
| 260 | HZ)) { |
| 261 | WARN_ON_ONCE(1); |
| 262 | iwl_mvm_unref(mvm, ref_type); |
| 263 | return -EIO; |
| 264 | } |
| 265 | |
| 266 | return 0; |
| 267 | } |
| 268 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 269 | static void iwl_mvm_reset_phy_ctxts(struct iwl_mvm *mvm) |
| 270 | { |
| 271 | int i; |
| 272 | |
| 273 | memset(mvm->phy_ctxts, 0, sizeof(mvm->phy_ctxts)); |
| 274 | for (i = 0; i < NUM_PHY_CTX; i++) { |
| 275 | mvm->phy_ctxts[i].id = i; |
| 276 | mvm->phy_ctxts[i].ref = 0; |
| 277 | } |
| 278 | } |
| 279 | |
David Spinadel | 20f1a5d | 2013-08-21 09:14:27 +0300 | [diff] [blame] | 280 | static int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm) |
| 281 | { |
| 282 | /* we create the 802.11 header and SSID element */ |
| 283 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID) |
| 284 | return mvm->fw->ucode_capa.max_probe_length - 24 - 2; |
| 285 | return mvm->fw->ucode_capa.max_probe_length - 24 - 34; |
| 286 | } |
| 287 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 288 | int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm) |
| 289 | { |
| 290 | struct ieee80211_hw *hw = mvm->hw; |
Ilan Peer | 831e85f | 2013-02-07 17:09:09 +0200 | [diff] [blame] | 291 | int num_mac, ret, i; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 292 | |
| 293 | /* Tell mac80211 our characteristics */ |
| 294 | hw->flags = IEEE80211_HW_SIGNAL_DBM | |
| 295 | IEEE80211_HW_SPECTRUM_MGMT | |
| 296 | IEEE80211_HW_REPORTS_TX_ACK_STATUS | |
| 297 | IEEE80211_HW_QUEUE_CONTROL | |
| 298 | IEEE80211_HW_WANT_MONITOR_VIF | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 299 | IEEE80211_HW_SUPPORTS_PS | |
| 300 | IEEE80211_HW_SUPPORTS_DYNAMIC_PS | |
Johannes Berg | d2931bb | 2013-02-05 18:10:04 +0100 | [diff] [blame] | 301 | IEEE80211_HW_AMPDU_AGGREGATION | |
Hila Gonen | d64048e | 2013-03-13 18:00:03 +0200 | [diff] [blame] | 302 | IEEE80211_HW_TIMING_BEACON_ONLY | |
Emmanuel Grumbach | 147fc9b | 2013-07-28 11:00:52 +0300 | [diff] [blame] | 303 | IEEE80211_HW_CONNECTION_MONITOR | |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 304 | IEEE80211_HW_CHANCTX_STA_CSA | |
Emmanuel Grumbach | 147fc9b | 2013-07-28 11:00:52 +0300 | [diff] [blame] | 305 | IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS | |
Alexander Bondar | e8e626a | 2013-10-16 00:21:34 +0200 | [diff] [blame] | 306 | IEEE80211_HW_SUPPORTS_STATIC_SMPS; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 307 | |
Eytan Lifshitz | 19e737c | 2013-09-09 13:30:15 +0200 | [diff] [blame] | 308 | hw->queues = mvm->first_agg_queue; |
Ilan Peer | 398e8c6 | 2013-03-13 15:20:35 +0200 | [diff] [blame] | 309 | hw->offchannel_tx_hw_queue = IWL_MVM_OFFCHANNEL_QUEUE; |
Emmanuel Grumbach | 7b1dd04 | 2014-02-04 15:32:43 +0200 | [diff] [blame] | 310 | hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FEC | |
| 311 | IEEE80211_RADIOTAP_MCS_HAVE_STBC; |
| 312 | hw->radiotap_vht_details |= IEEE80211_RADIOTAP_VHT_KNOWN_STBC; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 313 | hw->rate_control_algorithm = "iwl-mvm-rs"; |
| 314 | |
| 315 | /* |
| 316 | * Enable 11w if advertised by firmware and software crypto |
| 317 | * is not enabled (as the firmware will interpret some mgmt |
| 318 | * packets, so enabling it with software crypto isn't safe) |
| 319 | */ |
| 320 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP && |
| 321 | !iwlwifi_mod_params.sw_crypto) |
| 322 | hw->flags |= IEEE80211_HW_MFP_CAPABLE; |
| 323 | |
Matt Chen | 1504f48 | 2014-04-24 18:43:18 +0800 | [diff] [blame] | 324 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT && |
| 325 | IWL_UCODE_API(mvm->fw->ucode_ver) >= 9 && |
| 326 | !iwlwifi_mod_params.uapsd_disable) { |
| 327 | hw->flags |= IEEE80211_HW_SUPPORTS_UAPSD; |
| 328 | hw->uapsd_queues = IWL_UAPSD_AC_INFO; |
| 329 | hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP; |
| 330 | } |
Alexander Bondar | e8e626a | 2013-10-16 00:21:34 +0200 | [diff] [blame] | 331 | |
David Spinadel | fb98be5 | 2014-05-04 12:51:10 +0300 | [diff] [blame] | 332 | if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN) |
| 333 | hw->flags |= IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS; |
| 334 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 335 | hw->sta_data_size = sizeof(struct iwl_mvm_sta); |
| 336 | hw->vif_data_size = sizeof(struct iwl_mvm_vif); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 337 | hw->chanctx_data_size = sizeof(u16); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 338 | |
| 339 | hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | |
Johannes Berg | 3c15a0f | 2013-05-31 10:17:19 +0200 | [diff] [blame] | 340 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
| 341 | BIT(NL80211_IFTYPE_AP) | |
| 342 | BIT(NL80211_IFTYPE_P2P_GO) | |
Emmanuel Grumbach | c13b172 | 2014-03-27 19:12:12 +0200 | [diff] [blame] | 343 | BIT(NL80211_IFTYPE_P2P_DEVICE) | |
| 344 | BIT(NL80211_IFTYPE_ADHOC); |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 345 | |
Luis R. Rodriguez | a2f73b6 | 2013-11-11 22:15:29 +0100 | [diff] [blame] | 346 | hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN; |
| 347 | hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG | |
| 348 | REGULATORY_DISABLE_BEACON_HINTS; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 349 | |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 350 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_GO_UAPSD) |
| 351 | hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD; |
| 352 | |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 353 | if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_CSA_FLOW) |
| 354 | hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH; |
| 355 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 356 | hw->wiphy->iface_combinations = iwl_mvm_iface_combinations; |
| 357 | hw->wiphy->n_iface_combinations = |
| 358 | ARRAY_SIZE(iwl_mvm_iface_combinations); |
| 359 | |
Ilan Peer | c451e6d | 2013-02-20 08:41:54 +0200 | [diff] [blame] | 360 | hw->wiphy->max_remain_on_channel_duration = 10000; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 361 | hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL; |
| 362 | |
| 363 | /* Extract MAC address */ |
| 364 | memcpy(mvm->addresses[0].addr, mvm->nvm_data->hw_addr, ETH_ALEN); |
| 365 | hw->wiphy->addresses = mvm->addresses; |
| 366 | hw->wiphy->n_addresses = 1; |
Ilan Peer | 831e85f | 2013-02-07 17:09:09 +0200 | [diff] [blame] | 367 | |
| 368 | /* Extract additional MAC addresses if available */ |
| 369 | num_mac = (mvm->nvm_data->n_hw_addrs > 1) ? |
| 370 | min(IWL_MVM_MAX_ADDRESSES, mvm->nvm_data->n_hw_addrs) : 1; |
| 371 | |
| 372 | for (i = 1; i < num_mac; i++) { |
| 373 | memcpy(mvm->addresses[i].addr, mvm->addresses[i-1].addr, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 374 | ETH_ALEN); |
Ilan Peer | 831e85f | 2013-02-07 17:09:09 +0200 | [diff] [blame] | 375 | mvm->addresses[i].addr[5]++; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 376 | hw->wiphy->n_addresses++; |
| 377 | } |
| 378 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 379 | iwl_mvm_reset_phy_ctxts(mvm); |
| 380 | |
David Spinadel | 20f1a5d | 2013-08-21 09:14:27 +0300 | [diff] [blame] | 381 | hw->wiphy->max_scan_ie_len = iwl_mvm_max_scan_ie_len(mvm); |
| 382 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 383 | hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX; |
| 384 | |
| 385 | if (mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels) |
| 386 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 387 | &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ]; |
| 388 | if (mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels) |
| 389 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 390 | &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ]; |
| 391 | |
| 392 | hw->wiphy->hw_version = mvm->trans->hw_id; |
| 393 | |
Alexander Bondar | ade5065 | 2013-04-03 16:28:47 +0300 | [diff] [blame] | 394 | if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 395 | hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 396 | else |
| 397 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 398 | |
Emmanuel Grumbach | 77b2f28 | 2014-08-14 19:32:16 +0300 | [diff] [blame] | 399 | /* TODO: enable that only for firmwares that don't crash */ |
| 400 | /* hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN; */ |
Emmanuel Grumbach | 536a3ee | 2014-03-30 09:11:44 +0300 | [diff] [blame] | 401 | hw->wiphy->max_sched_scan_ssids = PROBE_OPTION_MAX; |
| 402 | hw->wiphy->max_match_sets = IWL_SCAN_MAX_PROFILES; |
| 403 | /* we create the 802.11 header and zero length SSID IE. */ |
| 404 | hw->wiphy->max_sched_scan_ie_len = SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2; |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 405 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 406 | hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN | |
Johannes Berg | ab48003 | 2014-06-04 10:13:50 +0200 | [diff] [blame] | 407 | NL80211_FEATURE_LOW_PRIORITY_SCAN | |
Alexander Bondar | 8a110d9 | 2014-03-12 17:31:19 +0200 | [diff] [blame] | 408 | NL80211_FEATURE_P2P_GO_OPPPS; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 409 | |
| 410 | mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD; |
| 411 | |
Max Stepanov | e36e543 | 2013-08-27 19:56:13 +0300 | [diff] [blame] | 412 | /* currently FW API supports only one optional cipher scheme */ |
Johannes Berg | 9ddca86 | 2014-01-06 09:29:40 +0100 | [diff] [blame] | 413 | if (mvm->fw->cs[0].cipher) { |
Max Stepanov | e36e543 | 2013-08-27 19:56:13 +0300 | [diff] [blame] | 414 | mvm->hw->n_cipher_schemes = 1; |
Johannes Berg | 9ddca86 | 2014-01-06 09:29:40 +0100 | [diff] [blame] | 415 | mvm->hw->cipher_schemes = &mvm->fw->cs[0]; |
Max Stepanov | e36e543 | 2013-08-27 19:56:13 +0300 | [diff] [blame] | 416 | } |
| 417 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 418 | #ifdef CONFIG_PM_SLEEP |
Eliad Peller | d15a747 | 2014-03-27 18:53:12 +0200 | [diff] [blame] | 419 | if (iwl_mvm_is_d0i3_supported(mvm) && |
| 420 | device_can_wakeup(mvm->trans->dev)) { |
| 421 | mvm->wowlan.flags = WIPHY_WOWLAN_ANY; |
| 422 | hw->wiphy->wowlan = &mvm->wowlan; |
| 423 | } else if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len && |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 424 | mvm->trans->ops->d3_suspend && |
| 425 | mvm->trans->ops->d3_resume && |
| 426 | device_can_wakeup(mvm->trans->dev)) { |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 427 | mvm->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT | |
| 428 | WIPHY_WOWLAN_DISCONNECT | |
| 429 | WIPHY_WOWLAN_EAP_IDENTITY_REQ | |
| 430 | WIPHY_WOWLAN_RFKILL_RELEASE; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 431 | if (!iwlwifi_mod_params.sw_crypto) |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 432 | mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY | |
| 433 | WIPHY_WOWLAN_GTK_REKEY_FAILURE | |
| 434 | WIPHY_WOWLAN_4WAY_HANDSHAKE; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 435 | |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 436 | mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS; |
| 437 | mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN; |
| 438 | mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN; |
| 439 | mvm->wowlan.tcp = &iwl_mvm_wowlan_tcp_support; |
| 440 | hw->wiphy->wowlan = &mvm->wowlan; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 441 | } |
| 442 | #endif |
| 443 | |
Eliad Peller | 7773692 | 2014-01-14 12:35:49 +0200 | [diff] [blame] | 444 | #ifdef CONFIG_IWLWIFI_BCAST_FILTERING |
| 445 | /* assign default bcast filtering configuration */ |
| 446 | mvm->bcast_filters = iwl_mvm_default_bcast_filters; |
| 447 | #endif |
| 448 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 449 | ret = iwl_mvm_leds_init(mvm); |
| 450 | if (ret) |
| 451 | return ret; |
| 452 | |
Emmanuel Grumbach | b7327d8 | 2013-06-24 15:44:03 +0300 | [diff] [blame] | 453 | ret = ieee80211_register_hw(mvm->hw); |
| 454 | if (ret) |
| 455 | iwl_mvm_leds_exit(mvm); |
| 456 | |
| 457 | return ret; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 458 | } |
| 459 | |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 460 | static bool iwl_mvm_defer_tx(struct iwl_mvm *mvm, |
| 461 | struct ieee80211_sta *sta, |
| 462 | struct sk_buff *skb) |
| 463 | { |
| 464 | struct iwl_mvm_sta *mvmsta; |
| 465 | bool defer = false; |
| 466 | |
| 467 | /* |
| 468 | * double check the IN_D0I3 flag both before and after |
| 469 | * taking the spinlock, in order to prevent taking |
| 470 | * the spinlock when not needed. |
| 471 | */ |
| 472 | if (likely(!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status))) |
| 473 | return false; |
| 474 | |
| 475 | spin_lock(&mvm->d0i3_tx_lock); |
| 476 | /* |
| 477 | * testing the flag again ensures the skb dequeue |
| 478 | * loop (on d0i3 exit) hasn't run yet. |
| 479 | */ |
| 480 | if (!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)) |
| 481 | goto out; |
| 482 | |
| 483 | mvmsta = iwl_mvm_sta_from_mac80211(sta); |
| 484 | if (mvmsta->sta_id == IWL_MVM_STATION_COUNT || |
| 485 | mvmsta->sta_id != mvm->d0i3_ap_sta_id) |
| 486 | goto out; |
| 487 | |
| 488 | __skb_queue_tail(&mvm->d0i3_tx, skb); |
| 489 | ieee80211_stop_queues(mvm->hw); |
| 490 | |
| 491 | /* trigger wakeup */ |
| 492 | iwl_mvm_ref(mvm, IWL_MVM_REF_TX); |
| 493 | iwl_mvm_unref(mvm, IWL_MVM_REF_TX); |
| 494 | |
| 495 | defer = true; |
| 496 | out: |
| 497 | spin_unlock(&mvm->d0i3_tx_lock); |
| 498 | return defer; |
| 499 | } |
| 500 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 501 | static void iwl_mvm_mac_tx(struct ieee80211_hw *hw, |
| 502 | struct ieee80211_tx_control *control, |
| 503 | struct sk_buff *skb) |
| 504 | { |
| 505 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 506 | struct ieee80211_sta *sta = control->sta; |
| 507 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 508 | struct ieee80211_hdr *hdr = (void *)skb->data; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 509 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 510 | if (iwl_mvm_is_radio_killed(mvm)) { |
| 511 | IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n"); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 512 | goto drop; |
| 513 | } |
| 514 | |
Ilan Peer | 398e8c6 | 2013-03-13 15:20:35 +0200 | [diff] [blame] | 515 | if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE && |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 516 | !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status)) |
| 517 | goto drop; |
| 518 | |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 519 | /* treat non-bufferable MMPDUs as broadcast if sta is sleeping */ |
| 520 | if (unlikely(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER && |
| 521 | ieee80211_is_mgmt(hdr->frame_control) && |
| 522 | !ieee80211_is_deauth(hdr->frame_control) && |
| 523 | !ieee80211_is_disassoc(hdr->frame_control) && |
| 524 | !ieee80211_is_action(hdr->frame_control))) |
| 525 | sta = NULL; |
| 526 | |
| 527 | if (sta) { |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 528 | if (iwl_mvm_defer_tx(mvm, sta, skb)) |
| 529 | return; |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 530 | if (iwl_mvm_tx_skb(mvm, skb, sta)) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 531 | goto drop; |
| 532 | return; |
| 533 | } |
| 534 | |
| 535 | if (iwl_mvm_tx_skb_non_sta(mvm, skb)) |
| 536 | goto drop; |
| 537 | return; |
| 538 | drop: |
| 539 | ieee80211_free_txskb(hw, skb); |
| 540 | } |
| 541 | |
Emmanuel Grumbach | 205e221 | 2014-02-12 15:15:05 +0200 | [diff] [blame] | 542 | static inline bool iwl_enable_rx_ampdu(const struct iwl_cfg *cfg) |
| 543 | { |
| 544 | if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG) |
| 545 | return false; |
| 546 | return true; |
| 547 | } |
| 548 | |
| 549 | static inline bool iwl_enable_tx_ampdu(const struct iwl_cfg *cfg) |
| 550 | { |
| 551 | if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG) |
| 552 | return false; |
| 553 | if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG) |
| 554 | return true; |
| 555 | |
| 556 | /* enabled by default */ |
| 557 | return true; |
| 558 | } |
| 559 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 560 | static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw, |
| 561 | struct ieee80211_vif *vif, |
| 562 | enum ieee80211_ampdu_mlme_action action, |
| 563 | struct ieee80211_sta *sta, u16 tid, |
| 564 | u16 *ssn, u8 buf_size) |
| 565 | { |
| 566 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 567 | int ret; |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 568 | bool tx_agg_ref = false; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 569 | |
| 570 | IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n", |
| 571 | sta->addr, tid, action); |
| 572 | |
| 573 | if (!(mvm->nvm_data->sku_cap_11n_enable)) |
| 574 | return -EACCES; |
| 575 | |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 576 | /* return from D0i3 before starting a new Tx aggregation */ |
Eliad Peller | 9256c20 | 2014-04-22 13:33:29 +0300 | [diff] [blame] | 577 | switch (action) { |
| 578 | case IEEE80211_AMPDU_TX_START: |
| 579 | case IEEE80211_AMPDU_TX_STOP_CONT: |
| 580 | case IEEE80211_AMPDU_TX_STOP_FLUSH: |
| 581 | case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: |
| 582 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 583 | /* |
Eliad Peller | 9256c20 | 2014-04-22 13:33:29 +0300 | [diff] [blame] | 584 | * for tx start, wait synchronously until D0i3 exit to |
| 585 | * get the correct sequence number for the tid. |
| 586 | * additionally, some other ampdu actions use direct |
| 587 | * target access, which is not handled automatically |
| 588 | * by the trans layer (unlike commands), so wait for |
| 589 | * d0i3 exit in these cases as well. |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 590 | */ |
Gregory Greenman | d40fc48 | 2014-06-25 14:08:50 +0200 | [diff] [blame] | 591 | ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_TX_AGG); |
| 592 | if (ret) |
| 593 | return ret; |
| 594 | |
| 595 | tx_agg_ref = true; |
Eliad Peller | 9256c20 | 2014-04-22 13:33:29 +0300 | [diff] [blame] | 596 | break; |
| 597 | default: |
| 598 | break; |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 599 | } |
| 600 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 601 | mutex_lock(&mvm->mutex); |
| 602 | |
| 603 | switch (action) { |
| 604 | case IEEE80211_AMPDU_RX_START: |
Emmanuel Grumbach | 205e221 | 2014-02-12 15:15:05 +0200 | [diff] [blame] | 605 | if (!iwl_enable_rx_ampdu(mvm->cfg)) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 606 | ret = -EINVAL; |
| 607 | break; |
| 608 | } |
| 609 | ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true); |
| 610 | break; |
| 611 | case IEEE80211_AMPDU_RX_STOP: |
| 612 | ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false); |
| 613 | break; |
| 614 | case IEEE80211_AMPDU_TX_START: |
Emmanuel Grumbach | 205e221 | 2014-02-12 15:15:05 +0200 | [diff] [blame] | 615 | if (!iwl_enable_tx_ampdu(mvm->cfg)) { |
Emmanuel Grumbach | 5d158ef | 2013-02-19 14:39:58 +0200 | [diff] [blame] | 616 | ret = -EINVAL; |
| 617 | break; |
| 618 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 619 | ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn); |
| 620 | break; |
| 621 | case IEEE80211_AMPDU_TX_STOP_CONT: |
Emmanuel Grumbach | e3d9e7c | 2013-02-19 16:13:53 +0200 | [diff] [blame] | 622 | ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid); |
| 623 | break; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 624 | case IEEE80211_AMPDU_TX_STOP_FLUSH: |
| 625 | case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: |
Emmanuel Grumbach | e3d9e7c | 2013-02-19 16:13:53 +0200 | [diff] [blame] | 626 | ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 627 | break; |
| 628 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
| 629 | ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid, buf_size); |
| 630 | break; |
| 631 | default: |
| 632 | WARN_ON_ONCE(1); |
| 633 | ret = -EINVAL; |
| 634 | break; |
| 635 | } |
| 636 | mutex_unlock(&mvm->mutex); |
| 637 | |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 638 | /* |
| 639 | * If the tid is marked as started, we won't use it for offloaded |
| 640 | * traffic on the next D0i3 entry. It's safe to unref. |
| 641 | */ |
| 642 | if (tx_agg_ref) |
| 643 | iwl_mvm_unref(mvm, IWL_MVM_REF_TX_AGG); |
| 644 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 645 | return ret; |
| 646 | } |
| 647 | |
| 648 | static void iwl_mvm_cleanup_iterator(void *data, u8 *mac, |
| 649 | struct ieee80211_vif *vif) |
| 650 | { |
| 651 | struct iwl_mvm *mvm = data; |
| 652 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 653 | |
| 654 | mvmvif->uploaded = false; |
| 655 | mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT; |
| 656 | |
| 657 | /* does this make sense at all? */ |
| 658 | mvmvif->color++; |
| 659 | |
| 660 | spin_lock_bh(&mvm->time_event_lock); |
| 661 | iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data); |
| 662 | spin_unlock_bh(&mvm->time_event_lock); |
| 663 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 664 | mvmvif->phy_ctxt = NULL; |
Emmanuel Grumbach | 8a275ba | 2014-07-13 09:12:11 +0300 | [diff] [blame] | 665 | memset(&mvmvif->bf_data, 0, sizeof(mvmvif->bf_data)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 666 | } |
| 667 | |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 668 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 669 | static void iwl_mvm_fw_error_dump(struct iwl_mvm *mvm) |
| 670 | { |
| 671 | struct iwl_fw_error_dump_file *dump_file; |
| 672 | struct iwl_fw_error_dump_data *dump_data; |
| 673 | struct iwl_fw_error_dump_info *dump_info; |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 674 | struct iwl_mvm_dump_ptrs *fw_error_dump; |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 675 | const struct fw_img *img; |
| 676 | u32 sram_len, sram_ofs; |
| 677 | u32 file_len, rxf_len; |
| 678 | unsigned long flags; |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 679 | int reg_val; |
| 680 | |
| 681 | lockdep_assert_held(&mvm->mutex); |
| 682 | |
| 683 | if (mvm->fw_error_dump) |
| 684 | return; |
| 685 | |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 686 | fw_error_dump = kzalloc(sizeof(*mvm->fw_error_dump), GFP_KERNEL); |
| 687 | if (!fw_error_dump) |
| 688 | return; |
| 689 | |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 690 | img = &mvm->fw->img[mvm->cur_ucode]; |
| 691 | sram_ofs = img->sec[IWL_UCODE_SECTION_DATA].offset; |
| 692 | sram_len = img->sec[IWL_UCODE_SECTION_DATA].len; |
| 693 | |
| 694 | /* reading buffer size */ |
| 695 | reg_val = iwl_trans_read_prph(mvm->trans, RXF_SIZE_ADDR); |
| 696 | rxf_len = (reg_val & RXF_SIZE_BYTE_CNT_MSK) >> RXF_SIZE_BYTE_CND_POS; |
| 697 | |
| 698 | /* the register holds the value divided by 128 */ |
| 699 | rxf_len = rxf_len << 7; |
| 700 | |
| 701 | file_len = sizeof(*dump_file) + |
| 702 | sizeof(*dump_data) * 3 + |
| 703 | sram_len + |
| 704 | rxf_len + |
| 705 | sizeof(*dump_info); |
| 706 | |
Emmanuel Grumbach | 5bfe6f5 | 2014-06-25 16:21:43 +0300 | [diff] [blame] | 707 | dump_file = vzalloc(file_len); |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 708 | if (!dump_file) { |
| 709 | kfree(fw_error_dump); |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 710 | return; |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 711 | } |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 712 | |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 713 | fw_error_dump->op_mode_ptr = dump_file; |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 714 | |
| 715 | dump_file->barker = cpu_to_le32(IWL_FW_ERROR_DUMP_BARKER); |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 716 | dump_data = (void *)dump_file->data; |
| 717 | |
| 718 | dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_DEV_FW_INFO); |
| 719 | dump_data->len = cpu_to_le32(sizeof(*dump_info)); |
| 720 | dump_info = (void *) dump_data->data; |
| 721 | dump_info->device_family = |
| 722 | mvm->cfg->device_family == IWL_DEVICE_FAMILY_7000 ? |
| 723 | cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_7) : |
| 724 | cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_8); |
| 725 | memcpy(dump_info->fw_human_readable, mvm->fw->human_readable, |
| 726 | sizeof(dump_info->fw_human_readable)); |
| 727 | strncpy(dump_info->dev_human_readable, mvm->cfg->name, |
| 728 | sizeof(dump_info->dev_human_readable)); |
| 729 | strncpy(dump_info->bus_human_readable, mvm->dev->bus->name, |
| 730 | sizeof(dump_info->bus_human_readable)); |
| 731 | |
| 732 | dump_data = iwl_fw_error_next_data(dump_data); |
| 733 | dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RXF); |
| 734 | dump_data->len = cpu_to_le32(rxf_len); |
| 735 | |
| 736 | if (iwl_trans_grab_nic_access(mvm->trans, false, &flags)) { |
| 737 | u32 *rxf = (void *)dump_data->data; |
| 738 | int i; |
| 739 | |
| 740 | for (i = 0; i < (rxf_len / sizeof(u32)); i++) { |
| 741 | iwl_trans_write_prph(mvm->trans, |
| 742 | RXF_LD_FENCE_OFFSET_ADDR, |
| 743 | i * sizeof(u32)); |
| 744 | rxf[i] = iwl_trans_read_prph(mvm->trans, |
| 745 | RXF_FIFO_RD_FENCE_ADDR); |
| 746 | } |
| 747 | iwl_trans_release_nic_access(mvm->trans, &flags); |
| 748 | } |
| 749 | |
| 750 | dump_data = iwl_fw_error_next_data(dump_data); |
| 751 | dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_SRAM); |
| 752 | dump_data->len = cpu_to_le32(sram_len); |
| 753 | iwl_trans_read_mem_bytes(mvm->trans, sram_ofs, dump_data->data, |
| 754 | sram_len); |
| 755 | |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 756 | fw_error_dump->trans_ptr = iwl_trans_dump_data(mvm->trans); |
| 757 | fw_error_dump->op_mode_len = file_len; |
| 758 | if (fw_error_dump->trans_ptr) |
| 759 | file_len += fw_error_dump->trans_ptr->len; |
| 760 | dump_file->file_len = cpu_to_le32(file_len); |
| 761 | mvm->fw_error_dump = fw_error_dump; |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 762 | } |
| 763 | #endif |
| 764 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 765 | static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm) |
| 766 | { |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 767 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 768 | static char *env[] = { "DRIVER=iwlwifi", "EVENT=error_dump", NULL }; |
| 769 | |
| 770 | iwl_mvm_fw_error_dump(mvm); |
| 771 | |
| 772 | /* notify the userspace about the error we had */ |
| 773 | kobject_uevent_env(&mvm->hw->wiphy->dev.kobj, KOBJ_CHANGE, env); |
| 774 | #endif |
| 775 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 776 | iwl_trans_stop_device(mvm->trans); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 777 | |
| 778 | mvm->scan_status = IWL_MVM_SCAN_NONE; |
| 779 | |
| 780 | /* just in case one was running */ |
| 781 | ieee80211_remain_on_channel_expired(mvm->hw); |
| 782 | |
| 783 | ieee80211_iterate_active_interfaces_atomic( |
| 784 | mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL, |
| 785 | iwl_mvm_cleanup_iterator, mvm); |
| 786 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 787 | mvm->p2p_device_vif = NULL; |
Eliad Peller | 37577fe | 2013-12-05 17:19:39 +0200 | [diff] [blame] | 788 | mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT; |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 789 | |
| 790 | iwl_mvm_reset_phy_ctxts(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 791 | memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table)); |
| 792 | memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained)); |
Emmanuel Grumbach | 8a275ba | 2014-07-13 09:12:11 +0300 | [diff] [blame] | 793 | memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif)); |
| 794 | memset(&mvm->last_bt_notif_old, 0, sizeof(mvm->last_bt_notif_old)); |
| 795 | memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd)); |
| 796 | memset(&mvm->last_bt_ci_cmd_old, 0, sizeof(mvm->last_bt_ci_cmd_old)); |
| 797 | memset(&mvm->bt_ack_kill_msk, 0, sizeof(mvm->bt_ack_kill_msk)); |
| 798 | memset(&mvm->bt_cts_kill_msk, 0, sizeof(mvm->bt_cts_kill_msk)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 799 | |
| 800 | ieee80211_wake_queues(mvm->hw); |
| 801 | |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 802 | /* cleanup all stale references (scan, roc), but keep the |
| 803 | * ucode_down ref until reconfig is complete */ |
| 804 | iwl_mvm_unref_all_except(mvm, IWL_MVM_REF_UCODE_DOWN); |
| 805 | |
Eliad Peller | 228670b | 2014-08-10 17:00:15 +0300 | [diff] [blame^] | 806 | /* clear any stale d0i3 state */ |
| 807 | clear_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status); |
| 808 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 809 | mvm->vif_count = 0; |
Emmanuel Grumbach | 113a044 | 2013-07-02 14:16:38 +0300 | [diff] [blame] | 810 | mvm->rx_ba_sessions = 0; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | static int iwl_mvm_mac_start(struct ieee80211_hw *hw) |
| 814 | { |
| 815 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 816 | int ret; |
| 817 | |
| 818 | mutex_lock(&mvm->mutex); |
| 819 | |
| 820 | /* Clean up some internal and mac80211 state on restart */ |
| 821 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) |
| 822 | iwl_mvm_restart_cleanup(mvm); |
| 823 | |
| 824 | ret = iwl_mvm_up(mvm); |
Johannes Berg | c47af22 | 2014-04-30 16:34:45 +0200 | [diff] [blame] | 825 | |
| 826 | if (ret && test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) { |
| 827 | /* Something went wrong - we need to finish some cleanup |
| 828 | * that normally iwl_mvm_mac_restart_complete() below |
| 829 | * would do. |
| 830 | */ |
| 831 | clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status); |
| 832 | iwl_mvm_d0i3_enable_tx(mvm, NULL); |
| 833 | } |
| 834 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 835 | mutex_unlock(&mvm->mutex); |
| 836 | |
| 837 | return ret; |
| 838 | } |
| 839 | |
| 840 | static void iwl_mvm_mac_restart_complete(struct ieee80211_hw *hw) |
| 841 | { |
| 842 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 843 | int ret; |
| 844 | |
| 845 | mutex_lock(&mvm->mutex); |
| 846 | |
| 847 | clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status); |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 848 | iwl_mvm_d0i3_enable_tx(mvm, NULL); |
Johannes Berg | 0166230 | 2014-06-06 15:18:45 +0200 | [diff] [blame] | 849 | ret = iwl_mvm_update_quotas(mvm, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 850 | if (ret) |
| 851 | IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n", |
| 852 | ret); |
| 853 | |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 854 | /* allow transport/FW low power modes */ |
| 855 | iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN); |
| 856 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 857 | mutex_unlock(&mvm->mutex); |
| 858 | } |
| 859 | |
| 860 | static void iwl_mvm_mac_stop(struct ieee80211_hw *hw) |
| 861 | { |
| 862 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 863 | |
Eliad Peller | 37577fe | 2013-12-05 17:19:39 +0200 | [diff] [blame] | 864 | flush_work(&mvm->d0i3_exit_work); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 865 | flush_work(&mvm->async_handlers_wk); |
| 866 | |
| 867 | mutex_lock(&mvm->mutex); |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 868 | |
| 869 | /* disallow low power states when the FW is down */ |
| 870 | iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN); |
| 871 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 872 | /* async_handlers_wk is now blocked */ |
| 873 | |
| 874 | /* |
| 875 | * The work item could be running or queued if the |
| 876 | * ROC time event stops just as we get here. |
| 877 | */ |
| 878 | cancel_work_sync(&mvm->roc_done_wk); |
| 879 | |
| 880 | iwl_trans_stop_device(mvm->trans); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 881 | |
| 882 | iwl_mvm_async_handlers_purge(mvm); |
| 883 | /* async_handlers_list is empty and will stay empty: HW is stopped */ |
| 884 | |
| 885 | /* the fw is stopped, the aux sta is dead: clean up driver state */ |
| 886 | iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta); |
| 887 | |
| 888 | mutex_unlock(&mvm->mutex); |
| 889 | |
| 890 | /* |
| 891 | * The worker might have been waiting for the mutex, let it run and |
| 892 | * discover that its list is now empty. |
| 893 | */ |
| 894 | cancel_work_sync(&mvm->async_handlers_wk); |
| 895 | } |
| 896 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 897 | static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm) |
| 898 | { |
| 899 | u16 i; |
| 900 | |
| 901 | lockdep_assert_held(&mvm->mutex); |
| 902 | |
| 903 | for (i = 0; i < NUM_PHY_CTX; i++) |
| 904 | if (!mvm->phy_ctxts[i].ref) |
| 905 | return &mvm->phy_ctxts[i]; |
| 906 | |
| 907 | IWL_ERR(mvm, "No available PHY context\n"); |
| 908 | return NULL; |
| 909 | } |
| 910 | |
Emmanuel Grumbach | ee9c6cb | 2013-12-04 13:53:39 +0200 | [diff] [blame] | 911 | static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif, |
| 912 | s8 tx_power) |
| 913 | { |
| 914 | /* FW is in charge of regulatory enforcement */ |
| 915 | struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = { |
| 916 | .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id, |
| 917 | .pwr_restriction = cpu_to_le16(tx_power), |
| 918 | }; |
| 919 | |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 920 | return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0, |
Emmanuel Grumbach | ee9c6cb | 2013-12-04 13:53:39 +0200 | [diff] [blame] | 921 | sizeof(reduce_txpwr_cmd), |
| 922 | &reduce_txpwr_cmd); |
| 923 | } |
| 924 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 925 | static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw, |
| 926 | struct ieee80211_vif *vif) |
| 927 | { |
| 928 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 929 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 930 | int ret; |
| 931 | |
| 932 | /* |
Gregory Greenman | d40fc48 | 2014-06-25 14:08:50 +0200 | [diff] [blame] | 933 | * make sure D0i3 exit is completed, otherwise a target access |
| 934 | * during tx queue configuration could be done when still in |
| 935 | * D0i3 state. |
| 936 | */ |
| 937 | ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_ADD_IF); |
| 938 | if (ret) |
| 939 | return ret; |
| 940 | |
| 941 | /* |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 942 | * Not much to do here. The stack will not allow interface |
| 943 | * types or combinations that we didn't advertise, so we |
| 944 | * don't really have to check the types. |
| 945 | */ |
| 946 | |
| 947 | mutex_lock(&mvm->mutex); |
| 948 | |
Eliad Peller | e89044d | 2013-07-16 17:33:26 +0300 | [diff] [blame] | 949 | /* Allocate resources for the MAC context, and add it to the fw */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 950 | ret = iwl_mvm_mac_ctxt_init(mvm, vif); |
| 951 | if (ret) |
| 952 | goto out_unlock; |
| 953 | |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 954 | /* Counting number of interfaces is needed for legacy PM */ |
Ilan Peer | ea183d0 | 2013-07-23 14:41:53 +0300 | [diff] [blame] | 955 | if (vif->type != NL80211_IFTYPE_P2P_DEVICE) |
| 956 | mvm->vif_count++; |
Ilan Peer | ea183d0 | 2013-07-23 14:41:53 +0300 | [diff] [blame] | 957 | |
| 958 | /* |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 959 | * The AP binding flow can be done only after the beacon |
| 960 | * template is configured (which happens only in the mac80211 |
| 961 | * start_ap() flow), and adding the broadcast station can happen |
| 962 | * only after the binding. |
| 963 | * In addition, since modifying the MAC before adding a bcast |
| 964 | * station is not allowed by the FW, delay the adding of MAC context to |
| 965 | * the point where we can also add the bcast station. |
| 966 | * In short: there's not much we can do at this point, other than |
| 967 | * allocating resources :) |
| 968 | */ |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 969 | if (vif->type == NL80211_IFTYPE_AP || |
| 970 | vif->type == NL80211_IFTYPE_ADHOC) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 971 | u32 qmask = iwl_mvm_mac_get_queues_mask(mvm, vif); |
| 972 | ret = iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta, |
Eliad Peller | b92e661 | 2014-01-23 17:58:23 +0200 | [diff] [blame] | 973 | qmask, |
| 974 | ieee80211_vif_type_p2p(vif)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 975 | if (ret) { |
| 976 | IWL_ERR(mvm, "Failed to allocate bcast sta\n"); |
| 977 | goto out_release; |
| 978 | } |
| 979 | |
Emmanuel Grumbach | 77740cb | 2013-06-26 23:51:41 +0300 | [diff] [blame] | 980 | iwl_mvm_vif_dbgfs_register(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 981 | goto out_unlock; |
| 982 | } |
| 983 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 984 | ret = iwl_mvm_mac_ctxt_add(mvm, vif); |
| 985 | if (ret) |
| 986 | goto out_release; |
| 987 | |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 988 | ret = iwl_mvm_power_update_mac(mvm); |
Emmanuel Grumbach | e5e7aa8 | 2014-01-27 16:57:33 +0200 | [diff] [blame] | 989 | if (ret) |
| 990 | goto out_release; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 991 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 992 | /* beacon filtering */ |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 993 | ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0); |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 994 | if (ret) |
| 995 | goto out_remove_mac; |
| 996 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 997 | if (!mvm->bf_allowed_vif && |
Emmanuel Grumbach | 73e5f2c | 2014-03-30 08:57:30 +0300 | [diff] [blame] | 998 | vif->type == NL80211_IFTYPE_STATION && !vif->p2p) { |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 999 | mvm->bf_allowed_vif = mvmvif; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1000 | vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER | |
| 1001 | IEEE80211_VIF_SUPPORTS_CQM_RSSI; |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1002 | } |
| 1003 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1004 | /* |
| 1005 | * P2P_DEVICE interface does not have a channel context assigned to it, |
| 1006 | * so a dedicated PHY context is allocated to it and the corresponding |
| 1007 | * MAC context is bound to it at this stage. |
| 1008 | */ |
| 1009 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1010 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1011 | mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); |
| 1012 | if (!mvmvif->phy_ctxt) { |
| 1013 | ret = -ENOSPC; |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 1014 | goto out_free_bf; |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1015 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1016 | |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 1017 | iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1018 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 1019 | if (ret) |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 1020 | goto out_unref_phy; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1021 | |
| 1022 | ret = iwl_mvm_add_bcast_sta(mvm, vif, &mvmvif->bcast_sta); |
| 1023 | if (ret) |
| 1024 | goto out_unbind; |
| 1025 | |
| 1026 | /* Save a pointer to p2p device vif, so it can later be used to |
| 1027 | * update the p2p device MAC when a GO is started/stopped */ |
| 1028 | mvm->p2p_device_vif = vif; |
| 1029 | } |
| 1030 | |
Johannes Berg | 6349437 | 2013-03-26 10:47:53 +0100 | [diff] [blame] | 1031 | iwl_mvm_vif_dbgfs_register(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1032 | goto out_unlock; |
| 1033 | |
| 1034 | out_unbind: |
| 1035 | iwl_mvm_binding_remove_vif(mvm, vif); |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 1036 | out_unref_phy: |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1037 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 1038 | out_free_bf: |
| 1039 | if (mvm->bf_allowed_vif == mvmvif) { |
| 1040 | mvm->bf_allowed_vif = NULL; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1041 | vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER | |
| 1042 | IEEE80211_VIF_SUPPORTS_CQM_RSSI); |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 1043 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1044 | out_remove_mac: |
| 1045 | mvmvif->phy_ctxt = NULL; |
| 1046 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 1047 | out_release: |
Alexander Bondar | 5ee2b21 | 2013-03-05 10:16:40 +0200 | [diff] [blame] | 1048 | if (vif->type != NL80211_IFTYPE_P2P_DEVICE) |
| 1049 | mvm->vif_count--; |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 1050 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1051 | iwl_mvm_mac_ctxt_release(mvm, vif); |
| 1052 | out_unlock: |
| 1053 | mutex_unlock(&mvm->mutex); |
| 1054 | |
Gregory Greenman | d40fc48 | 2014-06-25 14:08:50 +0200 | [diff] [blame] | 1055 | iwl_mvm_unref(mvm, IWL_MVM_REF_ADD_IF); |
| 1056 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1057 | return ret; |
| 1058 | } |
| 1059 | |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 1060 | static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm, |
| 1061 | struct ieee80211_vif *vif) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1062 | { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1063 | u32 tfd_msk = 0, ac; |
| 1064 | |
| 1065 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) |
| 1066 | if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE) |
| 1067 | tfd_msk |= BIT(vif->hw_queue[ac]); |
| 1068 | |
| 1069 | if (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE) |
| 1070 | tfd_msk |= BIT(vif->cab_queue); |
| 1071 | |
| 1072 | if (tfd_msk) { |
| 1073 | mutex_lock(&mvm->mutex); |
| 1074 | iwl_mvm_flush_tx_path(mvm, tfd_msk, true); |
| 1075 | mutex_unlock(&mvm->mutex); |
| 1076 | } |
| 1077 | |
| 1078 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
| 1079 | /* |
| 1080 | * Flush the ROC worker which will flush the OFFCHANNEL queue. |
| 1081 | * We assume here that all the packets sent to the OFFCHANNEL |
| 1082 | * queue are sent in ROC session. |
| 1083 | */ |
| 1084 | flush_work(&mvm->roc_done_wk); |
| 1085 | } else { |
| 1086 | /* |
| 1087 | * By now, all the AC queues are empty. The AGG queues are |
| 1088 | * empty too. We already got all the Tx responses for all the |
| 1089 | * packets in the queues. The drain work can have been |
Emmanuel Grumbach | 0742a75 | 2013-06-10 14:10:33 +0300 | [diff] [blame] | 1090 | * triggered. Flush it. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1091 | */ |
| 1092 | flush_work(&mvm->sta_drained_wk); |
| 1093 | } |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 1094 | } |
| 1095 | |
| 1096 | static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw, |
| 1097 | struct ieee80211_vif *vif) |
| 1098 | { |
| 1099 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1100 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1101 | |
| 1102 | iwl_mvm_prepare_mac_removal(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1103 | |
| 1104 | mutex_lock(&mvm->mutex); |
| 1105 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1106 | if (mvm->bf_allowed_vif == mvmvif) { |
| 1107 | mvm->bf_allowed_vif = NULL; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1108 | vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER | |
| 1109 | IEEE80211_VIF_SUPPORTS_CQM_RSSI); |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1110 | } |
| 1111 | |
Johannes Berg | 6349437 | 2013-03-26 10:47:53 +0100 | [diff] [blame] | 1112 | iwl_mvm_vif_dbgfs_clean(mvm, vif); |
| 1113 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1114 | /* |
| 1115 | * 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] | 1116 | * interface is be handled as part of the stop_ap flow. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1117 | */ |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1118 | if (vif->type == NL80211_IFTYPE_AP || |
| 1119 | vif->type == NL80211_IFTYPE_ADHOC) { |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 1120 | #ifdef CONFIG_NL80211_TESTMODE |
| 1121 | if (vif == mvm->noa_vif) { |
| 1122 | mvm->noa_vif = NULL; |
| 1123 | mvm->noa_duration = 0; |
| 1124 | } |
| 1125 | #endif |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1126 | iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta); |
| 1127 | goto out_release; |
| 1128 | } |
| 1129 | |
| 1130 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
| 1131 | mvm->p2p_device_vif = NULL; |
| 1132 | iwl_mvm_rm_bcast_sta(mvm, &mvmvif->bcast_sta); |
| 1133 | iwl_mvm_binding_remove_vif(mvm, vif); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1134 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1135 | mvmvif->phy_ctxt = NULL; |
| 1136 | } |
| 1137 | |
Alexander Bondar | 5ee2b21 | 2013-03-05 10:16:40 +0200 | [diff] [blame] | 1138 | if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1139 | mvm->vif_count--; |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 1140 | |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 1141 | iwl_mvm_power_update_mac(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1142 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 1143 | |
| 1144 | out_release: |
| 1145 | iwl_mvm_mac_ctxt_release(mvm, vif); |
| 1146 | mutex_unlock(&mvm->mutex); |
| 1147 | } |
| 1148 | |
| 1149 | static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed) |
| 1150 | { |
| 1151 | return 0; |
| 1152 | } |
| 1153 | |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1154 | struct iwl_mvm_mc_iter_data { |
| 1155 | struct iwl_mvm *mvm; |
| 1156 | int port_id; |
| 1157 | }; |
| 1158 | |
| 1159 | static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac, |
| 1160 | struct ieee80211_vif *vif) |
| 1161 | { |
| 1162 | struct iwl_mvm_mc_iter_data *data = _data; |
| 1163 | struct iwl_mvm *mvm = data->mvm; |
| 1164 | struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd; |
| 1165 | int ret, len; |
| 1166 | |
| 1167 | /* if we don't have free ports, mcast frames will be dropped */ |
| 1168 | if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM)) |
| 1169 | return; |
| 1170 | |
| 1171 | if (vif->type != NL80211_IFTYPE_STATION || |
| 1172 | !vif->bss_conf.assoc) |
| 1173 | return; |
| 1174 | |
| 1175 | cmd->port_id = data->port_id++; |
| 1176 | memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN); |
| 1177 | len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4); |
| 1178 | |
Emmanuel Grumbach | 1c4abec | 2014-05-08 09:48:10 +0300 | [diff] [blame] | 1179 | ret = iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_ASYNC, len, cmd); |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1180 | if (ret) |
| 1181 | IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret); |
| 1182 | } |
| 1183 | |
| 1184 | static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm) |
| 1185 | { |
| 1186 | struct iwl_mvm_mc_iter_data iter_data = { |
| 1187 | .mvm = mvm, |
| 1188 | }; |
| 1189 | |
| 1190 | lockdep_assert_held(&mvm->mutex); |
| 1191 | |
| 1192 | if (WARN_ON_ONCE(!mvm->mcast_filter_cmd)) |
| 1193 | return; |
| 1194 | |
Emmanuel Grumbach | 1c4abec | 2014-05-08 09:48:10 +0300 | [diff] [blame] | 1195 | ieee80211_iterate_active_interfaces_atomic( |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1196 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 1197 | iwl_mvm_mc_iface_iterator, &iter_data); |
| 1198 | } |
| 1199 | |
| 1200 | static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw, |
| 1201 | struct netdev_hw_addr_list *mc_list) |
| 1202 | { |
| 1203 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1204 | struct iwl_mcast_filter_cmd *cmd; |
| 1205 | struct netdev_hw_addr *addr; |
| 1206 | int addr_count = netdev_hw_addr_list_count(mc_list); |
| 1207 | bool pass_all = false; |
| 1208 | int len; |
| 1209 | |
| 1210 | if (addr_count > MAX_MCAST_FILTERING_ADDRESSES) { |
| 1211 | pass_all = true; |
| 1212 | addr_count = 0; |
| 1213 | } |
| 1214 | |
| 1215 | len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4); |
| 1216 | cmd = kzalloc(len, GFP_ATOMIC); |
| 1217 | if (!cmd) |
| 1218 | return 0; |
| 1219 | |
| 1220 | if (pass_all) { |
| 1221 | cmd->pass_all = 1; |
| 1222 | return (u64)(unsigned long)cmd; |
| 1223 | } |
| 1224 | |
| 1225 | netdev_hw_addr_list_for_each(addr, mc_list) { |
| 1226 | IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n", |
| 1227 | cmd->count, addr->addr); |
| 1228 | memcpy(&cmd->addr_list[cmd->count * ETH_ALEN], |
| 1229 | addr->addr, ETH_ALEN); |
| 1230 | cmd->count++; |
| 1231 | } |
| 1232 | |
| 1233 | return (u64)(unsigned long)cmd; |
| 1234 | } |
| 1235 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1236 | static void iwl_mvm_configure_filter(struct ieee80211_hw *hw, |
| 1237 | unsigned int changed_flags, |
| 1238 | unsigned int *total_flags, |
| 1239 | u64 multicast) |
| 1240 | { |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1241 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1242 | struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast; |
| 1243 | |
| 1244 | mutex_lock(&mvm->mutex); |
| 1245 | |
| 1246 | /* replace previous configuration */ |
| 1247 | kfree(mvm->mcast_filter_cmd); |
| 1248 | mvm->mcast_filter_cmd = cmd; |
| 1249 | |
| 1250 | if (!cmd) |
| 1251 | goto out; |
| 1252 | |
| 1253 | iwl_mvm_recalc_multicast(mvm); |
| 1254 | out: |
| 1255 | mutex_unlock(&mvm->mutex); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1256 | *total_flags = 0; |
| 1257 | } |
| 1258 | |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1259 | #ifdef CONFIG_IWLWIFI_BCAST_FILTERING |
| 1260 | struct iwl_bcast_iter_data { |
| 1261 | struct iwl_mvm *mvm; |
| 1262 | struct iwl_bcast_filter_cmd *cmd; |
| 1263 | u8 current_filter; |
| 1264 | }; |
| 1265 | |
| 1266 | static void |
| 1267 | iwl_mvm_set_bcast_filter(struct ieee80211_vif *vif, |
| 1268 | const struct iwl_fw_bcast_filter *in_filter, |
| 1269 | struct iwl_fw_bcast_filter *out_filter) |
| 1270 | { |
| 1271 | struct iwl_fw_bcast_filter_attr *attr; |
| 1272 | int i; |
| 1273 | |
| 1274 | memcpy(out_filter, in_filter, sizeof(*out_filter)); |
| 1275 | |
| 1276 | for (i = 0; i < ARRAY_SIZE(out_filter->attrs); i++) { |
| 1277 | attr = &out_filter->attrs[i]; |
| 1278 | |
| 1279 | if (!attr->mask) |
| 1280 | break; |
| 1281 | |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 1282 | switch (attr->reserved1) { |
| 1283 | case cpu_to_le16(BC_FILTER_MAGIC_IP): |
| 1284 | if (vif->bss_conf.arp_addr_cnt != 1) { |
| 1285 | attr->mask = 0; |
| 1286 | continue; |
| 1287 | } |
| 1288 | |
| 1289 | attr->val = vif->bss_conf.arp_addr_list[0]; |
| 1290 | break; |
| 1291 | case cpu_to_le16(BC_FILTER_MAGIC_MAC): |
| 1292 | attr->val = *(__be32 *)&vif->addr[2]; |
| 1293 | break; |
| 1294 | default: |
| 1295 | break; |
| 1296 | } |
| 1297 | attr->reserved1 = 0; |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1298 | out_filter->num_attrs++; |
| 1299 | } |
| 1300 | } |
| 1301 | |
| 1302 | static void iwl_mvm_bcast_filter_iterator(void *_data, u8 *mac, |
| 1303 | struct ieee80211_vif *vif) |
| 1304 | { |
| 1305 | struct iwl_bcast_iter_data *data = _data; |
| 1306 | struct iwl_mvm *mvm = data->mvm; |
| 1307 | struct iwl_bcast_filter_cmd *cmd = data->cmd; |
| 1308 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1309 | struct iwl_fw_bcast_mac *bcast_mac; |
| 1310 | int i; |
| 1311 | |
| 1312 | if (WARN_ON(mvmvif->id >= ARRAY_SIZE(cmd->macs))) |
| 1313 | return; |
| 1314 | |
| 1315 | bcast_mac = &cmd->macs[mvmvif->id]; |
| 1316 | |
Ilan Peer | e48393e | 2014-05-22 11:19:02 +0300 | [diff] [blame] | 1317 | /* |
| 1318 | * enable filtering only for associated stations, but not for P2P |
| 1319 | * Clients |
| 1320 | */ |
| 1321 | if (vif->type != NL80211_IFTYPE_STATION || vif->p2p || |
| 1322 | !vif->bss_conf.assoc) |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1323 | return; |
| 1324 | |
| 1325 | bcast_mac->default_discard = 1; |
| 1326 | |
| 1327 | /* copy all configured filters */ |
| 1328 | for (i = 0; mvm->bcast_filters[i].attrs[0].mask; i++) { |
| 1329 | /* |
| 1330 | * Make sure we don't exceed our filters limit. |
| 1331 | * if there is still a valid filter to be configured, |
| 1332 | * be on the safe side and just allow bcast for this mac. |
| 1333 | */ |
| 1334 | if (WARN_ON_ONCE(data->current_filter >= |
| 1335 | ARRAY_SIZE(cmd->filters))) { |
| 1336 | bcast_mac->default_discard = 0; |
| 1337 | bcast_mac->attached_filters = 0; |
| 1338 | break; |
| 1339 | } |
| 1340 | |
| 1341 | iwl_mvm_set_bcast_filter(vif, |
| 1342 | &mvm->bcast_filters[i], |
| 1343 | &cmd->filters[data->current_filter]); |
| 1344 | |
| 1345 | /* skip current filter if it contains no attributes */ |
| 1346 | if (!cmd->filters[data->current_filter].num_attrs) |
| 1347 | continue; |
| 1348 | |
| 1349 | /* attach the filter to current mac */ |
| 1350 | bcast_mac->attached_filters |= |
| 1351 | cpu_to_le16(BIT(data->current_filter)); |
| 1352 | |
| 1353 | data->current_filter++; |
| 1354 | } |
| 1355 | } |
| 1356 | |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 1357 | bool iwl_mvm_bcast_filter_build_cmd(struct iwl_mvm *mvm, |
| 1358 | struct iwl_bcast_filter_cmd *cmd) |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1359 | { |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1360 | struct iwl_bcast_iter_data iter_data = { |
| 1361 | .mvm = mvm, |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 1362 | .cmd = cmd, |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1363 | }; |
| 1364 | |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 1365 | memset(cmd, 0, sizeof(*cmd)); |
| 1366 | cmd->max_bcast_filters = ARRAY_SIZE(cmd->filters); |
| 1367 | cmd->max_macs = ARRAY_SIZE(cmd->macs); |
| 1368 | |
| 1369 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 1370 | /* use debugfs filters/macs if override is configured */ |
| 1371 | if (mvm->dbgfs_bcast_filtering.override) { |
| 1372 | memcpy(cmd->filters, &mvm->dbgfs_bcast_filtering.cmd.filters, |
| 1373 | sizeof(cmd->filters)); |
| 1374 | memcpy(cmd->macs, &mvm->dbgfs_bcast_filtering.cmd.macs, |
| 1375 | sizeof(cmd->macs)); |
| 1376 | return true; |
| 1377 | } |
| 1378 | #endif |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1379 | |
| 1380 | /* if no filters are configured, do nothing */ |
| 1381 | if (!mvm->bcast_filters) |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 1382 | return false; |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1383 | |
| 1384 | /* configure and attach these filters for each associated sta vif */ |
| 1385 | ieee80211_iterate_active_interfaces( |
| 1386 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 1387 | iwl_mvm_bcast_filter_iterator, &iter_data); |
| 1388 | |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 1389 | return true; |
| 1390 | } |
| 1391 | static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm, |
| 1392 | struct ieee80211_vif *vif) |
| 1393 | { |
| 1394 | struct iwl_bcast_filter_cmd cmd; |
| 1395 | |
| 1396 | if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING)) |
| 1397 | return 0; |
| 1398 | |
| 1399 | if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd)) |
| 1400 | return 0; |
| 1401 | |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 1402 | return iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0, |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1403 | sizeof(cmd), &cmd); |
| 1404 | } |
| 1405 | #else |
| 1406 | static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm, |
| 1407 | struct ieee80211_vif *vif) |
| 1408 | { |
| 1409 | return 0; |
| 1410 | } |
| 1411 | #endif |
| 1412 | |
Arik Nemtsov | f697267 | 2014-06-15 16:03:55 +0300 | [diff] [blame] | 1413 | static void iwl_mvm_teardown_tdls_peers(struct iwl_mvm *mvm) |
| 1414 | { |
| 1415 | struct ieee80211_sta *sta; |
| 1416 | struct iwl_mvm_sta *mvmsta; |
| 1417 | int i; |
| 1418 | |
| 1419 | lockdep_assert_held(&mvm->mutex); |
| 1420 | |
| 1421 | for (i = 0; i < IWL_MVM_STATION_COUNT; i++) { |
| 1422 | sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i], |
| 1423 | lockdep_is_held(&mvm->mutex)); |
| 1424 | if (!sta || IS_ERR(sta) || !sta->tdls) |
| 1425 | continue; |
| 1426 | |
| 1427 | mvmsta = iwl_mvm_sta_from_mac80211(sta); |
| 1428 | ieee80211_tdls_oper_request(mvmsta->vif, sta->addr, |
| 1429 | NL80211_TDLS_TEARDOWN, |
| 1430 | WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED, |
| 1431 | GFP_KERNEL); |
| 1432 | } |
| 1433 | } |
| 1434 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1435 | static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm, |
| 1436 | struct ieee80211_vif *vif, |
| 1437 | struct ieee80211_bss_conf *bss_conf, |
| 1438 | u32 changes) |
| 1439 | { |
| 1440 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1441 | int ret; |
| 1442 | |
Ilan Peer | 6e97b0d | 2013-12-23 22:18:02 +0200 | [diff] [blame] | 1443 | /* |
| 1444 | * Re-calculate the tsf id, as the master-slave relations depend on the |
| 1445 | * beacon interval, which was not known when the station interface was |
| 1446 | * added. |
| 1447 | */ |
| 1448 | if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc) |
| 1449 | iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif); |
| 1450 | |
Luciano Coelho | bca49d9 | 2014-05-13 17:33:38 +0300 | [diff] [blame] | 1451 | ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1452 | if (ret) |
| 1453 | IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr); |
| 1454 | |
| 1455 | if (changes & BSS_CHANGED_ASSOC) { |
| 1456 | if (bss_conf->assoc) { |
| 1457 | /* add quota for this interface */ |
Johannes Berg | 0166230 | 2014-06-06 15:18:45 +0200 | [diff] [blame] | 1458 | ret = iwl_mvm_update_quotas(mvm, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1459 | if (ret) { |
| 1460 | IWL_ERR(mvm, "failed to update quotas\n"); |
| 1461 | return; |
| 1462 | } |
Johannes Berg | 016d27e | 2013-05-03 11:16:15 +0200 | [diff] [blame] | 1463 | |
| 1464 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, |
| 1465 | &mvm->status)) { |
| 1466 | /* |
| 1467 | * If we're restarting then the firmware will |
| 1468 | * obviously have lost synchronisation with |
| 1469 | * the AP. It will attempt to synchronise by |
| 1470 | * itself, but we can make it more reliable by |
| 1471 | * scheduling a session protection time event. |
| 1472 | * |
| 1473 | * The firmware needs to receive a beacon to |
| 1474 | * catch up with synchronisation, use 110% of |
| 1475 | * the beacon interval. |
| 1476 | * |
| 1477 | * Set a large maximum delay to allow for more |
| 1478 | * than a single interface. |
| 1479 | */ |
| 1480 | u32 dur = (11 * vif->bss_conf.beacon_int) / 10; |
| 1481 | iwl_mvm_protect_session(mvm, vif, dur, dur, |
| 1482 | 5 * dur); |
| 1483 | } |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 1484 | |
| 1485 | iwl_mvm_sf_update(mvm, vif, false); |
Alexander Bondar | 175a70b | 2013-04-14 20:59:37 +0300 | [diff] [blame] | 1486 | iwl_mvm_power_vif_assoc(mvm, vif); |
Emmanuel Grumbach | 697162a | 2014-07-30 15:56:42 +0300 | [diff] [blame] | 1487 | if (vif->p2p) { |
Eliad Peller | 29a90a4 | 2013-11-05 14:06:29 +0200 | [diff] [blame] | 1488 | iwl_mvm_ref(mvm, IWL_MVM_REF_P2P_CLIENT); |
Emmanuel Grumbach | 697162a | 2014-07-30 15:56:42 +0300 | [diff] [blame] | 1489 | iwl_mvm_update_smps(mvm, vif, |
| 1490 | IWL_MVM_SMPS_REQ_PROT, |
| 1491 | IEEE80211_SMPS_DYNAMIC); |
| 1492 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1493 | } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) { |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 1494 | /* |
| 1495 | * If update fails - SF might be running in associated |
| 1496 | * mode while disassociated - which is forbidden. |
| 1497 | */ |
| 1498 | WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false), |
| 1499 | "Failed to update SF upon disassociation\n"); |
| 1500 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1501 | /* remove AP station now that the MAC is unassoc */ |
| 1502 | ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id); |
| 1503 | if (ret) |
| 1504 | IWL_ERR(mvm, "failed to remove AP station\n"); |
Eliad Peller | 37577fe | 2013-12-05 17:19:39 +0200 | [diff] [blame] | 1505 | |
| 1506 | if (mvm->d0i3_ap_sta_id == mvmvif->ap_sta_id) |
| 1507 | mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1508 | mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT; |
| 1509 | /* remove quota for this interface */ |
Johannes Berg | 0166230 | 2014-06-06 15:18:45 +0200 | [diff] [blame] | 1510 | ret = iwl_mvm_update_quotas(mvm, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1511 | if (ret) |
| 1512 | IWL_ERR(mvm, "failed to update quotas\n"); |
Eliad Peller | 29a90a4 | 2013-11-05 14:06:29 +0200 | [diff] [blame] | 1513 | |
| 1514 | if (vif->p2p) |
| 1515 | iwl_mvm_unref(mvm, IWL_MVM_REF_P2P_CLIENT); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1516 | } |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1517 | |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1518 | iwl_mvm_recalc_multicast(mvm); |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1519 | iwl_mvm_configure_bcast_filter(mvm, vif); |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1520 | |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1521 | /* reset rssi values */ |
| 1522 | mvmvif->bf_data.ave_beacon_signal = 0; |
| 1523 | |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 1524 | iwl_mvm_bt_coex_vif_change(mvm); |
Emmanuel Grumbach | f94045e | 2014-01-06 13:38:55 +0200 | [diff] [blame] | 1525 | iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_TT, |
| 1526 | IEEE80211_SMPS_AUTOMATIC); |
Alexander Bondar | 989c650 | 2013-05-16 17:34:17 +0300 | [diff] [blame] | 1527 | } else if (changes & BSS_CHANGED_BEACON_INFO) { |
Johannes Berg | 210a544 | 2013-01-24 23:48:23 +0100 | [diff] [blame] | 1528 | /* |
| 1529 | * We received a beacon _after_ association so |
| 1530 | * remove the session protection. |
| 1531 | */ |
| 1532 | iwl_mvm_remove_time_event(mvm, mvmvif, |
| 1533 | &mvmvif->time_event_data); |
Alexander Bondar | 51498cf6 | 2013-09-02 17:10:14 +0300 | [diff] [blame] | 1534 | } else if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS | |
| 1535 | BSS_CHANGED_QOS)) { |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 1536 | ret = iwl_mvm_power_update_mac(mvm); |
Alexander Bondar | 4bf881f | 2013-05-29 10:19:50 +0300 | [diff] [blame] | 1537 | if (ret) |
| 1538 | IWL_ERR(mvm, "failed to update power mode\n"); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1539 | } |
Eran Harary | cc87d32 | 2014-07-15 14:04:23 +0300 | [diff] [blame] | 1540 | |
| 1541 | if (changes & BSS_CHANGED_BEACON_INFO) { |
| 1542 | iwl_mvm_sf_update(mvm, vif, false); |
| 1543 | WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0)); |
| 1544 | } |
| 1545 | |
Matti Gottlieb | 88f2fd7 | 2013-07-09 15:25:46 +0300 | [diff] [blame] | 1546 | if (changes & BSS_CHANGED_TXPOWER) { |
| 1547 | IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n", |
| 1548 | bss_conf->txpower); |
| 1549 | iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower); |
| 1550 | } |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1551 | |
| 1552 | if (changes & BSS_CHANGED_CQM) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 1553 | IWL_DEBUG_MAC80211(mvm, "cqm info_changed\n"); |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1554 | /* reset cqm events tracking */ |
| 1555 | mvmvif->bf_data.last_cqm_event = 0; |
Avri Altman | fa7b2e7 | 2014-05-20 08:03:24 +0300 | [diff] [blame] | 1556 | if (mvmvif->bf_data.bf_enabled) { |
| 1557 | ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0); |
| 1558 | if (ret) |
| 1559 | IWL_ERR(mvm, |
| 1560 | "failed to update CQM thresholds\n"); |
| 1561 | } |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1562 | } |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 1563 | |
| 1564 | if (changes & BSS_CHANGED_ARP_FILTER) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 1565 | IWL_DEBUG_MAC80211(mvm, "arp filter changed\n"); |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 1566 | iwl_mvm_configure_bcast_filter(mvm, vif); |
| 1567 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1568 | } |
| 1569 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1570 | static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw, |
| 1571 | struct ieee80211_vif *vif) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1572 | { |
| 1573 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1574 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1575 | int ret; |
| 1576 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 1577 | /* |
| 1578 | * iwl_mvm_mac_ctxt_add() might read directly from the device |
| 1579 | * (the system time), so make sure it is available. |
| 1580 | */ |
| 1581 | ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_START_AP); |
| 1582 | if (ret) |
| 1583 | return ret; |
| 1584 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1585 | mutex_lock(&mvm->mutex); |
| 1586 | |
| 1587 | /* Send the beacon template */ |
| 1588 | ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif); |
| 1589 | if (ret) |
| 1590 | goto out_unlock; |
| 1591 | |
Ilan Peer | 6e97b0d | 2013-12-23 22:18:02 +0200 | [diff] [blame] | 1592 | /* |
| 1593 | * Re-calculate the tsf id, as the master-slave relations depend on the |
| 1594 | * beacon interval, which was not known when the AP interface was added. |
| 1595 | */ |
| 1596 | if (vif->type == NL80211_IFTYPE_AP) |
| 1597 | iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif); |
| 1598 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1599 | /* Add the mac context */ |
| 1600 | ret = iwl_mvm_mac_ctxt_add(mvm, vif); |
| 1601 | if (ret) |
| 1602 | goto out_unlock; |
| 1603 | |
| 1604 | /* Perform the binding */ |
| 1605 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 1606 | if (ret) |
| 1607 | goto out_remove; |
| 1608 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1609 | /* Send the bcast station. At this stage the TBTT and DTIM time events |
| 1610 | * are added and applied to the scheduler */ |
| 1611 | ret = iwl_mvm_send_bcast_sta(mvm, vif, &mvmvif->bcast_sta); |
| 1612 | if (ret) |
| 1613 | goto out_unbind; |
| 1614 | |
Ilan Peer | 5691e21 | 2013-12-31 21:05:50 +0200 | [diff] [blame] | 1615 | /* must be set before quota calculations */ |
| 1616 | mvmvif->ap_ibss_active = true; |
| 1617 | |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 1618 | /* power updated needs to be done before quotas */ |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 1619 | iwl_mvm_power_update_mac(mvm); |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 1620 | |
Johannes Berg | 0166230 | 2014-06-06 15:18:45 +0200 | [diff] [blame] | 1621 | ret = iwl_mvm_update_quotas(mvm, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1622 | if (ret) |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 1623 | goto out_quota_failed; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1624 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1625 | /* 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] | 1626 | if (vif->p2p && mvm->p2p_device_vif) |
Luciano Coelho | bca49d9 | 2014-05-13 17:33:38 +0300 | [diff] [blame] | 1627 | iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1628 | |
Eliad Peller | 29a90a4 | 2013-11-05 14:06:29 +0200 | [diff] [blame] | 1629 | iwl_mvm_ref(mvm, IWL_MVM_REF_AP_IBSS); |
| 1630 | |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 1631 | iwl_mvm_bt_coex_vif_change(mvm); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 1632 | |
Arik Nemtsov | f697267 | 2014-06-15 16:03:55 +0300 | [diff] [blame] | 1633 | /* we don't support TDLS during DCM */ |
| 1634 | if (iwl_mvm_phy_ctx_count(mvm) > 1) |
| 1635 | iwl_mvm_teardown_tdls_peers(mvm); |
| 1636 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1637 | mutex_unlock(&mvm->mutex); |
| 1638 | return 0; |
| 1639 | |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 1640 | out_quota_failed: |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 1641 | iwl_mvm_power_update_mac(mvm); |
Ilan Peer | 5691e21 | 2013-12-31 21:05:50 +0200 | [diff] [blame] | 1642 | mvmvif->ap_ibss_active = false; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1643 | iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta); |
| 1644 | out_unbind: |
| 1645 | iwl_mvm_binding_remove_vif(mvm, vif); |
| 1646 | out_remove: |
| 1647 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 1648 | out_unlock: |
| 1649 | mutex_unlock(&mvm->mutex); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 1650 | iwl_mvm_unref(mvm, IWL_MVM_REF_START_AP); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1651 | return ret; |
| 1652 | } |
| 1653 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1654 | static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw, |
| 1655 | struct ieee80211_vif *vif) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1656 | { |
| 1657 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1658 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1659 | |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 1660 | iwl_mvm_prepare_mac_removal(mvm, vif); |
| 1661 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1662 | mutex_lock(&mvm->mutex); |
| 1663 | |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 1664 | /* Handle AP stop while in CSA */ |
Andrei Otcheretianski | 7f0a7c6 | 2014-05-04 11:48:12 +0300 | [diff] [blame] | 1665 | if (rcu_access_pointer(mvm->csa_vif) == vif) { |
| 1666 | iwl_mvm_remove_time_event(mvm, mvmvif, |
| 1667 | &mvmvif->time_event_data); |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 1668 | RCU_INIT_POINTER(mvm->csa_vif, NULL); |
Andrei Otcheretianski | 7f0a7c6 | 2014-05-04 11:48:12 +0300 | [diff] [blame] | 1669 | } |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 1670 | |
Andrei Otcheretianski | 003e5236 | 2014-05-25 17:24:22 +0300 | [diff] [blame] | 1671 | if (rcu_access_pointer(mvm->csa_tx_blocked_vif) == vif) { |
| 1672 | RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL); |
| 1673 | mvm->csa_tx_block_bcn_timeout = 0; |
| 1674 | } |
| 1675 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1676 | mvmvif->ap_ibss_active = false; |
David Spinadel | 1c87bba | 2014-02-27 16:41:52 +0200 | [diff] [blame] | 1677 | mvm->ap_last_beacon_gp2 = 0; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1678 | |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 1679 | iwl_mvm_bt_coex_vif_change(mvm); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 1680 | |
Eliad Peller | 29a90a4 | 2013-11-05 14:06:29 +0200 | [diff] [blame] | 1681 | iwl_mvm_unref(mvm, IWL_MVM_REF_AP_IBSS); |
| 1682 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1683 | /* 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] | 1684 | if (vif->p2p && mvm->p2p_device_vif) |
Luciano Coelho | bca49d9 | 2014-05-13 17:33:38 +0300 | [diff] [blame] | 1685 | iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1686 | |
Johannes Berg | 0166230 | 2014-06-06 15:18:45 +0200 | [diff] [blame] | 1687 | iwl_mvm_update_quotas(mvm, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1688 | iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta); |
| 1689 | iwl_mvm_binding_remove_vif(mvm, vif); |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 1690 | |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 1691 | iwl_mvm_power_update_mac(mvm); |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 1692 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1693 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 1694 | |
| 1695 | mutex_unlock(&mvm->mutex); |
| 1696 | } |
| 1697 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1698 | static void |
| 1699 | iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm, |
| 1700 | struct ieee80211_vif *vif, |
| 1701 | struct ieee80211_bss_conf *bss_conf, |
| 1702 | u32 changes) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1703 | { |
Ilan Peer | be2056f | 2013-12-04 16:47:14 +0200 | [diff] [blame] | 1704 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
Avri Altman | 8a5e366 | 2013-11-12 19:16:03 +0200 | [diff] [blame] | 1705 | |
Ilan Peer | be2056f | 2013-12-04 16:47:14 +0200 | [diff] [blame] | 1706 | /* Changes will be applied when the AP/IBSS is started */ |
| 1707 | if (!mvmvif->ap_ibss_active) |
| 1708 | return; |
| 1709 | |
Johannes Berg | 863230da | 2013-12-04 17:08:40 +0100 | [diff] [blame] | 1710 | if (changes & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT | |
| 1711 | BSS_CHANGED_BANDWIDTH) && |
Luciano Coelho | bca49d9 | 2014-05-13 17:33:38 +0300 | [diff] [blame] | 1712 | iwl_mvm_mac_ctxt_changed(mvm, vif, false)) |
Johannes Berg | 863230da | 2013-12-04 17:08:40 +0100 | [diff] [blame] | 1713 | IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr); |
Avri Altman | 8a5e366 | 2013-11-12 19:16:03 +0200 | [diff] [blame] | 1714 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1715 | /* Need to send a new beacon template to the FW */ |
Johannes Berg | 863230da | 2013-12-04 17:08:40 +0100 | [diff] [blame] | 1716 | if (changes & BSS_CHANGED_BEACON && |
| 1717 | iwl_mvm_mac_ctxt_beacon_changed(mvm, vif)) |
| 1718 | IWL_WARN(mvm, "Failed updating beacon data\n"); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1719 | } |
| 1720 | |
| 1721 | static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw, |
| 1722 | struct ieee80211_vif *vif, |
| 1723 | struct ieee80211_bss_conf *bss_conf, |
| 1724 | u32 changes) |
| 1725 | { |
| 1726 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1727 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 1728 | /* |
| 1729 | * iwl_mvm_bss_info_changed_station() might call |
| 1730 | * iwl_mvm_protect_session(), which reads directly from |
| 1731 | * the device (the system time), so make sure it is available. |
| 1732 | */ |
| 1733 | if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_BSS_CHANGED)) |
| 1734 | return; |
| 1735 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1736 | mutex_lock(&mvm->mutex); |
| 1737 | |
David Spinadel | 723f02e | 2014-04-27 09:54:54 +0300 | [diff] [blame] | 1738 | if (changes & BSS_CHANGED_IDLE && !bss_conf->idle) |
David Spinadel | fb98be5 | 2014-05-04 12:51:10 +0300 | [diff] [blame] | 1739 | iwl_mvm_scan_offload_stop(mvm, true); |
David Spinadel | 723f02e | 2014-04-27 09:54:54 +0300 | [diff] [blame] | 1740 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1741 | switch (vif->type) { |
| 1742 | case NL80211_IFTYPE_STATION: |
| 1743 | iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes); |
| 1744 | break; |
| 1745 | case NL80211_IFTYPE_AP: |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1746 | case NL80211_IFTYPE_ADHOC: |
| 1747 | iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1748 | break; |
| 1749 | default: |
| 1750 | /* shouldn't happen */ |
| 1751 | WARN_ON_ONCE(1); |
| 1752 | } |
| 1753 | |
| 1754 | mutex_unlock(&mvm->mutex); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 1755 | iwl_mvm_unref(mvm, IWL_MVM_REF_BSS_CHANGED); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1756 | } |
| 1757 | |
Eliad Peller | 4660dfb | 2014-06-22 18:15:59 +0300 | [diff] [blame] | 1758 | static int iwl_mvm_cancel_scan_wait_notif(struct iwl_mvm *mvm, |
| 1759 | enum iwl_scan_status scan_type) |
| 1760 | { |
| 1761 | int ret; |
| 1762 | bool wait_for_handlers = false; |
| 1763 | |
| 1764 | mutex_lock(&mvm->mutex); |
| 1765 | |
| 1766 | if (mvm->scan_status != scan_type) { |
| 1767 | ret = 0; |
| 1768 | /* make sure there are no pending notifications */ |
| 1769 | wait_for_handlers = true; |
| 1770 | goto out; |
| 1771 | } |
| 1772 | |
| 1773 | switch (scan_type) { |
| 1774 | case IWL_MVM_SCAN_SCHED: |
| 1775 | ret = iwl_mvm_scan_offload_stop(mvm, true); |
| 1776 | break; |
| 1777 | case IWL_MVM_SCAN_OS: |
| 1778 | ret = iwl_mvm_cancel_scan(mvm); |
| 1779 | break; |
| 1780 | case IWL_MVM_SCAN_NONE: |
| 1781 | default: |
| 1782 | WARN_ON_ONCE(1); |
| 1783 | ret = -EINVAL; |
| 1784 | break; |
| 1785 | } |
| 1786 | if (ret) |
| 1787 | goto out; |
| 1788 | |
| 1789 | wait_for_handlers = true; |
| 1790 | out: |
| 1791 | mutex_unlock(&mvm->mutex); |
| 1792 | |
| 1793 | /* make sure we consume the completion notification */ |
| 1794 | if (wait_for_handlers) |
| 1795 | iwl_mvm_wait_for_async_handlers(mvm); |
| 1796 | |
| 1797 | return ret; |
| 1798 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1799 | static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw, |
| 1800 | struct ieee80211_vif *vif, |
David Spinadel | c56ef67 | 2014-02-05 15:21:13 +0200 | [diff] [blame] | 1801 | struct ieee80211_scan_request *hw_req) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1802 | { |
| 1803 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
David Spinadel | c56ef67 | 2014-02-05 15:21:13 +0200 | [diff] [blame] | 1804 | struct cfg80211_scan_request *req = &hw_req->req; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1805 | int ret; |
| 1806 | |
David Spinadel | 762533b | 2014-06-05 11:20:43 +0300 | [diff] [blame] | 1807 | if (req->n_channels == 0 || |
| 1808 | req->n_channels > mvm->fw->ucode_capa.n_scan_channels) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1809 | return -EINVAL; |
| 1810 | |
Eliad Peller | 4660dfb | 2014-06-22 18:15:59 +0300 | [diff] [blame] | 1811 | ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_SCHED); |
| 1812 | if (ret) |
| 1813 | return ret; |
| 1814 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1815 | mutex_lock(&mvm->mutex); |
| 1816 | |
Eliad Peller | 4660dfb | 2014-06-22 18:15:59 +0300 | [diff] [blame] | 1817 | if (mvm->scan_status != IWL_MVM_SCAN_NONE) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1818 | ret = -EBUSY; |
Arik Nemtsov | 519e202 | 2013-10-17 17:51:35 +0300 | [diff] [blame] | 1819 | goto out; |
| 1820 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1821 | |
Arik Nemtsov | 519e202 | 2013-10-17 17:51:35 +0300 | [diff] [blame] | 1822 | iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN); |
| 1823 | |
David Spinadel | fb98be5 | 2014-05-04 12:51:10 +0300 | [diff] [blame] | 1824 | if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN) |
| 1825 | ret = iwl_mvm_unified_scan_lmac(mvm, vif, hw_req); |
| 1826 | else |
| 1827 | ret = iwl_mvm_scan_request(mvm, vif, req); |
| 1828 | |
Arik Nemtsov | 519e202 | 2013-10-17 17:51:35 +0300 | [diff] [blame] | 1829 | if (ret) |
| 1830 | iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN); |
| 1831 | out: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1832 | mutex_unlock(&mvm->mutex); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1833 | return ret; |
| 1834 | } |
| 1835 | |
| 1836 | static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw, |
| 1837 | struct ieee80211_vif *vif) |
| 1838 | { |
| 1839 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1840 | |
| 1841 | mutex_lock(&mvm->mutex); |
| 1842 | |
| 1843 | iwl_mvm_cancel_scan(mvm); |
| 1844 | |
| 1845 | mutex_unlock(&mvm->mutex); |
| 1846 | } |
| 1847 | |
| 1848 | static void |
| 1849 | iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw, |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 1850 | struct ieee80211_sta *sta, u16 tids, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1851 | int num_frames, |
| 1852 | enum ieee80211_frame_release_type reason, |
| 1853 | bool more_data) |
| 1854 | { |
| 1855 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1856 | |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 1857 | /* Called when we need to transmit (a) frame(s) from mac80211 */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1858 | |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 1859 | iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames, |
| 1860 | tids, more_data, false); |
| 1861 | } |
| 1862 | |
| 1863 | static void |
| 1864 | iwl_mvm_mac_release_buffered_frames(struct ieee80211_hw *hw, |
| 1865 | struct ieee80211_sta *sta, u16 tids, |
| 1866 | int num_frames, |
| 1867 | enum ieee80211_frame_release_type reason, |
| 1868 | bool more_data) |
| 1869 | { |
| 1870 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1871 | |
| 1872 | /* Called when we need to transmit (a) frame(s) from agg queue */ |
| 1873 | |
| 1874 | iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames, |
| 1875 | tids, more_data, true); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1876 | } |
| 1877 | |
| 1878 | static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw, |
| 1879 | struct ieee80211_vif *vif, |
| 1880 | enum sta_notify_cmd cmd, |
| 1881 | struct ieee80211_sta *sta) |
| 1882 | { |
| 1883 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 5b577a9 | 2013-11-14 18:20:04 +0100 | [diff] [blame] | 1884 | struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 1885 | int tid; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1886 | |
| 1887 | switch (cmd) { |
| 1888 | case STA_NOTIFY_SLEEP: |
Emmanuel Grumbach | e3d4bc8 | 2013-05-07 14:08:24 +0300 | [diff] [blame] | 1889 | if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1890 | ieee80211_sta_block_awake(hw, sta, true); |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 1891 | spin_lock_bh(&mvmsta->lock); |
| 1892 | for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) { |
| 1893 | struct iwl_mvm_tid_data *tid_data; |
| 1894 | |
| 1895 | tid_data = &mvmsta->tid_data[tid]; |
| 1896 | if (tid_data->state != IWL_AGG_ON && |
| 1897 | tid_data->state != IWL_EMPTYING_HW_QUEUE_DELBA) |
| 1898 | continue; |
| 1899 | if (iwl_mvm_tid_queued(tid_data) == 0) |
| 1900 | continue; |
| 1901 | ieee80211_sta_set_buffered(sta, tid, true); |
| 1902 | } |
| 1903 | spin_unlock_bh(&mvmsta->lock); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1904 | /* |
| 1905 | * The fw updates the STA to be asleep. Tx packets on the Tx |
| 1906 | * queues to this station will not be transmitted. The fw will |
| 1907 | * send a Tx response with TX_STATUS_FAIL_DEST_PS. |
| 1908 | */ |
| 1909 | break; |
| 1910 | case STA_NOTIFY_AWAKE: |
Emmanuel Grumbach | 881acd8 | 2013-03-19 16:16:00 +0200 | [diff] [blame] | 1911 | if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT)) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1912 | break; |
Johannes Berg | 9cc4071 | 2013-02-15 22:47:48 +0100 | [diff] [blame] | 1913 | iwl_mvm_sta_modify_ps_wake(mvm, sta); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1914 | break; |
| 1915 | default: |
| 1916 | break; |
| 1917 | } |
| 1918 | } |
| 1919 | |
Johannes Berg | 1ddbbb0 | 2013-12-04 22:39:17 +0100 | [diff] [blame] | 1920 | static void iwl_mvm_sta_pre_rcu_remove(struct ieee80211_hw *hw, |
| 1921 | struct ieee80211_vif *vif, |
| 1922 | struct ieee80211_sta *sta) |
| 1923 | { |
| 1924 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1925 | struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv; |
| 1926 | |
| 1927 | /* |
| 1928 | * This is called before mac80211 does RCU synchronisation, |
| 1929 | * so here we already invalidate our internal RCU-protected |
| 1930 | * station pointer. The rest of the code will thus no longer |
| 1931 | * be able to find the station this way, and we don't rely |
| 1932 | * on further RCU synchronisation after the sta_state() |
| 1933 | * callback deleted the station. |
| 1934 | */ |
| 1935 | mutex_lock(&mvm->mutex); |
| 1936 | if (sta == rcu_access_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id])) |
| 1937 | rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id], |
| 1938 | ERR_PTR(-ENOENT)); |
| 1939 | mutex_unlock(&mvm->mutex); |
| 1940 | } |
| 1941 | |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 1942 | int iwl_mvm_tdls_sta_count(struct iwl_mvm *mvm, struct ieee80211_vif *vif) |
Arik Nemtsov | cf7b491 | 2014-05-15 11:44:40 +0300 | [diff] [blame] | 1943 | { |
| 1944 | struct ieee80211_sta *sta; |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 1945 | struct iwl_mvm_sta *mvmsta; |
Arik Nemtsov | cf7b491 | 2014-05-15 11:44:40 +0300 | [diff] [blame] | 1946 | int count = 0; |
| 1947 | int i; |
| 1948 | |
| 1949 | lockdep_assert_held(&mvm->mutex); |
| 1950 | |
| 1951 | for (i = 0; i < IWL_MVM_STATION_COUNT; i++) { |
| 1952 | sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i], |
| 1953 | lockdep_is_held(&mvm->mutex)); |
| 1954 | if (!sta || IS_ERR(sta) || !sta->tdls) |
| 1955 | continue; |
| 1956 | |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 1957 | if (vif) { |
| 1958 | mvmsta = iwl_mvm_sta_from_mac80211(sta); |
| 1959 | if (mvmsta->vif != vif) |
| 1960 | continue; |
| 1961 | } |
| 1962 | |
Arik Nemtsov | cf7b491 | 2014-05-15 11:44:40 +0300 | [diff] [blame] | 1963 | count++; |
| 1964 | } |
| 1965 | |
| 1966 | return count; |
| 1967 | } |
| 1968 | |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 1969 | static void iwl_mvm_recalc_tdls_state(struct iwl_mvm *mvm, |
| 1970 | struct ieee80211_vif *vif, |
| 1971 | bool sta_added) |
| 1972 | { |
| 1973 | int tdls_sta_cnt = iwl_mvm_tdls_sta_count(mvm, vif); |
| 1974 | |
| 1975 | /* |
| 1976 | * Disable ps when the first TDLS sta is added and re-enable it |
| 1977 | * when the last TDLS sta is removed |
| 1978 | */ |
| 1979 | if ((tdls_sta_cnt == 1 && sta_added) || |
| 1980 | (tdls_sta_cnt == 0 && !sta_added)) |
| 1981 | iwl_mvm_power_update_mac(mvm); |
| 1982 | } |
| 1983 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1984 | static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw, |
| 1985 | struct ieee80211_vif *vif, |
| 1986 | struct ieee80211_sta *sta, |
| 1987 | enum ieee80211_sta_state old_state, |
| 1988 | enum ieee80211_sta_state new_state) |
| 1989 | { |
| 1990 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1991 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1992 | int ret; |
| 1993 | |
| 1994 | IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n", |
| 1995 | sta->addr, old_state, new_state); |
| 1996 | |
| 1997 | /* this would be a mac80211 bug ... but don't crash */ |
| 1998 | if (WARN_ON_ONCE(!mvmvif->phy_ctxt)) |
| 1999 | return -EINVAL; |
| 2000 | |
| 2001 | /* if a STA is being removed, reuse its ID */ |
| 2002 | flush_work(&mvm->sta_drained_wk); |
| 2003 | |
| 2004 | mutex_lock(&mvm->mutex); |
| 2005 | if (old_state == IEEE80211_STA_NOTEXIST && |
| 2006 | new_state == IEEE80211_STA_NONE) { |
Johannes Berg | 48bc130 | 2013-07-04 15:55:29 +0200 | [diff] [blame] | 2007 | /* |
| 2008 | * Firmware bug - it'll crash if the beacon interval is less |
| 2009 | * than 16. We can't avoid connecting at all, so refuse the |
| 2010 | * station state change, this will cause mac80211 to abandon |
| 2011 | * attempts to connect to this AP, and eventually wpa_s will |
| 2012 | * blacklist the AP... |
| 2013 | */ |
| 2014 | if (vif->type == NL80211_IFTYPE_STATION && |
| 2015 | vif->bss_conf.beacon_int < 16) { |
| 2016 | IWL_ERR(mvm, |
| 2017 | "AP %pM beacon interval is %d, refusing due to firmware bug!\n", |
| 2018 | sta->addr, vif->bss_conf.beacon_int); |
| 2019 | ret = -EINVAL; |
| 2020 | goto out_unlock; |
| 2021 | } |
Arik Nemtsov | cf7b491 | 2014-05-15 11:44:40 +0300 | [diff] [blame] | 2022 | |
| 2023 | if (sta->tdls && |
| 2024 | (vif->p2p || |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 2025 | iwl_mvm_tdls_sta_count(mvm, NULL) == |
| 2026 | IWL_MVM_TDLS_STA_COUNT || |
Arik Nemtsov | cf7b491 | 2014-05-15 11:44:40 +0300 | [diff] [blame] | 2027 | iwl_mvm_phy_ctx_count(mvm) > 1)) { |
| 2028 | IWL_DEBUG_MAC80211(mvm, "refusing TDLS sta\n"); |
| 2029 | ret = -EBUSY; |
| 2030 | goto out_unlock; |
| 2031 | } |
| 2032 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2033 | ret = iwl_mvm_add_sta(mvm, vif, sta); |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 2034 | if (sta->tdls && ret == 0) |
| 2035 | iwl_mvm_recalc_tdls_state(mvm, vif, true); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2036 | } else if (old_state == IEEE80211_STA_NONE && |
| 2037 | new_state == IEEE80211_STA_AUTH) { |
Haim Dreyfuss | e820c2d | 2014-04-06 11:19:09 +0300 | [diff] [blame] | 2038 | /* |
| 2039 | * EBS may be disabled due to previous failures reported by FW. |
| 2040 | * Reset EBS status here assuming environment has been changed. |
| 2041 | */ |
| 2042 | mvm->last_ebs_successful = true; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2043 | ret = 0; |
| 2044 | } else if (old_state == IEEE80211_STA_AUTH && |
| 2045 | new_state == IEEE80211_STA_ASSOC) { |
Johannes Berg | 7a45397 | 2013-02-12 13:10:44 +0100 | [diff] [blame] | 2046 | ret = iwl_mvm_update_sta(mvm, vif, sta); |
| 2047 | if (ret == 0) |
| 2048 | iwl_mvm_rs_rate_init(mvm, sta, |
Eyal Shapira | b87c217 | 2013-11-09 23:37:55 +0200 | [diff] [blame] | 2049 | mvmvif->phy_ctxt->channel->band, |
| 2050 | true); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2051 | } else if (old_state == IEEE80211_STA_ASSOC && |
| 2052 | new_state == IEEE80211_STA_AUTHORIZED) { |
Arik Nemtsov | f59e0e3c | 2014-06-10 19:56:27 +0300 | [diff] [blame] | 2053 | |
| 2054 | /* we don't support TDLS during DCM */ |
| 2055 | if (iwl_mvm_phy_ctx_count(mvm) > 1) |
| 2056 | iwl_mvm_teardown_tdls_peers(mvm); |
| 2057 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 2058 | /* enable beacon filtering */ |
Avri Altman | fa7b2e7 | 2014-05-20 08:03:24 +0300 | [diff] [blame] | 2059 | WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2060 | ret = 0; |
| 2061 | } else if (old_state == IEEE80211_STA_AUTHORIZED && |
| 2062 | new_state == IEEE80211_STA_ASSOC) { |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 2063 | /* disable beacon filtering */ |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 2064 | WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif, 0)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2065 | ret = 0; |
| 2066 | } else if (old_state == IEEE80211_STA_ASSOC && |
| 2067 | new_state == IEEE80211_STA_AUTH) { |
| 2068 | ret = 0; |
| 2069 | } else if (old_state == IEEE80211_STA_AUTH && |
| 2070 | new_state == IEEE80211_STA_NONE) { |
| 2071 | ret = 0; |
| 2072 | } else if (old_state == IEEE80211_STA_NONE && |
| 2073 | new_state == IEEE80211_STA_NOTEXIST) { |
| 2074 | ret = iwl_mvm_rm_sta(mvm, vif, sta); |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 2075 | if (sta->tdls) |
| 2076 | iwl_mvm_recalc_tdls_state(mvm, vif, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2077 | } else { |
| 2078 | ret = -EIO; |
| 2079 | } |
Johannes Berg | 48bc130 | 2013-07-04 15:55:29 +0200 | [diff] [blame] | 2080 | out_unlock: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2081 | mutex_unlock(&mvm->mutex); |
| 2082 | |
| 2083 | return ret; |
| 2084 | } |
| 2085 | |
| 2086 | static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value) |
| 2087 | { |
| 2088 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2089 | |
| 2090 | mvm->rts_threshold = value; |
| 2091 | |
| 2092 | return 0; |
| 2093 | } |
| 2094 | |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 2095 | static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw, |
| 2096 | struct ieee80211_vif *vif, |
| 2097 | struct ieee80211_sta *sta, u32 changed) |
| 2098 | { |
| 2099 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2100 | |
| 2101 | if (vif->type == NL80211_IFTYPE_STATION && |
| 2102 | changed & IEEE80211_RC_NSS_CHANGED) |
| 2103 | iwl_mvm_sf_update(mvm, vif, false); |
| 2104 | } |
| 2105 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2106 | static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw, |
| 2107 | struct ieee80211_vif *vif, u16 ac, |
| 2108 | const struct ieee80211_tx_queue_params *params) |
| 2109 | { |
| 2110 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2111 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 2112 | |
| 2113 | mvmvif->queue_params[ac] = *params; |
| 2114 | |
| 2115 | /* |
| 2116 | * No need to update right away, we'll get BSS_CHANGED_QOS |
| 2117 | * The exception is P2P_DEVICE interface which needs immediate update. |
| 2118 | */ |
| 2119 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
| 2120 | int ret; |
| 2121 | |
| 2122 | mutex_lock(&mvm->mutex); |
Luciano Coelho | bca49d9 | 2014-05-13 17:33:38 +0300 | [diff] [blame] | 2123 | ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2124 | mutex_unlock(&mvm->mutex); |
| 2125 | return ret; |
| 2126 | } |
| 2127 | return 0; |
| 2128 | } |
| 2129 | |
| 2130 | static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw, |
| 2131 | struct ieee80211_vif *vif) |
| 2132 | { |
| 2133 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2134 | u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS, |
| 2135 | 200 + vif->bss_conf.beacon_int); |
| 2136 | u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS, |
| 2137 | 100 + vif->bss_conf.beacon_int); |
| 2138 | |
| 2139 | if (WARN_ON_ONCE(vif->bss_conf.assoc)) |
| 2140 | return; |
| 2141 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2142 | /* |
| 2143 | * iwl_mvm_protect_session() reads directly from the device |
| 2144 | * (the system time), so make sure it is available. |
| 2145 | */ |
| 2146 | if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PREPARE_TX)) |
| 2147 | return; |
| 2148 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2149 | mutex_lock(&mvm->mutex); |
| 2150 | /* Try really hard to protect the session and hear a beacon */ |
Johannes Berg | 016d27e | 2013-05-03 11:16:15 +0200 | [diff] [blame] | 2151 | iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2152 | mutex_unlock(&mvm->mutex); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2153 | |
| 2154 | iwl_mvm_unref(mvm, IWL_MVM_REF_PREPARE_TX); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2155 | } |
| 2156 | |
Arik Nemtsov | 07ecd89 | 2014-05-20 18:16:42 +0300 | [diff] [blame] | 2157 | static void iwl_mvm_mac_mgd_protect_tdls_discover(struct ieee80211_hw *hw, |
| 2158 | struct ieee80211_vif *vif) |
| 2159 | { |
| 2160 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2161 | u32 duration = 2 * vif->bss_conf.dtim_period * vif->bss_conf.beacon_int; |
| 2162 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2163 | /* |
| 2164 | * iwl_mvm_protect_session() reads directly from the device |
| 2165 | * (the system time), so make sure it is available. |
| 2166 | */ |
| 2167 | if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PROTECT_TDLS)) |
| 2168 | return; |
| 2169 | |
Arik Nemtsov | 07ecd89 | 2014-05-20 18:16:42 +0300 | [diff] [blame] | 2170 | mutex_lock(&mvm->mutex); |
| 2171 | /* Protect the session to hear the TDLS setup response on the channel */ |
| 2172 | iwl_mvm_protect_session(mvm, vif, duration, duration, 100); |
| 2173 | mutex_unlock(&mvm->mutex); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2174 | |
| 2175 | iwl_mvm_unref(mvm, IWL_MVM_REF_PROTECT_TDLS); |
Arik Nemtsov | 07ecd89 | 2014-05-20 18:16:42 +0300 | [diff] [blame] | 2176 | } |
| 2177 | |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2178 | static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw, |
| 2179 | struct ieee80211_vif *vif, |
| 2180 | struct cfg80211_sched_scan_request *req, |
David Spinadel | 633e271 | 2014-02-06 16:15:23 +0200 | [diff] [blame] | 2181 | struct ieee80211_scan_ies *ies) |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2182 | { |
| 2183 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2184 | int ret; |
| 2185 | |
Eliad Peller | 4660dfb | 2014-06-22 18:15:59 +0300 | [diff] [blame] | 2186 | ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_OS); |
| 2187 | if (ret) |
| 2188 | return ret; |
| 2189 | |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2190 | mutex_lock(&mvm->mutex); |
| 2191 | |
David Spinadel | b538b8c | 2014-05-13 14:29:36 +0300 | [diff] [blame] | 2192 | if (!iwl_mvm_is_idle(mvm)) { |
David Spinadel | bd5e474 | 2014-04-24 13:15:29 +0300 | [diff] [blame] | 2193 | ret = -EBUSY; |
| 2194 | goto out; |
| 2195 | } |
| 2196 | |
Eliad Peller | 4660dfb | 2014-06-22 18:15:59 +0300 | [diff] [blame] | 2197 | if (mvm->scan_status != IWL_MVM_SCAN_NONE) { |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2198 | ret = -EBUSY; |
| 2199 | goto out; |
| 2200 | } |
| 2201 | |
| 2202 | mvm->scan_status = IWL_MVM_SCAN_SCHED; |
| 2203 | |
David Spinadel | fb98be5 | 2014-05-04 12:51:10 +0300 | [diff] [blame] | 2204 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)) { |
| 2205 | ret = iwl_mvm_config_sched_scan(mvm, vif, req, ies); |
| 2206 | if (ret) |
| 2207 | goto err; |
| 2208 | } |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2209 | |
| 2210 | ret = iwl_mvm_config_sched_scan_profiles(mvm, req); |
| 2211 | if (ret) |
| 2212 | goto err; |
| 2213 | |
David Spinadel | fb98be5 | 2014-05-04 12:51:10 +0300 | [diff] [blame] | 2214 | if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN) |
| 2215 | ret = iwl_mvm_unified_sched_scan_lmac(mvm, vif, req, ies); |
| 2216 | else |
| 2217 | ret = iwl_mvm_sched_scan_start(mvm, req); |
| 2218 | |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2219 | if (!ret) |
| 2220 | goto out; |
| 2221 | err: |
| 2222 | mvm->scan_status = IWL_MVM_SCAN_NONE; |
| 2223 | out: |
| 2224 | mutex_unlock(&mvm->mutex); |
| 2225 | return ret; |
| 2226 | } |
| 2227 | |
Johannes Berg | 37e3308 | 2014-02-17 10:48:17 +0100 | [diff] [blame] | 2228 | static int iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw, |
| 2229 | struct ieee80211_vif *vif) |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2230 | { |
| 2231 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Arik Nemtsov | 33ea27f | 2014-02-10 15:34:29 +0200 | [diff] [blame] | 2232 | int ret; |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2233 | |
| 2234 | mutex_lock(&mvm->mutex); |
David Spinadel | fb98be5 | 2014-05-04 12:51:10 +0300 | [diff] [blame] | 2235 | ret = iwl_mvm_scan_offload_stop(mvm, false); |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2236 | mutex_unlock(&mvm->mutex); |
Arik Nemtsov | 33ea27f | 2014-02-10 15:34:29 +0200 | [diff] [blame] | 2237 | iwl_mvm_wait_for_async_handlers(mvm); |
Johannes Berg | 37e3308 | 2014-02-17 10:48:17 +0100 | [diff] [blame] | 2238 | |
Arik Nemtsov | 33ea27f | 2014-02-10 15:34:29 +0200 | [diff] [blame] | 2239 | return ret; |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2240 | } |
| 2241 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2242 | static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw, |
| 2243 | enum set_key_cmd cmd, |
| 2244 | struct ieee80211_vif *vif, |
| 2245 | struct ieee80211_sta *sta, |
| 2246 | struct ieee80211_key_conf *key) |
| 2247 | { |
| 2248 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2249 | int ret; |
| 2250 | |
| 2251 | if (iwlwifi_mod_params.sw_crypto) { |
| 2252 | IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n"); |
| 2253 | return -EOPNOTSUPP; |
| 2254 | } |
| 2255 | |
| 2256 | switch (key->cipher) { |
| 2257 | case WLAN_CIPHER_SUITE_TKIP: |
| 2258 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
| 2259 | /* fall-through */ |
| 2260 | case WLAN_CIPHER_SUITE_CCMP: |
| 2261 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 2262 | break; |
| 2263 | case WLAN_CIPHER_SUITE_AES_CMAC: |
| 2264 | WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE)); |
| 2265 | break; |
| 2266 | case WLAN_CIPHER_SUITE_WEP40: |
| 2267 | case WLAN_CIPHER_SUITE_WEP104: |
| 2268 | /* |
| 2269 | * Support for TX only, at least for now, so accept |
| 2270 | * the key and do nothing else. Then mac80211 will |
| 2271 | * pass it for TX but we don't have to use it for RX. |
| 2272 | */ |
| 2273 | return 0; |
| 2274 | default: |
Max Stepanov | e36e543 | 2013-08-27 19:56:13 +0300 | [diff] [blame] | 2275 | /* currently FW supports only one optional cipher scheme */ |
| 2276 | if (hw->n_cipher_schemes && |
| 2277 | hw->cipher_schemes->cipher == key->cipher) |
| 2278 | key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE; |
| 2279 | else |
| 2280 | return -EOPNOTSUPP; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2281 | } |
| 2282 | |
| 2283 | mutex_lock(&mvm->mutex); |
| 2284 | |
| 2285 | switch (cmd) { |
| 2286 | case SET_KEY: |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2287 | if ((vif->type == NL80211_IFTYPE_ADHOC || |
| 2288 | vif->type == NL80211_IFTYPE_AP) && !sta) { |
| 2289 | /* |
| 2290 | * GTK on AP interface is a TX-only key, return 0; |
| 2291 | * on IBSS they're per-station and because we're lazy |
| 2292 | * we don't support them for RX, so do the same. |
| 2293 | */ |
Johannes Berg | 6caffd4 | 2013-03-06 13:15:21 +0100 | [diff] [blame] | 2294 | ret = 0; |
| 2295 | key->hw_key_idx = STA_KEY_IDX_INVALID; |
| 2296 | break; |
| 2297 | } |
| 2298 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2299 | IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n"); |
| 2300 | ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, false); |
| 2301 | if (ret) { |
| 2302 | IWL_WARN(mvm, "set key failed\n"); |
| 2303 | /* |
| 2304 | * can't add key for RX, but we don't need it |
| 2305 | * in the device for TX so still return 0 |
| 2306 | */ |
Johannes Berg | 6caffd4 | 2013-03-06 13:15:21 +0100 | [diff] [blame] | 2307 | key->hw_key_idx = STA_KEY_IDX_INVALID; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2308 | ret = 0; |
| 2309 | } |
| 2310 | |
| 2311 | break; |
| 2312 | case DISABLE_KEY: |
Johannes Berg | 6caffd4 | 2013-03-06 13:15:21 +0100 | [diff] [blame] | 2313 | if (key->hw_key_idx == STA_KEY_IDX_INVALID) { |
| 2314 | ret = 0; |
| 2315 | break; |
| 2316 | } |
| 2317 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2318 | IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n"); |
| 2319 | ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key); |
| 2320 | break; |
| 2321 | default: |
| 2322 | ret = -EINVAL; |
| 2323 | } |
| 2324 | |
| 2325 | mutex_unlock(&mvm->mutex); |
| 2326 | return ret; |
| 2327 | } |
| 2328 | |
| 2329 | static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw, |
| 2330 | struct ieee80211_vif *vif, |
| 2331 | struct ieee80211_key_conf *keyconf, |
| 2332 | struct ieee80211_sta *sta, |
| 2333 | u32 iv32, u16 *phase1key) |
| 2334 | { |
| 2335 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2336 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2337 | if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID) |
| 2338 | return; |
| 2339 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2340 | iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key); |
| 2341 | } |
| 2342 | |
| 2343 | |
Ariej Marjieh | b112889 | 2014-07-16 21:11:12 +0300 | [diff] [blame] | 2344 | static bool iwl_mvm_rx_aux_roc(struct iwl_notif_wait_data *notif_wait, |
| 2345 | struct iwl_rx_packet *pkt, void *data) |
| 2346 | { |
| 2347 | struct iwl_mvm *mvm = |
| 2348 | container_of(notif_wait, struct iwl_mvm, notif_wait); |
| 2349 | struct iwl_hs20_roc_res *resp; |
| 2350 | int resp_len = iwl_rx_packet_payload_len(pkt); |
| 2351 | struct iwl_mvm_time_event_data *te_data = data; |
| 2352 | |
| 2353 | if (WARN_ON(pkt->hdr.cmd != HOT_SPOT_CMD)) |
| 2354 | return true; |
| 2355 | |
| 2356 | if (WARN_ON_ONCE(resp_len != sizeof(*resp))) { |
| 2357 | IWL_ERR(mvm, "Invalid HOT_SPOT_CMD response\n"); |
| 2358 | return true; |
| 2359 | } |
| 2360 | |
| 2361 | resp = (void *)pkt->data; |
| 2362 | |
| 2363 | IWL_DEBUG_TE(mvm, |
| 2364 | "Aux ROC: Recieved response from ucode: status=%d uid=%d\n", |
| 2365 | resp->status, resp->event_unique_id); |
| 2366 | |
| 2367 | te_data->uid = le32_to_cpu(resp->event_unique_id); |
| 2368 | IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n", |
| 2369 | te_data->uid); |
| 2370 | |
| 2371 | spin_lock_bh(&mvm->time_event_lock); |
| 2372 | list_add_tail(&te_data->list, &mvm->aux_roc_te_list); |
| 2373 | spin_unlock_bh(&mvm->time_event_lock); |
| 2374 | |
| 2375 | return true; |
| 2376 | } |
| 2377 | |
| 2378 | #define AUX_ROC_MAX_DELAY_ON_CHANNEL 5000 |
| 2379 | static int iwl_mvm_send_aux_roc_cmd(struct iwl_mvm *mvm, |
| 2380 | struct ieee80211_channel *channel, |
| 2381 | struct ieee80211_vif *vif, |
| 2382 | int duration) |
| 2383 | { |
| 2384 | int res, time_reg = DEVICE_SYSTEM_TIME_REG; |
| 2385 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 2386 | struct iwl_mvm_time_event_data *te_data = &mvmvif->hs_time_event_data; |
| 2387 | static const u8 time_event_response[] = { HOT_SPOT_CMD }; |
| 2388 | struct iwl_notification_wait wait_time_event; |
| 2389 | struct iwl_hs20_roc_req aux_roc_req = { |
| 2390 | .action = cpu_to_le32(FW_CTXT_ACTION_ADD), |
| 2391 | .id_and_color = |
| 2392 | cpu_to_le32(FW_CMD_ID_AND_COLOR(MAC_INDEX_AUX, 0)), |
| 2393 | .sta_id_and_color = cpu_to_le32(mvm->aux_sta.sta_id), |
| 2394 | /* Set the channel info data */ |
| 2395 | .channel_info.band = (channel->band == IEEE80211_BAND_2GHZ) ? |
| 2396 | PHY_BAND_24 : PHY_BAND_5, |
| 2397 | .channel_info.channel = channel->hw_value, |
| 2398 | .channel_info.width = PHY_VHT_CHANNEL_MODE20, |
| 2399 | /* Set the time and duration */ |
| 2400 | .apply_time = cpu_to_le32(iwl_read_prph(mvm->trans, time_reg)), |
| 2401 | .apply_time_max_delay = |
| 2402 | cpu_to_le32(MSEC_TO_TU(AUX_ROC_MAX_DELAY_ON_CHANNEL)), |
| 2403 | .duration = cpu_to_le32(MSEC_TO_TU(duration)), |
| 2404 | }; |
| 2405 | |
| 2406 | /* Set the node address */ |
| 2407 | memcpy(aux_roc_req.node_addr, vif->addr, ETH_ALEN); |
| 2408 | |
| 2409 | te_data->vif = vif; |
| 2410 | te_data->duration = duration; |
| 2411 | te_data->id = HOT_SPOT_CMD; |
| 2412 | |
| 2413 | lockdep_assert_held(&mvm->mutex); |
| 2414 | |
| 2415 | spin_lock_bh(&mvm->time_event_lock); |
| 2416 | list_add_tail(&te_data->list, &mvm->time_event_list); |
| 2417 | spin_unlock_bh(&mvm->time_event_lock); |
| 2418 | |
| 2419 | /* |
| 2420 | * Use a notification wait, which really just processes the |
| 2421 | * command response and doesn't wait for anything, in order |
| 2422 | * to be able to process the response and get the UID inside |
| 2423 | * the RX path. Using CMD_WANT_SKB doesn't work because it |
| 2424 | * stores the buffer and then wakes up this thread, by which |
| 2425 | * time another notification (that the time event started) |
| 2426 | * might already be processed unsuccessfully. |
| 2427 | */ |
| 2428 | iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event, |
| 2429 | time_event_response, |
| 2430 | ARRAY_SIZE(time_event_response), |
| 2431 | iwl_mvm_rx_aux_roc, te_data); |
| 2432 | |
| 2433 | res = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0, sizeof(aux_roc_req), |
| 2434 | &aux_roc_req); |
| 2435 | |
| 2436 | if (res) { |
| 2437 | IWL_ERR(mvm, "Couldn't send HOT_SPOT_CMD: %d\n", res); |
| 2438 | iwl_remove_notification(&mvm->notif_wait, &wait_time_event); |
| 2439 | goto out_clear_te; |
| 2440 | } |
| 2441 | |
| 2442 | /* No need to wait for anything, so just pass 1 (0 isn't valid) */ |
| 2443 | res = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1); |
| 2444 | /* should never fail */ |
| 2445 | WARN_ON_ONCE(res); |
| 2446 | |
| 2447 | if (res) { |
| 2448 | out_clear_te: |
| 2449 | spin_lock_bh(&mvm->time_event_lock); |
| 2450 | iwl_mvm_te_clear_data(mvm, te_data); |
| 2451 | spin_unlock_bh(&mvm->time_event_lock); |
| 2452 | } |
| 2453 | |
| 2454 | return res; |
| 2455 | } |
| 2456 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2457 | static int iwl_mvm_roc(struct ieee80211_hw *hw, |
| 2458 | struct ieee80211_vif *vif, |
| 2459 | struct ieee80211_channel *channel, |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2460 | int duration, |
| 2461 | enum ieee80211_roc_type type) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2462 | { |
| 2463 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 2464 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2465 | struct cfg80211_chan_def chandef; |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 2466 | struct iwl_mvm_phy_ctxt *phy_ctxt; |
| 2467 | int ret, i; |
| 2468 | |
| 2469 | IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value, |
| 2470 | duration, type); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2471 | |
Ariej Marjieh | b112889 | 2014-07-16 21:11:12 +0300 | [diff] [blame] | 2472 | switch (vif->type) { |
| 2473 | case NL80211_IFTYPE_STATION: |
| 2474 | /* Use aux roc framework (HS20) */ |
| 2475 | ret = iwl_mvm_send_aux_roc_cmd(mvm, channel, |
| 2476 | vif, duration); |
| 2477 | return ret; |
| 2478 | case NL80211_IFTYPE_P2P_DEVICE: |
| 2479 | /* handle below */ |
| 2480 | break; |
| 2481 | default: |
| 2482 | IWL_ERR(mvm, "vif isn't P2P_DEVICE: %d\n", vif->type); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2483 | return -EINVAL; |
| 2484 | } |
| 2485 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2486 | mutex_lock(&mvm->mutex); |
| 2487 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 2488 | for (i = 0; i < NUM_PHY_CTX; i++) { |
| 2489 | phy_ctxt = &mvm->phy_ctxts[i]; |
| 2490 | if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt) |
| 2491 | continue; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2492 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 2493 | if (phy_ctxt->ref && channel == phy_ctxt->channel) { |
| 2494 | /* |
| 2495 | * Unbind the P2P_DEVICE from the current PHY context, |
| 2496 | * and if the PHY context is not used remove it. |
| 2497 | */ |
| 2498 | ret = iwl_mvm_binding_remove_vif(mvm, vif); |
| 2499 | if (WARN(ret, "Failed unbinding P2P_DEVICE\n")) |
| 2500 | goto out_unlock; |
| 2501 | |
| 2502 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
| 2503 | |
| 2504 | /* Bind the P2P_DEVICE to the current PHY Context */ |
| 2505 | mvmvif->phy_ctxt = phy_ctxt; |
| 2506 | |
| 2507 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 2508 | if (WARN(ret, "Failed binding P2P_DEVICE\n")) |
| 2509 | goto out_unlock; |
| 2510 | |
| 2511 | iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt); |
| 2512 | goto schedule_time_event; |
| 2513 | } |
| 2514 | } |
| 2515 | |
| 2516 | /* Need to update the PHY context only if the ROC channel changed */ |
| 2517 | if (channel == mvmvif->phy_ctxt->channel) |
| 2518 | goto schedule_time_event; |
| 2519 | |
| 2520 | cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT); |
| 2521 | |
| 2522 | /* |
| 2523 | * Change the PHY context configuration as it is currently referenced |
| 2524 | * only by the P2P Device MAC |
| 2525 | */ |
| 2526 | if (mvmvif->phy_ctxt->ref == 1) { |
| 2527 | ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt, |
| 2528 | &chandef, 1, 1); |
| 2529 | if (ret) |
| 2530 | goto out_unlock; |
| 2531 | } else { |
| 2532 | /* |
| 2533 | * The PHY context is shared with other MACs. Need to remove the |
| 2534 | * P2P Device from the binding, allocate an new PHY context and |
| 2535 | * create a new binding |
| 2536 | */ |
| 2537 | phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); |
| 2538 | if (!phy_ctxt) { |
| 2539 | ret = -ENOSPC; |
| 2540 | goto out_unlock; |
| 2541 | } |
| 2542 | |
| 2543 | ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef, |
| 2544 | 1, 1); |
| 2545 | if (ret) { |
| 2546 | IWL_ERR(mvm, "Failed to change PHY context\n"); |
| 2547 | goto out_unlock; |
| 2548 | } |
| 2549 | |
| 2550 | /* Unbind the P2P_DEVICE from the current PHY context */ |
| 2551 | ret = iwl_mvm_binding_remove_vif(mvm, vif); |
| 2552 | if (WARN(ret, "Failed unbinding P2P_DEVICE\n")) |
| 2553 | goto out_unlock; |
| 2554 | |
| 2555 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
| 2556 | |
| 2557 | /* Bind the P2P_DEVICE to the new allocated PHY context */ |
| 2558 | mvmvif->phy_ctxt = phy_ctxt; |
| 2559 | |
| 2560 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 2561 | if (WARN(ret, "Failed binding P2P_DEVICE\n")) |
| 2562 | goto out_unlock; |
| 2563 | |
| 2564 | iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt); |
| 2565 | } |
| 2566 | |
| 2567 | schedule_time_event: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2568 | /* Schedule the time events */ |
Ilan Peer | e635c79 | 2013-02-13 11:05:18 +0200 | [diff] [blame] | 2569 | ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2570 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 2571 | out_unlock: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2572 | mutex_unlock(&mvm->mutex); |
| 2573 | IWL_DEBUG_MAC80211(mvm, "leave\n"); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2574 | return ret; |
| 2575 | } |
| 2576 | |
| 2577 | static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw) |
| 2578 | { |
| 2579 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2580 | |
| 2581 | IWL_DEBUG_MAC80211(mvm, "enter\n"); |
| 2582 | |
| 2583 | mutex_lock(&mvm->mutex); |
| 2584 | iwl_mvm_stop_p2p_roc(mvm); |
| 2585 | mutex_unlock(&mvm->mutex); |
| 2586 | |
| 2587 | IWL_DEBUG_MAC80211(mvm, "leave\n"); |
| 2588 | return 0; |
| 2589 | } |
| 2590 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2591 | static int __iwl_mvm_add_chanctx(struct iwl_mvm *mvm, |
| 2592 | struct ieee80211_chanctx_conf *ctx) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2593 | { |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 2594 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 2595 | struct iwl_mvm_phy_ctxt *phy_ctxt; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2596 | int ret; |
| 2597 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2598 | lockdep_assert_held(&mvm->mutex); |
| 2599 | |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 2600 | IWL_DEBUG_MAC80211(mvm, "Add channel context\n"); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 2601 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 2602 | phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); |
| 2603 | if (!phy_ctxt) { |
| 2604 | ret = -ENOSPC; |
| 2605 | goto out; |
| 2606 | } |
| 2607 | |
Eliad Peller | dcbc3e1 | 2013-10-31 14:31:25 +0200 | [diff] [blame] | 2608 | ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def, |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 2609 | ctx->rx_chains_static, |
| 2610 | ctx->rx_chains_dynamic); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 2611 | if (ret) { |
| 2612 | IWL_ERR(mvm, "Failed to add PHY context\n"); |
| 2613 | goto out; |
| 2614 | } |
| 2615 | |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 2616 | iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 2617 | *phy_ctxt_id = phy_ctxt->id; |
| 2618 | out: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2619 | return ret; |
| 2620 | } |
| 2621 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2622 | static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw, |
| 2623 | struct ieee80211_chanctx_conf *ctx) |
| 2624 | { |
| 2625 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2626 | int ret; |
| 2627 | |
| 2628 | mutex_lock(&mvm->mutex); |
| 2629 | ret = __iwl_mvm_add_chanctx(mvm, ctx); |
| 2630 | mutex_unlock(&mvm->mutex); |
| 2631 | |
| 2632 | return ret; |
| 2633 | } |
| 2634 | |
| 2635 | static void __iwl_mvm_remove_chanctx(struct iwl_mvm *mvm, |
| 2636 | struct ieee80211_chanctx_conf *ctx) |
| 2637 | { |
| 2638 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 2639 | struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id]; |
| 2640 | |
| 2641 | lockdep_assert_held(&mvm->mutex); |
| 2642 | |
| 2643 | iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt); |
| 2644 | } |
| 2645 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2646 | static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw, |
| 2647 | struct ieee80211_chanctx_conf *ctx) |
| 2648 | { |
| 2649 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2650 | |
| 2651 | mutex_lock(&mvm->mutex); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2652 | __iwl_mvm_remove_chanctx(mvm, ctx); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2653 | mutex_unlock(&mvm->mutex); |
| 2654 | } |
| 2655 | |
| 2656 | static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw, |
| 2657 | struct ieee80211_chanctx_conf *ctx, |
| 2658 | u32 changed) |
| 2659 | { |
| 2660 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 2661 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 2662 | 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] | 2663 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 2664 | if (WARN_ONCE((phy_ctxt->ref > 1) && |
| 2665 | (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH | |
| 2666 | IEEE80211_CHANCTX_CHANGE_RX_CHAINS | |
Arik Nemtsov | 2dceeda | 2013-12-29 17:57:53 +0200 | [diff] [blame] | 2667 | IEEE80211_CHANCTX_CHANGE_RADAR | |
| 2668 | IEEE80211_CHANCTX_CHANGE_MIN_WIDTH)), |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 2669 | "Cannot change PHY. Ref=%d, changed=0x%X\n", |
| 2670 | phy_ctxt->ref, changed)) |
| 2671 | return; |
| 2672 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2673 | mutex_lock(&mvm->mutex); |
Emmanuel Grumbach | 4d66449 | 2014-04-30 18:09:59 +0300 | [diff] [blame] | 2674 | iwl_mvm_bt_coex_vif_change(mvm); |
Eliad Peller | dcbc3e1 | 2013-10-31 14:31:25 +0200 | [diff] [blame] | 2675 | iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2676 | ctx->rx_chains_static, |
| 2677 | ctx->rx_chains_dynamic); |
| 2678 | mutex_unlock(&mvm->mutex); |
| 2679 | } |
| 2680 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2681 | static int __iwl_mvm_assign_vif_chanctx(struct iwl_mvm *mvm, |
| 2682 | struct ieee80211_vif *vif, |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2683 | struct ieee80211_chanctx_conf *ctx, |
| 2684 | bool switching_chanctx) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2685 | { |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 2686 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 2687 | 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] | 2688 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 2689 | int ret; |
| 2690 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2691 | lockdep_assert_held(&mvm->mutex); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2692 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 2693 | mvmvif->phy_ctxt = phy_ctxt; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2694 | |
| 2695 | switch (vif->type) { |
| 2696 | case NL80211_IFTYPE_AP: |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2697 | /* Unless it's a CSA flow we have nothing to do here */ |
| 2698 | if (vif->csa_active) { |
| 2699 | mvmvif->ap_ibss_active = true; |
| 2700 | break; |
| 2701 | } |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2702 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2703 | /* |
| 2704 | * 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] | 2705 | * (in bss_info_changed), similarly for IBSS. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2706 | */ |
| 2707 | ret = 0; |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2708 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2709 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2710 | case NL80211_IFTYPE_MONITOR: |
| 2711 | break; |
| 2712 | default: |
| 2713 | ret = -EINVAL; |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2714 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2715 | } |
| 2716 | |
| 2717 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 2718 | if (ret) |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2719 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2720 | |
| 2721 | /* |
Alexander Bondar | 92d8556 | 2013-10-23 11:50:34 +0200 | [diff] [blame] | 2722 | * Power state must be updated before quotas, |
| 2723 | * otherwise fw will complain. |
| 2724 | */ |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 2725 | iwl_mvm_power_update_mac(mvm); |
Alexander Bondar | 92d8556 | 2013-10-23 11:50:34 +0200 | [diff] [blame] | 2726 | |
| 2727 | /* Setting the quota at this stage is only required for monitor |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2728 | * interfaces. For the other types, the bss_info changed flow |
| 2729 | * will handle quota settings. |
| 2730 | */ |
| 2731 | if (vif->type == NL80211_IFTYPE_MONITOR) { |
Ilan Peer | 1e1391c | 2013-03-13 14:52:04 +0200 | [diff] [blame] | 2732 | mvmvif->monitor_active = true; |
Johannes Berg | 0166230 | 2014-06-06 15:18:45 +0200 | [diff] [blame] | 2733 | ret = iwl_mvm_update_quotas(mvm, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2734 | if (ret) |
| 2735 | goto out_remove_binding; |
| 2736 | } |
| 2737 | |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2738 | /* Handle binding during CSA */ |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2739 | if ((vif->type == NL80211_IFTYPE_AP) || |
| 2740 | (switching_chanctx && (vif->type == NL80211_IFTYPE_STATION))) { |
Johannes Berg | 0166230 | 2014-06-06 15:18:45 +0200 | [diff] [blame] | 2741 | iwl_mvm_update_quotas(mvm, NULL); |
Luciano Coelho | bca49d9 | 2014-05-13 17:33:38 +0300 | [diff] [blame] | 2742 | iwl_mvm_mac_ctxt_changed(mvm, vif, false); |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2743 | } |
| 2744 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2745 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2746 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2747 | out_remove_binding: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2748 | iwl_mvm_binding_remove_vif(mvm, vif); |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 2749 | iwl_mvm_power_update_mac(mvm); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2750 | out: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2751 | if (ret) |
| 2752 | mvmvif->phy_ctxt = NULL; |
| 2753 | return ret; |
| 2754 | } |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2755 | static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw, |
| 2756 | struct ieee80211_vif *vif, |
| 2757 | struct ieee80211_chanctx_conf *ctx) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2758 | { |
| 2759 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2760 | int ret; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2761 | |
| 2762 | mutex_lock(&mvm->mutex); |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2763 | ret = __iwl_mvm_assign_vif_chanctx(mvm, vif, ctx, false); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2764 | mutex_unlock(&mvm->mutex); |
| 2765 | |
| 2766 | return ret; |
| 2767 | } |
| 2768 | |
| 2769 | static void __iwl_mvm_unassign_vif_chanctx(struct iwl_mvm *mvm, |
| 2770 | struct ieee80211_vif *vif, |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2771 | struct ieee80211_chanctx_conf *ctx, |
| 2772 | bool switching_chanctx) |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2773 | { |
| 2774 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2775 | struct ieee80211_vif *disabled_vif = NULL; |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2776 | |
| 2777 | lockdep_assert_held(&mvm->mutex); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2778 | |
| 2779 | iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data); |
| 2780 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2781 | switch (vif->type) { |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2782 | case NL80211_IFTYPE_ADHOC: |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2783 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2784 | case NL80211_IFTYPE_MONITOR: |
Ilan Peer | 1e1391c | 2013-03-13 14:52:04 +0200 | [diff] [blame] | 2785 | mvmvif->monitor_active = false; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2786 | break; |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2787 | case NL80211_IFTYPE_AP: |
| 2788 | /* This part is triggered only during CSA */ |
| 2789 | if (!vif->csa_active || !mvmvif->ap_ibss_active) |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2790 | goto out; |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2791 | |
Andrei Otcheretianski | 003e5236 | 2014-05-25 17:24:22 +0300 | [diff] [blame] | 2792 | /* Set CS bit on all the stations */ |
| 2793 | iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, true); |
| 2794 | |
| 2795 | /* Save blocked iface, the timeout is set on the next beacon */ |
| 2796 | rcu_assign_pointer(mvm->csa_tx_blocked_vif, vif); |
| 2797 | |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2798 | mvmvif->ap_ibss_active = false; |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2799 | break; |
| 2800 | case NL80211_IFTYPE_STATION: |
| 2801 | if (!switching_chanctx) |
| 2802 | break; |
| 2803 | |
| 2804 | disabled_vif = vif; |
| 2805 | |
| 2806 | iwl_mvm_mac_ctxt_changed(mvm, vif, true); |
| 2807 | break; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2808 | default: |
| 2809 | break; |
| 2810 | } |
| 2811 | |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2812 | iwl_mvm_update_quotas(mvm, disabled_vif); |
Ilan Peer | 1e1391c | 2013-03-13 14:52:04 +0200 | [diff] [blame] | 2813 | iwl_mvm_binding_remove_vif(mvm, vif); |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 2814 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2815 | out: |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 2816 | mvmvif->phy_ctxt = NULL; |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 2817 | iwl_mvm_power_update_mac(mvm); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2818 | } |
| 2819 | |
| 2820 | static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw, |
| 2821 | struct ieee80211_vif *vif, |
| 2822 | struct ieee80211_chanctx_conf *ctx) |
| 2823 | { |
| 2824 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2825 | |
| 2826 | mutex_lock(&mvm->mutex); |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2827 | __iwl_mvm_unassign_vif_chanctx(mvm, vif, ctx, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2828 | mutex_unlock(&mvm->mutex); |
| 2829 | } |
| 2830 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2831 | static int iwl_mvm_switch_vif_chanctx(struct ieee80211_hw *hw, |
| 2832 | struct ieee80211_vif_chanctx_switch *vifs, |
| 2833 | int n_vifs, |
| 2834 | enum ieee80211_chanctx_switch_mode mode) |
| 2835 | { |
| 2836 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2837 | int ret; |
| 2838 | |
| 2839 | /* we only support SWAP_CONTEXTS and with a single-vif right now */ |
| 2840 | if (mode != CHANCTX_SWMODE_SWAP_CONTEXTS || n_vifs > 1) |
| 2841 | return -EOPNOTSUPP; |
| 2842 | |
| 2843 | mutex_lock(&mvm->mutex); |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2844 | __iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, true); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2845 | __iwl_mvm_remove_chanctx(mvm, vifs[0].old_ctx); |
| 2846 | |
| 2847 | ret = __iwl_mvm_add_chanctx(mvm, vifs[0].new_ctx); |
| 2848 | if (ret) { |
| 2849 | IWL_ERR(mvm, "failed to add new_ctx during channel switch\n"); |
| 2850 | goto out_reassign; |
| 2851 | } |
| 2852 | |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2853 | ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx, |
| 2854 | true); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2855 | if (ret) { |
| 2856 | IWL_ERR(mvm, |
| 2857 | "failed to assign new_ctx during channel switch\n"); |
| 2858 | goto out_remove; |
| 2859 | } |
| 2860 | |
Arik Nemtsov | f697267 | 2014-06-15 16:03:55 +0300 | [diff] [blame] | 2861 | /* we don't support TDLS during DCM - can be caused by channel switch */ |
| 2862 | if (iwl_mvm_phy_ctx_count(mvm) > 1) |
| 2863 | iwl_mvm_teardown_tdls_peers(mvm); |
| 2864 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2865 | goto out; |
| 2866 | |
| 2867 | out_remove: |
| 2868 | __iwl_mvm_remove_chanctx(mvm, vifs[0].new_ctx); |
| 2869 | |
| 2870 | out_reassign: |
| 2871 | ret = __iwl_mvm_add_chanctx(mvm, vifs[0].old_ctx); |
| 2872 | if (ret) { |
| 2873 | IWL_ERR(mvm, "failed to add old_ctx back after failure.\n"); |
| 2874 | goto out_restart; |
| 2875 | } |
| 2876 | |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 2877 | ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, |
| 2878 | true); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 2879 | if (ret) { |
| 2880 | IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n"); |
| 2881 | goto out_restart; |
| 2882 | } |
| 2883 | |
| 2884 | goto out; |
| 2885 | |
| 2886 | out_restart: |
| 2887 | /* things keep failing, better restart the hw */ |
| 2888 | iwl_mvm_nic_restart(mvm, false); |
| 2889 | |
| 2890 | out: |
| 2891 | mutex_unlock(&mvm->mutex); |
| 2892 | return ret; |
| 2893 | } |
| 2894 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2895 | static int iwl_mvm_set_tim(struct ieee80211_hw *hw, |
| 2896 | struct ieee80211_sta *sta, |
| 2897 | bool set) |
| 2898 | { |
| 2899 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2900 | struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv; |
| 2901 | |
| 2902 | if (!mvm_sta || !mvm_sta->vif) { |
| 2903 | IWL_ERR(mvm, "Station is not associated to a vif\n"); |
| 2904 | return -EINVAL; |
| 2905 | } |
| 2906 | |
| 2907 | return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif); |
| 2908 | } |
| 2909 | |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 2910 | #ifdef CONFIG_NL80211_TESTMODE |
| 2911 | static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = { |
| 2912 | [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 }, |
| 2913 | [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 }, |
Johannes Berg | f6c6ad42 | 2013-08-01 14:17:15 +0200 | [diff] [blame] | 2914 | [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 }, |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 2915 | }; |
| 2916 | |
| 2917 | static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm, |
| 2918 | struct ieee80211_vif *vif, |
| 2919 | void *data, int len) |
| 2920 | { |
| 2921 | struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1]; |
| 2922 | int err; |
| 2923 | u32 noa_duration; |
| 2924 | |
| 2925 | err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy); |
| 2926 | if (err) |
| 2927 | return err; |
| 2928 | |
| 2929 | if (!tb[IWL_MVM_TM_ATTR_CMD]) |
| 2930 | return -EINVAL; |
| 2931 | |
| 2932 | switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) { |
| 2933 | case IWL_MVM_TM_CMD_SET_NOA: |
| 2934 | if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p || |
| 2935 | !vif->bss_conf.enable_beacon || |
| 2936 | !tb[IWL_MVM_TM_ATTR_NOA_DURATION]) |
| 2937 | return -EINVAL; |
| 2938 | |
| 2939 | noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]); |
| 2940 | if (noa_duration >= vif->bss_conf.beacon_int) |
| 2941 | return -EINVAL; |
| 2942 | |
| 2943 | mvm->noa_duration = noa_duration; |
| 2944 | mvm->noa_vif = vif; |
| 2945 | |
Johannes Berg | 0166230 | 2014-06-06 15:18:45 +0200 | [diff] [blame] | 2946 | return iwl_mvm_update_quotas(mvm, NULL); |
Johannes Berg | f6c6ad42 | 2013-08-01 14:17:15 +0200 | [diff] [blame] | 2947 | case IWL_MVM_TM_CMD_SET_BEACON_FILTER: |
| 2948 | /* must be associated client vif - ignore authorized */ |
| 2949 | if (!vif || vif->type != NL80211_IFTYPE_STATION || |
| 2950 | !vif->bss_conf.assoc || !vif->bss_conf.dtim_period || |
| 2951 | !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]) |
| 2952 | return -EINVAL; |
| 2953 | |
| 2954 | if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])) |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 2955 | return iwl_mvm_enable_beacon_filter(mvm, vif, 0); |
| 2956 | return iwl_mvm_disable_beacon_filter(mvm, vif, 0); |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 2957 | } |
| 2958 | |
| 2959 | return -EOPNOTSUPP; |
| 2960 | } |
| 2961 | |
| 2962 | static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw, |
| 2963 | struct ieee80211_vif *vif, |
| 2964 | void *data, int len) |
| 2965 | { |
| 2966 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2967 | int err; |
| 2968 | |
| 2969 | mutex_lock(&mvm->mutex); |
| 2970 | err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len); |
| 2971 | mutex_unlock(&mvm->mutex); |
| 2972 | |
| 2973 | return err; |
| 2974 | } |
| 2975 | #endif |
| 2976 | |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2977 | static void iwl_mvm_channel_switch_beacon(struct ieee80211_hw *hw, |
| 2978 | struct ieee80211_vif *vif, |
| 2979 | struct cfg80211_chan_def *chandef) |
| 2980 | { |
| 2981 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 2982 | struct ieee80211_vif *csa_vif; |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2983 | |
| 2984 | mutex_lock(&mvm->mutex); |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 2985 | |
| 2986 | csa_vif = rcu_dereference_protected(mvm->csa_vif, |
| 2987 | lockdep_is_held(&mvm->mutex)); |
| 2988 | if (WARN(csa_vif && csa_vif->csa_active, |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2989 | "Another CSA is already in progress")) |
| 2990 | goto out_unlock; |
| 2991 | |
| 2992 | IWL_DEBUG_MAC80211(mvm, "CSA started to freq %d\n", |
| 2993 | chandef->center_freq1); |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 2994 | rcu_assign_pointer(mvm->csa_vif, vif); |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 2995 | |
| 2996 | out_unlock: |
| 2997 | mutex_unlock(&mvm->mutex); |
| 2998 | } |
| 2999 | |
Emmanuel Grumbach | c5b0e7c | 2014-03-24 12:08:53 +0200 | [diff] [blame] | 3000 | static void iwl_mvm_mac_flush(struct ieee80211_hw *hw, |
| 3001 | struct ieee80211_vif *vif, u32 queues, bool drop) |
| 3002 | { |
| 3003 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3004 | struct iwl_mvm_vif *mvmvif; |
| 3005 | struct iwl_mvm_sta *mvmsta; |
| 3006 | |
| 3007 | if (!vif || vif->type != NL80211_IFTYPE_STATION) |
| 3008 | return; |
| 3009 | |
| 3010 | mutex_lock(&mvm->mutex); |
| 3011 | mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 3012 | mvmsta = iwl_mvm_sta_from_staid_protected(mvm, mvmvif->ap_sta_id); |
| 3013 | |
| 3014 | if (WARN_ON_ONCE(!mvmsta)) |
| 3015 | goto done; |
| 3016 | |
| 3017 | if (drop) { |
| 3018 | if (iwl_mvm_flush_tx_path(mvm, mvmsta->tfd_queue_msk, true)) |
| 3019 | IWL_ERR(mvm, "flush request fail\n"); |
| 3020 | } else { |
| 3021 | iwl_trans_wait_tx_queue_empty(mvm->trans, |
| 3022 | mvmsta->tfd_queue_msk); |
| 3023 | } |
| 3024 | done: |
| 3025 | mutex_unlock(&mvm->mutex); |
| 3026 | } |
| 3027 | |
Johannes Berg | e520926 | 2014-01-20 23:38:59 +0100 | [diff] [blame] | 3028 | const struct ieee80211_ops iwl_mvm_hw_ops = { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3029 | .tx = iwl_mvm_mac_tx, |
| 3030 | .ampdu_action = iwl_mvm_mac_ampdu_action, |
| 3031 | .start = iwl_mvm_mac_start, |
| 3032 | .restart_complete = iwl_mvm_mac_restart_complete, |
| 3033 | .stop = iwl_mvm_mac_stop, |
| 3034 | .add_interface = iwl_mvm_mac_add_interface, |
| 3035 | .remove_interface = iwl_mvm_mac_remove_interface, |
| 3036 | .config = iwl_mvm_mac_config, |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 3037 | .prepare_multicast = iwl_mvm_prepare_multicast, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3038 | .configure_filter = iwl_mvm_configure_filter, |
| 3039 | .bss_info_changed = iwl_mvm_bss_info_changed, |
| 3040 | .hw_scan = iwl_mvm_mac_hw_scan, |
| 3041 | .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan, |
Johannes Berg | 1ddbbb0 | 2013-12-04 22:39:17 +0100 | [diff] [blame] | 3042 | .sta_pre_rcu_remove = iwl_mvm_sta_pre_rcu_remove, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3043 | .sta_state = iwl_mvm_mac_sta_state, |
| 3044 | .sta_notify = iwl_mvm_mac_sta_notify, |
| 3045 | .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames, |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 3046 | .release_buffered_frames = iwl_mvm_mac_release_buffered_frames, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3047 | .set_rts_threshold = iwl_mvm_mac_set_rts_threshold, |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 3048 | .sta_rc_update = iwl_mvm_sta_rc_update, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3049 | .conf_tx = iwl_mvm_mac_conf_tx, |
| 3050 | .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx, |
Arik Nemtsov | 07ecd89 | 2014-05-20 18:16:42 +0300 | [diff] [blame] | 3051 | .mgd_protect_tdls_discover = iwl_mvm_mac_mgd_protect_tdls_discover, |
Emmanuel Grumbach | c5b0e7c | 2014-03-24 12:08:53 +0200 | [diff] [blame] | 3052 | .flush = iwl_mvm_mac_flush, |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 3053 | .sched_scan_start = iwl_mvm_mac_sched_scan_start, |
| 3054 | .sched_scan_stop = iwl_mvm_mac_sched_scan_stop, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3055 | .set_key = iwl_mvm_mac_set_key, |
| 3056 | .update_tkip_key = iwl_mvm_mac_update_tkip_key, |
| 3057 | .remain_on_channel = iwl_mvm_roc, |
| 3058 | .cancel_remain_on_channel = iwl_mvm_cancel_roc, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3059 | .add_chanctx = iwl_mvm_add_chanctx, |
| 3060 | .remove_chanctx = iwl_mvm_remove_chanctx, |
| 3061 | .change_chanctx = iwl_mvm_change_chanctx, |
| 3062 | .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx, |
| 3063 | .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx, |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3064 | .switch_vif_chanctx = iwl_mvm_switch_vif_chanctx, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3065 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 3066 | .start_ap = iwl_mvm_start_ap_ibss, |
| 3067 | .stop_ap = iwl_mvm_stop_ap_ibss, |
| 3068 | .join_ibss = iwl_mvm_start_ap_ibss, |
| 3069 | .leave_ibss = iwl_mvm_stop_ap_ibss, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3070 | |
| 3071 | .set_tim = iwl_mvm_set_tim, |
| 3072 | |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3073 | .channel_switch_beacon = iwl_mvm_channel_switch_beacon, |
| 3074 | |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 3075 | CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd) |
| 3076 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3077 | #ifdef CONFIG_PM_SLEEP |
| 3078 | /* look at d3.c */ |
| 3079 | .suspend = iwl_mvm_suspend, |
| 3080 | .resume = iwl_mvm_resume, |
| 3081 | .set_wakeup = iwl_mvm_set_wakeup, |
| 3082 | .set_rekey_data = iwl_mvm_set_rekey_data, |
| 3083 | #if IS_ENABLED(CONFIG_IPV6) |
| 3084 | .ipv6_addr_change = iwl_mvm_ipv6_addr_change, |
| 3085 | #endif |
| 3086 | .set_default_unicast_key = iwl_mvm_set_default_unicast_key, |
| 3087 | #endif |
| 3088 | }; |