Lines Matching full:trip
75 * @trip_switch_on: first passive trip point of the thermal zone. The
76 * governor switches on when this trip point is crossed.
77 * If the thermal zone only has one passive trip point,
79 * @trip_max: last passive trip point of the thermal zone. The
143 * @trip_switch_on: trip point for the switch on temperature
164 * passive trip points at the same temperature, that person in estimate_pid_constants()
486 * get_governor_trips() - get the two trip points that are key for this governor
491 * a "switch on" trip point and a "maximum desired temperature". These
492 * are defined as the first and last passive trip points.
494 * If there is only one trip point, then that's considered to be the
495 * "maximum desired temperature" trip point and the governor is always
496 * on. If there are no passive or active trip points, then the
509 const struct thermal_trip *trip = &td->trip; in get_governor_trips() local
511 switch (trip->type) { in get_governor_trips()
514 first_passive = trip; in get_governor_trips()
517 last_passive = trip; in get_governor_trips()
520 last_active = trip; in get_governor_trips()
776 const struct thermal_trip *trip = params->trip_switch_on; in power_allocator_manage() local
780 if (trip && tz->temperature < trip->temperature) { in power_allocator_manage()