Searched refs:trip_temp (Results 1 – 6 of 6) sorted by relevance
/linux-4.4.14/drivers/thermal/ |
D | intel_pch_thermal.c | 72 u16 trip_temp; in pch_wpt_init() local 98 trip_temp = readw(ptd->hw_base + WPT_CTT); in pch_wpt_init() 99 trip_temp &= 0x1FF; in pch_wpt_init() 100 if (trip_temp) { in pch_wpt_init() 102 ptd->crt_temp = trip_temp * 1000 / 2 - 50000; in pch_wpt_init() 108 trip_temp = readw(ptd->hw_base + WPT_PHL); in pch_wpt_init() 109 trip_temp &= 0x1FF; in pch_wpt_init() 110 if (trip_temp) { in pch_wpt_init() 112 ptd->hot_temp = trip_temp * 1000 / 2 - 50000; in pch_wpt_init()
|
D | gov_bang_bang.c | 28 int trip_temp, trip_hyst; in thermal_zone_trip_update() local 31 tz->ops->get_trip_temp(tz, trip, &trip_temp); in thermal_zone_trip_update() 35 trip, trip_temp, tz->temperature, in thermal_zone_trip_update() 59 if (instance->target == 0 && tz->temperature >= trip_temp) in thermal_zone_trip_update() 62 tz->temperature < trip_temp - trip_hyst) in thermal_zone_trip_update()
|
D | step_wise.c | 129 int trip_temp; in thermal_zone_trip_update() local 137 trip_temp = tz->forced_passive; in thermal_zone_trip_update() 140 tz->ops->get_trip_temp(tz, trip, &trip_temp); in thermal_zone_trip_update() 146 if (tz->temperature >= trip_temp) { in thermal_zone_trip_update() 152 trip, trip_type, trip_temp, trend, throttle); in thermal_zone_trip_update()
|
D | fair_share.c | 37 int trip_temp; in get_trip_level() local 44 tz->ops->get_trip_temp(tz, count, &trip_temp); in get_trip_level() 45 if (tz->temperature < trip_temp) in get_trip_level()
|
D | thermal_core.c | 432 int trip_temp; in handle_critical_trips() local 434 tz->ops->get_trip_temp(tz, trip, &trip_temp); in handle_critical_trips() 437 if (trip_temp <= 0 || tz->temperature < trip_temp) in handle_critical_trips() 1803 int trip_temp; in thermal_zone_device_register() local 1879 if (tz->ops->get_trip_temp(tz, count, &trip_temp)) in thermal_zone_device_register() 1882 if (trip_temp == 0) in thermal_zone_device_register()
|
/linux-4.4.14/drivers/acpi/ |
D | thermal.c | 712 int trip_temp; in thermal_get_trend() local 715 if (thermal_get_trip_temp(thermal, trip, &trip_temp)) in thermal_get_trend() 718 if (temp > trip_temp) { in thermal_get_trend()
|