blob: 8a9696f9eeb94faa5308ebf9a8ae6ad4fe16e2c0 [file] [log] [blame]
developer27057f82023-07-10 17:23:13 +08001From 65f862e0db364352657f0f19245339208dc0a966 Mon Sep 17 00:00:00 2001
developer683be522023-05-11 14:24:50 +08002From: MeiChia Chiu <meichia.chiu@mediatek.com>
3Date: Thu, 12 Jan 2023 15:18:19 +0800
developer27057f82023-07-10 17:23:13 +08004Subject: [PATCH 13/32] hostapd: mtk: Add he_ldpc configuration
developer683be522023-05-11 14:24:50 +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
developer27057f82023-07-10 17:23:13 +080016index ecd290717..8c5831dbb 100644
developer683be522023-05-11 14:24:50 +080017--- a/hostapd/config_file.c
18+++ b/hostapd/config_file.c
19@@ -3517,6 +3517,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
developer27057f82023-07-10 17:23:13 +080029index 30fb06d1c..fd42c5038 100644
developer683be522023-05-11 14:24:50 +080030--- a/hostapd/hostapd.conf
31+++ b/hostapd/hostapd.conf
32@@ -833,6 +833,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
developer27057f82023-07-10 17:23:13 +080045index 83e2ea121..1f27543bf 100644
developer683be522023-05-11 14:24:50 +080046--- a/src/ap/ap_config.c
47+++ b/src/ap/ap_config.c
developer27057f82023-07-10 17:23:13 +080048@@ -269,6 +269,7 @@ struct hostapd_config * hostapd_config_defaults(void)
developer683be522023-05-11 14:24:50 +080049 #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
developer27057f82023-07-10 17:23:13 +080057index 94056157b..195816c28 100644
developer683be522023-05-11 14:24:50 +080058--- a/src/ap/ap_config.h
59+++ b/src/ap/ap_config.h
developer27057f82023-07-10 17:23:13 +080060@@ -956,6 +956,7 @@ struct hostapd_bss_config {
developer683be522023-05-11 14:24:50 +080061 * 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
developer27057f82023-07-10 17:23:13 +080069index 548a44821..9407dd6e5 100644
developer683be522023-05-11 14:24:50 +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
developer27057f82023-07-10 17:23:13 +080087index 571ace2f5..74301178f 100644
developer683be522023-05-11 14:24:50 +080088--- a/src/common/ieee802_11_defs.h
89+++ b/src/common/ieee802_11_defs.h
90@@ -2355,6 +2355,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--
developer27057f82023-07-10 17:23:13 +08001012.39.2
developer683be522023-05-11 14:24:50 +0800102