Răsfoiți Sursa

qcacmn: Add tlv formation of wmi data commands in common wmi layer

Move tlv formation of wmi data-path commands from umac to
common wmi layer.

Change-Id: I6994103441997935a82464b0e195597305a09557
CRs-Fixed: 983619
Govind Singh 9 ani în urmă
părinte
comite
86b2818b4a

+ 17 - 0
wmi/inc/wmi_unified_api.h

@@ -367,6 +367,23 @@ int32_t wmi_unified_ocb_get_tsf_timer(void *wmi_hdl,
 int wmi_unified_ocb_start_timing_advert(void *wmi_hdl,
 	struct ocb_timing_advert_param *timing_advert);
 
+int32_t wmi_unified_lro_config_cmd(void *wmi_hdl,
+	 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
+
+int32_t wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
+				struct thermal_cmd_params *thermal_info);
+
+int32_t wmi_unified_set_mcc_channel_time_quota_cmd
+	(void *wmi_hdl,
+	uint32_t adapter_1_chan_freq,
+	uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
+
+int32_t wmi_unified_set_mcc_channel_time_latency_cmd
+	(void *wmi_hdl,
+	uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
+
+int32_t wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
+		   void *wmi_hdl, uint32_t mcc_adaptive_scheduler);
 int32_t wmi_unified_ocb_set_utc_time_cmd(void *wmi_hdl,
 			  struct ocb_utc_param *utc);
 int32_t wmi_unified_dcc_get_stats_cmd(void *wmi_hdl,

+ 49 - 0
wmi/inc/wmi_unified_param.h

@@ -44,6 +44,19 @@
 #define WMI_SIZE_UTC_TIME (10)
 /* The size of the utc time error in bytes. */
 #define WMI_SIZE_UTC_TIME_ERROR (5)
+#define WMI_MCC_MIN_CHANNEL_QUOTA             20
+#define WMI_MCC_MAX_CHANNEL_QUOTA             80
+#define WMI_MCC_MIN_NON_ZERO_CHANNEL_LATENCY  30
+#define WMI_BEACON_TX_BUFFER_SIZE             (512)
+#define WMI_WIFI_SCANNING_MAC_OUI_LENGTH      3
+#define WMI_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS   64
+#define WMI_RSSI_THOLD_DEFAULT   -300
+#define WMI_NLO_FREQ_THRESH          1000
+#define WMI_SEC_TO_MSEC(sec)         (sec * 1000)
+#define WMI_MSEC_TO_USEC(msec)	     (msec * 1000)
+#define WMI_ETH_LEN      64
+#define WMI_QOS_NUM_TSPEC_MAX 2
+#define WMI_QOS_NUM_AC_MAX 4
 /**
  * struct vdev_create_params - vdev create cmd parameter
  * @if_id: interface id
@@ -706,5 +719,41 @@ struct ocb_config_param {
 	uint32_t dcc_ndl_active_state_list_len;
 	void *dcc_ndl_active_state_list;
 };
+
+/**
+ * struct t_thermal_cmd_params - thermal command parameters
+ * @min_temp: minimum temprature
+ * @max_temp: maximum temprature
+ * @thermal_enable: thermal enable
+ */
+struct thermal_cmd_params {
+	uint16_t min_temp;
+	uint16_t max_temp;
+	uint8_t thermal_enable;
+};
+
+#define WMI_LRO_IPV4_SEED_ARR_SZ 5
+#define WMI_LRO_IPV6_SEED_ARR_SZ 11
+
+/**
+ * struct wmi_lro_config_cmd_t - set LRO init parameters
+ * @lro_enable: indicates whether lro is enabled
+ * @tcp_flag: If the TCP flags from the packet do not match
+ * the values in this field after masking with TCP flags mask
+ * below, packet is not LRO eligible
+ * @tcp_flag_mask: field for comparing the TCP values provided
+ * above with the TCP flags field in the received packet
+ * @toeplitz_hash_ipv4: contains seed needed to compute the flow id
+ * 5-tuple toeplitz hash for ipv4 packets
+ * @toeplitz_hash_ipv6: contains seed needed to compute the flow id
+ * 5-tuple toeplitz hash for ipv6 packets
+ */
+struct wmi_lro_config_cmd_t {
+	uint32_t lro_enable;
+	uint32_t tcp_flag:9,
+		tcp_flag_mask:9;
+	uint32_t toeplitz_hash_ipv4[WMI_LRO_IPV4_SEED_ARR_SZ];
+	uint32_t toeplitz_hash_ipv6[WMI_LRO_IPV6_SEED_ARR_SZ];
+};
 #endif /* _WMI_UNIFIED_PARAM_H_ */
 

+ 17 - 0
wmi/inc/wmi_unified_priv.h

@@ -214,6 +214,23 @@ int32_t (*send_dcc_update_ndl_cmd)(wmi_unified_t wmi_handle,
 
 int32_t (*send_ocb_set_config_cmd)(wmi_unified_t wmi_handle,
 		  struct ocb_config_param *config, uint32_t *ch_mhz);
+int32_t (*send_lro_config_cmd)(wmi_unified_t wmi_handle,
+	 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
+
+int32_t (*send_set_thermal_mgmt_cmd)(wmi_unified_t wmi_handle,
+				struct thermal_cmd_params *thermal_info);
+
+int32_t (*send_set_mcc_channel_time_quota_cmd)
+	(wmi_unified_t wmi_handle,
+	uint32_t adapter_1_chan_freq,
+	uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
+
+int32_t (*send_set_mcc_channel_time_latency_cmd)
+	(wmi_unified_t wmi_handle,
+	uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
+
+int32_t (*send_set_enable_disable_mcc_adaptive_scheduler_cmd)(
+		   wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler);
 };
 
 struct wmi_unified {

+ 17 - 0
wmi/inc/wmi_unified_tlv.h

@@ -177,3 +177,20 @@ int send_dcc_update_ndl_cmd_tlv(wmi_unified_t wmi_handle,
 
 int32_t send_ocb_set_config_cmd_tlv(wmi_unified_t wmi_handle,
 		struct ocb_config_param *config, uint32_t *ch_mhz);
+int32_t send_lro_config_cmd_tlv(wmi_unified_t wmi_handle,
+	 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
+
+int32_t send_set_thermal_mgmt_cmd_tlv(wmi_unified_t wmi_handle,
+				struct thermal_cmd_params *thermal_info);
+
+int32_t send_set_mcc_channel_time_quota_cmd_tlv
+	(wmi_unified_t wmi_handle,
+	uint32_t adapter_1_chan_freq,
+	uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
+
+int32_t send_set_mcc_channel_time_latency_cmd_tlv
+	(wmi_unified_t wmi_handle,
+	uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
+
+int32_t send_set_enable_disable_mcc_adaptive_scheduler_cmd_tlv(
+		   wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler);

+ 118 - 0
wmi/src/wmi_unified_api.c

@@ -923,3 +923,121 @@ int32_t wmi_unified_ocb_set_config(void *wmi_hdl,
 
 	return CDF_STATUS_E_FAILURE;
 }
+
+/**
+ * wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd() - control mcc scheduler
+ * @wmi_handle: wmi handle
+ * @mcc_adaptive_scheduler: enable/disable
+ *
+ * This function enable/disable mcc adaptive scheduler in fw.
+ *
+ * Return: CDF_STATUS_SUCCESS for sucess or error code
+ */
+int32_t wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
+		void *wmi_hdl, uint32_t mcc_adaptive_scheduler)
+{
+	wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
+
+	if (wmi_handle->ops->send_set_enable_disable_mcc_adaptive_scheduler_cmd)
+		return wmi_handle->ops->send_set_enable_disable_mcc_adaptive_scheduler_cmd(wmi_handle,
+					mcc_adaptive_scheduler);
+
+	return CDF_STATUS_E_FAILURE;
+}
+
+/**
+ * wmi_unified_set_mcc_channel_time_latency_cmd() - set MCC channel time latency
+ * @wmi: wmi handle
+ * @mcc_channel: mcc channel
+ * @mcc_channel_time_latency: MCC channel time latency.
+ *
+ * Currently used to set time latency for an MCC vdev/adapter using operating
+ * channel of it and channel number. The info is provided run time using
+ * iwpriv command: iwpriv <wlan0 | p2p0> setMccLatency <latency in ms>.
+ *
+ * Return: CDF status
+ */
+int32_t wmi_unified_set_mcc_channel_time_latency_cmd
+	(void *wmi_hdl,
+	uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency)
+{
+	wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
+
+	if (wmi_handle->ops->send_set_mcc_channel_time_latency_cmd)
+		return wmi_handle->ops->send_set_mcc_channel_time_latency_cmd(wmi_handle,
+					mcc_channel_freq,
+					mcc_channel_time_latency);
+
+	return CDF_STATUS_E_FAILURE;
+}
+
+/**
+ * wmi_unified_set_mcc_channel_time_quota_cmd() - set MCC channel time quota
+ * @wmi: wmi handle
+ * @adapter_1_chan_number: adapter 1 channel number
+ * @adapter_1_quota: adapter 1 quota
+ * @adapter_2_chan_number: adapter 2 channel number
+ *
+ * Return: CDF status
+ */
+int32_t wmi_unified_set_mcc_channel_time_quota_cmd
+	(void *wmi_hdl,
+	uint32_t adapter_1_chan_freq,
+	uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq)
+{
+	wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
+
+	if (wmi_handle->ops->send_set_mcc_channel_time_quota_cmd)
+		return wmi_handle->ops->send_set_mcc_channel_time_quota_cmd(wmi_handle,
+						adapter_1_chan_freq,
+						adapter_1_quota,
+						adapter_2_chan_freq);
+
+	return CDF_STATUS_E_FAILURE;
+}
+
+/**
+ * wmi_unified_set_thermal_mgmt_cmd() - set thermal mgmt command to fw
+ * @wmi_handle: Pointer to wmi handle
+ * @thermal_info: Thermal command information
+ *
+ * This function sends the thermal management command
+ * to the firmware
+ *
+ * Return: CDF_STATUS_SUCCESS for success otherwise failure
+ */
+int32_t wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
+				struct thermal_cmd_params *thermal_info)
+{
+	wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
+
+	if (wmi_handle->ops->send_set_thermal_mgmt_cmd)
+		return wmi_handle->ops->send_set_thermal_mgmt_cmd(wmi_handle,
+					thermal_info);
+
+	return CDF_STATUS_E_FAILURE;
+}
+
+
+/**
+ * wmi_unified_lro_config_cmd() - process the LRO config command
+ * @wmi: Pointer to wmi handle
+ * @wmi_lro_cmd: Pointer to LRO configuration parameters
+ *
+ * This function sends down the LRO configuration parameters to
+ * the firmware to enable LRO, sets the TCP flags and sets the
+ * seed values for the toeplitz hash generation
+ *
+ * Return: CDF_STATUS_SUCCESS for success otherwise failure
+ */
+int32_t wmi_unified_lro_config_cmd(void *wmi_hdl,
+	 struct wmi_lro_config_cmd_t *wmi_lro_cmd)
+{
+	wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
+
+	if (wmi_handle->ops->send_lro_config_cmd)
+		return wmi_handle->ops->send_lro_config_cmd(wmi_handle,
+					wmi_lro_cmd);
+
+	return CDF_STATUS_E_FAILURE;
+}

+ 348 - 0
wmi/src/wmi_unified_tlv.c

@@ -1851,6 +1851,7 @@ int32_t send_set_sta_uapsd_auto_trig_cmd_tlv(wmi_unified_t wmi_handle,
 		WMA_LOGE("Failed to send set uapsd param ret = %d", ret);
 		wmi_buf_free(buf);
 	}
+
 	return ret;
 }
 
@@ -2493,6 +2494,345 @@ int send_ocb_set_config_cmd_tlv(wmi_unified_t wmi_handle,
 
 	return 0;
 }
+
+/**
+ * send_set_enable_disable_mcc_adaptive_scheduler_cmd_tlv() -enable/disable mcc scheduler
+ * @wmi_handle: wmi handle
+ * @mcc_adaptive_scheduler: enable/disable
+ *
+ * This function enable/disable mcc adaptive scheduler in fw.
+ *
+ * Return: CDF_STATUS_SUCCESS for sucess or error code
+ */
+int32_t send_set_enable_disable_mcc_adaptive_scheduler_cmd_tlv(
+		   wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler)
+{
+	int ret = -1;
+	wmi_buf_t buf = 0;
+	wmi_resmgr_adaptive_ocs_enable_disable_cmd_fixed_param *cmd = NULL;
+	uint16_t len =
+		sizeof(wmi_resmgr_adaptive_ocs_enable_disable_cmd_fixed_param);
+
+	buf = wmi_buf_alloc(wmi_handle, len);
+	if (!buf) {
+		WMA_LOGP("%s : wmi_buf_alloc failed", __func__);
+		return CDF_STATUS_E_NOMEM;
+	}
+	cmd = (wmi_resmgr_adaptive_ocs_enable_disable_cmd_fixed_param *)
+		wmi_buf_data(buf);
+
+	WMITLV_SET_HDR(&cmd->tlv_header,
+		       WMITLV_TAG_STRUC_wmi_resmgr_adaptive_ocs_enable_disable_cmd_fixed_param,
+		       WMITLV_GET_STRUCT_TLVLEN
+			       (wmi_resmgr_adaptive_ocs_enable_disable_cmd_fixed_param));
+	cmd->enable = mcc_adaptive_scheduler;
+
+	ret = wmi_unified_cmd_send(wmi_handle, buf, len,
+				   WMI_RESMGR_ADAPTIVE_OCS_ENABLE_DISABLE_CMDID);
+	if (ret) {
+		WMA_LOGP("%s: Failed to send enable/disable MCC"
+			 " adaptive scheduler command", __func__);
+		cdf_nbuf_free(buf);
+	}
+	return CDF_STATUS_SUCCESS;
+}
+
+/**
+ * send_set_mcc_channel_time_latency_cmd_tlv() -set MCC channel time latency
+ * @wmi: wmi handle
+ * @mcc_channel: mcc channel
+ * @mcc_channel_time_latency: MCC channel time latency.
+ *
+ * Currently used to set time latency for an MCC vdev/adapter using operating
+ * channel of it and channel number. The info is provided run time using
+ * iwpriv command: iwpriv <wlan0 | p2p0> setMccLatency <latency in ms>.
+ *
+ * Return: CDF status
+ */
+int32_t send_set_mcc_channel_time_latency_cmd_tlv(wmi_unified_t wmi_handle,
+	uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency)
+{
+	int ret = -1;
+	wmi_buf_t buf = 0;
+	wmi_resmgr_set_chan_latency_cmd_fixed_param *cmdTL = NULL;
+	uint16_t len = 0;
+	uint8_t *buf_ptr = NULL;
+	wmi_resmgr_chan_latency chan_latency;
+	/* Note: we only support MCC time latency for a single channel */
+	uint32_t num_channels = 1;
+	uint32_t chan1_freq = mcc_channel_freq;
+	uint32_t latency_chan1 = mcc_channel_time_latency;
+
+
+	/* If 0ms latency is provided, then FW will set to a default.
+	 * Otherwise, latency must be at least 30ms.
+	 */
+	if ((latency_chan1 > 0) &&
+	    (latency_chan1 < WMI_MCC_MIN_NON_ZERO_CHANNEL_LATENCY)) {
+		WMA_LOGE("%s: Invalid time latency for Channel #1 = %dms "
+			 "Minimum is 30ms (or 0 to use default value by "
+			 "firmware)", __func__, latency_chan1);
+		return CDF_STATUS_E_INVAL;
+	}
+
+	/*   Set WMI CMD for channel time latency here */
+	len = sizeof(wmi_resmgr_set_chan_latency_cmd_fixed_param) +
+	      WMI_TLV_HDR_SIZE +  /*Place holder for chan_time_latency array */
+	      num_channels * sizeof(wmi_resmgr_chan_latency);
+	buf = wmi_buf_alloc(wmi_handle, len);
+	if (!buf) {
+		WMA_LOGE("%s : wmi_buf_alloc failed", __func__);
+		return CDF_STATUS_E_NOMEM;
+	}
+	buf_ptr = (uint8_t *) wmi_buf_data(buf);
+	cmdTL = (wmi_resmgr_set_chan_latency_cmd_fixed_param *)
+		wmi_buf_data(buf);
+	WMITLV_SET_HDR(&cmdTL->tlv_header,
+		WMITLV_TAG_STRUC_wmi_resmgr_set_chan_latency_cmd_fixed_param,
+		       WMITLV_GET_STRUCT_TLVLEN
+		       (wmi_resmgr_set_chan_latency_cmd_fixed_param));
+	cmdTL->num_chans = num_channels;
+	/* Update channel time latency information for home channel(s) */
+	buf_ptr += sizeof(*cmdTL);
+	WMITLV_SET_HDR(buf_ptr, WMITLV_TAG_ARRAY_BYTE,
+		       num_channels * sizeof(wmi_resmgr_chan_latency));
+	buf_ptr += WMI_TLV_HDR_SIZE;
+	chan_latency.chan_mhz = chan1_freq;
+	chan_latency.latency = latency_chan1;
+	cdf_mem_copy(buf_ptr, &chan_latency, sizeof(chan_latency));
+	ret = wmi_unified_cmd_send(wmi_handle, buf, len,
+				   WMI_RESMGR_SET_CHAN_LATENCY_CMDID);
+	if (ret) {
+		WMA_LOGE("%s: Failed to send MCC Channel Time Latency command",
+			 __func__);
+		cdf_nbuf_free(buf);
+		CDF_ASSERT(0);
+		return CDF_STATUS_E_FAILURE;
+	}
+	return CDF_STATUS_SUCCESS;
+}
+
+/**
+ * send_set_mcc_channel_time_quota_cmd_tlv() -set MCC channel time quota
+ * @wmi: wmi handle
+ * @adapter_1_chan_number: adapter 1 channel number
+ * @adapter_1_quota: adapter 1 quota
+ * @adapter_2_chan_number: adapter 2 channel number
+ *
+ * Return: CDF status
+ */
+int32_t send_set_mcc_channel_time_quota_cmd_tlv(wmi_unified_t wmi_handle,
+	uint32_t adapter_1_chan_freq,
+	uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq)
+{
+	int ret = -1;
+	wmi_buf_t buf = 0;
+	uint16_t len = 0;
+	uint8_t *buf_ptr = NULL;
+	wmi_resmgr_set_chan_time_quota_cmd_fixed_param *cmdTQ = NULL;
+	wmi_resmgr_chan_time_quota chan_quota;
+	uint32_t quota_chan1 = adapter_1_quota;
+	/* Knowing quota of 1st chan., derive quota for 2nd chan. */
+	uint32_t quota_chan2 = 100 - quota_chan1;
+	/* Note: setting time quota for MCC requires info for 2 channels */
+	uint32_t num_channels = 2;
+	uint32_t chan1_freq = adapter_1_chan_freq;
+	uint32_t chan2_freq = adapter_2_chan_freq;
+
+	WMA_LOGD("%s: freq1:%dMHz, Quota1:%dms, "
+		 "freq2:%dMHz, Quota2:%dms", __func__,
+		 chan1_freq, quota_chan1, chan2_freq,
+		 quota_chan2);
+
+	/*
+	 * Perform sanity check on time quota values provided.
+	 */
+	if (quota_chan1 < WMI_MCC_MIN_CHANNEL_QUOTA ||
+	    quota_chan1 > WMI_MCC_MAX_CHANNEL_QUOTA) {
+		WMA_LOGE("%s: Invalid time quota for Channel #1=%dms. Minimum "
+			 "is 20ms & maximum is 80ms", __func__, quota_chan1);
+		return CDF_STATUS_E_INVAL;
+	}
+	/* Set WMI CMD for channel time quota here */
+	len = sizeof(wmi_resmgr_set_chan_time_quota_cmd_fixed_param) +
+	      WMI_TLV_HDR_SIZE +       /* Place holder for chan_time_quota array */
+	      num_channels * sizeof(wmi_resmgr_chan_time_quota);
+	buf = wmi_buf_alloc(wmi_handle, len);
+	if (!buf) {
+		WMA_LOGE("%s : wmi_buf_alloc failed", __func__);
+		CDF_ASSERT(0);
+		return CDF_STATUS_E_NOMEM;
+	}
+	buf_ptr = (uint8_t *) wmi_buf_data(buf);
+	cmdTQ = (wmi_resmgr_set_chan_time_quota_cmd_fixed_param *)
+		wmi_buf_data(buf);
+	WMITLV_SET_HDR(&cmdTQ->tlv_header,
+		       WMITLV_TAG_STRUC_wmi_resmgr_set_chan_time_quota_cmd_fixed_param,
+		       WMITLV_GET_STRUCT_TLVLEN
+			       (wmi_resmgr_set_chan_time_quota_cmd_fixed_param));
+	cmdTQ->num_chans = num_channels;
+
+	/* Update channel time quota information for home channel(s) */
+	buf_ptr += sizeof(*cmdTQ);
+	WMITLV_SET_HDR(buf_ptr, WMITLV_TAG_ARRAY_BYTE,
+		       num_channels * sizeof(wmi_resmgr_chan_time_quota));
+	buf_ptr += WMI_TLV_HDR_SIZE;
+	chan_quota.chan_mhz = chan1_freq;
+	chan_quota.channel_time_quota = quota_chan1;
+	cdf_mem_copy(buf_ptr, &chan_quota, sizeof(chan_quota));
+	/* Construct channel and quota record for the 2nd MCC mode. */
+	buf_ptr += sizeof(chan_quota);
+	chan_quota.chan_mhz = chan2_freq;
+	chan_quota.channel_time_quota = quota_chan2;
+	cdf_mem_copy(buf_ptr, &chan_quota, sizeof(chan_quota));
+
+	ret = wmi_unified_cmd_send(wmi_handle, buf, len,
+				   WMI_RESMGR_SET_CHAN_TIME_QUOTA_CMDID);
+	if (ret) {
+		WMA_LOGE("Failed to send MCC Channel Time Quota command");
+		cdf_nbuf_free(buf);
+		CDF_ASSERT(0);
+		return CDF_STATUS_E_FAILURE;
+	}
+	return CDF_STATUS_SUCCESS;
+}
+
+/**
+ * send_set_thermal_mgmt_cmd_tlv() - set thermal mgmt command to fw
+ * @wmi_handle: Pointer to wmi handle
+ * @thermal_info: Thermal command information
+ *
+ * This function sends the thermal management command
+ * to the firmware
+ *
+ * Return: CDF_STATUS_SUCCESS for success otherwise failure
+ */
+int32_t send_set_thermal_mgmt_cmd_tlv(wmi_unified_t wmi_handle,
+				struct thermal_cmd_params *thermal_info)
+{
+	wmi_thermal_mgmt_cmd_fixed_param *cmd = NULL;
+	wmi_buf_t buf = NULL;
+	int status = 0;
+	uint32_t len = 0;
+
+	len = sizeof(*cmd);
+
+	buf = wmi_buf_alloc(wmi_handle, len);
+	if (!buf) {
+		WMA_LOGE("Failed to allocate buffer to send set key cmd");
+		return CDF_STATUS_E_FAILURE;
+	}
+
+	cmd = (wmi_thermal_mgmt_cmd_fixed_param *) wmi_buf_data(buf);
+
+	WMITLV_SET_HDR(&cmd->tlv_header,
+		       WMITLV_TAG_STRUC_wmi_thermal_mgmt_cmd_fixed_param,
+		       WMITLV_GET_STRUCT_TLVLEN
+			       (wmi_thermal_mgmt_cmd_fixed_param));
+
+	cmd->lower_thresh_degreeC = thermal_info->min_temp;
+	cmd->upper_thresh_degreeC = thermal_info->max_temp;
+	cmd->enable = thermal_info->thermal_enable;
+
+	WMA_LOGE("TM Sending thermal mgmt cmd: low temp %d, upper temp %d, enabled %d",
+		cmd->lower_thresh_degreeC, cmd->upper_thresh_degreeC, cmd->enable);
+
+	status = wmi_unified_cmd_send(wmi_handle, buf, len,
+				      WMI_THERMAL_MGMT_CMDID);
+	if (status) {
+		cdf_nbuf_free(buf);
+		WMA_LOGE("%s:Failed to send thermal mgmt command", __func__);
+		return CDF_STATUS_E_FAILURE;
+	}
+
+	return CDF_STATUS_SUCCESS;
+}
+
+
+/**
+ * send_lro_config_cmd_tlv() - process the LRO config command
+ * @wmi: Pointer to WMA handle
+ * @wmi_lro_cmd: Pointer to LRO configuration parameters
+ *
+ * This function sends down the LRO configuration parameters to
+ * the firmware to enable LRO, sets the TCP flags and sets the
+ * seed values for the toeplitz hash generation
+ *
+ * Return: CDF_STATUS_SUCCESS for success otherwise failure
+ */
+int32_t send_lro_config_cmd_tlv(wmi_unified_t wmi_handle,
+	 struct wmi_lro_config_cmd_t *wmi_lro_cmd)
+{
+	wmi_lro_info_cmd_fixed_param *cmd;
+	wmi_buf_t buf;
+	int status;
+
+
+	buf = wmi_buf_alloc(wmi_handle, sizeof(*cmd));
+	if (!buf) {
+		WMA_LOGE("Failed to allocate buffer to send set key cmd");
+		return CDF_STATUS_E_FAILURE;
+	}
+
+	cmd = (wmi_lro_info_cmd_fixed_param *) wmi_buf_data(buf);
+
+	WMITLV_SET_HDR(&cmd->tlv_header,
+		 WMITLV_TAG_STRUC_wmi_lro_info_cmd_fixed_param,
+		 WMITLV_GET_STRUCT_TLVLEN(wmi_lro_info_cmd_fixed_param));
+
+	cmd->lro_enable = wmi_lro_cmd->lro_enable;
+	WMI_LRO_INFO_TCP_FLAG_VALS_SET(cmd->tcp_flag_u32,
+		 wmi_lro_cmd->tcp_flag);
+	WMI_LRO_INFO_TCP_FLAGS_MASK_SET(cmd->tcp_flag_u32,
+		 wmi_lro_cmd->tcp_flag_mask);
+	cmd->toeplitz_hash_ipv4_0_3 =
+		 wmi_lro_cmd->toeplitz_hash_ipv4[0];
+	cmd->toeplitz_hash_ipv4_4_7 =
+		 wmi_lro_cmd->toeplitz_hash_ipv4[1];
+	cmd->toeplitz_hash_ipv4_8_11 =
+		 wmi_lro_cmd->toeplitz_hash_ipv4[2];
+	cmd->toeplitz_hash_ipv4_12_15 =
+		 wmi_lro_cmd->toeplitz_hash_ipv4[3];
+	cmd->toeplitz_hash_ipv4_16 =
+		 wmi_lro_cmd->toeplitz_hash_ipv4[4];
+
+	cmd->toeplitz_hash_ipv6_0_3 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[0];
+	cmd->toeplitz_hash_ipv6_4_7 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[1];
+	cmd->toeplitz_hash_ipv6_8_11 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[2];
+	cmd->toeplitz_hash_ipv6_12_15 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[3];
+	cmd->toeplitz_hash_ipv6_16_19 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[4];
+	cmd->toeplitz_hash_ipv6_20_23 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[5];
+	cmd->toeplitz_hash_ipv6_24_27 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[6];
+	cmd->toeplitz_hash_ipv6_28_31 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[7];
+	cmd->toeplitz_hash_ipv6_32_35 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[8];
+	cmd->toeplitz_hash_ipv6_36_39 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[9];
+	cmd->toeplitz_hash_ipv6_40 =
+		 wmi_lro_cmd->toeplitz_hash_ipv6[10];
+
+	WMA_LOGD("WMI_LRO_CONFIG: lro_enable %d, tcp_flag 0x%x",
+		cmd->lro_enable, cmd->tcp_flag_u32);
+
+	status = wmi_unified_cmd_send(wmi_handle, buf,
+		 sizeof(*cmd), WMI_LRO_CONFIG_CMDID);
+	if (status) {
+		cdf_nbuf_free(buf);
+		WMA_LOGE("%s:Failed to send WMI_LRO_CONFIG_CMDID", __func__);
+		return CDF_STATUS_E_FAILURE;
+	}
+
+	return CDF_STATUS_SUCCESS;
+}
+
 struct wmi_ops tlv_ops =  {
 	.send_vdev_create_cmd = send_vdev_create_cmd_tlv,
 	.send_vdev_delete_cmd = send_vdev_delete_cmd_tlv,
@@ -2538,6 +2878,14 @@ struct wmi_ops tlv_ops =  {
 	.send_ocb_set_config_cmd = send_ocb_set_config_cmd_tlv,
 	.send_ocb_stop_timing_advert_cmd = send_ocb_stop_timing_advert_cmd_tlv,
 	.send_ocb_start_timing_advert_cmd = send_ocb_start_timing_advert_cmd_tlv,
+	.send_set_enable_disable_mcc_adaptive_scheduler_cmd =
+		 send_set_enable_disable_mcc_adaptive_scheduler_cmd_tlv,
+	.send_set_mcc_channel_time_latency_cmd =
+			 send_set_mcc_channel_time_latency_cmd_tlv,
+	.send_set_mcc_channel_time_quota_cmd =
+			 send_set_mcc_channel_time_quota_cmd_tlv,
+	.send_set_thermal_mgmt_cmd = send_set_thermal_mgmt_cmd_tlv,
+	.send_lro_config_cmd = send_lro_config_cmd_tlv,
 
 	/* TODO - Add other tlv apis here */
 };