2 * Hisilicon thermal sensor driver
4 * Copyright (c) 2014-2015 Hisilicon Limited.
5 * Copyright (c) 2014-2015 Linaro Limited.
7 * Xinwei Kong <kong.kongxinwei@hisilicon.com>
8 * Leo Yan <leo.yan@linaro.org>
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.
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.
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>
26 #include <linux/of_device.h>
28 #include "thermal_core.h"
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)
34 #define HI6220_TEMP0_CFG_SS_MSK (0xF000)
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)
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)
49 #define HI6220_TEMP_BASE (-60000)
50 #define HI6220_TEMP_RESET (100000)
51 #define HI6220_TEMP_STEP (785)
52 #define HI6220_TEMP_LAG (3500)
54 #define HI3660_TEMP_BASE (-63780)
55 #define HI3660_TEMP_STEP (205)
56 #define HI3660_TEMP_LAG (4000)
58 #define HI6220_DEFAULT_SENSOR 2
59 #define HI3660_DEFAULT_SENSOR 1
61 struct hisi_thermal_sensor
{
62 struct thermal_zone_device
*tzd
;
67 struct hisi_thermal_data
{
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
);
72 struct platform_device
*pdev
;
74 struct hisi_thermal_sensor sensor
;
80 * The temperature computation on the tsensor is as follow:
81 * Unit: millidegree Celsius
82 * Step: 200/255 (0.7843)
83 * Temperature base: -60°C
85 * The register is programmed in temperature steps, every step is 785
86 * millidegree and begins at -60 000 m°C
88 * The temperature from the steps:
90 * Temp = TempBase + (steps x 785)
92 * and the steps from the temperature:
94 * steps = (Temp - TempBase) / 785
97 static inline int hi6220_thermal_step_to_temp(int step
)
99 return HI6220_TEMP_BASE
+ (step
* HI6220_TEMP_STEP
);
102 static inline int hi6220_thermal_temp_to_step(int temp
)
104 return DIV_ROUND_UP(temp
- HI6220_TEMP_BASE
, HI6220_TEMP_STEP
);
109 * Step: 189/922 (0.205)
110 * Temperature base: -63.780°C
112 * The register is programmed in temperature steps, every step is 205
113 * millidegree and begins at -63 780 m°C
115 static inline int hi3660_thermal_step_to_temp(int step
)
117 return HI3660_TEMP_BASE
+ step
* HI3660_TEMP_STEP
;
120 static inline int hi3660_thermal_temp_to_step(int temp
)
122 return DIV_ROUND_UP(temp
- HI3660_TEMP_BASE
, HI3660_TEMP_STEP
);
126 * The lag register contains 5 bits encoding the temperature in steps.
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.
134 * We can setup a temperature representing the delta between the
135 * threshold and the current temperature when the temperature is
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.
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
147 * [0:4] : lag register
149 * The temperature is coded in steps, cf. HI6220_TEMP_STEP.
151 * Min : 0x00 : 0.0 °C
152 * Max : 0x1F : 24.3 °C
154 * The 'value' parameter is in milliCelsius.
156 static inline void hi6220_thermal_set_lag(void __iomem
*addr
, int value
)
158 writel(DIV_ROUND_UP(value
, HI6220_TEMP_STEP
) & 0x1F,
159 addr
+ HI6220_TEMP0_LAG
);
162 static inline void hi6220_thermal_alarm_clear(void __iomem
*addr
, int value
)
164 writel(value
, addr
+ HI6220_TEMP0_INT_CLR
);
167 static inline void hi6220_thermal_alarm_enable(void __iomem
*addr
, int value
)
169 writel(value
, addr
+ HI6220_TEMP0_INT_EN
);
172 static inline void hi6220_thermal_alarm_set(void __iomem
*addr
, int temp
)
174 writel(hi6220_thermal_temp_to_step(temp
) | 0x0FFFFFF00,
175 addr
+ HI6220_TEMP0_TH
);
178 static inline void hi6220_thermal_reset_set(void __iomem
*addr
, int temp
)
180 writel(hi6220_thermal_temp_to_step(temp
), addr
+ HI6220_TEMP0_RST_TH
);
183 static inline void hi6220_thermal_reset_enable(void __iomem
*addr
, int value
)
185 writel(value
, addr
+ HI6220_TEMP0_RST_MSK
);
188 static inline void hi6220_thermal_enable(void __iomem
*addr
, int value
)
190 writel(value
, addr
+ HI6220_TEMP0_EN
);
193 static inline int hi6220_thermal_get_temperature(void __iomem
*addr
)
195 return hi6220_thermal_step_to_temp(readl(addr
+ HI6220_TEMP0_VALUE
));
201 * The temperature is coded in steps, cf. HI3660_TEMP_STEP.
203 * Min : 0x00 : 0.0 °C
204 * Max : 0x7F : 26.0 °C
207 static inline void hi3660_thermal_set_lag(void __iomem
*addr
,
210 writel(DIV_ROUND_UP(value
, HI3660_TEMP_STEP
) & 0x7F,
211 addr
+ HI3660_LAG(id
));
214 static inline void hi3660_thermal_alarm_clear(void __iomem
*addr
,
217 writel(value
, addr
+ HI3660_INT_CLR(id
));
220 static inline void hi3660_thermal_alarm_enable(void __iomem
*addr
,
223 writel(value
, addr
+ HI3660_INT_EN(id
));
226 static inline void hi3660_thermal_alarm_set(void __iomem
*addr
,
229 writel(value
, addr
+ HI3660_TH(id
));
232 static inline int hi3660_thermal_get_temperature(void __iomem
*addr
, int id
)
234 return hi3660_thermal_step_to_temp(readl(addr
+ HI3660_TEMP(id
)));
238 * Temperature configuration register - Sensor selection
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)
247 static inline void hi6220_thermal_sensor_select(void __iomem
*addr
, int sensor
)
249 writel((readl(addr
+ HI6220_TEMP0_CFG
) & ~HI6220_TEMP0_CFG_SS_MSK
) |
250 (sensor
<< 12), addr
+ HI6220_TEMP0_CFG
);
254 * Temperature configuration register - Hdak conversion polling interval
263 static inline void hi6220_thermal_hdak_set(void __iomem
*addr
, int value
)
265 writel((readl(addr
+ HI6220_TEMP0_CFG
) & ~HI6220_TEMP0_CFG_HDAK_MSK
) |
266 (value
<< 4), addr
+ HI6220_TEMP0_CFG
);
269 static int hi6220_thermal_irq_handler(struct hisi_thermal_data
*data
)
271 hi6220_thermal_alarm_clear(data
->regs
, 1);
275 static int hi3660_thermal_irq_handler(struct hisi_thermal_data
*data
)
277 hi3660_thermal_alarm_clear(data
->regs
, data
->sensor
.id
, 1);
281 static int hi6220_thermal_get_temp(struct hisi_thermal_data
*data
)
283 return hi6220_thermal_get_temperature(data
->regs
);
286 static int hi3660_thermal_get_temp(struct hisi_thermal_data
*data
)
288 return hi3660_thermal_get_temperature(data
->regs
, data
->sensor
.id
);
291 static int hi6220_thermal_disable_sensor(struct hisi_thermal_data
*data
)
293 /* disable sensor module */
294 hi6220_thermal_enable(data
->regs
, 0);
295 hi6220_thermal_alarm_enable(data
->regs
, 0);
296 hi6220_thermal_reset_enable(data
->regs
, 0);
298 clk_disable_unprepare(data
->clk
);
303 static int hi3660_thermal_disable_sensor(struct hisi_thermal_data
*data
)
305 /* disable sensor module */
306 hi3660_thermal_alarm_enable(data
->regs
, data
->sensor
.id
, 0);
310 static int hi6220_thermal_enable_sensor(struct hisi_thermal_data
*data
)
312 struct hisi_thermal_sensor
*sensor
= &data
->sensor
;
315 /* enable clock for tsensor */
316 ret
= clk_prepare_enable(data
->clk
);
320 /* disable module firstly */
321 hi6220_thermal_reset_enable(data
->regs
, 0);
322 hi6220_thermal_enable(data
->regs
, 0);
324 /* select sensor id */
325 hi6220_thermal_sensor_select(data
->regs
, sensor
->id
);
327 /* setting the hdak time */
328 hi6220_thermal_hdak_set(data
->regs
, 0);
330 /* setting lag value between current temp and the threshold */
331 hi6220_thermal_set_lag(data
->regs
, HI6220_TEMP_LAG
);
333 /* enable for interrupt */
334 hi6220_thermal_alarm_set(data
->regs
, sensor
->thres_temp
);
336 hi6220_thermal_reset_set(data
->regs
, HI6220_TEMP_RESET
);
339 hi6220_thermal_reset_enable(data
->regs
, 1);
340 hi6220_thermal_enable(data
->regs
, 1);
342 hi6220_thermal_alarm_clear(data
->regs
, 0);
343 hi6220_thermal_alarm_enable(data
->regs
, 1);
348 static int hi3660_thermal_enable_sensor(struct hisi_thermal_data
*data
)
351 struct hisi_thermal_sensor
*sensor
= &data
->sensor
;
353 /* disable interrupt */
354 hi3660_thermal_alarm_enable(data
->regs
, sensor
->id
, 0);
356 /* setting lag value between current temp and the threshold */
357 hi3660_thermal_set_lag(data
->regs
, sensor
->id
, HI3660_TEMP_LAG
);
359 /* set interrupt threshold */
360 value
= hi3660_thermal_temp_to_step(sensor
->thres_temp
);
361 hi3660_thermal_alarm_set(data
->regs
, sensor
->id
, value
);
363 /* enable interrupt */
364 hi3660_thermal_alarm_clear(data
->regs
, sensor
->id
, 1);
365 hi3660_thermal_alarm_enable(data
->regs
, sensor
->id
, 1);
370 static int hi6220_thermal_probe(struct hisi_thermal_data
*data
)
372 struct platform_device
*pdev
= data
->pdev
;
373 struct device
*dev
= &pdev
->dev
;
374 struct resource
*res
;
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
;
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
);
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
);
397 data
->irq
= platform_get_irq(pdev
, 0);
401 data
->sensor
.id
= HI6220_DEFAULT_SENSOR
;
406 static int hi3660_thermal_probe(struct hisi_thermal_data
*data
)
408 struct platform_device
*pdev
= data
->pdev
;
409 struct device
*dev
= &pdev
->dev
;
410 struct resource
*res
;
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
;
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
);
424 data
->irq
= platform_get_irq(pdev
, 0);
428 data
->sensor
.id
= HI3660_DEFAULT_SENSOR
;
433 static int hisi_thermal_get_temp(void *__data
, int *temp
)
435 struct hisi_thermal_data
*data
= __data
;
436 struct hisi_thermal_sensor
*sensor
= &data
->sensor
;
438 *temp
= data
->get_temp(data
);
440 dev_dbg(&data
->pdev
->dev
, "id=%d, temp=%d, thres=%d\n",
441 sensor
->id
, *temp
, sensor
->thres_temp
);
446 static const struct thermal_zone_of_device_ops hisi_of_thermal_ops
= {
447 .get_temp
= hisi_thermal_get_temp
,
450 static irqreturn_t
hisi_thermal_alarm_irq_thread(int irq
, void *dev
)
452 struct hisi_thermal_data
*data
= dev
;
453 struct hisi_thermal_sensor
*sensor
= &data
->sensor
;
456 data
->irq_handler(data
);
458 hisi_thermal_get_temp(data
, &temp
);
460 if (temp
>= sensor
->thres_temp
) {
461 dev_crit(&data
->pdev
->dev
, "THERMAL ALARM: %d > %d\n",
462 temp
, sensor
->thres_temp
);
464 thermal_zone_device_update(data
->sensor
.tzd
,
465 THERMAL_EVENT_UNSPECIFIED
);
468 dev_crit(&data
->pdev
->dev
, "THERMAL ALARM stopped: %d < %d\n",
469 temp
, sensor
->thres_temp
);
475 static int hisi_thermal_register_sensor(struct platform_device
*pdev
,
476 struct hisi_thermal_data
*data
,
477 struct hisi_thermal_sensor
*sensor
)
480 const struct thermal_trip
*trip
;
482 sensor
->tzd
= devm_thermal_zone_of_sensor_register(&pdev
->dev
,
484 &hisi_of_thermal_ops
);
485 if (IS_ERR(sensor
->tzd
)) {
486 ret
= PTR_ERR(sensor
->tzd
);
488 dev_err(&pdev
->dev
, "failed to register sensor id %d: %d\n",
493 trip
= of_thermal_get_trip_points(sensor
->tzd
);
495 for (i
= 0; i
< of_thermal_get_ntrips(sensor
->tzd
); i
++) {
496 if (trip
[i
].type
== THERMAL_TRIP_PASSIVE
) {
497 sensor
->thres_temp
= trip
[i
].temperature
;
505 static const struct of_device_id of_hisi_thermal_match
[] = {
507 .compatible
= "hisilicon,tsensor",
508 .data
= hi6220_thermal_probe
511 .compatible
= "hisilicon,hi3660-tsensor",
512 .data
= hi3660_thermal_probe
516 MODULE_DEVICE_TABLE(of
, of_hisi_thermal_match
);
518 static void hisi_thermal_toggle_sensor(struct hisi_thermal_sensor
*sensor
,
521 struct thermal_zone_device
*tzd
= sensor
->tzd
;
523 tzd
->ops
->set_mode(tzd
,
524 on
? THERMAL_DEVICE_ENABLED
: THERMAL_DEVICE_DISABLED
);
527 static int hisi_thermal_probe(struct platform_device
*pdev
)
529 struct hisi_thermal_data
*data
;
530 int (*platform_probe
)(struct hisi_thermal_data
*);
531 struct device
*dev
= &pdev
->dev
;
534 data
= devm_kzalloc(dev
, sizeof(*data
), GFP_KERNEL
);
539 platform_set_drvdata(pdev
, data
);
541 platform_probe
= of_device_get_match_data(dev
);
542 if (!platform_probe
) {
543 dev_err(dev
, "failed to get probe func\n");
547 ret
= platform_probe(data
);
551 ret
= hisi_thermal_register_sensor(pdev
, data
,
554 dev_err(dev
, "failed to register thermal sensor: %d\n", ret
);
558 ret
= data
->enable_sensor(data
);
560 dev_err(dev
, "Failed to setup the sensor: %d\n", ret
);
565 ret
= devm_request_threaded_irq(dev
, data
->irq
, NULL
,
566 hisi_thermal_alarm_irq_thread
,
567 IRQF_ONESHOT
, "hisi_thermal", data
);
569 dev_err(dev
, "failed to request alarm irq: %d\n", ret
);
574 hisi_thermal_toggle_sensor(&data
->sensor
, true);
579 static int hisi_thermal_remove(struct platform_device
*pdev
)
581 struct hisi_thermal_data
*data
= platform_get_drvdata(pdev
);
582 struct hisi_thermal_sensor
*sensor
= &data
->sensor
;
584 hisi_thermal_toggle_sensor(sensor
, false);
586 data
->disable_sensor(data
);
591 #ifdef CONFIG_PM_SLEEP
592 static int hisi_thermal_suspend(struct device
*dev
)
594 struct hisi_thermal_data
*data
= dev_get_drvdata(dev
);
596 data
->disable_sensor(data
);
601 static int hisi_thermal_resume(struct device
*dev
)
603 struct hisi_thermal_data
*data
= dev_get_drvdata(dev
);
605 return data
->enable_sensor(data
);
609 static SIMPLE_DEV_PM_OPS(hisi_thermal_pm_ops
,
610 hisi_thermal_suspend
, hisi_thermal_resume
);
612 static struct platform_driver hisi_thermal_driver
= {
614 .name
= "hisi_thermal",
615 .pm
= &hisi_thermal_pm_ops
,
616 .of_match_table
= of_hisi_thermal_match
,
618 .probe
= hisi_thermal_probe
,
619 .remove
= hisi_thermal_remove
,
622 module_platform_driver(hisi_thermal_driver
);
624 MODULE_AUTHOR("Xinwei Kong <kong.kongxinwei@hisilicon.com>");
625 MODULE_AUTHOR("Leo Yan <leo.yan@linaro.org>");
626 MODULE_DESCRIPTION("Hisilicon thermal driver");
627 MODULE_LICENSE("GPL v2");