Home
last modified time | relevance | path

Searched refs:tjmax (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/drivers/hwmon/
Dcoretemp.c38 module_param_named(tjmax, force_tjmax, int, 0444);
39 MODULE_PARM_DESC(tjmax, "TjMax value in degrees Celsius");
72 int tjmax; member
137 return sprintf(buf, "%d\n", pdata->core_data[attr->index]->tjmax); in show_tjmax()
168 tdata->temp = tdata->tjmax - ((eax >> 16) & 0x7f) * 1000; in show_temp()
179 int tjmax; member
189 struct tjmax { struct
191 int tjmax; argument
194 static const struct tjmax tjmax_table[] = {
202 int tjmax; member
[all …]
/linux-6.1.9/drivers/hwmon/peci/
Dcputemp.c44 s32 tjmax; member
100 priv->temp.target.tjmax = in update_temp_target()
105 priv->temp.target.tcontrol = priv->temp.target.tjmax - tcontrol_margin; in update_temp_target()
108 priv->temp.target.tthrottle = priv->temp.target.tjmax - tthrottle_offset; in update_temp_target()
133 *val = priv->temp.target.tjmax; in get_temp_target()
136 *val = priv->temp.target.tjmax - priv->temp.target.tcontrol; in get_temp_target()
181 long tjmax; in get_die_temp() local
197 ret = get_temp_target(priv, tjmax_type, &tjmax); in get_die_temp()
201 priv->temp.die.value = (s32)tjmax + dts_ten_dot_six_to_millidegree(temp); in get_die_temp()
254 long tjmax; in get_core_temp() local
[all …]
/linux-6.1.9/drivers/thermal/intel/int340x_thermal/
Dprocessor_thermal_device_pci.c157 int tjmax; in sys_get_trip_temp() local
159 proc_thermal_mmio_read(pci_info, PROC_THERMAL_MMIO_TJMAX, &tjmax); in sys_get_trip_temp()
160 _temp = tjmax - _temp; in sys_get_trip_temp()
178 int tjmax, _temp; in sys_set_trip_temp() local
189 proc_thermal_mmio_read(pci_info, PROC_THERMAL_MMIO_TJMAX, &tjmax); in sys_set_trip_temp()
190 _temp = tjmax - (temp / 1000); in sys_set_trip_temp()
/linux-6.1.9/Documentation/hwmon/
Dcoretemp.rst62 as a module parameter (tjmax).