blob: 6bc8a201961322d2081966a3dd31cff8886a8e68 [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.
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +053044 * @base_second: 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.
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +053050 * @clk_sec: pointer to the clock structure for accessing the base_second.
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053051 * @temp_error1: fused value of the first point trim.
52 * @temp_error2: fused value of the second point trim.
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +053053 * @regulator: pointer to the TMU regulator structure.
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053054 * @reg_conf: pointer to structure to register with core thermal.
55 */
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053056struct exynos_tmu_data {
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053057 int id;
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053058 struct exynos_tmu_platform_data *pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090059 void __iomem *base;
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +053060 void __iomem *base_second;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090061 int irq;
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053062 enum soc_type soc;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090063 struct work_struct irq_work;
64 struct mutex lock;
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +053065 struct clk *clk, *clk_sec;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090066 u8 temp_error1, temp_error2;
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +053067 struct regulator *regulator;
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053068 struct thermal_sensor_conf *reg_conf;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090069};
70
71/*
72 * TMU treats temperature as a mapped temperature code.
73 * The temperature is converted differently depending on the calibration type.
74 */
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053075static int temp_to_code(struct exynos_tmu_data *data, u8 temp)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090076{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053077 struct exynos_tmu_platform_data *pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090078 int temp_code;
79
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090080 switch (pdata->cal_type) {
81 case TYPE_TWO_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +053082 temp_code = (temp - pdata->first_point_trim) *
83 (data->temp_error2 - data->temp_error1) /
84 (pdata->second_point_trim - pdata->first_point_trim) +
85 data->temp_error1;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090086 break;
87 case TYPE_ONE_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +053088 temp_code = temp + data->temp_error1 - pdata->first_point_trim;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090089 break;
90 default:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +053091 temp_code = temp + pdata->default_temp_offset;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090092 break;
93 }
Bartlomiej Zolnierkiewiczddb31d42014-07-31 19:11:03 +020094
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090095 return temp_code;
96}
97
98/*
99 * Calculate a temperature value from a temperature code.
100 * The unit of the temperature is degree Celsius.
101 */
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530102static int code_to_temp(struct exynos_tmu_data *data, u8 temp_code)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900103{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530104 struct exynos_tmu_platform_data *pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900105 int temp;
106
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900107 switch (pdata->cal_type) {
108 case TYPE_TWO_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530109 temp = (temp_code - data->temp_error1) *
110 (pdata->second_point_trim - pdata->first_point_trim) /
111 (data->temp_error2 - data->temp_error1) +
112 pdata->first_point_trim;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900113 break;
114 case TYPE_ONE_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530115 temp = temp_code - data->temp_error1 + pdata->first_point_trim;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900116 break;
117 default:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530118 temp = temp_code - pdata->default_temp_offset;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900119 break;
120 }
Bartlomiej Zolnierkiewiczddb31d42014-07-31 19:11:03 +0200121
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900122 return temp;
123}
124
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530125static int exynos_tmu_initialize(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900126{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530127 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
128 struct exynos_tmu_platform_data *pdata = data->pdata;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530129 const struct exynos_tmu_registers *reg = pdata->registers;
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530130 unsigned int status, trim_info = 0, con;
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000131 unsigned int rising_threshold = 0, falling_threshold = 0;
Bartlomiej Zolnierkiewiczac951af2014-07-31 19:11:04 +0200132 int ret = 0, threshold_code, i;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900133
134 mutex_lock(&data->lock);
135 clk_enable(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530136 if (!IS_ERR(data->clk_sec))
137 clk_enable(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900138
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530139 if (TMU_SUPPORTS(pdata, READY_STATUS)) {
140 status = readb(data->base + reg->tmu_status);
141 if (!status) {
142 ret = -EBUSY;
143 goto out;
144 }
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900145 }
146
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530147 if (TMU_SUPPORTS(pdata, TRIM_RELOAD))
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530148 __raw_writel(1, data->base + reg->triminfo_ctrl);
149
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530150 /* Save trimming info in order to perform calibration */
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530151 if (data->soc == SOC_ARCH_EXYNOS5440) {
152 /*
153 * For exynos5440 soc triminfo value is swapped between TMU0 and
154 * TMU2, so the below logic is needed.
155 */
156 switch (data->id) {
157 case 0:
158 trim_info = readl(data->base +
159 EXYNOS5440_EFUSE_SWAP_OFFSET + reg->triminfo_data);
160 break;
161 case 1:
162 trim_info = readl(data->base + reg->triminfo_data);
163 break;
164 case 2:
165 trim_info = readl(data->base -
166 EXYNOS5440_EFUSE_SWAP_OFFSET + reg->triminfo_data);
167 }
168 } else {
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530169 /* On exynos5420 the triminfo register is in the shared space */
170 if (data->soc == SOC_ARCH_EXYNOS5420_TRIMINFO)
171 trim_info = readl(data->base_second +
172 reg->triminfo_data);
173 else
174 trim_info = readl(data->base + reg->triminfo_data);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530175 }
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530176 data->temp_error1 = trim_info & EXYNOS_TMU_TEMP_MASK;
177 data->temp_error2 = ((trim_info >> reg->triminfo_85_shift) &
178 EXYNOS_TMU_TEMP_MASK);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900179
Amit Daniel Kachhap50008062013-06-24 16:20:45 +0530180 if (!data->temp_error1 ||
181 (pdata->min_efuse_value > data->temp_error1) ||
182 (data->temp_error1 > pdata->max_efuse_value))
183 data->temp_error1 = pdata->efuse_value & EXYNOS_TMU_TEMP_MASK;
184
185 if (!data->temp_error2)
186 data->temp_error2 =
187 (pdata->efuse_value >> reg->triminfo_85_shift) &
188 EXYNOS_TMU_TEMP_MASK;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900189
Tushar Beherac65d3472014-04-14 11:08:15 +0530190 rising_threshold = readl(data->base + reg->threshold_th0);
191
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530192 if (data->soc == SOC_ARCH_EXYNOS4210) {
193 /* Write temperature code for threshold */
194 threshold_code = temp_to_code(data, pdata->threshold);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530195 writeb(threshold_code,
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530196 data->base + reg->threshold_temp);
Bartlomiej Zolnierkiewiczac951af2014-07-31 19:11:04 +0200197 for (i = 0; i < pdata->non_hw_trigger_levels; i++)
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530198 writeb(pdata->trigger_levels[i], data->base +
199 reg->threshold_th0 + i * sizeof(reg->threshold_th0));
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530200
Naveen Krishna Chatradhi74429c22013-12-19 11:35:39 +0530201 writel(reg->intclr_rise_mask, data->base + reg->tmu_intclear);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530202 } else {
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000203 /* Write temperature code for rising and falling threshold */
Bartlomiej Zolnierkiewiczac951af2014-07-31 19:11:04 +0200204 for (i = 0; i < pdata->non_hw_trigger_levels; i++) {
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000205 threshold_code = temp_to_code(data,
206 pdata->trigger_levels[i]);
Tushar Beherac65d3472014-04-14 11:08:15 +0530207 rising_threshold &= ~(0xff << 8 * i);
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000208 rising_threshold |= threshold_code << 8 * i;
209 if (pdata->threshold_falling) {
210 threshold_code = temp_to_code(data,
211 pdata->trigger_levels[i] -
212 pdata->threshold_falling);
Bartlomiej Zolnierkiewicz8131a242014-07-31 19:11:02 +0200213 falling_threshold |= threshold_code << 8 * i;
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000214 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530215 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530216
217 writel(rising_threshold,
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530218 data->base + reg->threshold_th0);
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000219 writel(falling_threshold,
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530220 data->base + reg->threshold_th1);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530221
Naveen Krishna Chatradhi74429c22013-12-19 11:35:39 +0530222 writel((reg->intclr_rise_mask << reg->intclr_rise_shift) |
223 (reg->intclr_fall_mask << reg->intclr_fall_shift),
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530224 data->base + reg->tmu_intclear);
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530225
226 /* if last threshold limit is also present */
227 i = pdata->max_trigger_level - 1;
228 if (pdata->trigger_levels[i] &&
229 (pdata->trigger_type[i] == HW_TRIP)) {
230 threshold_code = temp_to_code(data,
231 pdata->trigger_levels[i]);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530232 if (i == EXYNOS_MAX_TRIGGER_PER_REG - 1) {
233 /* 1-4 level to be assigned in th0 reg */
Tushar Beherac65d3472014-04-14 11:08:15 +0530234 rising_threshold &= ~(0xff << 8 * i);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530235 rising_threshold |= threshold_code << 8 * i;
236 writel(rising_threshold,
237 data->base + reg->threshold_th0);
238 } else if (i == EXYNOS_MAX_TRIGGER_PER_REG) {
239 /* 5th level to be assigned in th2 reg */
240 rising_threshold =
241 threshold_code << reg->threshold_th3_l0_shift;
242 writel(rising_threshold,
243 data->base + reg->threshold_th2);
244 }
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530245 con = readl(data->base + reg->tmu_ctrl);
246 con |= (1 << reg->therm_trip_en_shift);
247 writel(con, data->base + reg->tmu_ctrl);
248 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530249 }
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530250 /*Clear the PMIN in the common TMU register*/
251 if (reg->tmu_pmin && !data->id)
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530252 writel(0, data->base_second + reg->tmu_pmin);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900253out:
254 clk_disable(data->clk);
255 mutex_unlock(&data->lock);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530256 if (!IS_ERR(data->clk_sec))
257 clk_disable(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900258
259 return ret;
260}
261
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530262static void exynos_tmu_control(struct platform_device *pdev, bool on)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900263{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530264 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
265 struct exynos_tmu_platform_data *pdata = data->pdata;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530266 const struct exynos_tmu_registers *reg = pdata->registers;
Bartlomiej Zolnierkiewiczd37761e2014-07-31 19:11:00 +0200267 unsigned int con, interrupt_en;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900268
269 mutex_lock(&data->lock);
270 clk_enable(data->clk);
271
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530272 con = readl(data->base + reg->tmu_ctrl);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530273
Lukasz Majewski86f53622013-10-09 08:29:52 +0200274 if (pdata->test_mux)
275 con |= (pdata->test_mux << reg->test_mux_addr_shift);
276
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530277 if (pdata->reference_voltage) {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530278 con &= ~(reg->buf_vref_sel_mask << reg->buf_vref_sel_shift);
279 con |= pdata->reference_voltage << reg->buf_vref_sel_shift;
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530280 }
281
282 if (pdata->gain) {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530283 con &= ~(reg->buf_slope_sel_mask << reg->buf_slope_sel_shift);
284 con |= (pdata->gain << reg->buf_slope_sel_shift);
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530285 }
286
287 if (pdata->noise_cancel_mode) {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530288 con &= ~(reg->therm_trip_mode_mask <<
289 reg->therm_trip_mode_shift);
290 con |= (pdata->noise_cancel_mode << reg->therm_trip_mode_shift);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530291 }
292
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900293 if (on) {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530294 con |= (1 << reg->core_en_shift);
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530295 interrupt_en =
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530296 pdata->trigger_enable[3] << reg->inten_rise3_shift |
297 pdata->trigger_enable[2] << reg->inten_rise2_shift |
298 pdata->trigger_enable[1] << reg->inten_rise1_shift |
299 pdata->trigger_enable[0] << reg->inten_rise0_shift;
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530300 if (TMU_SUPPORTS(pdata, FALLING_TRIP))
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530301 interrupt_en |=
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530302 interrupt_en << reg->inten_fall0_shift;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900303 } else {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530304 con &= ~(1 << reg->core_en_shift);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900305 interrupt_en = 0; /* Disable all interrupts */
306 }
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530307 writel(interrupt_en, data->base + reg->tmu_inten);
308 writel(con, data->base + reg->tmu_ctrl);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900309
310 clk_disable(data->clk);
311 mutex_unlock(&data->lock);
312}
313
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530314static int exynos_tmu_read(struct exynos_tmu_data *data)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900315{
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530316 struct exynos_tmu_platform_data *pdata = data->pdata;
317 const struct exynos_tmu_registers *reg = pdata->registers;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900318 u8 temp_code;
319 int temp;
320
321 mutex_lock(&data->lock);
322 clk_enable(data->clk);
323
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530324 temp_code = readb(data->base + reg->tmu_cur_temp);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900325
Bartlomiej Zolnierkiewiczddb31d42014-07-31 19:11:03 +0200326 if (data->soc == SOC_ARCH_EXYNOS4210)
327 /* temp_code should range between 75 and 175 */
328 if (temp_code < 75 || temp_code > 175) {
329 temp = -ENODATA;
330 goto out;
331 }
332
333 temp = code_to_temp(data, temp_code);
334out:
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900335 clk_disable(data->clk);
336 mutex_unlock(&data->lock);
337
338 return temp;
339}
340
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000341#ifdef CONFIG_THERMAL_EMULATION
342static int exynos_tmu_set_emulation(void *drv_data, unsigned long temp)
343{
344 struct exynos_tmu_data *data = drv_data;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530345 struct exynos_tmu_platform_data *pdata = data->pdata;
346 const struct exynos_tmu_registers *reg = pdata->registers;
347 unsigned int val;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000348 int ret = -EINVAL;
349
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530350 if (!TMU_SUPPORTS(pdata, EMULATION))
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000351 goto out;
352
353 if (temp && temp < MCELSIUS)
354 goto out;
355
356 mutex_lock(&data->lock);
357 clk_enable(data->clk);
358
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530359 val = readl(data->base + reg->emul_con);
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000360
361 if (temp) {
362 temp /= MCELSIUS;
363
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530364 if (TMU_SUPPORTS(pdata, EMUL_TIME)) {
365 val &= ~(EXYNOS_EMUL_TIME_MASK << reg->emul_time_shift);
366 val |= (EXYNOS_EMUL_TIME << reg->emul_time_shift);
367 }
368 val &= ~(EXYNOS_EMUL_DATA_MASK << reg->emul_temp_shift);
369 val |= (temp_to_code(data, temp) << reg->emul_temp_shift) |
370 EXYNOS_EMUL_ENABLE;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000371 } else {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530372 val &= ~EXYNOS_EMUL_ENABLE;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000373 }
374
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530375 writel(val, data->base + reg->emul_con);
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000376
377 clk_disable(data->clk);
378 mutex_unlock(&data->lock);
379 return 0;
380out:
381 return ret;
382}
383#else
384static int exynos_tmu_set_emulation(void *drv_data, unsigned long temp)
385 { return -EINVAL; }
386#endif/*CONFIG_THERMAL_EMULATION*/
387
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530388static void exynos_tmu_work(struct work_struct *work)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900389{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530390 struct exynos_tmu_data *data = container_of(work,
391 struct exynos_tmu_data, irq_work);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530392 struct exynos_tmu_platform_data *pdata = data->pdata;
393 const struct exynos_tmu_registers *reg = pdata->registers;
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530394 unsigned int val_irq, val_type;
395
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530396 if (!IS_ERR(data->clk_sec))
397 clk_enable(data->clk_sec);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530398 /* Find which sensor generated this interrupt */
399 if (reg->tmu_irqstatus) {
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530400 val_type = readl(data->base_second + reg->tmu_irqstatus);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530401 if (!((val_type >> data->id) & 0x1))
402 goto out;
403 }
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530404 if (!IS_ERR(data->clk_sec))
405 clk_disable(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900406
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530407 exynos_report_trigger(data->reg_conf);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900408 mutex_lock(&data->lock);
409 clk_enable(data->clk);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530410
Amit Daniel Kachhapa4463c42013-06-24 16:20:33 +0530411 /* TODO: take action based on particular interrupt */
412 val_irq = readl(data->base + reg->tmu_intstat);
413 /* clear the interrupts */
414 writel(val_irq, data->base + reg->tmu_intclear);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530415
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900416 clk_disable(data->clk);
417 mutex_unlock(&data->lock);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530418out:
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530419 enable_irq(data->irq);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900420}
421
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530422static irqreturn_t exynos_tmu_irq(int irq, void *id)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900423{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530424 struct exynos_tmu_data *data = id;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900425
426 disable_irq_nosync(irq);
427 schedule_work(&data->irq_work);
428
429 return IRQ_HANDLED;
430}
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530431
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530432static const struct of_device_id exynos_tmu_match[] = {
433 {
Chanwoo Choi1fe56dc2014-07-01 09:33:19 +0900434 .compatible = "samsung,exynos3250-tmu",
435 .data = (void *)EXYNOS3250_TMU_DRV_DATA,
436 },
437 {
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530438 .compatible = "samsung,exynos4210-tmu",
439 .data = (void *)EXYNOS4210_TMU_DRV_DATA,
440 },
441 {
Sachin Kamatb6cee532013-04-18 11:37:59 +0000442 .compatible = "samsung,exynos4412-tmu",
Lukasz Majewski14ddfae2013-10-09 08:29:51 +0200443 .data = (void *)EXYNOS4412_TMU_DRV_DATA,
Sachin Kamatb6cee532013-04-18 11:37:59 +0000444 },
445 {
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530446 .compatible = "samsung,exynos5250-tmu",
Amit Daniel Kachhape6b79912013-06-24 16:20:28 +0530447 .data = (void *)EXYNOS5250_TMU_DRV_DATA,
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530448 },
Amit Daniel Kachhap90542542013-06-24 16:20:44 +0530449 {
Naveen Krishna Chatradhi923488a2013-12-20 17:49:10 +0530450 .compatible = "samsung,exynos5260-tmu",
451 .data = (void *)EXYNOS5260_TMU_DRV_DATA,
452 },
453 {
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530454 .compatible = "samsung,exynos5420-tmu",
455 .data = (void *)EXYNOS5420_TMU_DRV_DATA,
456 },
457 {
458 .compatible = "samsung,exynos5420-tmu-ext-triminfo",
459 .data = (void *)EXYNOS5420_TMU_DRV_DATA,
460 },
461 {
Amit Daniel Kachhap90542542013-06-24 16:20:44 +0530462 .compatible = "samsung,exynos5440-tmu",
463 .data = (void *)EXYNOS5440_TMU_DRV_DATA,
464 },
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530465 {},
466};
467MODULE_DEVICE_TABLE(of, exynos_tmu_match);
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530468
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530469static inline struct exynos_tmu_platform_data *exynos_get_driver_data(
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530470 struct platform_device *pdev, int id)
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530471{
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530472 struct exynos_tmu_init_data *data_table;
473 struct exynos_tmu_platform_data *tmu_data;
Sachin Kamat73b5b1d2013-08-19 11:58:43 +0530474 const struct of_device_id *match;
475
476 match = of_match_node(exynos_tmu_match, pdev->dev.of_node);
477 if (!match)
478 return NULL;
479 data_table = (struct exynos_tmu_init_data *) match->data;
480 if (!data_table || id >= data_table->tmu_count)
481 return NULL;
482 tmu_data = data_table->tmu_data;
483 return (struct exynos_tmu_platform_data *) (tmu_data + id);
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530484}
Jonghwa Leebbf63be2012-11-21 13:31:01 +0900485
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530486static int exynos_map_dt_data(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900487{
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530488 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
489 struct exynos_tmu_platform_data *pdata;
490 struct resource res;
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530491 int ret;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900492
Sachin Kamat73b5b1d2013-08-19 11:58:43 +0530493 if (!data || !pdev->dev.of_node)
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530494 return -ENODEV;
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530495
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530496 /*
497 * Try enabling the regulator if found
498 * TODO: Add regulator as an SOC feature, so that regulator enable
499 * is a compulsory call.
500 */
501 data->regulator = devm_regulator_get(&pdev->dev, "vtmu");
502 if (!IS_ERR(data->regulator)) {
503 ret = regulator_enable(data->regulator);
504 if (ret) {
505 dev_err(&pdev->dev, "failed to enable vtmu\n");
506 return ret;
507 }
508 } else {
509 dev_info(&pdev->dev, "Regulator node (vtmu) not found\n");
510 }
511
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530512 data->id = of_alias_get_id(pdev->dev.of_node, "tmuctrl");
513 if (data->id < 0)
514 data->id = 0;
515
516 data->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
517 if (data->irq <= 0) {
518 dev_err(&pdev->dev, "failed to get IRQ\n");
519 return -ENODEV;
520 }
521
522 if (of_address_to_resource(pdev->dev.of_node, 0, &res)) {
523 dev_err(&pdev->dev, "failed to get Resource 0\n");
524 return -ENODEV;
525 }
526
527 data->base = devm_ioremap(&pdev->dev, res.start, resource_size(&res));
528 if (!data->base) {
529 dev_err(&pdev->dev, "Failed to ioremap memory\n");
530 return -EADDRNOTAVAIL;
531 }
532
533 pdata = exynos_get_driver_data(pdev, data->id);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900534 if (!pdata) {
535 dev_err(&pdev->dev, "No platform init data supplied.\n");
536 return -ENODEV;
537 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530538 data->pdata = pdata;
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530539 /*
540 * Check if the TMU shares some registers and then try to map the
541 * memory of common registers.
542 */
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530543 if (!TMU_SUPPORTS(pdata, ADDRESS_MULTIPLE))
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530544 return 0;
545
546 if (of_address_to_resource(pdev->dev.of_node, 1, &res)) {
547 dev_err(&pdev->dev, "failed to get Resource 1\n");
548 return -ENODEV;
549 }
550
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530551 data->base_second = devm_ioremap(&pdev->dev, res.start,
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530552 resource_size(&res));
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530553 if (!data->base_second) {
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530554 dev_err(&pdev->dev, "Failed to ioremap memory\n");
555 return -ENOMEM;
556 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530557
558 return 0;
559}
560
561static int exynos_tmu_probe(struct platform_device *pdev)
562{
563 struct exynos_tmu_data *data;
564 struct exynos_tmu_platform_data *pdata;
565 struct thermal_sensor_conf *sensor_conf;
566 int ret, i;
567
Amit Daniel Kachhap79e093c2012-08-16 05:41:45 -0600568 data = devm_kzalloc(&pdev->dev, sizeof(struct exynos_tmu_data),
569 GFP_KERNEL);
Jingoo Han2a9675b2014-05-07 15:04:48 +0900570 if (!data)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900571 return -ENOMEM;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900572
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530573 platform_set_drvdata(pdev, data);
574 mutex_init(&data->lock);
575
576 ret = exynos_map_dt_data(pdev);
577 if (ret)
578 return ret;
579
580 pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900581
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530582 INIT_WORK(&data->irq_work, exynos_tmu_work);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900583
Sachin Kamat2a162792013-04-18 11:37:58 +0000584 data->clk = devm_clk_get(&pdev->dev, "tmu_apbif");
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900585 if (IS_ERR(data->clk)) {
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900586 dev_err(&pdev->dev, "Failed to get clock\n");
Amit Daniel Kachhap79e093c2012-08-16 05:41:45 -0600587 return PTR_ERR(data->clk);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900588 }
589
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530590 data->clk_sec = devm_clk_get(&pdev->dev, "tmu_triminfo_apbif");
591 if (IS_ERR(data->clk_sec)) {
592 if (data->soc == SOC_ARCH_EXYNOS5420_TRIMINFO) {
593 dev_err(&pdev->dev, "Failed to get triminfo clock\n");
594 return PTR_ERR(data->clk_sec);
595 }
596 } else {
597 ret = clk_prepare(data->clk_sec);
598 if (ret) {
599 dev_err(&pdev->dev, "Failed to get clock\n");
600 return ret;
601 }
602 }
603
Sachin Kamat2a162792013-04-18 11:37:58 +0000604 ret = clk_prepare(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530605 if (ret) {
606 dev_err(&pdev->dev, "Failed to get clock\n");
607 goto err_clk_sec;
608 }
Sachin Kamat2a162792013-04-18 11:37:58 +0000609
Chanwoo Choi1fe56dc2014-07-01 09:33:19 +0900610 if (pdata->type == SOC_ARCH_EXYNOS3250 ||
611 pdata->type == SOC_ARCH_EXYNOS4210 ||
Lukasz Majewski14ddfae2013-10-09 08:29:51 +0200612 pdata->type == SOC_ARCH_EXYNOS4412 ||
613 pdata->type == SOC_ARCH_EXYNOS5250 ||
Naveen Krishna Chatradhi923488a2013-12-20 17:49:10 +0530614 pdata->type == SOC_ARCH_EXYNOS5260 ||
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530615 pdata->type == SOC_ARCH_EXYNOS5420_TRIMINFO ||
Lukasz Majewski14ddfae2013-10-09 08:29:51 +0200616 pdata->type == SOC_ARCH_EXYNOS5440)
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530617 data->soc = pdata->type;
618 else {
619 ret = -EINVAL;
620 dev_err(&pdev->dev, "Platform not supported\n");
621 goto err_clk;
622 }
623
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530624 ret = exynos_tmu_initialize(pdev);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900625 if (ret) {
626 dev_err(&pdev->dev, "Failed to initialize TMU\n");
627 goto err_clk;
628 }
629
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530630 exynos_tmu_control(pdev, true);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900631
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530632 /* Allocate a structure to register with the exynos core thermal */
633 sensor_conf = devm_kzalloc(&pdev->dev,
634 sizeof(struct thermal_sensor_conf), GFP_KERNEL);
635 if (!sensor_conf) {
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530636 ret = -ENOMEM;
637 goto err_clk;
638 }
639 sprintf(sensor_conf->name, "therm_zone%d", data->id);
640 sensor_conf->read_temperature = (int (*)(void *))exynos_tmu_read;
641 sensor_conf->write_emul_temp =
642 (int (*)(void *, unsigned long))exynos_tmu_set_emulation;
643 sensor_conf->driver_data = data;
644 sensor_conf->trip_data.trip_count = pdata->trigger_enable[0] +
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530645 pdata->trigger_enable[1] + pdata->trigger_enable[2]+
646 pdata->trigger_enable[3];
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530647
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530648 for (i = 0; i < sensor_conf->trip_data.trip_count; i++) {
649 sensor_conf->trip_data.trip_val[i] =
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530650 pdata->threshold + pdata->trigger_levels[i];
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530651 sensor_conf->trip_data.trip_type[i] =
Amit Daniel Kachhap5c3cf552013-06-24 16:20:37 +0530652 pdata->trigger_type[i];
653 }
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530654
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530655 sensor_conf->trip_data.trigger_falling = pdata->threshold_falling;
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000656
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530657 sensor_conf->cooling_data.freq_clip_count = pdata->freq_tab_count;
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530658 for (i = 0; i < pdata->freq_tab_count; i++) {
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530659 sensor_conf->cooling_data.freq_data[i].freq_clip_max =
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530660 pdata->freq_tab[i].freq_clip_max;
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530661 sensor_conf->cooling_data.freq_data[i].temp_level =
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530662 pdata->freq_tab[i].temp_level;
663 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530664 sensor_conf->dev = &pdev->dev;
665 /* Register the sensor with thermal management interface */
666 ret = exynos_register_thermal(sensor_conf);
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530667 if (ret) {
668 dev_err(&pdev->dev, "Failed to register thermal interface\n");
669 goto err_clk;
670 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530671 data->reg_conf = sensor_conf;
672
673 ret = devm_request_irq(&pdev->dev, data->irq, exynos_tmu_irq,
674 IRQF_TRIGGER_RISING | IRQF_SHARED, dev_name(&pdev->dev), data);
675 if (ret) {
676 dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq);
677 goto err_clk;
678 }
Jonghwa Leebbf63be2012-11-21 13:31:01 +0900679
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900680 return 0;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900681err_clk:
Sachin Kamat2a162792013-04-18 11:37:58 +0000682 clk_unprepare(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530683err_clk_sec:
684 if (!IS_ERR(data->clk_sec))
685 clk_unprepare(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900686 return ret;
687}
688
Greg Kroah-Hartman4eab7a92012-12-21 13:15:52 -0800689static int exynos_tmu_remove(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900690{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530691 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900692
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530693 exynos_unregister_thermal(data->reg_conf);
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530694
Bartlomiej Zolnierkiewicz42156882014-07-08 15:09:56 +0200695 exynos_tmu_control(pdev, false);
696
Sachin Kamat2a162792013-04-18 11:37:58 +0000697 clk_unprepare(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530698 if (!IS_ERR(data->clk_sec))
699 clk_unprepare(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900700
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530701 if (!IS_ERR(data->regulator))
702 regulator_disable(data->regulator);
703
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900704 return 0;
705}
706
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +0200707#ifdef CONFIG_PM_SLEEP
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530708static int exynos_tmu_suspend(struct device *dev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900709{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530710 exynos_tmu_control(to_platform_device(dev), false);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900711
712 return 0;
713}
714
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530715static int exynos_tmu_resume(struct device *dev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900716{
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +0200717 struct platform_device *pdev = to_platform_device(dev);
718
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530719 exynos_tmu_initialize(pdev);
720 exynos_tmu_control(pdev, true);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900721
722 return 0;
723}
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +0200724
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530725static SIMPLE_DEV_PM_OPS(exynos_tmu_pm,
726 exynos_tmu_suspend, exynos_tmu_resume);
727#define EXYNOS_TMU_PM (&exynos_tmu_pm)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900728#else
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530729#define EXYNOS_TMU_PM NULL
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900730#endif
731
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530732static struct platform_driver exynos_tmu_driver = {
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900733 .driver = {
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530734 .name = "exynos-tmu",
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900735 .owner = THIS_MODULE,
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530736 .pm = EXYNOS_TMU_PM,
Sachin Kamat73b5b1d2013-08-19 11:58:43 +0530737 .of_match_table = exynos_tmu_match,
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900738 },
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530739 .probe = exynos_tmu_probe,
Greg Kroah-Hartman4eab7a92012-12-21 13:15:52 -0800740 .remove = exynos_tmu_remove,
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900741};
742
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530743module_platform_driver(exynos_tmu_driver);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900744
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530745MODULE_DESCRIPTION("EXYNOS TMU Driver");
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900746MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
747MODULE_LICENSE("GPL");
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530748MODULE_ALIAS("platform:exynos-tmu");