docs: fix Co-Developed-by docs
[linux/fpc-iii.git] / drivers / thermal / intel_pch_thermal.c
blob8a7f69b4b02205de15cff28eb667288d98107da3
1 /* intel_pch_thermal.c - Intel PCH Thermal driver
3 * Copyright (c) 2015, Intel Corporation.
5 * Authors:
6 * Tushar Dave <tushar.n.dave@intel.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
19 #include <linux/module.h>
20 #include <linux/types.h>
21 #include <linux/init.h>
22 #include <linux/pci.h>
23 #include <linux/acpi.h>
24 #include <linux/thermal.h>
25 #include <linux/pm.h>
27 /* Intel PCH thermal Device IDs */
28 #define PCH_THERMAL_DID_HSW_1 0x9C24 /* Haswell PCH */
29 #define PCH_THERMAL_DID_HSW_2 0x8C24 /* Haswell PCH */
30 #define PCH_THERMAL_DID_WPT 0x9CA4 /* Wildcat Point */
31 #define PCH_THERMAL_DID_SKL 0x9D31 /* Skylake PCH */
32 #define PCH_THERMAL_DID_SKL_H 0xA131 /* Skylake PCH 100 series */
33 #define PCH_THERMAL_DID_CNL 0x9Df9 /* CNL PCH */
34 #define PCH_THERMAL_DID_CNL_H 0xA379 /* CNL-H PCH */
36 /* Wildcat Point-LP PCH Thermal registers */
37 #define WPT_TEMP 0x0000 /* Temperature */
38 #define WPT_TSC 0x04 /* Thermal Sensor Control */
39 #define WPT_TSS 0x06 /* Thermal Sensor Status */
40 #define WPT_TSEL 0x08 /* Thermal Sensor Enable and Lock */
41 #define WPT_TSREL 0x0A /* Thermal Sensor Report Enable and Lock */
42 #define WPT_TSMIC 0x0C /* Thermal Sensor SMI Control */
43 #define WPT_CTT 0x0010 /* Catastrophic Trip Point */
44 #define WPT_TAHV 0x0014 /* Thermal Alert High Value */
45 #define WPT_TALV 0x0018 /* Thermal Alert Low Value */
46 #define WPT_TL 0x00000040 /* Throttle Value */
47 #define WPT_PHL 0x0060 /* PCH Hot Level */
48 #define WPT_PHLC 0x62 /* PHL Control */
49 #define WPT_TAS 0x80 /* Thermal Alert Status */
50 #define WPT_TSPIEN 0x82 /* PCI Interrupt Event Enables */
51 #define WPT_TSGPEN 0x84 /* General Purpose Event Enables */
53 /* Wildcat Point-LP PCH Thermal Register bit definitions */
54 #define WPT_TEMP_TSR 0x01ff /* Temp TS Reading */
55 #define WPT_TSC_CPDE 0x01 /* Catastrophic Power-Down Enable */
56 #define WPT_TSS_TSDSS 0x10 /* Thermal Sensor Dynamic Shutdown Status */
57 #define WPT_TSS_GPES 0x08 /* GPE status */
58 #define WPT_TSEL_ETS 0x01 /* Enable TS */
59 #define WPT_TSEL_PLDB 0x80 /* TSEL Policy Lock-Down Bit */
60 #define WPT_TL_TOL 0x000001FF /* T0 Level */
61 #define WPT_TL_T1L 0x1ff00000 /* T1 Level */
62 #define WPT_TL_TTEN 0x20000000 /* TT Enable */
64 static char driver_name[] = "Intel PCH thermal driver";
66 struct pch_thermal_device {
67 void __iomem *hw_base;
68 const struct pch_dev_ops *ops;
69 struct pci_dev *pdev;
70 struct thermal_zone_device *tzd;
71 int crt_trip_id;
72 unsigned long crt_temp;
73 int hot_trip_id;
74 unsigned long hot_temp;
75 int psv_trip_id;
76 unsigned long psv_temp;
77 bool bios_enabled;
80 #ifdef CONFIG_ACPI
83 * On some platforms, there is a companion ACPI device, which adds
84 * passive trip temperature using _PSV method. There is no specific
85 * passive temperature setting in MMIO interface of this PCI device.
87 static void pch_wpt_add_acpi_psv_trip(struct pch_thermal_device *ptd,
88 int *nr_trips)
90 struct acpi_device *adev;
92 ptd->psv_trip_id = -1;
94 adev = ACPI_COMPANION(&ptd->pdev->dev);
95 if (adev) {
96 unsigned long long r;
97 acpi_status status;
99 status = acpi_evaluate_integer(adev->handle, "_PSV", NULL,
100 &r);
101 if (ACPI_SUCCESS(status)) {
102 unsigned long trip_temp;
104 trip_temp = DECI_KELVIN_TO_MILLICELSIUS(r);
105 if (trip_temp) {
106 ptd->psv_temp = trip_temp;
107 ptd->psv_trip_id = *nr_trips;
108 ++(*nr_trips);
113 #else
114 static void pch_wpt_add_acpi_psv_trip(struct pch_thermal_device *ptd,
115 int *nr_trips)
117 ptd->psv_trip_id = -1;
120 #endif
122 static int pch_wpt_init(struct pch_thermal_device *ptd, int *nr_trips)
124 u8 tsel;
125 u16 trip_temp;
127 *nr_trips = 0;
129 /* Check if BIOS has already enabled thermal sensor */
130 if (WPT_TSEL_ETS & readb(ptd->hw_base + WPT_TSEL)) {
131 ptd->bios_enabled = true;
132 goto read_trips;
135 tsel = readb(ptd->hw_base + WPT_TSEL);
137 * When TSEL's Policy Lock-Down bit is 1, TSEL become RO.
138 * If so, thermal sensor cannot enable. Bail out.
140 if (tsel & WPT_TSEL_PLDB) {
141 dev_err(&ptd->pdev->dev, "Sensor can't be enabled\n");
142 return -ENODEV;
145 writeb(tsel|WPT_TSEL_ETS, ptd->hw_base + WPT_TSEL);
146 if (!(WPT_TSEL_ETS & readb(ptd->hw_base + WPT_TSEL))) {
147 dev_err(&ptd->pdev->dev, "Sensor can't be enabled\n");
148 return -ENODEV;
151 read_trips:
152 ptd->crt_trip_id = -1;
153 trip_temp = readw(ptd->hw_base + WPT_CTT);
154 trip_temp &= 0x1FF;
155 if (trip_temp) {
156 /* Resolution of 1/2 degree C and an offset of -50C */
157 ptd->crt_temp = trip_temp * 1000 / 2 - 50000;
158 ptd->crt_trip_id = 0;
159 ++(*nr_trips);
162 ptd->hot_trip_id = -1;
163 trip_temp = readw(ptd->hw_base + WPT_PHL);
164 trip_temp &= 0x1FF;
165 if (trip_temp) {
166 /* Resolution of 1/2 degree C and an offset of -50C */
167 ptd->hot_temp = trip_temp * 1000 / 2 - 50000;
168 ptd->hot_trip_id = *nr_trips;
169 ++(*nr_trips);
172 pch_wpt_add_acpi_psv_trip(ptd, nr_trips);
174 return 0;
177 static int pch_wpt_get_temp(struct pch_thermal_device *ptd, int *temp)
179 u16 wpt_temp;
181 wpt_temp = WPT_TEMP_TSR & readw(ptd->hw_base + WPT_TEMP);
183 /* Resolution of 1/2 degree C and an offset of -50C */
184 *temp = (wpt_temp * 1000 / 2 - 50000);
186 return 0;
189 static int pch_wpt_suspend(struct pch_thermal_device *ptd)
191 u8 tsel;
193 if (ptd->bios_enabled)
194 return 0;
196 tsel = readb(ptd->hw_base + WPT_TSEL);
198 writeb(tsel & 0xFE, ptd->hw_base + WPT_TSEL);
200 return 0;
203 static int pch_wpt_resume(struct pch_thermal_device *ptd)
205 u8 tsel;
207 if (ptd->bios_enabled)
208 return 0;
210 tsel = readb(ptd->hw_base + WPT_TSEL);
212 writeb(tsel | WPT_TSEL_ETS, ptd->hw_base + WPT_TSEL);
214 return 0;
217 struct pch_dev_ops {
218 int (*hw_init)(struct pch_thermal_device *ptd, int *nr_trips);
219 int (*get_temp)(struct pch_thermal_device *ptd, int *temp);
220 int (*suspend)(struct pch_thermal_device *ptd);
221 int (*resume)(struct pch_thermal_device *ptd);
225 /* dev ops for Wildcat Point */
226 static const struct pch_dev_ops pch_dev_ops_wpt = {
227 .hw_init = pch_wpt_init,
228 .get_temp = pch_wpt_get_temp,
229 .suspend = pch_wpt_suspend,
230 .resume = pch_wpt_resume,
233 static int pch_thermal_get_temp(struct thermal_zone_device *tzd, int *temp)
235 struct pch_thermal_device *ptd = tzd->devdata;
237 return ptd->ops->get_temp(ptd, temp);
240 static int pch_get_trip_type(struct thermal_zone_device *tzd, int trip,
241 enum thermal_trip_type *type)
243 struct pch_thermal_device *ptd = tzd->devdata;
245 if (ptd->crt_trip_id == trip)
246 *type = THERMAL_TRIP_CRITICAL;
247 else if (ptd->hot_trip_id == trip)
248 *type = THERMAL_TRIP_HOT;
249 else if (ptd->psv_trip_id == trip)
250 *type = THERMAL_TRIP_PASSIVE;
251 else
252 return -EINVAL;
254 return 0;
257 static int pch_get_trip_temp(struct thermal_zone_device *tzd, int trip, int *temp)
259 struct pch_thermal_device *ptd = tzd->devdata;
261 if (ptd->crt_trip_id == trip)
262 *temp = ptd->crt_temp;
263 else if (ptd->hot_trip_id == trip)
264 *temp = ptd->hot_temp;
265 else if (ptd->psv_trip_id == trip)
266 *temp = ptd->psv_temp;
267 else
268 return -EINVAL;
270 return 0;
273 static struct thermal_zone_device_ops tzd_ops = {
274 .get_temp = pch_thermal_get_temp,
275 .get_trip_type = pch_get_trip_type,
276 .get_trip_temp = pch_get_trip_temp,
279 enum board_ids {
280 board_hsw,
281 board_wpt,
282 board_skl,
283 board_cnl,
286 static const struct board_info {
287 const char *name;
288 const struct pch_dev_ops *ops;
289 } board_info[] = {
290 [board_hsw] = {
291 .name = "pch_haswell",
292 .ops = &pch_dev_ops_wpt,
294 [board_wpt] = {
295 .name = "pch_wildcat_point",
296 .ops = &pch_dev_ops_wpt,
298 [board_skl] = {
299 .name = "pch_skylake",
300 .ops = &pch_dev_ops_wpt,
302 [board_cnl] = {
303 .name = "pch_cannonlake",
304 .ops = &pch_dev_ops_wpt,
308 static int intel_pch_thermal_probe(struct pci_dev *pdev,
309 const struct pci_device_id *id)
311 enum board_ids board_id = id->driver_data;
312 const struct board_info *bi = &board_info[board_id];
313 struct pch_thermal_device *ptd;
314 int err;
315 int nr_trips;
317 ptd = devm_kzalloc(&pdev->dev, sizeof(*ptd), GFP_KERNEL);
318 if (!ptd)
319 return -ENOMEM;
321 ptd->ops = bi->ops;
323 pci_set_drvdata(pdev, ptd);
324 ptd->pdev = pdev;
326 err = pci_enable_device(pdev);
327 if (err) {
328 dev_err(&pdev->dev, "failed to enable pci device\n");
329 return err;
332 err = pci_request_regions(pdev, driver_name);
333 if (err) {
334 dev_err(&pdev->dev, "failed to request pci region\n");
335 goto error_disable;
338 ptd->hw_base = pci_ioremap_bar(pdev, 0);
339 if (!ptd->hw_base) {
340 err = -ENOMEM;
341 dev_err(&pdev->dev, "failed to map mem base\n");
342 goto error_release;
345 err = ptd->ops->hw_init(ptd, &nr_trips);
346 if (err)
347 goto error_cleanup;
349 ptd->tzd = thermal_zone_device_register(bi->name, nr_trips, 0, ptd,
350 &tzd_ops, NULL, 0, 0);
351 if (IS_ERR(ptd->tzd)) {
352 dev_err(&pdev->dev, "Failed to register thermal zone %s\n",
353 bi->name);
354 err = PTR_ERR(ptd->tzd);
355 goto error_cleanup;
358 return 0;
360 error_cleanup:
361 iounmap(ptd->hw_base);
362 error_release:
363 pci_release_regions(pdev);
364 error_disable:
365 pci_disable_device(pdev);
366 dev_err(&pdev->dev, "pci device failed to probe\n");
367 return err;
370 static void intel_pch_thermal_remove(struct pci_dev *pdev)
372 struct pch_thermal_device *ptd = pci_get_drvdata(pdev);
374 thermal_zone_device_unregister(ptd->tzd);
375 iounmap(ptd->hw_base);
376 pci_set_drvdata(pdev, NULL);
377 pci_release_region(pdev, 0);
378 pci_disable_device(pdev);
381 static int intel_pch_thermal_suspend(struct device *device)
383 struct pci_dev *pdev = to_pci_dev(device);
384 struct pch_thermal_device *ptd = pci_get_drvdata(pdev);
386 return ptd->ops->suspend(ptd);
389 static int intel_pch_thermal_resume(struct device *device)
391 struct pci_dev *pdev = to_pci_dev(device);
392 struct pch_thermal_device *ptd = pci_get_drvdata(pdev);
394 return ptd->ops->resume(ptd);
397 static const struct pci_device_id intel_pch_thermal_id[] = {
398 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCH_THERMAL_DID_HSW_1),
399 .driver_data = board_hsw, },
400 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCH_THERMAL_DID_HSW_2),
401 .driver_data = board_hsw, },
402 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCH_THERMAL_DID_WPT),
403 .driver_data = board_wpt, },
404 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCH_THERMAL_DID_SKL),
405 .driver_data = board_skl, },
406 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCH_THERMAL_DID_SKL_H),
407 .driver_data = board_skl, },
408 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCH_THERMAL_DID_CNL),
409 .driver_data = board_cnl, },
410 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCH_THERMAL_DID_CNL_H),
411 .driver_data = board_cnl, },
412 { 0, },
414 MODULE_DEVICE_TABLE(pci, intel_pch_thermal_id);
416 static const struct dev_pm_ops intel_pch_pm_ops = {
417 .suspend = intel_pch_thermal_suspend,
418 .resume = intel_pch_thermal_resume,
421 static struct pci_driver intel_pch_thermal_driver = {
422 .name = "intel_pch_thermal",
423 .id_table = intel_pch_thermal_id,
424 .probe = intel_pch_thermal_probe,
425 .remove = intel_pch_thermal_remove,
426 .driver.pm = &intel_pch_pm_ops,
429 module_pci_driver(intel_pch_thermal_driver);
431 MODULE_LICENSE("GPL v2");
432 MODULE_DESCRIPTION("Intel PCH Thermal driver");