Home
last modified time | relevance | path

Searched refs:therm_cfg_params (Results 1 – 4 of 4) sorted by relevance

/wlan-driver/qcacld-3.0/core/hdd/src/
H A Dwlan_hdd_thermal.c94 struct thermal_mitigation_params therm_cfg_params = {0}; in hdd_send_thermal_mitigation_val() local
128 therm_cfg_params.enable = enable; in hdd_send_thermal_mitigation_val()
129 therm_cfg_params.dc = dc; in hdd_send_thermal_mitigation_val()
130 therm_cfg_params.levelconf[0].dcoffpercent = dc_off_percent; in hdd_send_thermal_mitigation_val()
131 therm_cfg_params.levelconf[0].priority = prio; in hdd_send_thermal_mitigation_val()
132 therm_cfg_params.levelconf[0].tmplwm = target_temp; in hdd_send_thermal_mitigation_val()
133 therm_cfg_params.num_thermal_conf = 1; in hdd_send_thermal_mitigation_val()
134 therm_cfg_params.pdev_id = 0; in hdd_send_thermal_mitigation_val()
139 &therm_cfg_params); in hdd_send_thermal_mitigation_val()
144 &therm_cfg_params); in hdd_send_thermal_mitigation_val()
[all …]
H A Dwlan_hdd_sysfs_thermal_cfg.c66 struct thermal_mitigation_params therm_cfg_params; in __hdd_sysfs_thermal_cfg_store() local
145 therm_cfg_params.enable = val1; in __hdd_sysfs_thermal_cfg_store()
146 therm_cfg_params.dc = val2; in __hdd_sysfs_thermal_cfg_store()
147 therm_cfg_params.levelconf[0].dcoffpercent = val3; in __hdd_sysfs_thermal_cfg_store()
148 therm_cfg_params.levelconf[0].priority = val4; in __hdd_sysfs_thermal_cfg_store()
149 therm_cfg_params.levelconf[0].tmplwm = val7; in __hdd_sysfs_thermal_cfg_store()
153 &therm_cfg_params); in __hdd_sysfs_thermal_cfg_store()
156 &therm_cfg_params); in __hdd_sysfs_thermal_cfg_store()
H A Dwlan_hdd_wext.c6993 struct thermal_mitigation_params therm_cfg_params; in __iw_set_var_ints_getnone() local
7014 therm_cfg_params.enable = apps_args[0]; in __iw_set_var_ints_getnone()
7015 therm_cfg_params.dc = apps_args[1]; in __iw_set_var_ints_getnone()
7016 therm_cfg_params.levelconf[0].dcoffpercent = apps_args[2]; in __iw_set_var_ints_getnone()
7017 therm_cfg_params.levelconf[0].priority = apps_args[3]; in __iw_set_var_ints_getnone()
7018 therm_cfg_params.levelconf[0].tmplwm = apps_args[6]; in __iw_set_var_ints_getnone()
7023 &therm_cfg_params); in __iw_set_var_ints_getnone()
7024 therm_cfg_params.num_thermal_conf = 1; in __iw_set_var_ints_getnone()
7026 &therm_cfg_params); in __iw_set_var_ints_getnone()
/wlan-driver/qcacld-3.0/core/sme/src/common/
H A Dsme_api.c16224 struct thermal_mitigation_params *therm_cfg_params; in sme_set_thermal_throttle_cfg() local
16226 therm_cfg_params = qdf_mem_malloc(sizeof(*therm_cfg_params)); in sme_set_thermal_throttle_cfg()
16227 if (!therm_cfg_params) in sme_set_thermal_throttle_cfg()
16230 qdf_mem_set(therm_cfg_params, sizeof(*therm_cfg_params), 0); in sme_set_thermal_throttle_cfg()
16231 qdf_mem_copy(therm_cfg_params, therm_params, sizeof(*therm_cfg_params)); in sme_set_thermal_throttle_cfg()
16236 msg.bodyptr = therm_cfg_params; in sme_set_thermal_throttle_cfg()
16245 qdf_mem_free(therm_cfg_params); in sme_set_thermal_throttle_cfg()