]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/thermal/hisi_thermal.c
Merge branch 'x86/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[mirror_ubuntu-bionic-kernel.git] / drivers / thermal / hisi_thermal.c
CommitLineData
9a5238a9 1/*
2 * Hisilicon thermal sensor driver
3 *
4 * Copyright (c) 2014-2015 Hisilicon Limited.
5 * Copyright (c) 2014-2015 Linaro Limited.
6 *
7 * Xinwei Kong <kong.kongxinwei@hisilicon.com>
8 * Leo Yan <leo.yan@linaro.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
15 * kind, whether express or implied; without even the implied warranty
16 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
19
20#include <linux/cpufreq.h>
21#include <linux/delay.h>
22#include <linux/interrupt.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
25#include <linux/io.h>
a160a465 26#include <linux/of_device.h>
9a5238a9 27
28#include "thermal_core.h"
29
5ed82b79
KW
30#define HI6220_TEMP0_LAG (0x0)
31#define HI6220_TEMP0_TH (0x4)
32#define HI6220_TEMP0_RST_TH (0x8)
33#define HI6220_TEMP0_CFG (0xC)
a160a465 34#define HI6220_TEMP0_CFG_SS_MSK (0xF000)
5ed82b79
KW
35#define HI6220_TEMP0_CFG_HDAK_MSK (0x30)
36#define HI6220_TEMP0_EN (0x10)
37#define HI6220_TEMP0_INT_EN (0x14)
38#define HI6220_TEMP0_INT_CLR (0x18)
39#define HI6220_TEMP0_RST_MSK (0x1C)
40#define HI6220_TEMP0_VALUE (0x28)
41
2bb60a8e
KW
42#define HI3660_OFFSET(chan) ((chan) * 0x40)
43#define HI3660_TEMP(chan) (HI3660_OFFSET(chan) + 0x1C)
44#define HI3660_TH(chan) (HI3660_OFFSET(chan) + 0x20)
45#define HI3660_LAG(chan) (HI3660_OFFSET(chan) + 0x28)
46#define HI3660_INT_EN(chan) (HI3660_OFFSET(chan) + 0x2C)
47#define HI3660_INT_CLR(chan) (HI3660_OFFSET(chan) + 0x30)
48
5ed82b79
KW
49#define HI6220_TEMP_BASE (-60000)
50#define HI6220_TEMP_RESET (100000)
51#define HI6220_TEMP_STEP (785)
a160a465 52#define HI6220_TEMP_LAG (3500)
5ed82b79 53
2bb60a8e
KW
54#define HI3660_TEMP_BASE (-63780)
55#define HI3660_TEMP_STEP (205)
56#define HI3660_TEMP_LAG (4000)
57
5ed82b79 58#define HI6220_DEFAULT_SENSOR 2
2bb60a8e 59#define HI3660_DEFAULT_SENSOR 1
9a5238a9 60
61struct hisi_thermal_sensor {
9a5238a9 62 struct thermal_zone_device *tzd;
9a5238a9 63 uint32_t id;
64 uint32_t thres_temp;
65};
66
67struct hisi_thermal_data {
a160a465
KW
68 int (*get_temp)(struct hisi_thermal_data *data);
69 int (*enable_sensor)(struct hisi_thermal_data *data);
70 int (*disable_sensor)(struct hisi_thermal_data *data);
71 int (*irq_handler)(struct hisi_thermal_data *data);
9a5238a9 72 struct platform_device *pdev;
73 struct clk *clk;
609f26dc 74 struct hisi_thermal_sensor sensor;
9a5238a9 75 void __iomem *regs;
609f26dc 76 int irq;
9a5238a9 77};
78
48880b97
DL
79/*
80 * The temperature computation on the tsensor is as follow:
81 * Unit: millidegree Celsius
e42bbe11 82 * Step: 200/255 (0.7843)
48880b97
DL
83 * Temperature base: -60°C
84 *
e42bbe11 85 * The register is programmed in temperature steps, every step is 785
48880b97
DL
86 * millidegree and begins at -60 000 m°C
87 *
88 * The temperature from the steps:
89 *
e42bbe11 90 * Temp = TempBase + (steps x 785)
48880b97
DL
91 *
92 * and the steps from the temperature:
93 *
e42bbe11 94 * steps = (Temp - TempBase) / 785
48880b97
DL
95 *
96 */
5ed82b79 97static inline int hi6220_thermal_step_to_temp(int step)
9a5238a9 98{
5ed82b79 99 return HI6220_TEMP_BASE + (step * HI6220_TEMP_STEP);
9a5238a9 100}
101
5ed82b79 102static inline int hi6220_thermal_temp_to_step(int temp)
9a5238a9 103{
5ed82b79 104 return DIV_ROUND_UP(temp - HI6220_TEMP_BASE, HI6220_TEMP_STEP);
db2b0332
DL
105}
106
2bb60a8e
KW
107/*
108 * for Hi3660,
109 * Step: 189/922 (0.205)
110 * Temperature base: -63.780°C
111 *
112 * The register is programmed in temperature steps, every step is 205
113 * millidegree and begins at -63 780 m°C
114 */
115static inline int hi3660_thermal_step_to_temp(int step)
116{
117 return HI3660_TEMP_BASE + step * HI3660_TEMP_STEP;
118}
119
120static inline int hi3660_thermal_temp_to_step(int temp)
121{
122 return DIV_ROUND_UP(temp - HI3660_TEMP_BASE, HI3660_TEMP_STEP);
123}
124
10d7e9a9
DL
125/*
126 * The lag register contains 5 bits encoding the temperature in steps.
127 *
128 * Each time the temperature crosses the threshold boundary, an
129 * interrupt is raised. It could be when the temperature is going
130 * above the threshold or below. However, if the temperature is
131 * fluctuating around this value due to the load, we can receive
132 * several interrupts which may not desired.
133 *
134 * We can setup a temperature representing the delta between the
135 * threshold and the current temperature when the temperature is
136 * decreasing.
137 *
138 * For instance: the lag register is 5°C, the threshold is 65°C, when
139 * the temperature reaches 65°C an interrupt is raised and when the
140 * temperature decrease to 65°C - 5°C another interrupt is raised.
141 *
142 * A very short lag can lead to an interrupt storm, a long lag
143 * increase the latency to react to the temperature changes. In our
144 * case, that is not really a problem as we are polling the
145 * temperature.
146 *
147 * [0:4] : lag register
148 *
5ed82b79 149 * The temperature is coded in steps, cf. HI6220_TEMP_STEP.
10d7e9a9
DL
150 *
151 * Min : 0x00 : 0.0 °C
152 * Max : 0x1F : 24.3 °C
153 *
154 * The 'value' parameter is in milliCelsius.
155 */
5ed82b79 156static inline void hi6220_thermal_set_lag(void __iomem *addr, int value)
1e11b014 157{
5ed82b79
KW
158 writel(DIV_ROUND_UP(value, HI6220_TEMP_STEP) & 0x1F,
159 addr + HI6220_TEMP0_LAG);
1e11b014
DL
160}
161
5ed82b79 162static inline void hi6220_thermal_alarm_clear(void __iomem *addr, int value)
1e11b014 163{
5ed82b79 164 writel(value, addr + HI6220_TEMP0_INT_CLR);
1e11b014
DL
165}
166
5ed82b79 167static inline void hi6220_thermal_alarm_enable(void __iomem *addr, int value)
1e11b014 168{
5ed82b79 169 writel(value, addr + HI6220_TEMP0_INT_EN);
1e11b014
DL
170}
171
5ed82b79 172static inline void hi6220_thermal_alarm_set(void __iomem *addr, int temp)
1e11b014 173{
5ed82b79
KW
174 writel(hi6220_thermal_temp_to_step(temp) | 0x0FFFFFF00,
175 addr + HI6220_TEMP0_TH);
1e11b014
DL
176}
177
5ed82b79 178static inline void hi6220_thermal_reset_set(void __iomem *addr, int temp)
1e11b014 179{
5ed82b79 180 writel(hi6220_thermal_temp_to_step(temp), addr + HI6220_TEMP0_RST_TH);
1e11b014
DL
181}
182
5ed82b79 183static inline void hi6220_thermal_reset_enable(void __iomem *addr, int value)
1e11b014 184{
5ed82b79 185 writel(value, addr + HI6220_TEMP0_RST_MSK);
1e11b014
DL
186}
187
5ed82b79 188static inline void hi6220_thermal_enable(void __iomem *addr, int value)
1e11b014 189{
5ed82b79 190 writel(value, addr + HI6220_TEMP0_EN);
1e11b014
DL
191}
192
5ed82b79 193static inline int hi6220_thermal_get_temperature(void __iomem *addr)
1e11b014 194{
5ed82b79 195 return hi6220_thermal_step_to_temp(readl(addr + HI6220_TEMP0_VALUE));
1e11b014
DL
196}
197
2bb60a8e
KW
198/*
199 * [0:6] lag register
200 *
201 * The temperature is coded in steps, cf. HI3660_TEMP_STEP.
202 *
203 * Min : 0x00 : 0.0 °C
204 * Max : 0x7F : 26.0 °C
205 *
206 */
207static inline void hi3660_thermal_set_lag(void __iomem *addr,
208 int id, int value)
209{
210 writel(DIV_ROUND_UP(value, HI3660_TEMP_STEP) & 0x7F,
211 addr + HI3660_LAG(id));
212}
213
214static inline void hi3660_thermal_alarm_clear(void __iomem *addr,
215 int id, int value)
216{
217 writel(value, addr + HI3660_INT_CLR(id));
218}
219
220static inline void hi3660_thermal_alarm_enable(void __iomem *addr,
221 int id, int value)
222{
223 writel(value, addr + HI3660_INT_EN(id));
224}
225
226static inline void hi3660_thermal_alarm_set(void __iomem *addr,
227 int id, int value)
228{
229 writel(value, addr + HI3660_TH(id));
230}
231
232static inline int hi3660_thermal_get_temperature(void __iomem *addr, int id)
233{
234 return hi3660_thermal_step_to_temp(readl(addr + HI3660_TEMP(id)));
235}
236
b424315a
DL
237/*
238 * Temperature configuration register - Sensor selection
239 *
240 * Bits [19:12]
241 *
242 * 0x0: local sensor (default)
243 * 0x1: remote sensor 1 (ACPU cluster 1)
244 * 0x2: remote sensor 2 (ACPU cluster 0)
245 * 0x3: remote sensor 3 (G3D)
246 */
5ed82b79 247static inline void hi6220_thermal_sensor_select(void __iomem *addr, int sensor)
1e11b014 248{
5ed82b79
KW
249 writel((readl(addr + HI6220_TEMP0_CFG) & ~HI6220_TEMP0_CFG_SS_MSK) |
250 (sensor << 12), addr + HI6220_TEMP0_CFG);
1e11b014
DL
251}
252
b424315a
DL
253/*
254 * Temperature configuration register - Hdak conversion polling interval
255 *
256 * Bits [5:4]
257 *
258 * 0x0 : 0.768 ms
259 * 0x1 : 6.144 ms
260 * 0x2 : 49.152 ms
261 * 0x3 : 393.216 ms
262 */
5ed82b79 263static inline void hi6220_thermal_hdak_set(void __iomem *addr, int value)
1e11b014 264{
5ed82b79
KW
265 writel((readl(addr + HI6220_TEMP0_CFG) & ~HI6220_TEMP0_CFG_HDAK_MSK) |
266 (value << 4), addr + HI6220_TEMP0_CFG);
1e11b014
DL
267}
268
a160a465
KW
269static int hi6220_thermal_irq_handler(struct hisi_thermal_data *data)
270{
271 hi6220_thermal_alarm_clear(data->regs, 1);
272 return 0;
273}
274
2bb60a8e
KW
275static int hi3660_thermal_irq_handler(struct hisi_thermal_data *data)
276{
277 hi3660_thermal_alarm_clear(data->regs, data->sensor.id, 1);
278 return 0;
279}
280
a160a465
KW
281static int hi6220_thermal_get_temp(struct hisi_thermal_data *data)
282{
283 return hi6220_thermal_get_temperature(data->regs);
284}
285
2bb60a8e
KW
286static int hi3660_thermal_get_temp(struct hisi_thermal_data *data)
287{
288 return hi3660_thermal_get_temperature(data->regs, data->sensor.id);
289}
290
a160a465 291static int hi6220_thermal_disable_sensor(struct hisi_thermal_data *data)
9a5238a9 292{
9a5238a9 293 /* disable sensor module */
5ed82b79
KW
294 hi6220_thermal_enable(data->regs, 0);
295 hi6220_thermal_alarm_enable(data->regs, 0);
296 hi6220_thermal_reset_enable(data->regs, 0);
943c0f6a
KW
297
298 clk_disable_unprepare(data->clk);
a160a465
KW
299
300 return 0;
9a5238a9 301}
302
2bb60a8e
KW
303static int hi3660_thermal_disable_sensor(struct hisi_thermal_data *data)
304{
305 /* disable sensor module */
306 hi3660_thermal_alarm_enable(data->regs, data->sensor.id, 0);
307 return 0;
308}
309
5ed82b79 310static int hi6220_thermal_enable_sensor(struct hisi_thermal_data *data)
a0678da8
KW
311{
312 struct hisi_thermal_sensor *sensor = &data->sensor;
313 int ret;
314
315 /* enable clock for tsensor */
316 ret = clk_prepare_enable(data->clk);
317 if (ret)
318 return ret;
319
320 /* disable module firstly */
5ed82b79
KW
321 hi6220_thermal_reset_enable(data->regs, 0);
322 hi6220_thermal_enable(data->regs, 0);
a0678da8
KW
323
324 /* select sensor id */
5ed82b79 325 hi6220_thermal_sensor_select(data->regs, sensor->id);
a0678da8
KW
326
327 /* setting the hdak time */
5ed82b79 328 hi6220_thermal_hdak_set(data->regs, 0);
a0678da8
KW
329
330 /* setting lag value between current temp and the threshold */
5ed82b79 331 hi6220_thermal_set_lag(data->regs, HI6220_TEMP_LAG);
a0678da8
KW
332
333 /* enable for interrupt */
5ed82b79 334 hi6220_thermal_alarm_set(data->regs, sensor->thres_temp);
a0678da8 335
5ed82b79 336 hi6220_thermal_reset_set(data->regs, HI6220_TEMP_RESET);
a0678da8
KW
337
338 /* enable module */
5ed82b79
KW
339 hi6220_thermal_reset_enable(data->regs, 1);
340 hi6220_thermal_enable(data->regs, 1);
a0678da8 341
5ed82b79
KW
342 hi6220_thermal_alarm_clear(data->regs, 0);
343 hi6220_thermal_alarm_enable(data->regs, 1);
a0678da8
KW
344
345 return 0;
346}
347
2bb60a8e
KW
348static int hi3660_thermal_enable_sensor(struct hisi_thermal_data *data)
349{
350 unsigned int value;
351 struct hisi_thermal_sensor *sensor = &data->sensor;
352
353 /* disable interrupt */
354 hi3660_thermal_alarm_enable(data->regs, sensor->id, 0);
355
356 /* setting lag value between current temp and the threshold */
357 hi3660_thermal_set_lag(data->regs, sensor->id, HI3660_TEMP_LAG);
358
359 /* set interrupt threshold */
360 value = hi3660_thermal_temp_to_step(sensor->thres_temp);
361 hi3660_thermal_alarm_set(data->regs, sensor->id, value);
362
363 /* enable interrupt */
364 hi3660_thermal_alarm_clear(data->regs, sensor->id, 1);
365 hi3660_thermal_alarm_enable(data->regs, sensor->id, 1);
366
367 return 0;
368}
369
a160a465
KW
370static int hi6220_thermal_probe(struct hisi_thermal_data *data)
371{
372 struct platform_device *pdev = data->pdev;
373 struct device *dev = &pdev->dev;
374 struct resource *res;
375 int ret;
376
377 data->get_temp = hi6220_thermal_get_temp;
378 data->enable_sensor = hi6220_thermal_enable_sensor;
379 data->disable_sensor = hi6220_thermal_disable_sensor;
380 data->irq_handler = hi6220_thermal_irq_handler;
381
382 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
383 data->regs = devm_ioremap_resource(dev, res);
384 if (IS_ERR(data->regs)) {
385 dev_err(dev, "failed to get io address\n");
386 return PTR_ERR(data->regs);
387 }
388
389 data->clk = devm_clk_get(dev, "thermal_clk");
390 if (IS_ERR(data->clk)) {
391 ret = PTR_ERR(data->clk);
392 if (ret != -EPROBE_DEFER)
393 dev_err(dev, "failed to get thermal clk: %d\n", ret);
394 return ret;
395 }
396
397 data->irq = platform_get_irq(pdev, 0);
398 if (data->irq < 0)
399 return data->irq;
400
401 data->sensor.id = HI6220_DEFAULT_SENSOR;
402
403 return 0;
404}
405
2bb60a8e
KW
406static int hi3660_thermal_probe(struct hisi_thermal_data *data)
407{
408 struct platform_device *pdev = data->pdev;
409 struct device *dev = &pdev->dev;
410 struct resource *res;
411
412 data->get_temp = hi3660_thermal_get_temp;
413 data->enable_sensor = hi3660_thermal_enable_sensor;
414 data->disable_sensor = hi3660_thermal_disable_sensor;
415 data->irq_handler = hi3660_thermal_irq_handler;
416
417 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
418 data->regs = devm_ioremap_resource(dev, res);
419 if (IS_ERR(data->regs)) {
420 dev_err(dev, "failed to get io address\n");
421 return PTR_ERR(data->regs);
422 }
423
424 data->irq = platform_get_irq(pdev, 0);
425 if (data->irq < 0)
426 return data->irq;
427
428 data->sensor.id = HI3660_DEFAULT_SENSOR;
429
430 return 0;
431}
432
81d7cb79 433static int hisi_thermal_get_temp(void *__data, int *temp)
9a5238a9 434{
81d7cb79
DL
435 struct hisi_thermal_data *data = __data;
436 struct hisi_thermal_sensor *sensor = &data->sensor;
9a5238a9 437
a160a465 438 *temp = data->get_temp(data);
9a5238a9 439
10d7e9a9
DL
440 dev_dbg(&data->pdev->dev, "id=%d, temp=%d, thres=%d\n",
441 sensor->id, *temp, sensor->thres_temp);
9a5238a9 442
443 return 0;
444}
445
3fe156f1 446static const struct thermal_zone_of_device_ops hisi_of_thermal_ops = {
9a5238a9 447 .get_temp = hisi_thermal_get_temp,
448};
449
10d7e9a9 450static irqreturn_t hisi_thermal_alarm_irq_thread(int irq, void *dev)
9a5238a9 451{
452 struct hisi_thermal_data *data = dev;
609f26dc 453 struct hisi_thermal_sensor *sensor = &data->sensor;
5ed82b79 454 int temp = 0;
9a5238a9 455
a160a465 456 data->irq_handler(data);
9a5238a9 457
5ed82b79 458 hisi_thermal_get_temp(data, &temp);
9a5238a9 459
10d7e9a9
DL
460 if (temp >= sensor->thres_temp) {
461 dev_crit(&data->pdev->dev, "THERMAL ALARM: %d > %d\n",
462 temp, sensor->thres_temp);
9a5238a9 463
609f26dc 464 thermal_zone_device_update(data->sensor.tzd,
10d7e9a9 465 THERMAL_EVENT_UNSPECIFIED);
9a5238a9 466
5ed82b79 467 } else {
10d7e9a9
DL
468 dev_crit(&data->pdev->dev, "THERMAL ALARM stopped: %d < %d\n",
469 temp, sensor->thres_temp);
470 }
9a5238a9 471
472 return IRQ_HANDLED;
473}
474
475static int hisi_thermal_register_sensor(struct platform_device *pdev,
476 struct hisi_thermal_data *data,
a160a465 477 struct hisi_thermal_sensor *sensor)
9a5238a9 478{
479 int ret, i;
480 const struct thermal_trip *trip;
481
44a520d8 482 sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev,
81d7cb79
DL
483 sensor->id, data,
484 &hisi_of_thermal_ops);
9a5238a9 485 if (IS_ERR(sensor->tzd)) {
486 ret = PTR_ERR(sensor->tzd);
439dc968 487 sensor->tzd = NULL;
9a5238a9 488 dev_err(&pdev->dev, "failed to register sensor id %d: %d\n",
489 sensor->id, ret);
490 return ret;
491 }
492
493 trip = of_thermal_get_trip_points(sensor->tzd);
494
495 for (i = 0; i < of_thermal_get_ntrips(sensor->tzd); i++) {
496 if (trip[i].type == THERMAL_TRIP_PASSIVE) {
e42bbe11 497 sensor->thres_temp = trip[i].temperature;
9a5238a9 498 break;
499 }
500 }
501
502 return 0;
503}
504
505static const struct of_device_id of_hisi_thermal_match[] = {
2bb60a8e
KW
506 {
507 .compatible = "hisilicon,tsensor",
508 .data = hi6220_thermal_probe
509 },
510 {
511 .compatible = "hisilicon,hi3660-tsensor",
512 .data = hi3660_thermal_probe
513 },
9a5238a9 514 { /* end */ }
515};
516MODULE_DEVICE_TABLE(of, of_hisi_thermal_match);
517
518static void hisi_thermal_toggle_sensor(struct hisi_thermal_sensor *sensor,
519 bool on)
520{
521 struct thermal_zone_device *tzd = sensor->tzd;
522
523 tzd->ops->set_mode(tzd,
524 on ? THERMAL_DEVICE_ENABLED : THERMAL_DEVICE_DISABLED);
525}
526
527static int hisi_thermal_probe(struct platform_device *pdev)
528{
529 struct hisi_thermal_data *data;
a160a465
KW
530 int const (*platform_probe)(struct hisi_thermal_data *);
531 struct device *dev = &pdev->dev;
9a5238a9 532 int ret;
533
a160a465 534 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
9a5238a9 535 if (!data)
536 return -ENOMEM;
537
9a5238a9 538 data->pdev = pdev;
a160a465 539 platform_set_drvdata(pdev, data);
9a5238a9 540
a160a465
KW
541 platform_probe = of_device_get_match_data(dev);
542 if (!platform_probe) {
543 dev_err(dev, "failed to get probe func\n");
544 return -EINVAL;
9a5238a9 545 }
546
a160a465
KW
547 ret = platform_probe(data);
548 if (ret)
9a5238a9 549 return ret;
9a5238a9 550
ff4ec299 551 ret = hisi_thermal_register_sensor(pdev, data,
a160a465 552 &data->sensor);
ff4ec299 553 if (ret) {
a160a465 554 dev_err(dev, "failed to register thermal sensor: %d\n", ret);
ff4ec299 555 return ret;
9a5238a9 556 }
557
a160a465 558 ret = data->enable_sensor(data);
10d7e9a9 559 if (ret) {
a160a465 560 dev_err(dev, "Failed to setup the sensor: %d\n", ret);
10d7e9a9
DL
561 return ret;
562 }
ff4ec299 563
a160a465
KW
564 if (data->irq) {
565 ret = devm_request_threaded_irq(dev, data->irq, NULL,
566 hisi_thermal_alarm_irq_thread,
567 IRQF_ONESHOT, "hisi_thermal", data);
568 if (ret < 0) {
569 dev_err(dev, "failed to request alarm irq: %d\n", ret);
570 return ret;
571 }
2cb4de78
DL
572 }
573
609f26dc 574 hisi_thermal_toggle_sensor(&data->sensor, true);
c176b10b 575
9a5238a9 576 return 0;
9a5238a9 577}
578
579static int hisi_thermal_remove(struct platform_device *pdev)
580{
581 struct hisi_thermal_data *data = platform_get_drvdata(pdev);
609f26dc 582 struct hisi_thermal_sensor *sensor = &data->sensor;
9a5238a9 583
ff4ec299 584 hisi_thermal_toggle_sensor(sensor, false);
a160a465
KW
585
586 data->disable_sensor(data);
9a5238a9 587
588 return 0;
589}
590
591#ifdef CONFIG_PM_SLEEP
592static int hisi_thermal_suspend(struct device *dev)
593{
594 struct hisi_thermal_data *data = dev_get_drvdata(dev);
595
a160a465 596 data->disable_sensor(data);
9a5238a9 597
9a5238a9 598 return 0;
599}
600
601static int hisi_thermal_resume(struct device *dev)
602{
603 struct hisi_thermal_data *data = dev_get_drvdata(dev);
604
a160a465 605 return data->enable_sensor(data);
9a5238a9 606}
607#endif
608
609static SIMPLE_DEV_PM_OPS(hisi_thermal_pm_ops,
610 hisi_thermal_suspend, hisi_thermal_resume);
611
612static struct platform_driver hisi_thermal_driver = {
613 .driver = {
614 .name = "hisi_thermal",
9a5238a9 615 .pm = &hisi_thermal_pm_ops,
616 .of_match_table = of_hisi_thermal_match,
617 },
618 .probe = hisi_thermal_probe,
619 .remove = hisi_thermal_remove,
620};
621
622module_platform_driver(hisi_thermal_driver);
623
624MODULE_AUTHOR("Xinwei Kong <kong.kongxinwei@hisilicon.com>");
625MODULE_AUTHOR("Leo Yan <leo.yan@linaro.org>");
626MODULE_DESCRIPTION("Hisilicon thermal driver");
627MODULE_LICENSE("GPL v2");