qcacmn: Add support for Thermal Stats Events

Add support for extracting Thermal Stats Events
from thermal event TLV for FW event
WMI_THERM_THROT_STATS_EVENTID.

Also, added support for FW Cmd to request for
Thermal Stats: WMI_REQUEST_THERMAL_STATS_CMDID

Change-Id: I2bc80d082bda45e2255371bcb0c31d35d9806525
CRs-Fixed: 3016845
This commit is contained in:
Utkarsh Bhatnagar
2021-08-14 22:58:03 +05:30
committed by Madan Koyyalamudi
parent bd02b05aa5
commit b7ab2f5cd7
9 changed files with 200 additions and 5 deletions

View File

@@ -2282,11 +2282,14 @@ wmi_extract_chan_stats(wmi_unified_t wmi_handle, void *evt_buf,
QDF_STATUS wmi_extract_thermal_stats(wmi_unified_t wmi_handle, void *evt_buf,
uint32_t *temp,
enum thermal_throttle_level *level,
uint32_t *therm_throt_levels,
struct thermal_throt_level_stats *tt_stats,
uint32_t *pdev_id)
{
if (wmi_handle->ops->extract_thermal_stats)
return wmi_handle->ops->extract_thermal_stats(wmi_handle,
evt_buf, temp, level, pdev_id);
evt_buf, temp, level, therm_throt_levels,
tt_stats, pdev_id);
return QDF_STATUS_E_FAILURE;
}