Browse Source

qcacmn: Enable sending vdev-param HEOP to target

It is required to send vdev-param HEOP to the target with
updated bss-color to enable HE BSS Color feature. Add
necessary code to support this.

Change-Id: I826bc5387dad8d044abcbc9cbdf69e93b59beb39
CRs-fixed: 2126605
Gyanranjan Hazarika 7 years ago
parent
commit
409dc097be
2 changed files with 2 additions and 0 deletions
  1. 1 0
      wmi/inc/wmi_unified_param.h
  2. 1 0
      wmi/src/wmi_unified_tlv.c

+ 1 - 0
wmi/inc/wmi_unified_param.h

@@ -5661,6 +5661,7 @@ typedef enum {
 	wmi_vdev_param_he_range_ext_enable,
 	wmi_vdev_param_set_hemu_mode,
 	wmi_vdev_param_set_he_ltf,
+	wmi_vdev_param_set_heop,
 
 	wmi_vdev_param_max,
 } wmi_conv_vdev_param_id;

+ 1 - 0
wmi/src/wmi_unified_tlv.c

@@ -20654,6 +20654,7 @@ static void populate_vdev_param_tlv(uint32_t *vdev_param)
 				 WMI_VDEV_PARAM_HE_RANGE_EXT;
 	vdev_param[wmi_vdev_param_he_bss_color] = WMI_VDEV_PARAM_BSS_COLOR;
 	vdev_param[wmi_vdev_param_set_hemu_mode] = WMI_VDEV_PARAM_SET_HEMU_MODE;
+	vdev_param[wmi_vdev_param_set_heop]      = WMI_VDEV_PARAM_HEOPS_0_31;
 	vdev_param[wmi_vdev_param_sensor_ap] = WMI_VDEV_PARAM_SENSOR_AP;
 	vdev_param[wmi_vdev_param_dtim_enable_cts] =
 					WMI_VDEV_PARAM_DTIM_ENABLE_CTS;