Browse Source

qcacld-3.0: Add INI to configure thermal action

There is customer requirement that once wifi chip overheat,
we should switch the tx chain mask to 1X1 to cool down the
chip instead of halting the tx completely.
Add new INI gThermalMgmtAction to configure thermal mgmt action
with default 0. The valid thermal mgmt action INI value is defined
as enum thermal_mgmt_action_code. To set it to 3 -
THERMAL_MGMT_ACTION_CHAINSCALING to meet customer requirement.

Change-Id: I88b1237fae1f476ad9ff0e7b5a469ec314a42bf9
CRs-Fixed: 2765289
Liangwei Dong 4 years ago
parent
commit
662bade898

+ 2 - 0
components/fw_offload/core/inc/wlan_fw_offload_main.h

@@ -112,6 +112,7 @@ struct wlan_fwol_coex_config {
  * @mon_id: Monitor client id either the wpps or apps
  * @priority_apps: Priority of the apps mitigation to consider by fw
  * @priority_wpps: Priority of the wpps mitigation to consider by fw
+ * @thermal_action: thermal action as defined enum thermal_mgmt_action_code
  */
 struct wlan_fwol_thermal_temp {
 	bool     thermal_mitigation_enable;
@@ -123,6 +124,7 @@ struct wlan_fwol_thermal_temp {
 	uint8_t mon_id;
 	uint8_t priority_apps;
 	uint8_t priority_wpps;
+	enum thermal_mgmt_action_code thermal_action;
 };
 
 /**

+ 3 - 0
components/fw_offload/core/src/wlan_fw_offload_main.c

@@ -151,6 +151,9 @@ fwol_init_thermal_temp_in_cfg(struct wlan_objmgr_psoc *psoc,
 				cfg_get(psoc, CFG_THERMAL_APPS_PRIORITY);
 	thermal_temp->priority_wpps =
 				cfg_get(psoc, CFG_THERMAL_WPPS_PRIOITY);
+	thermal_temp->thermal_action =
+				cfg_get(psoc, CFG_THERMAL_MGMT_ACTION);
+
 }
 
 QDF_STATUS fwol_init_neighbor_report_cfg(struct wlan_objmgr_psoc *psoc,

+ 32 - 2
components/fw_offload/dispatcher/inc/cfg_thermal_temp.h

@@ -400,6 +400,36 @@
 				CFG_VALUE_OR_DEFAULT, \
 				"Thermal mitigation priority for WPPS")
 
+/* <ini>
+ * gThermalMgmtAction - Configure the thermal management action
+ *
+ * @Min: 0
+ * @Max: 3
+ * @Default: 0
+ *
+ * This ini will control the thermal throttle action to be performed by target
+ * when the thermal temperature increase/decrease to threshold.
+ * The valid thermal mgmt action INI value is defined as
+ * enum thermal_mgmt_action_code.
+ * 0 - THERMAL_MGMT_ACTION_DEFAULT: target default throttle behaviour
+ * 1 - THERMAL_MGMT_ACTION_HALT_TRAFFIC: Halt tx traffic
+ * 2 - THERMAL_MGMT_ACTION_NOTIFY_HOST: Notify host
+ * 3 - THERMAL_MGMT_ACTION_CHAINSCALING: Tx Chain scaling
+ *
+ * Usage: External
+ *
+ * Supported features: Thermal Mitigation
+ *
+ * </ini>
+ */
+#define CFG_THERMAL_MGMT_ACTION CFG_INI_UINT( \
+				"gThermalMgmtAction", \
+				0, \
+				3, \
+				0, \
+				CFG_VALUE_OR_DEFAULT, \
+				"Thermal management action")
+
 #define CFG_THERMAL_TEMP_ALL \
 	CFG(CFG_THERMAL_TEMP_MIN_LEVEL0) \
 	CFG(CFG_THERMAL_TEMP_MAX_LEVEL0) \
@@ -419,7 +449,7 @@
 	CFG(CFG_THROTTLE_DUTY_CYCLE_LEVEL5) \
 	CFG(CFG_THERMAL_SAMPLING_TIME) \
 	CFG(CFG_THERMAL_APPS_PRIORITY) \
-	CFG(CFG_THERMAL_WPPS_PRIOITY)
-
+	CFG(CFG_THERMAL_WPPS_PRIOITY) \
+	CFG(CFG_THERMAL_MGMT_ACTION)
 #endif
 

+ 1 - 0
core/mac/inc/sir_api.h

@@ -2855,6 +2855,7 @@ typedef struct {
 	uint8_t thermalMgmtEnabled;
 	uint32_t throttlePeriod;
 	uint8_t throttle_duty_cycle_tbl[WLAN_THROTTLE_DUTY_CYCLE_LEVEL_MAX];
+	enum thermal_mgmt_action_code thermal_action;
 } t_thermal_mgmt, *tp_thermal_mgmt;
 
 struct tx_power_limit {

+ 1 - 1
core/sme/src/common/sme_api.c

@@ -9183,7 +9183,7 @@ QDF_STATUS sme_init_thermal_info(mac_handle_t mac_handle)
 				thermal_temp.thermal_temp_min_level[3];
 	pWmaParam->thermalLevels[3].maxTempThreshold =
 				thermal_temp.thermal_temp_max_level[3];
-
+	pWmaParam->thermal_action = thermal_temp.thermal_action;
 	if (QDF_STATUS_SUCCESS == sme_acquire_global_lock(&mac->sme)) {
 		msg.type = WMA_INIT_THERMAL_INFO_CMD;
 		msg.bodyptr = pWmaParam;

+ 2 - 0
core/wma/inc/wma.h

@@ -1146,11 +1146,13 @@ struct wma_set_key_params {
  * @minTemp: minimum temprature
  * @maxTemp: maximum temprature
  * @thermalEnable: thermal enable
+ * @thermal_action: thermal action
  */
 typedef struct {
 	uint16_t minTemp;
 	uint16_t maxTemp;
 	uint8_t thermalEnable;
+	enum thermal_mgmt_action_code thermal_action;
 } t_thermal_cmd_params, *tp_thermal_cmd_params;
 
 /**

+ 13 - 8
core/wma/src/wma_data.c

@@ -1701,7 +1701,7 @@ static QDF_STATUS wma_update_thermal_mitigation_to_fw(tp_wma_handle wma,
  */
 static QDF_STATUS wma_update_thermal_cfg_to_fw(tp_wma_handle wma)
 {
-	t_thermal_cmd_params thermal_params;
+	t_thermal_cmd_params thermal_params = {0};
 
 	/* Get the temperature thresholds to set in firmware */
 	thermal_params.minTemp =
@@ -1712,10 +1712,11 @@ static QDF_STATUS wma_update_thermal_cfg_to_fw(tp_wma_handle wma)
 		maxTempThreshold;
 	thermal_params.thermalEnable =
 		wma->thermal_mgmt_info.thermalMgmtEnabled;
+	thermal_params.thermal_action = wma->thermal_mgmt_info.thermal_action;
 
-	wma_debug("TM sending to fw: min_temp %d max_temp %d enable %d",
-		 thermal_params.minTemp, thermal_params.maxTemp,
-		 thermal_params.thermalEnable);
+	wma_debug("TM sending to fw: min_temp %d max_temp %d enable %d act %d",
+		  thermal_params.minTemp, thermal_params.maxTemp,
+		  thermal_params.thermalEnable, thermal_params.thermal_action);
 
 	return wma_set_thermal_mgmt(wma, thermal_params);
 }
@@ -1744,8 +1745,10 @@ QDF_STATUS wma_process_init_thermal_info(tp_wma_handle wma,
 		return QDF_STATUS_E_FAILURE;
 	}
 
-	wma_debug("TM enable %d period %d", pThermalParams->thermalMgmtEnabled,
-		 pThermalParams->throttlePeriod);
+	wma_debug("TM enable %d period %d action %d",
+		  pThermalParams->thermalMgmtEnabled,
+		  pThermalParams->throttlePeriod,
+		  pThermalParams->thermal_action);
 
 	wma_nofl_debug("Throttle Duty Cycle Level in percentage:\n"
 		 "0 %d\n"
@@ -1776,7 +1779,7 @@ QDF_STATUS wma_process_init_thermal_info(tp_wma_handle wma,
 	wma->thermal_mgmt_info.thermalLevels[3].maxTempThreshold =
 		pThermalParams->thermalLevels[3].maxTempThreshold;
 	wma->thermal_mgmt_info.thermalCurrLevel = WLAN_WMA_THERMAL_LEVEL_0;
-
+	wma->thermal_mgmt_info.thermal_action = pThermalParams->thermal_action;
 	wma_nofl_debug("TM level min max:\n"
 		 "0 %d   %d\n"
 		 "1 %d   %d\n"
@@ -1914,6 +1917,7 @@ QDF_STATUS wma_set_thermal_mgmt(tp_wma_handle wma_handle,
 	mgmt_thermal_info.min_temp = thermal_info.minTemp;
 	mgmt_thermal_info.max_temp = thermal_info.maxTemp;
 	mgmt_thermal_info.thermal_enable = thermal_info.thermalEnable;
+	mgmt_thermal_info.thermal_action = thermal_info.thermal_action;
 
 	return wmi_unified_set_thermal_mgmt_cmd(wma_handle->wmi_handle,
 						&mgmt_thermal_info);
@@ -1970,7 +1974,7 @@ int wma_thermal_mgmt_evt_handler(void *handle, uint8_t *event, uint32_t len)
 	tp_wma_handle wma;
 	wmi_thermal_mgmt_event_fixed_param *tm_event;
 	uint8_t thermal_level;
-	t_thermal_cmd_params thermal_params;
+	t_thermal_cmd_params thermal_params = {0};
 	WMI_THERMAL_MGMT_EVENTID_param_tlvs *param_buf;
 
 	if (!event || !handle) {
@@ -2035,6 +2039,7 @@ int wma_thermal_mgmt_evt_handler(void *handle, uint8_t *event, uint32_t len)
 		maxTempThreshold;
 	thermal_params.thermalEnable =
 		wma->thermal_mgmt_info.thermalMgmtEnabled;
+	thermal_params.thermal_action = wma->thermal_mgmt_info.thermal_action;
 
 	if (QDF_STATUS_SUCCESS != wma_set_thermal_mgmt(wma, thermal_params)) {
 		wma_err("Could not send thermal mgmt command to the firmware!");