2021-08-20 12:23:18

by Wen Gong

[permalink] [raw]
Subject: [PATCH v2 2/8] mac80211: add definition of regulatory info in 6 GHz operation information

IEEE Std 802.11ax™-2021 added regulatory info subfield in HE operation
element, this patch is to add it in mac80211 definition.

Signed-off-by: Wen Gong <[email protected]>
---
include/linux/ieee80211.h | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h
index 68d8b9cdd3b8..deb2f536d104 100644
--- a/include/linux/ieee80211.h
+++ b/include/linux/ieee80211.h
@@ -2264,6 +2264,9 @@ ieee80211_he_ppe_size(u8 ppe_thres_hdr, const u8 *phy_cap_info)
#define IEEE80211_HE_OPERATION_PARTIAL_BSS_COLOR 0x40000000
#define IEEE80211_HE_OPERATION_BSS_COLOR_DISABLED 0x80000000

+#define IEEE80211_6GHZ_CTRL_REG_LPI_AP 0
+#define IEEE80211_6GHZ_CTRL_REG_SP_AP 1
+
/**
* ieee80211_he_6ghz_oper - HE 6 GHz operation Information field
* @primary: primary channel
@@ -2280,6 +2283,7 @@ struct ieee80211_he_6ghz_oper {
#define IEEE80211_HE_6GHZ_OPER_CTRL_CHANWIDTH_80MHZ 2
#define IEEE80211_HE_6GHZ_OPER_CTRL_CHANWIDTH_160MHZ 3
#define IEEE80211_HE_6GHZ_OPER_CTRL_DUP_BEACON 0x4
+#define IEEE80211_HE_6GHZ_OPER_CTRL_REG_INFO 0x38
u8 control;
u8 ccfs0;
u8 ccfs1;
--
2.31.1


2021-08-26 08:21:19

by Johannes Berg

[permalink] [raw]
Subject: Re: [PATCH v2 2/8] mac80211: add definition of regulatory info in 6 GHz operation information

On Fri, 2021-08-20 at 08:20 -0400, Wen Gong wrote:
> IEEE Std 802.11ax™-2021 added regulatory info subfield in HE operation
> element, this patch is to add it in mac80211 definition.
>
> Signed-off-by: Wen Gong <[email protected]>
> ---
>  include/linux/ieee80211.h | 4 ++++
>  1 file changed, 4 insertions(+)

Not really mac80211 (subject), but I'll fix.

johannes