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