qcacmn: Add SAR power limit configuration

There is a regulatory requirement for Specific Absorption
Rate (SAR) whereby the phone transmit power is reduced
when it is determined that the phone is in close
proximity to the body.
Implement a vendor command interface to set SAR power
limts dynamically.

Change-Id: I0a214a2af780e9dd8c381c4e9eaa7d8cab6ef853
CRs-Fixed: 1098102
This commit is contained in:
Manikandan Mohan
2016-12-13 13:14:06 -08:00
committed by qcabuildsw
parent 3f1115a8de
commit 7e5ad48619
3 changed files with 36 additions and 0 deletions

View File

@@ -1311,6 +1311,8 @@ QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl, QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
struct wmi_power_dbg_params *param); struct wmi_power_dbg_params *param);
QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
struct sar_limit_cmd_params *params);
QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl, QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
struct wmi_adaptive_dwelltime_params * struct wmi_adaptive_dwelltime_params *
wmi_param); wmi_param);

View File

@@ -7010,6 +7010,37 @@ typedef struct {
uint32_t tx_mu_transmitted; uint32_t tx_mu_transmitted;
} wmi_host_peer_txmu_cnt_event; } wmi_host_peer_txmu_cnt_event;
#define MAX_SAR_LIMIT_ROWS_SUPPORTED 64
/**
* struct sar_limit_cmd_row - sar limts row
* @band_id: Optional param for frequency band
* @chain_id: Optional param for antenna chain id
* @mod_id: Optional param for modulation scheme
* @limit_value: Mandatory param providing power limits in steps of 0.5 dbm
* @validity_bitmap: bitmap of valid optional params in sar_limit_cmd_row struct
*/
struct sar_limit_cmd_row {
uint32_t band_id;
uint32_t chain_id;
uint32_t mod_id;
uint32_t limit_value;
uint32_t validity_bitmap;
};
/**
* struct sar_limit_cmd_params - sar limts params
* @sar_enable: flag to enable SAR
* @num_limit_rows: number of items in sar_limits
* @commit_limits: indicates firmware to start apply new SAR values
* @sar_limit_row_list: pointer to array of sar limit rows
*/
struct sar_limit_cmd_params {
uint32_t sar_enable;
uint32_t num_limit_rows;
uint32_t commit_limits;
struct sar_limit_cmd_row *sar_limit_row_list;
};
/* /*
* struct wmi_peer_gid_userpos_list_event * struct wmi_peer_gid_userpos_list_event
* @usr_list - User list * @usr_list - User list

View File

@@ -1180,6 +1180,9 @@ QDF_STATUS (*send_fw_test_cmd)(wmi_unified_t wmi_handle,
QDF_STATUS (*send_encrypt_decrypt_send_cmd)(wmi_unified_t wmi_handle, QDF_STATUS (*send_encrypt_decrypt_send_cmd)(wmi_unified_t wmi_handle,
struct encrypt_decrypt_req_params *params); struct encrypt_decrypt_req_params *params);
QDF_STATUS (*send_sar_limit_cmd)(wmi_unified_t wmi_handle,
struct sar_limit_cmd_params *params);
QDF_STATUS (*send_peer_rx_reorder_queue_setup_cmd)(wmi_unified_t wmi_handle, QDF_STATUS (*send_peer_rx_reorder_queue_setup_cmd)(wmi_unified_t wmi_handle,
struct rx_reorder_queue_setup_params *param); struct rx_reorder_queue_setup_params *param);