Lines Matching full:trip

74  * @trip_switch_on:	first passive trip point of the thermal zone.  The
75 * governor switches on when this trip point is crossed.
76 * If the thermal zone only has one passive trip point,
78 * @trip_max: last passive trip point of the thermal zone. The
101 return (instance->trip == params->trip_max && in power_actor_is_valid()
142 * @trip_switch_on: trip point for the switch on temperature
163 * passive trip points at the same temperature, that person in estimate_pid_constants()
479 * get_governor_trips() - get the two trip points that are key for this governor
484 * a "switch on" trip point and a "maximum desired temperature". These
485 * are defined as the first and last passive trip points.
487 * If there is only one trip point, then that's considered to be the
488 * "maximum desired temperature" trip point and the governor is always
489 * on. If there are no passive or active trip points, then the
499 const struct thermal_trip *trip; in get_governor_trips() local
501 for_each_trip(tz, trip) { in get_governor_trips()
502 switch (trip->type) { in get_governor_trips()
505 first_passive = trip; in get_governor_trips()
508 last_passive = trip; in get_governor_trips()
511 last_active = trip; in get_governor_trips()
586 if (instance->trip != params->trip_max) in check_power_actors()
749 const struct thermal_trip *trip) in power_allocator_throttle() argument
757 * We get called for every trip point but we only need to do in power_allocator_throttle()
760 if (trip != params->trip_max) in power_allocator_throttle()
763 trip = params->trip_switch_on; in power_allocator_throttle()
764 if (trip && tz->temperature < trip->temperature) { in power_allocator_throttle()