Home
last modified time | relevance | path

Searched refs:k_i (Results 1 – 5 of 5) sorted by relevance

/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
43 | | k_i | | get_requested_power()
160 k_i and integral_cutoff
163 `k_i` configures the PID loop's integral term constant. This term
168 integral term. This term is then multiplied by `k_i` and the result
169 added to the output of the controller. Typically `k_i` is set low (1
Dsysfs-api.rst393 |---k_i: PID's integral term in the power allocator gov
579 k_i
/kernel/linux/linux-5.10/drivers/thermal/
Dgov_power_allocator.c159 if (!tz->tzp->k_i || force) in estimate_pid_constants()
160 tz->tzp->k_i = int_to_frac(10) / 1000; in estimate_pid_constants()
217 i = mul_frac(tz->tzp->k_i, params->err_integral); in pid_controller()
220 s64 i_next = i + mul_frac(tz->tzp->k_i, err); in pid_controller()
Dthermal_sysfs.c386 create_s32_tzp_attr(k_i);
/kernel/linux/linux-5.10/include/linux/
Dthermal.h272 s32 k_i; member