qcacmn: Enable/Disable 6G edge channels ch2 and ch233

Enable lower 6G edge channel ch2 (5935MHz) for APL2 6G regdmn
using a service bit WMI_SERVICE_ENABLE_LOWER_6G_EDGE_CH_SUPP,
which is not enabled by default.
Also, disable upper 6G edge channel (7115MHz) using another
service bit WMI_SERVICE_DISABLE_UPPER_6G_EDGE_CH_SUPP, that
is enabled by default.

Change-Id: Ia7cb7f7d3165375178adbe70adb19b8671496b6d
CRs-Fixed: 2885623
This commit is contained in:
Gururaj Pandurangi
2021-02-22 15:46:35 -08:00
committed by snandini
parent a2ac29d45c
commit 08148f21fa
13 changed files with 376 additions and 1 deletions

View File

@@ -15768,6 +15768,12 @@ static void populate_tlv_service(uint32_t *wmi_service)
WMI_SERVICE_NDI_TXBF_SUPPORT;
wmi_service[wmi_service_reg_cc_ext_event_support] =
WMI_SERVICE_REG_CC_EXT_EVENT_SUPPORT;
#if defined(CONFIG_BAND_6GHZ) && defined(CONFIG_REG_CLIENT)
wmi_service[wmi_service_lower_6g_edge_ch_supp] =
WMI_SERVICE_ENABLE_LOWER_6G_EDGE_CH_SUPP;
wmi_service[wmi_service_disable_upper_6g_edge_ch_supp] =
WMI_SERVICE_DISABLE_UPPER_6G_EDGE_CH_SUPP;
#endif
}
/**