blob: 5d125ce8984e3b495784dd214ae6e8ec749f871e [file] [log] [blame]
Kalle Valod5c65152019-11-23 09:58:40 +02001/* SPDX-License-Identifier: BSD-3-Clause-Clear */
2/*
3 * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
4 */
5
6#ifndef ATH11K_PEER_H
7#define ATH11K_PEER_H
8
9struct ath11k_peer {
10 struct list_head list;
11 struct ieee80211_sta *sta;
12 int vdev_id;
13 u8 addr[ETH_ALEN];
14 int peer_id;
15 u16 ast_hash;
Karthikeyan Periyasamy1e744bf2020-04-08 16:33:15 +053016 u8 pdev_idx;
Kalle Valod5c65152019-11-23 09:58:40 +020017
18 /* protected by ab->data_lock */
19 struct ieee80211_key_conf *keys[WMI_MAX_KEY_INDEX + 1];
20 struct dp_rx_tid rx_tid[IEEE80211_NUM_TIDS + 1];
Manikanta Pubbisetty243874c2020-03-16 07:37:19 +020021
22 /* Info used in MMIC verification of
23 * RX fragments
24 */
25 struct crypto_shash *tfm_mmic;
26 u8 mcast_keyidx;
27 u8 ucast_keyidx;
Sriram Racc79d92020-03-17 16:52:38 +020028 u16 sec_type;
29 u16 sec_type_grp;
Kalle Valod5c65152019-11-23 09:58:40 +020030};
31
32void ath11k_peer_unmap_event(struct ath11k_base *ab, u16 peer_id);
33void ath11k_peer_map_event(struct ath11k_base *ab, u8 vdev_id, u16 peer_id,
34 u8 *mac_addr, u16 ast_hash);
35struct ath11k_peer *ath11k_peer_find(struct ath11k_base *ab, int vdev_id,
36 const u8 *addr);
37struct ath11k_peer *ath11k_peer_find_by_addr(struct ath11k_base *ab,
38 const u8 *addr);
39struct ath11k_peer *ath11k_peer_find_by_id(struct ath11k_base *ab, int peer_id);
40void ath11k_peer_cleanup(struct ath11k *ar, u32 vdev_id);
41int ath11k_peer_delete(struct ath11k *ar, u32 vdev_id, u8 *addr);
42int ath11k_peer_create(struct ath11k *ar, struct ath11k_vif *arvif,
43 struct ieee80211_sta *sta, struct peer_create_params *param);
44
45#endif /* _PEER_H_ */