Blame view

net/mac80211/he.c 2.35 KB
d2912cb15   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-only
41cbb0f5a   Luca Coelho   mac80211: add sup...
2
3
4
5
  /*
   * HE handling
   *
   * Copyright(c) 2017 Intel Deutschland GmbH
41cbb0f5a   Luca Coelho   mac80211: add sup...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
   */
  
  #include "ieee80211_i.h"
  
  void
  ieee80211_he_cap_ie_to_sta_he_cap(struct ieee80211_sub_if_data *sdata,
  				  struct ieee80211_supported_band *sband,
  				  const u8 *he_cap_ie, u8 he_cap_len,
  				  struct sta_info *sta)
  {
  	struct ieee80211_sta_he_cap *he_cap = &sta->sta.he_cap;
  	struct ieee80211_he_cap_elem *he_cap_ie_elem = (void *)he_cap_ie;
  	u8 he_ppe_size;
  	u8 mcs_nss_size;
  	u8 he_total_size;
  
  	memset(he_cap, 0, sizeof(*he_cap));
  
  	if (!he_cap_ie || !ieee80211_get_he_sta_cap(sband))
  		return;
  
  	/* Make sure size is OK */
  	mcs_nss_size = ieee80211_he_mcs_nss_size(he_cap_ie_elem);
  	he_ppe_size =
  		ieee80211_he_ppe_size(he_cap_ie[sizeof(he_cap->he_cap_elem) +
  						mcs_nss_size],
  				      he_cap_ie_elem->phy_cap_info);
  	he_total_size = sizeof(he_cap->he_cap_elem) + mcs_nss_size +
  			he_ppe_size;
  	if (he_cap_len < he_total_size)
  		return;
  
  	memcpy(&he_cap->he_cap_elem, he_cap_ie, sizeof(he_cap->he_cap_elem));
  
  	/* HE Tx/Rx HE MCS NSS Support Field */
  	memcpy(&he_cap->he_mcs_nss_supp,
  	       &he_cap_ie[sizeof(he_cap->he_cap_elem)], mcs_nss_size);
  
  	/* Check if there are (optional) PPE Thresholds */
  	if (he_cap->he_cap_elem.phy_cap_info[6] &
  	    IEEE80211_HE_PHY_CAP6_PPE_THRESHOLD_PRESENT)
  		memcpy(he_cap->ppe_thres,
  		       &he_cap_ie[sizeof(he_cap->he_cap_elem) + mcs_nss_size],
  		       he_ppe_size);
  
  	he_cap->has_he = true;
  }
697f6c507   John Crispin   mac80211: propaga...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  
  void
  ieee80211_he_op_ie_to_bss_conf(struct ieee80211_vif *vif,
  			const struct ieee80211_he_operation *he_op_ie_elem)
  {
  	struct ieee80211_he_operation *he_operation =
  					&vif->bss_conf.he_operation;
  
  	if (!he_op_ie_elem) {
  		memset(he_operation, 0, sizeof(*he_operation));
  		return;
  	}
  
  	vif->bss_conf.he_operation = *he_op_ie_elem;
  }
1ced169cc   John Crispin   mac80211: allow s...
68
69
70
71
72
73
74
  
  void
  ieee80211_he_spr_ie_to_bss_conf(struct ieee80211_vif *vif,
  				const struct ieee80211_he_spr *he_spr_ie_elem)
  {
  	struct ieee80211_he_obss_pd *he_obss_pd =
  					&vif->bss_conf.he_obss_pd;
5db16ba82   John Crispin   mac80211: fix pos...
75
  	const u8 *data;
1ced169cc   John Crispin   mac80211: allow s...
76
77
78
79
80
  
  	memset(he_obss_pd, 0, sizeof(*he_obss_pd));
  
  	if (!he_spr_ie_elem)
  		return;
5db16ba82   John Crispin   mac80211: fix pos...
81
  	data = he_spr_ie_elem->optional;
1ced169cc   John Crispin   mac80211: allow s...
82
83
84
85
86
87
88
89
90
91
92
  
  	if (he_spr_ie_elem->he_sr_control &
  	    IEEE80211_HE_SPR_NON_SRG_OFFSET_PRESENT)
  		data++;
  	if (he_spr_ie_elem->he_sr_control &
  	    IEEE80211_HE_SPR_SRG_INFORMATION_PRESENT) {
  		he_obss_pd->max_offset = *data++;
  		he_obss_pd->min_offset = *data++;
  		he_obss_pd->enable = true;
  	}
  }