Parcourir la source

qcacmn: Added wmi vdev param for setting sifs rate in target

This change is required as a part of setting sifs_rate in the
target through wmi command from host for legacy chipsets.

Change-Id: Ia3ed8a6d33fcb31b290129e1302dfc0000ad4626
CRs-Fixed: 2031293
narayan il y a 7 ans
Parent
commit
b57ed08389
2 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. 1 0
      wmi/inc/wmi_unified_param.h
  2. 2 0
      wmi/src/wmi_unified_non_tlv.c

+ 1 - 0
wmi/inc/wmi_unified_param.h

@@ -5887,6 +5887,7 @@ typedef enum {
 	wmi_vdev_param_autorate_misc_cfg,
 	wmi_vdev_param_amsdu_subframe_size_per_ac,
 	wmi_vdev_param_set_he_sounding_mode,
+	wmi_vdev_param_sifs_trigger_rate,
 
 	wmi_vdev_param_max,
 } wmi_conv_vdev_param_id;

+ 2 - 0
wmi/src/wmi_unified_non_tlv.c

@@ -9611,6 +9611,8 @@ static void populate_vdev_param_non_tlv(uint32_t *vdev_param)
 		WMI_VDEV_PARAM_DISABLE_CABQ;
 	vdev_param[wmi_vdev_param_amsdu_subframe_size_per_ac] =
 		WMI_VDEV_PARAM_AMSDU_SUBFRAME_SIZE_PER_AC;
+	vdev_param[wmi_vdev_param_sifs_trigger_rate] =
+		WMI_VDEV_PARAM_SIFS_TRIGGER_RATE;
 }
 #endif