xref: /linux/drivers/thermal/samsung/exynos_tmu.c (revision b43e3cfe232ab01f7cf1f60179a1d005f62d6cc0)
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 
672 	mutex_lock(&data->lock);
673 	clk_enable(data->clk);
674 
675 	value = data->tmu_read(data);
676 	if (value < 0)
677 		ret = value;
678 	else
679 		*temp = code_to_temp(data, value) * MCELSIUS;
680 
681 	clk_disable(data->clk);
682 	mutex_unlock(&data->lock);
683 
684 	return ret;
685 }
686 
687 #ifdef CONFIG_THERMAL_EMULATION
688 static u32 get_emul_con_reg(struct exynos_tmu_data *data, unsigned int val,
689 			    int temp)
690 {
691 	if (temp) {
692 		temp /= MCELSIUS;
693 
694 		val &= ~(EXYNOS_EMUL_TIME_MASK << EXYNOS_EMUL_TIME_SHIFT);
695 		val |= (EXYNOS_EMUL_TIME << EXYNOS_EMUL_TIME_SHIFT);
696 		if (data->soc == SOC_ARCH_EXYNOS7) {
697 			val &= ~(EXYNOS7_EMUL_DATA_MASK <<
698 				EXYNOS7_EMUL_DATA_SHIFT);
699 			val |= (temp_to_code(data, temp) <<
700 				EXYNOS7_EMUL_DATA_SHIFT) |
701 				EXYNOS_EMUL_ENABLE;
702 		} else {
703 			val &= ~(EXYNOS_EMUL_DATA_MASK <<
704 				EXYNOS_EMUL_DATA_SHIFT);
705 			val |= (temp_to_code(data, temp) <<
706 				EXYNOS_EMUL_DATA_SHIFT) |
707 				EXYNOS_EMUL_ENABLE;
708 		}
709 	} else {
710 		val &= ~EXYNOS_EMUL_ENABLE;
711 	}
712 
713 	return val;
714 }
715 
716 static void exynos4412_tmu_set_emulation(struct exynos_tmu_data *data,
717 					 int temp)
718 {
719 	unsigned int val;
720 	u32 emul_con;
721 
722 	if (data->soc == SOC_ARCH_EXYNOS5260)
723 		emul_con = EXYNOS5260_EMUL_CON;
724 	else if (data->soc == SOC_ARCH_EXYNOS5433)
725 		emul_con = EXYNOS5433_TMU_EMUL_CON;
726 	else if (data->soc == SOC_ARCH_EXYNOS7)
727 		emul_con = EXYNOS7_TMU_REG_EMUL_CON;
728 	else
729 		emul_con = EXYNOS_EMUL_CON;
730 
731 	val = readl(data->base + emul_con);
732 	val = get_emul_con_reg(data, val, temp);
733 	writel(val, data->base + emul_con);
734 }
735 
736 static int exynos_tmu_set_emulation(void *drv_data, int temp)
737 {
738 	struct exynos_tmu_data *data = drv_data;
739 	int ret = -EINVAL;
740 
741 	if (data->soc == SOC_ARCH_EXYNOS4210)
742 		goto out;
743 
744 	if (temp && temp < MCELSIUS)
745 		goto out;
746 
747 	mutex_lock(&data->lock);
748 	clk_enable(data->clk);
749 	data->tmu_set_emulation(data, temp);
750 	clk_disable(data->clk);
751 	mutex_unlock(&data->lock);
752 	return 0;
753 out:
754 	return ret;
755 }
756 #else
757 #define exynos4412_tmu_set_emulation NULL
758 static int exynos_tmu_set_emulation(void *drv_data, int temp)
759 	{ return -EINVAL; }
760 #endif /* CONFIG_THERMAL_EMULATION */
761 
762 static int exynos4210_tmu_read(struct exynos_tmu_data *data)
763 {
764 	int ret = readb(data->base + EXYNOS_TMU_REG_CURRENT_TEMP);
765 
766 	/* "temp_code" should range between 75 and 175 */
767 	return (ret < 75 || ret > 175) ? -ENODATA : ret;
768 }
769 
770 static int exynos4412_tmu_read(struct exynos_tmu_data *data)
771 {
772 	return readb(data->base + EXYNOS_TMU_REG_CURRENT_TEMP);
773 }
774 
775 static int exynos7_tmu_read(struct exynos_tmu_data *data)
776 {
777 	return readw(data->base + EXYNOS_TMU_REG_CURRENT_TEMP) &
778 		EXYNOS7_TMU_TEMP_MASK;
779 }
780 
781 static void exynos_tmu_work(struct work_struct *work)
782 {
783 	struct exynos_tmu_data *data = container_of(work,
784 			struct exynos_tmu_data, irq_work);
785 
786 	if (!IS_ERR(data->clk_sec))
787 		clk_enable(data->clk_sec);
788 	if (!IS_ERR(data->clk_sec))
789 		clk_disable(data->clk_sec);
790 
791 	thermal_zone_device_update(data->tzd, THERMAL_EVENT_UNSPECIFIED);
792 
793 	mutex_lock(&data->lock);
794 	clk_enable(data->clk);
795 
796 	/* TODO: take action based on particular interrupt */
797 	data->tmu_clear_irqs(data);
798 
799 	clk_disable(data->clk);
800 	mutex_unlock(&data->lock);
801 	enable_irq(data->irq);
802 }
803 
804 static void exynos4210_tmu_clear_irqs(struct exynos_tmu_data *data)
805 {
806 	unsigned int val_irq;
807 	u32 tmu_intstat, tmu_intclear;
808 
809 	if (data->soc == SOC_ARCH_EXYNOS5260) {
810 		tmu_intstat = EXYNOS5260_TMU_REG_INTSTAT;
811 		tmu_intclear = EXYNOS5260_TMU_REG_INTCLEAR;
812 	} else if (data->soc == SOC_ARCH_EXYNOS7) {
813 		tmu_intstat = EXYNOS7_TMU_REG_INTPEND;
814 		tmu_intclear = EXYNOS7_TMU_REG_INTPEND;
815 	} else if (data->soc == SOC_ARCH_EXYNOS5433) {
816 		tmu_intstat = EXYNOS5433_TMU_REG_INTPEND;
817 		tmu_intclear = EXYNOS5433_TMU_REG_INTPEND;
818 	} else {
819 		tmu_intstat = EXYNOS_TMU_REG_INTSTAT;
820 		tmu_intclear = EXYNOS_TMU_REG_INTCLEAR;
821 	}
822 
823 	val_irq = readl(data->base + tmu_intstat);
824 	/*
825 	 * Clear the interrupts.  Please note that the documentation for
826 	 * Exynos3250, Exynos4412, Exynos5250 and Exynos5260 incorrectly
827 	 * states that INTCLEAR register has a different placing of bits
828 	 * responsible for FALL IRQs than INTSTAT register.  Exynos5420
829 	 * and Exynos5440 documentation is correct (Exynos4210 doesn't
830 	 * support FALL IRQs at all).
831 	 */
832 	writel(val_irq, data->base + tmu_intclear);
833 }
834 
835 static irqreturn_t exynos_tmu_irq(int irq, void *id)
836 {
837 	struct exynos_tmu_data *data = id;
838 
839 	disable_irq_nosync(irq);
840 	schedule_work(&data->irq_work);
841 
842 	return IRQ_HANDLED;
843 }
844 
845 static const struct of_device_id exynos_tmu_match[] = {
846 	{
847 		.compatible = "samsung,exynos3250-tmu",
848 		.data = (const void *)SOC_ARCH_EXYNOS3250,
849 	}, {
850 		.compatible = "samsung,exynos4210-tmu",
851 		.data = (const void *)SOC_ARCH_EXYNOS4210,
852 	}, {
853 		.compatible = "samsung,exynos4412-tmu",
854 		.data = (const void *)SOC_ARCH_EXYNOS4412,
855 	}, {
856 		.compatible = "samsung,exynos5250-tmu",
857 		.data = (const void *)SOC_ARCH_EXYNOS5250,
858 	}, {
859 		.compatible = "samsung,exynos5260-tmu",
860 		.data = (const void *)SOC_ARCH_EXYNOS5260,
861 	}, {
862 		.compatible = "samsung,exynos5420-tmu",
863 		.data = (const void *)SOC_ARCH_EXYNOS5420,
864 	}, {
865 		.compatible = "samsung,exynos5420-tmu-ext-triminfo",
866 		.data = (const void *)SOC_ARCH_EXYNOS5420_TRIMINFO,
867 	}, {
868 		.compatible = "samsung,exynos5433-tmu",
869 		.data = (const void *)SOC_ARCH_EXYNOS5433,
870 	}, {
871 		.compatible = "samsung,exynos7-tmu",
872 		.data = (const void *)SOC_ARCH_EXYNOS7,
873 	},
874 	{ },
875 };
876 MODULE_DEVICE_TABLE(of, exynos_tmu_match);
877 
878 static int exynos_map_dt_data(struct platform_device *pdev)
879 {
880 	struct exynos_tmu_data *data = platform_get_drvdata(pdev);
881 	struct resource res;
882 
883 	if (!data || !pdev->dev.of_node)
884 		return -ENODEV;
885 
886 	data->id = of_alias_get_id(pdev->dev.of_node, "tmuctrl");
887 	if (data->id < 0)
888 		data->id = 0;
889 
890 	data->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
891 	if (data->irq <= 0) {
892 		dev_err(&pdev->dev, "failed to get IRQ\n");
893 		return -ENODEV;
894 	}
895 
896 	if (of_address_to_resource(pdev->dev.of_node, 0, &res)) {
897 		dev_err(&pdev->dev, "failed to get Resource 0\n");
898 		return -ENODEV;
899 	}
900 
901 	data->base = devm_ioremap(&pdev->dev, res.start, resource_size(&res));
902 	if (!data->base) {
903 		dev_err(&pdev->dev, "Failed to ioremap memory\n");
904 		return -EADDRNOTAVAIL;
905 	}
906 
907 	data->soc = (enum soc_type)of_device_get_match_data(&pdev->dev);
908 
909 	switch (data->soc) {
910 	case SOC_ARCH_EXYNOS4210:
911 		data->tmu_set_trip_temp = exynos4210_tmu_set_trip_temp;
912 		data->tmu_set_trip_hyst = exynos4210_tmu_set_trip_hyst;
913 		data->tmu_initialize = exynos4210_tmu_initialize;
914 		data->tmu_control = exynos4210_tmu_control;
915 		data->tmu_read = exynos4210_tmu_read;
916 		data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
917 		data->ntrip = 4;
918 		data->gain = 15;
919 		data->reference_voltage = 7;
920 		data->efuse_value = 55;
921 		data->min_efuse_value = 40;
922 		data->max_efuse_value = 100;
923 		break;
924 	case SOC_ARCH_EXYNOS3250:
925 	case SOC_ARCH_EXYNOS4412:
926 	case SOC_ARCH_EXYNOS5250:
927 	case SOC_ARCH_EXYNOS5260:
928 	case SOC_ARCH_EXYNOS5420:
929 	case SOC_ARCH_EXYNOS5420_TRIMINFO:
930 		data->tmu_set_trip_temp = exynos4412_tmu_set_trip_temp;
931 		data->tmu_set_trip_hyst = exynos4412_tmu_set_trip_hyst;
932 		data->tmu_initialize = exynos4412_tmu_initialize;
933 		data->tmu_control = exynos4210_tmu_control;
934 		data->tmu_read = exynos4412_tmu_read;
935 		data->tmu_set_emulation = exynos4412_tmu_set_emulation;
936 		data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
937 		data->ntrip = 4;
938 		data->gain = 8;
939 		data->reference_voltage = 16;
940 		data->efuse_value = 55;
941 		if (data->soc != SOC_ARCH_EXYNOS5420 &&
942 		    data->soc != SOC_ARCH_EXYNOS5420_TRIMINFO)
943 			data->min_efuse_value = 40;
944 		else
945 			data->min_efuse_value = 0;
946 		data->max_efuse_value = 100;
947 		break;
948 	case SOC_ARCH_EXYNOS5433:
949 		data->tmu_set_trip_temp = exynos5433_tmu_set_trip_temp;
950 		data->tmu_set_trip_hyst = exynos5433_tmu_set_trip_hyst;
951 		data->tmu_initialize = exynos5433_tmu_initialize;
952 		data->tmu_control = exynos5433_tmu_control;
953 		data->tmu_read = exynos4412_tmu_read;
954 		data->tmu_set_emulation = exynos4412_tmu_set_emulation;
955 		data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
956 		data->ntrip = 8;
957 		data->gain = 8;
958 		if (res.start == EXYNOS5433_G3D_BASE)
959 			data->reference_voltage = 23;
960 		else
961 			data->reference_voltage = 16;
962 		data->efuse_value = 75;
963 		data->min_efuse_value = 40;
964 		data->max_efuse_value = 150;
965 		break;
966 	case SOC_ARCH_EXYNOS7:
967 		data->tmu_set_trip_temp = exynos7_tmu_set_trip_temp;
968 		data->tmu_set_trip_hyst = exynos7_tmu_set_trip_hyst;
969 		data->tmu_initialize = exynos7_tmu_initialize;
970 		data->tmu_control = exynos7_tmu_control;
971 		data->tmu_read = exynos7_tmu_read;
972 		data->tmu_set_emulation = exynos4412_tmu_set_emulation;
973 		data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
974 		data->ntrip = 8;
975 		data->gain = 9;
976 		data->reference_voltage = 17;
977 		data->efuse_value = 75;
978 		data->min_efuse_value = 15;
979 		data->max_efuse_value = 100;
980 		break;
981 	default:
982 		dev_err(&pdev->dev, "Platform not supported\n");
983 		return -EINVAL;
984 	}
985 
986 	data->cal_type = TYPE_ONE_POINT_TRIMMING;
987 
988 	/*
989 	 * Check if the TMU shares some registers and then try to map the
990 	 * memory of common registers.
991 	 */
992 	if (data->soc != SOC_ARCH_EXYNOS5420_TRIMINFO)
993 		return 0;
994 
995 	if (of_address_to_resource(pdev->dev.of_node, 1, &res)) {
996 		dev_err(&pdev->dev, "failed to get Resource 1\n");
997 		return -ENODEV;
998 	}
999 
1000 	data->base_second = devm_ioremap(&pdev->dev, res.start,
1001 					resource_size(&res));
1002 	if (!data->base_second) {
1003 		dev_err(&pdev->dev, "Failed to ioremap memory\n");
1004 		return -ENOMEM;
1005 	}
1006 
1007 	return 0;
1008 }
1009 
1010 static const struct thermal_zone_of_device_ops exynos_sensor_ops = {
1011 	.get_temp = exynos_get_temp,
1012 	.set_emul_temp = exynos_tmu_set_emulation,
1013 };
1014 
1015 static int exynos_tmu_probe(struct platform_device *pdev)
1016 {
1017 	struct exynos_tmu_data *data;
1018 	int ret;
1019 
1020 	data = devm_kzalloc(&pdev->dev, sizeof(struct exynos_tmu_data),
1021 					GFP_KERNEL);
1022 	if (!data)
1023 		return -ENOMEM;
1024 
1025 	platform_set_drvdata(pdev, data);
1026 	mutex_init(&data->lock);
1027 
1028 	/*
1029 	 * Try enabling the regulator if found
1030 	 * TODO: Add regulator as an SOC feature, so that regulator enable
1031 	 * is a compulsory call.
1032 	 */
1033 	data->regulator = devm_regulator_get_optional(&pdev->dev, "vtmu");
1034 	if (!IS_ERR(data->regulator)) {
1035 		ret = regulator_enable(data->regulator);
1036 		if (ret) {
1037 			dev_err(&pdev->dev, "failed to enable vtmu\n");
1038 			return ret;
1039 		}
1040 	} else {
1041 		if (PTR_ERR(data->regulator) == -EPROBE_DEFER)
1042 			return -EPROBE_DEFER;
1043 		dev_info(&pdev->dev, "Regulator node (vtmu) not found\n");
1044 	}
1045 
1046 	ret = exynos_map_dt_data(pdev);
1047 	if (ret)
1048 		goto err_sensor;
1049 
1050 	INIT_WORK(&data->irq_work, exynos_tmu_work);
1051 
1052 	data->clk = devm_clk_get(&pdev->dev, "tmu_apbif");
1053 	if (IS_ERR(data->clk)) {
1054 		dev_err(&pdev->dev, "Failed to get clock\n");
1055 		ret = PTR_ERR(data->clk);
1056 		goto err_sensor;
1057 	}
1058 
1059 	data->clk_sec = devm_clk_get(&pdev->dev, "tmu_triminfo_apbif");
1060 	if (IS_ERR(data->clk_sec)) {
1061 		if (data->soc == SOC_ARCH_EXYNOS5420_TRIMINFO) {
1062 			dev_err(&pdev->dev, "Failed to get triminfo clock\n");
1063 			ret = PTR_ERR(data->clk_sec);
1064 			goto err_sensor;
1065 		}
1066 	} else {
1067 		ret = clk_prepare(data->clk_sec);
1068 		if (ret) {
1069 			dev_err(&pdev->dev, "Failed to get clock\n");
1070 			goto err_sensor;
1071 		}
1072 	}
1073 
1074 	ret = clk_prepare(data->clk);
1075 	if (ret) {
1076 		dev_err(&pdev->dev, "Failed to get clock\n");
1077 		goto err_clk_sec;
1078 	}
1079 
1080 	switch (data->soc) {
1081 	case SOC_ARCH_EXYNOS5433:
1082 	case SOC_ARCH_EXYNOS7:
1083 		data->sclk = devm_clk_get(&pdev->dev, "tmu_sclk");
1084 		if (IS_ERR(data->sclk)) {
1085 			dev_err(&pdev->dev, "Failed to get sclk\n");
1086 			goto err_clk;
1087 		} else {
1088 			ret = clk_prepare_enable(data->sclk);
1089 			if (ret) {
1090 				dev_err(&pdev->dev, "Failed to enable sclk\n");
1091 				goto err_clk;
1092 			}
1093 		}
1094 		break;
1095 	default:
1096 		break;
1097 	}
1098 
1099 	/*
1100 	 * data->tzd must be registered before calling exynos_tmu_initialize(),
1101 	 * requesting irq and calling exynos_tmu_control().
1102 	 */
1103 	data->tzd = thermal_zone_of_sensor_register(&pdev->dev, 0, data,
1104 						    &exynos_sensor_ops);
1105 	if (IS_ERR(data->tzd)) {
1106 		ret = PTR_ERR(data->tzd);
1107 		dev_err(&pdev->dev, "Failed to register sensor: %d\n", ret);
1108 		goto err_sclk;
1109 	}
1110 
1111 	ret = exynos_tmu_initialize(pdev);
1112 	if (ret) {
1113 		dev_err(&pdev->dev, "Failed to initialize TMU\n");
1114 		goto err_thermal;
1115 	}
1116 
1117 	ret = devm_request_irq(&pdev->dev, data->irq, exynos_tmu_irq,
1118 		IRQF_TRIGGER_RISING | IRQF_SHARED, dev_name(&pdev->dev), data);
1119 	if (ret) {
1120 		dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq);
1121 		goto err_thermal;
1122 	}
1123 
1124 	exynos_tmu_control(pdev, true);
1125 	return 0;
1126 
1127 err_thermal:
1128 	thermal_zone_of_sensor_unregister(&pdev->dev, data->tzd);
1129 err_sclk:
1130 	clk_disable_unprepare(data->sclk);
1131 err_clk:
1132 	clk_unprepare(data->clk);
1133 err_clk_sec:
1134 	if (!IS_ERR(data->clk_sec))
1135 		clk_unprepare(data->clk_sec);
1136 err_sensor:
1137 	if (!IS_ERR(data->regulator))
1138 		regulator_disable(data->regulator);
1139 
1140 	return ret;
1141 }
1142 
1143 static int exynos_tmu_remove(struct platform_device *pdev)
1144 {
1145 	struct exynos_tmu_data *data = platform_get_drvdata(pdev);
1146 	struct thermal_zone_device *tzd = data->tzd;
1147 
1148 	thermal_zone_of_sensor_unregister(&pdev->dev, tzd);
1149 	exynos_tmu_control(pdev, false);
1150 
1151 	clk_disable_unprepare(data->sclk);
1152 	clk_unprepare(data->clk);
1153 	if (!IS_ERR(data->clk_sec))
1154 		clk_unprepare(data->clk_sec);
1155 
1156 	if (!IS_ERR(data->regulator))
1157 		regulator_disable(data->regulator);
1158 
1159 	return 0;
1160 }
1161 
1162 #ifdef CONFIG_PM_SLEEP
1163 static int exynos_tmu_suspend(struct device *dev)
1164 {
1165 	exynos_tmu_control(to_platform_device(dev), false);
1166 
1167 	return 0;
1168 }
1169 
1170 static int exynos_tmu_resume(struct device *dev)
1171 {
1172 	struct platform_device *pdev = to_platform_device(dev);
1173 
1174 	exynos_tmu_initialize(pdev);
1175 	exynos_tmu_control(pdev, true);
1176 
1177 	return 0;
1178 }
1179 
1180 static SIMPLE_DEV_PM_OPS(exynos_tmu_pm,
1181 			 exynos_tmu_suspend, exynos_tmu_resume);
1182 #define EXYNOS_TMU_PM	(&exynos_tmu_pm)
1183 #else
1184 #define EXYNOS_TMU_PM	NULL
1185 #endif
1186 
1187 static struct platform_driver exynos_tmu_driver = {
1188 	.driver = {
1189 		.name   = "exynos-tmu",
1190 		.pm     = EXYNOS_TMU_PM,
1191 		.of_match_table = exynos_tmu_match,
1192 	},
1193 	.probe = exynos_tmu_probe,
1194 	.remove	= exynos_tmu_remove,
1195 };
1196 
1197 module_platform_driver(exynos_tmu_driver);
1198 
1199 MODULE_DESCRIPTION("EXYNOS TMU Driver");
1200 MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
1201 MODULE_LICENSE("GPL");
1202 MODULE_ALIAS("platform:exynos-tmu");
1203