qcacmn: Add Support for Setting MSDUQ Depth Parameters

Add host support to enable setting MSDUQ depth parameters per
TID per peer.

Parameters include MAC Address, TID number, update mask and
Q depth threshold value.

CRs-Fixed: 2162460
Change-Id: Ie947fd599278a04e13d6aa6c89f840187dbf17fa
This commit is contained in:
Venkateswara Swamy Bandaru
2017-12-22 17:16:19 +05:30
committed by snandini
parent 45393697a8
commit 3ef1844980
5 changed files with 155 additions and 0 deletions

View File

@@ -1135,6 +1135,16 @@ QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl, QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl,
struct set_custom_aggr_size_params *param); struct set_custom_aggr_size_params *param);
/**
* wmi_unified_vdev_set_qdepth_thresh_cmd_send() - WMI set qdepth threshold
* @param wmi_hdl : handle to WMI.
* @param param : pointer to hold set qdepth thresh param
*
* @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
*/
QDF_STATUS wmi_unified_vdev_set_qdepth_thresh_cmd_send(void *wmi_hdl,
struct set_qdepth_thresh_params *param);
QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl, QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
struct pdev_set_regdomain_params *param); struct pdev_set_regdomain_params *param);

View File

@@ -3887,6 +3887,39 @@ enum wmi_host_custom_aggr_type_t {
WMI_HOST_CUSTOM_AGGR_TYPE_MAX, WMI_HOST_CUSTOM_AGGR_TYPE_MAX,
}; };
/*
* msduq_update_params - MSDUQ update param structure
* @tid_num: TID number
* @msduq_update_mask: update bit mask
* @qdepth_thresh_value: threshold value for the queue depth
*/
#define QDEPTH_THRESH_MAX_UPDATES 1
typedef struct {
uint32_t tid_num;
uint32_t msduq_update_mask;
uint32_t qdepth_thresh_value;
} msduq_update_params;
/**
* struct set_qdepth_thresh_params - MSDU Queue Depth Threshold Params
* @vdev_id: vdev id
* @pdev_id: pdev id
* @mac_addr: MAC address
* @num_of_msduq_updates: holds the number of tid updates
*/
struct set_qdepth_thresh_params {
uint32_t pdev_id;
uint32_t vdev_id;
uint8_t mac_addr[IEEE80211_ADDR_LEN];
uint32_t num_of_msduq_updates;
msduq_update_params update_params[QDEPTH_THRESH_MAX_UPDATES];
};
/** /**
* struct config_ratemask_params - ratemask config parameters * struct config_ratemask_params - ratemask config parameters
* @vdev_id: vdev id * @vdev_id: vdev id

View File

@@ -922,6 +922,9 @@ QDF_STATUS (*send_vdev_config_ratemask_cmd)(wmi_unified_t wmi_handle,
QDF_STATUS (*send_vdev_set_custom_aggr_size_cmd)(wmi_unified_t wmi_handle, QDF_STATUS (*send_vdev_set_custom_aggr_size_cmd)(wmi_unified_t wmi_handle,
struct set_custom_aggr_size_params *param); struct set_custom_aggr_size_params *param);
QDF_STATUS (*send_vdev_set_qdepth_thresh_cmd)(wmi_unified_t wmi_handle,
struct set_qdepth_thresh_params *param);
QDF_STATUS (*send_wow_wakeup_cmd)(wmi_unified_t wmi_handle); QDF_STATUS (*send_wow_wakeup_cmd)(wmi_unified_t wmi_handle);
QDF_STATUS (*send_wow_add_wakeup_event_cmd)(wmi_unified_t wmi_handle, QDF_STATUS (*send_wow_add_wakeup_event_cmd)(wmi_unified_t wmi_handle,

View File

@@ -4217,6 +4217,24 @@ QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl,
return QDF_STATUS_E_FAILURE; return QDF_STATUS_E_FAILURE;
} }
/**
* wmi_unified_vdev_set_qdepth_thresh_cmd_send() - WMI set qdepth threshold
* @param wmi_handle : handle to WMI
* @param param : pointer to hold qdepth threshold params
*
* @return QDF_STATUS_SUCCESS on success and QDF_STATUS_R_FAILURE for failure
*/
QDF_STATUS wmi_unified_vdev_set_qdepth_thresh_cmd_send(void *wmi_hdl,
struct set_qdepth_thresh_params *param)
{
wmi_unified_t wmi = (wmi_unified_t)wmi_hdl;
if (wmi->ops->send_vdev_set_qdepth_thresh_cmd)
return wmi->ops->send_vdev_set_qdepth_thresh_cmd(wmi, param);
return QDF_STATUS_E_FAILURE;
}
/** /**
* wmi_unified_pdev_set_regdomain_params_cmd_send() - WMI set regdomain function * wmi_unified_pdev_set_regdomain_params_cmd_send() - WMI set regdomain function
* @param wmi_handle : handle to WMI. * @param wmi_handle : handle to WMI.

View File

@@ -11217,6 +11217,95 @@ static QDF_STATUS send_vdev_set_custom_aggr_size_cmd_tlv(
return QDF_STATUS_SUCCESS; return QDF_STATUS_SUCCESS;
} }
/**
* send_vdev_set_qdepth_thresh_cmd_tlv() - WMI set qdepth threshold
* @param wmi_handle : handle to WMI.
* @param param : pointer to tx antenna param
*
* @return QDF_STATUS_SUCCESS on success and -ve on failure.
*/
static QDF_STATUS send_vdev_set_qdepth_thresh_cmd_tlv(wmi_unified_t wmi_handle,
struct set_qdepth_thresh_params *param)
{
wmi_peer_tid_msduq_qdepth_thresh_update_cmd_fixed_param *cmd;
wmi_msduq_qdepth_thresh_update *cmd_update;
wmi_buf_t buf;
int32_t len = 0;
int i;
uint8_t *buf_ptr;
QDF_STATUS ret;
if (param->num_of_msduq_updates > QDEPTH_THRESH_MAX_UPDATES) {
WMI_LOGE("%s: Invalid Update Count!\n", __func__);
return QDF_STATUS_E_INVAL;
}
len = sizeof(*cmd) + WMI_TLV_HDR_SIZE;
len += (sizeof(wmi_msduq_qdepth_thresh_update) *
param->num_of_msduq_updates);
buf = wmi_buf_alloc(wmi_handle, len);
if (!buf) {
WMI_LOGE("%s:wmi_buf_alloc failed\n", __func__);
return QDF_STATUS_E_NOMEM;
}
buf_ptr = (uint8_t *)wmi_buf_data(buf);
cmd = (wmi_peer_tid_msduq_qdepth_thresh_update_cmd_fixed_param *)
buf_ptr;
WMITLV_SET_HDR(&cmd->tlv_header,
WMITLV_TAG_STRUC_wmi_peer_tid_msduq_qdepth_thresh_update_cmd_fixed_param
, WMITLV_GET_STRUCT_TLVLEN(
wmi_peer_tid_msduq_qdepth_thresh_update_cmd_fixed_param));
cmd->pdev_id =
wmi_handle->ops->convert_pdev_id_host_to_target(param->pdev_id);
cmd->vdev_id = param->vdev_id;
WMI_CHAR_ARRAY_TO_MAC_ADDR(param->mac_addr, &cmd->peer_mac_address);
cmd->num_of_msduq_updates = param->num_of_msduq_updates;
buf_ptr += sizeof(
wmi_peer_tid_msduq_qdepth_thresh_update_cmd_fixed_param);
WMITLV_SET_HDR(buf_ptr, WMITLV_TAG_ARRAY_STRUC,
param->num_of_msduq_updates *
sizeof(wmi_msduq_qdepth_thresh_update));
buf_ptr += WMI_TLV_HDR_SIZE;
cmd_update = (wmi_msduq_qdepth_thresh_update *)buf_ptr;
for (i = 0; i < cmd->num_of_msduq_updates; i++) {
WMITLV_SET_HDR(&cmd_update->tlv_header,
WMITLV_TAG_STRUC_wmi_msduq_qdepth_thresh_update,
WMITLV_GET_STRUCT_TLVLEN(
wmi_msduq_qdepth_thresh_update));
cmd_update->tid_num = param->update_params[i].tid_num;
cmd_update->msduq_update_mask =
param->update_params[i].msduq_update_mask;
cmd_update->qdepth_thresh_value =
param->update_params[i].qdepth_thresh_value;
WMI_LOGD("Set QDepth Threshold: vdev=0x%X pdev=0x%X, tid=0x%X "
"mac_addr_upper4=%X, mac_addr_lower2:%X,"
" update mask=0x%X thresh val=0x%X\n",
cmd->vdev_id, cmd->pdev_id, cmd_update->tid_num,
cmd->peer_mac_address.mac_addr31to0,
cmd->peer_mac_address.mac_addr47to32,
cmd_update->msduq_update_mask,
cmd_update->qdepth_thresh_value);
cmd_update++;
}
ret = wmi_unified_cmd_send(wmi_handle, buf, len,
WMI_PEER_TID_MSDUQ_QDEPTH_THRESH_UPDATE_CMDID);
if (ret != 0) {
WMI_LOGE(" %s :WMI Failed\n", __func__);
wmi_buf_free(buf);
}
return ret;
}
/** /**
* send_set_vap_dscp_tid_map_cmd_tlv() - send vap dscp tid map cmd to fw * send_set_vap_dscp_tid_map_cmd_tlv() - send vap dscp tid map cmd to fw
* @wmi_handle: wmi handle * @wmi_handle: wmi handle
@@ -20440,6 +20529,8 @@ struct wmi_ops tlv_ops = {
.send_vdev_config_ratemask_cmd = send_vdev_config_ratemask_cmd_tlv, .send_vdev_config_ratemask_cmd = send_vdev_config_ratemask_cmd_tlv,
.send_vdev_set_custom_aggr_size_cmd = .send_vdev_set_custom_aggr_size_cmd =
send_vdev_set_custom_aggr_size_cmd_tlv, send_vdev_set_custom_aggr_size_cmd_tlv,
.send_vdev_set_qdepth_thresh_cmd =
send_vdev_set_qdepth_thresh_cmd_tlv,
.send_set_vap_dscp_tid_map_cmd = send_set_vap_dscp_tid_map_cmd_tlv, .send_set_vap_dscp_tid_map_cmd = send_set_vap_dscp_tid_map_cmd_tlv,
.send_vdev_set_neighbour_rx_cmd = send_vdev_set_neighbour_rx_cmd_tlv, .send_vdev_set_neighbour_rx_cmd = send_vdev_set_neighbour_rx_cmd_tlv,
.send_smart_ant_set_tx_ant_cmd = send_smart_ant_set_tx_ant_cmd_tlv, .send_smart_ant_set_tx_ant_cmd = send_smart_ant_set_tx_ant_cmd_tlv,