1 /******************************************************************************
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.
8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * The full GNU General Public License is included in this distribution
25 * in the file called COPYING.
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
33 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
34 * All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62 *****************************************************************************/
63 #include <net/mac80211.h>
69 static void iwl_mvm_add_sta_cmd_v6_to_v5(struct iwl_mvm_add_sta_cmd_v6
*cmd_v6
,
70 struct iwl_mvm_add_sta_cmd_v5
*cmd_v5
)
72 memset(cmd_v5
, 0, sizeof(*cmd_v5
));
74 cmd_v5
->add_modify
= cmd_v6
->add_modify
;
75 cmd_v5
->tid_disable_tx
= cmd_v6
->tid_disable_tx
;
76 cmd_v5
->mac_id_n_color
= cmd_v6
->mac_id_n_color
;
77 memcpy(cmd_v5
->addr
, cmd_v6
->addr
, ETH_ALEN
);
78 cmd_v5
->sta_id
= cmd_v6
->sta_id
;
79 cmd_v5
->modify_mask
= cmd_v6
->modify_mask
;
80 cmd_v5
->station_flags
= cmd_v6
->station_flags
;
81 cmd_v5
->station_flags_msk
= cmd_v6
->station_flags_msk
;
82 cmd_v5
->add_immediate_ba_tid
= cmd_v6
->add_immediate_ba_tid
;
83 cmd_v5
->remove_immediate_ba_tid
= cmd_v6
->remove_immediate_ba_tid
;
84 cmd_v5
->add_immediate_ba_ssn
= cmd_v6
->add_immediate_ba_ssn
;
85 cmd_v5
->sleep_tx_count
= cmd_v6
->sleep_tx_count
;
86 cmd_v5
->sleep_state_flags
= cmd_v6
->sleep_state_flags
;
87 cmd_v5
->assoc_id
= cmd_v6
->assoc_id
;
88 cmd_v5
->beamform_flags
= cmd_v6
->beamform_flags
;
89 cmd_v5
->tfd_queue_msk
= cmd_v6
->tfd_queue_msk
;
93 iwl_mvm_add_sta_key_to_add_sta_cmd_v5(struct iwl_mvm_add_sta_key_cmd
*key_cmd
,
94 struct iwl_mvm_add_sta_cmd_v5
*sta_cmd
,
97 memset(sta_cmd
, 0, sizeof(*sta_cmd
));
99 sta_cmd
->sta_id
= key_cmd
->sta_id
;
100 sta_cmd
->add_modify
= STA_MODE_MODIFY
;
101 sta_cmd
->modify_mask
= STA_MODIFY_KEY
;
102 sta_cmd
->mac_id_n_color
= cpu_to_le32(mac_id_n_color
);
104 sta_cmd
->key
.key_offset
= key_cmd
->key_offset
;
105 sta_cmd
->key
.key_flags
= key_cmd
->key_flags
;
106 memcpy(sta_cmd
->key
.key
, key_cmd
->key
, sizeof(sta_cmd
->key
.key
));
107 sta_cmd
->key
.tkip_rx_tsc_byte2
= key_cmd
->tkip_rx_tsc_byte2
;
108 memcpy(sta_cmd
->key
.tkip_rx_ttak
, key_cmd
->tkip_rx_ttak
,
109 sizeof(sta_cmd
->key
.tkip_rx_ttak
));
112 static int iwl_mvm_send_add_sta_cmd_status(struct iwl_mvm
*mvm
,
113 struct iwl_mvm_add_sta_cmd_v6
*cmd
,
116 struct iwl_mvm_add_sta_cmd_v5 cmd_v5
;
118 if (mvm
->fw
->ucode_capa
.flags
& IWL_UCODE_TLV_FLAGS_STA_KEY_CMD
)
119 return iwl_mvm_send_cmd_pdu_status(mvm
, ADD_STA
, sizeof(*cmd
),
122 iwl_mvm_add_sta_cmd_v6_to_v5(cmd
, &cmd_v5
);
124 return iwl_mvm_send_cmd_pdu_status(mvm
, ADD_STA
, sizeof(cmd_v5
),
128 static int iwl_mvm_send_add_sta_cmd(struct iwl_mvm
*mvm
, u32 flags
,
129 struct iwl_mvm_add_sta_cmd_v6
*cmd
)
131 struct iwl_mvm_add_sta_cmd_v5 cmd_v5
;
133 if (mvm
->fw
->ucode_capa
.flags
& IWL_UCODE_TLV_FLAGS_STA_KEY_CMD
)
134 return iwl_mvm_send_cmd_pdu(mvm
, ADD_STA
, flags
,
137 iwl_mvm_add_sta_cmd_v6_to_v5(cmd
, &cmd_v5
);
139 return iwl_mvm_send_cmd_pdu(mvm
, ADD_STA
, flags
, sizeof(cmd_v5
),
144 iwl_mvm_send_add_sta_key_cmd_status(struct iwl_mvm
*mvm
,
145 struct iwl_mvm_add_sta_key_cmd
*cmd
,
149 struct iwl_mvm_add_sta_cmd_v5 sta_cmd
;
151 if (mvm
->fw
->ucode_capa
.flags
& IWL_UCODE_TLV_FLAGS_STA_KEY_CMD
)
152 return iwl_mvm_send_cmd_pdu_status(mvm
, ADD_STA_KEY
,
153 sizeof(*cmd
), cmd
, status
);
155 iwl_mvm_add_sta_key_to_add_sta_cmd_v5(cmd
, &sta_cmd
, mac_id_n_color
);
157 return iwl_mvm_send_cmd_pdu_status(mvm
, ADD_STA
, sizeof(sta_cmd
),
161 static int iwl_mvm_send_add_sta_key_cmd(struct iwl_mvm
*mvm
,
163 struct iwl_mvm_add_sta_key_cmd
*cmd
,
166 struct iwl_mvm_add_sta_cmd_v5 sta_cmd
;
168 if (mvm
->fw
->ucode_capa
.flags
& IWL_UCODE_TLV_FLAGS_STA_KEY_CMD
)
169 return iwl_mvm_send_cmd_pdu(mvm
, ADD_STA_KEY
, flags
,
172 iwl_mvm_add_sta_key_to_add_sta_cmd_v5(cmd
, &sta_cmd
, mac_id_n_color
);
174 return iwl_mvm_send_cmd_pdu(mvm
, ADD_STA
, flags
, sizeof(sta_cmd
),
178 static int iwl_mvm_find_free_sta_id(struct iwl_mvm
*mvm
)
182 WARN_ON_ONCE(test_bit(IWL_MVM_STATUS_IN_HW_RESTART
, &mvm
->status
));
184 lockdep_assert_held(&mvm
->mutex
);
186 /* Don't take rcu_read_lock() since we are protected by mvm->mutex */
187 for (sta_id
= 0; sta_id
< IWL_MVM_STATION_COUNT
; sta_id
++)
188 if (!rcu_dereference_protected(mvm
->fw_id_to_mac_id
[sta_id
],
189 lockdep_is_held(&mvm
->mutex
)))
191 return IWL_MVM_STATION_COUNT
;
194 /* send station add/update command to firmware */
195 int iwl_mvm_sta_send_to_fw(struct iwl_mvm
*mvm
, struct ieee80211_sta
*sta
,
198 struct iwl_mvm_sta
*mvm_sta
= (void *)sta
->drv_priv
;
199 struct iwl_mvm_add_sta_cmd_v6 add_sta_cmd
;
202 u32 agg_size
= 0, mpdu_dens
= 0;
204 memset(&add_sta_cmd
, 0, sizeof(add_sta_cmd
));
206 add_sta_cmd
.sta_id
= mvm_sta
->sta_id
;
207 add_sta_cmd
.mac_id_n_color
= cpu_to_le32(mvm_sta
->mac_id_n_color
);
209 add_sta_cmd
.tfd_queue_msk
= cpu_to_le32(mvm_sta
->tfd_queue_msk
);
210 memcpy(&add_sta_cmd
.addr
, sta
->addr
, ETH_ALEN
);
212 add_sta_cmd
.add_modify
= update
? 1 : 0;
214 add_sta_cmd
.station_flags_msk
|= cpu_to_le32(STA_FLG_FAT_EN_MSK
|
215 STA_FLG_MIMO_EN_MSK
);
217 switch (sta
->bandwidth
) {
218 case IEEE80211_STA_RX_BW_160
:
219 add_sta_cmd
.station_flags
|= cpu_to_le32(STA_FLG_FAT_EN_160MHZ
);
221 case IEEE80211_STA_RX_BW_80
:
222 add_sta_cmd
.station_flags
|= cpu_to_le32(STA_FLG_FAT_EN_80MHZ
);
224 case IEEE80211_STA_RX_BW_40
:
225 add_sta_cmd
.station_flags
|= cpu_to_le32(STA_FLG_FAT_EN_40MHZ
);
227 case IEEE80211_STA_RX_BW_20
:
228 if (sta
->ht_cap
.ht_supported
)
229 add_sta_cmd
.station_flags
|=
230 cpu_to_le32(STA_FLG_FAT_EN_20MHZ
);
234 switch (sta
->rx_nss
) {
236 add_sta_cmd
.station_flags
|= cpu_to_le32(STA_FLG_MIMO_EN_SISO
);
239 add_sta_cmd
.station_flags
|= cpu_to_le32(STA_FLG_MIMO_EN_MIMO2
);
242 add_sta_cmd
.station_flags
|= cpu_to_le32(STA_FLG_MIMO_EN_MIMO3
);
246 switch (sta
->smps_mode
) {
247 case IEEE80211_SMPS_AUTOMATIC
:
248 case IEEE80211_SMPS_NUM_MODES
:
251 case IEEE80211_SMPS_STATIC
:
253 add_sta_cmd
.station_flags
&= ~cpu_to_le32(STA_FLG_MIMO_EN_MSK
);
254 add_sta_cmd
.station_flags
|= cpu_to_le32(STA_FLG_MIMO_EN_SISO
);
256 case IEEE80211_SMPS_DYNAMIC
:
257 add_sta_cmd
.station_flags
|= cpu_to_le32(STA_FLG_RTS_MIMO_PROT
);
259 case IEEE80211_SMPS_OFF
:
264 if (sta
->ht_cap
.ht_supported
) {
265 add_sta_cmd
.station_flags_msk
|=
266 cpu_to_le32(STA_FLG_MAX_AGG_SIZE_MSK
|
267 STA_FLG_AGG_MPDU_DENS_MSK
);
269 mpdu_dens
= sta
->ht_cap
.ampdu_density
;
272 if (sta
->vht_cap
.vht_supported
) {
273 agg_size
= sta
->vht_cap
.cap
&
274 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK
;
276 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT
;
277 } else if (sta
->ht_cap
.ht_supported
) {
278 agg_size
= sta
->ht_cap
.ampdu_factor
;
281 add_sta_cmd
.station_flags
|=
282 cpu_to_le32(agg_size
<< STA_FLG_MAX_AGG_SIZE_SHIFT
);
283 add_sta_cmd
.station_flags
|=
284 cpu_to_le32(mpdu_dens
<< STA_FLG_AGG_MPDU_DENS_SHIFT
);
286 status
= ADD_STA_SUCCESS
;
287 ret
= iwl_mvm_send_add_sta_cmd_status(mvm
, &add_sta_cmd
, &status
);
292 case ADD_STA_SUCCESS
:
293 IWL_DEBUG_ASSOC(mvm
, "ADD_STA PASSED\n");
297 IWL_ERR(mvm
, "ADD_STA failed\n");
304 int iwl_mvm_add_sta(struct iwl_mvm
*mvm
,
305 struct ieee80211_vif
*vif
,
306 struct ieee80211_sta
*sta
)
308 struct iwl_mvm_vif
*mvmvif
= iwl_mvm_vif_from_mac80211(vif
);
309 struct iwl_mvm_sta
*mvm_sta
= (void *)sta
->drv_priv
;
312 lockdep_assert_held(&mvm
->mutex
);
314 if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART
, &mvm
->status
))
315 sta_id
= iwl_mvm_find_free_sta_id(mvm
);
317 sta_id
= mvm_sta
->sta_id
;
319 if (WARN_ON_ONCE(sta_id
== IWL_MVM_STATION_COUNT
))
322 spin_lock_init(&mvm_sta
->lock
);
324 mvm_sta
->sta_id
= sta_id
;
325 mvm_sta
->mac_id_n_color
= FW_CMD_ID_AND_COLOR(mvmvif
->id
,
328 mvm_sta
->max_agg_bufsize
= LINK_QUAL_AGG_FRAME_LIMIT_DEF
;
329 mvm_sta
->tx_protection
= 0;
330 mvm_sta
->tt_tx_protection
= false;
332 /* HW restart, don't assume the memory has been zeroed */
333 atomic_set(&mvm
->pending_frames
[sta_id
], 0);
334 mvm_sta
->tid_disable_agg
= 0;
335 mvm_sta
->tfd_queue_msk
= 0;
336 for (i
= 0; i
< IEEE80211_NUM_ACS
; i
++)
337 if (vif
->hw_queue
[i
] != IEEE80211_INVAL_HW_QUEUE
)
338 mvm_sta
->tfd_queue_msk
|= BIT(vif
->hw_queue
[i
]);
340 /* for HW restart - reset everything but the sequence number */
341 for (i
= 0; i
< IWL_MAX_TID_COUNT
; i
++) {
342 u16 seq
= mvm_sta
->tid_data
[i
].seq_number
;
343 memset(&mvm_sta
->tid_data
[i
], 0, sizeof(mvm_sta
->tid_data
[i
]));
344 mvm_sta
->tid_data
[i
].seq_number
= seq
;
347 ret
= iwl_mvm_sta_send_to_fw(mvm
, sta
, false);
351 /* The first station added is the AP, the others are TDLS STAs */
352 if (vif
->type
== NL80211_IFTYPE_STATION
&&
353 mvmvif
->ap_sta_id
== IWL_MVM_STATION_COUNT
)
354 mvmvif
->ap_sta_id
= sta_id
;
356 rcu_assign_pointer(mvm
->fw_id_to_mac_id
[sta_id
], sta
);
361 int iwl_mvm_update_sta(struct iwl_mvm
*mvm
,
362 struct ieee80211_vif
*vif
,
363 struct ieee80211_sta
*sta
)
365 return iwl_mvm_sta_send_to_fw(mvm
, sta
, true);
368 int iwl_mvm_drain_sta(struct iwl_mvm
*mvm
, struct iwl_mvm_sta
*mvmsta
,
371 struct iwl_mvm_add_sta_cmd_v6 cmd
= {};
375 lockdep_assert_held(&mvm
->mutex
);
377 cmd
.mac_id_n_color
= cpu_to_le32(mvmsta
->mac_id_n_color
);
378 cmd
.sta_id
= mvmsta
->sta_id
;
379 cmd
.add_modify
= STA_MODE_MODIFY
;
380 cmd
.station_flags
= drain
? cpu_to_le32(STA_FLG_DRAIN_FLOW
) : 0;
381 cmd
.station_flags_msk
= cpu_to_le32(STA_FLG_DRAIN_FLOW
);
383 status
= ADD_STA_SUCCESS
;
384 ret
= iwl_mvm_send_add_sta_cmd_status(mvm
, &cmd
, &status
);
389 case ADD_STA_SUCCESS
:
390 IWL_DEBUG_INFO(mvm
, "Frames for staid %d will drained in fw\n",
395 IWL_ERR(mvm
, "Couldn't drain frames for staid %d\n",
404 * Remove a station from the FW table. Before sending the command to remove
405 * the station validate that the station is indeed known to the driver (sanity
408 static int iwl_mvm_rm_sta_common(struct iwl_mvm
*mvm
, u8 sta_id
)
410 struct ieee80211_sta
*sta
;
411 struct iwl_mvm_rm_sta_cmd rm_sta_cmd
= {
416 sta
= rcu_dereference_protected(mvm
->fw_id_to_mac_id
[sta_id
],
417 lockdep_is_held(&mvm
->mutex
));
419 /* Note: internal stations are marked as error values */
421 IWL_ERR(mvm
, "Invalid station id\n");
425 ret
= iwl_mvm_send_cmd_pdu(mvm
, REMOVE_STA
, CMD_SYNC
,
426 sizeof(rm_sta_cmd
), &rm_sta_cmd
);
428 IWL_ERR(mvm
, "Failed to remove station. Id=%d\n", sta_id
);
435 void iwl_mvm_sta_drained_wk(struct work_struct
*wk
)
437 struct iwl_mvm
*mvm
= container_of(wk
, struct iwl_mvm
, sta_drained_wk
);
441 * The mutex is needed because of the SYNC cmd, but not only: if the
442 * work would run concurrently with iwl_mvm_rm_sta, it would run before
443 * iwl_mvm_rm_sta sets the station as busy, and exit. Then
444 * iwl_mvm_rm_sta would set the station as busy, and nobody will clean
447 mutex_lock(&mvm
->mutex
);
449 for_each_set_bit(sta_id
, mvm
->sta_drained
, IWL_MVM_STATION_COUNT
) {
451 struct ieee80211_sta
*sta
=
452 rcu_dereference_protected(mvm
->fw_id_to_mac_id
[sta_id
],
453 lockdep_is_held(&mvm
->mutex
));
456 * This station is in use or RCU-removed; the latter happens in
457 * managed mode, where mac80211 removes the station before we
458 * can remove it from firmware (we can only do that after the
459 * MAC is marked unassociated), and possibly while the deauth
460 * frame to disconnect from the AP is still queued. Then, the
461 * station pointer is -ENOENT when the last skb is reclaimed.
463 if (!IS_ERR(sta
) || PTR_ERR(sta
) == -ENOENT
)
466 if (PTR_ERR(sta
) == -EINVAL
) {
467 IWL_ERR(mvm
, "Drained sta %d, but it is internal?\n",
473 IWL_ERR(mvm
, "Drained sta %d, but it was NULL?\n",
478 WARN_ON(PTR_ERR(sta
) != -EBUSY
);
479 /* This station was removed and we waited until it got drained,
480 * we can now proceed and remove it.
482 ret
= iwl_mvm_rm_sta_common(mvm
, sta_id
);
485 "Couldn't remove sta %d after it was drained\n",
489 rcu_assign_pointer(mvm
->fw_id_to_mac_id
[sta_id
], NULL
);
490 clear_bit(sta_id
, mvm
->sta_drained
);
493 mutex_unlock(&mvm
->mutex
);
496 int iwl_mvm_rm_sta(struct iwl_mvm
*mvm
,
497 struct ieee80211_vif
*vif
,
498 struct ieee80211_sta
*sta
)
500 struct iwl_mvm_vif
*mvmvif
= iwl_mvm_vif_from_mac80211(vif
);
501 struct iwl_mvm_sta
*mvm_sta
= (void *)sta
->drv_priv
;
504 lockdep_assert_held(&mvm
->mutex
);
506 if (vif
->type
== NL80211_IFTYPE_STATION
&&
507 mvmvif
->ap_sta_id
== mvm_sta
->sta_id
) {
508 /* flush its queues here since we are freeing mvm_sta */
509 ret
= iwl_mvm_flush_tx_path(mvm
, mvm_sta
->tfd_queue_msk
, true);
512 * Put a non-NULL since the fw station isn't removed.
513 * It will be removed after the MAC will be set as
516 rcu_assign_pointer(mvm
->fw_id_to_mac_id
[mvm_sta
->sta_id
],
519 /* if we are associated - we can't remove the AP STA now */
520 if (vif
->bss_conf
.assoc
)
523 /* unassoc - go ahead - remove the AP STA now */
524 mvmvif
->ap_sta_id
= IWL_MVM_STATION_COUNT
;
528 * Make sure that the tx response code sees the station as -EBUSY and
529 * calls the drain worker.
531 spin_lock_bh(&mvm_sta
->lock
);
533 * There are frames pending on the AC queues for this station.
534 * We need to wait until all the frames are drained...
536 if (atomic_read(&mvm
->pending_frames
[mvm_sta
->sta_id
])) {
537 rcu_assign_pointer(mvm
->fw_id_to_mac_id
[mvm_sta
->sta_id
],
539 spin_unlock_bh(&mvm_sta
->lock
);
540 ret
= iwl_mvm_drain_sta(mvm
, mvm_sta
, true);
542 spin_unlock_bh(&mvm_sta
->lock
);
543 ret
= iwl_mvm_rm_sta_common(mvm
, mvm_sta
->sta_id
);
544 rcu_assign_pointer(mvm
->fw_id_to_mac_id
[mvm_sta
->sta_id
], NULL
);
550 int iwl_mvm_rm_sta_id(struct iwl_mvm
*mvm
,
551 struct ieee80211_vif
*vif
,
554 int ret
= iwl_mvm_rm_sta_common(mvm
, sta_id
);
556 lockdep_assert_held(&mvm
->mutex
);
558 rcu_assign_pointer(mvm
->fw_id_to_mac_id
[sta_id
], NULL
);
562 int iwl_mvm_allocate_int_sta(struct iwl_mvm
*mvm
, struct iwl_mvm_int_sta
*sta
,
565 if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART
, &mvm
->status
)) {
566 sta
->sta_id
= iwl_mvm_find_free_sta_id(mvm
);
567 if (WARN_ON_ONCE(sta
->sta_id
== IWL_MVM_STATION_COUNT
))
571 sta
->tfd_queue_msk
= qmask
;
573 /* put a non-NULL value so iterating over the stations won't stop */
574 rcu_assign_pointer(mvm
->fw_id_to_mac_id
[sta
->sta_id
], ERR_PTR(-EINVAL
));
578 void iwl_mvm_dealloc_int_sta(struct iwl_mvm
*mvm
, struct iwl_mvm_int_sta
*sta
)
580 rcu_assign_pointer(mvm
->fw_id_to_mac_id
[sta
->sta_id
], NULL
);
581 memset(sta
, 0, sizeof(struct iwl_mvm_int_sta
));
582 sta
->sta_id
= IWL_MVM_STATION_COUNT
;
585 static int iwl_mvm_add_int_sta_common(struct iwl_mvm
*mvm
,
586 struct iwl_mvm_int_sta
*sta
,
588 u16 mac_id
, u16 color
)
590 struct iwl_mvm_add_sta_cmd_v6 cmd
;
594 lockdep_assert_held(&mvm
->mutex
);
596 memset(&cmd
, 0, sizeof(struct iwl_mvm_add_sta_cmd_v6
));
597 cmd
.sta_id
= sta
->sta_id
;
598 cmd
.mac_id_n_color
= cpu_to_le32(FW_CMD_ID_AND_COLOR(mac_id
,
601 cmd
.tfd_queue_msk
= cpu_to_le32(sta
->tfd_queue_msk
);
604 memcpy(cmd
.addr
, addr
, ETH_ALEN
);
606 ret
= iwl_mvm_send_add_sta_cmd_status(mvm
, &cmd
, &status
);
611 case ADD_STA_SUCCESS
:
612 IWL_DEBUG_INFO(mvm
, "Internal station added.\n");
616 IWL_ERR(mvm
, "Add internal station failed, status=0x%x\n",
623 int iwl_mvm_add_aux_sta(struct iwl_mvm
*mvm
)
627 lockdep_assert_held(&mvm
->mutex
);
629 /* Add the aux station, but without any queues */
630 ret
= iwl_mvm_allocate_int_sta(mvm
, &mvm
->aux_sta
, 0);
634 ret
= iwl_mvm_add_int_sta_common(mvm
, &mvm
->aux_sta
, NULL
,
638 iwl_mvm_dealloc_int_sta(mvm
, &mvm
->aux_sta
);
643 * Send the add station command for the vif's broadcast station.
644 * Assumes that the station was already allocated.
646 * @mvm: the mvm component
647 * @vif: the interface to which the broadcast station is added
648 * @bsta: the broadcast station to add.
650 int iwl_mvm_send_bcast_sta(struct iwl_mvm
*mvm
, struct ieee80211_vif
*vif
,
651 struct iwl_mvm_int_sta
*bsta
)
653 struct iwl_mvm_vif
*mvmvif
= iwl_mvm_vif_from_mac80211(vif
);
654 static const u8 _baddr
[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
655 static const u8
*baddr
= _baddr
;
657 lockdep_assert_held(&mvm
->mutex
);
659 if (vif
->type
== NL80211_IFTYPE_ADHOC
)
660 baddr
= vif
->bss_conf
.bssid
;
662 if (WARN_ON_ONCE(bsta
->sta_id
== IWL_MVM_STATION_COUNT
))
665 return iwl_mvm_add_int_sta_common(mvm
, bsta
, baddr
,
666 mvmvif
->id
, mvmvif
->color
);
669 /* Send the FW a request to remove the station from it's internal data
670 * structures, but DO NOT remove the entry from the local data structures. */
671 int iwl_mvm_send_rm_bcast_sta(struct iwl_mvm
*mvm
,
672 struct iwl_mvm_int_sta
*bsta
)
676 lockdep_assert_held(&mvm
->mutex
);
678 ret
= iwl_mvm_rm_sta_common(mvm
, bsta
->sta_id
);
680 IWL_WARN(mvm
, "Failed sending remove station\n");
684 /* Allocate a new station entry for the broadcast station to the given vif,
685 * and send it to the FW.
686 * Note that each P2P mac should have its own broadcast station.
688 * @mvm: the mvm component
689 * @vif: the interface to which the broadcast station is added
690 * @bsta: the broadcast station to add. */
691 int iwl_mvm_add_bcast_sta(struct iwl_mvm
*mvm
, struct ieee80211_vif
*vif
,
692 struct iwl_mvm_int_sta
*bsta
)
694 struct iwl_mvm_vif
*mvmvif
= iwl_mvm_vif_from_mac80211(vif
);
695 static const u8 baddr
[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
699 lockdep_assert_held(&mvm
->mutex
);
701 qmask
= iwl_mvm_mac_get_queues_mask(mvm
, vif
);
702 ret
= iwl_mvm_allocate_int_sta(mvm
, bsta
, qmask
);
706 ret
= iwl_mvm_add_int_sta_common(mvm
, bsta
, baddr
,
707 mvmvif
->id
, mvmvif
->color
);
710 iwl_mvm_dealloc_int_sta(mvm
, bsta
);
715 * Send the FW a request to remove the station from it's internal data
716 * structures, and in addition remove it from the local data structure.
718 int iwl_mvm_rm_bcast_sta(struct iwl_mvm
*mvm
, struct iwl_mvm_int_sta
*bsta
)
722 lockdep_assert_held(&mvm
->mutex
);
724 ret
= iwl_mvm_rm_sta_common(mvm
, bsta
->sta_id
);
728 iwl_mvm_dealloc_int_sta(mvm
, bsta
);
732 #define IWL_MAX_RX_BA_SESSIONS 16
734 int iwl_mvm_sta_rx_agg(struct iwl_mvm
*mvm
, struct ieee80211_sta
*sta
,
735 int tid
, u16 ssn
, bool start
)
737 struct iwl_mvm_sta
*mvm_sta
= (void *)sta
->drv_priv
;
738 struct iwl_mvm_add_sta_cmd_v6 cmd
= {};
742 lockdep_assert_held(&mvm
->mutex
);
744 if (start
&& mvm
->rx_ba_sessions
>= IWL_MAX_RX_BA_SESSIONS
) {
745 IWL_WARN(mvm
, "Not enough RX BA SESSIONS\n");
749 cmd
.mac_id_n_color
= cpu_to_le32(mvm_sta
->mac_id_n_color
);
750 cmd
.sta_id
= mvm_sta
->sta_id
;
751 cmd
.add_modify
= STA_MODE_MODIFY
;
753 cmd
.add_immediate_ba_tid
= (u8
) tid
;
754 cmd
.add_immediate_ba_ssn
= cpu_to_le16(ssn
);
756 cmd
.remove_immediate_ba_tid
= (u8
) tid
;
758 cmd
.modify_mask
= start
? STA_MODIFY_ADD_BA_TID
:
759 STA_MODIFY_REMOVE_BA_TID
;
761 status
= ADD_STA_SUCCESS
;
762 ret
= iwl_mvm_send_add_sta_cmd_status(mvm
, &cmd
, &status
);
767 case ADD_STA_SUCCESS
:
768 IWL_DEBUG_INFO(mvm
, "RX BA Session %sed in fw\n",
769 start
? "start" : "stopp");
771 case ADD_STA_IMMEDIATE_BA_FAILURE
:
772 IWL_WARN(mvm
, "RX BA Session refused by fw\n");
777 IWL_ERR(mvm
, "RX BA Session failed %sing, status 0x%x\n",
778 start
? "start" : "stopp", status
);
784 mvm
->rx_ba_sessions
++;
785 else if (mvm
->rx_ba_sessions
> 0)
786 /* check that restart flow didn't zero the counter */
787 mvm
->rx_ba_sessions
--;
793 static int iwl_mvm_sta_tx_agg(struct iwl_mvm
*mvm
, struct ieee80211_sta
*sta
,
794 int tid
, u8 queue
, bool start
)
796 struct iwl_mvm_sta
*mvm_sta
= (void *)sta
->drv_priv
;
797 struct iwl_mvm_add_sta_cmd_v6 cmd
= {};
801 lockdep_assert_held(&mvm
->mutex
);
804 mvm_sta
->tfd_queue_msk
|= BIT(queue
);
805 mvm_sta
->tid_disable_agg
&= ~BIT(tid
);
807 mvm_sta
->tfd_queue_msk
&= ~BIT(queue
);
808 mvm_sta
->tid_disable_agg
|= BIT(tid
);
811 cmd
.mac_id_n_color
= cpu_to_le32(mvm_sta
->mac_id_n_color
);
812 cmd
.sta_id
= mvm_sta
->sta_id
;
813 cmd
.add_modify
= STA_MODE_MODIFY
;
814 cmd
.modify_mask
= STA_MODIFY_QUEUES
| STA_MODIFY_TID_DISABLE_TX
;
815 cmd
.tfd_queue_msk
= cpu_to_le32(mvm_sta
->tfd_queue_msk
);
816 cmd
.tid_disable_tx
= cpu_to_le16(mvm_sta
->tid_disable_agg
);
818 status
= ADD_STA_SUCCESS
;
819 ret
= iwl_mvm_send_add_sta_cmd_status(mvm
, &cmd
, &status
);
824 case ADD_STA_SUCCESS
:
828 IWL_ERR(mvm
, "TX BA Session failed %sing, status 0x%x\n",
829 start
? "start" : "stopp", status
);
836 static const u8 tid_to_ac
[] = {
847 int iwl_mvm_sta_tx_agg_start(struct iwl_mvm
*mvm
, struct ieee80211_vif
*vif
,
848 struct ieee80211_sta
*sta
, u16 tid
, u16
*ssn
)
850 struct iwl_mvm_sta
*mvmsta
= iwl_mvm_sta_from_mac80211(sta
);
851 struct iwl_mvm_tid_data
*tid_data
;
854 if (WARN_ON_ONCE(tid
>= IWL_MAX_TID_COUNT
))
857 if (mvmsta
->tid_data
[tid
].state
!= IWL_AGG_OFF
) {
858 IWL_ERR(mvm
, "Start AGG when state is not IWL_AGG_OFF %d!\n",
859 mvmsta
->tid_data
[tid
].state
);
863 lockdep_assert_held(&mvm
->mutex
);
865 for (txq_id
= mvm
->first_agg_queue
;
866 txq_id
<= mvm
->last_agg_queue
; txq_id
++)
867 if (mvm
->queue_to_mac80211
[txq_id
] ==
868 IWL_INVALID_MAC80211_QUEUE
)
871 if (txq_id
> mvm
->last_agg_queue
) {
872 IWL_ERR(mvm
, "Failed to allocate agg queue\n");
876 /* the new tx queue is still connected to the same mac80211 queue */
877 mvm
->queue_to_mac80211
[txq_id
] = vif
->hw_queue
[tid_to_ac
[tid
]];
879 spin_lock_bh(&mvmsta
->lock
);
880 tid_data
= &mvmsta
->tid_data
[tid
];
881 tid_data
->ssn
= IEEE80211_SEQ_TO_SN(tid_data
->seq_number
);
882 tid_data
->txq_id
= txq_id
;
883 *ssn
= tid_data
->ssn
;
885 IWL_DEBUG_TX_QUEUES(mvm
,
886 "Start AGG: sta %d tid %d queue %d - ssn = %d, next_recl = %d\n",
887 mvmsta
->sta_id
, tid
, txq_id
, tid_data
->ssn
,
888 tid_data
->next_reclaimed
);
890 if (tid_data
->ssn
== tid_data
->next_reclaimed
) {
891 tid_data
->state
= IWL_AGG_STARTING
;
892 ieee80211_start_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
894 tid_data
->state
= IWL_EMPTYING_HW_QUEUE_ADDBA
;
897 spin_unlock_bh(&mvmsta
->lock
);
902 int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm
*mvm
, struct ieee80211_vif
*vif
,
903 struct ieee80211_sta
*sta
, u16 tid
, u8 buf_size
)
905 struct iwl_mvm_sta
*mvmsta
= iwl_mvm_sta_from_mac80211(sta
);
906 struct iwl_mvm_tid_data
*tid_data
= &mvmsta
->tid_data
[tid
];
907 int queue
, fifo
, ret
;
910 buf_size
= min_t(int, buf_size
, LINK_QUAL_AGG_FRAME_LIMIT_DEF
);
912 spin_lock_bh(&mvmsta
->lock
);
914 queue
= tid_data
->txq_id
;
915 tid_data
->state
= IWL_AGG_ON
;
916 tid_data
->ssn
= 0xffff;
917 spin_unlock_bh(&mvmsta
->lock
);
919 fifo
= iwl_mvm_ac_to_tx_fifo
[tid_to_ac
[tid
]];
921 ret
= iwl_mvm_sta_tx_agg(mvm
, sta
, tid
, queue
, true);
925 iwl_trans_txq_enable(mvm
->trans
, queue
, fifo
, mvmsta
->sta_id
, tid
,
929 * Even though in theory the peer could have different
930 * aggregation reorder buffer sizes for different sessions,
931 * our ucode doesn't allow for that and has a global limit
932 * for each station. Therefore, use the minimum of all the
933 * aggregation sessions and our default value.
935 mvmsta
->max_agg_bufsize
=
936 min(mvmsta
->max_agg_bufsize
, buf_size
);
937 mvmsta
->lq_sta
.lq
.agg_frame_cnt_limit
= mvmsta
->max_agg_bufsize
;
939 IWL_DEBUG_HT(mvm
, "Tx aggregation enabled on ra = %pM tid = %d\n",
942 return iwl_mvm_send_lq_cmd(mvm
, &mvmsta
->lq_sta
.lq
, false);
945 int iwl_mvm_sta_tx_agg_stop(struct iwl_mvm
*mvm
, struct ieee80211_vif
*vif
,
946 struct ieee80211_sta
*sta
, u16 tid
)
948 struct iwl_mvm_sta
*mvmsta
= iwl_mvm_sta_from_mac80211(sta
);
949 struct iwl_mvm_tid_data
*tid_data
= &mvmsta
->tid_data
[tid
];
955 * If mac80211 is cleaning its state, then say that we finished since
956 * our state has been cleared anyway.
958 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART
, &mvm
->status
)) {
959 ieee80211_stop_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
963 spin_lock_bh(&mvmsta
->lock
);
965 txq_id
= tid_data
->txq_id
;
967 IWL_DEBUG_TX_QUEUES(mvm
, "Stop AGG: sta %d tid %d q %d state %d\n",
968 mvmsta
->sta_id
, tid
, txq_id
, tid_data
->state
);
970 switch (tid_data
->state
) {
972 tid_data
->ssn
= IEEE80211_SEQ_TO_SN(tid_data
->seq_number
);
974 IWL_DEBUG_TX_QUEUES(mvm
,
975 "ssn = %d, next_recl = %d\n",
976 tid_data
->ssn
, tid_data
->next_reclaimed
);
978 /* There are still packets for this RA / TID in the HW */
979 if (tid_data
->ssn
!= tid_data
->next_reclaimed
) {
980 tid_data
->state
= IWL_EMPTYING_HW_QUEUE_DELBA
;
985 tid_data
->ssn
= 0xffff;
986 iwl_trans_txq_disable(mvm
->trans
, txq_id
);
988 case IWL_AGG_STARTING
:
989 case IWL_EMPTYING_HW_QUEUE_ADDBA
:
991 * The agg session has been stopped before it was set up. This
992 * can happen when the AddBA timer times out for example.
995 /* No barriers since we are under mutex */
996 lockdep_assert_held(&mvm
->mutex
);
997 mvm
->queue_to_mac80211
[txq_id
] = IWL_INVALID_MAC80211_QUEUE
;
999 ieee80211_stop_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
1000 tid_data
->state
= IWL_AGG_OFF
;
1005 "Stopping AGG while state not ON or starting for %d on %d (%d)\n",
1006 mvmsta
->sta_id
, tid
, tid_data
->state
);
1008 "\ttid_data->txq_id = %d\n", tid_data
->txq_id
);
1012 spin_unlock_bh(&mvmsta
->lock
);
1017 int iwl_mvm_sta_tx_agg_flush(struct iwl_mvm
*mvm
, struct ieee80211_vif
*vif
,
1018 struct ieee80211_sta
*sta
, u16 tid
)
1020 struct iwl_mvm_sta
*mvmsta
= iwl_mvm_sta_from_mac80211(sta
);
1021 struct iwl_mvm_tid_data
*tid_data
= &mvmsta
->tid_data
[tid
];
1023 enum iwl_mvm_agg_state old_state
;
1026 * First set the agg state to OFF to avoid calling
1027 * ieee80211_stop_tx_ba_cb in iwl_mvm_check_ratid_empty.
1029 spin_lock_bh(&mvmsta
->lock
);
1030 txq_id
= tid_data
->txq_id
;
1031 IWL_DEBUG_TX_QUEUES(mvm
, "Flush AGG: sta %d tid %d q %d state %d\n",
1032 mvmsta
->sta_id
, tid
, txq_id
, tid_data
->state
);
1033 old_state
= tid_data
->state
;
1034 tid_data
->state
= IWL_AGG_OFF
;
1035 spin_unlock_bh(&mvmsta
->lock
);
1037 if (old_state
>= IWL_AGG_ON
) {
1038 if (iwl_mvm_flush_tx_path(mvm
, BIT(txq_id
), true))
1039 IWL_ERR(mvm
, "Couldn't flush the AGG queue\n");
1041 iwl_trans_txq_disable(mvm
->trans
, tid_data
->txq_id
);
1044 mvm
->queue_to_mac80211
[tid_data
->txq_id
] =
1045 IWL_INVALID_MAC80211_QUEUE
;
1050 static int iwl_mvm_set_fw_key_idx(struct iwl_mvm
*mvm
)
1054 lockdep_assert_held(&mvm
->mutex
);
1056 i
= find_first_zero_bit(mvm
->fw_key_table
, STA_KEY_MAX_NUM
);
1058 if (i
== STA_KEY_MAX_NUM
)
1059 return STA_KEY_IDX_INVALID
;
1061 __set_bit(i
, mvm
->fw_key_table
);
1066 static u8
iwl_mvm_get_key_sta_id(struct ieee80211_vif
*vif
,
1067 struct ieee80211_sta
*sta
)
1069 struct iwl_mvm_vif
*mvmvif
= (void *)vif
->drv_priv
;
1072 struct iwl_mvm_sta
*mvm_sta
= (void *)sta
->drv_priv
;
1074 return mvm_sta
->sta_id
;
1078 * The device expects GTKs for station interfaces to be
1079 * installed as GTKs for the AP station. If we have no
1080 * station ID, then use AP's station ID.
1082 if (vif
->type
== NL80211_IFTYPE_STATION
&&
1083 mvmvif
->ap_sta_id
!= IWL_MVM_STATION_COUNT
)
1084 return mvmvif
->ap_sta_id
;
1086 return IWL_MVM_STATION_COUNT
;
1089 static int iwl_mvm_send_sta_key(struct iwl_mvm
*mvm
,
1090 struct iwl_mvm_sta
*mvm_sta
,
1091 struct ieee80211_key_conf
*keyconf
,
1092 u8 sta_id
, u32 tkip_iv32
, u16
*tkip_p1k
,
1096 struct iwl_mvm_add_sta_key_cmd cmd
= {};
1100 u32 mac_id_n_color
= mvm_sta
->mac_id_n_color
;
1102 keyidx
= (keyconf
->keyidx
<< STA_KEY_FLG_KEYID_POS
) &
1103 STA_KEY_FLG_KEYID_MSK
;
1104 key_flags
= cpu_to_le16(keyidx
);
1105 key_flags
|= cpu_to_le16(STA_KEY_FLG_WEP_KEY_MAP
);
1107 switch (keyconf
->cipher
) {
1108 case WLAN_CIPHER_SUITE_TKIP
:
1109 key_flags
|= cpu_to_le16(STA_KEY_FLG_TKIP
);
1110 cmd
.tkip_rx_tsc_byte2
= tkip_iv32
;
1111 for (i
= 0; i
< 5; i
++)
1112 cmd
.tkip_rx_ttak
[i
] = cpu_to_le16(tkip_p1k
[i
]);
1113 memcpy(cmd
.key
, keyconf
->key
, keyconf
->keylen
);
1115 case WLAN_CIPHER_SUITE_CCMP
:
1116 key_flags
|= cpu_to_le16(STA_KEY_FLG_CCM
);
1117 memcpy(cmd
.key
, keyconf
->key
, keyconf
->keylen
);
1120 key_flags
|= cpu_to_le16(STA_KEY_FLG_EXT
);
1121 memcpy(cmd
.key
, keyconf
->key
, keyconf
->keylen
);
1124 if (!(keyconf
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
))
1125 key_flags
|= cpu_to_le16(STA_KEY_MULTICAST
);
1127 cmd
.key_offset
= keyconf
->hw_key_idx
;
1128 cmd
.key_flags
= key_flags
;
1129 cmd
.sta_id
= sta_id
;
1131 status
= ADD_STA_SUCCESS
;
1132 if (cmd_flags
== CMD_SYNC
)
1133 ret
= iwl_mvm_send_add_sta_key_cmd_status(mvm
, &cmd
,
1137 ret
= iwl_mvm_send_add_sta_key_cmd(mvm
, CMD_ASYNC
, &cmd
,
1141 case ADD_STA_SUCCESS
:
1142 IWL_DEBUG_WEP(mvm
, "MODIFY_STA: set dynamic key passed\n");
1146 IWL_ERR(mvm
, "MODIFY_STA: set dynamic key failed\n");
1153 static int iwl_mvm_send_sta_igtk(struct iwl_mvm
*mvm
,
1154 struct ieee80211_key_conf
*keyconf
,
1155 u8 sta_id
, bool remove_key
)
1157 struct iwl_mvm_mgmt_mcast_key_cmd igtk_cmd
= {};
1159 /* verify the key details match the required command's expectations */
1160 if (WARN_ON((keyconf
->cipher
!= WLAN_CIPHER_SUITE_AES_CMAC
) ||
1161 (keyconf
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
) ||
1162 (keyconf
->keyidx
!= 4 && keyconf
->keyidx
!= 5)))
1165 igtk_cmd
.key_id
= cpu_to_le32(keyconf
->keyidx
);
1166 igtk_cmd
.sta_id
= cpu_to_le32(sta_id
);
1169 igtk_cmd
.ctrl_flags
|= cpu_to_le32(STA_KEY_NOT_VALID
);
1171 struct ieee80211_key_seq seq
;
1174 memcpy(igtk_cmd
.IGTK
, keyconf
->key
, keyconf
->keylen
);
1175 ieee80211_aes_cmac_calculate_k1_k2(keyconf
,
1176 igtk_cmd
.K1
, igtk_cmd
.K2
);
1177 ieee80211_get_key_rx_seq(keyconf
, 0, &seq
);
1178 pn
= seq
.aes_cmac
.pn
;
1179 igtk_cmd
.receive_seq_cnt
= cpu_to_le64(((u64
) pn
[5] << 0) |
1180 ((u64
) pn
[4] << 8) |
1181 ((u64
) pn
[3] << 16) |
1182 ((u64
) pn
[2] << 24) |
1183 ((u64
) pn
[1] << 32) |
1184 ((u64
) pn
[0] << 40));
1187 IWL_DEBUG_INFO(mvm
, "%s igtk for sta %u\n",
1188 remove_key
? "removing" : "installing",
1191 return iwl_mvm_send_cmd_pdu(mvm
, MGMT_MCAST_KEY
, CMD_SYNC
,
1192 sizeof(igtk_cmd
), &igtk_cmd
);
1196 static inline u8
*iwl_mvm_get_mac_addr(struct iwl_mvm
*mvm
,
1197 struct ieee80211_vif
*vif
,
1198 struct ieee80211_sta
*sta
)
1200 struct iwl_mvm_vif
*mvmvif
= (void *)vif
->drv_priv
;
1205 if (vif
->type
== NL80211_IFTYPE_STATION
&&
1206 mvmvif
->ap_sta_id
!= IWL_MVM_STATION_COUNT
) {
1207 u8 sta_id
= mvmvif
->ap_sta_id
;
1208 sta
= rcu_dereference_protected(mvm
->fw_id_to_mac_id
[sta_id
],
1209 lockdep_is_held(&mvm
->mutex
));
1217 int iwl_mvm_set_sta_key(struct iwl_mvm
*mvm
,
1218 struct ieee80211_vif
*vif
,
1219 struct ieee80211_sta
*sta
,
1220 struct ieee80211_key_conf
*keyconf
,
1221 bool have_key_offset
)
1223 struct iwl_mvm_sta
*mvm_sta
;
1226 struct ieee80211_key_seq seq
;
1229 lockdep_assert_held(&mvm
->mutex
);
1231 /* Get the station id from the mvm local station table */
1232 sta_id
= iwl_mvm_get_key_sta_id(vif
, sta
);
1233 if (sta_id
== IWL_MVM_STATION_COUNT
) {
1234 IWL_ERR(mvm
, "Failed to find station id\n");
1238 if (keyconf
->cipher
== WLAN_CIPHER_SUITE_AES_CMAC
) {
1239 ret
= iwl_mvm_send_sta_igtk(mvm
, keyconf
, sta_id
, false);
1244 * It is possible that the 'sta' parameter is NULL, and thus
1245 * there is a need to retrieve the sta from the local station table.
1248 sta
= rcu_dereference_protected(mvm
->fw_id_to_mac_id
[sta_id
],
1249 lockdep_is_held(&mvm
->mutex
));
1250 if (IS_ERR_OR_NULL(sta
)) {
1251 IWL_ERR(mvm
, "Invalid station id\n");
1256 mvm_sta
= (struct iwl_mvm_sta
*)sta
->drv_priv
;
1257 if (WARN_ON_ONCE(mvm_sta
->vif
!= vif
))
1260 if (!have_key_offset
) {
1262 * The D3 firmware hardcodes the PTK offset to 0, so we have to
1263 * configure it there. As a result, this workaround exists to
1264 * let the caller set the key offset (hw_key_idx), see d3.c.
1266 keyconf
->hw_key_idx
= iwl_mvm_set_fw_key_idx(mvm
);
1267 if (keyconf
->hw_key_idx
== STA_KEY_IDX_INVALID
)
1271 switch (keyconf
->cipher
) {
1272 case WLAN_CIPHER_SUITE_TKIP
:
1273 addr
= iwl_mvm_get_mac_addr(mvm
, vif
, sta
);
1274 /* get phase 1 key from mac80211 */
1275 ieee80211_get_key_rx_seq(keyconf
, 0, &seq
);
1276 ieee80211_get_tkip_rx_p1k(keyconf
, addr
, seq
.tkip
.iv32
, p1k
);
1277 ret
= iwl_mvm_send_sta_key(mvm
, mvm_sta
, keyconf
, sta_id
,
1278 seq
.tkip
.iv32
, p1k
, CMD_SYNC
);
1280 case WLAN_CIPHER_SUITE_CCMP
:
1281 ret
= iwl_mvm_send_sta_key(mvm
, mvm_sta
, keyconf
, sta_id
,
1285 ret
= iwl_mvm_send_sta_key(mvm
, mvm_sta
, keyconf
,
1286 sta_id
, 0, NULL
, CMD_SYNC
);
1290 __clear_bit(keyconf
->hw_key_idx
, mvm
->fw_key_table
);
1293 IWL_DEBUG_WEP(mvm
, "key: cipher=%x len=%d idx=%d sta=%pM ret=%d\n",
1294 keyconf
->cipher
, keyconf
->keylen
, keyconf
->keyidx
,
1299 int iwl_mvm_remove_sta_key(struct iwl_mvm
*mvm
,
1300 struct ieee80211_vif
*vif
,
1301 struct ieee80211_sta
*sta
,
1302 struct ieee80211_key_conf
*keyconf
)
1304 struct iwl_mvm_sta
*mvm_sta
;
1305 struct iwl_mvm_add_sta_key_cmd cmd
= {};
1310 lockdep_assert_held(&mvm
->mutex
);
1312 /* Get the station id from the mvm local station table */
1313 sta_id
= iwl_mvm_get_key_sta_id(vif
, sta
);
1315 IWL_DEBUG_WEP(mvm
, "mvm remove dynamic key: idx=%d sta=%d\n",
1316 keyconf
->keyidx
, sta_id
);
1318 if (keyconf
->cipher
== WLAN_CIPHER_SUITE_AES_CMAC
)
1319 return iwl_mvm_send_sta_igtk(mvm
, keyconf
, sta_id
, true);
1321 ret
= __test_and_clear_bit(keyconf
->hw_key_idx
, mvm
->fw_key_table
);
1323 IWL_ERR(mvm
, "offset %d not used in fw key table.\n",
1324 keyconf
->hw_key_idx
);
1328 if (sta_id
== IWL_MVM_STATION_COUNT
) {
1329 IWL_DEBUG_WEP(mvm
, "station non-existent, early return.\n");
1334 * It is possible that the 'sta' parameter is NULL, and thus
1335 * there is a need to retrieve the sta from the local station table,
1336 * for example when a GTK is removed (where the sta_id will then be
1337 * the AP ID, and no station was passed by mac80211.)
1340 sta
= rcu_dereference_protected(mvm
->fw_id_to_mac_id
[sta_id
],
1341 lockdep_is_held(&mvm
->mutex
));
1343 IWL_ERR(mvm
, "Invalid station id\n");
1348 mvm_sta
= (struct iwl_mvm_sta
*)sta
->drv_priv
;
1349 if (WARN_ON_ONCE(mvm_sta
->vif
!= vif
))
1352 key_flags
= cpu_to_le16((keyconf
->keyidx
<< STA_KEY_FLG_KEYID_POS
) &
1353 STA_KEY_FLG_KEYID_MSK
);
1354 key_flags
|= cpu_to_le16(STA_KEY_FLG_NO_ENC
| STA_KEY_FLG_WEP_KEY_MAP
);
1355 key_flags
|= cpu_to_le16(STA_KEY_NOT_VALID
);
1357 if (!(keyconf
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
))
1358 key_flags
|= cpu_to_le16(STA_KEY_MULTICAST
);
1360 cmd
.key_flags
= key_flags
;
1361 cmd
.key_offset
= keyconf
->hw_key_idx
;
1362 cmd
.sta_id
= sta_id
;
1364 status
= ADD_STA_SUCCESS
;
1365 ret
= iwl_mvm_send_add_sta_key_cmd_status(mvm
, &cmd
,
1366 mvm_sta
->mac_id_n_color
,
1370 case ADD_STA_SUCCESS
:
1371 IWL_DEBUG_WEP(mvm
, "MODIFY_STA: remove sta key passed\n");
1375 IWL_ERR(mvm
, "MODIFY_STA: remove sta key failed\n");
1382 void iwl_mvm_update_tkip_key(struct iwl_mvm
*mvm
,
1383 struct ieee80211_vif
*vif
,
1384 struct ieee80211_key_conf
*keyconf
,
1385 struct ieee80211_sta
*sta
, u32 iv32
,
1388 struct iwl_mvm_sta
*mvm_sta
;
1389 u8 sta_id
= iwl_mvm_get_key_sta_id(vif
, sta
);
1391 if (WARN_ON_ONCE(sta_id
== IWL_MVM_STATION_COUNT
))
1397 sta
= rcu_dereference(mvm
->fw_id_to_mac_id
[sta_id
]);
1398 if (WARN_ON(IS_ERR_OR_NULL(sta
))) {
1404 mvm_sta
= (void *)sta
->drv_priv
;
1405 iwl_mvm_send_sta_key(mvm
, mvm_sta
, keyconf
, sta_id
,
1406 iv32
, phase1key
, CMD_ASYNC
);
1410 void iwl_mvm_sta_modify_ps_wake(struct iwl_mvm
*mvm
,
1411 struct ieee80211_sta
*sta
)
1413 struct iwl_mvm_sta
*mvmsta
= iwl_mvm_sta_from_mac80211(sta
);
1414 struct iwl_mvm_add_sta_cmd_v6 cmd
= {
1415 .add_modify
= STA_MODE_MODIFY
,
1416 .sta_id
= mvmsta
->sta_id
,
1417 .station_flags_msk
= cpu_to_le32(STA_FLG_PS
),
1418 .mac_id_n_color
= cpu_to_le32(mvmsta
->mac_id_n_color
),
1422 ret
= iwl_mvm_send_add_sta_cmd(mvm
, CMD_ASYNC
, &cmd
);
1424 IWL_ERR(mvm
, "Failed to send ADD_STA command (%d)\n", ret
);
1427 void iwl_mvm_sta_modify_sleep_tx_count(struct iwl_mvm
*mvm
,
1428 struct ieee80211_sta
*sta
,
1429 enum ieee80211_frame_release_type reason
,
1432 u16 sleep_state_flags
=
1433 (reason
== IEEE80211_FRAME_RELEASE_UAPSD
) ?
1434 STA_SLEEP_STATE_UAPSD
: STA_SLEEP_STATE_PS_POLL
;
1435 struct iwl_mvm_sta
*mvmsta
= iwl_mvm_sta_from_mac80211(sta
);
1436 struct iwl_mvm_add_sta_cmd_v6 cmd
= {
1437 .add_modify
= STA_MODE_MODIFY
,
1438 .sta_id
= mvmsta
->sta_id
,
1439 .modify_mask
= STA_MODIFY_SLEEPING_STA_TX_COUNT
,
1440 .sleep_tx_count
= cpu_to_le16(cnt
),
1441 .mac_id_n_color
= cpu_to_le32(mvmsta
->mac_id_n_color
),
1443 * Same modify mask for sleep_tx_count and sleep_state_flags so
1444 * we must set the sleep_state_flags too.
1446 .sleep_state_flags
= cpu_to_le16(sleep_state_flags
),
1450 /* TODO: somehow the fw doesn't seem to take PS_POLL into account */
1451 ret
= iwl_mvm_send_add_sta_cmd(mvm
, CMD_ASYNC
, &cmd
);
1453 IWL_ERR(mvm
, "Failed to send ADD_STA command (%d)\n", ret
);