qcacmn: Add pdev_id for regdomain cmd send API

Add regdomain send command in tlv.c.
pdev_id is required to indicate the pdev object on which command needs
to be applied. Add pdev-id in regdomain command in TLV.

Change-Id: I6a2c3453a2c058c6fb4cfab2f57c1fbce628aad7
CRs-Fixed: 2003898
This commit is contained in:
Kiran Venkatappa
2017-02-08 15:02:44 +05:30
committed by qcabuildsw
parent 5050aa8ac8
commit 36445a7f49

View File

@@ -9207,6 +9207,52 @@ static QDF_STATUS send_process_ch_avoid_update_cmd_tlv(wmi_unified_t wmi_handle)
return status;
}
/**
* send_pdev_set_regdomain_cmd_tlv() - send set regdomain command to fw
* @wmi_handle: wmi handle
* @param: pointer to pdev regdomain params
*
* Return: 0 for success or error code
*/
static QDF_STATUS
send_pdev_set_regdomain_cmd_tlv(wmi_unified_t wmi_handle,
struct pdev_set_regdomain_params *param)
{
wmi_buf_t buf;
wmi_pdev_set_regdomain_cmd_fixed_param *cmd;
int32_t len = sizeof(*cmd);
buf = wmi_buf_alloc(wmi_handle, len);
if (!buf) {
WMI_LOGP("%s: wmi_buf_alloc failed", __func__);
return QDF_STATUS_E_NOMEM;
}
cmd = (wmi_pdev_set_regdomain_cmd_fixed_param *) wmi_buf_data(buf);
WMITLV_SET_HDR(&cmd->tlv_header,
WMITLV_TAG_STRUC_wmi_pdev_set_regdomain_cmd_fixed_param,
WMITLV_GET_STRUCT_TLVLEN
(wmi_pdev_set_regdomain_cmd_fixed_param));
cmd->reg_domain = param->currentRDinuse;
cmd->reg_domain_2G = param->currentRD2G;
cmd->reg_domain_5G = param->currentRD5G;
cmd->conformance_test_limit_2G = param->ctl_2G;
cmd->conformance_test_limit_5G = param->ctl_5G;
cmd->dfs_domain = param->dfsDomain;
cmd->pdev_id = param->pdev_id;
if (wmi_unified_cmd_send(wmi_handle, buf, len,
WMI_PDEV_SET_REGDOMAIN_CMDID)) {
WMI_LOGE("%s: Failed to send pdev set regdomain command",
__func__);
wmi_buf_free(buf);
return QDF_STATUS_E_FAILURE;
}
return QDF_STATUS_SUCCESS;
}
/**
* send_regdomain_info_to_fw_cmd_tlv() - send regdomain info to fw
* @wmi_handle: wmi handle
@@ -13764,6 +13810,8 @@ struct wmi_ops tlv_ops = {
.send_set_led_flashing_cmd = send_set_led_flashing_cmd_tlv,
.send_process_ch_avoid_update_cmd =
send_process_ch_avoid_update_cmd_tlv,
.send_pdev_set_regdomain_cmd =
send_pdev_set_regdomain_cmd_tlv,
.send_regdomain_info_to_fw_cmd = send_regdomain_info_to_fw_cmd_tlv,
.send_set_tdls_offchan_mode_cmd = send_set_tdls_offchan_mode_cmd_tlv,
.send_update_fw_tdls_state_cmd = send_update_fw_tdls_state_cmd_tlv,