blob: e48b2175a606abc0a228e9418016bde3f6d6d998 [file] [log] [blame]
developer8eb72a32023-03-30 08:32:07 +08001From 35ca08d34c7cdcd7ab9d27cb373baf1620888bc5 Mon Sep 17 00:00:00 2001
developerbd892782023-01-12 15:27:46 +08002From: MeiChia Chiu <meichia.chiu@mediatek.com>
3Date: Thu, 12 Jan 2023 15:18:19 +0800
developer8eb72a32023-03-30 08:32:07 +08004Subject: [PATCH 13/25] hostapd: mtk: Add he_ldpc configuration
developerbd892782023-01-12 15:27:46 +08005
6---
7 hostapd/config_file.c | 2 ++
8 hostapd/hostapd.conf | 5 +++++
9 src/ap/ap_config.c | 1 +
10 src/ap/ap_config.h | 1 +
11 src/ap/ieee802_11_he.c | 7 +++++++
12 src/common/ieee802_11_defs.h | 3 +++
13 6 files changed, 19 insertions(+)
14
15diff --git a/hostapd/config_file.c b/hostapd/config_file.c
developer81939a52023-03-25 15:31:11 +080016index 017c21e..649618b 100644
developerbd892782023-01-12 15:27:46 +080017--- a/hostapd/config_file.c
18+++ b/hostapd/config_file.c
19@@ -3508,6 +3508,8 @@ static int hostapd_config_fill(struct hostapd_config *conf,
20 conf->he_phy_capab.he_su_beamformee = atoi(pos);
21 } else if (os_strcmp(buf, "he_mu_beamformer") == 0) {
22 conf->he_phy_capab.he_mu_beamformer = atoi(pos);
23+ } else if (os_strcmp(buf, "he_ldpc") == 0) {
24+ conf->he_phy_capab.he_ldpc = atoi(pos);
25 } else if (os_strcmp(buf, "he_bss_color") == 0) {
26 conf->he_op.he_bss_color = atoi(pos) & 0x3f;
27 conf->he_op.he_bss_color_disabled = 0;
28diff --git a/hostapd/hostapd.conf b/hostapd/hostapd.conf
developerb2c55292023-02-20 17:29:23 +080029index ea67aa1..e3a5eb3 100644
developerbd892782023-01-12 15:27:46 +080030--- a/hostapd/hostapd.conf
31+++ b/hostapd/hostapd.conf
32@@ -830,6 +830,11 @@ wmm_ac_vo_acm=0
33 # 1 = supported
34 #he_mu_beamformer=1
35
36+#he_ldpc: HE LDPC support
37+# 0 = not supported
38+# 1 = supported (default)
39+#he_ldpc=1
40+
41 # he_bss_color: BSS color (1-63)
42 #he_bss_color=1
43
44diff --git a/src/ap/ap_config.c b/src/ap/ap_config.c
developer81939a52023-03-25 15:31:11 +080045index 24fc0f5..4e46a62 100644
developerbd892782023-01-12 15:27:46 +080046--- a/src/ap/ap_config.c
47+++ b/src/ap/ap_config.c
48@@ -268,6 +268,7 @@ struct hostapd_config * hostapd_config_defaults(void)
49 #endif /* CONFIG_ACS */
50
51 #ifdef CONFIG_IEEE80211AX
52+ conf->he_phy_capab.he_ldpc = 1;
53 conf->he_op.he_rts_threshold = HE_OPERATION_RTS_THRESHOLD_MASK >>
54 HE_OPERATION_RTS_THRESHOLD_OFFSET;
55 /* Set default basic MCS/NSS set to single stream MCS 0-7 */
56diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h
developer81939a52023-03-25 15:31:11 +080057index ce0d84c..7aeb176 100644
developerbd892782023-01-12 15:27:46 +080058--- a/src/ap/ap_config.h
59+++ b/src/ap/ap_config.h
60@@ -929,6 +929,7 @@ struct hostapd_bss_config {
61 * struct he_phy_capabilities_info - HE PHY capabilities
62 */
63 struct he_phy_capabilities_info {
64+ bool he_ldpc;
65 bool he_su_beamformer;
66 bool he_su_beamformee;
67 bool he_mu_beamformer;
68diff --git a/src/ap/ieee802_11_he.c b/src/ap/ieee802_11_he.c
developerb2c55292023-02-20 17:29:23 +080069index b5b7e5d..f27aeb1 100644
developerbd892782023-01-12 15:27:46 +080070--- a/src/ap/ieee802_11_he.c
71+++ b/src/ap/ieee802_11_he.c
72@@ -138,6 +138,13 @@ u8 * hostapd_eid_he_capab(struct hostapd_data *hapd, u8 *eid,
73 os_memcpy(&cap->optional[mcs_nss_size],
74 mode->he_capab[opmode].ppet, ppet_size);
75
76+ if (hapd->iface->conf->he_phy_capab.he_ldpc)
77+ cap->he_phy_capab_info[HE_PHYCAP_LDPC_CODING_IN_PAYLOAD_IDX] |=
78+ HE_PHYCAP_LDPC_CODING_IN_PAYLOAD;
79+ else
80+ cap->he_phy_capab_info[HE_PHYCAP_LDPC_CODING_IN_PAYLOAD_IDX] &=
81+ ~HE_PHYCAP_LDPC_CODING_IN_PAYLOAD;
82+
83 if (hapd->iface->conf->he_phy_capab.he_su_beamformer)
84 cap->he_phy_capab_info[HE_PHYCAP_SU_BEAMFORMER_CAPAB_IDX] |=
85 HE_PHYCAP_SU_BEAMFORMER_CAPAB;
86diff --git a/src/common/ieee802_11_defs.h b/src/common/ieee802_11_defs.h
developerb2c55292023-02-20 17:29:23 +080087index 65e125e..62088bd 100644
developerbd892782023-01-12 15:27:46 +080088--- a/src/common/ieee802_11_defs.h
89+++ b/src/common/ieee802_11_defs.h
90@@ -2298,6 +2298,9 @@ struct ieee80211_spatial_reuse {
91 #define HE_PHYCAP_CHANNEL_WIDTH_SET_160MHZ_IN_5G ((u8) BIT(3))
92 #define HE_PHYCAP_CHANNEL_WIDTH_SET_80PLUS80MHZ_IN_5G ((u8) BIT(4))
93
94+#define HE_PHYCAP_LDPC_CODING_IN_PAYLOAD_IDX 1
95+#define HE_PHYCAP_LDPC_CODING_IN_PAYLOAD ((u8) BIT(5))
96+
97 #define HE_PHYCAP_SU_BEAMFORMER_CAPAB_IDX 3
98 #define HE_PHYCAP_SU_BEAMFORMER_CAPAB ((u8) BIT(7))
99 #define HE_PHYCAP_SU_BEAMFORMEE_CAPAB_IDX 4
100--
developerb2c55292023-02-20 17:29:23 +08001012.18.0
developerbd892782023-01-12 15:27:46 +0800102