blob: b43afda8acd163085a11eaeb851fb1869403ed4b [file] [log] [blame]
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001/*
Amit Daniel Kachhap59dfa542013-06-24 16:20:26 +05302 * exynos_tmu.c - Samsung EXYNOS TMU (Thermal Management Unit)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09003 *
4 * Copyright (C) 2011 Samsung Electronics
5 * Donggeun Kim <dg77.kim@samsung.com>
Amit Daniel Kachhapc48cbba2012-08-16 17:11:41 +05306 * Amit Daniel Kachhap <amit.kachhap@linaro.org>
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090024#include <linux/clk.h>
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090025#include <linux/io.h>
Amit Daniel Kachhap1b678642013-06-24 16:20:25 +053026#include <linux/interrupt.h>
27#include <linux/module.h>
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053028#include <linux/of.h>
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053029#include <linux/of_address.h>
30#include <linux/of_irq.h>
Amit Daniel Kachhap1b678642013-06-24 16:20:25 +053031#include <linux/platform_device.h>
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +053032#include <linux/regulator/consumer.h>
Amit Daniel Kachhap1b678642013-06-24 16:20:25 +053033
34#include "exynos_thermal_common.h"
Amit Daniel Kachhap0c1836a2013-06-24 16:20:27 +053035#include "exynos_tmu.h"
Amit Daniel Kachhape6b79912013-06-24 16:20:28 +053036#include "exynos_tmu_data.h"
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090037
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053038/**
39 * struct exynos_tmu_data : A structure to hold the private data of the TMU
40 driver
41 * @id: identifier of the one instance of the TMU controller.
42 * @pdata: pointer to the tmu platform/configuration data
43 * @base: base address of the single instance of the TMU controller.
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +053044 * @base_common: base address of the common registers of the TMU controller.
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053045 * @irq: irq number of the TMU controller.
46 * @soc: id of the SOC type.
47 * @irq_work: pointer to the irq work structure.
48 * @lock: lock to implement synchronization.
49 * @clk: pointer to the clock structure.
50 * @temp_error1: fused value of the first point trim.
51 * @temp_error2: fused value of the second point trim.
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +053052 * @regulator: pointer to the TMU regulator structure.
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053053 * @reg_conf: pointer to structure to register with core thermal.
54 */
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053055struct exynos_tmu_data {
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053056 int id;
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053057 struct exynos_tmu_platform_data *pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090058 void __iomem *base;
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +053059 void __iomem *base_common;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090060 int irq;
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053061 enum soc_type soc;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090062 struct work_struct irq_work;
63 struct mutex lock;
64 struct clk *clk;
65 u8 temp_error1, temp_error2;
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +053066 struct regulator *regulator;
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053067 struct thermal_sensor_conf *reg_conf;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090068};
69
70/*
71 * TMU treats temperature as a mapped temperature code.
72 * The temperature is converted differently depending on the calibration type.
73 */
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053074static int temp_to_code(struct exynos_tmu_data *data, u8 temp)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090075{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053076 struct exynos_tmu_platform_data *pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090077 int temp_code;
78
Amit Daniel Kachhap19284572013-06-24 16:20:46 +053079 if (pdata->cal_mode == HW_MODE)
80 return temp;
81
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053082 if (data->soc == SOC_ARCH_EXYNOS4210)
83 /* temp should range between 25 and 125 */
84 if (temp < 25 || temp > 125) {
85 temp_code = -EINVAL;
86 goto out;
87 }
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090088
89 switch (pdata->cal_type) {
90 case TYPE_TWO_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +053091 temp_code = (temp - pdata->first_point_trim) *
92 (data->temp_error2 - data->temp_error1) /
93 (pdata->second_point_trim - pdata->first_point_trim) +
94 data->temp_error1;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090095 break;
96 case TYPE_ONE_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +053097 temp_code = temp + data->temp_error1 - pdata->first_point_trim;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090098 break;
99 default:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530100 temp_code = temp + pdata->default_temp_offset;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900101 break;
102 }
103out:
104 return temp_code;
105}
106
107/*
108 * Calculate a temperature value from a temperature code.
109 * The unit of the temperature is degree Celsius.
110 */
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530111static int code_to_temp(struct exynos_tmu_data *data, u8 temp_code)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900112{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530113 struct exynos_tmu_platform_data *pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900114 int temp;
115
Amit Daniel Kachhap19284572013-06-24 16:20:46 +0530116 if (pdata->cal_mode == HW_MODE)
117 return temp_code;
118
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530119 if (data->soc == SOC_ARCH_EXYNOS4210)
120 /* temp_code should range between 75 and 175 */
121 if (temp_code < 75 || temp_code > 175) {
122 temp = -ENODATA;
123 goto out;
124 }
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900125
126 switch (pdata->cal_type) {
127 case TYPE_TWO_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530128 temp = (temp_code - data->temp_error1) *
129 (pdata->second_point_trim - pdata->first_point_trim) /
130 (data->temp_error2 - data->temp_error1) +
131 pdata->first_point_trim;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900132 break;
133 case TYPE_ONE_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530134 temp = temp_code - data->temp_error1 + pdata->first_point_trim;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900135 break;
136 default:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530137 temp = temp_code - pdata->default_temp_offset;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900138 break;
139 }
140out:
141 return temp;
142}
143
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530144static int exynos_tmu_initialize(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900145{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530146 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
147 struct exynos_tmu_platform_data *pdata = data->pdata;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530148 const struct exynos_tmu_registers *reg = pdata->registers;
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530149 unsigned int status, trim_info = 0, con;
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000150 unsigned int rising_threshold = 0, falling_threshold = 0;
151 int ret = 0, threshold_code, i, trigger_levs = 0;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900152
153 mutex_lock(&data->lock);
154 clk_enable(data->clk);
155
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530156 if (TMU_SUPPORTS(pdata, READY_STATUS)) {
157 status = readb(data->base + reg->tmu_status);
158 if (!status) {
159 ret = -EBUSY;
160 goto out;
161 }
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900162 }
163
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530164 if (TMU_SUPPORTS(pdata, TRIM_RELOAD))
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530165 __raw_writel(1, data->base + reg->triminfo_ctrl);
166
Amit Daniel Kachhap19284572013-06-24 16:20:46 +0530167 if (pdata->cal_mode == HW_MODE)
168 goto skip_calib_data;
169
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530170 /* Save trimming info in order to perform calibration */
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530171 if (data->soc == SOC_ARCH_EXYNOS5440) {
172 /*
173 * For exynos5440 soc triminfo value is swapped between TMU0 and
174 * TMU2, so the below logic is needed.
175 */
176 switch (data->id) {
177 case 0:
178 trim_info = readl(data->base +
179 EXYNOS5440_EFUSE_SWAP_OFFSET + reg->triminfo_data);
180 break;
181 case 1:
182 trim_info = readl(data->base + reg->triminfo_data);
183 break;
184 case 2:
185 trim_info = readl(data->base -
186 EXYNOS5440_EFUSE_SWAP_OFFSET + reg->triminfo_data);
187 }
188 } else {
189 trim_info = readl(data->base + reg->triminfo_data);
190 }
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530191 data->temp_error1 = trim_info & EXYNOS_TMU_TEMP_MASK;
192 data->temp_error2 = ((trim_info >> reg->triminfo_85_shift) &
193 EXYNOS_TMU_TEMP_MASK);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900194
Amit Daniel Kachhap50008062013-06-24 16:20:45 +0530195 if (!data->temp_error1 ||
196 (pdata->min_efuse_value > data->temp_error1) ||
197 (data->temp_error1 > pdata->max_efuse_value))
198 data->temp_error1 = pdata->efuse_value & EXYNOS_TMU_TEMP_MASK;
199
200 if (!data->temp_error2)
201 data->temp_error2 =
202 (pdata->efuse_value >> reg->triminfo_85_shift) &
203 EXYNOS_TMU_TEMP_MASK;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900204
Amit Daniel Kachhap19284572013-06-24 16:20:46 +0530205skip_calib_data:
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530206 if (pdata->max_trigger_level > MAX_THRESHOLD_LEVS) {
207 dev_err(&pdev->dev, "Invalid max trigger level\n");
208 goto out;
209 }
210
211 for (i = 0; i < pdata->max_trigger_level; i++) {
212 if (!pdata->trigger_levels[i])
213 continue;
214
215 if ((pdata->trigger_type[i] == HW_TRIP) &&
216 (!pdata->trigger_levels[pdata->max_trigger_level - 1])) {
217 dev_err(&pdev->dev, "Invalid hw trigger level\n");
218 ret = -EINVAL;
219 goto out;
220 }
221
222 /* Count trigger levels except the HW trip*/
223 if (!(pdata->trigger_type[i] == HW_TRIP))
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000224 trigger_levs++;
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530225 }
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000226
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530227 if (data->soc == SOC_ARCH_EXYNOS4210) {
228 /* Write temperature code for threshold */
229 threshold_code = temp_to_code(data, pdata->threshold);
230 if (threshold_code < 0) {
231 ret = threshold_code;
232 goto out;
233 }
234 writeb(threshold_code,
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530235 data->base + reg->threshold_temp);
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000236 for (i = 0; i < trigger_levs; i++)
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530237 writeb(pdata->trigger_levels[i], data->base +
238 reg->threshold_th0 + i * sizeof(reg->threshold_th0));
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530239
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530240 writel(reg->inten_rise_mask, data->base + reg->tmu_intclear);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530241 } else {
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000242 /* Write temperature code for rising and falling threshold */
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530243 for (i = 0;
244 i < trigger_levs && i < EXYNOS_MAX_TRIGGER_PER_REG; i++) {
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000245 threshold_code = temp_to_code(data,
246 pdata->trigger_levels[i]);
247 if (threshold_code < 0) {
248 ret = threshold_code;
249 goto out;
250 }
251 rising_threshold |= threshold_code << 8 * i;
252 if (pdata->threshold_falling) {
253 threshold_code = temp_to_code(data,
254 pdata->trigger_levels[i] -
255 pdata->threshold_falling);
256 if (threshold_code > 0)
257 falling_threshold |=
258 threshold_code << 8 * i;
259 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530260 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530261
262 writel(rising_threshold,
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530263 data->base + reg->threshold_th0);
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000264 writel(falling_threshold,
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530265 data->base + reg->threshold_th1);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530266
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530267 writel((reg->inten_rise_mask << reg->inten_rise_shift) |
268 (reg->inten_fall_mask << reg->inten_fall_shift),
269 data->base + reg->tmu_intclear);
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530270
271 /* if last threshold limit is also present */
272 i = pdata->max_trigger_level - 1;
273 if (pdata->trigger_levels[i] &&
274 (pdata->trigger_type[i] == HW_TRIP)) {
275 threshold_code = temp_to_code(data,
276 pdata->trigger_levels[i]);
277 if (threshold_code < 0) {
278 ret = threshold_code;
279 goto out;
280 }
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530281 if (i == EXYNOS_MAX_TRIGGER_PER_REG - 1) {
282 /* 1-4 level to be assigned in th0 reg */
283 rising_threshold |= threshold_code << 8 * i;
284 writel(rising_threshold,
285 data->base + reg->threshold_th0);
286 } else if (i == EXYNOS_MAX_TRIGGER_PER_REG) {
287 /* 5th level to be assigned in th2 reg */
288 rising_threshold =
289 threshold_code << reg->threshold_th3_l0_shift;
290 writel(rising_threshold,
291 data->base + reg->threshold_th2);
292 }
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530293 con = readl(data->base + reg->tmu_ctrl);
294 con |= (1 << reg->therm_trip_en_shift);
295 writel(con, data->base + reg->tmu_ctrl);
296 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530297 }
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530298 /*Clear the PMIN in the common TMU register*/
299 if (reg->tmu_pmin && !data->id)
300 writel(0, data->base_common + reg->tmu_pmin);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900301out:
302 clk_disable(data->clk);
303 mutex_unlock(&data->lock);
304
305 return ret;
306}
307
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530308static void exynos_tmu_control(struct platform_device *pdev, bool on)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900309{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530310 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
311 struct exynos_tmu_platform_data *pdata = data->pdata;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530312 const struct exynos_tmu_registers *reg = pdata->registers;
Amit Daniel Kachhap19284572013-06-24 16:20:46 +0530313 unsigned int con, interrupt_en, cal_val;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900314
315 mutex_lock(&data->lock);
316 clk_enable(data->clk);
317
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530318 con = readl(data->base + reg->tmu_ctrl);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530319
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530320 if (pdata->reference_voltage) {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530321 con &= ~(reg->buf_vref_sel_mask << reg->buf_vref_sel_shift);
322 con |= pdata->reference_voltage << reg->buf_vref_sel_shift;
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530323 }
324
325 if (pdata->gain) {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530326 con &= ~(reg->buf_slope_sel_mask << reg->buf_slope_sel_shift);
327 con |= (pdata->gain << reg->buf_slope_sel_shift);
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530328 }
329
330 if (pdata->noise_cancel_mode) {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530331 con &= ~(reg->therm_trip_mode_mask <<
332 reg->therm_trip_mode_shift);
333 con |= (pdata->noise_cancel_mode << reg->therm_trip_mode_shift);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530334 }
335
Amit Daniel Kachhap19284572013-06-24 16:20:46 +0530336 if (pdata->cal_mode == HW_MODE) {
337 con &= ~(reg->calib_mode_mask << reg->calib_mode_shift);
338 cal_val = 0;
339 switch (pdata->cal_type) {
340 case TYPE_TWO_POINT_TRIMMING:
341 cal_val = 3;
342 break;
343 case TYPE_ONE_POINT_TRIMMING_85:
344 cal_val = 2;
345 break;
346 case TYPE_ONE_POINT_TRIMMING_25:
347 cal_val = 1;
348 break;
349 case TYPE_NONE:
350 break;
351 default:
352 dev_err(&pdev->dev, "Invalid calibration type, using none\n");
353 }
354 con |= cal_val << reg->calib_mode_shift;
355 }
356
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900357 if (on) {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530358 con |= (1 << reg->core_en_shift);
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530359 interrupt_en =
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530360 pdata->trigger_enable[3] << reg->inten_rise3_shift |
361 pdata->trigger_enable[2] << reg->inten_rise2_shift |
362 pdata->trigger_enable[1] << reg->inten_rise1_shift |
363 pdata->trigger_enable[0] << reg->inten_rise0_shift;
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530364 if (TMU_SUPPORTS(pdata, FALLING_TRIP))
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530365 interrupt_en |=
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530366 interrupt_en << reg->inten_fall0_shift;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900367 } else {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530368 con &= ~(1 << reg->core_en_shift);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900369 interrupt_en = 0; /* Disable all interrupts */
370 }
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530371 writel(interrupt_en, data->base + reg->tmu_inten);
372 writel(con, data->base + reg->tmu_ctrl);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900373
374 clk_disable(data->clk);
375 mutex_unlock(&data->lock);
376}
377
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530378static int exynos_tmu_read(struct exynos_tmu_data *data)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900379{
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530380 struct exynos_tmu_platform_data *pdata = data->pdata;
381 const struct exynos_tmu_registers *reg = pdata->registers;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900382 u8 temp_code;
383 int temp;
384
385 mutex_lock(&data->lock);
386 clk_enable(data->clk);
387
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530388 temp_code = readb(data->base + reg->tmu_cur_temp);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900389 temp = code_to_temp(data, temp_code);
390
391 clk_disable(data->clk);
392 mutex_unlock(&data->lock);
393
394 return temp;
395}
396
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000397#ifdef CONFIG_THERMAL_EMULATION
398static int exynos_tmu_set_emulation(void *drv_data, unsigned long temp)
399{
400 struct exynos_tmu_data *data = drv_data;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530401 struct exynos_tmu_platform_data *pdata = data->pdata;
402 const struct exynos_tmu_registers *reg = pdata->registers;
403 unsigned int val;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000404 int ret = -EINVAL;
405
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530406 if (!TMU_SUPPORTS(pdata, EMULATION))
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000407 goto out;
408
409 if (temp && temp < MCELSIUS)
410 goto out;
411
412 mutex_lock(&data->lock);
413 clk_enable(data->clk);
414
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530415 val = readl(data->base + reg->emul_con);
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000416
417 if (temp) {
418 temp /= MCELSIUS;
419
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530420 if (TMU_SUPPORTS(pdata, EMUL_TIME)) {
421 val &= ~(EXYNOS_EMUL_TIME_MASK << reg->emul_time_shift);
422 val |= (EXYNOS_EMUL_TIME << reg->emul_time_shift);
423 }
424 val &= ~(EXYNOS_EMUL_DATA_MASK << reg->emul_temp_shift);
425 val |= (temp_to_code(data, temp) << reg->emul_temp_shift) |
426 EXYNOS_EMUL_ENABLE;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000427 } else {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530428 val &= ~EXYNOS_EMUL_ENABLE;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000429 }
430
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530431 writel(val, data->base + reg->emul_con);
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000432
433 clk_disable(data->clk);
434 mutex_unlock(&data->lock);
435 return 0;
436out:
437 return ret;
438}
439#else
440static int exynos_tmu_set_emulation(void *drv_data, unsigned long temp)
441 { return -EINVAL; }
442#endif/*CONFIG_THERMAL_EMULATION*/
443
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530444static void exynos_tmu_work(struct work_struct *work)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900445{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530446 struct exynos_tmu_data *data = container_of(work,
447 struct exynos_tmu_data, irq_work);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530448 struct exynos_tmu_platform_data *pdata = data->pdata;
449 const struct exynos_tmu_registers *reg = pdata->registers;
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530450 unsigned int val_irq, val_type;
451
452 /* Find which sensor generated this interrupt */
453 if (reg->tmu_irqstatus) {
454 val_type = readl(data->base_common + reg->tmu_irqstatus);
455 if (!((val_type >> data->id) & 0x1))
456 goto out;
457 }
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900458
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530459 exynos_report_trigger(data->reg_conf);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900460 mutex_lock(&data->lock);
461 clk_enable(data->clk);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530462
Amit Daniel Kachhapa4463c42013-06-24 16:20:33 +0530463 /* TODO: take action based on particular interrupt */
464 val_irq = readl(data->base + reg->tmu_intstat);
465 /* clear the interrupts */
466 writel(val_irq, data->base + reg->tmu_intclear);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530467
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900468 clk_disable(data->clk);
469 mutex_unlock(&data->lock);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530470out:
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530471 enable_irq(data->irq);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900472}
473
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530474static irqreturn_t exynos_tmu_irq(int irq, void *id)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900475{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530476 struct exynos_tmu_data *data = id;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900477
478 disable_irq_nosync(irq);
479 schedule_work(&data->irq_work);
480
481 return IRQ_HANDLED;
482}
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530483
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530484static const struct of_device_id exynos_tmu_match[] = {
485 {
486 .compatible = "samsung,exynos4210-tmu",
487 .data = (void *)EXYNOS4210_TMU_DRV_DATA,
488 },
489 {
Sachin Kamatb6cee532013-04-18 11:37:59 +0000490 .compatible = "samsung,exynos4412-tmu",
Amit Daniel Kachhape6b79912013-06-24 16:20:28 +0530491 .data = (void *)EXYNOS5250_TMU_DRV_DATA,
Sachin Kamatb6cee532013-04-18 11:37:59 +0000492 },
493 {
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530494 .compatible = "samsung,exynos5250-tmu",
Amit Daniel Kachhape6b79912013-06-24 16:20:28 +0530495 .data = (void *)EXYNOS5250_TMU_DRV_DATA,
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530496 },
Amit Daniel Kachhap90542542013-06-24 16:20:44 +0530497 {
498 .compatible = "samsung,exynos5440-tmu",
499 .data = (void *)EXYNOS5440_TMU_DRV_DATA,
500 },
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530501 {},
502};
503MODULE_DEVICE_TABLE(of, exynos_tmu_match);
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530504
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530505static inline struct exynos_tmu_platform_data *exynos_get_driver_data(
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530506 struct platform_device *pdev, int id)
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530507{
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530508 struct exynos_tmu_init_data *data_table;
509 struct exynos_tmu_platform_data *tmu_data;
Sachin Kamat73b5b1d2013-08-19 11:58:43 +0530510 const struct of_device_id *match;
511
512 match = of_match_node(exynos_tmu_match, pdev->dev.of_node);
513 if (!match)
514 return NULL;
515 data_table = (struct exynos_tmu_init_data *) match->data;
516 if (!data_table || id >= data_table->tmu_count)
517 return NULL;
518 tmu_data = data_table->tmu_data;
519 return (struct exynos_tmu_platform_data *) (tmu_data + id);
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530520}
Jonghwa Leebbf63be2012-11-21 13:31:01 +0900521
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530522static int exynos_map_dt_data(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900523{
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530524 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
525 struct exynos_tmu_platform_data *pdata;
526 struct resource res;
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530527 int ret;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900528
Sachin Kamat73b5b1d2013-08-19 11:58:43 +0530529 if (!data || !pdev->dev.of_node)
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530530 return -ENODEV;
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530531
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530532 /*
533 * Try enabling the regulator if found
534 * TODO: Add regulator as an SOC feature, so that regulator enable
535 * is a compulsory call.
536 */
537 data->regulator = devm_regulator_get(&pdev->dev, "vtmu");
538 if (!IS_ERR(data->regulator)) {
539 ret = regulator_enable(data->regulator);
540 if (ret) {
541 dev_err(&pdev->dev, "failed to enable vtmu\n");
542 return ret;
543 }
544 } else {
545 dev_info(&pdev->dev, "Regulator node (vtmu) not found\n");
546 }
547
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530548 data->id = of_alias_get_id(pdev->dev.of_node, "tmuctrl");
549 if (data->id < 0)
550 data->id = 0;
551
552 data->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
553 if (data->irq <= 0) {
554 dev_err(&pdev->dev, "failed to get IRQ\n");
555 return -ENODEV;
556 }
557
558 if (of_address_to_resource(pdev->dev.of_node, 0, &res)) {
559 dev_err(&pdev->dev, "failed to get Resource 0\n");
560 return -ENODEV;
561 }
562
563 data->base = devm_ioremap(&pdev->dev, res.start, resource_size(&res));
564 if (!data->base) {
565 dev_err(&pdev->dev, "Failed to ioremap memory\n");
566 return -EADDRNOTAVAIL;
567 }
568
569 pdata = exynos_get_driver_data(pdev, data->id);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900570 if (!pdata) {
571 dev_err(&pdev->dev, "No platform init data supplied.\n");
572 return -ENODEV;
573 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530574 data->pdata = pdata;
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530575 /*
576 * Check if the TMU shares some registers and then try to map the
577 * memory of common registers.
578 */
579 if (!TMU_SUPPORTS(pdata, SHARED_MEMORY))
580 return 0;
581
582 if (of_address_to_resource(pdev->dev.of_node, 1, &res)) {
583 dev_err(&pdev->dev, "failed to get Resource 1\n");
584 return -ENODEV;
585 }
586
587 data->base_common = devm_ioremap(&pdev->dev, res.start,
588 resource_size(&res));
Naveen Krishna Chatradhiaa1ab432013-08-07 14:01:09 +0530589 if (!data->base_common) {
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530590 dev_err(&pdev->dev, "Failed to ioremap memory\n");
591 return -ENOMEM;
592 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530593
594 return 0;
595}
596
597static int exynos_tmu_probe(struct platform_device *pdev)
598{
599 struct exynos_tmu_data *data;
600 struct exynos_tmu_platform_data *pdata;
601 struct thermal_sensor_conf *sensor_conf;
602 int ret, i;
603
Amit Daniel Kachhap79e093c2012-08-16 05:41:45 -0600604 data = devm_kzalloc(&pdev->dev, sizeof(struct exynos_tmu_data),
605 GFP_KERNEL);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900606 if (!data) {
607 dev_err(&pdev->dev, "Failed to allocate driver structure\n");
608 return -ENOMEM;
609 }
610
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530611 platform_set_drvdata(pdev, data);
612 mutex_init(&data->lock);
613
614 ret = exynos_map_dt_data(pdev);
615 if (ret)
616 return ret;
617
618 pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900619
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530620 INIT_WORK(&data->irq_work, exynos_tmu_work);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900621
Sachin Kamat2a162792013-04-18 11:37:58 +0000622 data->clk = devm_clk_get(&pdev->dev, "tmu_apbif");
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900623 if (IS_ERR(data->clk)) {
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900624 dev_err(&pdev->dev, "Failed to get clock\n");
Amit Daniel Kachhap79e093c2012-08-16 05:41:45 -0600625 return PTR_ERR(data->clk);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900626 }
627
Sachin Kamat2a162792013-04-18 11:37:58 +0000628 ret = clk_prepare(data->clk);
629 if (ret)
630 return ret;
631
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530632 if (pdata->type == SOC_ARCH_EXYNOS ||
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530633 pdata->type == SOC_ARCH_EXYNOS4210 ||
634 pdata->type == SOC_ARCH_EXYNOS5440)
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530635 data->soc = pdata->type;
636 else {
637 ret = -EINVAL;
638 dev_err(&pdev->dev, "Platform not supported\n");
639 goto err_clk;
640 }
641
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530642 ret = exynos_tmu_initialize(pdev);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900643 if (ret) {
644 dev_err(&pdev->dev, "Failed to initialize TMU\n");
645 goto err_clk;
646 }
647
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530648 exynos_tmu_control(pdev, true);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900649
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530650 /* Allocate a structure to register with the exynos core thermal */
651 sensor_conf = devm_kzalloc(&pdev->dev,
652 sizeof(struct thermal_sensor_conf), GFP_KERNEL);
653 if (!sensor_conf) {
654 dev_err(&pdev->dev, "Failed to allocate registration struct\n");
655 ret = -ENOMEM;
656 goto err_clk;
657 }
658 sprintf(sensor_conf->name, "therm_zone%d", data->id);
659 sensor_conf->read_temperature = (int (*)(void *))exynos_tmu_read;
660 sensor_conf->write_emul_temp =
661 (int (*)(void *, unsigned long))exynos_tmu_set_emulation;
662 sensor_conf->driver_data = data;
663 sensor_conf->trip_data.trip_count = pdata->trigger_enable[0] +
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530664 pdata->trigger_enable[1] + pdata->trigger_enable[2]+
665 pdata->trigger_enable[3];
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530666
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530667 for (i = 0; i < sensor_conf->trip_data.trip_count; i++) {
668 sensor_conf->trip_data.trip_val[i] =
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530669 pdata->threshold + pdata->trigger_levels[i];
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530670 sensor_conf->trip_data.trip_type[i] =
Amit Daniel Kachhap5c3cf552013-06-24 16:20:37 +0530671 pdata->trigger_type[i];
672 }
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530673
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530674 sensor_conf->trip_data.trigger_falling = pdata->threshold_falling;
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000675
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530676 sensor_conf->cooling_data.freq_clip_count = pdata->freq_tab_count;
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530677 for (i = 0; i < pdata->freq_tab_count; i++) {
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530678 sensor_conf->cooling_data.freq_data[i].freq_clip_max =
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530679 pdata->freq_tab[i].freq_clip_max;
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530680 sensor_conf->cooling_data.freq_data[i].temp_level =
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530681 pdata->freq_tab[i].temp_level;
682 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530683 sensor_conf->dev = &pdev->dev;
684 /* Register the sensor with thermal management interface */
685 ret = exynos_register_thermal(sensor_conf);
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530686 if (ret) {
687 dev_err(&pdev->dev, "Failed to register thermal interface\n");
688 goto err_clk;
689 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530690 data->reg_conf = sensor_conf;
691
692 ret = devm_request_irq(&pdev->dev, data->irq, exynos_tmu_irq,
693 IRQF_TRIGGER_RISING | IRQF_SHARED, dev_name(&pdev->dev), data);
694 if (ret) {
695 dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq);
696 goto err_clk;
697 }
Jonghwa Leebbf63be2012-11-21 13:31:01 +0900698
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900699 return 0;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900700err_clk:
Sachin Kamat2a162792013-04-18 11:37:58 +0000701 clk_unprepare(data->clk);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900702 return ret;
703}
704
Greg Kroah-Hartman4eab7a9e2012-12-21 13:15:52 -0800705static int exynos_tmu_remove(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900706{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530707 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900708
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530709 exynos_tmu_control(pdev, false);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900710
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530711 exynos_unregister_thermal(data->reg_conf);
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530712
Sachin Kamat2a162792013-04-18 11:37:58 +0000713 clk_unprepare(data->clk);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900714
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530715 if (!IS_ERR(data->regulator))
716 regulator_disable(data->regulator);
717
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900718 return 0;
719}
720
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +0200721#ifdef CONFIG_PM_SLEEP
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530722static int exynos_tmu_suspend(struct device *dev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900723{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530724 exynos_tmu_control(to_platform_device(dev), false);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900725
726 return 0;
727}
728
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530729static int exynos_tmu_resume(struct device *dev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900730{
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +0200731 struct platform_device *pdev = to_platform_device(dev);
732
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530733 exynos_tmu_initialize(pdev);
734 exynos_tmu_control(pdev, true);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900735
736 return 0;
737}
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +0200738
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530739static SIMPLE_DEV_PM_OPS(exynos_tmu_pm,
740 exynos_tmu_suspend, exynos_tmu_resume);
741#define EXYNOS_TMU_PM (&exynos_tmu_pm)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900742#else
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530743#define EXYNOS_TMU_PM NULL
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900744#endif
745
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530746static struct platform_driver exynos_tmu_driver = {
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900747 .driver = {
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530748 .name = "exynos-tmu",
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900749 .owner = THIS_MODULE,
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530750 .pm = EXYNOS_TMU_PM,
Sachin Kamat73b5b1d2013-08-19 11:58:43 +0530751 .of_match_table = exynos_tmu_match,
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900752 },
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530753 .probe = exynos_tmu_probe,
Greg Kroah-Hartman4eab7a9e2012-12-21 13:15:52 -0800754 .remove = exynos_tmu_remove,
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900755};
756
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530757module_platform_driver(exynos_tmu_driver);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900758
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530759MODULE_DESCRIPTION("EXYNOS TMU Driver");
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900760MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
761MODULE_LICENSE("GPL");
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530762MODULE_ALIAS("platform:exynos-tmu");