
In the existing converged component, WMI TLV APIs are implemented in a generic manner without proper featurization. All the APIs exposed outside of WMI are implemented in wmi_unified_api.c and all the APIs forming the CMD or extracting the EVT is implemented in wmi_unified_tlv.c. Since WIN and MCL have a unified WMI layer in the converged component and there are features within WIN and MCL that are not common, there exists a good number of WMI APIs which are specific to WIN but compiled by MCL and vice-versa. Due to this inadvertent problem, there is a chunk of code and memory used up by WIN and MCL for features that are not used in their products. Featurize WMI APIs and TLVs that are specific to MCL - - DSRC - NAN - P2P - PMO - roaming - concurrency - STA - Generic MCL specific WMI (STA) Change-Id: I03a68b0db30a3aa585b269ab0a1745b37bc7e0b7 CRs-Fixed: 2316935
243 lines
8.4 KiB
C
243 lines
8.4 KiB
C
/*
|
|
* Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
* above copyright notice and this permission notice appear in all
|
|
* copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
|
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#include <osdep.h>
|
|
#include <wmi.h>
|
|
#include <wmi_unified_priv.h>
|
|
#include <wmi_unified_concurrency_api.h>
|
|
|
|
/**
|
|
* 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: QDF_STATUS_SUCCESS for success or error code
|
|
*/
|
|
static QDF_STATUS send_set_enable_disable_mcc_adaptive_scheduler_cmd_tlv(
|
|
wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler,
|
|
uint32_t pdev_id)
|
|
{
|
|
QDF_STATUS ret;
|
|
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) {
|
|
return QDF_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;
|
|
cmd->pdev_id = wmi_handle->ops->convert_pdev_id_host_to_target(pdev_id);
|
|
|
|
wmi_mtrace(WMI_RESMGR_ADAPTIVE_OCS_ENABLE_DISABLE_CMDID, NO_SESSION, 0);
|
|
ret = wmi_unified_cmd_send(wmi_handle, buf, len,
|
|
WMI_RESMGR_ADAPTIVE_OCS_ENABLE_DISABLE_CMDID);
|
|
if (QDF_IS_STATUS_ERROR(ret)) {
|
|
WMI_LOGP("%s: Failed to send enable/disable MCC"
|
|
" adaptive scheduler command", __func__);
|
|
wmi_buf_free(buf);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
static QDF_STATUS send_set_mcc_channel_time_latency_cmd_tlv(
|
|
wmi_unified_t wmi_handle,
|
|
uint32_t mcc_channel_freq,
|
|
uint32_t mcc_channel_time_latency)
|
|
{
|
|
QDF_STATUS ret;
|
|
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)) {
|
|
WMI_LOGE("%s: Invalid time latency for Channel #1 = %dms "
|
|
"Minimum is 30ms (or 0 to use default value by "
|
|
"firmware)", __func__, latency_chan1);
|
|
return QDF_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) {
|
|
return QDF_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;
|
|
qdf_mem_copy(buf_ptr, &chan_latency, sizeof(chan_latency));
|
|
wmi_mtrace(WMI_RESMGR_SET_CHAN_LATENCY_CMDID, NO_SESSION, 0);
|
|
ret = wmi_unified_cmd_send(wmi_handle, buf, len,
|
|
WMI_RESMGR_SET_CHAN_LATENCY_CMDID);
|
|
if (QDF_IS_STATUS_ERROR(ret)) {
|
|
WMI_LOGE("%s: Failed to send MCC Channel Time Latency command",
|
|
__func__);
|
|
wmi_buf_free(buf);
|
|
QDF_ASSERT(0);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
static QDF_STATUS 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)
|
|
{
|
|
QDF_STATUS ret;
|
|
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;
|
|
|
|
WMI_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) {
|
|
WMI_LOGE("%s: Invalid time quota for Channel #1=%dms. Minimum "
|
|
"is 20ms & maximum is 80ms", __func__, quota_chan1);
|
|
return QDF_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) {
|
|
return QDF_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;
|
|
qdf_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;
|
|
qdf_mem_copy(buf_ptr, &chan_quota, sizeof(chan_quota));
|
|
|
|
wmi_mtrace(WMI_RESMGR_SET_CHAN_TIME_QUOTA_CMDID, NO_SESSION, 0);
|
|
ret = wmi_unified_cmd_send(wmi_handle, buf, len,
|
|
WMI_RESMGR_SET_CHAN_TIME_QUOTA_CMDID);
|
|
if (QDF_IS_STATUS_ERROR(ret)) {
|
|
WMI_LOGE("Failed to send MCC Channel Time Quota command");
|
|
wmi_buf_free(buf);
|
|
QDF_ASSERT(0);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
void wmi_concurrency_attach_tlv(wmi_unified_t wmi_handle)
|
|
{
|
|
struct wmi_ops *ops = wmi_handle->ops;
|
|
|
|
ops->send_set_enable_disable_mcc_adaptive_scheduler_cmd =
|
|
send_set_enable_disable_mcc_adaptive_scheduler_cmd_tlv;
|
|
ops->send_set_mcc_channel_time_latency_cmd =
|
|
send_set_mcc_channel_time_latency_cmd_tlv;
|
|
ops->send_set_mcc_channel_time_quota_cmd =
|
|
send_set_mcc_channel_time_quota_cmd_tlv;
|
|
}
|