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 | aadede6 | 2014-10-09 17:01:36 +0200 | [diff] [blame] | 72 | #include <linux/devcoredump.h> |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 73 | #include <net/mac80211.h> |
Emmanuel Grumbach | 7b1dd04 | 2014-02-04 15:32:43 +0200 | [diff] [blame] | 74 | #include <net/ieee80211_radiotap.h> |
Johannes Berg | f0c2646 | 2013-01-22 20:41:58 +0100 | [diff] [blame] | 75 | #include <net/tcp.h> |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 76 | |
| 77 | #include "iwl-op-mode.h" |
| 78 | #include "iwl-io.h" |
| 79 | #include "mvm.h" |
| 80 | #include "sta.h" |
| 81 | #include "time-event.h" |
| 82 | #include "iwl-eeprom-parse.h" |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 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" |
Eran Harary | 363039b | 2014-12-02 15:19:22 +0200 | [diff] [blame] | 87 | #include "iwl-csr.h" |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 88 | #include "iwl-nvm-parse.h" |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 89 | |
| 90 | static const struct ieee80211_iface_limit iwl_mvm_limits[] = { |
| 91 | { |
| 92 | .max = 1, |
Ilan Peer | 8eb3871 | 2013-06-01 20:17:18 +0300 | [diff] [blame] | 93 | .types = BIT(NL80211_IFTYPE_STATION), |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 94 | }, |
Johannes Berg | 3c15a0f | 2013-05-31 10:17:19 +0200 | [diff] [blame] | 95 | { |
| 96 | .max = 1, |
Ilan Peer | 8eb3871 | 2013-06-01 20:17:18 +0300 | [diff] [blame] | 97 | .types = BIT(NL80211_IFTYPE_AP) | |
| 98 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
Johannes Berg | 3c15a0f | 2013-05-31 10:17:19 +0200 | [diff] [blame] | 99 | BIT(NL80211_IFTYPE_P2P_GO), |
| 100 | }, |
| 101 | { |
| 102 | .max = 1, |
| 103 | .types = BIT(NL80211_IFTYPE_P2P_DEVICE), |
| 104 | }, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = { |
| 108 | { |
Emmanuel Grumbach | 2624a5c | 2014-12-16 13:02:03 +0200 | [diff] [blame] | 109 | .num_different_channels = 2, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 110 | .max_interfaces = 3, |
| 111 | .limits = iwl_mvm_limits, |
| 112 | .n_limits = ARRAY_SIZE(iwl_mvm_limits), |
| 113 | }, |
| 114 | }; |
| 115 | |
Johannes Berg | f0c2646 | 2013-01-22 20:41:58 +0100 | [diff] [blame] | 116 | #ifdef CONFIG_PM_SLEEP |
| 117 | static const struct nl80211_wowlan_tcp_data_token_feature |
| 118 | iwl_mvm_wowlan_tcp_token_feature = { |
| 119 | .min_len = 0, |
| 120 | .max_len = 255, |
| 121 | .bufsize = IWL_WOWLAN_REMOTE_WAKE_MAX_TOKENS, |
| 122 | }; |
| 123 | |
| 124 | static const struct wiphy_wowlan_tcp_support iwl_mvm_wowlan_tcp_support = { |
| 125 | .tok = &iwl_mvm_wowlan_tcp_token_feature, |
| 126 | .data_payload_max = IWL_WOWLAN_TCP_MAX_PACKET_LEN - |
| 127 | sizeof(struct ethhdr) - |
| 128 | sizeof(struct iphdr) - |
| 129 | sizeof(struct tcphdr), |
| 130 | .data_interval_max = 65535, /* __le16 in API */ |
| 131 | .wake_payload_max = IWL_WOWLAN_REMOTE_WAKE_MAX_PACKET_LEN - |
| 132 | sizeof(struct ethhdr) - |
| 133 | sizeof(struct iphdr) - |
| 134 | sizeof(struct tcphdr), |
| 135 | .seq = true, |
| 136 | }; |
| 137 | #endif |
| 138 | |
Eliad Peller | 7773692 | 2014-01-14 12:35:49 +0200 | [diff] [blame] | 139 | #ifdef CONFIG_IWLWIFI_BCAST_FILTERING |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 140 | /* |
| 141 | * Use the reserved field to indicate magic values. |
| 142 | * these values will only be used internally by the driver, |
| 143 | * and won't make it to the fw (reserved will be 0). |
| 144 | * BC_FILTER_MAGIC_IP - configure the val of this attribute to |
| 145 | * be the vif's ip address. in case there is not a single |
| 146 | * ip address (0, or more than 1), this attribute will |
| 147 | * be skipped. |
| 148 | * BC_FILTER_MAGIC_MAC - set the val of this attribute to |
| 149 | * the LSB bytes of the vif's mac address |
| 150 | */ |
| 151 | enum { |
| 152 | BC_FILTER_MAGIC_NONE = 0, |
| 153 | BC_FILTER_MAGIC_IP, |
| 154 | BC_FILTER_MAGIC_MAC, |
| 155 | }; |
| 156 | |
Eliad Peller | 7773692 | 2014-01-14 12:35:49 +0200 | [diff] [blame] | 157 | static const struct iwl_fw_bcast_filter iwl_mvm_default_bcast_filters[] = { |
| 158 | { |
| 159 | /* arp */ |
| 160 | .discard = 0, |
| 161 | .frame_type = BCAST_FILTER_FRAME_TYPE_ALL, |
| 162 | .attrs = { |
| 163 | { |
| 164 | /* frame type - arp, hw type - ethernet */ |
| 165 | .offset_type = |
| 166 | BCAST_FILTER_OFFSET_PAYLOAD_START, |
| 167 | .offset = sizeof(rfc1042_header), |
| 168 | .val = cpu_to_be32(0x08060001), |
| 169 | .mask = cpu_to_be32(0xffffffff), |
| 170 | }, |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 171 | { |
| 172 | /* arp dest ip */ |
| 173 | .offset_type = |
| 174 | BCAST_FILTER_OFFSET_PAYLOAD_START, |
| 175 | .offset = sizeof(rfc1042_header) + 2 + |
| 176 | sizeof(struct arphdr) + |
| 177 | ETH_ALEN + sizeof(__be32) + |
| 178 | ETH_ALEN, |
| 179 | .mask = cpu_to_be32(0xffffffff), |
| 180 | /* mark it as special field */ |
| 181 | .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_IP), |
| 182 | }, |
| 183 | }, |
| 184 | }, |
| 185 | { |
| 186 | /* dhcp offer bcast */ |
| 187 | .discard = 0, |
| 188 | .frame_type = BCAST_FILTER_FRAME_TYPE_IPV4, |
| 189 | .attrs = { |
| 190 | { |
| 191 | /* udp dest port - 68 (bootp client)*/ |
| 192 | .offset_type = BCAST_FILTER_OFFSET_IP_END, |
| 193 | .offset = offsetof(struct udphdr, dest), |
| 194 | .val = cpu_to_be32(0x00440000), |
| 195 | .mask = cpu_to_be32(0xffff0000), |
| 196 | }, |
| 197 | { |
| 198 | /* dhcp - lsb bytes of client hw address */ |
| 199 | .offset_type = BCAST_FILTER_OFFSET_IP_END, |
| 200 | .offset = 38, |
| 201 | .mask = cpu_to_be32(0xffffffff), |
| 202 | /* mark it as special field */ |
| 203 | .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_MAC), |
| 204 | }, |
Eliad Peller | 7773692 | 2014-01-14 12:35:49 +0200 | [diff] [blame] | 205 | }, |
| 206 | }, |
| 207 | /* last filter must be empty */ |
| 208 | {}, |
| 209 | }; |
| 210 | #endif |
| 211 | |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 212 | void iwl_mvm_ref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type) |
| 213 | { |
Eliad Peller | 7bb426e | 2014-02-24 12:54:37 +0200 | [diff] [blame] | 214 | if (!iwl_mvm_is_d0i3_supported(mvm)) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 215 | return; |
| 216 | |
| 217 | IWL_DEBUG_RPM(mvm, "Take mvm reference - type %d\n", ref_type); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 218 | spin_lock_bh(&mvm->refs_lock); |
| 219 | mvm->refs[ref_type]++; |
| 220 | spin_unlock_bh(&mvm->refs_lock); |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 221 | iwl_trans_ref(mvm->trans); |
| 222 | } |
| 223 | |
| 224 | void iwl_mvm_unref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type) |
| 225 | { |
Eliad Peller | 7bb426e | 2014-02-24 12:54:37 +0200 | [diff] [blame] | 226 | if (!iwl_mvm_is_d0i3_supported(mvm)) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 227 | return; |
| 228 | |
| 229 | IWL_DEBUG_RPM(mvm, "Leave mvm reference - type %d\n", ref_type); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 230 | spin_lock_bh(&mvm->refs_lock); |
| 231 | WARN_ON(!mvm->refs[ref_type]--); |
| 232 | spin_unlock_bh(&mvm->refs_lock); |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 233 | iwl_trans_unref(mvm->trans); |
| 234 | } |
| 235 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 236 | static void iwl_mvm_unref_all_except(struct iwl_mvm *mvm, |
| 237 | enum iwl_mvm_ref_type except_ref) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 238 | { |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 239 | int i, j; |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 240 | |
Eliad Peller | 7bb426e | 2014-02-24 12:54:37 +0200 | [diff] [blame] | 241 | if (!iwl_mvm_is_d0i3_supported(mvm)) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 242 | return; |
| 243 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 244 | spin_lock_bh(&mvm->refs_lock); |
| 245 | for (i = 0; i < IWL_MVM_REF_COUNT; i++) { |
| 246 | if (except_ref == i || !mvm->refs[i]) |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 247 | continue; |
| 248 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 249 | IWL_DEBUG_RPM(mvm, "Cleanup: remove mvm ref type %d (%d)\n", |
| 250 | i, mvm->refs[i]); |
| 251 | for (j = 0; j < mvm->refs[i]; j++) |
| 252 | iwl_trans_unref(mvm->trans); |
| 253 | mvm->refs[i] = 0; |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 254 | } |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 255 | spin_unlock_bh(&mvm->refs_lock); |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 256 | } |
| 257 | |
Eliad Peller | f4cf868 | 2014-11-04 16:57:06 +0200 | [diff] [blame] | 258 | bool iwl_mvm_ref_taken(struct iwl_mvm *mvm) |
| 259 | { |
| 260 | int i; |
| 261 | bool taken = false; |
| 262 | |
| 263 | if (!iwl_mvm_is_d0i3_supported(mvm)) |
| 264 | return true; |
| 265 | |
| 266 | spin_lock_bh(&mvm->refs_lock); |
| 267 | for (i = 0; i < IWL_MVM_REF_COUNT; i++) { |
| 268 | if (mvm->refs[i]) { |
| 269 | taken = true; |
| 270 | break; |
| 271 | } |
| 272 | } |
| 273 | spin_unlock_bh(&mvm->refs_lock); |
| 274 | |
| 275 | return taken; |
| 276 | } |
| 277 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 278 | 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] | 279 | { |
| 280 | iwl_mvm_ref(mvm, ref_type); |
| 281 | |
| 282 | if (!wait_event_timeout(mvm->d0i3_exit_waitq, |
| 283 | !test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status), |
| 284 | HZ)) { |
| 285 | WARN_ON_ONCE(1); |
| 286 | iwl_mvm_unref(mvm, ref_type); |
| 287 | return -EIO; |
| 288 | } |
| 289 | |
| 290 | return 0; |
| 291 | } |
| 292 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 293 | static void iwl_mvm_reset_phy_ctxts(struct iwl_mvm *mvm) |
| 294 | { |
| 295 | int i; |
| 296 | |
| 297 | memset(mvm->phy_ctxts, 0, sizeof(mvm->phy_ctxts)); |
| 298 | for (i = 0; i < NUM_PHY_CTX; i++) { |
| 299 | mvm->phy_ctxts[i].id = i; |
| 300 | mvm->phy_ctxts[i].ref = 0; |
| 301 | } |
| 302 | } |
| 303 | |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 304 | struct ieee80211_regdomain *iwl_mvm_get_regdomain(struct wiphy *wiphy, |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 305 | const char *alpha2, |
Jonathan Doron | 47c8b15 | 2014-11-27 16:55:25 +0200 | [diff] [blame] | 306 | enum iwl_mcc_source src_id, |
| 307 | bool *changed) |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 308 | { |
| 309 | struct ieee80211_regdomain *regd = NULL; |
| 310 | struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); |
| 311 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 312 | struct iwl_mcc_update_resp *resp; |
| 313 | |
| 314 | IWL_DEBUG_LAR(mvm, "Getting regdomain data for %s from FW\n", alpha2); |
| 315 | |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 316 | lockdep_assert_held(&mvm->mutex); |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 317 | |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 318 | resp = iwl_mvm_update_mcc(mvm, alpha2, src_id); |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 319 | if (IS_ERR_OR_NULL(resp)) { |
| 320 | IWL_DEBUG_LAR(mvm, "Could not get update from FW %d\n", |
Nicholas Krause | b8c474d | 2015-05-23 20:53:21 -0400 | [diff] [blame] | 321 | PTR_ERR_OR_ZERO(resp)); |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 322 | goto out; |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 323 | } |
| 324 | |
Jonathan Doron | 47c8b15 | 2014-11-27 16:55:25 +0200 | [diff] [blame] | 325 | if (changed) |
| 326 | *changed = (resp->status == MCC_RESP_NEW_CHAN_PROFILE); |
| 327 | |
Arik Nemtsov | 162ee3c | 2014-06-10 11:25:35 +0300 | [diff] [blame] | 328 | regd = iwl_parse_nvm_mcc_info(mvm->trans->dev, mvm->cfg, |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 329 | __le32_to_cpu(resp->n_channels), |
| 330 | resp->channels, |
| 331 | __le16_to_cpu(resp->mcc)); |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 332 | /* Store the return source id */ |
| 333 | src_id = resp->source_id; |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 334 | kfree(resp); |
| 335 | if (IS_ERR_OR_NULL(regd)) { |
| 336 | IWL_DEBUG_LAR(mvm, "Could not get parse update from FW %d\n", |
Nicholas Krause | b8c474d | 2015-05-23 20:53:21 -0400 | [diff] [blame] | 337 | PTR_ERR_OR_ZERO(regd)); |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 338 | goto out; |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 339 | } |
| 340 | |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 341 | IWL_DEBUG_LAR(mvm, "setting alpha2 from FW to %s (0x%x, 0x%x) src=%d\n", |
| 342 | regd->alpha2, regd->alpha2[0], regd->alpha2[1], src_id); |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 343 | mvm->lar_regdom_set = true; |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 344 | mvm->mcc_src = src_id; |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 345 | |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 346 | out: |
Arik Nemtsov | 88931cc | 2014-03-05 12:26:15 +0200 | [diff] [blame] | 347 | return regd; |
| 348 | } |
| 349 | |
Jonathan Doron | 47c8b15 | 2014-11-27 16:55:25 +0200 | [diff] [blame] | 350 | void iwl_mvm_update_changed_regdom(struct iwl_mvm *mvm) |
| 351 | { |
| 352 | bool changed; |
| 353 | struct ieee80211_regdomain *regd; |
| 354 | |
| 355 | if (!iwl_mvm_is_lar_supported(mvm)) |
| 356 | return; |
| 357 | |
| 358 | regd = iwl_mvm_get_current_regdomain(mvm, &changed); |
| 359 | if (!IS_ERR_OR_NULL(regd)) { |
| 360 | /* only update the regulatory core if changed */ |
| 361 | if (changed) |
| 362 | regulatory_set_wiphy_regd(mvm->hw->wiphy, regd); |
| 363 | |
| 364 | kfree(regd); |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | struct ieee80211_regdomain *iwl_mvm_get_current_regdomain(struct iwl_mvm *mvm, |
| 369 | bool *changed) |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 370 | { |
| 371 | return iwl_mvm_get_regdomain(mvm->hw->wiphy, "ZZ", |
| 372 | iwl_mvm_is_wifi_mcc_supported(mvm) ? |
| 373 | MCC_SOURCE_GET_CURRENT : |
Jonathan Doron | 47c8b15 | 2014-11-27 16:55:25 +0200 | [diff] [blame] | 374 | MCC_SOURCE_OLD_FW, changed); |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | int iwl_mvm_init_fw_regd(struct iwl_mvm *mvm) |
| 378 | { |
| 379 | enum iwl_mcc_source used_src; |
| 380 | struct ieee80211_regdomain *regd; |
Arik Nemtsov | b6e160a | 2015-03-23 14:32:53 +0200 | [diff] [blame] | 381 | int ret; |
| 382 | bool changed; |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 383 | const struct ieee80211_regdomain *r = |
| 384 | rtnl_dereference(mvm->hw->wiphy->regd); |
| 385 | |
| 386 | if (!r) |
Arik Nemtsov | b6e160a | 2015-03-23 14:32:53 +0200 | [diff] [blame] | 387 | return -ENOENT; |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 388 | |
| 389 | /* save the last source in case we overwrite it below */ |
| 390 | used_src = mvm->mcc_src; |
| 391 | if (iwl_mvm_is_wifi_mcc_supported(mvm)) { |
| 392 | /* Notify the firmware we support wifi location updates */ |
Jonathan Doron | 47c8b15 | 2014-11-27 16:55:25 +0200 | [diff] [blame] | 393 | regd = iwl_mvm_get_current_regdomain(mvm, NULL); |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 394 | if (!IS_ERR_OR_NULL(regd)) |
| 395 | kfree(regd); |
| 396 | } |
| 397 | |
| 398 | /* Now set our last stored MCC and source */ |
Arik Nemtsov | b6e160a | 2015-03-23 14:32:53 +0200 | [diff] [blame] | 399 | regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, r->alpha2, used_src, |
| 400 | &changed); |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 401 | if (IS_ERR_OR_NULL(regd)) |
| 402 | return -EIO; |
| 403 | |
Arik Nemtsov | b6e160a | 2015-03-23 14:32:53 +0200 | [diff] [blame] | 404 | /* update cfg80211 if the regdomain was changed */ |
| 405 | if (changed) |
| 406 | ret = regulatory_set_wiphy_regd_sync_rtnl(mvm->hw->wiphy, regd); |
| 407 | else |
| 408 | ret = 0; |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 409 | |
Arik Nemtsov | b6e160a | 2015-03-23 14:32:53 +0200 | [diff] [blame] | 410 | kfree(regd); |
| 411 | return ret; |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 412 | } |
| 413 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 414 | int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm) |
| 415 | { |
| 416 | struct ieee80211_hw *hw = mvm->hw; |
Ilan Peer | 831e85f | 2013-02-07 17:09:09 +0200 | [diff] [blame] | 417 | int num_mac, ret, i; |
Johannes Berg | 5f4c02e | 2015-05-20 16:51:28 +0200 | [diff] [blame^] | 418 | static const u32 mvm_ciphers[] = { |
| 419 | WLAN_CIPHER_SUITE_WEP40, |
| 420 | WLAN_CIPHER_SUITE_WEP104, |
| 421 | WLAN_CIPHER_SUITE_TKIP, |
| 422 | WLAN_CIPHER_SUITE_CCMP, |
| 423 | }; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 424 | |
| 425 | /* Tell mac80211 our characteristics */ |
| 426 | hw->flags = IEEE80211_HW_SIGNAL_DBM | |
| 427 | IEEE80211_HW_SPECTRUM_MGMT | |
| 428 | IEEE80211_HW_REPORTS_TX_ACK_STATUS | |
| 429 | IEEE80211_HW_QUEUE_CONTROL | |
| 430 | IEEE80211_HW_WANT_MONITOR_VIF | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 431 | IEEE80211_HW_SUPPORTS_PS | |
| 432 | IEEE80211_HW_SUPPORTS_DYNAMIC_PS | |
Johannes Berg | d2931bb | 2013-02-05 18:10:04 +0100 | [diff] [blame] | 433 | IEEE80211_HW_AMPDU_AGGREGATION | |
Hila Gonen | d64048e | 2013-03-13 18:00:03 +0200 | [diff] [blame] | 434 | IEEE80211_HW_TIMING_BEACON_ONLY | |
Emmanuel Grumbach | 147fc9b | 2013-07-28 11:00:52 +0300 | [diff] [blame] | 435 | IEEE80211_HW_CONNECTION_MONITOR | |
Ido Yariv | b71d9c8 | 2014-07-23 09:31:14 -0400 | [diff] [blame] | 436 | IEEE80211_HW_CHANCTX_STA_CSA | |
Johannes Berg | 0d060384 | 2015-04-17 15:50:43 +0200 | [diff] [blame] | 437 | IEEE80211_HW_SUPPORT_FAST_XMIT | |
Ido Yariv | b71d9c8 | 2014-07-23 09:31:14 -0400 | [diff] [blame] | 438 | IEEE80211_HW_SUPPORTS_CLONED_SKBS; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 439 | |
Eytan Lifshitz | 19e737c | 2013-09-09 13:30:15 +0200 | [diff] [blame] | 440 | hw->queues = mvm->first_agg_queue; |
Ilan Peer | 398e8c6 | 2013-03-13 15:20:35 +0200 | [diff] [blame] | 441 | hw->offchannel_tx_hw_queue = IWL_MVM_OFFCHANNEL_QUEUE; |
Emmanuel Grumbach | 7b1dd04 | 2014-02-04 15:32:43 +0200 | [diff] [blame] | 442 | hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FEC | |
| 443 | IEEE80211_RADIOTAP_MCS_HAVE_STBC; |
Eyal Shapira | 339b308 | 2014-11-18 16:43:55 +0200 | [diff] [blame] | 444 | hw->radiotap_vht_details |= IEEE80211_RADIOTAP_VHT_KNOWN_STBC | |
| 445 | IEEE80211_RADIOTAP_VHT_KNOWN_BEAMFORMED; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 446 | hw->rate_control_algorithm = "iwl-mvm-rs"; |
Johannes Berg | 848955c | 2014-11-11 12:48:42 +0100 | [diff] [blame] | 447 | hw->uapsd_queues = IWL_MVM_UAPSD_QUEUES; |
| 448 | hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 449 | |
Johannes Berg | 5f4c02e | 2015-05-20 16:51:28 +0200 | [diff] [blame^] | 450 | BUILD_BUG_ON(ARRAY_SIZE(mvm->ciphers) < ARRAY_SIZE(mvm_ciphers) + 2); |
| 451 | memcpy(mvm->ciphers, mvm_ciphers, sizeof(mvm_ciphers)); |
| 452 | hw->wiphy->n_cipher_suites = ARRAY_SIZE(mvm_ciphers); |
| 453 | hw->wiphy->cipher_suites = mvm->ciphers; |
| 454 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 455 | /* |
| 456 | * Enable 11w if advertised by firmware and software crypto |
| 457 | * is not enabled (as the firmware will interpret some mgmt |
| 458 | * packets, so enabling it with software crypto isn't safe) |
| 459 | */ |
| 460 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP && |
Johannes Berg | 5f4c02e | 2015-05-20 16:51:28 +0200 | [diff] [blame^] | 461 | !iwlwifi_mod_params.sw_crypto) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 462 | hw->flags |= IEEE80211_HW_MFP_CAPABLE; |
Johannes Berg | 5f4c02e | 2015-05-20 16:51:28 +0200 | [diff] [blame^] | 463 | mvm->ciphers[hw->wiphy->n_cipher_suites] = |
| 464 | WLAN_CIPHER_SUITE_AES_CMAC; |
| 465 | hw->wiphy->n_cipher_suites++; |
| 466 | } |
| 467 | |
| 468 | /* currently FW API supports only one optional cipher scheme */ |
| 469 | if (mvm->fw->cs[0].cipher) { |
| 470 | mvm->hw->n_cipher_schemes = 1; |
| 471 | mvm->hw->cipher_schemes = &mvm->fw->cs[0]; |
| 472 | mvm->ciphers[hw->wiphy->n_cipher_suites] = |
| 473 | mvm->fw->cs[0].cipher; |
| 474 | hw->wiphy->n_cipher_suites++; |
| 475 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 476 | |
Luciano Coelho | 1f94038 | 2015-02-10 13:03:38 +0200 | [diff] [blame] | 477 | hw->flags |= IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS; |
| 478 | hw->wiphy->features |= |
| 479 | NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR | |
Johannes Berg | 3db9342 | 2015-05-06 14:56:51 +0200 | [diff] [blame] | 480 | NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR | |
| 481 | NL80211_FEATURE_ND_RANDOM_MAC_ADDR; |
David Spinadel | fb98be5 | 2014-05-04 12:51:10 +0300 | [diff] [blame] | 482 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 483 | hw->sta_data_size = sizeof(struct iwl_mvm_sta); |
| 484 | hw->vif_data_size = sizeof(struct iwl_mvm_vif); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 485 | hw->chanctx_data_size = sizeof(u16); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 486 | |
| 487 | hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | |
Johannes Berg | 3c15a0f | 2013-05-31 10:17:19 +0200 | [diff] [blame] | 488 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
| 489 | BIT(NL80211_IFTYPE_AP) | |
| 490 | BIT(NL80211_IFTYPE_P2P_GO) | |
Emmanuel Grumbach | c13b172 | 2014-03-27 19:12:12 +0200 | [diff] [blame] | 491 | BIT(NL80211_IFTYPE_P2P_DEVICE) | |
| 492 | BIT(NL80211_IFTYPE_ADHOC); |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 493 | |
Luis R. Rodriguez | a2f73b6 | 2013-11-11 22:15:29 +0100 | [diff] [blame] | 494 | hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN; |
Eran Harary | 8ba2d7a | 2015-02-08 11:41:43 +0200 | [diff] [blame] | 495 | hw->wiphy->regulatory_flags |= REGULATORY_ENABLE_RELAX_NO_IR; |
| 496 | if (iwl_mvm_is_lar_supported(mvm)) |
| 497 | hw->wiphy->regulatory_flags |= REGULATORY_WIPHY_SELF_MANAGED; |
| 498 | else |
| 499 | hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG | |
| 500 | REGULATORY_DISABLE_BEACON_HINTS; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 501 | |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 502 | if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_GO_UAPSD) |
| 503 | hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD; |
| 504 | |
Emmanuel Grumbach | 94bbed7 | 2014-11-24 08:53:33 +0200 | [diff] [blame] | 505 | hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH; |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 506 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 507 | hw->wiphy->iface_combinations = iwl_mvm_iface_combinations; |
| 508 | hw->wiphy->n_iface_combinations = |
| 509 | ARRAY_SIZE(iwl_mvm_iface_combinations); |
| 510 | |
Ilan Peer | c451e6d | 2013-02-20 08:41:54 +0200 | [diff] [blame] | 511 | hw->wiphy->max_remain_on_channel_duration = 10000; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 512 | hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL; |
Emmanuel Grumbach | f1a6854 | 2014-12-16 12:31:13 +0200 | [diff] [blame] | 513 | /* we can compensate an offset of up to 3 channels = 15 MHz */ |
| 514 | hw->wiphy->max_adj_channel_rssi_comp = 3 * 5; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 515 | |
| 516 | /* Extract MAC address */ |
| 517 | memcpy(mvm->addresses[0].addr, mvm->nvm_data->hw_addr, ETH_ALEN); |
| 518 | hw->wiphy->addresses = mvm->addresses; |
| 519 | hw->wiphy->n_addresses = 1; |
Ilan Peer | 831e85f | 2013-02-07 17:09:09 +0200 | [diff] [blame] | 520 | |
| 521 | /* Extract additional MAC addresses if available */ |
| 522 | num_mac = (mvm->nvm_data->n_hw_addrs > 1) ? |
| 523 | min(IWL_MVM_MAX_ADDRESSES, mvm->nvm_data->n_hw_addrs) : 1; |
| 524 | |
| 525 | for (i = 1; i < num_mac; i++) { |
| 526 | memcpy(mvm->addresses[i].addr, mvm->addresses[i-1].addr, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 527 | ETH_ALEN); |
Ilan Peer | 831e85f | 2013-02-07 17:09:09 +0200 | [diff] [blame] | 528 | mvm->addresses[i].addr[5]++; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 529 | hw->wiphy->n_addresses++; |
| 530 | } |
| 531 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 532 | iwl_mvm_reset_phy_ctxts(mvm); |
| 533 | |
Luciano Coelho | 999d256 | 2015-03-27 10:28:26 +0300 | [diff] [blame] | 534 | hw->wiphy->max_scan_ie_len = iwl_mvm_max_scan_ie_len(mvm); |
David Spinadel | 20f1a5d | 2013-08-21 09:14:27 +0300 | [diff] [blame] | 535 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 536 | hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX; |
| 537 | |
Luciano Coelho | c7d4248 | 2015-05-07 16:00:26 +0300 | [diff] [blame] | 538 | BUILD_BUG_ON(IWL_MVM_SCAN_STOPPING_MASK & IWL_MVM_SCAN_MASK); |
Luciano Coelho | 507e4cd | 2015-03-19 22:58:33 +0200 | [diff] [blame] | 539 | BUILD_BUG_ON(IWL_MVM_MAX_UMAC_SCANS > HWEIGHT32(IWL_MVM_SCAN_MASK) || |
| 540 | IWL_MVM_MAX_LMAC_SCANS > HWEIGHT32(IWL_MVM_SCAN_MASK)); |
| 541 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 542 | if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) |
Luciano Coelho | 507e4cd | 2015-03-19 22:58:33 +0200 | [diff] [blame] | 543 | mvm->max_scans = IWL_MVM_MAX_UMAC_SCANS; |
| 544 | else |
| 545 | mvm->max_scans = IWL_MVM_MAX_LMAC_SCANS; |
| 546 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 547 | if (mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels) |
| 548 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 549 | &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ]; |
Eyal Shapira | 3d44eeb | 2015-01-16 22:37:04 +0200 | [diff] [blame] | 550 | if (mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 551 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 552 | &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ]; |
| 553 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 554 | if (fw_has_capa(&mvm->fw->ucode_capa, |
| 555 | IWL_UCODE_TLV_CAPA_BEAMFORMER) && |
| 556 | fw_has_api(&mvm->fw->ucode_capa, |
| 557 | IWL_UCODE_TLV_API_LQ_SS_PARAMS)) |
Eyal Shapira | 3d44eeb | 2015-01-16 22:37:04 +0200 | [diff] [blame] | 558 | hw->wiphy->bands[IEEE80211_BAND_5GHZ]->vht_cap.cap |= |
| 559 | IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE; |
| 560 | } |
| 561 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 562 | hw->wiphy->hw_version = mvm->trans->hw_id; |
| 563 | |
Alexander Bondar | ade5065 | 2013-04-03 16:28:47 +0300 | [diff] [blame] | 564 | if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 565 | hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 566 | else |
| 567 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 568 | |
Emmanuel Grumbach | 9954b37 | 2015-03-16 14:49:55 +0200 | [diff] [blame] | 569 | hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN; |
| 570 | hw->wiphy->max_sched_scan_ssids = PROBE_OPTION_MAX; |
| 571 | hw->wiphy->max_match_sets = IWL_SCAN_MAX_PROFILES; |
| 572 | /* we create the 802.11 header and zero length SSID IE. */ |
| 573 | hw->wiphy->max_sched_scan_ie_len = |
| 574 | SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2; |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 575 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 576 | hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN | |
Johannes Berg | ab48003 | 2014-06-04 10:13:50 +0200 | [diff] [blame] | 577 | NL80211_FEATURE_LOW_PRIORITY_SCAN | |
Eliad Peller | 0d8614b | 2014-09-10 14:07:36 +0300 | [diff] [blame] | 578 | NL80211_FEATURE_P2P_GO_OPPPS | |
| 579 | NL80211_FEATURE_DYNAMIC_SMPS | |
Emmanuel Grumbach | 9b5452f | 2014-10-07 10:38:53 +0300 | [diff] [blame] | 580 | NL80211_FEATURE_STATIC_SMPS | |
| 581 | NL80211_FEATURE_SUPPORTS_WMM_ADMISSION; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 582 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 583 | if (fw_has_capa(&mvm->fw->ucode_capa, |
| 584 | IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT)) |
Andrei Otcheretianski | f1daa00 | 2014-07-01 12:54:25 +0300 | [diff] [blame] | 585 | hw->wiphy->features |= NL80211_FEATURE_TX_POWER_INSERTION; |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 586 | if (fw_has_capa(&mvm->fw->ucode_capa, |
| 587 | IWL_UCODE_TLV_CAPA_QUIET_PERIOD_SUPPORT)) |
Assaf Krauss | 226bcd4 | 2014-03-13 08:12:15 +0200 | [diff] [blame] | 588 | hw->wiphy->features |= NL80211_FEATURE_QUIET; |
Andrei Otcheretianski | f1daa00 | 2014-07-01 12:54:25 +0300 | [diff] [blame] | 589 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 590 | if (fw_has_capa(&mvm->fw->ucode_capa, |
| 591 | IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT)) |
Andrei Otcheretianski | 73897bd | 2014-07-09 18:59:14 +0300 | [diff] [blame] | 592 | hw->wiphy->features |= |
| 593 | NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES; |
| 594 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 595 | if (fw_has_capa(&mvm->fw->ucode_capa, |
| 596 | IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT)) |
Andrei Otcheretianski | 73897bd | 2014-07-09 18:59:14 +0300 | [diff] [blame] | 597 | hw->wiphy->features |= NL80211_FEATURE_WFA_TPC_IE_IN_PROBES; |
| 598 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 599 | mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD; |
| 600 | |
| 601 | #ifdef CONFIG_PM_SLEEP |
Eliad Peller | d15a747 | 2014-03-27 18:53:12 +0200 | [diff] [blame] | 602 | if (iwl_mvm_is_d0i3_supported(mvm) && |
| 603 | device_can_wakeup(mvm->trans->dev)) { |
| 604 | mvm->wowlan.flags = WIPHY_WOWLAN_ANY; |
| 605 | hw->wiphy->wowlan = &mvm->wowlan; |
Eliad Peller | 9174244 | 2014-12-09 15:54:46 +0200 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len && |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 609 | mvm->trans->ops->d3_suspend && |
| 610 | mvm->trans->ops->d3_resume && |
| 611 | device_can_wakeup(mvm->trans->dev)) { |
Eliad Peller | 9174244 | 2014-12-09 15:54:46 +0200 | [diff] [blame] | 612 | mvm->wowlan.flags |= WIPHY_WOWLAN_MAGIC_PKT | |
| 613 | WIPHY_WOWLAN_DISCONNECT | |
| 614 | WIPHY_WOWLAN_EAP_IDENTITY_REQ | |
| 615 | WIPHY_WOWLAN_RFKILL_RELEASE | |
| 616 | WIPHY_WOWLAN_NET_DETECT; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 617 | if (!iwlwifi_mod_params.sw_crypto) |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 618 | mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY | |
| 619 | WIPHY_WOWLAN_GTK_REKEY_FAILURE | |
| 620 | WIPHY_WOWLAN_4WAY_HANDSHAKE; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 621 | |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 622 | mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS; |
| 623 | mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN; |
| 624 | mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN; |
Luciano Coelho | c55385f | 2014-10-24 10:39:51 +0300 | [diff] [blame] | 625 | mvm->wowlan.max_nd_match_sets = IWL_SCAN_MAX_PROFILES; |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 626 | mvm->wowlan.tcp = &iwl_mvm_wowlan_tcp_support; |
| 627 | hw->wiphy->wowlan = &mvm->wowlan; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 628 | } |
| 629 | #endif |
| 630 | |
Eliad Peller | 7773692 | 2014-01-14 12:35:49 +0200 | [diff] [blame] | 631 | #ifdef CONFIG_IWLWIFI_BCAST_FILTERING |
| 632 | /* assign default bcast filtering configuration */ |
| 633 | mvm->bcast_filters = iwl_mvm_default_bcast_filters; |
| 634 | #endif |
| 635 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 636 | ret = iwl_mvm_leds_init(mvm); |
| 637 | if (ret) |
| 638 | return ret; |
| 639 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 640 | if (fw_has_capa(&mvm->fw->ucode_capa, |
| 641 | IWL_UCODE_TLV_CAPA_TDLS_SUPPORT)) { |
Arik Nemtsov | d8f1c51 | 2014-05-11 18:13:04 +0300 | [diff] [blame] | 642 | IWL_DEBUG_TDLS(mvm, "TDLS supported\n"); |
| 643 | hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS; |
| 644 | } |
| 645 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 646 | if (fw_has_capa(&mvm->fw->ucode_capa, |
| 647 | IWL_UCODE_TLV_CAPA_TDLS_CHANNEL_SWITCH)) { |
Arik Nemtsov | 1d3c3f6 | 2014-10-23 18:03:10 +0300 | [diff] [blame] | 648 | IWL_DEBUG_TDLS(mvm, "TDLS channel switch supported\n"); |
| 649 | hw->wiphy->features |= NL80211_FEATURE_TDLS_CHANNEL_SWITCH; |
| 650 | } |
| 651 | |
Emmanuel Grumbach | b7327d8 | 2013-06-24 15:44:03 +0300 | [diff] [blame] | 652 | ret = ieee80211_register_hw(mvm->hw); |
| 653 | if (ret) |
| 654 | iwl_mvm_leds_exit(mvm); |
| 655 | |
| 656 | return ret; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 657 | } |
| 658 | |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 659 | static bool iwl_mvm_defer_tx(struct iwl_mvm *mvm, |
| 660 | struct ieee80211_sta *sta, |
| 661 | struct sk_buff *skb) |
| 662 | { |
| 663 | struct iwl_mvm_sta *mvmsta; |
| 664 | bool defer = false; |
| 665 | |
| 666 | /* |
| 667 | * double check the IN_D0I3 flag both before and after |
| 668 | * taking the spinlock, in order to prevent taking |
| 669 | * the spinlock when not needed. |
| 670 | */ |
| 671 | if (likely(!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status))) |
| 672 | return false; |
| 673 | |
| 674 | spin_lock(&mvm->d0i3_tx_lock); |
| 675 | /* |
| 676 | * testing the flag again ensures the skb dequeue |
| 677 | * loop (on d0i3 exit) hasn't run yet. |
| 678 | */ |
| 679 | if (!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)) |
| 680 | goto out; |
| 681 | |
| 682 | mvmsta = iwl_mvm_sta_from_mac80211(sta); |
| 683 | if (mvmsta->sta_id == IWL_MVM_STATION_COUNT || |
| 684 | mvmsta->sta_id != mvm->d0i3_ap_sta_id) |
| 685 | goto out; |
| 686 | |
| 687 | __skb_queue_tail(&mvm->d0i3_tx, skb); |
| 688 | ieee80211_stop_queues(mvm->hw); |
| 689 | |
| 690 | /* trigger wakeup */ |
| 691 | iwl_mvm_ref(mvm, IWL_MVM_REF_TX); |
| 692 | iwl_mvm_unref(mvm, IWL_MVM_REF_TX); |
| 693 | |
| 694 | defer = true; |
| 695 | out: |
| 696 | spin_unlock(&mvm->d0i3_tx_lock); |
| 697 | return defer; |
| 698 | } |
| 699 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 700 | static void iwl_mvm_mac_tx(struct ieee80211_hw *hw, |
| 701 | struct ieee80211_tx_control *control, |
| 702 | struct sk_buff *skb) |
| 703 | { |
| 704 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 705 | struct ieee80211_sta *sta = control->sta; |
| 706 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 707 | struct ieee80211_hdr *hdr = (void *)skb->data; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 708 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 709 | if (iwl_mvm_is_radio_killed(mvm)) { |
| 710 | IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n"); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 711 | goto drop; |
| 712 | } |
| 713 | |
Ilan Peer | 398e8c6 | 2013-03-13 15:20:35 +0200 | [diff] [blame] | 714 | if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE && |
Matti Gottlieb | a6cc516 | 2014-09-29 11:46:04 +0300 | [diff] [blame] | 715 | !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status) && |
| 716 | !test_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status)) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 717 | goto drop; |
| 718 | |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 719 | /* treat non-bufferable MMPDUs as broadcast if sta is sleeping */ |
| 720 | if (unlikely(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER && |
| 721 | ieee80211_is_mgmt(hdr->frame_control) && |
| 722 | !ieee80211_is_deauth(hdr->frame_control) && |
| 723 | !ieee80211_is_disassoc(hdr->frame_control) && |
| 724 | !ieee80211_is_action(hdr->frame_control))) |
| 725 | sta = NULL; |
| 726 | |
| 727 | if (sta) { |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 728 | if (iwl_mvm_defer_tx(mvm, sta, skb)) |
| 729 | return; |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 730 | if (iwl_mvm_tx_skb(mvm, skb, sta)) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 731 | goto drop; |
| 732 | return; |
| 733 | } |
| 734 | |
| 735 | if (iwl_mvm_tx_skb_non_sta(mvm, skb)) |
| 736 | goto drop; |
| 737 | return; |
| 738 | drop: |
| 739 | ieee80211_free_txskb(hw, skb); |
| 740 | } |
| 741 | |
Emmanuel Grumbach | 205e221 | 2014-02-12 15:15:05 +0200 | [diff] [blame] | 742 | static inline bool iwl_enable_rx_ampdu(const struct iwl_cfg *cfg) |
| 743 | { |
| 744 | if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG) |
| 745 | return false; |
| 746 | return true; |
| 747 | } |
| 748 | |
| 749 | static inline bool iwl_enable_tx_ampdu(const struct iwl_cfg *cfg) |
| 750 | { |
| 751 | if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG) |
| 752 | return false; |
| 753 | if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG) |
| 754 | return true; |
| 755 | |
| 756 | /* enabled by default */ |
| 757 | return true; |
| 758 | } |
| 759 | |
Emmanuel Grumbach | 4203263 | 2015-04-15 12:43:46 +0300 | [diff] [blame] | 760 | #define CHECK_BA_TRIGGER(_mvm, _trig, _tid_bm, _tid, _fmt...) \ |
| 761 | do { \ |
| 762 | if (!(le16_to_cpu(_tid_bm) & BIT(_tid))) \ |
| 763 | break; \ |
| 764 | iwl_mvm_fw_dbg_collect_trig(_mvm, _trig, _fmt); \ |
| 765 | } while (0) |
| 766 | |
| 767 | static void |
| 768 | iwl_mvm_ampdu_check_trigger(struct iwl_mvm *mvm, struct ieee80211_vif *vif, |
| 769 | struct ieee80211_sta *sta, u16 tid, u16 rx_ba_ssn, |
| 770 | enum ieee80211_ampdu_mlme_action action) |
| 771 | { |
| 772 | struct iwl_fw_dbg_trigger_tlv *trig; |
| 773 | struct iwl_fw_dbg_trigger_ba *ba_trig; |
| 774 | |
| 775 | if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_BA)) |
| 776 | return; |
| 777 | |
| 778 | trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_BA); |
| 779 | ba_trig = (void *)trig->data; |
| 780 | |
| 781 | if (!iwl_fw_dbg_trigger_check_stop(mvm, vif, trig)) |
| 782 | return; |
| 783 | |
| 784 | switch (action) { |
| 785 | case IEEE80211_AMPDU_TX_OPERATIONAL: { |
| 786 | struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); |
| 787 | struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid]; |
| 788 | |
| 789 | CHECK_BA_TRIGGER(mvm, trig, ba_trig->tx_ba_start, tid, |
| 790 | "TX AGG START: MAC %pM tid %d ssn %d\n", |
| 791 | sta->addr, tid, tid_data->ssn); |
| 792 | break; |
| 793 | } |
| 794 | case IEEE80211_AMPDU_TX_STOP_CONT: |
| 795 | CHECK_BA_TRIGGER(mvm, trig, ba_trig->tx_ba_stop, tid, |
| 796 | "TX AGG STOP: MAC %pM tid %d\n", |
| 797 | sta->addr, tid); |
| 798 | break; |
| 799 | case IEEE80211_AMPDU_RX_START: |
| 800 | CHECK_BA_TRIGGER(mvm, trig, ba_trig->rx_ba_start, tid, |
| 801 | "RX AGG START: MAC %pM tid %d ssn %d\n", |
| 802 | sta->addr, tid, rx_ba_ssn); |
| 803 | break; |
| 804 | case IEEE80211_AMPDU_RX_STOP: |
| 805 | CHECK_BA_TRIGGER(mvm, trig, ba_trig->rx_ba_stop, tid, |
| 806 | "RX AGG STOP: MAC %pM tid %d\n", |
| 807 | sta->addr, tid); |
| 808 | break; |
| 809 | default: |
| 810 | break; |
| 811 | } |
| 812 | } |
| 813 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 814 | static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw, |
| 815 | struct ieee80211_vif *vif, |
| 816 | enum ieee80211_ampdu_mlme_action action, |
| 817 | struct ieee80211_sta *sta, u16 tid, |
| 818 | u16 *ssn, u8 buf_size) |
| 819 | { |
| 820 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 821 | int ret; |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 822 | bool tx_agg_ref = false; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 823 | |
| 824 | IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n", |
| 825 | sta->addr, tid, action); |
| 826 | |
| 827 | if (!(mvm->nvm_data->sku_cap_11n_enable)) |
| 828 | return -EACCES; |
| 829 | |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 830 | /* return from D0i3 before starting a new Tx aggregation */ |
Eliad Peller | 9256c20 | 2014-04-22 13:33:29 +0300 | [diff] [blame] | 831 | switch (action) { |
| 832 | case IEEE80211_AMPDU_TX_START: |
| 833 | case IEEE80211_AMPDU_TX_STOP_CONT: |
| 834 | case IEEE80211_AMPDU_TX_STOP_FLUSH: |
| 835 | case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: |
| 836 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 837 | /* |
Eliad Peller | 9256c20 | 2014-04-22 13:33:29 +0300 | [diff] [blame] | 838 | * for tx start, wait synchronously until D0i3 exit to |
| 839 | * get the correct sequence number for the tid. |
| 840 | * additionally, some other ampdu actions use direct |
| 841 | * target access, which is not handled automatically |
| 842 | * by the trans layer (unlike commands), so wait for |
| 843 | * d0i3 exit in these cases as well. |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 844 | */ |
Gregory Greenman | d40fc48 | 2014-06-25 14:08:50 +0200 | [diff] [blame] | 845 | ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_TX_AGG); |
| 846 | if (ret) |
| 847 | return ret; |
| 848 | |
| 849 | tx_agg_ref = true; |
Eliad Peller | 9256c20 | 2014-04-22 13:33:29 +0300 | [diff] [blame] | 850 | break; |
| 851 | default: |
| 852 | break; |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 853 | } |
| 854 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 855 | mutex_lock(&mvm->mutex); |
| 856 | |
| 857 | switch (action) { |
| 858 | case IEEE80211_AMPDU_RX_START: |
Emmanuel Grumbach | 205e221 | 2014-02-12 15:15:05 +0200 | [diff] [blame] | 859 | if (!iwl_enable_rx_ampdu(mvm->cfg)) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 860 | ret = -EINVAL; |
| 861 | break; |
| 862 | } |
| 863 | ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true); |
| 864 | break; |
| 865 | case IEEE80211_AMPDU_RX_STOP: |
| 866 | ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false); |
| 867 | break; |
| 868 | case IEEE80211_AMPDU_TX_START: |
Emmanuel Grumbach | 205e221 | 2014-02-12 15:15:05 +0200 | [diff] [blame] | 869 | if (!iwl_enable_tx_ampdu(mvm->cfg)) { |
Emmanuel Grumbach | 5d158ef | 2013-02-19 14:39:58 +0200 | [diff] [blame] | 870 | ret = -EINVAL; |
| 871 | break; |
| 872 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 873 | ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn); |
| 874 | break; |
| 875 | case IEEE80211_AMPDU_TX_STOP_CONT: |
Emmanuel Grumbach | e3d9e7c | 2013-02-19 16:13:53 +0200 | [diff] [blame] | 876 | ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid); |
| 877 | break; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 878 | case IEEE80211_AMPDU_TX_STOP_FLUSH: |
| 879 | case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: |
Emmanuel Grumbach | e3d9e7c | 2013-02-19 16:13:53 +0200 | [diff] [blame] | 880 | ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 881 | break; |
| 882 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
| 883 | ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid, buf_size); |
| 884 | break; |
| 885 | default: |
| 886 | WARN_ON_ONCE(1); |
| 887 | ret = -EINVAL; |
| 888 | break; |
| 889 | } |
Emmanuel Grumbach | 4203263 | 2015-04-15 12:43:46 +0300 | [diff] [blame] | 890 | |
| 891 | if (!ret) { |
| 892 | u16 rx_ba_ssn = 0; |
| 893 | |
| 894 | if (action == IEEE80211_AMPDU_RX_START) |
| 895 | rx_ba_ssn = *ssn; |
| 896 | |
| 897 | iwl_mvm_ampdu_check_trigger(mvm, vif, sta, tid, |
| 898 | rx_ba_ssn, action); |
| 899 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 900 | mutex_unlock(&mvm->mutex); |
| 901 | |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 902 | /* |
| 903 | * If the tid is marked as started, we won't use it for offloaded |
| 904 | * traffic on the next D0i3 entry. It's safe to unref. |
| 905 | */ |
| 906 | if (tx_agg_ref) |
| 907 | iwl_mvm_unref(mvm, IWL_MVM_REF_TX_AGG); |
| 908 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 909 | return ret; |
| 910 | } |
| 911 | |
| 912 | static void iwl_mvm_cleanup_iterator(void *data, u8 *mac, |
| 913 | struct ieee80211_vif *vif) |
| 914 | { |
| 915 | struct iwl_mvm *mvm = data; |
| 916 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 917 | |
| 918 | mvmvif->uploaded = false; |
| 919 | mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT; |
| 920 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 921 | spin_lock_bh(&mvm->time_event_lock); |
| 922 | iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data); |
| 923 | spin_unlock_bh(&mvm->time_event_lock); |
| 924 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 925 | mvmvif->phy_ctxt = NULL; |
Emmanuel Grumbach | 8a275ba | 2014-07-13 09:12:11 +0300 | [diff] [blame] | 926 | memset(&mvmvif->bf_data, 0, sizeof(mvmvif->bf_data)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 927 | } |
| 928 | |
Johannes Berg | aadede6 | 2014-10-09 17:01:36 +0200 | [diff] [blame] | 929 | static ssize_t iwl_mvm_read_coredump(char *buffer, loff_t offset, size_t count, |
| 930 | const void *data, size_t datalen) |
| 931 | { |
| 932 | const struct iwl_mvm_dump_ptrs *dump_ptrs = data; |
| 933 | ssize_t bytes_read; |
| 934 | ssize_t bytes_read_trans; |
| 935 | |
| 936 | if (offset < dump_ptrs->op_mode_len) { |
| 937 | bytes_read = min_t(ssize_t, count, |
| 938 | dump_ptrs->op_mode_len - offset); |
| 939 | memcpy(buffer, (u8 *)dump_ptrs->op_mode_ptr + offset, |
| 940 | bytes_read); |
| 941 | offset += bytes_read; |
| 942 | count -= bytes_read; |
| 943 | |
| 944 | if (count == 0) |
| 945 | return bytes_read; |
| 946 | } else { |
| 947 | bytes_read = 0; |
| 948 | } |
| 949 | |
| 950 | if (!dump_ptrs->trans_ptr) |
| 951 | return bytes_read; |
| 952 | |
| 953 | offset -= dump_ptrs->op_mode_len; |
| 954 | bytes_read_trans = min_t(ssize_t, count, |
| 955 | dump_ptrs->trans_ptr->len - offset); |
| 956 | memcpy(buffer + bytes_read, |
| 957 | (u8 *)dump_ptrs->trans_ptr->data + offset, |
| 958 | bytes_read_trans); |
| 959 | |
| 960 | return bytes_read + bytes_read_trans; |
| 961 | } |
| 962 | |
| 963 | static void iwl_mvm_free_coredump(const void *data) |
| 964 | { |
| 965 | const struct iwl_mvm_dump_ptrs *fw_error_dump = data; |
| 966 | |
| 967 | vfree(fw_error_dump->op_mode_ptr); |
| 968 | vfree(fw_error_dump->trans_ptr); |
| 969 | kfree(fw_error_dump); |
| 970 | } |
| 971 | |
Liad Kaufman | 04fd2c2 | 2014-12-15 17:54:16 +0200 | [diff] [blame] | 972 | static void iwl_mvm_dump_fifos(struct iwl_mvm *mvm, |
| 973 | struct iwl_fw_error_dump_data **dump_data) |
| 974 | { |
| 975 | struct iwl_fw_error_dump_fifo *fifo_hdr; |
| 976 | u32 *fifo_data; |
| 977 | u32 fifo_len; |
| 978 | unsigned long flags; |
| 979 | int i, j; |
| 980 | |
| 981 | if (!iwl_trans_grab_nic_access(mvm->trans, false, &flags)) |
| 982 | return; |
| 983 | |
| 984 | /* Pull RXF data from all RXFs */ |
| 985 | for (i = 0; i < ARRAY_SIZE(mvm->shared_mem_cfg.rxfifo_size); i++) { |
| 986 | /* |
| 987 | * Keep aside the additional offset that might be needed for |
| 988 | * next RXF |
| 989 | */ |
| 990 | u32 offset_diff = RXF_DIFF_FROM_PREV * i; |
| 991 | |
| 992 | fifo_hdr = (void *)(*dump_data)->data; |
| 993 | fifo_data = (void *)fifo_hdr->data; |
| 994 | fifo_len = mvm->shared_mem_cfg.rxfifo_size[i]; |
| 995 | |
| 996 | /* No need to try to read the data if the length is 0 */ |
| 997 | if (fifo_len == 0) |
| 998 | continue; |
| 999 | |
| 1000 | /* Add a TLV for the RXF */ |
| 1001 | (*dump_data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RXF); |
| 1002 | (*dump_data)->len = cpu_to_le32(fifo_len + sizeof(*fifo_hdr)); |
| 1003 | |
| 1004 | fifo_hdr->fifo_num = cpu_to_le32(i); |
| 1005 | fifo_hdr->available_bytes = |
| 1006 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1007 | RXF_RD_D_SPACE + |
| 1008 | offset_diff)); |
| 1009 | fifo_hdr->wr_ptr = |
| 1010 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1011 | RXF_RD_WR_PTR + |
| 1012 | offset_diff)); |
| 1013 | fifo_hdr->rd_ptr = |
| 1014 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1015 | RXF_RD_RD_PTR + |
| 1016 | offset_diff)); |
| 1017 | fifo_hdr->fence_ptr = |
| 1018 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1019 | RXF_RD_FENCE_PTR + |
| 1020 | offset_diff)); |
| 1021 | fifo_hdr->fence_mode = |
| 1022 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1023 | RXF_SET_FENCE_MODE + |
| 1024 | offset_diff)); |
| 1025 | |
| 1026 | /* Lock fence */ |
| 1027 | iwl_trans_write_prph(mvm->trans, |
| 1028 | RXF_SET_FENCE_MODE + offset_diff, 0x1); |
| 1029 | /* Set fence pointer to the same place like WR pointer */ |
| 1030 | iwl_trans_write_prph(mvm->trans, |
| 1031 | RXF_LD_WR2FENCE + offset_diff, 0x1); |
| 1032 | /* Set fence offset */ |
| 1033 | iwl_trans_write_prph(mvm->trans, |
| 1034 | RXF_LD_FENCE_OFFSET_ADDR + offset_diff, |
| 1035 | 0x0); |
| 1036 | |
| 1037 | /* Read FIFO */ |
| 1038 | fifo_len /= sizeof(u32); /* Size in DWORDS */ |
| 1039 | for (j = 0; j < fifo_len; j++) |
| 1040 | fifo_data[j] = iwl_trans_read_prph(mvm->trans, |
| 1041 | RXF_FIFO_RD_FENCE_INC + |
| 1042 | offset_diff); |
| 1043 | *dump_data = iwl_fw_error_next_data(*dump_data); |
| 1044 | } |
| 1045 | |
| 1046 | /* Pull TXF data from all TXFs */ |
| 1047 | for (i = 0; i < ARRAY_SIZE(mvm->shared_mem_cfg.txfifo_size); i++) { |
| 1048 | /* Mark the number of TXF we're pulling now */ |
| 1049 | iwl_trans_write_prph(mvm->trans, TXF_LARC_NUM, i); |
| 1050 | |
| 1051 | fifo_hdr = (void *)(*dump_data)->data; |
| 1052 | fifo_data = (void *)fifo_hdr->data; |
| 1053 | fifo_len = mvm->shared_mem_cfg.txfifo_size[i]; |
| 1054 | |
| 1055 | /* No need to try to read the data if the length is 0 */ |
| 1056 | if (fifo_len == 0) |
| 1057 | continue; |
| 1058 | |
| 1059 | /* Add a TLV for the FIFO */ |
| 1060 | (*dump_data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_TXF); |
| 1061 | (*dump_data)->len = cpu_to_le32(fifo_len + sizeof(*fifo_hdr)); |
| 1062 | |
| 1063 | fifo_hdr->fifo_num = cpu_to_le32(i); |
| 1064 | fifo_hdr->available_bytes = |
| 1065 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1066 | TXF_FIFO_ITEM_CNT)); |
| 1067 | fifo_hdr->wr_ptr = |
| 1068 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1069 | TXF_WR_PTR)); |
| 1070 | fifo_hdr->rd_ptr = |
| 1071 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1072 | TXF_RD_PTR)); |
| 1073 | fifo_hdr->fence_ptr = |
| 1074 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1075 | TXF_FENCE_PTR)); |
| 1076 | fifo_hdr->fence_mode = |
| 1077 | cpu_to_le32(iwl_trans_read_prph(mvm->trans, |
| 1078 | TXF_LOCK_FENCE)); |
| 1079 | |
| 1080 | /* Set the TXF_READ_MODIFY_ADDR to TXF_WR_PTR */ |
| 1081 | iwl_trans_write_prph(mvm->trans, TXF_READ_MODIFY_ADDR, |
| 1082 | TXF_WR_PTR); |
| 1083 | |
| 1084 | /* Dummy-read to advance the read pointer to the head */ |
| 1085 | iwl_trans_read_prph(mvm->trans, TXF_READ_MODIFY_DATA); |
| 1086 | |
| 1087 | /* Read FIFO */ |
| 1088 | fifo_len /= sizeof(u32); /* Size in DWORDS */ |
| 1089 | for (j = 0; j < fifo_len; j++) |
| 1090 | fifo_data[j] = iwl_trans_read_prph(mvm->trans, |
| 1091 | TXF_READ_MODIFY_DATA); |
| 1092 | *dump_data = iwl_fw_error_next_data(*dump_data); |
| 1093 | } |
| 1094 | |
| 1095 | iwl_trans_release_nic_access(mvm->trans, &flags); |
| 1096 | } |
| 1097 | |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 1098 | void iwl_mvm_free_fw_dump_desc(struct iwl_mvm *mvm) |
| 1099 | { |
| 1100 | if (mvm->fw_dump_desc == &iwl_mvm_dump_desc_assert || |
| 1101 | !mvm->fw_dump_desc) |
| 1102 | return; |
| 1103 | |
| 1104 | kfree(mvm->fw_dump_desc); |
| 1105 | mvm->fw_dump_desc = NULL; |
| 1106 | } |
| 1107 | |
Liad Kaufman | e539761 | 2015-03-02 11:46:46 +0200 | [diff] [blame] | 1108 | #define IWL8260_ICCM_OFFSET 0x44000 /* Only for B-step */ |
| 1109 | #define IWL8260_ICCM_LEN 0xC000 /* Only for B-step */ |
| 1110 | |
Emmanuel Grumbach | 4bfa47f | 2014-09-11 16:19:43 +0300 | [diff] [blame] | 1111 | void iwl_mvm_fw_error_dump(struct iwl_mvm *mvm) |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1112 | { |
| 1113 | struct iwl_fw_error_dump_file *dump_file; |
| 1114 | struct iwl_fw_error_dump_data *dump_data; |
| 1115 | struct iwl_fw_error_dump_info *dump_info; |
Emmanuel Grumbach | a549b29 | 2014-12-09 14:47:57 +0200 | [diff] [blame] | 1116 | struct iwl_fw_error_dump_mem *dump_mem; |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 1117 | struct iwl_fw_error_dump_trigger_desc *dump_trig; |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 1118 | struct iwl_mvm_dump_ptrs *fw_error_dump; |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1119 | u32 sram_len, sram_ofs; |
Liad Kaufman | 04fd2c2 | 2014-12-15 17:54:16 +0200 | [diff] [blame] | 1120 | u32 file_len, fifo_data_len = 0; |
Liad Kaufman | addfaad | 2014-12-02 11:16:04 +0200 | [diff] [blame] | 1121 | u32 smem_len = mvm->cfg->smem_len; |
Ido Yariv | 8613832 | 2014-12-10 12:39:27 -0500 | [diff] [blame] | 1122 | u32 sram2_len = mvm->cfg->dccm2_len; |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1123 | |
| 1124 | lockdep_assert_held(&mvm->mutex); |
| 1125 | |
Johannes Berg | aadede6 | 2014-10-09 17:01:36 +0200 | [diff] [blame] | 1126 | fw_error_dump = kzalloc(sizeof(*fw_error_dump), GFP_KERNEL); |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 1127 | if (!fw_error_dump) |
| 1128 | return; |
| 1129 | |
Liad Kaufman | f53bf4c | 2014-12-01 10:44:18 +0200 | [diff] [blame] | 1130 | /* SRAM - include stack CCM if driver knows the values for it */ |
| 1131 | if (!mvm->cfg->dccm_offset || !mvm->cfg->dccm_len) { |
| 1132 | const struct fw_img *img; |
| 1133 | |
| 1134 | img = &mvm->fw->img[mvm->cur_ucode]; |
| 1135 | sram_ofs = img->sec[IWL_UCODE_SECTION_DATA].offset; |
| 1136 | sram_len = img->sec[IWL_UCODE_SECTION_DATA].len; |
| 1137 | } else { |
| 1138 | sram_ofs = mvm->cfg->dccm_offset; |
| 1139 | sram_len = mvm->cfg->dccm_len; |
| 1140 | } |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1141 | |
Liad Kaufman | 04fd2c2 | 2014-12-15 17:54:16 +0200 | [diff] [blame] | 1142 | /* reading RXF/TXF sizes */ |
| 1143 | if (test_bit(STATUS_FW_ERROR, &mvm->trans->status)) { |
| 1144 | struct iwl_mvm_shared_mem_cfg *mem_cfg = &mvm->shared_mem_cfg; |
| 1145 | int i; |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1146 | |
Liad Kaufman | 04fd2c2 | 2014-12-15 17:54:16 +0200 | [diff] [blame] | 1147 | fifo_data_len = 0; |
| 1148 | |
| 1149 | /* Count RXF size */ |
| 1150 | for (i = 0; i < ARRAY_SIZE(mem_cfg->rxfifo_size); i++) { |
| 1151 | if (!mem_cfg->rxfifo_size[i]) |
| 1152 | continue; |
| 1153 | |
| 1154 | /* Add header info */ |
| 1155 | fifo_data_len += mem_cfg->rxfifo_size[i] + |
| 1156 | sizeof(*dump_data) + |
| 1157 | sizeof(struct iwl_fw_error_dump_fifo); |
| 1158 | } |
| 1159 | |
| 1160 | for (i = 0; i < ARRAY_SIZE(mem_cfg->txfifo_size); i++) { |
| 1161 | if (!mem_cfg->txfifo_size[i]) |
| 1162 | continue; |
| 1163 | |
| 1164 | /* Add header info */ |
| 1165 | fifo_data_len += mem_cfg->txfifo_size[i] + |
| 1166 | sizeof(*dump_data) + |
| 1167 | sizeof(struct iwl_fw_error_dump_fifo); |
| 1168 | } |
| 1169 | } |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1170 | |
| 1171 | file_len = sizeof(*dump_file) + |
Liad Kaufman | 04fd2c2 | 2014-12-15 17:54:16 +0200 | [diff] [blame] | 1172 | sizeof(*dump_data) * 2 + |
Emmanuel Grumbach | a549b29 | 2014-12-09 14:47:57 +0200 | [diff] [blame] | 1173 | sram_len + sizeof(*dump_mem) + |
Liad Kaufman | 04fd2c2 | 2014-12-15 17:54:16 +0200 | [diff] [blame] | 1174 | fifo_data_len + |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1175 | sizeof(*dump_info); |
| 1176 | |
Liad Kaufman | e539761 | 2015-03-02 11:46:46 +0200 | [diff] [blame] | 1177 | /* |
| 1178 | * In 8000 HW family B-step include the ICCM (which resides separately) |
| 1179 | */ |
| 1180 | if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_8000 && |
| 1181 | CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_B_STEP) |
| 1182 | file_len += sizeof(*dump_data) + sizeof(*dump_mem) + |
| 1183 | IWL8260_ICCM_LEN; |
| 1184 | |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 1185 | if (mvm->fw_dump_desc) |
| 1186 | file_len += sizeof(*dump_data) + sizeof(*dump_trig) + |
| 1187 | mvm->fw_dump_desc->len; |
| 1188 | |
Liad Kaufman | addfaad | 2014-12-02 11:16:04 +0200 | [diff] [blame] | 1189 | /* Make room for the SMEM, if it exists */ |
| 1190 | if (smem_len) |
Emmanuel Grumbach | a549b29 | 2014-12-09 14:47:57 +0200 | [diff] [blame] | 1191 | file_len += sizeof(*dump_data) + sizeof(*dump_mem) + smem_len; |
Liad Kaufman | addfaad | 2014-12-02 11:16:04 +0200 | [diff] [blame] | 1192 | |
Ido Yariv | 8613832 | 2014-12-10 12:39:27 -0500 | [diff] [blame] | 1193 | /* Make room for the secondary SRAM, if it exists */ |
| 1194 | if (sram2_len) |
| 1195 | file_len += sizeof(*dump_data) + sizeof(*dump_mem) + sram2_len; |
| 1196 | |
Emmanuel Grumbach | 5bfe6f5 | 2014-06-25 16:21:43 +0300 | [diff] [blame] | 1197 | dump_file = vzalloc(file_len); |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 1198 | if (!dump_file) { |
| 1199 | kfree(fw_error_dump); |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 1200 | iwl_mvm_free_fw_dump_desc(mvm); |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1201 | return; |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 1202 | } |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1203 | |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 1204 | fw_error_dump->op_mode_ptr = dump_file; |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1205 | |
| 1206 | dump_file->barker = cpu_to_le32(IWL_FW_ERROR_DUMP_BARKER); |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1207 | dump_data = (void *)dump_file->data; |
| 1208 | |
| 1209 | dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_DEV_FW_INFO); |
| 1210 | dump_data->len = cpu_to_le32(sizeof(*dump_info)); |
| 1211 | dump_info = (void *) dump_data->data; |
| 1212 | dump_info->device_family = |
| 1213 | mvm->cfg->device_family == IWL_DEVICE_FAMILY_7000 ? |
| 1214 | cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_7) : |
| 1215 | cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_8); |
Ido Yariv | 435da2c | 2014-12-11 16:11:01 -0500 | [diff] [blame] | 1216 | dump_info->hw_step = cpu_to_le32(CSR_HW_REV_STEP(mvm->trans->hw_rev)); |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1217 | memcpy(dump_info->fw_human_readable, mvm->fw->human_readable, |
| 1218 | sizeof(dump_info->fw_human_readable)); |
| 1219 | strncpy(dump_info->dev_human_readable, mvm->cfg->name, |
| 1220 | sizeof(dump_info->dev_human_readable)); |
| 1221 | strncpy(dump_info->bus_human_readable, mvm->dev->bus->name, |
| 1222 | sizeof(dump_info->bus_human_readable)); |
| 1223 | |
| 1224 | dump_data = iwl_fw_error_next_data(dump_data); |
Liad Kaufman | 04fd2c2 | 2014-12-15 17:54:16 +0200 | [diff] [blame] | 1225 | /* We only dump the FIFOs if the FW is in error state */ |
| 1226 | if (test_bit(STATUS_FW_ERROR, &mvm->trans->status)) |
| 1227 | iwl_mvm_dump_fifos(mvm, &dump_data); |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1228 | |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 1229 | if (mvm->fw_dump_desc) { |
| 1230 | dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_ERROR_INFO); |
| 1231 | dump_data->len = cpu_to_le32(sizeof(*dump_trig) + |
| 1232 | mvm->fw_dump_desc->len); |
| 1233 | dump_trig = (void *)dump_data->data; |
| 1234 | memcpy(dump_trig, &mvm->fw_dump_desc->trig_desc, |
| 1235 | sizeof(*dump_trig) + mvm->fw_dump_desc->len); |
| 1236 | |
| 1237 | /* now we can free this copy */ |
| 1238 | iwl_mvm_free_fw_dump_desc(mvm); |
| 1239 | dump_data = iwl_fw_error_next_data(dump_data); |
| 1240 | } |
| 1241 | |
Emmanuel Grumbach | a549b29 | 2014-12-09 14:47:57 +0200 | [diff] [blame] | 1242 | dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM); |
| 1243 | dump_data->len = cpu_to_le32(sram_len + sizeof(*dump_mem)); |
| 1244 | dump_mem = (void *)dump_data->data; |
| 1245 | dump_mem->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM_SRAM); |
| 1246 | dump_mem->offset = cpu_to_le32(sram_ofs); |
| 1247 | iwl_trans_read_mem_bytes(mvm->trans, sram_ofs, dump_mem->data, |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1248 | sram_len); |
| 1249 | |
Liad Kaufman | addfaad | 2014-12-02 11:16:04 +0200 | [diff] [blame] | 1250 | if (smem_len) { |
| 1251 | dump_data = iwl_fw_error_next_data(dump_data); |
Emmanuel Grumbach | e06d843 | 2014-12-09 14:36:41 +0200 | [diff] [blame] | 1252 | dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM); |
| 1253 | dump_data->len = cpu_to_le32(smem_len + sizeof(*dump_mem)); |
| 1254 | dump_mem = (void *)dump_data->data; |
| 1255 | dump_mem->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM_SMEM); |
| 1256 | dump_mem->offset = cpu_to_le32(mvm->cfg->smem_offset); |
Liad Kaufman | addfaad | 2014-12-02 11:16:04 +0200 | [diff] [blame] | 1257 | iwl_trans_read_mem_bytes(mvm->trans, mvm->cfg->smem_offset, |
Emmanuel Grumbach | e06d843 | 2014-12-09 14:36:41 +0200 | [diff] [blame] | 1258 | dump_mem->data, smem_len); |
Liad Kaufman | addfaad | 2014-12-02 11:16:04 +0200 | [diff] [blame] | 1259 | } |
| 1260 | |
Ido Yariv | 8613832 | 2014-12-10 12:39:27 -0500 | [diff] [blame] | 1261 | if (sram2_len) { |
| 1262 | dump_data = iwl_fw_error_next_data(dump_data); |
| 1263 | dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM); |
| 1264 | dump_data->len = cpu_to_le32(sram2_len + sizeof(*dump_mem)); |
| 1265 | dump_mem = (void *)dump_data->data; |
| 1266 | dump_mem->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM_SRAM); |
| 1267 | dump_mem->offset = cpu_to_le32(mvm->cfg->dccm2_offset); |
| 1268 | iwl_trans_read_mem_bytes(mvm->trans, mvm->cfg->dccm2_offset, |
| 1269 | dump_mem->data, sram2_len); |
| 1270 | } |
| 1271 | |
Liad Kaufman | e539761 | 2015-03-02 11:46:46 +0200 | [diff] [blame] | 1272 | if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_8000 && |
| 1273 | CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_B_STEP) { |
| 1274 | dump_data = iwl_fw_error_next_data(dump_data); |
| 1275 | dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM); |
| 1276 | dump_data->len = cpu_to_le32(IWL8260_ICCM_LEN + |
| 1277 | sizeof(*dump_mem)); |
| 1278 | dump_mem = (void *)dump_data->data; |
| 1279 | dump_mem->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM_SRAM); |
| 1280 | dump_mem->offset = cpu_to_le32(IWL8260_ICCM_OFFSET); |
| 1281 | iwl_trans_read_mem_bytes(mvm->trans, IWL8260_ICCM_OFFSET, |
| 1282 | dump_mem->data, IWL8260_ICCM_LEN); |
| 1283 | } |
| 1284 | |
Emmanuel Grumbach | 48eb7b3 | 2014-07-08 19:45:17 +0300 | [diff] [blame] | 1285 | fw_error_dump->trans_ptr = iwl_trans_dump_data(mvm->trans); |
| 1286 | fw_error_dump->op_mode_len = file_len; |
| 1287 | if (fw_error_dump->trans_ptr) |
| 1288 | file_len += fw_error_dump->trans_ptr->len; |
| 1289 | dump_file->file_len = cpu_to_le32(file_len); |
Emmanuel Grumbach | 4bfa47f | 2014-09-11 16:19:43 +0300 | [diff] [blame] | 1290 | |
Johannes Berg | aadede6 | 2014-10-09 17:01:36 +0200 | [diff] [blame] | 1291 | dev_coredumpm(mvm->trans->dev, THIS_MODULE, fw_error_dump, 0, |
| 1292 | GFP_KERNEL, iwl_mvm_read_coredump, iwl_mvm_free_coredump); |
Emmanuel Grumbach | d2709ad | 2015-01-29 14:58:06 +0200 | [diff] [blame] | 1293 | |
| 1294 | clear_bit(IWL_MVM_STATUS_DUMPING_FW_LOG, &mvm->status); |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1295 | } |
Emmanuel Grumbach | 655e6d6 | 2014-06-25 14:08:58 +0300 | [diff] [blame] | 1296 | |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 1297 | struct iwl_mvm_dump_desc iwl_mvm_dump_desc_assert = { |
| 1298 | .trig_desc = { |
| 1299 | .type = cpu_to_le32(FW_DBG_TRIGGER_FW_ASSERT), |
| 1300 | }, |
| 1301 | }; |
| 1302 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1303 | static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm) |
| 1304 | { |
Johannes Berg | 58629d9 | 2014-11-06 09:40:50 +0100 | [diff] [blame] | 1305 | /* clear the D3 reconfig, we only need it to avoid dumping a |
| 1306 | * firmware coredump on reconfiguration, we shouldn't do that |
| 1307 | * on D3->D0 transition |
| 1308 | */ |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 1309 | if (!test_and_clear_bit(IWL_MVM_STATUS_D3_RECONFIG, &mvm->status)) { |
| 1310 | mvm->fw_dump_desc = &iwl_mvm_dump_desc_assert; |
Johannes Berg | 58629d9 | 2014-11-06 09:40:50 +0100 | [diff] [blame] | 1311 | iwl_mvm_fw_error_dump(mvm); |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 1312 | } |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 1313 | |
Eliad Peller | 744cb69 | 2014-12-10 18:44:13 +0200 | [diff] [blame] | 1314 | /* cleanup all stale references (scan, roc), but keep the |
| 1315 | * ucode_down ref until reconfig is complete |
| 1316 | */ |
| 1317 | iwl_mvm_unref_all_except(mvm, IWL_MVM_REF_UCODE_DOWN); |
| 1318 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1319 | iwl_trans_stop_device(mvm->trans); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1320 | |
Luciano Coelho | 9af91f4 | 2015-02-10 10:42:26 +0200 | [diff] [blame] | 1321 | mvm->scan_status = 0; |
Luciano Coelho | b187330 | 2014-08-08 17:12:07 +0300 | [diff] [blame] | 1322 | mvm->ps_disabled = false; |
Emmanuel Grumbach | 31b8b34 | 2014-11-02 15:48:09 +0200 | [diff] [blame] | 1323 | mvm->calibrating = false; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1324 | |
| 1325 | /* just in case one was running */ |
| 1326 | ieee80211_remain_on_channel_expired(mvm->hw); |
| 1327 | |
Arik Nemtsov | 737719f | 2015-02-23 14:42:41 +0200 | [diff] [blame] | 1328 | /* |
| 1329 | * cleanup all interfaces, even inactive ones, as some might have |
| 1330 | * gone down during the HW restart |
| 1331 | */ |
| 1332 | ieee80211_iterate_interfaces(mvm->hw, 0, iwl_mvm_cleanup_iterator, mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1333 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1334 | mvm->p2p_device_vif = NULL; |
Eliad Peller | 37577fe | 2013-12-05 17:19:39 +0200 | [diff] [blame] | 1335 | mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT; |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1336 | |
| 1337 | iwl_mvm_reset_phy_ctxts(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1338 | memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained)); |
Arik Nemtsov | a0f6bf2 | 2014-09-21 19:10:04 +0300 | [diff] [blame] | 1339 | memset(mvm->tfd_drained, 0, sizeof(mvm->tfd_drained)); |
Emmanuel Grumbach | 8a275ba | 2014-07-13 09:12:11 +0300 | [diff] [blame] | 1340 | memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif)); |
| 1341 | memset(&mvm->last_bt_notif_old, 0, sizeof(mvm->last_bt_notif_old)); |
| 1342 | memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd)); |
| 1343 | memset(&mvm->last_bt_ci_cmd_old, 0, sizeof(mvm->last_bt_ci_cmd_old)); |
| 1344 | memset(&mvm->bt_ack_kill_msk, 0, sizeof(mvm->bt_ack_kill_msk)); |
| 1345 | 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] | 1346 | |
| 1347 | ieee80211_wake_queues(mvm->hw); |
| 1348 | |
Eliad Peller | 228670b | 2014-08-10 17:00:15 +0300 | [diff] [blame] | 1349 | /* clear any stale d0i3 state */ |
| 1350 | clear_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status); |
| 1351 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1352 | mvm->vif_count = 0; |
Emmanuel Grumbach | 113a044 | 2013-07-02 14:16:38 +0300 | [diff] [blame] | 1353 | mvm->rx_ba_sessions = 0; |
Emmanuel Grumbach | d2709ad | 2015-01-29 14:58:06 +0200 | [diff] [blame] | 1354 | mvm->fw_dbg_conf = FW_DBG_INVALID; |
Johannes Berg | 91a8bcd | 2015-01-14 18:12:41 +0100 | [diff] [blame] | 1355 | |
| 1356 | /* keep statistics ticking */ |
| 1357 | iwl_mvm_accu_radio_stats(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1358 | } |
| 1359 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 1360 | int __iwl_mvm_mac_start(struct iwl_mvm *mvm) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1361 | { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1362 | int ret; |
| 1363 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 1364 | lockdep_assert_held(&mvm->mutex); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1365 | |
| 1366 | /* Clean up some internal and mac80211 state on restart */ |
| 1367 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) |
| 1368 | iwl_mvm_restart_cleanup(mvm); |
| 1369 | |
| 1370 | ret = iwl_mvm_up(mvm); |
Johannes Berg | c47af22 | 2014-04-30 16:34:45 +0200 | [diff] [blame] | 1371 | |
| 1372 | if (ret && test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) { |
| 1373 | /* Something went wrong - we need to finish some cleanup |
| 1374 | * that normally iwl_mvm_mac_restart_complete() below |
| 1375 | * would do. |
| 1376 | */ |
| 1377 | clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status); |
| 1378 | iwl_mvm_d0i3_enable_tx(mvm, NULL); |
| 1379 | } |
| 1380 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 1381 | return ret; |
| 1382 | } |
| 1383 | |
| 1384 | static int iwl_mvm_mac_start(struct ieee80211_hw *hw) |
| 1385 | { |
| 1386 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1387 | int ret; |
| 1388 | |
Eliad Peller | 37948fc | 2014-12-11 10:48:18 +0200 | [diff] [blame] | 1389 | /* Some hw restart cleanups must not hold the mutex */ |
| 1390 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) { |
| 1391 | /* |
| 1392 | * Make sure we are out of d0i3. This is needed |
| 1393 | * to make sure the reference accounting is correct |
| 1394 | * (and there is no stale d0i3_exit_work). |
| 1395 | */ |
| 1396 | wait_event_timeout(mvm->d0i3_exit_waitq, |
| 1397 | !test_bit(IWL_MVM_STATUS_IN_D0I3, |
| 1398 | &mvm->status), |
| 1399 | HZ); |
| 1400 | } |
| 1401 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 1402 | mutex_lock(&mvm->mutex); |
| 1403 | ret = __iwl_mvm_mac_start(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1404 | mutex_unlock(&mvm->mutex); |
| 1405 | |
| 1406 | return ret; |
| 1407 | } |
| 1408 | |
Eliad Peller | cf2c92d | 2014-11-04 11:43:54 +0200 | [diff] [blame] | 1409 | static void iwl_mvm_restart_complete(struct iwl_mvm *mvm) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1410 | { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1411 | int ret; |
| 1412 | |
| 1413 | mutex_lock(&mvm->mutex); |
| 1414 | |
| 1415 | clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status); |
Arik Nemtsov | b249250 | 2014-03-13 12:21:50 +0200 | [diff] [blame] | 1416 | iwl_mvm_d0i3_enable_tx(mvm, NULL); |
Johannes Berg | e7afe89 | 2015-04-21 09:21:46 +0200 | [diff] [blame] | 1417 | ret = iwl_mvm_update_quotas(mvm, true, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1418 | if (ret) |
| 1419 | IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n", |
| 1420 | ret); |
| 1421 | |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 1422 | /* allow transport/FW low power modes */ |
| 1423 | iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN); |
| 1424 | |
Arik Nemtsov | cbd2ae2 | 2014-09-14 19:13:54 +0300 | [diff] [blame] | 1425 | /* |
| 1426 | * If we have TDLS peers, remove them. We don't know the last seqno/PN |
| 1427 | * of packets the FW sent out, so we must reconnect. |
| 1428 | */ |
| 1429 | iwl_mvm_teardown_tdls_peers(mvm); |
| 1430 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1431 | mutex_unlock(&mvm->mutex); |
| 1432 | } |
| 1433 | |
Eliad Peller | 088070a | 2014-10-20 18:42:58 +0300 | [diff] [blame] | 1434 | static void iwl_mvm_resume_complete(struct iwl_mvm *mvm) |
| 1435 | { |
| 1436 | bool exit_now; |
| 1437 | |
| 1438 | if (!iwl_mvm_is_d0i3_supported(mvm)) |
| 1439 | return; |
| 1440 | |
| 1441 | mutex_lock(&mvm->d0i3_suspend_mutex); |
| 1442 | __clear_bit(D0I3_DEFER_WAKEUP, &mvm->d0i3_suspend_flags); |
| 1443 | exit_now = __test_and_clear_bit(D0I3_PENDING_WAKEUP, |
| 1444 | &mvm->d0i3_suspend_flags); |
| 1445 | mutex_unlock(&mvm->d0i3_suspend_mutex); |
| 1446 | |
| 1447 | if (exit_now) { |
| 1448 | IWL_DEBUG_RPM(mvm, "Run deferred d0i3 exit\n"); |
| 1449 | _iwl_mvm_exit_d0i3(mvm); |
| 1450 | } |
Eliad Peller | 6735943 | 2014-12-09 15:23:54 +0200 | [diff] [blame] | 1451 | |
| 1452 | if (mvm->trans->d0i3_mode == IWL_D0I3_MODE_ON_SUSPEND) |
| 1453 | if (!wait_event_timeout(mvm->d0i3_exit_waitq, |
| 1454 | !test_bit(IWL_MVM_STATUS_IN_D0I3, |
| 1455 | &mvm->status), |
| 1456 | HZ)) |
| 1457 | WARN_ONCE(1, "D0i3 exit on resume timed out\n"); |
Eliad Peller | 088070a | 2014-10-20 18:42:58 +0300 | [diff] [blame] | 1458 | } |
| 1459 | |
Eliad Peller | cf2c92d | 2014-11-04 11:43:54 +0200 | [diff] [blame] | 1460 | static void |
| 1461 | iwl_mvm_mac_reconfig_complete(struct ieee80211_hw *hw, |
| 1462 | enum ieee80211_reconfig_type reconfig_type) |
| 1463 | { |
| 1464 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1465 | |
| 1466 | switch (reconfig_type) { |
| 1467 | case IEEE80211_RECONFIG_TYPE_RESTART: |
| 1468 | iwl_mvm_restart_complete(mvm); |
| 1469 | break; |
| 1470 | case IEEE80211_RECONFIG_TYPE_SUSPEND: |
Eliad Peller | 088070a | 2014-10-20 18:42:58 +0300 | [diff] [blame] | 1471 | iwl_mvm_resume_complete(mvm); |
Eliad Peller | cf2c92d | 2014-11-04 11:43:54 +0200 | [diff] [blame] | 1472 | break; |
| 1473 | } |
| 1474 | } |
| 1475 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 1476 | void __iwl_mvm_mac_stop(struct iwl_mvm *mvm) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1477 | { |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 1478 | lockdep_assert_held(&mvm->mutex); |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 1479 | |
Johannes Berg | 91a8bcd | 2015-01-14 18:12:41 +0100 | [diff] [blame] | 1480 | /* firmware counters are obviously reset now, but we shouldn't |
| 1481 | * partially track so also clear the fw_reset_accu counters. |
| 1482 | */ |
| 1483 | memset(&mvm->accu_radio_stats, 0, sizeof(mvm->accu_radio_stats)); |
| 1484 | |
Eliad Peller | 0a79a0c0 | 2014-12-04 10:27:20 +0200 | [diff] [blame] | 1485 | /* |
| 1486 | * Disallow low power states when the FW is down by taking |
| 1487 | * the UCODE_DOWN ref. in case of ongoing hw restart the |
| 1488 | * ref is already taken, so don't take it again. |
| 1489 | */ |
| 1490 | if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) |
| 1491 | iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN); |
Eliad Peller | 7498cf4 | 2014-01-16 17:10:44 +0200 | [diff] [blame] | 1492 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1493 | /* async_handlers_wk is now blocked */ |
| 1494 | |
| 1495 | /* |
| 1496 | * The work item could be running or queued if the |
| 1497 | * ROC time event stops just as we get here. |
| 1498 | */ |
Eliad Peller | c779273 | 2015-04-19 11:41:04 +0300 | [diff] [blame] | 1499 | flush_work(&mvm->roc_done_wk); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1500 | |
| 1501 | iwl_trans_stop_device(mvm->trans); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1502 | |
| 1503 | iwl_mvm_async_handlers_purge(mvm); |
| 1504 | /* async_handlers_list is empty and will stay empty: HW is stopped */ |
| 1505 | |
| 1506 | /* 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] | 1507 | iwl_mvm_del_aux_sta(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1508 | |
Eliad Peller | 0a79a0c0 | 2014-12-04 10:27:20 +0200 | [diff] [blame] | 1509 | /* |
| 1510 | * Clear IN_HW_RESTART flag when stopping the hw (as restart_complete() |
| 1511 | * won't be called in this case). |
Arik Nemtsov | 8b2b9fb | 2015-03-04 13:16:03 +0200 | [diff] [blame] | 1512 | * But make sure to cleanup interfaces that have gone down before/during |
| 1513 | * HW restart was requested. |
Eliad Peller | 0a79a0c0 | 2014-12-04 10:27:20 +0200 | [diff] [blame] | 1514 | */ |
Arik Nemtsov | 8b2b9fb | 2015-03-04 13:16:03 +0200 | [diff] [blame] | 1515 | if (test_and_clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) |
| 1516 | ieee80211_iterate_interfaces(mvm->hw, 0, |
| 1517 | iwl_mvm_cleanup_iterator, mvm); |
Eliad Peller | 0a79a0c0 | 2014-12-04 10:27:20 +0200 | [diff] [blame] | 1518 | |
Alexander Bondar | 963221b | 2015-03-26 11:07:35 +0200 | [diff] [blame] | 1519 | /* We shouldn't have any UIDs still set. Loop over all the UIDs to |
| 1520 | * make sure there's nothing left there and warn if any is found. |
| 1521 | */ |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 1522 | if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) { |
Alexander Bondar | 963221b | 2015-03-26 11:07:35 +0200 | [diff] [blame] | 1523 | int i; |
| 1524 | |
Luciano Coelho | 507e4cd | 2015-03-19 22:58:33 +0200 | [diff] [blame] | 1525 | for (i = 0; i < mvm->max_scans; i++) { |
Luciano Coelho | 6185af2a | 2015-05-07 11:13:24 +0300 | [diff] [blame] | 1526 | if (WARN_ONCE(mvm->scan_uid_status[i], |
| 1527 | "UMAC scan UID %d status was not cleaned\n", |
| 1528 | i)) |
| 1529 | mvm->scan_uid_status[i] = 0; |
Alexander Bondar | 963221b | 2015-03-26 11:07:35 +0200 | [diff] [blame] | 1530 | } |
| 1531 | } |
| 1532 | |
Luciano Coelho | bc44886 | 2014-08-20 11:49:11 +0300 | [diff] [blame] | 1533 | mvm->ucode_loaded = false; |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 1534 | } |
Luciano Coelho | bc44886 | 2014-08-20 11:49:11 +0300 | [diff] [blame] | 1535 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 1536 | static void iwl_mvm_mac_stop(struct ieee80211_hw *hw) |
| 1537 | { |
| 1538 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1539 | |
| 1540 | flush_work(&mvm->d0i3_exit_work); |
| 1541 | flush_work(&mvm->async_handlers_wk); |
Emmanuel Grumbach | d2709ad | 2015-01-29 14:58:06 +0200 | [diff] [blame] | 1542 | cancel_delayed_work_sync(&mvm->fw_dump_wk); |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 1543 | iwl_mvm_free_fw_dump_desc(mvm); |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 1544 | |
| 1545 | mutex_lock(&mvm->mutex); |
| 1546 | __iwl_mvm_mac_stop(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1547 | mutex_unlock(&mvm->mutex); |
| 1548 | |
| 1549 | /* |
| 1550 | * The worker might have been waiting for the mutex, let it run and |
| 1551 | * discover that its list is now empty. |
| 1552 | */ |
| 1553 | cancel_work_sync(&mvm->async_handlers_wk); |
| 1554 | } |
| 1555 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1556 | static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm) |
| 1557 | { |
| 1558 | u16 i; |
| 1559 | |
| 1560 | lockdep_assert_held(&mvm->mutex); |
| 1561 | |
| 1562 | for (i = 0; i < NUM_PHY_CTX; i++) |
| 1563 | if (!mvm->phy_ctxts[i].ref) |
| 1564 | return &mvm->phy_ctxts[i]; |
| 1565 | |
| 1566 | IWL_ERR(mvm, "No available PHY context\n"); |
| 1567 | return NULL; |
| 1568 | } |
| 1569 | |
Avri Altman | d44c3fe | 2015-04-18 22:16:42 +0300 | [diff] [blame] | 1570 | static int iwl_mvm_set_tx_power_old(struct iwl_mvm *mvm, |
| 1571 | struct ieee80211_vif *vif, s8 tx_power) |
Emmanuel Grumbach | ee9c6cb | 2013-12-04 13:53:39 +0200 | [diff] [blame] | 1572 | { |
| 1573 | /* FW is in charge of regulatory enforcement */ |
| 1574 | struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = { |
| 1575 | .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id, |
| 1576 | .pwr_restriction = cpu_to_le16(tx_power), |
| 1577 | }; |
| 1578 | |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 1579 | return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0, |
Emmanuel Grumbach | ee9c6cb | 2013-12-04 13:53:39 +0200 | [diff] [blame] | 1580 | sizeof(reduce_txpwr_cmd), |
| 1581 | &reduce_txpwr_cmd); |
| 1582 | } |
| 1583 | |
Avri Altman | d44c3fe | 2015-04-18 22:16:42 +0300 | [diff] [blame] | 1584 | static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif, |
| 1585 | s16 tx_power) |
| 1586 | { |
| 1587 | struct iwl_dev_tx_power_cmd cmd = { |
| 1588 | .set_mode = 0, |
| 1589 | .mac_context_id = |
| 1590 | cpu_to_le32(iwl_mvm_vif_from_mac80211(vif)->id), |
| 1591 | .pwr_restriction = cpu_to_le16(8 * tx_power), |
| 1592 | }; |
| 1593 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 1594 | if (!fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_TX_POWER_DEV)) |
Avri Altman | d44c3fe | 2015-04-18 22:16:42 +0300 | [diff] [blame] | 1595 | return iwl_mvm_set_tx_power_old(mvm, vif, tx_power); |
| 1596 | |
| 1597 | if (tx_power == IWL_DEFAULT_MAX_TX_POWER) |
| 1598 | cmd.pwr_restriction = cpu_to_le16(IWL_DEV_MAX_TX_POWER); |
| 1599 | |
| 1600 | return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0, |
| 1601 | sizeof(cmd), &cmd); |
| 1602 | } |
| 1603 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1604 | static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw, |
| 1605 | struct ieee80211_vif *vif) |
| 1606 | { |
| 1607 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1608 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1609 | int ret; |
| 1610 | |
Emmanuel Grumbach | aa5e183 | 2015-03-07 19:35:37 +0200 | [diff] [blame] | 1611 | mvmvif->mvm = mvm; |
| 1612 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1613 | /* |
Gregory Greenman | d40fc48 | 2014-06-25 14:08:50 +0200 | [diff] [blame] | 1614 | * make sure D0i3 exit is completed, otherwise a target access |
| 1615 | * during tx queue configuration could be done when still in |
| 1616 | * D0i3 state. |
| 1617 | */ |
| 1618 | ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_ADD_IF); |
| 1619 | if (ret) |
| 1620 | return ret; |
| 1621 | |
| 1622 | /* |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1623 | * Not much to do here. The stack will not allow interface |
| 1624 | * types or combinations that we didn't advertise, so we |
| 1625 | * don't really have to check the types. |
| 1626 | */ |
| 1627 | |
| 1628 | mutex_lock(&mvm->mutex); |
| 1629 | |
Johannes Berg | 33cef92 | 2015-01-21 21:41:29 +0100 | [diff] [blame] | 1630 | /* make sure that beacon statistics don't go backwards with FW reset */ |
| 1631 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) |
| 1632 | mvmvif->beacon_stats.accu_num_beacons += |
| 1633 | mvmvif->beacon_stats.num_beacons; |
| 1634 | |
Eliad Peller | e89044d | 2013-07-16 17:33:26 +0300 | [diff] [blame] | 1635 | /* Allocate resources for the MAC context, and add it to the fw */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1636 | ret = iwl_mvm_mac_ctxt_init(mvm, vif); |
| 1637 | if (ret) |
| 1638 | goto out_unlock; |
| 1639 | |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 1640 | /* Counting number of interfaces is needed for legacy PM */ |
Ilan Peer | ea183d0 | 2013-07-23 14:41:53 +0300 | [diff] [blame] | 1641 | if (vif->type != NL80211_IFTYPE_P2P_DEVICE) |
| 1642 | mvm->vif_count++; |
Ilan Peer | ea183d0 | 2013-07-23 14:41:53 +0300 | [diff] [blame] | 1643 | |
| 1644 | /* |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1645 | * The AP binding flow can be done only after the beacon |
| 1646 | * template is configured (which happens only in the mac80211 |
| 1647 | * start_ap() flow), and adding the broadcast station can happen |
| 1648 | * only after the binding. |
| 1649 | * In addition, since modifying the MAC before adding a bcast |
| 1650 | * station is not allowed by the FW, delay the adding of MAC context to |
| 1651 | * the point where we can also add the bcast station. |
| 1652 | * In short: there's not much we can do at this point, other than |
| 1653 | * allocating resources :) |
| 1654 | */ |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1655 | if (vif->type == NL80211_IFTYPE_AP || |
| 1656 | vif->type == NL80211_IFTYPE_ADHOC) { |
Johannes Berg | 013290a | 2014-08-04 13:38:48 +0200 | [diff] [blame] | 1657 | ret = iwl_mvm_alloc_bcast_sta(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1658 | if (ret) { |
| 1659 | IWL_ERR(mvm, "Failed to allocate bcast sta\n"); |
| 1660 | goto out_release; |
| 1661 | } |
| 1662 | |
Emmanuel Grumbach | 77740cb | 2013-06-26 23:51:41 +0300 | [diff] [blame] | 1663 | iwl_mvm_vif_dbgfs_register(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1664 | goto out_unlock; |
| 1665 | } |
| 1666 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1667 | ret = iwl_mvm_mac_ctxt_add(mvm, vif); |
| 1668 | if (ret) |
| 1669 | goto out_release; |
| 1670 | |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 1671 | ret = iwl_mvm_power_update_mac(mvm); |
Emmanuel Grumbach | e5e7aa8 | 2014-01-27 16:57:33 +0200 | [diff] [blame] | 1672 | if (ret) |
Luciano Coelho | fd66fc1 | 2015-01-27 15:06:57 +0200 | [diff] [blame] | 1673 | goto out_remove_mac; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1674 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1675 | /* beacon filtering */ |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 1676 | ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0); |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 1677 | if (ret) |
| 1678 | goto out_remove_mac; |
| 1679 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1680 | if (!mvm->bf_allowed_vif && |
Emmanuel Grumbach | 73e5f2c | 2014-03-30 08:57:30 +0300 | [diff] [blame] | 1681 | vif->type == NL80211_IFTYPE_STATION && !vif->p2p) { |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1682 | mvm->bf_allowed_vif = mvmvif; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1683 | vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER | |
| 1684 | IEEE80211_VIF_SUPPORTS_CQM_RSSI; |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1685 | } |
| 1686 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1687 | /* |
| 1688 | * P2P_DEVICE interface does not have a channel context assigned to it, |
| 1689 | * so a dedicated PHY context is allocated to it and the corresponding |
| 1690 | * MAC context is bound to it at this stage. |
| 1691 | */ |
| 1692 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1693 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1694 | mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); |
| 1695 | if (!mvmvif->phy_ctxt) { |
| 1696 | ret = -ENOSPC; |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 1697 | goto out_free_bf; |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1698 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1699 | |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 1700 | iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1701 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 1702 | if (ret) |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 1703 | goto out_unref_phy; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1704 | |
Johannes Berg | 013290a | 2014-08-04 13:38:48 +0200 | [diff] [blame] | 1705 | ret = iwl_mvm_add_bcast_sta(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1706 | if (ret) |
| 1707 | goto out_unbind; |
| 1708 | |
| 1709 | /* Save a pointer to p2p device vif, so it can later be used to |
| 1710 | * update the p2p device MAC when a GO is started/stopped */ |
| 1711 | mvm->p2p_device_vif = vif; |
| 1712 | } |
| 1713 | |
Johannes Berg | 6349437 | 2013-03-26 10:47:53 +0100 | [diff] [blame] | 1714 | iwl_mvm_vif_dbgfs_register(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1715 | goto out_unlock; |
| 1716 | |
| 1717 | out_unbind: |
| 1718 | iwl_mvm_binding_remove_vif(mvm, vif); |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 1719 | out_unref_phy: |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1720 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 1721 | out_free_bf: |
| 1722 | if (mvm->bf_allowed_vif == mvmvif) { |
| 1723 | mvm->bf_allowed_vif = NULL; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1724 | vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER | |
| 1725 | IEEE80211_VIF_SUPPORTS_CQM_RSSI); |
Eliad Peller | bd3351b | 2013-07-16 17:50:17 +0300 | [diff] [blame] | 1726 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1727 | out_remove_mac: |
| 1728 | mvmvif->phy_ctxt = NULL; |
| 1729 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 1730 | out_release: |
Alexander Bondar | 5ee2b21 | 2013-03-05 10:16:40 +0200 | [diff] [blame] | 1731 | if (vif->type != NL80211_IFTYPE_P2P_DEVICE) |
| 1732 | mvm->vif_count--; |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 1733 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1734 | iwl_mvm_mac_ctxt_release(mvm, vif); |
| 1735 | out_unlock: |
| 1736 | mutex_unlock(&mvm->mutex); |
| 1737 | |
Gregory Greenman | d40fc48 | 2014-06-25 14:08:50 +0200 | [diff] [blame] | 1738 | iwl_mvm_unref(mvm, IWL_MVM_REF_ADD_IF); |
| 1739 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1740 | return ret; |
| 1741 | } |
| 1742 | |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 1743 | static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm, |
| 1744 | struct ieee80211_vif *vif) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1745 | { |
Arik Nemtsov | d92b732e | 2014-09-21 19:00:42 +0300 | [diff] [blame] | 1746 | u32 tfd_msk = iwl_mvm_mac_get_queues_mask(vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1747 | |
| 1748 | if (tfd_msk) { |
Emmanuel Grumbach | fe92e32 | 2015-03-11 09:34:31 +0200 | [diff] [blame] | 1749 | /* |
| 1750 | * mac80211 first removes all the stations of the vif and |
| 1751 | * then removes the vif. When it removes a station it also |
| 1752 | * flushes the AMPDU session. So by now, all the AMPDU sessions |
| 1753 | * of all the stations of this vif are closed, and the queues |
| 1754 | * of these AMPDU sessions are properly closed. |
| 1755 | * We still need to take care of the shared queues of the vif. |
| 1756 | * Flush them here. |
| 1757 | */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1758 | mutex_lock(&mvm->mutex); |
| 1759 | iwl_mvm_flush_tx_path(mvm, tfd_msk, true); |
| 1760 | mutex_unlock(&mvm->mutex); |
Emmanuel Grumbach | fe92e32 | 2015-03-11 09:34:31 +0200 | [diff] [blame] | 1761 | |
| 1762 | /* |
| 1763 | * There are transports that buffer a few frames in the host. |
| 1764 | * For these, the flush above isn't enough since while we were |
| 1765 | * flushing, the transport might have sent more frames to the |
| 1766 | * device. To solve this, wait here until the transport is |
| 1767 | * empty. Technically, this could have replaced the flush |
| 1768 | * above, but flush is much faster than draining. So flush |
| 1769 | * first, and drain to make sure we have no frames in the |
| 1770 | * transport anymore. |
| 1771 | * If a station still had frames on the shared queues, it is |
| 1772 | * already marked as draining, so to complete the draining, we |
| 1773 | * just need to wait until the transport is empty. |
| 1774 | */ |
| 1775 | iwl_trans_wait_tx_queue_empty(mvm->trans, tfd_msk); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1776 | } |
| 1777 | |
| 1778 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
| 1779 | /* |
| 1780 | * Flush the ROC worker which will flush the OFFCHANNEL queue. |
| 1781 | * We assume here that all the packets sent to the OFFCHANNEL |
| 1782 | * queue are sent in ROC session. |
| 1783 | */ |
| 1784 | flush_work(&mvm->roc_done_wk); |
| 1785 | } else { |
| 1786 | /* |
| 1787 | * By now, all the AC queues are empty. The AGG queues are |
| 1788 | * empty too. We already got all the Tx responses for all the |
| 1789 | * packets in the queues. The drain work can have been |
Emmanuel Grumbach | 0742a75 | 2013-06-10 14:10:33 +0300 | [diff] [blame] | 1790 | * triggered. Flush it. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1791 | */ |
| 1792 | flush_work(&mvm->sta_drained_wk); |
| 1793 | } |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 1794 | } |
| 1795 | |
| 1796 | static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw, |
| 1797 | struct ieee80211_vif *vif) |
| 1798 | { |
| 1799 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1800 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 1801 | |
| 1802 | iwl_mvm_prepare_mac_removal(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1803 | |
| 1804 | mutex_lock(&mvm->mutex); |
| 1805 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1806 | if (mvm->bf_allowed_vif == mvmvif) { |
| 1807 | mvm->bf_allowed_vif = NULL; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 1808 | vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER | |
| 1809 | IEEE80211_VIF_SUPPORTS_CQM_RSSI); |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 1810 | } |
| 1811 | |
Johannes Berg | 6349437 | 2013-03-26 10:47:53 +0100 | [diff] [blame] | 1812 | iwl_mvm_vif_dbgfs_clean(mvm, vif); |
| 1813 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1814 | /* |
| 1815 | * 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] | 1816 | * interface is be handled as part of the stop_ap flow. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1817 | */ |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 1818 | if (vif->type == NL80211_IFTYPE_AP || |
| 1819 | vif->type == NL80211_IFTYPE_ADHOC) { |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 1820 | #ifdef CONFIG_NL80211_TESTMODE |
| 1821 | if (vif == mvm->noa_vif) { |
| 1822 | mvm->noa_vif = NULL; |
| 1823 | mvm->noa_duration = 0; |
| 1824 | } |
| 1825 | #endif |
Johannes Berg | 013290a | 2014-08-04 13:38:48 +0200 | [diff] [blame] | 1826 | iwl_mvm_dealloc_bcast_sta(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1827 | goto out_release; |
| 1828 | } |
| 1829 | |
| 1830 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
| 1831 | mvm->p2p_device_vif = NULL; |
Johannes Berg | 013290a | 2014-08-04 13:38:48 +0200 | [diff] [blame] | 1832 | iwl_mvm_rm_bcast_sta(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1833 | iwl_mvm_binding_remove_vif(mvm, vif); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 1834 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1835 | mvmvif->phy_ctxt = NULL; |
| 1836 | } |
| 1837 | |
Alexander Bondar | 5ee2b21 | 2013-03-05 10:16:40 +0200 | [diff] [blame] | 1838 | if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1839 | mvm->vif_count--; |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 1840 | |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 1841 | iwl_mvm_power_update_mac(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1842 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 1843 | |
| 1844 | out_release: |
| 1845 | iwl_mvm_mac_ctxt_release(mvm, vif); |
| 1846 | mutex_unlock(&mvm->mutex); |
| 1847 | } |
| 1848 | |
| 1849 | static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed) |
| 1850 | { |
| 1851 | return 0; |
| 1852 | } |
| 1853 | |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1854 | struct iwl_mvm_mc_iter_data { |
| 1855 | struct iwl_mvm *mvm; |
| 1856 | int port_id; |
| 1857 | }; |
| 1858 | |
| 1859 | static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac, |
| 1860 | struct ieee80211_vif *vif) |
| 1861 | { |
| 1862 | struct iwl_mvm_mc_iter_data *data = _data; |
| 1863 | struct iwl_mvm *mvm = data->mvm; |
| 1864 | struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd; |
| 1865 | int ret, len; |
| 1866 | |
| 1867 | /* if we don't have free ports, mcast frames will be dropped */ |
| 1868 | if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM)) |
| 1869 | return; |
| 1870 | |
| 1871 | if (vif->type != NL80211_IFTYPE_STATION || |
| 1872 | !vif->bss_conf.assoc) |
| 1873 | return; |
| 1874 | |
| 1875 | cmd->port_id = data->port_id++; |
| 1876 | memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN); |
| 1877 | len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4); |
| 1878 | |
Emmanuel Grumbach | 1c4abec | 2014-05-08 09:48:10 +0300 | [diff] [blame] | 1879 | 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] | 1880 | if (ret) |
| 1881 | IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret); |
| 1882 | } |
| 1883 | |
| 1884 | static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm) |
| 1885 | { |
| 1886 | struct iwl_mvm_mc_iter_data iter_data = { |
| 1887 | .mvm = mvm, |
| 1888 | }; |
| 1889 | |
| 1890 | lockdep_assert_held(&mvm->mutex); |
| 1891 | |
| 1892 | if (WARN_ON_ONCE(!mvm->mcast_filter_cmd)) |
| 1893 | return; |
| 1894 | |
Emmanuel Grumbach | 1c4abec | 2014-05-08 09:48:10 +0300 | [diff] [blame] | 1895 | ieee80211_iterate_active_interfaces_atomic( |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1896 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 1897 | iwl_mvm_mc_iface_iterator, &iter_data); |
| 1898 | } |
| 1899 | |
| 1900 | static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw, |
| 1901 | struct netdev_hw_addr_list *mc_list) |
| 1902 | { |
| 1903 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1904 | struct iwl_mcast_filter_cmd *cmd; |
| 1905 | struct netdev_hw_addr *addr; |
Max Stepanov | f3bd58f | 2014-08-04 13:55:01 +0300 | [diff] [blame] | 1906 | int addr_count; |
| 1907 | bool pass_all; |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1908 | int len; |
| 1909 | |
Max Stepanov | f3bd58f | 2014-08-04 13:55:01 +0300 | [diff] [blame] | 1910 | addr_count = netdev_hw_addr_list_count(mc_list); |
| 1911 | pass_all = addr_count > MAX_MCAST_FILTERING_ADDRESSES || |
| 1912 | IWL_MVM_FW_MCAST_FILTER_PASS_ALL; |
| 1913 | if (pass_all) |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1914 | addr_count = 0; |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1915 | |
| 1916 | len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4); |
| 1917 | cmd = kzalloc(len, GFP_ATOMIC); |
| 1918 | if (!cmd) |
| 1919 | return 0; |
| 1920 | |
| 1921 | if (pass_all) { |
| 1922 | cmd->pass_all = 1; |
| 1923 | return (u64)(unsigned long)cmd; |
| 1924 | } |
| 1925 | |
| 1926 | netdev_hw_addr_list_for_each(addr, mc_list) { |
| 1927 | IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n", |
| 1928 | cmd->count, addr->addr); |
| 1929 | memcpy(&cmd->addr_list[cmd->count * ETH_ALEN], |
| 1930 | addr->addr, ETH_ALEN); |
| 1931 | cmd->count++; |
| 1932 | } |
| 1933 | |
| 1934 | return (u64)(unsigned long)cmd; |
| 1935 | } |
| 1936 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1937 | static void iwl_mvm_configure_filter(struct ieee80211_hw *hw, |
| 1938 | unsigned int changed_flags, |
| 1939 | unsigned int *total_flags, |
| 1940 | u64 multicast) |
| 1941 | { |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 1942 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 1943 | struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast; |
| 1944 | |
| 1945 | mutex_lock(&mvm->mutex); |
| 1946 | |
| 1947 | /* replace previous configuration */ |
| 1948 | kfree(mvm->mcast_filter_cmd); |
| 1949 | mvm->mcast_filter_cmd = cmd; |
| 1950 | |
| 1951 | if (!cmd) |
| 1952 | goto out; |
| 1953 | |
| 1954 | iwl_mvm_recalc_multicast(mvm); |
| 1955 | out: |
| 1956 | mutex_unlock(&mvm->mutex); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1957 | *total_flags = 0; |
| 1958 | } |
| 1959 | |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1960 | #ifdef CONFIG_IWLWIFI_BCAST_FILTERING |
| 1961 | struct iwl_bcast_iter_data { |
| 1962 | struct iwl_mvm *mvm; |
| 1963 | struct iwl_bcast_filter_cmd *cmd; |
| 1964 | u8 current_filter; |
| 1965 | }; |
| 1966 | |
| 1967 | static void |
| 1968 | iwl_mvm_set_bcast_filter(struct ieee80211_vif *vif, |
| 1969 | const struct iwl_fw_bcast_filter *in_filter, |
| 1970 | struct iwl_fw_bcast_filter *out_filter) |
| 1971 | { |
| 1972 | struct iwl_fw_bcast_filter_attr *attr; |
| 1973 | int i; |
| 1974 | |
| 1975 | memcpy(out_filter, in_filter, sizeof(*out_filter)); |
| 1976 | |
| 1977 | for (i = 0; i < ARRAY_SIZE(out_filter->attrs); i++) { |
| 1978 | attr = &out_filter->attrs[i]; |
| 1979 | |
| 1980 | if (!attr->mask) |
| 1981 | break; |
| 1982 | |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 1983 | switch (attr->reserved1) { |
| 1984 | case cpu_to_le16(BC_FILTER_MAGIC_IP): |
| 1985 | if (vif->bss_conf.arp_addr_cnt != 1) { |
| 1986 | attr->mask = 0; |
| 1987 | continue; |
| 1988 | } |
| 1989 | |
| 1990 | attr->val = vif->bss_conf.arp_addr_list[0]; |
| 1991 | break; |
| 1992 | case cpu_to_le16(BC_FILTER_MAGIC_MAC): |
| 1993 | attr->val = *(__be32 *)&vif->addr[2]; |
| 1994 | break; |
| 1995 | default: |
| 1996 | break; |
| 1997 | } |
| 1998 | attr->reserved1 = 0; |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 1999 | out_filter->num_attrs++; |
| 2000 | } |
| 2001 | } |
| 2002 | |
| 2003 | static void iwl_mvm_bcast_filter_iterator(void *_data, u8 *mac, |
| 2004 | struct ieee80211_vif *vif) |
| 2005 | { |
| 2006 | struct iwl_bcast_iter_data *data = _data; |
| 2007 | struct iwl_mvm *mvm = data->mvm; |
| 2008 | struct iwl_bcast_filter_cmd *cmd = data->cmd; |
| 2009 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 2010 | struct iwl_fw_bcast_mac *bcast_mac; |
| 2011 | int i; |
| 2012 | |
| 2013 | if (WARN_ON(mvmvif->id >= ARRAY_SIZE(cmd->macs))) |
| 2014 | return; |
| 2015 | |
| 2016 | bcast_mac = &cmd->macs[mvmvif->id]; |
| 2017 | |
Ilan Peer | e48393e | 2014-05-22 11:19:02 +0300 | [diff] [blame] | 2018 | /* |
| 2019 | * enable filtering only for associated stations, but not for P2P |
| 2020 | * Clients |
| 2021 | */ |
| 2022 | if (vif->type != NL80211_IFTYPE_STATION || vif->p2p || |
| 2023 | !vif->bss_conf.assoc) |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 2024 | return; |
| 2025 | |
| 2026 | bcast_mac->default_discard = 1; |
| 2027 | |
| 2028 | /* copy all configured filters */ |
| 2029 | for (i = 0; mvm->bcast_filters[i].attrs[0].mask; i++) { |
| 2030 | /* |
| 2031 | * Make sure we don't exceed our filters limit. |
| 2032 | * if there is still a valid filter to be configured, |
| 2033 | * be on the safe side and just allow bcast for this mac. |
| 2034 | */ |
| 2035 | if (WARN_ON_ONCE(data->current_filter >= |
| 2036 | ARRAY_SIZE(cmd->filters))) { |
| 2037 | bcast_mac->default_discard = 0; |
| 2038 | bcast_mac->attached_filters = 0; |
| 2039 | break; |
| 2040 | } |
| 2041 | |
| 2042 | iwl_mvm_set_bcast_filter(vif, |
| 2043 | &mvm->bcast_filters[i], |
| 2044 | &cmd->filters[data->current_filter]); |
| 2045 | |
| 2046 | /* skip current filter if it contains no attributes */ |
| 2047 | if (!cmd->filters[data->current_filter].num_attrs) |
| 2048 | continue; |
| 2049 | |
| 2050 | /* attach the filter to current mac */ |
| 2051 | bcast_mac->attached_filters |= |
| 2052 | cpu_to_le16(BIT(data->current_filter)); |
| 2053 | |
| 2054 | data->current_filter++; |
| 2055 | } |
| 2056 | } |
| 2057 | |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 2058 | bool iwl_mvm_bcast_filter_build_cmd(struct iwl_mvm *mvm, |
| 2059 | struct iwl_bcast_filter_cmd *cmd) |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 2060 | { |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 2061 | struct iwl_bcast_iter_data iter_data = { |
| 2062 | .mvm = mvm, |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 2063 | .cmd = cmd, |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 2064 | }; |
| 2065 | |
Max Stepanov | 3b8983b | 2014-10-15 11:27:16 +0300 | [diff] [blame] | 2066 | if (IWL_MVM_FW_BCAST_FILTER_PASS_ALL) |
| 2067 | return false; |
| 2068 | |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 2069 | memset(cmd, 0, sizeof(*cmd)); |
| 2070 | cmd->max_bcast_filters = ARRAY_SIZE(cmd->filters); |
| 2071 | cmd->max_macs = ARRAY_SIZE(cmd->macs); |
| 2072 | |
| 2073 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 2074 | /* use debugfs filters/macs if override is configured */ |
| 2075 | if (mvm->dbgfs_bcast_filtering.override) { |
| 2076 | memcpy(cmd->filters, &mvm->dbgfs_bcast_filtering.cmd.filters, |
| 2077 | sizeof(cmd->filters)); |
| 2078 | memcpy(cmd->macs, &mvm->dbgfs_bcast_filtering.cmd.macs, |
| 2079 | sizeof(cmd->macs)); |
| 2080 | return true; |
| 2081 | } |
| 2082 | #endif |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 2083 | |
| 2084 | /* if no filters are configured, do nothing */ |
| 2085 | if (!mvm->bcast_filters) |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 2086 | return false; |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 2087 | |
| 2088 | /* configure and attach these filters for each associated sta vif */ |
| 2089 | ieee80211_iterate_active_interfaces( |
| 2090 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 2091 | iwl_mvm_bcast_filter_iterator, &iter_data); |
| 2092 | |
Eliad Peller | de06a59 | 2014-01-08 10:11:12 +0200 | [diff] [blame] | 2093 | return true; |
| 2094 | } |
| 2095 | static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm, |
| 2096 | struct ieee80211_vif *vif) |
| 2097 | { |
| 2098 | struct iwl_bcast_filter_cmd cmd; |
| 2099 | |
| 2100 | if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING)) |
| 2101 | return 0; |
| 2102 | |
| 2103 | if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd)) |
| 2104 | return 0; |
| 2105 | |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 2106 | return iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0, |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 2107 | sizeof(cmd), &cmd); |
| 2108 | } |
| 2109 | #else |
| 2110 | static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm, |
| 2111 | struct ieee80211_vif *vif) |
| 2112 | { |
| 2113 | return 0; |
| 2114 | } |
| 2115 | #endif |
| 2116 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2117 | static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm, |
| 2118 | struct ieee80211_vif *vif, |
| 2119 | struct ieee80211_bss_conf *bss_conf, |
| 2120 | u32 changes) |
| 2121 | { |
| 2122 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 2123 | int ret; |
| 2124 | |
Ilan Peer | 6e97b0d | 2013-12-23 22:18:02 +0200 | [diff] [blame] | 2125 | /* |
| 2126 | * Re-calculate the tsf id, as the master-slave relations depend on the |
| 2127 | * beacon interval, which was not known when the station interface was |
| 2128 | * added. |
| 2129 | */ |
| 2130 | if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc) |
| 2131 | iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif); |
| 2132 | |
Johannes Berg | 3dfd3a9 | 2014-08-11 21:37:30 +0200 | [diff] [blame] | 2133 | /* |
| 2134 | * If we're not associated yet, take the (new) BSSID before associating |
| 2135 | * so the firmware knows. If we're already associated, then use the old |
| 2136 | * BSSID here, and we'll send a cleared one later in the CHANGED_ASSOC |
| 2137 | * branch for disassociation below. |
| 2138 | */ |
| 2139 | if (changes & BSS_CHANGED_BSSID && !mvmvif->associated) |
| 2140 | memcpy(mvmvif->bssid, bss_conf->bssid, ETH_ALEN); |
| 2141 | |
| 2142 | ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, mvmvif->bssid); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2143 | if (ret) |
| 2144 | IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr); |
| 2145 | |
Johannes Berg | 3dfd3a9 | 2014-08-11 21:37:30 +0200 | [diff] [blame] | 2146 | /* after sending it once, adopt mac80211 data */ |
| 2147 | memcpy(mvmvif->bssid, bss_conf->bssid, ETH_ALEN); |
| 2148 | mvmvif->associated = bss_conf->assoc; |
| 2149 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2150 | if (changes & BSS_CHANGED_ASSOC) { |
| 2151 | if (bss_conf->assoc) { |
Johannes Berg | 33cef92 | 2015-01-21 21:41:29 +0100 | [diff] [blame] | 2152 | /* clear statistics to get clean beacon counter */ |
| 2153 | iwl_mvm_request_statistics(mvm, true); |
| 2154 | memset(&mvmvif->beacon_stats, 0, |
| 2155 | sizeof(mvmvif->beacon_stats)); |
| 2156 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2157 | /* add quota for this interface */ |
Emmanuel Grumbach | 7754ae7 | 2015-02-26 15:14:35 +0200 | [diff] [blame] | 2158 | ret = iwl_mvm_update_quotas(mvm, true, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2159 | if (ret) { |
| 2160 | IWL_ERR(mvm, "failed to update quotas\n"); |
| 2161 | return; |
| 2162 | } |
Johannes Berg | 016d27e | 2013-05-03 11:16:15 +0200 | [diff] [blame] | 2163 | |
| 2164 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, |
| 2165 | &mvm->status)) { |
| 2166 | /* |
| 2167 | * If we're restarting then the firmware will |
| 2168 | * obviously have lost synchronisation with |
| 2169 | * the AP. It will attempt to synchronise by |
| 2170 | * itself, but we can make it more reliable by |
| 2171 | * scheduling a session protection time event. |
| 2172 | * |
| 2173 | * The firmware needs to receive a beacon to |
| 2174 | * catch up with synchronisation, use 110% of |
| 2175 | * the beacon interval. |
| 2176 | * |
| 2177 | * Set a large maximum delay to allow for more |
| 2178 | * than a single interface. |
| 2179 | */ |
| 2180 | u32 dur = (11 * vif->bss_conf.beacon_int) / 10; |
| 2181 | iwl_mvm_protect_session(mvm, vif, dur, dur, |
Liad Kaufman | d20d37b | 2014-07-06 17:14:39 +0300 | [diff] [blame] | 2182 | 5 * dur, false); |
Johannes Berg | 016d27e | 2013-05-03 11:16:15 +0200 | [diff] [blame] | 2183 | } |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 2184 | |
| 2185 | iwl_mvm_sf_update(mvm, vif, false); |
Alexander Bondar | 175a70b | 2013-04-14 20:59:37 +0300 | [diff] [blame] | 2186 | iwl_mvm_power_vif_assoc(mvm, vif); |
Emmanuel Grumbach | 697162a | 2014-07-30 15:56:42 +0300 | [diff] [blame] | 2187 | if (vif->p2p) { |
Eliad Peller | 29a90a4 | 2013-11-05 14:06:29 +0200 | [diff] [blame] | 2188 | iwl_mvm_ref(mvm, IWL_MVM_REF_P2P_CLIENT); |
Emmanuel Grumbach | 697162a | 2014-07-30 15:56:42 +0300 | [diff] [blame] | 2189 | iwl_mvm_update_smps(mvm, vif, |
| 2190 | IWL_MVM_SMPS_REQ_PROT, |
| 2191 | IEEE80211_SMPS_DYNAMIC); |
| 2192 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2193 | } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) { |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 2194 | /* |
| 2195 | * If update fails - SF might be running in associated |
| 2196 | * mode while disassociated - which is forbidden. |
| 2197 | */ |
| 2198 | WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false), |
| 2199 | "Failed to update SF upon disassociation\n"); |
| 2200 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2201 | /* remove AP station now that the MAC is unassoc */ |
| 2202 | ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id); |
| 2203 | if (ret) |
| 2204 | IWL_ERR(mvm, "failed to remove AP station\n"); |
Eliad Peller | 37577fe | 2013-12-05 17:19:39 +0200 | [diff] [blame] | 2205 | |
| 2206 | if (mvm->d0i3_ap_sta_id == mvmvif->ap_sta_id) |
| 2207 | mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2208 | mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT; |
| 2209 | /* remove quota for this interface */ |
Emmanuel Grumbach | 7754ae7 | 2015-02-26 15:14:35 +0200 | [diff] [blame] | 2210 | ret = iwl_mvm_update_quotas(mvm, false, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2211 | if (ret) |
| 2212 | IWL_ERR(mvm, "failed to update quotas\n"); |
Eliad Peller | 29a90a4 | 2013-11-05 14:06:29 +0200 | [diff] [blame] | 2213 | |
| 2214 | if (vif->p2p) |
| 2215 | iwl_mvm_unref(mvm, IWL_MVM_REF_P2P_CLIENT); |
Johannes Berg | 3dfd3a9 | 2014-08-11 21:37:30 +0200 | [diff] [blame] | 2216 | |
| 2217 | /* this will take the cleared BSSID from bss_conf */ |
| 2218 | ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL); |
| 2219 | if (ret) |
| 2220 | IWL_ERR(mvm, |
| 2221 | "failed to update MAC %pM (clear after unassoc)\n", |
| 2222 | vif->addr); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2223 | } |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 2224 | |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 2225 | iwl_mvm_recalc_multicast(mvm); |
Eliad Peller | c87163b | 2014-01-08 10:11:11 +0200 | [diff] [blame] | 2226 | iwl_mvm_configure_bcast_filter(mvm, vif); |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 2227 | |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 2228 | /* reset rssi values */ |
| 2229 | mvmvif->bf_data.ave_beacon_signal = 0; |
| 2230 | |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 2231 | iwl_mvm_bt_coex_vif_change(mvm); |
Emmanuel Grumbach | f94045e | 2014-01-06 13:38:55 +0200 | [diff] [blame] | 2232 | iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_TT, |
| 2233 | IEEE80211_SMPS_AUTOMATIC); |
Alexander Bondar | 989c650 | 2013-05-16 17:34:17 +0300 | [diff] [blame] | 2234 | } else if (changes & BSS_CHANGED_BEACON_INFO) { |
Johannes Berg | 210a544 | 2013-01-24 23:48:23 +0100 | [diff] [blame] | 2235 | /* |
| 2236 | * We received a beacon _after_ association so |
| 2237 | * remove the session protection. |
| 2238 | */ |
| 2239 | iwl_mvm_remove_time_event(mvm, mvmvif, |
| 2240 | &mvmvif->time_event_data); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2241 | } |
Eran Harary | cc87d32 | 2014-07-15 14:04:23 +0300 | [diff] [blame] | 2242 | |
| 2243 | if (changes & BSS_CHANGED_BEACON_INFO) { |
| 2244 | iwl_mvm_sf_update(mvm, vif, false); |
| 2245 | WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0)); |
| 2246 | } |
| 2247 | |
Johannes Berg | 1bc10d3 | 2014-08-26 14:25:46 +0200 | [diff] [blame] | 2248 | if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS | BSS_CHANGED_QOS)) { |
| 2249 | ret = iwl_mvm_power_update_mac(mvm); |
| 2250 | if (ret) |
| 2251 | IWL_ERR(mvm, "failed to update power mode\n"); |
| 2252 | } |
| 2253 | |
Matti Gottlieb | 88f2fd7 | 2013-07-09 15:25:46 +0300 | [diff] [blame] | 2254 | if (changes & BSS_CHANGED_TXPOWER) { |
| 2255 | IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n", |
| 2256 | bss_conf->txpower); |
| 2257 | iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower); |
| 2258 | } |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 2259 | |
| 2260 | if (changes & BSS_CHANGED_CQM) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 2261 | IWL_DEBUG_MAC80211(mvm, "cqm info_changed\n"); |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 2262 | /* reset cqm events tracking */ |
| 2263 | mvmvif->bf_data.last_cqm_event = 0; |
Avri Altman | fa7b2e7 | 2014-05-20 08:03:24 +0300 | [diff] [blame] | 2264 | if (mvmvif->bf_data.bf_enabled) { |
| 2265 | ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0); |
| 2266 | if (ret) |
| 2267 | IWL_ERR(mvm, |
| 2268 | "failed to update CQM thresholds\n"); |
| 2269 | } |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 2270 | } |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 2271 | |
| 2272 | if (changes & BSS_CHANGED_ARP_FILTER) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 2273 | IWL_DEBUG_MAC80211(mvm, "arp filter changed\n"); |
Eliad Peller | 2ee8f02 | 2014-01-13 19:07:09 +0200 | [diff] [blame] | 2274 | iwl_mvm_configure_bcast_filter(mvm, vif); |
| 2275 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2276 | } |
| 2277 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2278 | static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw, |
| 2279 | struct ieee80211_vif *vif) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2280 | { |
| 2281 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2282 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 2283 | int ret; |
| 2284 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2285 | /* |
| 2286 | * iwl_mvm_mac_ctxt_add() might read directly from the device |
| 2287 | * (the system time), so make sure it is available. |
| 2288 | */ |
| 2289 | ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_START_AP); |
| 2290 | if (ret) |
| 2291 | return ret; |
| 2292 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2293 | mutex_lock(&mvm->mutex); |
| 2294 | |
| 2295 | /* Send the beacon template */ |
| 2296 | ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif); |
| 2297 | if (ret) |
| 2298 | goto out_unlock; |
| 2299 | |
Ilan Peer | 6e97b0d | 2013-12-23 22:18:02 +0200 | [diff] [blame] | 2300 | /* |
| 2301 | * Re-calculate the tsf id, as the master-slave relations depend on the |
| 2302 | * beacon interval, which was not known when the AP interface was added. |
| 2303 | */ |
| 2304 | if (vif->type == NL80211_IFTYPE_AP) |
| 2305 | iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif); |
| 2306 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2307 | /* Add the mac context */ |
| 2308 | ret = iwl_mvm_mac_ctxt_add(mvm, vif); |
| 2309 | if (ret) |
| 2310 | goto out_unlock; |
| 2311 | |
| 2312 | /* Perform the binding */ |
| 2313 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 2314 | if (ret) |
| 2315 | goto out_remove; |
| 2316 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2317 | /* Send the bcast station. At this stage the TBTT and DTIM time events |
| 2318 | * are added and applied to the scheduler */ |
Johannes Berg | 013290a | 2014-08-04 13:38:48 +0200 | [diff] [blame] | 2319 | ret = iwl_mvm_send_add_bcast_sta(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2320 | if (ret) |
| 2321 | goto out_unbind; |
| 2322 | |
Ilan Peer | 5691e21 | 2013-12-31 21:05:50 +0200 | [diff] [blame] | 2323 | /* must be set before quota calculations */ |
| 2324 | mvmvif->ap_ibss_active = true; |
| 2325 | |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 2326 | /* power updated needs to be done before quotas */ |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 2327 | iwl_mvm_power_update_mac(mvm); |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 2328 | |
Emmanuel Grumbach | 7754ae7 | 2015-02-26 15:14:35 +0200 | [diff] [blame] | 2329 | ret = iwl_mvm_update_quotas(mvm, false, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2330 | if (ret) |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 2331 | goto out_quota_failed; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2332 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2333 | /* 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] | 2334 | if (vif->p2p && mvm->p2p_device_vif) |
Johannes Berg | 3dfd3a9 | 2014-08-11 21:37:30 +0200 | [diff] [blame] | 2335 | iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2336 | |
Eliad Peller | 29a90a4 | 2013-11-05 14:06:29 +0200 | [diff] [blame] | 2337 | iwl_mvm_ref(mvm, IWL_MVM_REF_AP_IBSS); |
| 2338 | |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 2339 | iwl_mvm_bt_coex_vif_change(mvm); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 2340 | |
Arik Nemtsov | f697267 | 2014-06-15 16:03:55 +0300 | [diff] [blame] | 2341 | /* we don't support TDLS during DCM */ |
| 2342 | if (iwl_mvm_phy_ctx_count(mvm) > 1) |
| 2343 | iwl_mvm_teardown_tdls_peers(mvm); |
| 2344 | |
Arik Nemtsov | 939e490 | 2015-03-08 12:19:42 +0200 | [diff] [blame] | 2345 | goto out_unlock; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2346 | |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 2347 | out_quota_failed: |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 2348 | iwl_mvm_power_update_mac(mvm); |
Ilan Peer | 5691e21 | 2013-12-31 21:05:50 +0200 | [diff] [blame] | 2349 | mvmvif->ap_ibss_active = false; |
Johannes Berg | 013290a | 2014-08-04 13:38:48 +0200 | [diff] [blame] | 2350 | iwl_mvm_send_rm_bcast_sta(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2351 | out_unbind: |
| 2352 | iwl_mvm_binding_remove_vif(mvm, vif); |
| 2353 | out_remove: |
| 2354 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 2355 | out_unlock: |
| 2356 | mutex_unlock(&mvm->mutex); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2357 | iwl_mvm_unref(mvm, IWL_MVM_REF_START_AP); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2358 | return ret; |
| 2359 | } |
| 2360 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2361 | static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw, |
| 2362 | struct ieee80211_vif *vif) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2363 | { |
| 2364 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2365 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 2366 | |
Johannes Berg | 38a12b5 | 2013-02-22 14:07:56 +0100 | [diff] [blame] | 2367 | iwl_mvm_prepare_mac_removal(mvm, vif); |
| 2368 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2369 | mutex_lock(&mvm->mutex); |
| 2370 | |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 2371 | /* Handle AP stop while in CSA */ |
Andrei Otcheretianski | 7f0a7c6 | 2014-05-04 11:48:12 +0300 | [diff] [blame] | 2372 | if (rcu_access_pointer(mvm->csa_vif) == vif) { |
| 2373 | iwl_mvm_remove_time_event(mvm, mvmvif, |
| 2374 | &mvmvif->time_event_data); |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 2375 | RCU_INIT_POINTER(mvm->csa_vif, NULL); |
Andrei Otcheretianski | 7f0a7c6 | 2014-05-04 11:48:12 +0300 | [diff] [blame] | 2376 | } |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 2377 | |
Andrei Otcheretianski | 003e5236 | 2014-05-25 17:24:22 +0300 | [diff] [blame] | 2378 | if (rcu_access_pointer(mvm->csa_tx_blocked_vif) == vif) { |
| 2379 | RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL); |
| 2380 | mvm->csa_tx_block_bcn_timeout = 0; |
| 2381 | } |
| 2382 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2383 | mvmvif->ap_ibss_active = false; |
David Spinadel | 1c87bba | 2014-02-27 16:41:52 +0200 | [diff] [blame] | 2384 | mvm->ap_last_beacon_gp2 = 0; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2385 | |
Emmanuel Grumbach | 8e484f0 | 2013-10-02 15:02:25 +0300 | [diff] [blame] | 2386 | iwl_mvm_bt_coex_vif_change(mvm); |
Emmanuel Grumbach | dac94da | 2013-06-18 07:35:27 +0300 | [diff] [blame] | 2387 | |
Eliad Peller | 29a90a4 | 2013-11-05 14:06:29 +0200 | [diff] [blame] | 2388 | iwl_mvm_unref(mvm, IWL_MVM_REF_AP_IBSS); |
| 2389 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2390 | /* 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] | 2391 | if (vif->p2p && mvm->p2p_device_vif) |
Johannes Berg | 3dfd3a9 | 2014-08-11 21:37:30 +0200 | [diff] [blame] | 2392 | iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2393 | |
Emmanuel Grumbach | 7754ae7 | 2015-02-26 15:14:35 +0200 | [diff] [blame] | 2394 | iwl_mvm_update_quotas(mvm, false, NULL); |
Johannes Berg | 013290a | 2014-08-04 13:38:48 +0200 | [diff] [blame] | 2395 | iwl_mvm_send_rm_bcast_sta(mvm, vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2396 | iwl_mvm_binding_remove_vif(mvm, vif); |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 2397 | |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 2398 | iwl_mvm_power_update_mac(mvm); |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 2399 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2400 | iwl_mvm_mac_ctxt_remove(mvm, vif); |
| 2401 | |
| 2402 | mutex_unlock(&mvm->mutex); |
| 2403 | } |
| 2404 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2405 | static void |
| 2406 | iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm, |
| 2407 | struct ieee80211_vif *vif, |
| 2408 | struct ieee80211_bss_conf *bss_conf, |
| 2409 | u32 changes) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2410 | { |
Ilan Peer | be2056f | 2013-12-04 16:47:14 +0200 | [diff] [blame] | 2411 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
Avri Altman | 8a5e366 | 2013-11-12 19:16:03 +0200 | [diff] [blame] | 2412 | |
Ilan Peer | be2056f | 2013-12-04 16:47:14 +0200 | [diff] [blame] | 2413 | /* Changes will be applied when the AP/IBSS is started */ |
| 2414 | if (!mvmvif->ap_ibss_active) |
| 2415 | return; |
| 2416 | |
Johannes Berg | 863230da | 2013-12-04 17:08:40 +0100 | [diff] [blame] | 2417 | if (changes & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT | |
Johannes Berg | f7d8b70 | 2014-09-09 15:49:19 +0200 | [diff] [blame] | 2418 | BSS_CHANGED_BANDWIDTH | BSS_CHANGED_QOS) && |
Johannes Berg | 3dfd3a9 | 2014-08-11 21:37:30 +0200 | [diff] [blame] | 2419 | iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL)) |
Johannes Berg | 863230da | 2013-12-04 17:08:40 +0100 | [diff] [blame] | 2420 | IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr); |
Avri Altman | 8a5e366 | 2013-11-12 19:16:03 +0200 | [diff] [blame] | 2421 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2422 | /* Need to send a new beacon template to the FW */ |
Johannes Berg | 863230da | 2013-12-04 17:08:40 +0100 | [diff] [blame] | 2423 | if (changes & BSS_CHANGED_BEACON && |
| 2424 | iwl_mvm_mac_ctxt_beacon_changed(mvm, vif)) |
| 2425 | IWL_WARN(mvm, "Failed updating beacon data\n"); |
Haim Dreyfuss | 79b7a69 | 2014-09-14 12:40:00 +0300 | [diff] [blame] | 2426 | |
| 2427 | if (changes & BSS_CHANGED_TXPOWER) { |
| 2428 | IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n", |
| 2429 | bss_conf->txpower); |
| 2430 | iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower); |
| 2431 | } |
| 2432 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2433 | } |
| 2434 | |
| 2435 | static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw, |
| 2436 | struct ieee80211_vif *vif, |
| 2437 | struct ieee80211_bss_conf *bss_conf, |
| 2438 | u32 changes) |
| 2439 | { |
| 2440 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2441 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2442 | /* |
| 2443 | * iwl_mvm_bss_info_changed_station() might call |
| 2444 | * iwl_mvm_protect_session(), which reads directly from |
| 2445 | * the device (the system time), so make sure it is available. |
| 2446 | */ |
| 2447 | if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_BSS_CHANGED)) |
| 2448 | return; |
| 2449 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2450 | mutex_lock(&mvm->mutex); |
| 2451 | |
Luciano Coelho | 7576d54 | 2015-05-12 09:30:36 +0300 | [diff] [blame] | 2452 | if (changes & BSS_CHANGED_IDLE && !bss_conf->idle) |
Luciano Coelho | c7d4248 | 2015-05-07 16:00:26 +0300 | [diff] [blame] | 2453 | iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true); |
David Spinadel | 723f02e | 2014-04-27 09:54:54 +0300 | [diff] [blame] | 2454 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2455 | switch (vif->type) { |
| 2456 | case NL80211_IFTYPE_STATION: |
| 2457 | iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes); |
| 2458 | break; |
| 2459 | case NL80211_IFTYPE_AP: |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2460 | case NL80211_IFTYPE_ADHOC: |
| 2461 | iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2462 | break; |
| 2463 | default: |
| 2464 | /* shouldn't happen */ |
| 2465 | WARN_ON_ONCE(1); |
| 2466 | } |
| 2467 | |
| 2468 | mutex_unlock(&mvm->mutex); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2469 | iwl_mvm_unref(mvm, IWL_MVM_REF_BSS_CHANGED); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2470 | } |
| 2471 | |
| 2472 | static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw, |
| 2473 | struct ieee80211_vif *vif, |
David Spinadel | c56ef67 | 2014-02-05 15:21:13 +0200 | [diff] [blame] | 2474 | struct ieee80211_scan_request *hw_req) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2475 | { |
| 2476 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2477 | int ret; |
| 2478 | |
Luciano Coelho | 6749dd8 | 2015-03-20 15:51:36 +0200 | [diff] [blame] | 2479 | if (hw_req->req.n_channels == 0 || |
| 2480 | hw_req->req.n_channels > mvm->fw->ucode_capa.n_scan_channels) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2481 | return -EINVAL; |
| 2482 | |
| 2483 | mutex_lock(&mvm->mutex); |
Luciano Coelho | 6749dd8 | 2015-03-20 15:51:36 +0200 | [diff] [blame] | 2484 | ret = iwl_mvm_reg_scan_start(mvm, vif, &hw_req->req, &hw_req->ies); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2485 | mutex_unlock(&mvm->mutex); |
Luciano Coelho | 6749dd8 | 2015-03-20 15:51:36 +0200 | [diff] [blame] | 2486 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2487 | return ret; |
| 2488 | } |
| 2489 | |
| 2490 | static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw, |
| 2491 | struct ieee80211_vif *vif) |
| 2492 | { |
| 2493 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2494 | |
| 2495 | mutex_lock(&mvm->mutex); |
| 2496 | |
Luciano Coelho | e7d3aba | 2015-02-06 10:19:05 +0200 | [diff] [blame] | 2497 | /* Due to a race condition, it's possible that mac80211 asks |
| 2498 | * us to stop a hw_scan when it's already stopped. This can |
| 2499 | * happen, for instance, if we stopped the scan ourselves, |
| 2500 | * called ieee80211_scan_completed() and the userspace called |
| 2501 | * cancel scan scan before ieee80211_scan_work() could run. |
| 2502 | * To handle that, simply return if the scan is not running. |
| 2503 | */ |
Luciano Coelho | 262888f | 2015-05-07 17:21:09 +0300 | [diff] [blame] | 2504 | if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) |
Luciano Coelho | c7d4248 | 2015-05-07 16:00:26 +0300 | [diff] [blame] | 2505 | iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2506 | |
| 2507 | mutex_unlock(&mvm->mutex); |
| 2508 | } |
| 2509 | |
| 2510 | static void |
| 2511 | iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw, |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 2512 | struct ieee80211_sta *sta, u16 tids, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2513 | int num_frames, |
| 2514 | enum ieee80211_frame_release_type reason, |
| 2515 | bool more_data) |
| 2516 | { |
| 2517 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2518 | |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 2519 | /* Called when we need to transmit (a) frame(s) from mac80211 */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2520 | |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 2521 | iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames, |
| 2522 | tids, more_data, false); |
| 2523 | } |
| 2524 | |
| 2525 | static void |
| 2526 | iwl_mvm_mac_release_buffered_frames(struct ieee80211_hw *hw, |
| 2527 | struct ieee80211_sta *sta, u16 tids, |
| 2528 | int num_frames, |
| 2529 | enum ieee80211_frame_release_type reason, |
| 2530 | bool more_data) |
| 2531 | { |
| 2532 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2533 | |
| 2534 | /* Called when we need to transmit (a) frame(s) from agg queue */ |
| 2535 | |
| 2536 | iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames, |
| 2537 | tids, more_data, true); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2538 | } |
| 2539 | |
| 2540 | static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw, |
| 2541 | struct ieee80211_vif *vif, |
| 2542 | enum sta_notify_cmd cmd, |
| 2543 | struct ieee80211_sta *sta) |
| 2544 | { |
| 2545 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 5b577a9 | 2013-11-14 18:20:04 +0100 | [diff] [blame] | 2546 | struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); |
Emmanuel Grumbach | c22b0ff | 2015-01-22 13:15:15 +0200 | [diff] [blame] | 2547 | unsigned long txqs = 0, tids = 0; |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 2548 | int tid; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2549 | |
Emmanuel Grumbach | c22b0ff | 2015-01-22 13:15:15 +0200 | [diff] [blame] | 2550 | spin_lock_bh(&mvmsta->lock); |
| 2551 | for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) { |
| 2552 | struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid]; |
| 2553 | |
| 2554 | if (tid_data->state != IWL_AGG_ON && |
| 2555 | tid_data->state != IWL_EMPTYING_HW_QUEUE_DELBA) |
| 2556 | continue; |
| 2557 | |
| 2558 | __set_bit(tid_data->txq_id, &txqs); |
| 2559 | |
| 2560 | if (iwl_mvm_tid_queued(tid_data) == 0) |
| 2561 | continue; |
| 2562 | |
| 2563 | __set_bit(tid, &tids); |
| 2564 | } |
| 2565 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2566 | switch (cmd) { |
| 2567 | case STA_NOTIFY_SLEEP: |
Emmanuel Grumbach | e3d4bc8 | 2013-05-07 14:08:24 +0300 | [diff] [blame] | 2568 | if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2569 | ieee80211_sta_block_awake(hw, sta, true); |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 2570 | |
Emmanuel Grumbach | c22b0ff | 2015-01-22 13:15:15 +0200 | [diff] [blame] | 2571 | for_each_set_bit(tid, &tids, IWL_MAX_TID_COUNT) |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 2572 | ieee80211_sta_set_buffered(sta, tid, true); |
Emmanuel Grumbach | c22b0ff | 2015-01-22 13:15:15 +0200 | [diff] [blame] | 2573 | |
| 2574 | if (txqs) |
| 2575 | iwl_trans_freeze_txq_timer(mvm->trans, txqs, true); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2576 | /* |
| 2577 | * The fw updates the STA to be asleep. Tx packets on the Tx |
| 2578 | * queues to this station will not be transmitted. The fw will |
| 2579 | * send a Tx response with TX_STATUS_FAIL_DEST_PS. |
| 2580 | */ |
| 2581 | break; |
| 2582 | case STA_NOTIFY_AWAKE: |
Emmanuel Grumbach | 881acd8 | 2013-03-19 16:16:00 +0200 | [diff] [blame] | 2583 | if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT)) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2584 | break; |
Emmanuel Grumbach | c22b0ff | 2015-01-22 13:15:15 +0200 | [diff] [blame] | 2585 | |
| 2586 | if (txqs) |
| 2587 | iwl_trans_freeze_txq_timer(mvm->trans, txqs, false); |
Johannes Berg | 9cc4071 | 2013-02-15 22:47:48 +0100 | [diff] [blame] | 2588 | iwl_mvm_sta_modify_ps_wake(mvm, sta); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2589 | break; |
| 2590 | default: |
| 2591 | break; |
| 2592 | } |
Emmanuel Grumbach | c22b0ff | 2015-01-22 13:15:15 +0200 | [diff] [blame] | 2593 | spin_unlock_bh(&mvmsta->lock); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2594 | } |
| 2595 | |
Johannes Berg | 1ddbbb0 | 2013-12-04 22:39:17 +0100 | [diff] [blame] | 2596 | static void iwl_mvm_sta_pre_rcu_remove(struct ieee80211_hw *hw, |
| 2597 | struct ieee80211_vif *vif, |
| 2598 | struct ieee80211_sta *sta) |
| 2599 | { |
| 2600 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 9d8ce6a | 2014-12-23 16:02:40 +0100 | [diff] [blame] | 2601 | struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta); |
Johannes Berg | 1ddbbb0 | 2013-12-04 22:39:17 +0100 | [diff] [blame] | 2602 | |
| 2603 | /* |
| 2604 | * This is called before mac80211 does RCU synchronisation, |
| 2605 | * so here we already invalidate our internal RCU-protected |
| 2606 | * station pointer. The rest of the code will thus no longer |
| 2607 | * be able to find the station this way, and we don't rely |
| 2608 | * on further RCU synchronisation after the sta_state() |
| 2609 | * callback deleted the station. |
| 2610 | */ |
| 2611 | mutex_lock(&mvm->mutex); |
| 2612 | if (sta == rcu_access_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id])) |
| 2613 | rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id], |
| 2614 | ERR_PTR(-ENOENT)); |
| 2615 | mutex_unlock(&mvm->mutex); |
| 2616 | } |
| 2617 | |
Johannes Berg | bd1ba66 | 2014-11-13 20:53:45 +0100 | [diff] [blame] | 2618 | static void iwl_mvm_check_uapsd(struct iwl_mvm *mvm, struct ieee80211_vif *vif, |
| 2619 | const u8 *bssid) |
| 2620 | { |
| 2621 | if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT)) |
| 2622 | return; |
| 2623 | |
| 2624 | if (iwlwifi_mod_params.uapsd_disable) { |
| 2625 | vif->driver_flags &= ~IEEE80211_VIF_SUPPORTS_UAPSD; |
| 2626 | return; |
| 2627 | } |
| 2628 | |
| 2629 | vif->driver_flags |= IEEE80211_VIF_SUPPORTS_UAPSD; |
| 2630 | } |
| 2631 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2632 | static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw, |
| 2633 | struct ieee80211_vif *vif, |
| 2634 | struct ieee80211_sta *sta, |
| 2635 | enum ieee80211_sta_state old_state, |
| 2636 | enum ieee80211_sta_state new_state) |
| 2637 | { |
| 2638 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2639 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 2640 | int ret; |
| 2641 | |
| 2642 | IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n", |
| 2643 | sta->addr, old_state, new_state); |
| 2644 | |
| 2645 | /* this would be a mac80211 bug ... but don't crash */ |
| 2646 | if (WARN_ON_ONCE(!mvmvif->phy_ctxt)) |
| 2647 | return -EINVAL; |
| 2648 | |
| 2649 | /* if a STA is being removed, reuse its ID */ |
| 2650 | flush_work(&mvm->sta_drained_wk); |
| 2651 | |
| 2652 | mutex_lock(&mvm->mutex); |
| 2653 | if (old_state == IEEE80211_STA_NOTEXIST && |
| 2654 | new_state == IEEE80211_STA_NONE) { |
Johannes Berg | 48bc130 | 2013-07-04 15:55:29 +0200 | [diff] [blame] | 2655 | /* |
| 2656 | * Firmware bug - it'll crash if the beacon interval is less |
| 2657 | * than 16. We can't avoid connecting at all, so refuse the |
| 2658 | * station state change, this will cause mac80211 to abandon |
| 2659 | * attempts to connect to this AP, and eventually wpa_s will |
| 2660 | * blacklist the AP... |
| 2661 | */ |
| 2662 | if (vif->type == NL80211_IFTYPE_STATION && |
| 2663 | vif->bss_conf.beacon_int < 16) { |
| 2664 | IWL_ERR(mvm, |
| 2665 | "AP %pM beacon interval is %d, refusing due to firmware bug!\n", |
| 2666 | sta->addr, vif->bss_conf.beacon_int); |
| 2667 | ret = -EINVAL; |
| 2668 | goto out_unlock; |
| 2669 | } |
Arik Nemtsov | cf7b491 | 2014-05-15 11:44:40 +0300 | [diff] [blame] | 2670 | |
| 2671 | if (sta->tdls && |
| 2672 | (vif->p2p || |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 2673 | iwl_mvm_tdls_sta_count(mvm, NULL) == |
| 2674 | IWL_MVM_TDLS_STA_COUNT || |
Arik Nemtsov | cf7b491 | 2014-05-15 11:44:40 +0300 | [diff] [blame] | 2675 | iwl_mvm_phy_ctx_count(mvm) > 1)) { |
| 2676 | IWL_DEBUG_MAC80211(mvm, "refusing TDLS sta\n"); |
| 2677 | ret = -EBUSY; |
| 2678 | goto out_unlock; |
| 2679 | } |
| 2680 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2681 | ret = iwl_mvm_add_sta(mvm, vif, sta); |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 2682 | if (sta->tdls && ret == 0) |
| 2683 | iwl_mvm_recalc_tdls_state(mvm, vif, true); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2684 | } else if (old_state == IEEE80211_STA_NONE && |
| 2685 | new_state == IEEE80211_STA_AUTH) { |
Haim Dreyfuss | e820c2d | 2014-04-06 11:19:09 +0300 | [diff] [blame] | 2686 | /* |
| 2687 | * EBS may be disabled due to previous failures reported by FW. |
| 2688 | * Reset EBS status here assuming environment has been changed. |
| 2689 | */ |
| 2690 | mvm->last_ebs_successful = true; |
Johannes Berg | bd1ba66 | 2014-11-13 20:53:45 +0100 | [diff] [blame] | 2691 | iwl_mvm_check_uapsd(mvm, vif, sta->addr); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2692 | ret = 0; |
| 2693 | } else if (old_state == IEEE80211_STA_AUTH && |
| 2694 | new_state == IEEE80211_STA_ASSOC) { |
Johannes Berg | 7a45397 | 2013-02-12 13:10:44 +0100 | [diff] [blame] | 2695 | ret = iwl_mvm_update_sta(mvm, vif, sta); |
| 2696 | if (ret == 0) |
| 2697 | iwl_mvm_rs_rate_init(mvm, sta, |
Eyal Shapira | b87c217 | 2013-11-09 23:37:55 +0200 | [diff] [blame] | 2698 | mvmvif->phy_ctxt->channel->band, |
| 2699 | true); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2700 | } else if (old_state == IEEE80211_STA_ASSOC && |
| 2701 | new_state == IEEE80211_STA_AUTHORIZED) { |
Arik Nemtsov | f59e0e3c | 2014-06-10 19:56:27 +0300 | [diff] [blame] | 2702 | |
| 2703 | /* we don't support TDLS during DCM */ |
| 2704 | if (iwl_mvm_phy_ctx_count(mvm) > 1) |
| 2705 | iwl_mvm_teardown_tdls_peers(mvm); |
| 2706 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 2707 | /* enable beacon filtering */ |
Avri Altman | fa7b2e7 | 2014-05-20 08:03:24 +0300 | [diff] [blame] | 2708 | WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2709 | ret = 0; |
| 2710 | } else if (old_state == IEEE80211_STA_AUTHORIZED && |
| 2711 | new_state == IEEE80211_STA_ASSOC) { |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 2712 | /* disable beacon filtering */ |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 2713 | WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif, 0)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2714 | ret = 0; |
| 2715 | } else if (old_state == IEEE80211_STA_ASSOC && |
| 2716 | new_state == IEEE80211_STA_AUTH) { |
| 2717 | ret = 0; |
| 2718 | } else if (old_state == IEEE80211_STA_AUTH && |
| 2719 | new_state == IEEE80211_STA_NONE) { |
| 2720 | ret = 0; |
| 2721 | } else if (old_state == IEEE80211_STA_NONE && |
| 2722 | new_state == IEEE80211_STA_NOTEXIST) { |
| 2723 | ret = iwl_mvm_rm_sta(mvm, vif, sta); |
Arik Nemtsov | fa3d07e | 2014-05-15 18:59:32 +0300 | [diff] [blame] | 2724 | if (sta->tdls) |
| 2725 | iwl_mvm_recalc_tdls_state(mvm, vif, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2726 | } else { |
| 2727 | ret = -EIO; |
| 2728 | } |
Johannes Berg | 48bc130 | 2013-07-04 15:55:29 +0200 | [diff] [blame] | 2729 | out_unlock: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2730 | mutex_unlock(&mvm->mutex); |
| 2731 | |
Liad Kaufman | 9c126cd | 2014-10-06 19:08:56 +0200 | [diff] [blame] | 2732 | if (sta->tdls && ret == 0) { |
| 2733 | if (old_state == IEEE80211_STA_NOTEXIST && |
| 2734 | new_state == IEEE80211_STA_NONE) |
| 2735 | ieee80211_reserve_tid(sta, IWL_MVM_TDLS_FW_TID); |
| 2736 | else if (old_state == IEEE80211_STA_NONE && |
| 2737 | new_state == IEEE80211_STA_NOTEXIST) |
| 2738 | ieee80211_unreserve_tid(sta, IWL_MVM_TDLS_FW_TID); |
| 2739 | } |
| 2740 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2741 | return ret; |
| 2742 | } |
| 2743 | |
| 2744 | static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value) |
| 2745 | { |
| 2746 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2747 | |
| 2748 | mvm->rts_threshold = value; |
| 2749 | |
| 2750 | return 0; |
| 2751 | } |
| 2752 | |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 2753 | static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw, |
| 2754 | struct ieee80211_vif *vif, |
| 2755 | struct ieee80211_sta *sta, u32 changed) |
| 2756 | { |
| 2757 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2758 | |
| 2759 | if (vif->type == NL80211_IFTYPE_STATION && |
| 2760 | changed & IEEE80211_RC_NSS_CHANGED) |
| 2761 | iwl_mvm_sf_update(mvm, vif, false); |
| 2762 | } |
| 2763 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2764 | static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw, |
| 2765 | struct ieee80211_vif *vif, u16 ac, |
| 2766 | const struct ieee80211_tx_queue_params *params) |
| 2767 | { |
| 2768 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2769 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 2770 | |
| 2771 | mvmvif->queue_params[ac] = *params; |
| 2772 | |
| 2773 | /* |
| 2774 | * No need to update right away, we'll get BSS_CHANGED_QOS |
| 2775 | * The exception is P2P_DEVICE interface which needs immediate update. |
| 2776 | */ |
| 2777 | if (vif->type == NL80211_IFTYPE_P2P_DEVICE) { |
| 2778 | int ret; |
| 2779 | |
| 2780 | mutex_lock(&mvm->mutex); |
Johannes Berg | 3dfd3a9 | 2014-08-11 21:37:30 +0200 | [diff] [blame] | 2781 | ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2782 | mutex_unlock(&mvm->mutex); |
| 2783 | return ret; |
| 2784 | } |
| 2785 | return 0; |
| 2786 | } |
| 2787 | |
| 2788 | static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw, |
| 2789 | struct ieee80211_vif *vif) |
| 2790 | { |
| 2791 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2792 | u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS, |
| 2793 | 200 + vif->bss_conf.beacon_int); |
| 2794 | u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS, |
| 2795 | 100 + vif->bss_conf.beacon_int); |
| 2796 | |
| 2797 | if (WARN_ON_ONCE(vif->bss_conf.assoc)) |
| 2798 | return; |
| 2799 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2800 | /* |
| 2801 | * iwl_mvm_protect_session() reads directly from the device |
| 2802 | * (the system time), so make sure it is available. |
| 2803 | */ |
| 2804 | if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PREPARE_TX)) |
| 2805 | return; |
| 2806 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2807 | mutex_lock(&mvm->mutex); |
| 2808 | /* Try really hard to protect the session and hear a beacon */ |
Liad Kaufman | d20d37b | 2014-07-06 17:14:39 +0300 | [diff] [blame] | 2809 | iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2810 | mutex_unlock(&mvm->mutex); |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 2811 | |
| 2812 | iwl_mvm_unref(mvm, IWL_MVM_REF_PREPARE_TX); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2813 | } |
| 2814 | |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2815 | static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw, |
| 2816 | struct ieee80211_vif *vif, |
| 2817 | struct cfg80211_sched_scan_request *req, |
David Spinadel | 633e271 | 2014-02-06 16:15:23 +0200 | [diff] [blame] | 2818 | struct ieee80211_scan_ies *ies) |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2819 | { |
| 2820 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Luciano Coelho | 6749dd8 | 2015-03-20 15:51:36 +0200 | [diff] [blame] | 2821 | |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2822 | int ret; |
| 2823 | |
| 2824 | mutex_lock(&mvm->mutex); |
| 2825 | |
Luciano Coelho | 1f94038 | 2015-02-10 13:03:38 +0200 | [diff] [blame] | 2826 | if (!vif->bss_conf.idle) { |
David Spinadel | bd5e474 | 2014-04-24 13:15:29 +0300 | [diff] [blame] | 2827 | ret = -EBUSY; |
| 2828 | goto out; |
| 2829 | } |
| 2830 | |
Luciano Coelho | 19945df | 2015-03-20 16:11:28 +0200 | [diff] [blame] | 2831 | ret = iwl_mvm_sched_scan_start(mvm, vif, req, ies, IWL_MVM_SCAN_SCHED); |
David Spinadel | d249622 | 2014-05-20 12:46:37 +0300 | [diff] [blame] | 2832 | |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2833 | out: |
| 2834 | mutex_unlock(&mvm->mutex); |
| 2835 | return ret; |
| 2836 | } |
| 2837 | |
Johannes Berg | 37e3308 | 2014-02-17 10:48:17 +0100 | [diff] [blame] | 2838 | static int iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw, |
| 2839 | struct ieee80211_vif *vif) |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2840 | { |
| 2841 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Arik Nemtsov | 33ea27f | 2014-02-10 15:34:29 +0200 | [diff] [blame] | 2842 | int ret; |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2843 | |
| 2844 | mutex_lock(&mvm->mutex); |
Luciano Coelho | e7d3aba | 2015-02-06 10:19:05 +0200 | [diff] [blame] | 2845 | |
| 2846 | /* Due to a race condition, it's possible that mac80211 asks |
| 2847 | * us to stop a sched_scan when it's already stopped. This |
| 2848 | * can happen, for instance, if we stopped the scan ourselves, |
| 2849 | * called ieee80211_sched_scan_stopped() and the userspace called |
| 2850 | * stop sched scan scan before ieee80211_sched_scan_stopped_work() |
| 2851 | * could run. To handle this, simply return if the scan is |
| 2852 | * not running. |
| 2853 | */ |
Luciano Coelho | 262888f | 2015-05-07 17:21:09 +0300 | [diff] [blame] | 2854 | if (!(mvm->scan_status & IWL_MVM_SCAN_SCHED)) { |
Luciano Coelho | e7d3aba | 2015-02-06 10:19:05 +0200 | [diff] [blame] | 2855 | mutex_unlock(&mvm->mutex); |
| 2856 | return 0; |
| 2857 | } |
| 2858 | |
Luciano Coelho | c7d4248 | 2015-05-07 16:00:26 +0300 | [diff] [blame] | 2859 | ret = iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, false); |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2860 | mutex_unlock(&mvm->mutex); |
Arik Nemtsov | 33ea27f | 2014-02-10 15:34:29 +0200 | [diff] [blame] | 2861 | iwl_mvm_wait_for_async_handlers(mvm); |
Johannes Berg | 37e3308 | 2014-02-17 10:48:17 +0100 | [diff] [blame] | 2862 | |
Arik Nemtsov | 33ea27f | 2014-02-10 15:34:29 +0200 | [diff] [blame] | 2863 | return ret; |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 2864 | } |
| 2865 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2866 | static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw, |
| 2867 | enum set_key_cmd cmd, |
| 2868 | struct ieee80211_vif *vif, |
| 2869 | struct ieee80211_sta *sta, |
| 2870 | struct ieee80211_key_conf *key) |
| 2871 | { |
| 2872 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2873 | int ret; |
| 2874 | |
| 2875 | if (iwlwifi_mod_params.sw_crypto) { |
| 2876 | IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n"); |
| 2877 | return -EOPNOTSUPP; |
| 2878 | } |
| 2879 | |
| 2880 | switch (key->cipher) { |
| 2881 | case WLAN_CIPHER_SUITE_TKIP: |
| 2882 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
| 2883 | /* fall-through */ |
| 2884 | case WLAN_CIPHER_SUITE_CCMP: |
| 2885 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 2886 | break; |
| 2887 | case WLAN_CIPHER_SUITE_AES_CMAC: |
| 2888 | WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE)); |
| 2889 | break; |
| 2890 | case WLAN_CIPHER_SUITE_WEP40: |
| 2891 | case WLAN_CIPHER_SUITE_WEP104: |
Johannes Berg | ba3943b | 2014-11-12 23:54:48 +0100 | [diff] [blame] | 2892 | /* For non-client mode, only use WEP keys for TX as we probably |
| 2893 | * don't have a station yet anyway and would then have to keep |
| 2894 | * track of the keys, linking them to each of the clients/peers |
| 2895 | * as they appear. For now, don't do that, for performance WEP |
| 2896 | * offload doesn't really matter much, but we need it for some |
| 2897 | * other offload features in client mode. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2898 | */ |
Johannes Berg | ba3943b | 2014-11-12 23:54:48 +0100 | [diff] [blame] | 2899 | if (vif->type != NL80211_IFTYPE_STATION) |
| 2900 | return 0; |
| 2901 | break; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2902 | default: |
Max Stepanov | e36e543 | 2013-08-27 19:56:13 +0300 | [diff] [blame] | 2903 | /* currently FW supports only one optional cipher scheme */ |
| 2904 | if (hw->n_cipher_schemes && |
| 2905 | hw->cipher_schemes->cipher == key->cipher) |
| 2906 | key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE; |
| 2907 | else |
| 2908 | return -EOPNOTSUPP; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2909 | } |
| 2910 | |
| 2911 | mutex_lock(&mvm->mutex); |
| 2912 | |
| 2913 | switch (cmd) { |
| 2914 | case SET_KEY: |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2915 | if ((vif->type == NL80211_IFTYPE_ADHOC || |
| 2916 | vif->type == NL80211_IFTYPE_AP) && !sta) { |
| 2917 | /* |
| 2918 | * GTK on AP interface is a TX-only key, return 0; |
| 2919 | * on IBSS they're per-station and because we're lazy |
| 2920 | * we don't support them for RX, so do the same. |
| 2921 | */ |
Johannes Berg | 6caffd4 | 2013-03-06 13:15:21 +0100 | [diff] [blame] | 2922 | ret = 0; |
| 2923 | key->hw_key_idx = STA_KEY_IDX_INVALID; |
| 2924 | break; |
| 2925 | } |
| 2926 | |
Johannes Berg | b546dcd | 2015-04-20 17:31:10 +0200 | [diff] [blame] | 2927 | /* During FW restart, in order to restore the state as it was, |
| 2928 | * don't try to reprogram keys we previously failed for. |
| 2929 | */ |
| 2930 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) && |
| 2931 | key->hw_key_idx == STA_KEY_IDX_INVALID) { |
| 2932 | IWL_DEBUG_MAC80211(mvm, |
| 2933 | "skip invalid idx key programming during restart\n"); |
| 2934 | ret = 0; |
| 2935 | break; |
| 2936 | } |
| 2937 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2938 | IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n"); |
Johannes Berg | b546dcd | 2015-04-20 17:31:10 +0200 | [diff] [blame] | 2939 | ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, |
| 2940 | test_bit(IWL_MVM_STATUS_IN_HW_RESTART, |
| 2941 | &mvm->status)); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2942 | if (ret) { |
| 2943 | IWL_WARN(mvm, "set key failed\n"); |
| 2944 | /* |
| 2945 | * can't add key for RX, but we don't need it |
| 2946 | * in the device for TX so still return 0 |
| 2947 | */ |
Johannes Berg | 6caffd4 | 2013-03-06 13:15:21 +0100 | [diff] [blame] | 2948 | key->hw_key_idx = STA_KEY_IDX_INVALID; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2949 | ret = 0; |
| 2950 | } |
| 2951 | |
| 2952 | break; |
| 2953 | case DISABLE_KEY: |
Johannes Berg | 6caffd4 | 2013-03-06 13:15:21 +0100 | [diff] [blame] | 2954 | if (key->hw_key_idx == STA_KEY_IDX_INVALID) { |
| 2955 | ret = 0; |
| 2956 | break; |
| 2957 | } |
| 2958 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2959 | IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n"); |
| 2960 | ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key); |
| 2961 | break; |
| 2962 | default: |
| 2963 | ret = -EINVAL; |
| 2964 | } |
| 2965 | |
| 2966 | mutex_unlock(&mvm->mutex); |
| 2967 | return ret; |
| 2968 | } |
| 2969 | |
| 2970 | static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw, |
| 2971 | struct ieee80211_vif *vif, |
| 2972 | struct ieee80211_key_conf *keyconf, |
| 2973 | struct ieee80211_sta *sta, |
| 2974 | u32 iv32, u16 *phase1key) |
| 2975 | { |
| 2976 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 2977 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 2978 | if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID) |
| 2979 | return; |
| 2980 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 2981 | iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key); |
| 2982 | } |
| 2983 | |
| 2984 | |
Ariej Marjieh | b112889 | 2014-07-16 21:11:12 +0300 | [diff] [blame] | 2985 | static bool iwl_mvm_rx_aux_roc(struct iwl_notif_wait_data *notif_wait, |
| 2986 | struct iwl_rx_packet *pkt, void *data) |
| 2987 | { |
| 2988 | struct iwl_mvm *mvm = |
| 2989 | container_of(notif_wait, struct iwl_mvm, notif_wait); |
| 2990 | struct iwl_hs20_roc_res *resp; |
| 2991 | int resp_len = iwl_rx_packet_payload_len(pkt); |
| 2992 | struct iwl_mvm_time_event_data *te_data = data; |
| 2993 | |
| 2994 | if (WARN_ON(pkt->hdr.cmd != HOT_SPOT_CMD)) |
| 2995 | return true; |
| 2996 | |
| 2997 | if (WARN_ON_ONCE(resp_len != sizeof(*resp))) { |
| 2998 | IWL_ERR(mvm, "Invalid HOT_SPOT_CMD response\n"); |
| 2999 | return true; |
| 3000 | } |
| 3001 | |
| 3002 | resp = (void *)pkt->data; |
| 3003 | |
| 3004 | IWL_DEBUG_TE(mvm, |
| 3005 | "Aux ROC: Recieved response from ucode: status=%d uid=%d\n", |
| 3006 | resp->status, resp->event_unique_id); |
| 3007 | |
| 3008 | te_data->uid = le32_to_cpu(resp->event_unique_id); |
| 3009 | IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n", |
| 3010 | te_data->uid); |
| 3011 | |
| 3012 | spin_lock_bh(&mvm->time_event_lock); |
| 3013 | list_add_tail(&te_data->list, &mvm->aux_roc_te_list); |
| 3014 | spin_unlock_bh(&mvm->time_event_lock); |
| 3015 | |
| 3016 | return true; |
| 3017 | } |
| 3018 | |
Matti Gottlieb | 35d3dab | 2015-03-29 13:38:16 +0300 | [diff] [blame] | 3019 | #define AUX_ROC_MAX_DELAY_ON_CHANNEL 200 |
Ariej Marjieh | b112889 | 2014-07-16 21:11:12 +0300 | [diff] [blame] | 3020 | static int iwl_mvm_send_aux_roc_cmd(struct iwl_mvm *mvm, |
| 3021 | struct ieee80211_channel *channel, |
| 3022 | struct ieee80211_vif *vif, |
| 3023 | int duration) |
| 3024 | { |
| 3025 | int res, time_reg = DEVICE_SYSTEM_TIME_REG; |
| 3026 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 3027 | struct iwl_mvm_time_event_data *te_data = &mvmvif->hs_time_event_data; |
| 3028 | static const u8 time_event_response[] = { HOT_SPOT_CMD }; |
| 3029 | struct iwl_notification_wait wait_time_event; |
| 3030 | struct iwl_hs20_roc_req aux_roc_req = { |
| 3031 | .action = cpu_to_le32(FW_CTXT_ACTION_ADD), |
| 3032 | .id_and_color = |
| 3033 | cpu_to_le32(FW_CMD_ID_AND_COLOR(MAC_INDEX_AUX, 0)), |
| 3034 | .sta_id_and_color = cpu_to_le32(mvm->aux_sta.sta_id), |
| 3035 | /* Set the channel info data */ |
| 3036 | .channel_info.band = (channel->band == IEEE80211_BAND_2GHZ) ? |
| 3037 | PHY_BAND_24 : PHY_BAND_5, |
| 3038 | .channel_info.channel = channel->hw_value, |
| 3039 | .channel_info.width = PHY_VHT_CHANNEL_MODE20, |
| 3040 | /* Set the time and duration */ |
| 3041 | .apply_time = cpu_to_le32(iwl_read_prph(mvm->trans, time_reg)), |
| 3042 | .apply_time_max_delay = |
| 3043 | cpu_to_le32(MSEC_TO_TU(AUX_ROC_MAX_DELAY_ON_CHANNEL)), |
| 3044 | .duration = cpu_to_le32(MSEC_TO_TU(duration)), |
| 3045 | }; |
| 3046 | |
| 3047 | /* Set the node address */ |
| 3048 | memcpy(aux_roc_req.node_addr, vif->addr, ETH_ALEN); |
| 3049 | |
Matti Gottlieb | a6cc516 | 2014-09-29 11:46:04 +0300 | [diff] [blame] | 3050 | lockdep_assert_held(&mvm->mutex); |
| 3051 | |
| 3052 | spin_lock_bh(&mvm->time_event_lock); |
| 3053 | |
| 3054 | if (WARN_ON(te_data->id == HOT_SPOT_CMD)) { |
| 3055 | spin_unlock_bh(&mvm->time_event_lock); |
| 3056 | return -EIO; |
| 3057 | } |
| 3058 | |
Ariej Marjieh | b112889 | 2014-07-16 21:11:12 +0300 | [diff] [blame] | 3059 | te_data->vif = vif; |
| 3060 | te_data->duration = duration; |
| 3061 | te_data->id = HOT_SPOT_CMD; |
| 3062 | |
Ariej Marjieh | b112889 | 2014-07-16 21:11:12 +0300 | [diff] [blame] | 3063 | spin_unlock_bh(&mvm->time_event_lock); |
| 3064 | |
| 3065 | /* |
| 3066 | * Use a notification wait, which really just processes the |
| 3067 | * command response and doesn't wait for anything, in order |
| 3068 | * to be able to process the response and get the UID inside |
| 3069 | * the RX path. Using CMD_WANT_SKB doesn't work because it |
| 3070 | * stores the buffer and then wakes up this thread, by which |
| 3071 | * time another notification (that the time event started) |
| 3072 | * might already be processed unsuccessfully. |
| 3073 | */ |
| 3074 | iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event, |
| 3075 | time_event_response, |
| 3076 | ARRAY_SIZE(time_event_response), |
| 3077 | iwl_mvm_rx_aux_roc, te_data); |
| 3078 | |
| 3079 | res = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0, sizeof(aux_roc_req), |
| 3080 | &aux_roc_req); |
| 3081 | |
| 3082 | if (res) { |
| 3083 | IWL_ERR(mvm, "Couldn't send HOT_SPOT_CMD: %d\n", res); |
| 3084 | iwl_remove_notification(&mvm->notif_wait, &wait_time_event); |
| 3085 | goto out_clear_te; |
| 3086 | } |
| 3087 | |
| 3088 | /* No need to wait for anything, so just pass 1 (0 isn't valid) */ |
| 3089 | res = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1); |
| 3090 | /* should never fail */ |
| 3091 | WARN_ON_ONCE(res); |
| 3092 | |
| 3093 | if (res) { |
| 3094 | out_clear_te: |
| 3095 | spin_lock_bh(&mvm->time_event_lock); |
| 3096 | iwl_mvm_te_clear_data(mvm, te_data); |
| 3097 | spin_unlock_bh(&mvm->time_event_lock); |
| 3098 | } |
| 3099 | |
| 3100 | return res; |
| 3101 | } |
| 3102 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3103 | static int iwl_mvm_roc(struct ieee80211_hw *hw, |
| 3104 | struct ieee80211_vif *vif, |
| 3105 | struct ieee80211_channel *channel, |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 3106 | int duration, |
| 3107 | enum ieee80211_roc_type type) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3108 | { |
| 3109 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 3110 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3111 | struct cfg80211_chan_def chandef; |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 3112 | struct iwl_mvm_phy_ctxt *phy_ctxt; |
| 3113 | int ret, i; |
| 3114 | |
| 3115 | IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value, |
| 3116 | duration, type); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3117 | |
Matti Gottlieb | 6ed1316 | 2015-03-30 16:50:07 +0300 | [diff] [blame] | 3118 | flush_work(&mvm->roc_done_wk); |
| 3119 | |
Matti Gottlieb | a6cc516 | 2014-09-29 11:46:04 +0300 | [diff] [blame] | 3120 | mutex_lock(&mvm->mutex); |
| 3121 | |
Ariej Marjieh | b112889 | 2014-07-16 21:11:12 +0300 | [diff] [blame] | 3122 | switch (vif->type) { |
| 3123 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 3124 | if (fw_has_capa(&mvm->fw->ucode_capa, |
| 3125 | IWL_UCODE_TLV_CAPA_HOTSPOT_SUPPORT)) { |
Luciano Coelho | 5ac6c72 | 2014-10-21 16:12:18 +0300 | [diff] [blame] | 3126 | /* Use aux roc framework (HS20) */ |
| 3127 | ret = iwl_mvm_send_aux_roc_cmd(mvm, channel, |
| 3128 | vif, duration); |
| 3129 | goto out_unlock; |
| 3130 | } |
| 3131 | IWL_ERR(mvm, "hotspot not supported\n"); |
| 3132 | ret = -EINVAL; |
Matti Gottlieb | a6cc516 | 2014-09-29 11:46:04 +0300 | [diff] [blame] | 3133 | goto out_unlock; |
Ariej Marjieh | b112889 | 2014-07-16 21:11:12 +0300 | [diff] [blame] | 3134 | case NL80211_IFTYPE_P2P_DEVICE: |
| 3135 | /* handle below */ |
| 3136 | break; |
| 3137 | default: |
| 3138 | IWL_ERR(mvm, "vif isn't P2P_DEVICE: %d\n", vif->type); |
Matti Gottlieb | a6cc516 | 2014-09-29 11:46:04 +0300 | [diff] [blame] | 3139 | ret = -EINVAL; |
| 3140 | goto out_unlock; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3141 | } |
| 3142 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 3143 | for (i = 0; i < NUM_PHY_CTX; i++) { |
| 3144 | phy_ctxt = &mvm->phy_ctxts[i]; |
| 3145 | if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt) |
| 3146 | continue; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3147 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 3148 | if (phy_ctxt->ref && channel == phy_ctxt->channel) { |
| 3149 | /* |
| 3150 | * Unbind the P2P_DEVICE from the current PHY context, |
| 3151 | * and if the PHY context is not used remove it. |
| 3152 | */ |
| 3153 | ret = iwl_mvm_binding_remove_vif(mvm, vif); |
| 3154 | if (WARN(ret, "Failed unbinding P2P_DEVICE\n")) |
| 3155 | goto out_unlock; |
| 3156 | |
| 3157 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
| 3158 | |
| 3159 | /* Bind the P2P_DEVICE to the current PHY Context */ |
| 3160 | mvmvif->phy_ctxt = phy_ctxt; |
| 3161 | |
| 3162 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 3163 | if (WARN(ret, "Failed binding P2P_DEVICE\n")) |
| 3164 | goto out_unlock; |
| 3165 | |
| 3166 | iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt); |
| 3167 | goto schedule_time_event; |
| 3168 | } |
| 3169 | } |
| 3170 | |
| 3171 | /* Need to update the PHY context only if the ROC channel changed */ |
| 3172 | if (channel == mvmvif->phy_ctxt->channel) |
| 3173 | goto schedule_time_event; |
| 3174 | |
| 3175 | cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT); |
| 3176 | |
| 3177 | /* |
| 3178 | * Change the PHY context configuration as it is currently referenced |
| 3179 | * only by the P2P Device MAC |
| 3180 | */ |
| 3181 | if (mvmvif->phy_ctxt->ref == 1) { |
| 3182 | ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt, |
| 3183 | &chandef, 1, 1); |
| 3184 | if (ret) |
| 3185 | goto out_unlock; |
| 3186 | } else { |
| 3187 | /* |
| 3188 | * The PHY context is shared with other MACs. Need to remove the |
| 3189 | * P2P Device from the binding, allocate an new PHY context and |
| 3190 | * create a new binding |
| 3191 | */ |
| 3192 | phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); |
| 3193 | if (!phy_ctxt) { |
| 3194 | ret = -ENOSPC; |
| 3195 | goto out_unlock; |
| 3196 | } |
| 3197 | |
| 3198 | ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef, |
| 3199 | 1, 1); |
| 3200 | if (ret) { |
| 3201 | IWL_ERR(mvm, "Failed to change PHY context\n"); |
| 3202 | goto out_unlock; |
| 3203 | } |
| 3204 | |
| 3205 | /* Unbind the P2P_DEVICE from the current PHY context */ |
| 3206 | ret = iwl_mvm_binding_remove_vif(mvm, vif); |
| 3207 | if (WARN(ret, "Failed unbinding P2P_DEVICE\n")) |
| 3208 | goto out_unlock; |
| 3209 | |
| 3210 | iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt); |
| 3211 | |
| 3212 | /* Bind the P2P_DEVICE to the new allocated PHY context */ |
| 3213 | mvmvif->phy_ctxt = phy_ctxt; |
| 3214 | |
| 3215 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 3216 | if (WARN(ret, "Failed binding P2P_DEVICE\n")) |
| 3217 | goto out_unlock; |
| 3218 | |
| 3219 | iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt); |
| 3220 | } |
| 3221 | |
| 3222 | schedule_time_event: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3223 | /* Schedule the time events */ |
Ilan Peer | e635c79 | 2013-02-13 11:05:18 +0200 | [diff] [blame] | 3224 | ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3225 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 3226 | out_unlock: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3227 | mutex_unlock(&mvm->mutex); |
| 3228 | IWL_DEBUG_MAC80211(mvm, "leave\n"); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3229 | return ret; |
| 3230 | } |
| 3231 | |
| 3232 | static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw) |
| 3233 | { |
| 3234 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3235 | |
| 3236 | IWL_DEBUG_MAC80211(mvm, "enter\n"); |
| 3237 | |
| 3238 | mutex_lock(&mvm->mutex); |
Matti Gottlieb | bf5da87 | 2014-11-16 10:25:12 +0200 | [diff] [blame] | 3239 | iwl_mvm_stop_roc(mvm); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3240 | mutex_unlock(&mvm->mutex); |
| 3241 | |
| 3242 | IWL_DEBUG_MAC80211(mvm, "leave\n"); |
| 3243 | return 0; |
| 3244 | } |
| 3245 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3246 | static int __iwl_mvm_add_chanctx(struct iwl_mvm *mvm, |
| 3247 | struct ieee80211_chanctx_conf *ctx) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3248 | { |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 3249 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 3250 | struct iwl_mvm_phy_ctxt *phy_ctxt; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3251 | int ret; |
| 3252 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3253 | lockdep_assert_held(&mvm->mutex); |
| 3254 | |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 3255 | IWL_DEBUG_MAC80211(mvm, "Add channel context\n"); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 3256 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 3257 | phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); |
| 3258 | if (!phy_ctxt) { |
| 3259 | ret = -ENOSPC; |
| 3260 | goto out; |
| 3261 | } |
| 3262 | |
Eliad Peller | dcbc3e1 | 2013-10-31 14:31:25 +0200 | [diff] [blame] | 3263 | ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def, |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 3264 | ctx->rx_chains_static, |
| 3265 | ctx->rx_chains_dynamic); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 3266 | if (ret) { |
| 3267 | IWL_ERR(mvm, "Failed to add PHY context\n"); |
| 3268 | goto out; |
| 3269 | } |
| 3270 | |
Ilan Peer | 53a9d61 | 2013-04-28 11:55:08 +0300 | [diff] [blame] | 3271 | iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 3272 | *phy_ctxt_id = phy_ctxt->id; |
| 3273 | out: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3274 | return ret; |
| 3275 | } |
| 3276 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3277 | static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw, |
| 3278 | struct ieee80211_chanctx_conf *ctx) |
| 3279 | { |
| 3280 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3281 | int ret; |
| 3282 | |
| 3283 | mutex_lock(&mvm->mutex); |
| 3284 | ret = __iwl_mvm_add_chanctx(mvm, ctx); |
| 3285 | mutex_unlock(&mvm->mutex); |
| 3286 | |
| 3287 | return ret; |
| 3288 | } |
| 3289 | |
| 3290 | static void __iwl_mvm_remove_chanctx(struct iwl_mvm *mvm, |
| 3291 | struct ieee80211_chanctx_conf *ctx) |
| 3292 | { |
| 3293 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 3294 | struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id]; |
| 3295 | |
| 3296 | lockdep_assert_held(&mvm->mutex); |
| 3297 | |
| 3298 | iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt); |
| 3299 | } |
| 3300 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3301 | static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw, |
| 3302 | struct ieee80211_chanctx_conf *ctx) |
| 3303 | { |
| 3304 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3305 | |
| 3306 | mutex_lock(&mvm->mutex); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3307 | __iwl_mvm_remove_chanctx(mvm, ctx); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3308 | mutex_unlock(&mvm->mutex); |
| 3309 | } |
| 3310 | |
| 3311 | static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw, |
| 3312 | struct ieee80211_chanctx_conf *ctx, |
| 3313 | u32 changed) |
| 3314 | { |
| 3315 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 3316 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 3317 | 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] | 3318 | |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 3319 | if (WARN_ONCE((phy_ctxt->ref > 1) && |
| 3320 | (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH | |
| 3321 | IEEE80211_CHANCTX_CHANGE_RX_CHAINS | |
Arik Nemtsov | 2dceeda | 2013-12-29 17:57:53 +0200 | [diff] [blame] | 3322 | IEEE80211_CHANCTX_CHANGE_RADAR | |
| 3323 | IEEE80211_CHANCTX_CHANGE_MIN_WIDTH)), |
Ilan Peer | 31d385a | 2013-04-02 10:25:46 +0300 | [diff] [blame] | 3324 | "Cannot change PHY. Ref=%d, changed=0x%X\n", |
| 3325 | phy_ctxt->ref, changed)) |
| 3326 | return; |
| 3327 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3328 | mutex_lock(&mvm->mutex); |
Emmanuel Grumbach | 4d66449 | 2014-04-30 18:09:59 +0300 | [diff] [blame] | 3329 | iwl_mvm_bt_coex_vif_change(mvm); |
Eliad Peller | dcbc3e1 | 2013-10-31 14:31:25 +0200 | [diff] [blame] | 3330 | iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3331 | ctx->rx_chains_static, |
| 3332 | ctx->rx_chains_dynamic); |
| 3333 | mutex_unlock(&mvm->mutex); |
| 3334 | } |
| 3335 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3336 | static int __iwl_mvm_assign_vif_chanctx(struct iwl_mvm *mvm, |
| 3337 | struct ieee80211_vif *vif, |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 3338 | struct ieee80211_chanctx_conf *ctx, |
| 3339 | bool switching_chanctx) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3340 | { |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 3341 | u16 *phy_ctxt_id = (u16 *)ctx->drv_priv; |
| 3342 | 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] | 3343 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 3344 | int ret; |
| 3345 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3346 | lockdep_assert_held(&mvm->mutex); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3347 | |
Ilan Peer | fe0f2de | 2013-03-21 10:23:52 +0200 | [diff] [blame] | 3348 | mvmvif->phy_ctxt = phy_ctxt; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3349 | |
| 3350 | switch (vif->type) { |
| 3351 | case NL80211_IFTYPE_AP: |
Luciano Coelho | 4741dd0 | 2014-11-10 11:10:13 +0200 | [diff] [blame] | 3352 | /* only needed if we're switching chanctx (i.e. during CSA) */ |
| 3353 | if (switching_chanctx) { |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3354 | mvmvif->ap_ibss_active = true; |
| 3355 | break; |
| 3356 | } |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 3357 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3358 | /* |
| 3359 | * 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] | 3360 | * (in bss_info_changed), similarly for IBSS. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3361 | */ |
| 3362 | ret = 0; |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3363 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3364 | case NL80211_IFTYPE_STATION: |
Luciano Coelho | 2533edc | 2014-08-08 19:50:46 +0300 | [diff] [blame] | 3365 | break; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3366 | case NL80211_IFTYPE_MONITOR: |
Luciano Coelho | 2533edc | 2014-08-08 19:50:46 +0300 | [diff] [blame] | 3367 | /* always disable PS when a monitor interface is active */ |
| 3368 | mvmvif->ps_disabled = true; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3369 | break; |
| 3370 | default: |
| 3371 | ret = -EINVAL; |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3372 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3373 | } |
| 3374 | |
| 3375 | ret = iwl_mvm_binding_add_vif(mvm, vif); |
| 3376 | if (ret) |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3377 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3378 | |
| 3379 | /* |
Alexander Bondar | 92d8556 | 2013-10-23 11:50:34 +0200 | [diff] [blame] | 3380 | * Power state must be updated before quotas, |
| 3381 | * otherwise fw will complain. |
| 3382 | */ |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 3383 | iwl_mvm_power_update_mac(mvm); |
Alexander Bondar | 92d8556 | 2013-10-23 11:50:34 +0200 | [diff] [blame] | 3384 | |
| 3385 | /* Setting the quota at this stage is only required for monitor |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3386 | * interfaces. For the other types, the bss_info changed flow |
| 3387 | * will handle quota settings. |
| 3388 | */ |
| 3389 | if (vif->type == NL80211_IFTYPE_MONITOR) { |
Ilan Peer | 1e1391c | 2013-03-13 14:52:04 +0200 | [diff] [blame] | 3390 | mvmvif->monitor_active = true; |
Emmanuel Grumbach | 7754ae7 | 2015-02-26 15:14:35 +0200 | [diff] [blame] | 3391 | ret = iwl_mvm_update_quotas(mvm, false, NULL); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3392 | if (ret) |
| 3393 | goto out_remove_binding; |
| 3394 | } |
| 3395 | |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3396 | /* Handle binding during CSA */ |
Luciano Coelho | a57c688 | 2014-11-10 11:10:16 +0200 | [diff] [blame] | 3397 | if (vif->type == NL80211_IFTYPE_AP) { |
Emmanuel Grumbach | 7754ae7 | 2015-02-26 15:14:35 +0200 | [diff] [blame] | 3398 | iwl_mvm_update_quotas(mvm, false, NULL); |
Johannes Berg | 3dfd3a9 | 2014-08-11 21:37:30 +0200 | [diff] [blame] | 3399 | iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL); |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3400 | } |
| 3401 | |
Luciano Coelho | 4741dd0 | 2014-11-10 11:10:13 +0200 | [diff] [blame] | 3402 | if (switching_chanctx && vif->type == NL80211_IFTYPE_STATION) { |
Luciano Coelho | 686e7fe | 2014-11-10 11:10:21 +0200 | [diff] [blame] | 3403 | u32 duration = 2 * vif->bss_conf.beacon_int; |
| 3404 | |
| 3405 | /* iwl_mvm_protect_session() reads directly from the |
| 3406 | * device (the system time), so make sure it is |
| 3407 | * available. |
| 3408 | */ |
| 3409 | ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PROTECT_CSA); |
| 3410 | if (ret) |
| 3411 | goto out_remove_binding; |
| 3412 | |
| 3413 | /* Protect the session to make sure we hear the first |
| 3414 | * beacon on the new channel. |
| 3415 | */ |
| 3416 | iwl_mvm_protect_session(mvm, vif, duration, duration, |
| 3417 | vif->bss_conf.beacon_int / 2, |
| 3418 | true); |
| 3419 | |
| 3420 | iwl_mvm_unref(mvm, IWL_MVM_REF_PROTECT_CSA); |
| 3421 | |
Emmanuel Grumbach | 7754ae7 | 2015-02-26 15:14:35 +0200 | [diff] [blame] | 3422 | iwl_mvm_update_quotas(mvm, false, NULL); |
Luciano Coelho | 0ce04ce | 2014-05-08 16:03:39 +0300 | [diff] [blame] | 3423 | } |
| 3424 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3425 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3426 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3427 | out_remove_binding: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3428 | iwl_mvm_binding_remove_vif(mvm, vif); |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 3429 | iwl_mvm_power_update_mac(mvm); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3430 | out: |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3431 | if (ret) |
| 3432 | mvmvif->phy_ctxt = NULL; |
| 3433 | return ret; |
| 3434 | } |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3435 | static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw, |
| 3436 | struct ieee80211_vif *vif, |
| 3437 | struct ieee80211_chanctx_conf *ctx) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3438 | { |
| 3439 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3440 | int ret; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3441 | |
| 3442 | mutex_lock(&mvm->mutex); |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 3443 | ret = __iwl_mvm_assign_vif_chanctx(mvm, vif, ctx, false); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3444 | mutex_unlock(&mvm->mutex); |
| 3445 | |
| 3446 | return ret; |
| 3447 | } |
| 3448 | |
| 3449 | static void __iwl_mvm_unassign_vif_chanctx(struct iwl_mvm *mvm, |
| 3450 | struct ieee80211_vif *vif, |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 3451 | struct ieee80211_chanctx_conf *ctx, |
| 3452 | bool switching_chanctx) |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3453 | { |
| 3454 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 3455 | struct ieee80211_vif *disabled_vif = NULL; |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3456 | |
| 3457 | lockdep_assert_held(&mvm->mutex); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3458 | |
| 3459 | iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data); |
| 3460 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3461 | switch (vif->type) { |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 3462 | case NL80211_IFTYPE_ADHOC: |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3463 | goto out; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3464 | case NL80211_IFTYPE_MONITOR: |
Ilan Peer | 1e1391c | 2013-03-13 14:52:04 +0200 | [diff] [blame] | 3465 | mvmvif->monitor_active = false; |
Luciano Coelho | 2533edc | 2014-08-08 19:50:46 +0300 | [diff] [blame] | 3466 | mvmvif->ps_disabled = false; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3467 | break; |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3468 | case NL80211_IFTYPE_AP: |
| 3469 | /* This part is triggered only during CSA */ |
Luciano Coelho | 4741dd0 | 2014-11-10 11:10:13 +0200 | [diff] [blame] | 3470 | if (!switching_chanctx || !mvmvif->ap_ibss_active) |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3471 | goto out; |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3472 | |
Andrei Otcheretianski | 7ef0aab | 2014-11-10 11:10:11 +0200 | [diff] [blame] | 3473 | mvmvif->csa_countdown = false; |
| 3474 | |
Andrei Otcheretianski | 003e5236 | 2014-05-25 17:24:22 +0300 | [diff] [blame] | 3475 | /* Set CS bit on all the stations */ |
| 3476 | iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, true); |
| 3477 | |
| 3478 | /* Save blocked iface, the timeout is set on the next beacon */ |
| 3479 | rcu_assign_pointer(mvm->csa_tx_blocked_vif, vif); |
| 3480 | |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3481 | mvmvif->ap_ibss_active = false; |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 3482 | break; |
| 3483 | case NL80211_IFTYPE_STATION: |
| 3484 | if (!switching_chanctx) |
| 3485 | break; |
| 3486 | |
| 3487 | disabled_vif = vif; |
| 3488 | |
Johannes Berg | 3dfd3a9 | 2014-08-11 21:37:30 +0200 | [diff] [blame] | 3489 | iwl_mvm_mac_ctxt_changed(mvm, vif, true, NULL); |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 3490 | break; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3491 | default: |
| 3492 | break; |
| 3493 | } |
| 3494 | |
Emmanuel Grumbach | 7754ae7 | 2015-02-26 15:14:35 +0200 | [diff] [blame] | 3495 | iwl_mvm_update_quotas(mvm, false, disabled_vif); |
Ilan Peer | 1e1391c | 2013-03-13 14:52:04 +0200 | [diff] [blame] | 3496 | iwl_mvm_binding_remove_vif(mvm, vif); |
Alexander Bondar | 1c2abf7 | 2013-08-27 20:31:48 +0300 | [diff] [blame] | 3497 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3498 | out: |
Ilan Peer | a11e144 | 2013-12-31 21:19:55 +0200 | [diff] [blame] | 3499 | mvmvif->phy_ctxt = NULL; |
Arik Nemtsov | 999609f | 2014-05-15 17:31:51 +0300 | [diff] [blame] | 3500 | iwl_mvm_power_update_mac(mvm); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3501 | } |
| 3502 | |
| 3503 | static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw, |
| 3504 | struct ieee80211_vif *vif, |
| 3505 | struct ieee80211_chanctx_conf *ctx) |
| 3506 | { |
| 3507 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3508 | |
| 3509 | mutex_lock(&mvm->mutex); |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 3510 | __iwl_mvm_unassign_vif_chanctx(mvm, vif, ctx, false); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3511 | mutex_unlock(&mvm->mutex); |
| 3512 | } |
| 3513 | |
Luciano Coelho | 50cc957 | 2014-11-10 11:10:08 +0200 | [diff] [blame] | 3514 | static int |
| 3515 | iwl_mvm_switch_vif_chanctx_swap(struct iwl_mvm *mvm, |
| 3516 | struct ieee80211_vif_chanctx_switch *vifs) |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3517 | { |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3518 | int ret; |
| 3519 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3520 | mutex_lock(&mvm->mutex); |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 3521 | __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] | 3522 | __iwl_mvm_remove_chanctx(mvm, vifs[0].old_ctx); |
| 3523 | |
| 3524 | ret = __iwl_mvm_add_chanctx(mvm, vifs[0].new_ctx); |
| 3525 | if (ret) { |
| 3526 | IWL_ERR(mvm, "failed to add new_ctx during channel switch\n"); |
| 3527 | goto out_reassign; |
| 3528 | } |
| 3529 | |
Luciano Coelho | f0c9778 | 2014-03-05 15:41:48 +0200 | [diff] [blame] | 3530 | ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx, |
| 3531 | true); |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3532 | if (ret) { |
| 3533 | IWL_ERR(mvm, |
| 3534 | "failed to assign new_ctx during channel switch\n"); |
| 3535 | goto out_remove; |
| 3536 | } |
| 3537 | |
Arik Nemtsov | f697267 | 2014-06-15 16:03:55 +0300 | [diff] [blame] | 3538 | /* we don't support TDLS during DCM - can be caused by channel switch */ |
| 3539 | if (iwl_mvm_phy_ctx_count(mvm) > 1) |
| 3540 | iwl_mvm_teardown_tdls_peers(mvm); |
| 3541 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3542 | goto out; |
| 3543 | |
| 3544 | out_remove: |
| 3545 | __iwl_mvm_remove_chanctx(mvm, vifs[0].new_ctx); |
| 3546 | |
| 3547 | out_reassign: |
Luciano Coelho | 6fd1fb6 | 2014-11-10 11:10:10 +0200 | [diff] [blame] | 3548 | if (__iwl_mvm_add_chanctx(mvm, vifs[0].old_ctx)) { |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3549 | IWL_ERR(mvm, "failed to add old_ctx back after failure.\n"); |
| 3550 | goto out_restart; |
| 3551 | } |
| 3552 | |
Luciano Coelho | 6fd1fb6 | 2014-11-10 11:10:10 +0200 | [diff] [blame] | 3553 | if (__iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, |
| 3554 | true)) { |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3555 | IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n"); |
| 3556 | goto out_restart; |
| 3557 | } |
| 3558 | |
| 3559 | goto out; |
| 3560 | |
| 3561 | out_restart: |
| 3562 | /* things keep failing, better restart the hw */ |
| 3563 | iwl_mvm_nic_restart(mvm, false); |
| 3564 | |
| 3565 | out: |
| 3566 | mutex_unlock(&mvm->mutex); |
Luciano Coelho | 50cc957 | 2014-11-10 11:10:08 +0200 | [diff] [blame] | 3567 | |
| 3568 | return ret; |
| 3569 | } |
| 3570 | |
Luciano Coelho | 48a256e | 2014-11-10 11:10:09 +0200 | [diff] [blame] | 3571 | static int |
| 3572 | iwl_mvm_switch_vif_chanctx_reassign(struct iwl_mvm *mvm, |
| 3573 | struct ieee80211_vif_chanctx_switch *vifs) |
| 3574 | { |
| 3575 | int ret; |
| 3576 | |
| 3577 | mutex_lock(&mvm->mutex); |
| 3578 | __iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, true); |
| 3579 | |
| 3580 | ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx, |
| 3581 | true); |
| 3582 | if (ret) { |
| 3583 | IWL_ERR(mvm, |
| 3584 | "failed to assign new_ctx during channel switch\n"); |
| 3585 | goto out_reassign; |
| 3586 | } |
| 3587 | |
| 3588 | goto out; |
| 3589 | |
| 3590 | out_reassign: |
| 3591 | if (__iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, |
| 3592 | true)) { |
| 3593 | IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n"); |
| 3594 | goto out_restart; |
| 3595 | } |
| 3596 | |
| 3597 | goto out; |
| 3598 | |
| 3599 | out_restart: |
| 3600 | /* things keep failing, better restart the hw */ |
| 3601 | iwl_mvm_nic_restart(mvm, false); |
| 3602 | |
| 3603 | out: |
| 3604 | mutex_unlock(&mvm->mutex); |
| 3605 | |
| 3606 | return ret; |
| 3607 | } |
| 3608 | |
Luciano Coelho | 50cc957 | 2014-11-10 11:10:08 +0200 | [diff] [blame] | 3609 | static int iwl_mvm_switch_vif_chanctx(struct ieee80211_hw *hw, |
| 3610 | struct ieee80211_vif_chanctx_switch *vifs, |
| 3611 | int n_vifs, |
| 3612 | enum ieee80211_chanctx_switch_mode mode) |
| 3613 | { |
| 3614 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3615 | int ret; |
| 3616 | |
| 3617 | /* we only support a single-vif right now */ |
| 3618 | if (n_vifs > 1) |
| 3619 | return -EOPNOTSUPP; |
| 3620 | |
| 3621 | switch (mode) { |
| 3622 | case CHANCTX_SWMODE_SWAP_CONTEXTS: |
| 3623 | ret = iwl_mvm_switch_vif_chanctx_swap(mvm, vifs); |
| 3624 | break; |
| 3625 | case CHANCTX_SWMODE_REASSIGN_VIF: |
Luciano Coelho | 48a256e | 2014-11-10 11:10:09 +0200 | [diff] [blame] | 3626 | ret = iwl_mvm_switch_vif_chanctx_reassign(mvm, vifs); |
Luciano Coelho | 50cc957 | 2014-11-10 11:10:08 +0200 | [diff] [blame] | 3627 | break; |
| 3628 | default: |
| 3629 | ret = -EOPNOTSUPP; |
| 3630 | break; |
| 3631 | } |
| 3632 | |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 3633 | return ret; |
| 3634 | } |
| 3635 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3636 | static int iwl_mvm_set_tim(struct ieee80211_hw *hw, |
| 3637 | struct ieee80211_sta *sta, |
| 3638 | bool set) |
| 3639 | { |
| 3640 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Johannes Berg | 9d8ce6a | 2014-12-23 16:02:40 +0100 | [diff] [blame] | 3641 | struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 3642 | |
| 3643 | if (!mvm_sta || !mvm_sta->vif) { |
| 3644 | IWL_ERR(mvm, "Station is not associated to a vif\n"); |
| 3645 | return -EINVAL; |
| 3646 | } |
| 3647 | |
| 3648 | return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif); |
| 3649 | } |
| 3650 | |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 3651 | #ifdef CONFIG_NL80211_TESTMODE |
| 3652 | static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = { |
| 3653 | [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 }, |
| 3654 | [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 }, |
Johannes Berg | f6c6ad42 | 2013-08-01 14:17:15 +0200 | [diff] [blame] | 3655 | [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 }, |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 3656 | }; |
| 3657 | |
| 3658 | static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm, |
| 3659 | struct ieee80211_vif *vif, |
| 3660 | void *data, int len) |
| 3661 | { |
| 3662 | struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1]; |
| 3663 | int err; |
| 3664 | u32 noa_duration; |
| 3665 | |
| 3666 | err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy); |
| 3667 | if (err) |
| 3668 | return err; |
| 3669 | |
| 3670 | if (!tb[IWL_MVM_TM_ATTR_CMD]) |
| 3671 | return -EINVAL; |
| 3672 | |
| 3673 | switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) { |
| 3674 | case IWL_MVM_TM_CMD_SET_NOA: |
| 3675 | if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p || |
| 3676 | !vif->bss_conf.enable_beacon || |
| 3677 | !tb[IWL_MVM_TM_ATTR_NOA_DURATION]) |
| 3678 | return -EINVAL; |
| 3679 | |
| 3680 | noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]); |
| 3681 | if (noa_duration >= vif->bss_conf.beacon_int) |
| 3682 | return -EINVAL; |
| 3683 | |
| 3684 | mvm->noa_duration = noa_duration; |
| 3685 | mvm->noa_vif = vif; |
| 3686 | |
Emmanuel Grumbach | 7754ae7 | 2015-02-26 15:14:35 +0200 | [diff] [blame] | 3687 | return iwl_mvm_update_quotas(mvm, false, NULL); |
Johannes Berg | f6c6ad42 | 2013-08-01 14:17:15 +0200 | [diff] [blame] | 3688 | case IWL_MVM_TM_CMD_SET_BEACON_FILTER: |
| 3689 | /* must be associated client vif - ignore authorized */ |
| 3690 | if (!vif || vif->type != NL80211_IFTYPE_STATION || |
| 3691 | !vif->bss_conf.assoc || !vif->bss_conf.dtim_period || |
| 3692 | !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]) |
| 3693 | return -EINVAL; |
| 3694 | |
| 3695 | if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])) |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 3696 | return iwl_mvm_enable_beacon_filter(mvm, vif, 0); |
| 3697 | return iwl_mvm_disable_beacon_filter(mvm, vif, 0); |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 3698 | } |
| 3699 | |
| 3700 | return -EOPNOTSUPP; |
| 3701 | } |
| 3702 | |
| 3703 | static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw, |
| 3704 | struct ieee80211_vif *vif, |
| 3705 | void *data, int len) |
| 3706 | { |
| 3707 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3708 | int err; |
| 3709 | |
| 3710 | mutex_lock(&mvm->mutex); |
| 3711 | err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len); |
| 3712 | mutex_unlock(&mvm->mutex); |
| 3713 | |
| 3714 | return err; |
| 3715 | } |
| 3716 | #endif |
| 3717 | |
Luciano Coelho | 622e3f9 | 2014-11-10 11:10:17 +0200 | [diff] [blame] | 3718 | static void iwl_mvm_channel_switch(struct ieee80211_hw *hw, |
| 3719 | struct ieee80211_vif *vif, |
| 3720 | struct ieee80211_channel_switch *chsw) |
| 3721 | { |
| 3722 | /* By implementing this operation, we prevent mac80211 from |
| 3723 | * starting its own channel switch timer, so that we can call |
| 3724 | * ieee80211_chswitch_done() ourselves at the right time |
| 3725 | * (which is when the absence time event starts). |
| 3726 | */ |
| 3727 | |
| 3728 | IWL_DEBUG_MAC80211(IWL_MAC80211_GET_MVM(hw), |
| 3729 | "dummy channel switch op\n"); |
| 3730 | } |
| 3731 | |
Luciano Coelho | f028905 | 2014-11-10 11:10:06 +0200 | [diff] [blame] | 3732 | static int iwl_mvm_pre_channel_switch(struct ieee80211_hw *hw, |
| 3733 | struct ieee80211_vif *vif, |
| 3734 | struct ieee80211_channel_switch *chsw) |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3735 | { |
| 3736 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 3737 | struct ieee80211_vif *csa_vif; |
Luciano Coelho | f6c3482 | 2014-11-10 11:10:12 +0200 | [diff] [blame] | 3738 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
Luciano Coelho | dc88b4b | 2014-11-10 11:10:14 +0200 | [diff] [blame] | 3739 | u32 apply_time; |
Luciano Coelho | f028905 | 2014-11-10 11:10:06 +0200 | [diff] [blame] | 3740 | int ret; |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3741 | |
| 3742 | mutex_lock(&mvm->mutex); |
Andrei Otcheretianski | 664322f | 2014-06-05 16:40:36 +0300 | [diff] [blame] | 3743 | |
Johannes Berg | 81d62d5 | 2015-03-10 14:44:00 +0100 | [diff] [blame] | 3744 | mvmvif->csa_failed = false; |
| 3745 | |
Luciano Coelho | 6b20d77 | 2014-11-10 11:10:07 +0200 | [diff] [blame] | 3746 | IWL_DEBUG_MAC80211(mvm, "pre CSA to freq %d\n", |
Luciano Coelho | f028905 | 2014-11-10 11:10:06 +0200 | [diff] [blame] | 3747 | chsw->chandef.center_freq1); |
Luciano Coelho | 6b20d77 | 2014-11-10 11:10:07 +0200 | [diff] [blame] | 3748 | |
Johannes Berg | 21023b1 | 2015-03-31 08:58:16 +0200 | [diff] [blame] | 3749 | iwl_fw_dbg_trigger_simple_stop(mvm, vif, FW_DBG_TRIGGER_CHANNEL_SWITCH); |
Emmanuel Grumbach | f35d9c5 | 2015-02-10 10:49:51 +0200 | [diff] [blame] | 3750 | |
Luciano Coelho | 6b20d77 | 2014-11-10 11:10:07 +0200 | [diff] [blame] | 3751 | switch (vif->type) { |
| 3752 | case NL80211_IFTYPE_AP: |
| 3753 | csa_vif = |
| 3754 | rcu_dereference_protected(mvm->csa_vif, |
| 3755 | lockdep_is_held(&mvm->mutex)); |
| 3756 | if (WARN_ONCE(csa_vif && csa_vif->csa_active, |
| 3757 | "Another CSA is already in progress")) { |
| 3758 | ret = -EBUSY; |
| 3759 | goto out_unlock; |
| 3760 | } |
| 3761 | |
| 3762 | rcu_assign_pointer(mvm->csa_vif, vif); |
Andrei Otcheretianski | 7ef0aab | 2014-11-10 11:10:11 +0200 | [diff] [blame] | 3763 | |
Andrei Otcheretianski | 7ef0aab | 2014-11-10 11:10:11 +0200 | [diff] [blame] | 3764 | if (WARN_ONCE(mvmvif->csa_countdown, |
| 3765 | "Previous CSA countdown didn't complete")) { |
| 3766 | ret = -EBUSY; |
| 3767 | goto out_unlock; |
| 3768 | } |
| 3769 | |
Luciano Coelho | 6b20d77 | 2014-11-10 11:10:07 +0200 | [diff] [blame] | 3770 | break; |
Luciano Coelho | dc88b4b | 2014-11-10 11:10:14 +0200 | [diff] [blame] | 3771 | case NL80211_IFTYPE_STATION: |
Luciano Coelho | 4500e13 | 2014-11-10 11:10:15 +0200 | [diff] [blame] | 3772 | /* Schedule the time event to a bit before beacon 1, |
| 3773 | * to make sure we're in the new channel when the |
| 3774 | * GO/AP arrives. |
| 3775 | */ |
| 3776 | apply_time = chsw->device_timestamp + |
| 3777 | ((vif->bss_conf.beacon_int * (chsw->count - 1) - |
| 3778 | IWL_MVM_CHANNEL_SWITCH_TIME_CLIENT) * 1024); |
Luciano Coelho | dc88b4b | 2014-11-10 11:10:14 +0200 | [diff] [blame] | 3779 | |
| 3780 | if (chsw->block_tx) |
| 3781 | iwl_mvm_csa_client_absent(mvm, vif); |
| 3782 | |
Luciano Coelho | 4500e13 | 2014-11-10 11:10:15 +0200 | [diff] [blame] | 3783 | iwl_mvm_schedule_csa_period(mvm, vif, vif->bss_conf.beacon_int, |
Luciano Coelho | dc88b4b | 2014-11-10 11:10:14 +0200 | [diff] [blame] | 3784 | apply_time); |
Luciano Coelho | c6e0a3e0 | 2014-11-10 11:10:18 +0200 | [diff] [blame] | 3785 | if (mvmvif->bf_data.bf_enabled) { |
| 3786 | ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0); |
| 3787 | if (ret) |
| 3788 | goto out_unlock; |
| 3789 | } |
| 3790 | |
Luciano Coelho | dc88b4b | 2014-11-10 11:10:14 +0200 | [diff] [blame] | 3791 | break; |
Luciano Coelho | 6b20d77 | 2014-11-10 11:10:07 +0200 | [diff] [blame] | 3792 | default: |
| 3793 | break; |
| 3794 | } |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3795 | |
Luciano Coelho | f6c3482 | 2014-11-10 11:10:12 +0200 | [diff] [blame] | 3796 | mvmvif->ps_disabled = true; |
| 3797 | |
| 3798 | ret = iwl_mvm_power_update_ps(mvm); |
| 3799 | if (ret) |
| 3800 | goto out_unlock; |
Luciano Coelho | f028905 | 2014-11-10 11:10:06 +0200 | [diff] [blame] | 3801 | |
Arik Nemtsov | e198f5e | 2014-09-14 19:13:54 +0300 | [diff] [blame] | 3802 | /* we won't be on this channel any longer */ |
| 3803 | iwl_mvm_teardown_tdls_peers(mvm); |
| 3804 | |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3805 | out_unlock: |
| 3806 | mutex_unlock(&mvm->mutex); |
Luciano Coelho | f028905 | 2014-11-10 11:10:06 +0200 | [diff] [blame] | 3807 | |
| 3808 | return ret; |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 3809 | } |
| 3810 | |
Luciano Coelho | f6c3482 | 2014-11-10 11:10:12 +0200 | [diff] [blame] | 3811 | static int iwl_mvm_post_channel_switch(struct ieee80211_hw *hw, |
| 3812 | struct ieee80211_vif *vif) |
| 3813 | { |
| 3814 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 3815 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3816 | int ret; |
| 3817 | |
| 3818 | mutex_lock(&mvm->mutex); |
| 3819 | |
Johannes Berg | 81d62d5 | 2015-03-10 14:44:00 +0100 | [diff] [blame] | 3820 | if (mvmvif->csa_failed) { |
| 3821 | mvmvif->csa_failed = false; |
| 3822 | ret = -EIO; |
| 3823 | goto out_unlock; |
| 3824 | } |
| 3825 | |
Luciano Coelho | a57c688 | 2014-11-10 11:10:16 +0200 | [diff] [blame] | 3826 | if (vif->type == NL80211_IFTYPE_STATION) { |
| 3827 | struct iwl_mvm_sta *mvmsta; |
| 3828 | |
| 3829 | mvmsta = iwl_mvm_sta_from_staid_protected(mvm, |
| 3830 | mvmvif->ap_sta_id); |
| 3831 | |
| 3832 | if (WARN_ON(!mvmsta)) { |
| 3833 | ret = -EIO; |
| 3834 | goto out_unlock; |
| 3835 | } |
| 3836 | |
| 3837 | iwl_mvm_sta_modify_disable_tx(mvm, mvmsta, false); |
| 3838 | |
| 3839 | iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL); |
Luciano Coelho | c6e0a3e0 | 2014-11-10 11:10:18 +0200 | [diff] [blame] | 3840 | |
| 3841 | ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0); |
| 3842 | if (ret) |
| 3843 | goto out_unlock; |
Luciano Coelho | 686e7fe | 2014-11-10 11:10:21 +0200 | [diff] [blame] | 3844 | |
| 3845 | iwl_mvm_stop_session_protection(mvm, vif); |
Luciano Coelho | a57c688 | 2014-11-10 11:10:16 +0200 | [diff] [blame] | 3846 | } |
| 3847 | |
Luciano Coelho | f6c3482 | 2014-11-10 11:10:12 +0200 | [diff] [blame] | 3848 | mvmvif->ps_disabled = false; |
| 3849 | |
| 3850 | ret = iwl_mvm_power_update_ps(mvm); |
| 3851 | |
Luciano Coelho | a57c688 | 2014-11-10 11:10:16 +0200 | [diff] [blame] | 3852 | out_unlock: |
Luciano Coelho | f6c3482 | 2014-11-10 11:10:12 +0200 | [diff] [blame] | 3853 | mutex_unlock(&mvm->mutex); |
| 3854 | |
| 3855 | return ret; |
| 3856 | } |
| 3857 | |
Emmanuel Grumbach | c5b0e7c | 2014-03-24 12:08:53 +0200 | [diff] [blame] | 3858 | static void iwl_mvm_mac_flush(struct ieee80211_hw *hw, |
| 3859 | struct ieee80211_vif *vif, u32 queues, bool drop) |
| 3860 | { |
| 3861 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3862 | struct iwl_mvm_vif *mvmvif; |
| 3863 | struct iwl_mvm_sta *mvmsta; |
Arik Nemtsov | a0f6bf2 | 2014-09-21 19:10:04 +0300 | [diff] [blame] | 3864 | struct ieee80211_sta *sta; |
| 3865 | int i; |
| 3866 | u32 msk = 0; |
Emmanuel Grumbach | c5b0e7c | 2014-03-24 12:08:53 +0200 | [diff] [blame] | 3867 | |
| 3868 | if (!vif || vif->type != NL80211_IFTYPE_STATION) |
| 3869 | return; |
| 3870 | |
| 3871 | mutex_lock(&mvm->mutex); |
| 3872 | mvmvif = iwl_mvm_vif_from_mac80211(vif); |
Emmanuel Grumbach | c5b0e7c | 2014-03-24 12:08:53 +0200 | [diff] [blame] | 3873 | |
Arik Nemtsov | a0f6bf2 | 2014-09-21 19:10:04 +0300 | [diff] [blame] | 3874 | /* flush the AP-station and all TDLS peers */ |
| 3875 | for (i = 0; i < IWL_MVM_STATION_COUNT; i++) { |
| 3876 | sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i], |
| 3877 | lockdep_is_held(&mvm->mutex)); |
| 3878 | if (IS_ERR_OR_NULL(sta)) |
| 3879 | continue; |
| 3880 | |
| 3881 | mvmsta = iwl_mvm_sta_from_mac80211(sta); |
| 3882 | if (mvmsta->vif != vif) |
| 3883 | continue; |
| 3884 | |
| 3885 | /* make sure only TDLS peers or the AP are flushed */ |
| 3886 | WARN_ON(i != mvmvif->ap_sta_id && !sta->tdls); |
| 3887 | |
| 3888 | msk |= mvmsta->tfd_queue_msk; |
Johannes Berg | 480acbc | 2014-10-10 08:59:27 +0200 | [diff] [blame] | 3889 | } |
Emmanuel Grumbach | c5b0e7c | 2014-03-24 12:08:53 +0200 | [diff] [blame] | 3890 | |
Emmanuel Grumbach | 6d440b2 | 2015-01-20 09:25:19 +0200 | [diff] [blame] | 3891 | if (drop) { |
| 3892 | if (iwl_mvm_flush_tx_path(mvm, msk, true)) |
| 3893 | IWL_ERR(mvm, "flush request fail\n"); |
| 3894 | mutex_unlock(&mvm->mutex); |
| 3895 | } else { |
| 3896 | mutex_unlock(&mvm->mutex); |
Johannes Berg | 480acbc | 2014-10-10 08:59:27 +0200 | [diff] [blame] | 3897 | |
Emmanuel Grumbach | 6d440b2 | 2015-01-20 09:25:19 +0200 | [diff] [blame] | 3898 | /* this can take a while, and we may need/want other operations |
| 3899 | * to succeed while doing this, so do it without the mutex held |
| 3900 | */ |
| 3901 | iwl_trans_wait_tx_queue_empty(mvm->trans, msk); |
| 3902 | } |
Emmanuel Grumbach | c5b0e7c | 2014-03-24 12:08:53 +0200 | [diff] [blame] | 3903 | } |
| 3904 | |
Johannes Berg | 91a8bcd | 2015-01-14 18:12:41 +0100 | [diff] [blame] | 3905 | static int iwl_mvm_mac_get_survey(struct ieee80211_hw *hw, int idx, |
| 3906 | struct survey_info *survey) |
| 3907 | { |
| 3908 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3909 | int ret; |
| 3910 | |
| 3911 | memset(survey, 0, sizeof(*survey)); |
| 3912 | |
| 3913 | /* only support global statistics right now */ |
| 3914 | if (idx != 0) |
| 3915 | return -ENOENT; |
| 3916 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 3917 | if (fw_has_capa(&mvm->fw->ucode_capa, |
Johannes Berg | 91a8bcd | 2015-01-14 18:12:41 +0100 | [diff] [blame] | 3918 | IWL_UCODE_TLV_CAPA_RADIO_BEACON_STATS)) |
| 3919 | return -ENOENT; |
| 3920 | |
| 3921 | mutex_lock(&mvm->mutex); |
| 3922 | |
| 3923 | if (mvm->ucode_loaded) { |
Johannes Berg | 33cef92 | 2015-01-21 21:41:29 +0100 | [diff] [blame] | 3924 | ret = iwl_mvm_request_statistics(mvm, false); |
Johannes Berg | 91a8bcd | 2015-01-14 18:12:41 +0100 | [diff] [blame] | 3925 | if (ret) |
| 3926 | goto out; |
| 3927 | } |
| 3928 | |
| 3929 | survey->filled = SURVEY_INFO_TIME | |
| 3930 | SURVEY_INFO_TIME_RX | |
| 3931 | SURVEY_INFO_TIME_TX | |
| 3932 | SURVEY_INFO_TIME_SCAN; |
| 3933 | survey->time = mvm->accu_radio_stats.on_time_rf + |
| 3934 | mvm->radio_stats.on_time_rf; |
| 3935 | do_div(survey->time, USEC_PER_MSEC); |
| 3936 | |
| 3937 | survey->time_rx = mvm->accu_radio_stats.rx_time + |
| 3938 | mvm->radio_stats.rx_time; |
| 3939 | do_div(survey->time_rx, USEC_PER_MSEC); |
| 3940 | |
| 3941 | survey->time_tx = mvm->accu_radio_stats.tx_time + |
| 3942 | mvm->radio_stats.tx_time; |
| 3943 | do_div(survey->time_tx, USEC_PER_MSEC); |
| 3944 | |
| 3945 | survey->time_scan = mvm->accu_radio_stats.on_time_scan + |
| 3946 | mvm->radio_stats.on_time_scan; |
| 3947 | do_div(survey->time_scan, USEC_PER_MSEC); |
| 3948 | |
Johannes Berg | 10a7c028 | 2015-04-01 10:00:31 +0200 | [diff] [blame] | 3949 | ret = 0; |
Johannes Berg | 91a8bcd | 2015-01-14 18:12:41 +0100 | [diff] [blame] | 3950 | out: |
| 3951 | mutex_unlock(&mvm->mutex); |
| 3952 | return ret; |
| 3953 | } |
| 3954 | |
Johannes Berg | 33cef92 | 2015-01-21 21:41:29 +0100 | [diff] [blame] | 3955 | static void iwl_mvm_mac_sta_statistics(struct ieee80211_hw *hw, |
| 3956 | struct ieee80211_vif *vif, |
| 3957 | struct ieee80211_sta *sta, |
| 3958 | struct station_info *sinfo) |
| 3959 | { |
| 3960 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 3961 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 3962 | struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); |
| 3963 | |
Johannes Berg | 859d914 | 2015-06-01 17:11:11 +0200 | [diff] [blame] | 3964 | if (fw_has_capa(&mvm->fw->ucode_capa, |
| 3965 | IWL_UCODE_TLV_CAPA_RADIO_BEACON_STATS)) |
Johannes Berg | 33cef92 | 2015-01-21 21:41:29 +0100 | [diff] [blame] | 3966 | return; |
| 3967 | |
| 3968 | /* if beacon filtering isn't on mac80211 does it anyway */ |
| 3969 | if (!(vif->driver_flags & IEEE80211_VIF_BEACON_FILTER)) |
| 3970 | return; |
| 3971 | |
| 3972 | if (!vif->bss_conf.assoc) |
| 3973 | return; |
| 3974 | |
| 3975 | mutex_lock(&mvm->mutex); |
| 3976 | |
| 3977 | if (mvmvif->ap_sta_id != mvmsta->sta_id) |
| 3978 | goto unlock; |
| 3979 | |
| 3980 | if (iwl_mvm_request_statistics(mvm, false)) |
| 3981 | goto unlock; |
| 3982 | |
| 3983 | sinfo->rx_beacon = mvmvif->beacon_stats.num_beacons + |
| 3984 | mvmvif->beacon_stats.accu_num_beacons; |
| 3985 | sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_RX); |
| 3986 | if (mvmvif->beacon_stats.avg_signal) { |
| 3987 | /* firmware only reports a value after RXing a few beacons */ |
| 3988 | sinfo->rx_beacon_signal_avg = mvmvif->beacon_stats.avg_signal; |
| 3989 | sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_SIGNAL_AVG); |
| 3990 | } |
| 3991 | unlock: |
| 3992 | mutex_unlock(&mvm->mutex); |
| 3993 | } |
| 3994 | |
Emmanuel Grumbach | 4203263 | 2015-04-15 12:43:46 +0300 | [diff] [blame] | 3995 | static void iwl_mvm_event_mlme_callback(struct iwl_mvm *mvm, |
| 3996 | struct ieee80211_vif *vif, |
| 3997 | const struct ieee80211_event *event) |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 3998 | { |
Johannes Berg | 5d4f929 | 2015-03-31 09:12:54 +0200 | [diff] [blame] | 3999 | #define CHECK_MLME_TRIGGER(_mvm, _trig, _buf, _cnt, _fmt...) \ |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 4000 | do { \ |
| 4001 | if ((_cnt) && --(_cnt)) \ |
| 4002 | break; \ |
Johannes Berg | 5d4f929 | 2015-03-31 09:12:54 +0200 | [diff] [blame] | 4003 | iwl_mvm_fw_dbg_collect_trig(_mvm, _trig, _fmt);\ |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 4004 | } while (0) |
| 4005 | |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 4006 | struct iwl_fw_dbg_trigger_tlv *trig; |
| 4007 | struct iwl_fw_dbg_trigger_mlme *trig_mlme; |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 4008 | |
| 4009 | if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_MLME)) |
| 4010 | return; |
| 4011 | |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 4012 | trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_MLME); |
| 4013 | trig_mlme = (void *)trig->data; |
| 4014 | if (!iwl_fw_dbg_trigger_check_stop(mvm, vif, trig)) |
| 4015 | return; |
| 4016 | |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 4017 | if (event->u.mlme.data == ASSOC_EVENT) { |
| 4018 | if (event->u.mlme.status == MLME_DENIED) |
| 4019 | CHECK_MLME_TRIGGER(mvm, trig, buf, |
| 4020 | trig_mlme->stop_assoc_denied, |
| 4021 | "DENIED ASSOC: reason %d", |
| 4022 | event->u.mlme.reason); |
| 4023 | else if (event->u.mlme.status == MLME_TIMEOUT) |
| 4024 | CHECK_MLME_TRIGGER(mvm, trig, buf, |
| 4025 | trig_mlme->stop_assoc_timeout, |
| 4026 | "ASSOC TIMEOUT"); |
| 4027 | } else if (event->u.mlme.data == AUTH_EVENT) { |
| 4028 | if (event->u.mlme.status == MLME_DENIED) |
| 4029 | CHECK_MLME_TRIGGER(mvm, trig, buf, |
| 4030 | trig_mlme->stop_auth_denied, |
| 4031 | "DENIED AUTH: reason %d", |
| 4032 | event->u.mlme.reason); |
| 4033 | else if (event->u.mlme.status == MLME_TIMEOUT) |
| 4034 | CHECK_MLME_TRIGGER(mvm, trig, buf, |
| 4035 | trig_mlme->stop_auth_timeout, |
| 4036 | "AUTH TIMEOUT"); |
| 4037 | } else if (event->u.mlme.data == DEAUTH_RX_EVENT) { |
| 4038 | CHECK_MLME_TRIGGER(mvm, trig, buf, |
| 4039 | trig_mlme->stop_rx_deauth, |
| 4040 | "DEAUTH RX %d", event->u.mlme.reason); |
| 4041 | } else if (event->u.mlme.data == DEAUTH_TX_EVENT) { |
| 4042 | CHECK_MLME_TRIGGER(mvm, trig, buf, |
| 4043 | trig_mlme->stop_tx_deauth, |
| 4044 | "DEAUTH TX %d", event->u.mlme.reason); |
| 4045 | } |
| 4046 | #undef CHECK_MLME_TRIGGER |
| 4047 | } |
| 4048 | |
Emmanuel Grumbach | 4203263 | 2015-04-15 12:43:46 +0300 | [diff] [blame] | 4049 | static void iwl_mvm_event_bar_rx_callback(struct iwl_mvm *mvm, |
| 4050 | struct ieee80211_vif *vif, |
| 4051 | const struct ieee80211_event *event) |
| 4052 | { |
| 4053 | struct iwl_fw_dbg_trigger_tlv *trig; |
| 4054 | struct iwl_fw_dbg_trigger_ba *ba_trig; |
| 4055 | |
| 4056 | if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_BA)) |
| 4057 | return; |
| 4058 | |
| 4059 | trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_BA); |
| 4060 | ba_trig = (void *)trig->data; |
| 4061 | if (!iwl_fw_dbg_trigger_check_stop(mvm, vif, trig)) |
| 4062 | return; |
| 4063 | |
| 4064 | if (!(le16_to_cpu(ba_trig->rx_bar) & BIT(event->u.ba.tid))) |
| 4065 | return; |
| 4066 | |
| 4067 | iwl_mvm_fw_dbg_collect_trig(mvm, trig, |
| 4068 | "BAR received from %pM, tid %d, ssn %d", |
| 4069 | event->u.ba.sta->addr, event->u.ba.tid, |
| 4070 | event->u.ba.ssn); |
| 4071 | } |
| 4072 | |
| 4073 | static void |
| 4074 | iwl_mvm_event_frame_timeout_callback(struct iwl_mvm *mvm, |
| 4075 | struct ieee80211_vif *vif, |
| 4076 | const struct ieee80211_event *event) |
| 4077 | { |
| 4078 | struct iwl_fw_dbg_trigger_tlv *trig; |
| 4079 | struct iwl_fw_dbg_trigger_ba *ba_trig; |
| 4080 | |
| 4081 | if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_BA)) |
| 4082 | return; |
| 4083 | |
| 4084 | trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_BA); |
| 4085 | ba_trig = (void *)trig->data; |
| 4086 | if (!iwl_fw_dbg_trigger_check_stop(mvm, vif, trig)) |
| 4087 | return; |
| 4088 | |
| 4089 | if (!(le16_to_cpu(ba_trig->frame_timeout) & BIT(event->u.ba.tid))) |
| 4090 | return; |
| 4091 | |
| 4092 | iwl_mvm_fw_dbg_collect_trig(mvm, trig, |
| 4093 | "Frame from %pM timed out, tid %d", |
| 4094 | event->u.ba.sta->addr, event->u.ba.tid); |
| 4095 | } |
| 4096 | |
| 4097 | static void iwl_mvm_mac_event_callback(struct ieee80211_hw *hw, |
| 4098 | struct ieee80211_vif *vif, |
| 4099 | const struct ieee80211_event *event) |
| 4100 | { |
| 4101 | struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); |
| 4102 | |
| 4103 | switch (event->type) { |
| 4104 | case MLME_EVENT: |
| 4105 | iwl_mvm_event_mlme_callback(mvm, vif, event); |
| 4106 | break; |
| 4107 | case BAR_RX_EVENT: |
| 4108 | iwl_mvm_event_bar_rx_callback(mvm, vif, event); |
| 4109 | break; |
| 4110 | case BA_FRAME_TIMEOUT: |
| 4111 | iwl_mvm_event_frame_timeout_callback(mvm, vif, event); |
| 4112 | break; |
| 4113 | default: |
| 4114 | break; |
| 4115 | } |
| 4116 | } |
| 4117 | |
Johannes Berg | e520926 | 2014-01-20 23:38:59 +0100 | [diff] [blame] | 4118 | const struct ieee80211_ops iwl_mvm_hw_ops = { |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4119 | .tx = iwl_mvm_mac_tx, |
| 4120 | .ampdu_action = iwl_mvm_mac_ampdu_action, |
| 4121 | .start = iwl_mvm_mac_start, |
Eliad Peller | cf2c92d | 2014-11-04 11:43:54 +0200 | [diff] [blame] | 4122 | .reconfig_complete = iwl_mvm_mac_reconfig_complete, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4123 | .stop = iwl_mvm_mac_stop, |
| 4124 | .add_interface = iwl_mvm_mac_add_interface, |
| 4125 | .remove_interface = iwl_mvm_mac_remove_interface, |
| 4126 | .config = iwl_mvm_mac_config, |
Eliad Peller | e59647e | 2013-11-28 14:08:50 +0200 | [diff] [blame] | 4127 | .prepare_multicast = iwl_mvm_prepare_multicast, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4128 | .configure_filter = iwl_mvm_configure_filter, |
| 4129 | .bss_info_changed = iwl_mvm_bss_info_changed, |
| 4130 | .hw_scan = iwl_mvm_mac_hw_scan, |
| 4131 | .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan, |
Johannes Berg | 1ddbbb0 | 2013-12-04 22:39:17 +0100 | [diff] [blame] | 4132 | .sta_pre_rcu_remove = iwl_mvm_sta_pre_rcu_remove, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4133 | .sta_state = iwl_mvm_mac_sta_state, |
| 4134 | .sta_notify = iwl_mvm_mac_sta_notify, |
| 4135 | .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames, |
Johannes Berg | 3e56ead | 2013-02-15 22:23:18 +0100 | [diff] [blame] | 4136 | .release_buffered_frames = iwl_mvm_mac_release_buffered_frames, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4137 | .set_rts_threshold = iwl_mvm_mac_set_rts_threshold, |
Lilach Edelstein | 1f3b0ff | 2013-10-06 13:03:32 +0200 | [diff] [blame] | 4138 | .sta_rc_update = iwl_mvm_sta_rc_update, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4139 | .conf_tx = iwl_mvm_mac_conf_tx, |
| 4140 | .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx, |
Arik Nemtsov | 07ecd89 | 2014-05-20 18:16:42 +0300 | [diff] [blame] | 4141 | .mgd_protect_tdls_discover = iwl_mvm_mac_mgd_protect_tdls_discover, |
Emmanuel Grumbach | c5b0e7c | 2014-03-24 12:08:53 +0200 | [diff] [blame] | 4142 | .flush = iwl_mvm_mac_flush, |
David Spinadel | 35a000b | 2013-08-28 09:29:43 +0300 | [diff] [blame] | 4143 | .sched_scan_start = iwl_mvm_mac_sched_scan_start, |
| 4144 | .sched_scan_stop = iwl_mvm_mac_sched_scan_stop, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4145 | .set_key = iwl_mvm_mac_set_key, |
| 4146 | .update_tkip_key = iwl_mvm_mac_update_tkip_key, |
| 4147 | .remain_on_channel = iwl_mvm_roc, |
| 4148 | .cancel_remain_on_channel = iwl_mvm_cancel_roc, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4149 | .add_chanctx = iwl_mvm_add_chanctx, |
| 4150 | .remove_chanctx = iwl_mvm_remove_chanctx, |
| 4151 | .change_chanctx = iwl_mvm_change_chanctx, |
| 4152 | .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx, |
| 4153 | .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx, |
Luciano Coelho | b08c1d9 | 2014-05-20 23:31:05 +0300 | [diff] [blame] | 4154 | .switch_vif_chanctx = iwl_mvm_switch_vif_chanctx, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4155 | |
Johannes Berg | 5023d96 | 2013-07-31 14:07:43 +0200 | [diff] [blame] | 4156 | .start_ap = iwl_mvm_start_ap_ibss, |
| 4157 | .stop_ap = iwl_mvm_stop_ap_ibss, |
| 4158 | .join_ibss = iwl_mvm_start_ap_ibss, |
| 4159 | .leave_ibss = iwl_mvm_stop_ap_ibss, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4160 | |
| 4161 | .set_tim = iwl_mvm_set_tim, |
| 4162 | |
Luciano Coelho | 622e3f9 | 2014-11-10 11:10:17 +0200 | [diff] [blame] | 4163 | .channel_switch = iwl_mvm_channel_switch, |
Luciano Coelho | f028905 | 2014-11-10 11:10:06 +0200 | [diff] [blame] | 4164 | .pre_channel_switch = iwl_mvm_pre_channel_switch, |
Luciano Coelho | f6c3482 | 2014-11-10 11:10:12 +0200 | [diff] [blame] | 4165 | .post_channel_switch = iwl_mvm_post_channel_switch, |
Andrei Otcheretianski | bd3398e | 2013-10-22 05:01:12 +0200 | [diff] [blame] | 4166 | |
Arik Nemtsov | 1d3c3f6 | 2014-10-23 18:03:10 +0300 | [diff] [blame] | 4167 | .tdls_channel_switch = iwl_mvm_tdls_channel_switch, |
| 4168 | .tdls_cancel_channel_switch = iwl_mvm_tdls_cancel_channel_switch, |
| 4169 | .tdls_recv_channel_switch = iwl_mvm_tdls_recv_channel_switch, |
| 4170 | |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 4171 | .event_callback = iwl_mvm_mac_event_callback, |
| 4172 | |
David Spinadel | 507cadf | 2013-07-31 18:07:21 +0300 | [diff] [blame] | 4173 | CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd) |
| 4174 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4175 | #ifdef CONFIG_PM_SLEEP |
| 4176 | /* look at d3.c */ |
| 4177 | .suspend = iwl_mvm_suspend, |
| 4178 | .resume = iwl_mvm_resume, |
| 4179 | .set_wakeup = iwl_mvm_set_wakeup, |
| 4180 | .set_rekey_data = iwl_mvm_set_rekey_data, |
| 4181 | #if IS_ENABLED(CONFIG_IPV6) |
| 4182 | .ipv6_addr_change = iwl_mvm_ipv6_addr_change, |
| 4183 | #endif |
| 4184 | .set_default_unicast_key = iwl_mvm_set_default_unicast_key, |
| 4185 | #endif |
Johannes Berg | 91a8bcd | 2015-01-14 18:12:41 +0100 | [diff] [blame] | 4186 | .get_survey = iwl_mvm_mac_get_survey, |
Johannes Berg | 33cef92 | 2015-01-21 21:41:29 +0100 | [diff] [blame] | 4187 | .sta_statistics = iwl_mvm_mac_sta_statistics, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 4188 | }; |