Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[platform/kernel/linux-starfive.git] / drivers / thermal / samsung / exynos_tmu.c
1 /*
2  * exynos_tmu.c - Samsung EXYNOS TMU (Thermal Management Unit)
3  *
4  *  Copyright (C) 2014 Samsung Electronics
5  *  Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6  *  Lukasz Majewski <l.majewski@samsung.com>
7  *
8  *  Copyright (C) 2011 Samsung Electronics
9  *  Donggeun Kim <dg77.kim@samsung.com>
10  *  Amit Daniel Kachhap <amit.kachhap@linaro.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25  *
26  */
27
28 #include <linux/clk.h>
29 #include <linux/io.h>
30 #include <linux/interrupt.h>
31 #include <linux/module.h>
32 #include <linux/of_device.h>
33 #include <linux/of_address.h>
34 #include <linux/of_irq.h>
35 #include <linux/platform_device.h>
36 #include <linux/regulator/consumer.h>
37
38 #include <dt-bindings/thermal/thermal_exynos.h>
39
40 #include "../thermal_core.h"
41
42 /* Exynos generic registers */
43 #define EXYNOS_TMU_REG_TRIMINFO         0x0
44 #define EXYNOS_TMU_REG_CONTROL          0x20
45 #define EXYNOS_TMU_REG_STATUS           0x28
46 #define EXYNOS_TMU_REG_CURRENT_TEMP     0x40
47 #define EXYNOS_TMU_REG_INTEN            0x70
48 #define EXYNOS_TMU_REG_INTSTAT          0x74
49 #define EXYNOS_TMU_REG_INTCLEAR         0x78
50
51 #define EXYNOS_TMU_TEMP_MASK            0xff
52 #define EXYNOS_TMU_REF_VOLTAGE_SHIFT    24
53 #define EXYNOS_TMU_REF_VOLTAGE_MASK     0x1f
54 #define EXYNOS_TMU_BUF_SLOPE_SEL_MASK   0xf
55 #define EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT  8
56 #define EXYNOS_TMU_CORE_EN_SHIFT        0
57
58 /* Exynos3250 specific registers */
59 #define EXYNOS_TMU_TRIMINFO_CON1        0x10
60
61 /* Exynos4210 specific registers */
62 #define EXYNOS4210_TMU_REG_THRESHOLD_TEMP       0x44
63 #define EXYNOS4210_TMU_REG_TRIG_LEVEL0  0x50
64
65 /* Exynos5250, Exynos4412, Exynos3250 specific registers */
66 #define EXYNOS_TMU_TRIMINFO_CON2        0x14
67 #define EXYNOS_THD_TEMP_RISE            0x50
68 #define EXYNOS_THD_TEMP_FALL            0x54
69 #define EXYNOS_EMUL_CON         0x80
70
71 #define EXYNOS_TRIMINFO_RELOAD_ENABLE   1
72 #define EXYNOS_TRIMINFO_25_SHIFT        0
73 #define EXYNOS_TRIMINFO_85_SHIFT        8
74 #define EXYNOS_TMU_TRIP_MODE_SHIFT      13
75 #define EXYNOS_TMU_TRIP_MODE_MASK       0x7
76 #define EXYNOS_TMU_THERM_TRIP_EN_SHIFT  12
77
78 #define EXYNOS_TMU_INTEN_RISE0_SHIFT    0
79 #define EXYNOS_TMU_INTEN_FALL0_SHIFT    16
80
81 #define EXYNOS_EMUL_TIME        0x57F0
82 #define EXYNOS_EMUL_TIME_MASK   0xffff
83 #define EXYNOS_EMUL_TIME_SHIFT  16
84 #define EXYNOS_EMUL_DATA_SHIFT  8
85 #define EXYNOS_EMUL_DATA_MASK   0xFF
86 #define EXYNOS_EMUL_ENABLE      0x1
87
88 /* Exynos5260 specific */
89 #define EXYNOS5260_TMU_REG_INTEN                0xC0
90 #define EXYNOS5260_TMU_REG_INTSTAT              0xC4
91 #define EXYNOS5260_TMU_REG_INTCLEAR             0xC8
92 #define EXYNOS5260_EMUL_CON                     0x100
93
94 /* Exynos4412 specific */
95 #define EXYNOS4412_MUX_ADDR_VALUE          6
96 #define EXYNOS4412_MUX_ADDR_SHIFT          20
97
98 /* Exynos5433 specific registers */
99 #define EXYNOS5433_THD_TEMP_RISE3_0             0x050
100 #define EXYNOS5433_THD_TEMP_RISE7_4             0x054
101 #define EXYNOS5433_THD_TEMP_FALL3_0             0x060
102 #define EXYNOS5433_THD_TEMP_FALL7_4             0x064
103 #define EXYNOS5433_TMU_REG_INTEN                0x0c0
104 #define EXYNOS5433_TMU_REG_INTPEND              0x0c8
105 #define EXYNOS5433_TMU_EMUL_CON                 0x110
106 #define EXYNOS5433_TMU_PD_DET_EN                0x130
107
108 #define EXYNOS5433_TRIMINFO_SENSOR_ID_SHIFT     16
109 #define EXYNOS5433_TRIMINFO_CALIB_SEL_SHIFT     23
110 #define EXYNOS5433_TRIMINFO_SENSOR_ID_MASK      \
111                         (0xf << EXYNOS5433_TRIMINFO_SENSOR_ID_SHIFT)
112 #define EXYNOS5433_TRIMINFO_CALIB_SEL_MASK      BIT(23)
113
114 #define EXYNOS5433_TRIMINFO_ONE_POINT_TRIMMING  0
115 #define EXYNOS5433_TRIMINFO_TWO_POINT_TRIMMING  1
116
117 #define EXYNOS5433_PD_DET_EN                    1
118
119 #define EXYNOS5433_G3D_BASE                     0x10070000
120
121 /* Exynos7 specific registers */
122 #define EXYNOS7_THD_TEMP_RISE7_6                0x50
123 #define EXYNOS7_THD_TEMP_FALL7_6                0x60
124 #define EXYNOS7_TMU_REG_INTEN                   0x110
125 #define EXYNOS7_TMU_REG_INTPEND                 0x118
126 #define EXYNOS7_TMU_REG_EMUL_CON                0x160
127
128 #define EXYNOS7_TMU_TEMP_MASK                   0x1ff
129 #define EXYNOS7_PD_DET_EN_SHIFT                 23
130 #define EXYNOS7_TMU_INTEN_RISE0_SHIFT           0
131 #define EXYNOS7_EMUL_DATA_SHIFT                 7
132 #define EXYNOS7_EMUL_DATA_MASK                  0x1ff
133
134 #define EXYNOS_FIRST_POINT_TRIM                 25
135 #define EXYNOS_SECOND_POINT_TRIM                85
136
137 #define EXYNOS_NOISE_CANCEL_MODE                4
138
139 #define MCELSIUS        1000
140
141 enum soc_type {
142         SOC_ARCH_EXYNOS3250 = 1,
143         SOC_ARCH_EXYNOS4210,
144         SOC_ARCH_EXYNOS4412,
145         SOC_ARCH_EXYNOS5250,
146         SOC_ARCH_EXYNOS5260,
147         SOC_ARCH_EXYNOS5420,
148         SOC_ARCH_EXYNOS5420_TRIMINFO,
149         SOC_ARCH_EXYNOS5433,
150         SOC_ARCH_EXYNOS7,
151 };
152
153 /**
154  * struct exynos_tmu_data : A structure to hold the private data of the TMU
155         driver
156  * @id: identifier of the one instance of the TMU controller.
157  * @base: base address of the single instance of the TMU controller.
158  * @base_second: base address of the common registers of the TMU controller.
159  * @irq: irq number of the TMU controller.
160  * @soc: id of the SOC type.
161  * @irq_work: pointer to the irq work structure.
162  * @lock: lock to implement synchronization.
163  * @clk: pointer to the clock structure.
164  * @clk_sec: pointer to the clock structure for accessing the base_second.
165  * @sclk: pointer to the clock structure for accessing the tmu special clk.
166  * @cal_type: calibration type for temperature
167  * @efuse_value: SoC defined fuse value
168  * @min_efuse_value: minimum valid trimming data
169  * @max_efuse_value: maximum valid trimming data
170  * @temp_error1: fused value of the first point trim.
171  * @temp_error2: fused value of the second point trim.
172  * @gain: gain of amplifier in the positive-TC generator block
173  *      0 < gain <= 15
174  * @reference_voltage: reference voltage of amplifier
175  *      in the positive-TC generator block
176  *      0 < reference_voltage <= 31
177  * @regulator: pointer to the TMU regulator structure.
178  * @reg_conf: pointer to structure to register with core thermal.
179  * @ntrip: number of supported trip points.
180  * @enabled: current status of TMU device
181  * @tmu_initialize: SoC specific TMU initialization method
182  * @tmu_control: SoC specific TMU control method
183  * @tmu_read: SoC specific TMU temperature read method
184  * @tmu_set_emulation: SoC specific TMU emulation setting method
185  * @tmu_clear_irqs: SoC specific TMU interrupts clearing method
186  */
187 struct exynos_tmu_data {
188         int id;
189         void __iomem *base;
190         void __iomem *base_second;
191         int irq;
192         enum soc_type soc;
193         struct work_struct irq_work;
194         struct mutex lock;
195         struct clk *clk, *clk_sec, *sclk;
196         u32 cal_type;
197         u32 efuse_value;
198         u32 min_efuse_value;
199         u32 max_efuse_value;
200         u16 temp_error1, temp_error2;
201         u8 gain;
202         u8 reference_voltage;
203         struct regulator *regulator;
204         struct thermal_zone_device *tzd;
205         unsigned int ntrip;
206         bool enabled;
207
208         void (*tmu_set_trip_temp)(struct exynos_tmu_data *data, int trip,
209                                  u8 temp);
210         void (*tmu_set_trip_hyst)(struct exynos_tmu_data *data, int trip,
211                                  u8 temp, u8 hyst);
212         void (*tmu_initialize)(struct platform_device *pdev);
213         void (*tmu_control)(struct platform_device *pdev, bool on);
214         int (*tmu_read)(struct exynos_tmu_data *data);
215         void (*tmu_set_emulation)(struct exynos_tmu_data *data, int temp);
216         void (*tmu_clear_irqs)(struct exynos_tmu_data *data);
217 };
218
219 /*
220  * TMU treats temperature as a mapped temperature code.
221  * The temperature is converted differently depending on the calibration type.
222  */
223 static int temp_to_code(struct exynos_tmu_data *data, u8 temp)
224 {
225         if (data->cal_type == TYPE_ONE_POINT_TRIMMING)
226                 return temp + data->temp_error1 - EXYNOS_FIRST_POINT_TRIM;
227
228         return (temp - EXYNOS_FIRST_POINT_TRIM) *
229                 (data->temp_error2 - data->temp_error1) /
230                 (EXYNOS_SECOND_POINT_TRIM - EXYNOS_FIRST_POINT_TRIM) +
231                 data->temp_error1;
232 }
233
234 /*
235  * Calculate a temperature value from a temperature code.
236  * The unit of the temperature is degree Celsius.
237  */
238 static int code_to_temp(struct exynos_tmu_data *data, u16 temp_code)
239 {
240         if (data->cal_type == TYPE_ONE_POINT_TRIMMING)
241                 return temp_code - data->temp_error1 + EXYNOS_FIRST_POINT_TRIM;
242
243         return (temp_code - data->temp_error1) *
244                 (EXYNOS_SECOND_POINT_TRIM - EXYNOS_FIRST_POINT_TRIM) /
245                 (data->temp_error2 - data->temp_error1) +
246                 EXYNOS_FIRST_POINT_TRIM;
247 }
248
249 static void sanitize_temp_error(struct exynos_tmu_data *data, u32 trim_info)
250 {
251         u16 tmu_temp_mask =
252                 (data->soc == SOC_ARCH_EXYNOS7) ? EXYNOS7_TMU_TEMP_MASK
253                                                 : EXYNOS_TMU_TEMP_MASK;
254
255         data->temp_error1 = trim_info & tmu_temp_mask;
256         data->temp_error2 = ((trim_info >> EXYNOS_TRIMINFO_85_SHIFT) &
257                                 EXYNOS_TMU_TEMP_MASK);
258
259         if (!data->temp_error1 ||
260             (data->min_efuse_value > data->temp_error1) ||
261             (data->temp_error1 > data->max_efuse_value))
262                 data->temp_error1 = data->efuse_value & EXYNOS_TMU_TEMP_MASK;
263
264         if (!data->temp_error2)
265                 data->temp_error2 =
266                         (data->efuse_value >> EXYNOS_TRIMINFO_85_SHIFT) &
267                         EXYNOS_TMU_TEMP_MASK;
268 }
269
270 static int exynos_tmu_initialize(struct platform_device *pdev)
271 {
272         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
273         struct thermal_zone_device *tzd = data->tzd;
274         const struct thermal_trip * const trips =
275                 of_thermal_get_trip_points(tzd);
276         unsigned int status;
277         int ret = 0, temp, hyst;
278
279         if (!trips) {
280                 dev_err(&pdev->dev,
281                         "Cannot get trip points from device tree!\n");
282                 return -ENODEV;
283         }
284
285         if (data->soc != SOC_ARCH_EXYNOS5433) /* FIXME */
286                 ret = tzd->ops->get_crit_temp(tzd, &temp);
287         if (ret) {
288                 dev_err(&pdev->dev,
289                         "No CRITICAL trip point defined in device tree!\n");
290                 goto out;
291         }
292
293         if (of_thermal_get_ntrips(tzd) > data->ntrip) {
294                 dev_info(&pdev->dev,
295                          "More trip points than supported by this TMU.\n");
296                 dev_info(&pdev->dev,
297                          "%d trip points should be configured in polling mode.\n",
298                          (of_thermal_get_ntrips(tzd) - data->ntrip));
299         }
300
301         mutex_lock(&data->lock);
302         clk_enable(data->clk);
303         if (!IS_ERR(data->clk_sec))
304                 clk_enable(data->clk_sec);
305
306         status = readb(data->base + EXYNOS_TMU_REG_STATUS);
307         if (!status) {
308                 ret = -EBUSY;
309         } else {
310                 int i, ntrips =
311                         min_t(int, of_thermal_get_ntrips(tzd), data->ntrip);
312
313                 data->tmu_initialize(pdev);
314
315                 /* Write temperature code for rising and falling threshold */
316                 for (i = 0; i < ntrips; i++) {
317                         /* Write temperature code for rising threshold */
318                         ret = tzd->ops->get_trip_temp(tzd, i, &temp);
319                         if (ret)
320                                 goto err;
321                         temp /= MCELSIUS;
322                         data->tmu_set_trip_temp(data, i, temp);
323
324                         /* Write temperature code for falling threshold */
325                         ret = tzd->ops->get_trip_hyst(tzd, i, &hyst);
326                         if (ret)
327                                 goto err;
328                         hyst /= MCELSIUS;
329                         data->tmu_set_trip_hyst(data, i, temp, hyst);
330                 }
331
332                 data->tmu_clear_irqs(data);
333         }
334 err:
335         clk_disable(data->clk);
336         mutex_unlock(&data->lock);
337         if (!IS_ERR(data->clk_sec))
338                 clk_disable(data->clk_sec);
339 out:
340         return ret;
341 }
342
343 static u32 get_con_reg(struct exynos_tmu_data *data, u32 con)
344 {
345         if (data->soc == SOC_ARCH_EXYNOS4412 ||
346             data->soc == SOC_ARCH_EXYNOS3250)
347                 con |= (EXYNOS4412_MUX_ADDR_VALUE << EXYNOS4412_MUX_ADDR_SHIFT);
348
349         con &= ~(EXYNOS_TMU_REF_VOLTAGE_MASK << EXYNOS_TMU_REF_VOLTAGE_SHIFT);
350         con |= data->reference_voltage << EXYNOS_TMU_REF_VOLTAGE_SHIFT;
351
352         con &= ~(EXYNOS_TMU_BUF_SLOPE_SEL_MASK << EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT);
353         con |= (data->gain << EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT);
354
355         con &= ~(EXYNOS_TMU_TRIP_MODE_MASK << EXYNOS_TMU_TRIP_MODE_SHIFT);
356         con |= (EXYNOS_NOISE_CANCEL_MODE << EXYNOS_TMU_TRIP_MODE_SHIFT);
357
358         return con;
359 }
360
361 static void exynos_tmu_control(struct platform_device *pdev, bool on)
362 {
363         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
364
365         mutex_lock(&data->lock);
366         clk_enable(data->clk);
367         data->tmu_control(pdev, on);
368         data->enabled = on;
369         clk_disable(data->clk);
370         mutex_unlock(&data->lock);
371 }
372
373 static void exynos4210_tmu_set_trip_temp(struct exynos_tmu_data *data,
374                                          int trip, u8 temp)
375 {
376         const struct thermal_trip * const trips =
377                 of_thermal_get_trip_points(data->tzd);
378         u8 ref, th_code;
379
380         ref = trips[0].temperature / MCELSIUS;
381
382         if (trip == 0) {
383                 th_code = temp_to_code(data, ref);
384                 writeb(th_code, data->base + EXYNOS4210_TMU_REG_THRESHOLD_TEMP);
385         }
386
387         temp -= ref;
388         writeb(temp, data->base + EXYNOS4210_TMU_REG_TRIG_LEVEL0 + trip * 4);
389 }
390
391 /* failing thresholds are not supported on Exynos4210 */
392 static void exynos4210_tmu_set_trip_hyst(struct exynos_tmu_data *data,
393                                          int trip, u8 temp, u8 hyst)
394 {
395 }
396
397 static void exynos4210_tmu_initialize(struct platform_device *pdev)
398 {
399         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
400
401         sanitize_temp_error(data, readl(data->base + EXYNOS_TMU_REG_TRIMINFO));
402 }
403
404 static void exynos4412_tmu_set_trip_temp(struct exynos_tmu_data *data,
405                                          int trip, u8 temp)
406 {
407         u32 th, con;
408
409         th = readl(data->base + EXYNOS_THD_TEMP_RISE);
410         th &= ~(0xff << 8 * trip);
411         th |= temp_to_code(data, temp) << 8 * trip;
412         writel(th, data->base + EXYNOS_THD_TEMP_RISE);
413
414         if (trip == 3) {
415                 con = readl(data->base + EXYNOS_TMU_REG_CONTROL);
416                 con |= (1 << EXYNOS_TMU_THERM_TRIP_EN_SHIFT);
417                 writel(con, data->base + EXYNOS_TMU_REG_CONTROL);
418         }
419 }
420
421 static void exynos4412_tmu_set_trip_hyst(struct exynos_tmu_data *data,
422                                          int trip, u8 temp, u8 hyst)
423 {
424         u32 th;
425
426         th = readl(data->base + EXYNOS_THD_TEMP_FALL);
427         th &= ~(0xff << 8 * trip);
428         if (hyst)
429                 th |= temp_to_code(data, temp - hyst) << 8 * trip;
430         writel(th, data->base + EXYNOS_THD_TEMP_FALL);
431 }
432
433 static void exynos4412_tmu_initialize(struct platform_device *pdev)
434 {
435         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
436         unsigned int trim_info, ctrl;
437
438         if (data->soc == SOC_ARCH_EXYNOS3250 ||
439             data->soc == SOC_ARCH_EXYNOS4412 ||
440             data->soc == SOC_ARCH_EXYNOS5250) {
441                 if (data->soc == SOC_ARCH_EXYNOS3250) {
442                         ctrl = readl(data->base + EXYNOS_TMU_TRIMINFO_CON1);
443                         ctrl |= EXYNOS_TRIMINFO_RELOAD_ENABLE;
444                         writel(ctrl, data->base + EXYNOS_TMU_TRIMINFO_CON1);
445                 }
446                 ctrl = readl(data->base + EXYNOS_TMU_TRIMINFO_CON2);
447                 ctrl |= EXYNOS_TRIMINFO_RELOAD_ENABLE;
448                 writel(ctrl, data->base + EXYNOS_TMU_TRIMINFO_CON2);
449         }
450
451         /* On exynos5420 the triminfo register is in the shared space */
452         if (data->soc == SOC_ARCH_EXYNOS5420_TRIMINFO)
453                 trim_info = readl(data->base_second + EXYNOS_TMU_REG_TRIMINFO);
454         else
455                 trim_info = readl(data->base + EXYNOS_TMU_REG_TRIMINFO);
456
457         sanitize_temp_error(data, trim_info);
458 }
459
460 static void exynos5433_tmu_set_trip_temp(struct exynos_tmu_data *data,
461                                          int trip, u8 temp)
462 {
463         unsigned int reg_off, j;
464         u32 th;
465
466         if (trip > 3) {
467                 reg_off = EXYNOS5433_THD_TEMP_RISE7_4;
468                 j = trip - 4;
469         } else {
470                 reg_off = EXYNOS5433_THD_TEMP_RISE3_0;
471                 j = trip;
472         }
473
474         th = readl(data->base + reg_off);
475         th &= ~(0xff << j * 8);
476         th |= (temp_to_code(data, temp) << j * 8);
477         writel(th, data->base + reg_off);
478 }
479
480 static void exynos5433_tmu_set_trip_hyst(struct exynos_tmu_data *data,
481                                          int trip, u8 temp, u8 hyst)
482 {
483         unsigned int reg_off, j;
484         u32 th;
485
486         if (trip > 3) {
487                 reg_off = EXYNOS5433_THD_TEMP_FALL7_4;
488                 j = trip - 4;
489         } else {
490                 reg_off = EXYNOS5433_THD_TEMP_FALL3_0;
491                 j = trip;
492         }
493
494         th = readl(data->base + reg_off);
495         th &= ~(0xff << j * 8);
496         th |= (temp_to_code(data, temp - hyst) << j * 8);
497         writel(th, data->base + reg_off);
498 }
499
500 static void exynos5433_tmu_initialize(struct platform_device *pdev)
501 {
502         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
503         unsigned int trim_info;
504         int sensor_id, cal_type;
505
506         trim_info = readl(data->base + EXYNOS_TMU_REG_TRIMINFO);
507         sanitize_temp_error(data, trim_info);
508
509         /* Read the temperature sensor id */
510         sensor_id = (trim_info & EXYNOS5433_TRIMINFO_SENSOR_ID_MASK)
511                                 >> EXYNOS5433_TRIMINFO_SENSOR_ID_SHIFT;
512         dev_info(&pdev->dev, "Temperature sensor ID: 0x%x\n", sensor_id);
513
514         /* Read the calibration mode */
515         writel(trim_info, data->base + EXYNOS_TMU_REG_TRIMINFO);
516         cal_type = (trim_info & EXYNOS5433_TRIMINFO_CALIB_SEL_MASK)
517                                 >> EXYNOS5433_TRIMINFO_CALIB_SEL_SHIFT;
518
519         switch (cal_type) {
520         case EXYNOS5433_TRIMINFO_TWO_POINT_TRIMMING:
521                 data->cal_type = TYPE_TWO_POINT_TRIMMING;
522                 break;
523         case EXYNOS5433_TRIMINFO_ONE_POINT_TRIMMING:
524         default:
525                 data->cal_type = TYPE_ONE_POINT_TRIMMING;
526                 break;
527         }
528
529         dev_info(&pdev->dev, "Calibration type is %d-point calibration\n",
530                         cal_type ?  2 : 1);
531 }
532
533 static void exynos7_tmu_set_trip_temp(struct exynos_tmu_data *data,
534                                       int trip, u8 temp)
535 {
536         unsigned int reg_off, bit_off;
537         u32 th;
538
539         reg_off = ((7 - trip) / 2) * 4;
540         bit_off = ((8 - trip) % 2);
541
542         th = readl(data->base + EXYNOS7_THD_TEMP_RISE7_6 + reg_off);
543         th &= ~(EXYNOS7_TMU_TEMP_MASK << (16 * bit_off));
544         th |= temp_to_code(data, temp) << (16 * bit_off);
545         writel(th, data->base + EXYNOS7_THD_TEMP_RISE7_6 + reg_off);
546 }
547
548 static void exynos7_tmu_set_trip_hyst(struct exynos_tmu_data *data,
549                                       int trip, u8 temp, u8 hyst)
550 {
551         unsigned int reg_off, bit_off;
552         u32 th;
553
554         reg_off = ((7 - trip) / 2) * 4;
555         bit_off = ((8 - trip) % 2);
556
557         th = readl(data->base + EXYNOS7_THD_TEMP_FALL7_6 + reg_off);
558         th &= ~(EXYNOS7_TMU_TEMP_MASK << (16 * bit_off));
559         th |= temp_to_code(data, temp - hyst) << (16 * bit_off);
560         writel(th, data->base + EXYNOS7_THD_TEMP_FALL7_6 + reg_off);
561 }
562
563 static void exynos7_tmu_initialize(struct platform_device *pdev)
564 {
565         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
566         unsigned int trim_info;
567
568         trim_info = readl(data->base + EXYNOS_TMU_REG_TRIMINFO);
569         sanitize_temp_error(data, trim_info);
570 }
571
572 static void exynos4210_tmu_control(struct platform_device *pdev, bool on)
573 {
574         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
575         struct thermal_zone_device *tz = data->tzd;
576         unsigned int con, interrupt_en = 0, i;
577
578         con = get_con_reg(data, readl(data->base + EXYNOS_TMU_REG_CONTROL));
579
580         if (on) {
581                 for (i = 0; i < data->ntrip; i++) {
582                         if (!of_thermal_is_trip_valid(tz, i))
583                                 continue;
584
585                         interrupt_en |=
586                                 (1 << (EXYNOS_TMU_INTEN_RISE0_SHIFT + i * 4));
587                 }
588
589                 if (data->soc != SOC_ARCH_EXYNOS4210)
590                         interrupt_en |=
591                                 interrupt_en << EXYNOS_TMU_INTEN_FALL0_SHIFT;
592
593                 con |= (1 << EXYNOS_TMU_CORE_EN_SHIFT);
594         } else {
595                 con &= ~(1 << EXYNOS_TMU_CORE_EN_SHIFT);
596         }
597
598         writel(interrupt_en, data->base + EXYNOS_TMU_REG_INTEN);
599         writel(con, data->base + EXYNOS_TMU_REG_CONTROL);
600 }
601
602 static void exynos5433_tmu_control(struct platform_device *pdev, bool on)
603 {
604         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
605         struct thermal_zone_device *tz = data->tzd;
606         unsigned int con, interrupt_en = 0, pd_det_en, i;
607
608         con = get_con_reg(data, readl(data->base + EXYNOS_TMU_REG_CONTROL));
609
610         if (on) {
611                 for (i = 0; i < data->ntrip; i++) {
612                         if (!of_thermal_is_trip_valid(tz, i))
613                                 continue;
614
615                         interrupt_en |=
616                                 (1 << (EXYNOS7_TMU_INTEN_RISE0_SHIFT + i));
617                 }
618
619                 interrupt_en |=
620                         interrupt_en << EXYNOS_TMU_INTEN_FALL0_SHIFT;
621
622                 con |= (1 << EXYNOS_TMU_CORE_EN_SHIFT);
623         } else
624                 con &= ~(1 << EXYNOS_TMU_CORE_EN_SHIFT);
625
626         pd_det_en = on ? EXYNOS5433_PD_DET_EN : 0;
627
628         writel(pd_det_en, data->base + EXYNOS5433_TMU_PD_DET_EN);
629         writel(interrupt_en, data->base + EXYNOS5433_TMU_REG_INTEN);
630         writel(con, data->base + EXYNOS_TMU_REG_CONTROL);
631 }
632
633 static void exynos7_tmu_control(struct platform_device *pdev, bool on)
634 {
635         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
636         struct thermal_zone_device *tz = data->tzd;
637         unsigned int con, interrupt_en = 0, i;
638
639         con = get_con_reg(data, readl(data->base + EXYNOS_TMU_REG_CONTROL));
640
641         if (on) {
642                 for (i = 0; i < data->ntrip; i++) {
643                         if (!of_thermal_is_trip_valid(tz, i))
644                                 continue;
645
646                         interrupt_en |=
647                                 (1 << (EXYNOS7_TMU_INTEN_RISE0_SHIFT + i));
648                 }
649
650                 interrupt_en |=
651                         interrupt_en << EXYNOS_TMU_INTEN_FALL0_SHIFT;
652
653                 con |= (1 << EXYNOS_TMU_CORE_EN_SHIFT);
654                 con |= (1 << EXYNOS7_PD_DET_EN_SHIFT);
655         } else {
656                 con &= ~(1 << EXYNOS_TMU_CORE_EN_SHIFT);
657                 con &= ~(1 << EXYNOS7_PD_DET_EN_SHIFT);
658         }
659
660         writel(interrupt_en, data->base + EXYNOS7_TMU_REG_INTEN);
661         writel(con, data->base + EXYNOS_TMU_REG_CONTROL);
662 }
663
664 static int exynos_get_temp(void *p, int *temp)
665 {
666         struct exynos_tmu_data *data = p;
667         int value, ret = 0;
668
669         if (!data || !data->tmu_read || !data->enabled)
670                 return -EINVAL;
671         else if (!data->enabled)
672                 /*
673                  * Called too early, probably
674                  * from thermal_zone_of_sensor_register().
675                  */
676                 return -EAGAIN;
677
678         mutex_lock(&data->lock);
679         clk_enable(data->clk);
680
681         value = data->tmu_read(data);
682         if (value < 0)
683                 ret = value;
684         else
685                 *temp = code_to_temp(data, value) * MCELSIUS;
686
687         clk_disable(data->clk);
688         mutex_unlock(&data->lock);
689
690         return ret;
691 }
692
693 #ifdef CONFIG_THERMAL_EMULATION
694 static u32 get_emul_con_reg(struct exynos_tmu_data *data, unsigned int val,
695                             int temp)
696 {
697         if (temp) {
698                 temp /= MCELSIUS;
699
700                 val &= ~(EXYNOS_EMUL_TIME_MASK << EXYNOS_EMUL_TIME_SHIFT);
701                 val |= (EXYNOS_EMUL_TIME << EXYNOS_EMUL_TIME_SHIFT);
702                 if (data->soc == SOC_ARCH_EXYNOS7) {
703                         val &= ~(EXYNOS7_EMUL_DATA_MASK <<
704                                 EXYNOS7_EMUL_DATA_SHIFT);
705                         val |= (temp_to_code(data, temp) <<
706                                 EXYNOS7_EMUL_DATA_SHIFT) |
707                                 EXYNOS_EMUL_ENABLE;
708                 } else {
709                         val &= ~(EXYNOS_EMUL_DATA_MASK <<
710                                 EXYNOS_EMUL_DATA_SHIFT);
711                         val |= (temp_to_code(data, temp) <<
712                                 EXYNOS_EMUL_DATA_SHIFT) |
713                                 EXYNOS_EMUL_ENABLE;
714                 }
715         } else {
716                 val &= ~EXYNOS_EMUL_ENABLE;
717         }
718
719         return val;
720 }
721
722 static void exynos4412_tmu_set_emulation(struct exynos_tmu_data *data,
723                                          int temp)
724 {
725         unsigned int val;
726         u32 emul_con;
727
728         if (data->soc == SOC_ARCH_EXYNOS5260)
729                 emul_con = EXYNOS5260_EMUL_CON;
730         else if (data->soc == SOC_ARCH_EXYNOS5433)
731                 emul_con = EXYNOS5433_TMU_EMUL_CON;
732         else if (data->soc == SOC_ARCH_EXYNOS7)
733                 emul_con = EXYNOS7_TMU_REG_EMUL_CON;
734         else
735                 emul_con = EXYNOS_EMUL_CON;
736
737         val = readl(data->base + emul_con);
738         val = get_emul_con_reg(data, val, temp);
739         writel(val, data->base + emul_con);
740 }
741
742 static int exynos_tmu_set_emulation(void *drv_data, int temp)
743 {
744         struct exynos_tmu_data *data = drv_data;
745         int ret = -EINVAL;
746
747         if (data->soc == SOC_ARCH_EXYNOS4210)
748                 goto out;
749
750         if (temp && temp < MCELSIUS)
751                 goto out;
752
753         mutex_lock(&data->lock);
754         clk_enable(data->clk);
755         data->tmu_set_emulation(data, temp);
756         clk_disable(data->clk);
757         mutex_unlock(&data->lock);
758         return 0;
759 out:
760         return ret;
761 }
762 #else
763 #define exynos4412_tmu_set_emulation NULL
764 static int exynos_tmu_set_emulation(void *drv_data, int temp)
765         { return -EINVAL; }
766 #endif /* CONFIG_THERMAL_EMULATION */
767
768 static int exynos4210_tmu_read(struct exynos_tmu_data *data)
769 {
770         int ret = readb(data->base + EXYNOS_TMU_REG_CURRENT_TEMP);
771
772         /* "temp_code" should range between 75 and 175 */
773         return (ret < 75 || ret > 175) ? -ENODATA : ret;
774 }
775
776 static int exynos4412_tmu_read(struct exynos_tmu_data *data)
777 {
778         return readb(data->base + EXYNOS_TMU_REG_CURRENT_TEMP);
779 }
780
781 static int exynos7_tmu_read(struct exynos_tmu_data *data)
782 {
783         return readw(data->base + EXYNOS_TMU_REG_CURRENT_TEMP) &
784                 EXYNOS7_TMU_TEMP_MASK;
785 }
786
787 static void exynos_tmu_work(struct work_struct *work)
788 {
789         struct exynos_tmu_data *data = container_of(work,
790                         struct exynos_tmu_data, irq_work);
791
792         if (!IS_ERR(data->clk_sec))
793                 clk_enable(data->clk_sec);
794         if (!IS_ERR(data->clk_sec))
795                 clk_disable(data->clk_sec);
796
797         thermal_zone_device_update(data->tzd, THERMAL_EVENT_UNSPECIFIED);
798
799         mutex_lock(&data->lock);
800         clk_enable(data->clk);
801
802         /* TODO: take action based on particular interrupt */
803         data->tmu_clear_irqs(data);
804
805         clk_disable(data->clk);
806         mutex_unlock(&data->lock);
807         enable_irq(data->irq);
808 }
809
810 static void exynos4210_tmu_clear_irqs(struct exynos_tmu_data *data)
811 {
812         unsigned int val_irq;
813         u32 tmu_intstat, tmu_intclear;
814
815         if (data->soc == SOC_ARCH_EXYNOS5260) {
816                 tmu_intstat = EXYNOS5260_TMU_REG_INTSTAT;
817                 tmu_intclear = EXYNOS5260_TMU_REG_INTCLEAR;
818         } else if (data->soc == SOC_ARCH_EXYNOS7) {
819                 tmu_intstat = EXYNOS7_TMU_REG_INTPEND;
820                 tmu_intclear = EXYNOS7_TMU_REG_INTPEND;
821         } else if (data->soc == SOC_ARCH_EXYNOS5433) {
822                 tmu_intstat = EXYNOS5433_TMU_REG_INTPEND;
823                 tmu_intclear = EXYNOS5433_TMU_REG_INTPEND;
824         } else {
825                 tmu_intstat = EXYNOS_TMU_REG_INTSTAT;
826                 tmu_intclear = EXYNOS_TMU_REG_INTCLEAR;
827         }
828
829         val_irq = readl(data->base + tmu_intstat);
830         /*
831          * Clear the interrupts.  Please note that the documentation for
832          * Exynos3250, Exynos4412, Exynos5250 and Exynos5260 incorrectly
833          * states that INTCLEAR register has a different placing of bits
834          * responsible for FALL IRQs than INTSTAT register.  Exynos5420
835          * and Exynos5440 documentation is correct (Exynos4210 doesn't
836          * support FALL IRQs at all).
837          */
838         writel(val_irq, data->base + tmu_intclear);
839 }
840
841 static irqreturn_t exynos_tmu_irq(int irq, void *id)
842 {
843         struct exynos_tmu_data *data = id;
844
845         disable_irq_nosync(irq);
846         schedule_work(&data->irq_work);
847
848         return IRQ_HANDLED;
849 }
850
851 static const struct of_device_id exynos_tmu_match[] = {
852         {
853                 .compatible = "samsung,exynos3250-tmu",
854                 .data = (const void *)SOC_ARCH_EXYNOS3250,
855         }, {
856                 .compatible = "samsung,exynos4210-tmu",
857                 .data = (const void *)SOC_ARCH_EXYNOS4210,
858         }, {
859                 .compatible = "samsung,exynos4412-tmu",
860                 .data = (const void *)SOC_ARCH_EXYNOS4412,
861         }, {
862                 .compatible = "samsung,exynos5250-tmu",
863                 .data = (const void *)SOC_ARCH_EXYNOS5250,
864         }, {
865                 .compatible = "samsung,exynos5260-tmu",
866                 .data = (const void *)SOC_ARCH_EXYNOS5260,
867         }, {
868                 .compatible = "samsung,exynos5420-tmu",
869                 .data = (const void *)SOC_ARCH_EXYNOS5420,
870         }, {
871                 .compatible = "samsung,exynos5420-tmu-ext-triminfo",
872                 .data = (const void *)SOC_ARCH_EXYNOS5420_TRIMINFO,
873         }, {
874                 .compatible = "samsung,exynos5433-tmu",
875                 .data = (const void *)SOC_ARCH_EXYNOS5433,
876         }, {
877                 .compatible = "samsung,exynos7-tmu",
878                 .data = (const void *)SOC_ARCH_EXYNOS7,
879         },
880         { },
881 };
882 MODULE_DEVICE_TABLE(of, exynos_tmu_match);
883
884 static int exynos_map_dt_data(struct platform_device *pdev)
885 {
886         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
887         struct resource res;
888
889         if (!data || !pdev->dev.of_node)
890                 return -ENODEV;
891
892         data->id = of_alias_get_id(pdev->dev.of_node, "tmuctrl");
893         if (data->id < 0)
894                 data->id = 0;
895
896         data->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
897         if (data->irq <= 0) {
898                 dev_err(&pdev->dev, "failed to get IRQ\n");
899                 return -ENODEV;
900         }
901
902         if (of_address_to_resource(pdev->dev.of_node, 0, &res)) {
903                 dev_err(&pdev->dev, "failed to get Resource 0\n");
904                 return -ENODEV;
905         }
906
907         data->base = devm_ioremap(&pdev->dev, res.start, resource_size(&res));
908         if (!data->base) {
909                 dev_err(&pdev->dev, "Failed to ioremap memory\n");
910                 return -EADDRNOTAVAIL;
911         }
912
913         data->soc = (enum soc_type)of_device_get_match_data(&pdev->dev);
914
915         switch (data->soc) {
916         case SOC_ARCH_EXYNOS4210:
917                 data->tmu_set_trip_temp = exynos4210_tmu_set_trip_temp;
918                 data->tmu_set_trip_hyst = exynos4210_tmu_set_trip_hyst;
919                 data->tmu_initialize = exynos4210_tmu_initialize;
920                 data->tmu_control = exynos4210_tmu_control;
921                 data->tmu_read = exynos4210_tmu_read;
922                 data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
923                 data->ntrip = 4;
924                 data->gain = 15;
925                 data->reference_voltage = 7;
926                 data->efuse_value = 55;
927                 data->min_efuse_value = 40;
928                 data->max_efuse_value = 100;
929                 break;
930         case SOC_ARCH_EXYNOS3250:
931         case SOC_ARCH_EXYNOS4412:
932         case SOC_ARCH_EXYNOS5250:
933         case SOC_ARCH_EXYNOS5260:
934         case SOC_ARCH_EXYNOS5420:
935         case SOC_ARCH_EXYNOS5420_TRIMINFO:
936                 data->tmu_set_trip_temp = exynos4412_tmu_set_trip_temp;
937                 data->tmu_set_trip_hyst = exynos4412_tmu_set_trip_hyst;
938                 data->tmu_initialize = exynos4412_tmu_initialize;
939                 data->tmu_control = exynos4210_tmu_control;
940                 data->tmu_read = exynos4412_tmu_read;
941                 data->tmu_set_emulation = exynos4412_tmu_set_emulation;
942                 data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
943                 data->ntrip = 4;
944                 data->gain = 8;
945                 data->reference_voltage = 16;
946                 data->efuse_value = 55;
947                 if (data->soc != SOC_ARCH_EXYNOS5420 &&
948                     data->soc != SOC_ARCH_EXYNOS5420_TRIMINFO)
949                         data->min_efuse_value = 40;
950                 else
951                         data->min_efuse_value = 0;
952                 data->max_efuse_value = 100;
953                 break;
954         case SOC_ARCH_EXYNOS5433:
955                 data->tmu_set_trip_temp = exynos5433_tmu_set_trip_temp;
956                 data->tmu_set_trip_hyst = exynos5433_tmu_set_trip_hyst;
957                 data->tmu_initialize = exynos5433_tmu_initialize;
958                 data->tmu_control = exynos5433_tmu_control;
959                 data->tmu_read = exynos4412_tmu_read;
960                 data->tmu_set_emulation = exynos4412_tmu_set_emulation;
961                 data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
962                 data->ntrip = 8;
963                 data->gain = 8;
964                 if (res.start == EXYNOS5433_G3D_BASE)
965                         data->reference_voltage = 23;
966                 else
967                         data->reference_voltage = 16;
968                 data->efuse_value = 75;
969                 data->min_efuse_value = 40;
970                 data->max_efuse_value = 150;
971                 break;
972         case SOC_ARCH_EXYNOS7:
973                 data->tmu_set_trip_temp = exynos7_tmu_set_trip_temp;
974                 data->tmu_set_trip_hyst = exynos7_tmu_set_trip_hyst;
975                 data->tmu_initialize = exynos7_tmu_initialize;
976                 data->tmu_control = exynos7_tmu_control;
977                 data->tmu_read = exynos7_tmu_read;
978                 data->tmu_set_emulation = exynos4412_tmu_set_emulation;
979                 data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
980                 data->ntrip = 8;
981                 data->gain = 9;
982                 data->reference_voltage = 17;
983                 data->efuse_value = 75;
984                 data->min_efuse_value = 15;
985                 data->max_efuse_value = 100;
986                 break;
987         default:
988                 dev_err(&pdev->dev, "Platform not supported\n");
989                 return -EINVAL;
990         }
991
992         data->cal_type = TYPE_ONE_POINT_TRIMMING;
993
994         /*
995          * Check if the TMU shares some registers and then try to map the
996          * memory of common registers.
997          */
998         if (data->soc != SOC_ARCH_EXYNOS5420_TRIMINFO)
999                 return 0;
1000
1001         if (of_address_to_resource(pdev->dev.of_node, 1, &res)) {
1002                 dev_err(&pdev->dev, "failed to get Resource 1\n");
1003                 return -ENODEV;
1004         }
1005
1006         data->base_second = devm_ioremap(&pdev->dev, res.start,
1007                                         resource_size(&res));
1008         if (!data->base_second) {
1009                 dev_err(&pdev->dev, "Failed to ioremap memory\n");
1010                 return -ENOMEM;
1011         }
1012
1013         return 0;
1014 }
1015
1016 static const struct thermal_zone_of_device_ops exynos_sensor_ops = {
1017         .get_temp = exynos_get_temp,
1018         .set_emul_temp = exynos_tmu_set_emulation,
1019 };
1020
1021 static int exynos_tmu_probe(struct platform_device *pdev)
1022 {
1023         struct exynos_tmu_data *data;
1024         int ret;
1025
1026         data = devm_kzalloc(&pdev->dev, sizeof(struct exynos_tmu_data),
1027                                         GFP_KERNEL);
1028         if (!data)
1029                 return -ENOMEM;
1030
1031         platform_set_drvdata(pdev, data);
1032         mutex_init(&data->lock);
1033
1034         /*
1035          * Try enabling the regulator if found
1036          * TODO: Add regulator as an SOC feature, so that regulator enable
1037          * is a compulsory call.
1038          */
1039         data->regulator = devm_regulator_get_optional(&pdev->dev, "vtmu");
1040         if (!IS_ERR(data->regulator)) {
1041                 ret = regulator_enable(data->regulator);
1042                 if (ret) {
1043                         dev_err(&pdev->dev, "failed to enable vtmu\n");
1044                         return ret;
1045                 }
1046         } else {
1047                 if (PTR_ERR(data->regulator) == -EPROBE_DEFER)
1048                         return -EPROBE_DEFER;
1049                 dev_info(&pdev->dev, "Regulator node (vtmu) not found\n");
1050         }
1051
1052         ret = exynos_map_dt_data(pdev);
1053         if (ret)
1054                 goto err_sensor;
1055
1056         INIT_WORK(&data->irq_work, exynos_tmu_work);
1057
1058         data->clk = devm_clk_get(&pdev->dev, "tmu_apbif");
1059         if (IS_ERR(data->clk)) {
1060                 dev_err(&pdev->dev, "Failed to get clock\n");
1061                 ret = PTR_ERR(data->clk);
1062                 goto err_sensor;
1063         }
1064
1065         data->clk_sec = devm_clk_get(&pdev->dev, "tmu_triminfo_apbif");
1066         if (IS_ERR(data->clk_sec)) {
1067                 if (data->soc == SOC_ARCH_EXYNOS5420_TRIMINFO) {
1068                         dev_err(&pdev->dev, "Failed to get triminfo clock\n");
1069                         ret = PTR_ERR(data->clk_sec);
1070                         goto err_sensor;
1071                 }
1072         } else {
1073                 ret = clk_prepare(data->clk_sec);
1074                 if (ret) {
1075                         dev_err(&pdev->dev, "Failed to get clock\n");
1076                         goto err_sensor;
1077                 }
1078         }
1079
1080         ret = clk_prepare(data->clk);
1081         if (ret) {
1082                 dev_err(&pdev->dev, "Failed to get clock\n");
1083                 goto err_clk_sec;
1084         }
1085
1086         switch (data->soc) {
1087         case SOC_ARCH_EXYNOS5433:
1088         case SOC_ARCH_EXYNOS7:
1089                 data->sclk = devm_clk_get(&pdev->dev, "tmu_sclk");
1090                 if (IS_ERR(data->sclk)) {
1091                         dev_err(&pdev->dev, "Failed to get sclk\n");
1092                         goto err_clk;
1093                 } else {
1094                         ret = clk_prepare_enable(data->sclk);
1095                         if (ret) {
1096                                 dev_err(&pdev->dev, "Failed to enable sclk\n");
1097                                 goto err_clk;
1098                         }
1099                 }
1100                 break;
1101         default:
1102                 break;
1103         }
1104
1105         /*
1106          * data->tzd must be registered before calling exynos_tmu_initialize(),
1107          * requesting irq and calling exynos_tmu_control().
1108          */
1109         data->tzd = thermal_zone_of_sensor_register(&pdev->dev, 0, data,
1110                                                     &exynos_sensor_ops);
1111         if (IS_ERR(data->tzd)) {
1112                 ret = PTR_ERR(data->tzd);
1113                 dev_err(&pdev->dev, "Failed to register sensor: %d\n", ret);
1114                 goto err_sclk;
1115         }
1116
1117         ret = exynos_tmu_initialize(pdev);
1118         if (ret) {
1119                 dev_err(&pdev->dev, "Failed to initialize TMU\n");
1120                 goto err_thermal;
1121         }
1122
1123         ret = devm_request_irq(&pdev->dev, data->irq, exynos_tmu_irq,
1124                 IRQF_TRIGGER_RISING | IRQF_SHARED, dev_name(&pdev->dev), data);
1125         if (ret) {
1126                 dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq);
1127                 goto err_thermal;
1128         }
1129
1130         exynos_tmu_control(pdev, true);
1131         return 0;
1132
1133 err_thermal:
1134         thermal_zone_of_sensor_unregister(&pdev->dev, data->tzd);
1135 err_sclk:
1136         clk_disable_unprepare(data->sclk);
1137 err_clk:
1138         clk_unprepare(data->clk);
1139 err_clk_sec:
1140         if (!IS_ERR(data->clk_sec))
1141                 clk_unprepare(data->clk_sec);
1142 err_sensor:
1143         if (!IS_ERR(data->regulator))
1144                 regulator_disable(data->regulator);
1145
1146         return ret;
1147 }
1148
1149 static int exynos_tmu_remove(struct platform_device *pdev)
1150 {
1151         struct exynos_tmu_data *data = platform_get_drvdata(pdev);
1152         struct thermal_zone_device *tzd = data->tzd;
1153
1154         thermal_zone_of_sensor_unregister(&pdev->dev, tzd);
1155         exynos_tmu_control(pdev, false);
1156
1157         clk_disable_unprepare(data->sclk);
1158         clk_unprepare(data->clk);
1159         if (!IS_ERR(data->clk_sec))
1160                 clk_unprepare(data->clk_sec);
1161
1162         if (!IS_ERR(data->regulator))
1163                 regulator_disable(data->regulator);
1164
1165         return 0;
1166 }
1167
1168 #ifdef CONFIG_PM_SLEEP
1169 static int exynos_tmu_suspend(struct device *dev)
1170 {
1171         exynos_tmu_control(to_platform_device(dev), false);
1172
1173         return 0;
1174 }
1175
1176 static int exynos_tmu_resume(struct device *dev)
1177 {
1178         struct platform_device *pdev = to_platform_device(dev);
1179
1180         exynos_tmu_initialize(pdev);
1181         exynos_tmu_control(pdev, true);
1182
1183         return 0;
1184 }
1185
1186 static SIMPLE_DEV_PM_OPS(exynos_tmu_pm,
1187                          exynos_tmu_suspend, exynos_tmu_resume);
1188 #define EXYNOS_TMU_PM   (&exynos_tmu_pm)
1189 #else
1190 #define EXYNOS_TMU_PM   NULL
1191 #endif
1192
1193 static struct platform_driver exynos_tmu_driver = {
1194         .driver = {
1195                 .name   = "exynos-tmu",
1196                 .pm     = EXYNOS_TMU_PM,
1197                 .of_match_table = exynos_tmu_match,
1198         },
1199         .probe = exynos_tmu_probe,
1200         .remove = exynos_tmu_remove,
1201 };
1202
1203 module_platform_driver(exynos_tmu_driver);
1204
1205 MODULE_DESCRIPTION("EXYNOS TMU Driver");
1206 MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
1207 MODULE_LICENSE("GPL");
1208 MODULE_ALIAS("platform:exynos-tmu");