Symbol: tjmax
drivers/hwmon/coretemp.c
103
int tjmax;
drivers/hwmon/coretemp.c
115
int tjmax;
drivers/hwmon/coretemp.c
118
static const struct tjmax tjmax_table[] = {
drivers/hwmon/coretemp.c
126
int tjmax;
drivers/hwmon/coretemp.c
167
int tjmax = 100000;
drivers/hwmon/coretemp.c
185
return tjmax_pci_table[i].tjmax;
drivers/hwmon/coretemp.c
198
return tjmax_table[i].tjmax;
drivers/hwmon/coretemp.c
207
return tm->tjmax;
drivers/hwmon/coretemp.c
251
tjmax = 105000;
drivers/hwmon/coretemp.c
262
tjmax = tjmax_ee;
drivers/hwmon/coretemp.c
264
} else if (tjmax == 100000) {
drivers/hwmon/coretemp.c
272
return tjmax;
drivers/hwmon/coretemp.c
283
if (tdata->tjmax)
drivers/hwmon/coretemp.c
284
return tdata->tjmax;
drivers/hwmon/coretemp.c
302
tdata->tjmax = force_tjmax * 1000;
drivers/hwmon/coretemp.c
308
tdata->tjmax = adjust_tjmax(c, tdata->cpu, dev);
drivers/hwmon/coretemp.c
310
return tdata->tjmax;
drivers/hwmon/coretemp.c
316
int tjmax, ttarget_offset, ret;
drivers/hwmon/coretemp.c
322
if (tdata->tjmax)
drivers/hwmon/coretemp.c
329
tjmax = (val >> 16) & 0xff;
drivers/hwmon/coretemp.c
334
return (tjmax - ttarget_offset) * 1000;
drivers/hwmon/coretemp.c
372
int tjmax;
drivers/hwmon/coretemp.c
375
tjmax = get_tjmax(tdata, dev);
drivers/hwmon/coretemp.c
378
return sprintf(buf, "%d\n", tjmax);
drivers/hwmon/coretemp.c
39
module_param_named(tjmax, force_tjmax, int, 0444);
drivers/hwmon/coretemp.c
40
MODULE_PARM_DESC(tjmax, "TjMax value in degrees Celsius");
drivers/hwmon/coretemp.c
401
int tjmax;
drivers/hwmon/coretemp.c
405
tjmax = get_tjmax(tdata, dev);
drivers/hwmon/coretemp.c
415
tdata->temp = tjmax - ((val.l >> 16) & 0xff) * 1000;
drivers/hwmon/coretemp.c
75
int tjmax;
drivers/hwmon/peci/cputemp.c
100
priv->temp.target.tjmax =
drivers/hwmon/peci/cputemp.c
105
priv->temp.target.tcontrol = priv->temp.target.tjmax - tcontrol_margin;
drivers/hwmon/peci/cputemp.c
108
priv->temp.target.tthrottle = priv->temp.target.tjmax - tthrottle_offset;
drivers/hwmon/peci/cputemp.c
131
*val = priv->temp.target.tjmax;
drivers/hwmon/peci/cputemp.c
175
long tjmax;
drivers/hwmon/peci/cputemp.c
189
ret = get_temp_target(priv, tjmax_type, &tjmax);
drivers/hwmon/peci/cputemp.c
193
priv->temp.die.value = (s32)tjmax + dts_ten_dot_six_to_millidegree(temp);
drivers/hwmon/peci/cputemp.c
238
long tjmax;
drivers/hwmon/peci/cputemp.c
253
ret = get_temp_target(priv, tjmax_type, &tjmax);
drivers/hwmon/peci/cputemp.c
259
(s32)tjmax + dts_ten_dot_six_to_millidegree(core_dts_margin);
drivers/hwmon/peci/cputemp.c
44
s32 tjmax;
drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci.c
232
int tjmax, _temp;
drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci.c
242
proc_thermal_mmio_read(pci_info, PROC_THERMAL_MMIO_TJMAX, &tjmax);
drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci.c
243
_temp = tjmax - (temp / 1000);
drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci.c
257
int temp, tjmax;
drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci.c
263
proc_thermal_mmio_read(pci_info, PROC_THERMAL_MMIO_TJMAX, &tjmax);
drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci.c
264
temp = (tjmax - temp) * 1000;
drivers/thermal/intel/intel_tcc.c
284
int tjmax, err;
drivers/thermal/intel/intel_tcc.c
286
tjmax = intel_tcc_get_tjmax(cpu);
drivers/thermal/intel/intel_tcc.c
287
if (tjmax < 0)
drivers/thermal/intel/intel_tcc.c
288
return tjmax;
drivers/thermal/intel/intel_tcc.c
303
*temp = tjmax - ((val.l >> 16) & mask);