Home
last modified time | relevance | path

Searched refs:trip_temp (Results 1 – 11 of 11) sorted by relevance

/drivers/thermal/intel/
Dintel_pch_thermal.c93 unsigned long trip_temp; in pch_wpt_add_acpi_psv_trip() local
95 trip_temp = DECI_KELVIN_TO_MILLICELSIUS(r); in pch_wpt_add_acpi_psv_trip()
96 if (trip_temp) { in pch_wpt_add_acpi_psv_trip()
97 ptd->psv_temp = trip_temp; in pch_wpt_add_acpi_psv_trip()
116 u16 trip_temp; in pch_wpt_init() local
144 trip_temp = readw(ptd->hw_base + WPT_CTT); in pch_wpt_init()
145 trip_temp &= 0x1FF; in pch_wpt_init()
146 if (trip_temp) { in pch_wpt_init()
148 ptd->crt_temp = trip_temp * 1000 / 2 - 50000; in pch_wpt_init()
154 trip_temp = readw(ptd->hw_base + WPT_PHL); in pch_wpt_init()
[all …]
/drivers/thermal/
Dgov_bang_bang.c18 int trip_temp, trip_hyst; in thermal_zone_trip_update() local
21 tz->ops->get_trip_temp(tz, trip, &trip_temp); in thermal_zone_trip_update()
31 trip, trip_temp, tz->temperature, in thermal_zone_trip_update()
55 if (instance->target == 0 && tz->temperature >= trip_temp) in thermal_zone_trip_update()
58 tz->temperature <= trip_temp - trip_hyst) in thermal_zone_trip_update()
Dthermal_helpers.c120 int trip_temp, hysteresis; in thermal_zone_set_trips() local
131 tz->ops->get_trip_temp(tz, i, &trip_temp); in thermal_zone_set_trips()
134 trip_low = trip_temp - hysteresis; in thermal_zone_set_trips()
139 if (trip_temp > tz->temperature && trip_temp < high) in thermal_zone_set_trips()
140 high = trip_temp; in thermal_zone_set_trips()
Dstep_wise.c118 int trip_temp; in thermal_zone_trip_update() local
126 trip_temp = tz->forced_passive; in thermal_zone_trip_update()
129 tz->ops->get_trip_temp(tz, trip, &trip_temp); in thermal_zone_trip_update()
135 if (tz->temperature >= trip_temp) { in thermal_zone_trip_update()
141 trip, trip_type, trip_temp, trend, throttle); in thermal_zone_trip_update()
Dfair_share.c25 int trip_temp; in get_trip_level() local
32 tz->ops->get_trip_temp(tz, count, &trip_temp); in get_trip_level()
33 if (tz->temperature < trip_temp) in get_trip_level()
Dthermal_core.c381 int trip_temp; in handle_critical_trips() local
383 tz->ops->get_trip_temp(tz, trip, &trip_temp); in handle_critical_trips()
386 if (trip_temp <= 0 || tz->temperature < trip_temp) in handle_critical_trips()
1242 int trip_temp; in thermal_zone_device_register() local
1312 if (tz->ops->get_trip_temp(tz, count, &trip_temp)) in thermal_zone_device_register()
1315 if (trip_temp == 0) in thermal_zone_device_register()
/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_thermal.c37 if (!adap->ch_thermal.trip_temp) in cxgb4_thermal_get_trip_type()
49 if (!adap->ch_thermal.trip_temp) in cxgb4_thermal_get_trip_temp()
52 *temp = adap->ch_thermal.trip_temp; in cxgb4_thermal_get_trip_temp()
81 ch_thermal->trip_temp = val * 1000; in cxgb4_thermal_init()
Dcxgb4.h912 int trip_temp; member
/drivers/thermal/broadcom/
Dbcm2835_thermal.c228 int trip_temp, offset, slope; in bcm2835_thermal_probe() local
236 err = tz->ops->get_trip_temp(tz, 0, &trip_temp); in bcm2835_thermal_probe()
253 val |= bcm2835_thermal_temp2adc(trip_temp, in bcm2835_thermal_probe()
/drivers/thermal/tegra/
Dsoctherm.c446 static int enforce_temp_range(struct device *dev, int trip_temp) in enforce_temp_range() argument
450 temp = clamp_val(trip_temp, min_low_temp, max_high_temp); in enforce_temp_range()
451 if (temp != trip_temp) in enforce_temp_range()
453 trip_temp, temp); in enforce_temp_range()
475 int trip_temp) in thermtrip_program() argument
484 temp = enforce_temp_range(dev, trip_temp) / ts->soc->thresh_grain; in thermtrip_program()
515 int trip_temp) in throttrip_program() argument
525 temp = enforce_temp_range(dev, trip_temp) / ts->soc->thresh_grain; in throttrip_program()
640 int trip_temp, temp, last_temp, ret; in tegra_thermctl_get_trend() local
645 ret = tz->ops->get_trip_temp(zone->tz, trip, &trip_temp); in tegra_thermctl_get_trend()
[all …]
/drivers/acpi/
Dthermal.c694 int trip_temp; in thermal_get_trend() local
697 if (thermal_get_trip_temp(thermal, trip, &trip_temp)) in thermal_get_trend()
700 if (temp > trip_temp) { in thermal_get_trend()