Commit b697746c authored by Sven Eckelmann's avatar Sven Eckelmann Committed by Johannes Berg

mac80211_hwsim: Register support for HE meshpoint

Some features of 802.11ax without central organizing (AP) STA can also be
used in mesh mode. hwsim can be used to assist initial development of these
features without having access to HW.
Signed-off-by: default avatarSven Eckelmann <seckelmann@datto.com>
Link: https://lore.kernel.org/r/20190813063657.7544-1-sven@narfation.orgSigned-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 4b2c5a14
...@@ -2497,9 +2497,11 @@ static void hwsim_mcast_new_radio(int id, struct genl_info *info, ...@@ -2497,9 +2497,11 @@ static void hwsim_mcast_new_radio(int id, struct genl_info *info,
nlmsg_free(mcast_skb); nlmsg_free(mcast_skb);
} }
static const struct ieee80211_sband_iftype_data he_capa_2ghz = { static const struct ieee80211_sband_iftype_data he_capa_2ghz[] = {
{
/* TODO: should we support other types, e.g., P2P?*/ /* TODO: should we support other types, e.g., P2P?*/
.types_mask = BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP), .types_mask = BIT(NL80211_IFTYPE_STATION) |
BIT(NL80211_IFTYPE_AP),
.he_cap = { .he_cap = {
.has_he = true, .has_he = true,
.he_cap_elem = { .he_cap_elem = {
...@@ -2528,9 +2530,48 @@ static const struct ieee80211_sband_iftype_data he_capa_2ghz = { ...@@ -2528,9 +2530,48 @@ static const struct ieee80211_sband_iftype_data he_capa_2ghz = {
IEEE80211_HE_PHY_CAP2_UL_MU_FULL_MU_MIMO | IEEE80211_HE_PHY_CAP2_UL_MU_FULL_MU_MIMO |
IEEE80211_HE_PHY_CAP2_UL_MU_PARTIAL_MU_MIMO, IEEE80211_HE_PHY_CAP2_UL_MU_PARTIAL_MU_MIMO,
/* Leave all the other PHY capability bytes unset, as /* Leave all the other PHY capability bytes
* DCM, beam forming, RU and PPE threshold information * unset, as DCM, beam forming, RU and PPE
* are not supported * threshold information are not supported
*/
},
.he_mcs_nss_supp = {
.rx_mcs_80 = cpu_to_le16(0xfffa),
.tx_mcs_80 = cpu_to_le16(0xfffa),
.rx_mcs_160 = cpu_to_le16(0xffff),
.tx_mcs_160 = cpu_to_le16(0xffff),
.rx_mcs_80p80 = cpu_to_le16(0xffff),
.tx_mcs_80p80 = cpu_to_le16(0xffff),
},
},
},
#ifdef CONFIG_MAC80211_MESH
{
/* TODO: should we support other types, e.g., IBSS?*/
.types_mask = BIT(NL80211_IFTYPE_MESH_POINT),
.he_cap = {
.has_he = true,
.he_cap_elem = {
.mac_cap_info[0] =
IEEE80211_HE_MAC_CAP0_HTC_HE,
.mac_cap_info[1] =
IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8,
.mac_cap_info[2] =
IEEE80211_HE_MAC_CAP2_ACK_EN,
.mac_cap_info[3] =
IEEE80211_HE_MAC_CAP3_OMI_CONTROL |
IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_VHT_2,
.mac_cap_info[4] = IEEE80211_HE_MAC_CAP4_AMDSU_IN_AMPDU,
.phy_cap_info[1] =
IEEE80211_HE_PHY_CAP1_PREAMBLE_PUNC_RX_MASK |
IEEE80211_HE_PHY_CAP1_DEVICE_CLASS_A |
IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD |
IEEE80211_HE_PHY_CAP1_MIDAMBLE_RX_TX_MAX_NSTS,
.phy_cap_info[2] = 0,
/* Leave all the other PHY capability bytes
* unset, as DCM, beam forming, RU and PPE
* threshold information are not supported
*/ */
}, },
.he_mcs_nss_supp = { .he_mcs_nss_supp = {
...@@ -2542,11 +2583,15 @@ static const struct ieee80211_sband_iftype_data he_capa_2ghz = { ...@@ -2542,11 +2583,15 @@ static const struct ieee80211_sband_iftype_data he_capa_2ghz = {
.tx_mcs_80p80 = cpu_to_le16(0xffff), .tx_mcs_80p80 = cpu_to_le16(0xffff),
}, },
}, },
},
#endif
}; };
static const struct ieee80211_sband_iftype_data he_capa_5ghz = { static const struct ieee80211_sband_iftype_data he_capa_5ghz[] = {
{
/* TODO: should we support other types, e.g., P2P?*/ /* TODO: should we support other types, e.g., P2P?*/
.types_mask = BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP), .types_mask = BIT(NL80211_IFTYPE_STATION) |
BIT(NL80211_IFTYPE_AP),
.he_cap = { .he_cap = {
.has_he = true, .has_he = true,
.he_cap_elem = { .he_cap_elem = {
...@@ -2579,9 +2624,52 @@ static const struct ieee80211_sband_iftype_data he_capa_5ghz = { ...@@ -2579,9 +2624,52 @@ static const struct ieee80211_sband_iftype_data he_capa_5ghz = {
IEEE80211_HE_PHY_CAP2_UL_MU_FULL_MU_MIMO | IEEE80211_HE_PHY_CAP2_UL_MU_FULL_MU_MIMO |
IEEE80211_HE_PHY_CAP2_UL_MU_PARTIAL_MU_MIMO, IEEE80211_HE_PHY_CAP2_UL_MU_PARTIAL_MU_MIMO,
/* Leave all the other PHY capability bytes unset, as /* Leave all the other PHY capability bytes
* DCM, beam forming, RU and PPE threshold information * unset, as DCM, beam forming, RU and PPE
* are not supported * threshold information are not supported
*/
},
.he_mcs_nss_supp = {
.rx_mcs_80 = cpu_to_le16(0xfffa),
.tx_mcs_80 = cpu_to_le16(0xfffa),
.rx_mcs_160 = cpu_to_le16(0xfffa),
.tx_mcs_160 = cpu_to_le16(0xfffa),
.rx_mcs_80p80 = cpu_to_le16(0xfffa),
.tx_mcs_80p80 = cpu_to_le16(0xfffa),
},
},
},
#ifdef CONFIG_MAC80211_MESH
{
/* TODO: should we support other types, e.g., IBSS?*/
.types_mask = BIT(NL80211_IFTYPE_MESH_POINT),
.he_cap = {
.has_he = true,
.he_cap_elem = {
.mac_cap_info[0] =
IEEE80211_HE_MAC_CAP0_HTC_HE,
.mac_cap_info[1] =
IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8,
.mac_cap_info[2] =
IEEE80211_HE_MAC_CAP2_ACK_EN,
.mac_cap_info[3] =
IEEE80211_HE_MAC_CAP3_OMI_CONTROL |
IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_VHT_2,
.mac_cap_info[4] = IEEE80211_HE_MAC_CAP4_AMDSU_IN_AMPDU,
.phy_cap_info[0] =
IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G |
IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G |
IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_80PLUS80_MHZ_IN_5G,
.phy_cap_info[1] =
IEEE80211_HE_PHY_CAP1_PREAMBLE_PUNC_RX_MASK |
IEEE80211_HE_PHY_CAP1_DEVICE_CLASS_A |
IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD |
IEEE80211_HE_PHY_CAP1_MIDAMBLE_RX_TX_MAX_NSTS,
.phy_cap_info[2] = 0,
/* Leave all the other PHY capability bytes
* unset, as DCM, beam forming, RU and PPE
* threshold information are not supported
*/ */
}, },
.he_mcs_nss_supp = { .he_mcs_nss_supp = {
...@@ -2593,20 +2681,27 @@ static const struct ieee80211_sband_iftype_data he_capa_5ghz = { ...@@ -2593,20 +2681,27 @@ static const struct ieee80211_sband_iftype_data he_capa_5ghz = {
.tx_mcs_80p80 = cpu_to_le16(0xfffa), .tx_mcs_80p80 = cpu_to_le16(0xfffa),
}, },
}, },
},
#endif
}; };
static void mac80211_hwsim_he_capab(struct ieee80211_supported_band *sband) static void mac80211_hwsim_he_capab(struct ieee80211_supported_band *sband)
{ {
if (sband->band == NL80211_BAND_2GHZ) u16 n_iftype_data;
if (sband->band == NL80211_BAND_2GHZ) {
n_iftype_data = ARRAY_SIZE(he_capa_2ghz);
sband->iftype_data = sband->iftype_data =
(struct ieee80211_sband_iftype_data *)&he_capa_2ghz; (struct ieee80211_sband_iftype_data *)he_capa_2ghz;
else if (sband->band == NL80211_BAND_5GHZ) } else if (sband->band == NL80211_BAND_5GHZ) {
n_iftype_data = ARRAY_SIZE(he_capa_5ghz);
sband->iftype_data = sband->iftype_data =
(struct ieee80211_sband_iftype_data *)&he_capa_5ghz; (struct ieee80211_sband_iftype_data *)he_capa_5ghz;
else } else {
return; return;
}
sband->n_iftype_data = 1; sband->n_iftype_data = n_iftype_data;
} }
#ifdef CONFIG_MAC80211_MESH #ifdef CONFIG_MAC80211_MESH
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment