Home
last modified time | relevance | path

Searched refs:sustainable_power (Results 1 – 6 of 6) sorted by relevance

/kernel/linux/linux-5.10/drivers/thermal/
Dgov_power_allocator.c88 u32 sustainable_power = 0; in estimate_sustainable_power() local
102 sustainable_power += min_power; in estimate_sustainable_power()
105 return sustainable_power; in estimate_sustainable_power()
128 u32 sustainable_power, int trip_switch_on, in estimate_pid_constants() argument
152 tz->tzp->k_po = int_to_frac(sustainable_power) / in estimate_pid_constants()
156 tz->tzp->k_pu = int_to_frac(2 * sustainable_power) / in estimate_pid_constants()
191 u32 sustainable_power; in pid_controller() local
196 if (tz->tzp->sustainable_power) { in pid_controller()
197 sustainable_power = tz->tzp->sustainable_power; in pid_controller()
199 sustainable_power = estimate_sustainable_power(tz); in pid_controller()
[all …]
Dthermal_sysfs.c329 return sprintf(buf, "%u\n", tz->tzp->sustainable_power); in sustainable_power_show()
339 u32 sustainable_power; in sustainable_power_store() local
344 if (kstrtou32(buf, 10, &sustainable_power)) in sustainable_power_store()
347 tz->tzp->sustainable_power = sustainable_power; in sustainable_power_store()
402 static DEVICE_ATTR_RW(sustainable_power);
Dthermal_of.c1085 tzp->sustainable_power = prop; in of_parse_thermal_zones()
/kernel/linux/linux-5.10/Documentation/driver-api/thermal/
Dpower_allocator.rst26 P_max = k_p * e + k_i * err_integral + k_d * diff_err + sustainable_power
70 to the speed-grade of the silicon. `sustainable_power` is therefore
87 `thermal_zone_params` that has a `sustainable_power`. If no
92 .sustainable_power = 3500,
118 2 * sustainable_power / (desired_temperature - switch_on_temp)
121 proportional term will be 2 * `sustainable_power`. The default value
124 sustainable_power / (desired_temperature - switch_on_temp)
129 P_max = k_p * e + sustainable_power
134 `P_max` = `sustainable_power`. That is, the system should operate in
135 thermal equilibrium under constant load. `sustainable_power` is only
[all …]
Dsysfs-api.rst390 |---sustainable_power: Sustainable dissipatable power
552 sustainable_power
/kernel/linux/linux-5.10/include/linux/
Dthermal.h257 u32 sustainable_power; member