qcacmn: Add support for twice antenna gain param

Existing antenna gain command does not take odd antenna gain value that is
gains are not supported in steps of 0.5db. antenna_gain_half_db pdev
param provides this support. Added WMI and CDP changes to configure/read
this data.
CRs-Fixed: 2024854
Change-Id: I47da9eed74a1a0180cefb4c3f47bc4340da1bdfd
This commit is contained in:
Priyadarshnee S
2018-07-25 11:08:40 +05:30
committed by nshrivas
parent 87668f872b
commit 973bc0affa
4 changed files with 8 additions and 0 deletions

View File

@@ -1268,6 +1268,7 @@ enum _ol_ath_param_t {
OL_ATH_PARAM_CBS_WAIT_TIME = 384, OL_ATH_PARAM_CBS_WAIT_TIME = 384,
OL_ATH_PARAM_CBS_REST_TIME = 385, OL_ATH_PARAM_CBS_REST_TIME = 385,
OL_ATH_PARAM_CBS_CSA = 386, OL_ATH_PARAM_CBS_CSA = 386,
OL_ATH_PARAM_TWICE_ANTENNA_GAIN = 387,
}; };
/* Enumeration of PDEV Configuration parameter */ /* Enumeration of PDEV Configuration parameter */

View File

@@ -5775,6 +5775,7 @@ typedef enum {
wmi_pdev_param_soft_tx_chain_mask, wmi_pdev_param_soft_tx_chain_mask,
wmi_pdev_param_cck_tx_enable, wmi_pdev_param_cck_tx_enable,
wmi_pdev_param_esp_indication_period, wmi_pdev_param_esp_indication_period,
wmi_pdev_param_antenna_gain_half_db,
wmi_pdev_param_max, wmi_pdev_param_max,
} wmi_conv_pdev_params_id; } wmi_conv_pdev_params_id;

View File

@@ -6671,6 +6671,7 @@ static QDF_STATUS extract_pdev_tpc_config_ev_param_non_tlv(wmi_unified_t wmi_han
param->phyMode = event->phyMode; param->phyMode = event->phyMode;
param->twiceAntennaReduction = event->twiceAntennaReduction; param->twiceAntennaReduction = event->twiceAntennaReduction;
param->twiceMaxRDPower = event->twiceMaxRDPower; param->twiceMaxRDPower = event->twiceMaxRDPower;
param->twiceAntennaGain = event->twiceAntennaGain;
param->powerLimit = event->powerLimit; param->powerLimit = event->powerLimit;
param->rateMax = event->rateMax; param->rateMax = event->rateMax;
param->numTxChain = event->numTxChain; param->numTxChain = event->numTxChain;
@@ -9443,6 +9444,8 @@ static void populate_pdev_param_non_tlv(uint32_t *pdev_param)
pdev_param[wmi_pdev_param_rx_chain_mask_5g] = WMI_UNAVAILABLE_PARAM; pdev_param[wmi_pdev_param_rx_chain_mask_5g] = WMI_UNAVAILABLE_PARAM;
pdev_param[wmi_pdev_param_tx_chain_mask_cck] = WMI_UNAVAILABLE_PARAM; pdev_param[wmi_pdev_param_tx_chain_mask_cck] = WMI_UNAVAILABLE_PARAM;
pdev_param[wmi_pdev_param_tx_chain_mask_1ss] = WMI_UNAVAILABLE_PARAM; pdev_param[wmi_pdev_param_tx_chain_mask_1ss] = WMI_UNAVAILABLE_PARAM;
pdev_param[wmi_pdev_param_antenna_gain_half_db] =
WMI_PDEV_PARAM_ANTENNA_GAIN_HALF_DB;
} }
/** /**

View File

@@ -18272,6 +18272,7 @@ static QDF_STATUS extract_pdev_tpc_config_ev_param_tlv(wmi_unified_t wmi_handle,
param->chanFreq = event->chanFreq; param->chanFreq = event->chanFreq;
param->phyMode = event->phyMode; param->phyMode = event->phyMode;
param->twiceAntennaReduction = event->twiceAntennaReduction; param->twiceAntennaReduction = event->twiceAntennaReduction;
param->twiceAntennaGain = event->twiceAntennaGain;
param->twiceMaxRDPower = event->twiceMaxRDPower; param->twiceMaxRDPower = event->twiceMaxRDPower;
param->powerLimit = event->powerLimit; param->powerLimit = event->powerLimit;
param->rateMax = event->rateMax; param->rateMax = event->rateMax;
@@ -23056,6 +23057,8 @@ static void populate_pdev_param_tlv(uint32_t *pdev_param)
pdev_param[wmi_pdev_param_rx_decap_mode] = WMI_PDEV_PARAM_RX_DECAP_MODE; pdev_param[wmi_pdev_param_rx_decap_mode] = WMI_PDEV_PARAM_RX_DECAP_MODE;
pdev_param[wmi_pdev_param_tx_ack_timeout] = WMI_PDEV_PARAM_ACK_TIMEOUT; pdev_param[wmi_pdev_param_tx_ack_timeout] = WMI_PDEV_PARAM_ACK_TIMEOUT;
pdev_param[wmi_pdev_param_cck_tx_enable] = WMI_PDEV_PARAM_CCK_TX_ENABLE; pdev_param[wmi_pdev_param_cck_tx_enable] = WMI_PDEV_PARAM_CCK_TX_ENABLE;
pdev_param[wmi_pdev_param_antenna_gain_half_db] =
WMI_PDEV_PARAM_ANTENNA_GAIN_HALF_DB;
} }
/** /**