qcacmn: Add command support for NAV configuration

Add command support for NAV register update and
configuration of the threshold value.

Change-Id: Idbdb030f75dc98db652e6b53604a3ceaaff1106b
CRs-fixed: 2389803
This commit is contained in:
Rhythm Patwa
2019-01-31 18:39:40 -08:00
committed by nshrivas
parent 65b02b4a8e
commit 851a27849b
2 changed files with 3 additions and 0 deletions

View File

@@ -4988,6 +4988,7 @@ typedef enum {
wmi_pdev_param_ul_ppdu_duration, wmi_pdev_param_ul_ppdu_duration,
wmi_pdev_param_equal_ru_allocation_enable, wmi_pdev_param_equal_ru_allocation_enable,
wmi_pdev_param_per_peer_prd_cfr_enable, wmi_pdev_param_per_peer_prd_cfr_enable,
wmi_pdev_param_nav_override_config,
wmi_pdev_param_max, wmi_pdev_param_max,
} wmi_conv_pdev_params_id; } wmi_conv_pdev_params_id;

View File

@@ -12393,6 +12393,8 @@ static void populate_pdev_param_tlv(uint32_t *pdev_param)
WMI_PDEV_PARAM_EQUAL_RU_ALLOCATION_ENABLE; WMI_PDEV_PARAM_EQUAL_RU_ALLOCATION_ENABLE;
pdev_param[wmi_pdev_param_per_peer_prd_cfr_enable] = pdev_param[wmi_pdev_param_per_peer_prd_cfr_enable] =
WMI_PDEV_PARAM_PER_PEER_PERIODIC_CFR_ENABLE; WMI_PDEV_PARAM_PER_PEER_PERIODIC_CFR_ENABLE;
pdev_param[wmi_pdev_param_nav_override_config] =
WMI_PDEV_PARAM_NAV_OVERRIDE_CONFIG;
} }
/** /**