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