2 * processor_thermal_device.c
3 * Copyright (c) 2014, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/pci.h>
19 #include <linux/interrupt.h>
20 #include <linux/platform_device.h>
21 #include <linux/acpi.h>
22 #include <linux/thermal.h>
23 #include "int340x_thermal_zone.h"
24 #include "../intel_soc_dts_iosf.h"
26 /* Broadwell-U/HSB thermal reporting device */
27 #define PCI_DEVICE_ID_PROC_BDW_THERMAL 0x1603
28 #define PCI_DEVICE_ID_PROC_HSB_THERMAL 0x0A03
30 /* Skylake thermal reporting device */
31 #define PCI_DEVICE_ID_PROC_SKL_THERMAL 0x1903
33 /* CannonLake thermal reporting device */
34 #define PCI_DEVICE_ID_PROC_CNL_THERMAL 0x5a03
35 #define PCI_DEVICE_ID_PROC_CFL_THERMAL 0x3E83
37 /* Braswell thermal reporting device */
38 #define PCI_DEVICE_ID_PROC_BSW_THERMAL 0x22DC
40 /* Broxton thermal reporting device */
41 #define PCI_DEVICE_ID_PROC_BXT0_THERMAL 0x0A8C
42 #define PCI_DEVICE_ID_PROC_BXT1_THERMAL 0x1A8C
43 #define PCI_DEVICE_ID_PROC_BXTX_THERMAL 0x4A8C
44 #define PCI_DEVICE_ID_PROC_BXTP_THERMAL 0x5A8C
55 struct proc_thermal_device
{
57 struct acpi_device
*adev
;
58 struct power_config power_limits
[2];
59 struct int34x_thermal_zone
*int340x_zone
;
60 struct intel_soc_dts_sensors
*soc_dts
;
63 enum proc_thermal_emum_mode_type
{
66 PROC_THERMAL_PLATFORM_DEV
70 * We can have only one type of enumeration, PCI or Platform,
71 * not both. So we don't need instance specific data.
73 static enum proc_thermal_emum_mode_type proc_thermal_emum_mode
=
76 #define POWER_LIMIT_SHOW(index, suffix) \
77 static ssize_t power_limit_##index##_##suffix##_show(struct device *dev, \
78 struct device_attribute *attr, \
81 struct pci_dev *pci_dev; \
82 struct platform_device *pdev; \
83 struct proc_thermal_device *proc_dev; \
85 if (proc_thermal_emum_mode == PROC_THERMAL_PLATFORM_DEV) { \
86 pdev = to_platform_device(dev); \
87 proc_dev = platform_get_drvdata(pdev); \
89 pci_dev = to_pci_dev(dev); \
90 proc_dev = pci_get_drvdata(pci_dev); \
92 return sprintf(buf, "%lu\n",\
93 (unsigned long)proc_dev->power_limits[index].suffix * 1000); \
96 POWER_LIMIT_SHOW(0, min_uw
)
97 POWER_LIMIT_SHOW(0, max_uw
)
98 POWER_LIMIT_SHOW(0, step_uw
)
99 POWER_LIMIT_SHOW(0, tmin_us
)
100 POWER_LIMIT_SHOW(0, tmax_us
)
102 POWER_LIMIT_SHOW(1, min_uw
)
103 POWER_LIMIT_SHOW(1, max_uw
)
104 POWER_LIMIT_SHOW(1, step_uw
)
105 POWER_LIMIT_SHOW(1, tmin_us
)
106 POWER_LIMIT_SHOW(1, tmax_us
)
108 static DEVICE_ATTR_RO(power_limit_0_min_uw
);
109 static DEVICE_ATTR_RO(power_limit_0_max_uw
);
110 static DEVICE_ATTR_RO(power_limit_0_step_uw
);
111 static DEVICE_ATTR_RO(power_limit_0_tmin_us
);
112 static DEVICE_ATTR_RO(power_limit_0_tmax_us
);
114 static DEVICE_ATTR_RO(power_limit_1_min_uw
);
115 static DEVICE_ATTR_RO(power_limit_1_max_uw
);
116 static DEVICE_ATTR_RO(power_limit_1_step_uw
);
117 static DEVICE_ATTR_RO(power_limit_1_tmin_us
);
118 static DEVICE_ATTR_RO(power_limit_1_tmax_us
);
120 static struct attribute
*power_limit_attrs
[] = {
121 &dev_attr_power_limit_0_min_uw
.attr
,
122 &dev_attr_power_limit_1_min_uw
.attr
,
123 &dev_attr_power_limit_0_max_uw
.attr
,
124 &dev_attr_power_limit_1_max_uw
.attr
,
125 &dev_attr_power_limit_0_step_uw
.attr
,
126 &dev_attr_power_limit_1_step_uw
.attr
,
127 &dev_attr_power_limit_0_tmin_us
.attr
,
128 &dev_attr_power_limit_1_tmin_us
.attr
,
129 &dev_attr_power_limit_0_tmax_us
.attr
,
130 &dev_attr_power_limit_1_tmax_us
.attr
,
134 static const struct attribute_group power_limit_attribute_group
= {
135 .attrs
= power_limit_attrs
,
136 .name
= "power_limits"
139 static int stored_tjmax
; /* since it is fixed, we can have local storage */
141 static int get_tjmax(void)
147 err
= rdmsr_safe(MSR_IA32_TEMPERATURE_TARGET
, &eax
, &edx
);
151 val
= (eax
>> 16) & 0xff;
158 static int read_temp_msr(int *temp
)
163 unsigned long curr_temp_off
= 0;
167 for_each_online_cpu(cpu
) {
168 err
= rdmsr_safe_on_cpu(cpu
, MSR_IA32_THERM_STATUS
, &eax
,
173 if (eax
& 0x80000000) {
174 curr_temp_off
= (eax
>> 16) & 0x7f;
175 if (!*temp
|| curr_temp_off
< *temp
)
176 *temp
= curr_temp_off
;
189 static int proc_thermal_get_zone_temp(struct thermal_zone_device
*zone
,
194 ret
= read_temp_msr(temp
);
196 *temp
= (stored_tjmax
- *temp
) * 1000;
201 static struct thermal_zone_device_ops proc_thermal_local_ops
= {
202 .get_temp
= proc_thermal_get_zone_temp
,
205 static int proc_thermal_read_ppcc(struct proc_thermal_device
*proc_priv
)
209 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
, NULL
};
210 union acpi_object
*elements
, *ppcc
;
211 union acpi_object
*p
;
214 status
= acpi_evaluate_object(proc_priv
->adev
->handle
, "PPCC",
216 if (ACPI_FAILURE(status
))
220 if (!p
|| (p
->type
!= ACPI_TYPE_PACKAGE
)) {
221 dev_err(proc_priv
->dev
, "Invalid PPCC data\n");
226 if (!p
->package
.count
) {
227 dev_err(proc_priv
->dev
, "Invalid PPCC package size\n");
232 for (i
= 0; i
< min((int)p
->package
.count
- 1, 2); ++i
) {
233 elements
= &(p
->package
.elements
[i
+1]);
234 if (elements
->type
!= ACPI_TYPE_PACKAGE
||
235 elements
->package
.count
!= 6) {
239 ppcc
= elements
->package
.elements
;
240 proc_priv
->power_limits
[i
].index
= ppcc
[0].integer
.value
;
241 proc_priv
->power_limits
[i
].min_uw
= ppcc
[1].integer
.value
;
242 proc_priv
->power_limits
[i
].max_uw
= ppcc
[2].integer
.value
;
243 proc_priv
->power_limits
[i
].tmin_us
= ppcc
[3].integer
.value
;
244 proc_priv
->power_limits
[i
].tmax_us
= ppcc
[4].integer
.value
;
245 proc_priv
->power_limits
[i
].step_uw
= ppcc
[5].integer
.value
;
254 #define PROC_POWER_CAPABILITY_CHANGED 0x83
255 static void proc_thermal_notify(acpi_handle handle
, u32 event
, void *data
)
257 struct proc_thermal_device
*proc_priv
= data
;
263 case PROC_POWER_CAPABILITY_CHANGED
:
264 proc_thermal_read_ppcc(proc_priv
);
265 int340x_thermal_zone_device_update(proc_priv
->int340x_zone
,
266 THERMAL_DEVICE_POWER_CAPABILITY_CHANGED
);
269 dev_err(proc_priv
->dev
, "Unsupported event [0x%x]\n", event
);
275 static int proc_thermal_add(struct device
*dev
,
276 struct proc_thermal_device
**priv
)
278 struct proc_thermal_device
*proc_priv
;
279 struct acpi_device
*adev
;
281 unsigned long long tmp
;
282 struct thermal_zone_device_ops
*ops
= NULL
;
285 adev
= ACPI_COMPANION(dev
);
289 proc_priv
= devm_kzalloc(dev
, sizeof(*proc_priv
), GFP_KERNEL
);
293 proc_priv
->dev
= dev
;
294 proc_priv
->adev
= adev
;
297 ret
= proc_thermal_read_ppcc(proc_priv
);
299 ret
= sysfs_create_group(&dev
->kobj
,
300 &power_limit_attribute_group
);
306 status
= acpi_evaluate_integer(adev
->handle
, "_TMP", NULL
, &tmp
);
307 if (ACPI_FAILURE(status
)) {
308 /* there is no _TMP method, add local method */
309 stored_tjmax
= get_tjmax();
310 if (stored_tjmax
> 0)
311 ops
= &proc_thermal_local_ops
;
314 proc_priv
->int340x_zone
= int340x_thermal_zone_add(adev
, ops
);
315 if (IS_ERR(proc_priv
->int340x_zone
)) {
316 ret
= PTR_ERR(proc_priv
->int340x_zone
);
321 ret
= acpi_install_notify_handler(adev
->handle
, ACPI_DEVICE_NOTIFY
,
330 int340x_thermal_zone_remove(proc_priv
->int340x_zone
);
332 sysfs_remove_group(&proc_priv
->dev
->kobj
,
333 &power_limit_attribute_group
);
338 static void proc_thermal_remove(struct proc_thermal_device
*proc_priv
)
340 acpi_remove_notify_handler(proc_priv
->adev
->handle
,
341 ACPI_DEVICE_NOTIFY
, proc_thermal_notify
);
342 int340x_thermal_zone_remove(proc_priv
->int340x_zone
);
343 sysfs_remove_group(&proc_priv
->dev
->kobj
,
344 &power_limit_attribute_group
);
347 static int int3401_add(struct platform_device
*pdev
)
349 struct proc_thermal_device
*proc_priv
;
352 if (proc_thermal_emum_mode
== PROC_THERMAL_PCI
) {
353 dev_err(&pdev
->dev
, "error: enumerated as PCI dev\n");
357 ret
= proc_thermal_add(&pdev
->dev
, &proc_priv
);
361 platform_set_drvdata(pdev
, proc_priv
);
362 proc_thermal_emum_mode
= PROC_THERMAL_PLATFORM_DEV
;
367 static int int3401_remove(struct platform_device
*pdev
)
369 proc_thermal_remove(platform_get_drvdata(pdev
));
374 static irqreturn_t
proc_thermal_pci_msi_irq(int irq
, void *devid
)
376 struct proc_thermal_device
*proc_priv
;
377 struct pci_dev
*pdev
= devid
;
379 proc_priv
= pci_get_drvdata(pdev
);
381 intel_soc_dts_iosf_interrupt_handler(proc_priv
->soc_dts
);
386 static int proc_thermal_pci_probe(struct pci_dev
*pdev
,
387 const struct pci_device_id
*unused
)
389 struct proc_thermal_device
*proc_priv
;
392 if (proc_thermal_emum_mode
== PROC_THERMAL_PLATFORM_DEV
) {
393 dev_err(&pdev
->dev
, "error: enumerated as platform dev\n");
397 ret
= pci_enable_device(pdev
);
399 dev_err(&pdev
->dev
, "error: could not enable device\n");
403 ret
= proc_thermal_add(&pdev
->dev
, &proc_priv
);
405 pci_disable_device(pdev
);
409 pci_set_drvdata(pdev
, proc_priv
);
410 proc_thermal_emum_mode
= PROC_THERMAL_PCI
;
412 if (pdev
->device
== PCI_DEVICE_ID_PROC_BSW_THERMAL
) {
414 * Enumerate additional DTS sensors available via IOSF.
415 * But we are not treating as a failure condition, if
416 * there are no aux DTSs enabled or fails. This driver
417 * already exposes sensors, which can be accessed via
418 * ACPI/MSR. So we don't want to fail for auxiliary DTSs.
420 proc_priv
->soc_dts
= intel_soc_dts_iosf_init(
421 INTEL_SOC_DTS_INTERRUPT_MSI
, 2, 0);
423 if (proc_priv
->soc_dts
&& pdev
->irq
) {
424 ret
= pci_enable_msi(pdev
);
426 ret
= request_threaded_irq(pdev
->irq
, NULL
,
427 proc_thermal_pci_msi_irq
,
428 IRQF_ONESHOT
, "proc_thermal",
431 intel_soc_dts_iosf_exit(
433 pci_disable_msi(pdev
);
434 proc_priv
->soc_dts
= NULL
;
438 dev_err(&pdev
->dev
, "No auxiliary DTSs enabled\n");
444 static void proc_thermal_pci_remove(struct pci_dev
*pdev
)
446 struct proc_thermal_device
*proc_priv
= pci_get_drvdata(pdev
);
448 if (proc_priv
->soc_dts
) {
449 intel_soc_dts_iosf_exit(proc_priv
->soc_dts
);
451 free_irq(pdev
->irq
, pdev
);
452 pci_disable_msi(pdev
);
455 proc_thermal_remove(proc_priv
);
456 pci_disable_device(pdev
);
459 static const struct pci_device_id proc_thermal_pci_ids
[] = {
460 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_BDW_THERMAL
)},
461 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_HSB_THERMAL
)},
462 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_SKL_THERMAL
)},
463 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_BSW_THERMAL
)},
464 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_BXT0_THERMAL
)},
465 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_BXT1_THERMAL
)},
466 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_BXTX_THERMAL
)},
467 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_BXTP_THERMAL
)},
468 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_CNL_THERMAL
)},
469 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_PROC_CFL_THERMAL
)},
473 MODULE_DEVICE_TABLE(pci
, proc_thermal_pci_ids
);
475 static struct pci_driver proc_thermal_pci_driver
= {
476 .name
= "proc_thermal",
477 .probe
= proc_thermal_pci_probe
,
478 .remove
= proc_thermal_pci_remove
,
479 .id_table
= proc_thermal_pci_ids
,
482 static const struct acpi_device_id int3401_device_ids
[] = {
486 MODULE_DEVICE_TABLE(acpi
, int3401_device_ids
);
488 static struct platform_driver int3401_driver
= {
489 .probe
= int3401_add
,
490 .remove
= int3401_remove
,
492 .name
= "int3401 thermal",
493 .acpi_match_table
= int3401_device_ids
,
497 static int __init
proc_thermal_init(void)
501 ret
= platform_driver_register(&int3401_driver
);
505 ret
= pci_register_driver(&proc_thermal_pci_driver
);
510 static void __exit
proc_thermal_exit(void)
512 platform_driver_unregister(&int3401_driver
);
513 pci_unregister_driver(&proc_thermal_pci_driver
);
516 module_init(proc_thermal_init
);
517 module_exit(proc_thermal_exit
);
519 MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>");
520 MODULE_DESCRIPTION("Processor Thermal Reporting Device Driver");
521 MODULE_LICENSE("GPL v2");