blob: e35c2895b4ed906e4600605fdb44345575641e68 [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
Bartlomiej Zolnierkiewiczb835ced2014-10-03 18:17:17 +0200125static void exynos_tmu_clear_irqs(struct exynos_tmu_data *data)
126{
127 const struct exynos_tmu_registers *reg = data->pdata->registers;
128 unsigned int val_irq;
129
130 val_irq = readl(data->base + reg->tmu_intstat);
131 /*
132 * Clear the interrupts. Please note that the documentation for
133 * Exynos3250, Exynos4412, Exynos5250 and Exynos5260 incorrectly
134 * states that INTCLEAR register has a different placing of bits
135 * responsible for FALL IRQs than INTSTAT register. Exynos5420
136 * and Exynos5440 documentation is correct (Exynos4210 doesn't
137 * support FALL IRQs at all).
138 */
139 writel(val_irq, data->base + reg->tmu_intclear);
140}
141
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530142static int exynos_tmu_initialize(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900143{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530144 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
145 struct exynos_tmu_platform_data *pdata = data->pdata;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530146 const struct exynos_tmu_registers *reg = pdata->registers;
Chanwoo Choi56c64da2014-09-03 12:09:02 +0900147 unsigned int status, trim_info = 0, con, ctrl;
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000148 unsigned int rising_threshold = 0, falling_threshold = 0;
Bartlomiej Zolnierkiewiczac951af2014-07-31 19:11:04 +0200149 int ret = 0, threshold_code, i;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900150
151 mutex_lock(&data->lock);
152 clk_enable(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530153 if (!IS_ERR(data->clk_sec))
154 clk_enable(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900155
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530156 if (TMU_SUPPORTS(pdata, READY_STATUS)) {
Bartlomiej Zolnierkiewicz5d022062014-11-13 16:00:57 +0100157 status = readb(data->base + EXYNOS_TMU_REG_STATUS);
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530158 if (!status) {
159 ret = -EBUSY;
160 goto out;
161 }
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900162 }
163
Chanwoo Choi56c64da2014-09-03 12:09:02 +0900164 if (TMU_SUPPORTS(pdata, TRIM_RELOAD)) {
Bartlomiej Zolnierkiewicz32f95202014-11-13 16:00:59 +0100165 if (data->soc == SOC_ARCH_EXYNOS3250) {
166 ctrl = readl(data->base + EXYNOS_TMU_TRIMINFO_CON1);
167 ctrl |= EXYNOS_TRIMINFO_RELOAD_ENABLE;
168 writel(ctrl, data->base + EXYNOS_TMU_TRIMINFO_CON1);
Chanwoo Choi56c64da2014-09-03 12:09:02 +0900169 }
Bartlomiej Zolnierkiewicz32f95202014-11-13 16:00:59 +0100170 ctrl = readl(data->base + EXYNOS_TMU_TRIMINFO_CON2);
171 ctrl |= EXYNOS_TRIMINFO_RELOAD_ENABLE;
172 writel(ctrl, data->base + EXYNOS_TMU_TRIMINFO_CON2);
Chanwoo Choi56c64da2014-09-03 12:09:02 +0900173 }
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530174
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530175 /* Save trimming info in order to perform calibration */
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530176 if (data->soc == SOC_ARCH_EXYNOS5440) {
177 /*
178 * For exynos5440 soc triminfo value is swapped between TMU0 and
179 * TMU2, so the below logic is needed.
180 */
181 switch (data->id) {
182 case 0:
183 trim_info = readl(data->base +
Bartlomiej Zolnierkiewicz77109412014-11-13 16:00:56 +0100184 EXYNOS5440_EFUSE_SWAP_OFFSET + EXYNOS5440_TMU_S0_7_TRIM);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530185 break;
186 case 1:
Bartlomiej Zolnierkiewicz77109412014-11-13 16:00:56 +0100187 trim_info = readl(data->base + EXYNOS5440_TMU_S0_7_TRIM);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530188 break;
189 case 2:
190 trim_info = readl(data->base -
Bartlomiej Zolnierkiewicz77109412014-11-13 16:00:56 +0100191 EXYNOS5440_EFUSE_SWAP_OFFSET + EXYNOS5440_TMU_S0_7_TRIM);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530192 }
193 } else {
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530194 /* On exynos5420 the triminfo register is in the shared space */
195 if (data->soc == SOC_ARCH_EXYNOS5420_TRIMINFO)
196 trim_info = readl(data->base_second +
Bartlomiej Zolnierkiewicz77109412014-11-13 16:00:56 +0100197 EXYNOS_TMU_REG_TRIMINFO);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530198 else
Bartlomiej Zolnierkiewicz77109412014-11-13 16:00:56 +0100199 trim_info = readl(data->base + EXYNOS_TMU_REG_TRIMINFO);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530200 }
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530201 data->temp_error1 = trim_info & EXYNOS_TMU_TEMP_MASK;
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200202 data->temp_error2 = ((trim_info >> EXYNOS_TRIMINFO_85_SHIFT) &
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530203 EXYNOS_TMU_TEMP_MASK);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900204
Amit Daniel Kachhap50008062013-06-24 16:20:45 +0530205 if (!data->temp_error1 ||
206 (pdata->min_efuse_value > data->temp_error1) ||
207 (data->temp_error1 > pdata->max_efuse_value))
208 data->temp_error1 = pdata->efuse_value & EXYNOS_TMU_TEMP_MASK;
209
210 if (!data->temp_error2)
211 data->temp_error2 =
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200212 (pdata->efuse_value >> EXYNOS_TRIMINFO_85_SHIFT) &
Amit Daniel Kachhap50008062013-06-24 16:20:45 +0530213 EXYNOS_TMU_TEMP_MASK;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900214
Tushar Beherac65d3472014-04-14 11:08:15 +0530215 rising_threshold = readl(data->base + reg->threshold_th0);
216
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530217 if (data->soc == SOC_ARCH_EXYNOS4210) {
218 /* Write temperature code for threshold */
219 threshold_code = temp_to_code(data, pdata->threshold);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530220 writeb(threshold_code,
Bartlomiej Zolnierkiewicz6b1fbbd2014-11-13 16:00:58 +0100221 data->base + EXYNOS4210_TMU_REG_THRESHOLD_TEMP);
Bartlomiej Zolnierkiewiczac951af2014-07-31 19:11:04 +0200222 for (i = 0; i < pdata->non_hw_trigger_levels; i++)
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530223 writeb(pdata->trigger_levels[i], data->base +
224 reg->threshold_th0 + i * sizeof(reg->threshold_th0));
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530225
Bartlomiej Zolnierkiewiczb835ced2014-10-03 18:17:17 +0200226 exynos_tmu_clear_irqs(data);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530227 } else {
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000228 /* Write temperature code for rising and falling threshold */
Bartlomiej Zolnierkiewiczac951af2014-07-31 19:11:04 +0200229 for (i = 0; i < pdata->non_hw_trigger_levels; i++) {
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000230 threshold_code = temp_to_code(data,
231 pdata->trigger_levels[i]);
Tushar Beherac65d3472014-04-14 11:08:15 +0530232 rising_threshold &= ~(0xff << 8 * i);
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000233 rising_threshold |= threshold_code << 8 * i;
234 if (pdata->threshold_falling) {
235 threshold_code = temp_to_code(data,
236 pdata->trigger_levels[i] -
237 pdata->threshold_falling);
Bartlomiej Zolnierkiewicz8131a242014-07-31 19:11:02 +0200238 falling_threshold |= threshold_code << 8 * i;
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000239 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530240 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530241
242 writel(rising_threshold,
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530243 data->base + reg->threshold_th0);
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000244 writel(falling_threshold,
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530245 data->base + reg->threshold_th1);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530246
Bartlomiej Zolnierkiewiczb835ced2014-10-03 18:17:17 +0200247 exynos_tmu_clear_irqs(data);
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530248
249 /* if last threshold limit is also present */
250 i = pdata->max_trigger_level - 1;
251 if (pdata->trigger_levels[i] &&
252 (pdata->trigger_type[i] == HW_TRIP)) {
253 threshold_code = temp_to_code(data,
254 pdata->trigger_levels[i]);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530255 if (i == EXYNOS_MAX_TRIGGER_PER_REG - 1) {
256 /* 1-4 level to be assigned in th0 reg */
Tushar Beherac65d3472014-04-14 11:08:15 +0530257 rising_threshold &= ~(0xff << 8 * i);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530258 rising_threshold |= threshold_code << 8 * i;
259 writel(rising_threshold,
260 data->base + reg->threshold_th0);
261 } else if (i == EXYNOS_MAX_TRIGGER_PER_REG) {
262 /* 5th level to be assigned in th2 reg */
263 rising_threshold =
264 threshold_code << reg->threshold_th3_l0_shift;
265 writel(rising_threshold,
266 data->base + reg->threshold_th2);
267 }
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530268 con = readl(data->base + reg->tmu_ctrl);
Bartlomiej Zolnierkiewicz77a37a92014-11-13 16:01:02 +0100269 con |= (1 << EXYNOS_TMU_THERM_TRIP_EN_SHIFT);
Amit Daniel Kachhap7ca04e52013-06-24 16:20:32 +0530270 writel(con, data->base + reg->tmu_ctrl);
271 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530272 }
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530273 /*Clear the PMIN in the common TMU register*/
274 if (reg->tmu_pmin && !data->id)
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530275 writel(0, data->base_second + reg->tmu_pmin);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900276out:
277 clk_disable(data->clk);
278 mutex_unlock(&data->lock);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530279 if (!IS_ERR(data->clk_sec))
280 clk_disable(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900281
282 return ret;
283}
284
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530285static void exynos_tmu_control(struct platform_device *pdev, bool on)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900286{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530287 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
288 struct exynos_tmu_platform_data *pdata = data->pdata;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530289 const struct exynos_tmu_registers *reg = pdata->registers;
Bartlomiej Zolnierkiewiczd37761e2014-07-31 19:11:00 +0200290 unsigned int con, interrupt_en;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900291
292 mutex_lock(&data->lock);
293 clk_enable(data->clk);
294
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530295 con = readl(data->base + reg->tmu_ctrl);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530296
Lukasz Majewski86f53622013-10-09 08:29:52 +0200297 if (pdata->test_mux)
Bartlomiej Zolnierkiewiczbfb2b882014-11-13 16:01:00 +0100298 con |= (pdata->test_mux << EXYNOS4412_MUX_ADDR_SHIFT);
Lukasz Majewski86f53622013-10-09 08:29:52 +0200299
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200300 con &= ~(EXYNOS_TMU_REF_VOLTAGE_MASK << EXYNOS_TMU_REF_VOLTAGE_SHIFT);
301 con |= pdata->reference_voltage << EXYNOS_TMU_REF_VOLTAGE_SHIFT;
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530302
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200303 con &= ~(EXYNOS_TMU_BUF_SLOPE_SEL_MASK << EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT);
304 con |= (pdata->gain << EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT);
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530305
306 if (pdata->noise_cancel_mode) {
Bartlomiej Zolnierkiewiczb9504a62014-11-13 16:01:01 +0100307 con &= ~(EXYNOS_TMU_TRIP_MODE_MASK << EXYNOS_TMU_TRIP_MODE_SHIFT);
308 con |= (pdata->noise_cancel_mode << EXYNOS_TMU_TRIP_MODE_SHIFT);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530309 }
310
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900311 if (on) {
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200312 con |= (1 << EXYNOS_TMU_CORE_EN_SHIFT);
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530313 interrupt_en =
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530314 pdata->trigger_enable[3] << reg->inten_rise3_shift |
315 pdata->trigger_enable[2] << reg->inten_rise2_shift |
316 pdata->trigger_enable[1] << reg->inten_rise1_shift |
317 pdata->trigger_enable[0] << reg->inten_rise0_shift;
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530318 if (TMU_SUPPORTS(pdata, FALLING_TRIP))
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530319 interrupt_en |=
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530320 interrupt_en << reg->inten_fall0_shift;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900321 } else {
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200322 con &= ~(1 << EXYNOS_TMU_CORE_EN_SHIFT);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900323 interrupt_en = 0; /* Disable all interrupts */
324 }
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530325 writel(interrupt_en, data->base + reg->tmu_inten);
326 writel(con, data->base + reg->tmu_ctrl);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900327
328 clk_disable(data->clk);
329 mutex_unlock(&data->lock);
330}
331
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530332static int exynos_tmu_read(struct exynos_tmu_data *data)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900333{
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530334 struct exynos_tmu_platform_data *pdata = data->pdata;
335 const struct exynos_tmu_registers *reg = pdata->registers;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900336 u8 temp_code;
337 int temp;
338
339 mutex_lock(&data->lock);
340 clk_enable(data->clk);
341
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530342 temp_code = readb(data->base + reg->tmu_cur_temp);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900343
Bartlomiej Zolnierkiewiczddb31d42014-07-31 19:11:03 +0200344 if (data->soc == SOC_ARCH_EXYNOS4210)
345 /* temp_code should range between 75 and 175 */
346 if (temp_code < 75 || temp_code > 175) {
347 temp = -ENODATA;
348 goto out;
349 }
350
351 temp = code_to_temp(data, temp_code);
352out:
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900353 clk_disable(data->clk);
354 mutex_unlock(&data->lock);
355
356 return temp;
357}
358
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000359#ifdef CONFIG_THERMAL_EMULATION
360static int exynos_tmu_set_emulation(void *drv_data, unsigned long temp)
361{
362 struct exynos_tmu_data *data = drv_data;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530363 struct exynos_tmu_platform_data *pdata = data->pdata;
364 const struct exynos_tmu_registers *reg = pdata->registers;
365 unsigned int val;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000366 int ret = -EINVAL;
367
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530368 if (!TMU_SUPPORTS(pdata, EMULATION))
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000369 goto out;
370
371 if (temp && temp < MCELSIUS)
372 goto out;
373
374 mutex_lock(&data->lock);
375 clk_enable(data->clk);
376
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530377 val = readl(data->base + reg->emul_con);
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000378
379 if (temp) {
380 temp /= MCELSIUS;
381
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530382 if (TMU_SUPPORTS(pdata, EMUL_TIME)) {
Bartlomiej Zolnierkiewicz6070c2c2014-11-13 16:01:04 +0100383 val &= ~(EXYNOS_EMUL_TIME_MASK << EXYNOS_EMUL_TIME_SHIFT);
384 val |= (EXYNOS_EMUL_TIME << EXYNOS_EMUL_TIME_SHIFT);
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530385 }
Bartlomiej Zolnierkiewicz9e288d62014-11-13 16:01:03 +0100386 val &= ~(EXYNOS_EMUL_DATA_MASK << EXYNOS_EMUL_DATA_SHIFT);
387 val |= (temp_to_code(data, temp) << EXYNOS_EMUL_DATA_SHIFT) |
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530388 EXYNOS_EMUL_ENABLE;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000389 } else {
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530390 val &= ~EXYNOS_EMUL_ENABLE;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000391 }
392
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530393 writel(val, data->base + reg->emul_con);
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000394
395 clk_disable(data->clk);
396 mutex_unlock(&data->lock);
397 return 0;
398out:
399 return ret;
400}
401#else
402static int exynos_tmu_set_emulation(void *drv_data, unsigned long temp)
403 { return -EINVAL; }
404#endif/*CONFIG_THERMAL_EMULATION*/
405
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530406static void exynos_tmu_work(struct work_struct *work)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900407{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530408 struct exynos_tmu_data *data = container_of(work,
409 struct exynos_tmu_data, irq_work);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530410 struct exynos_tmu_platform_data *pdata = data->pdata;
411 const struct exynos_tmu_registers *reg = pdata->registers;
Bartlomiej Zolnierkiewiczb835ced2014-10-03 18:17:17 +0200412 unsigned int val_type;
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530413
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530414 if (!IS_ERR(data->clk_sec))
415 clk_enable(data->clk_sec);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530416 /* Find which sensor generated this interrupt */
417 if (reg->tmu_irqstatus) {
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530418 val_type = readl(data->base_second + reg->tmu_irqstatus);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530419 if (!((val_type >> data->id) & 0x1))
420 goto out;
421 }
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530422 if (!IS_ERR(data->clk_sec))
423 clk_disable(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900424
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530425 exynos_report_trigger(data->reg_conf);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900426 mutex_lock(&data->lock);
427 clk_enable(data->clk);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530428
Amit Daniel Kachhapa4463c42013-06-24 16:20:33 +0530429 /* TODO: take action based on particular interrupt */
Bartlomiej Zolnierkiewiczb835ced2014-10-03 18:17:17 +0200430 exynos_tmu_clear_irqs(data);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530431
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900432 clk_disable(data->clk);
433 mutex_unlock(&data->lock);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530434out:
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530435 enable_irq(data->irq);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900436}
437
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530438static irqreturn_t exynos_tmu_irq(int irq, void *id)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900439{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530440 struct exynos_tmu_data *data = id;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900441
442 disable_irq_nosync(irq);
443 schedule_work(&data->irq_work);
444
445 return IRQ_HANDLED;
446}
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530447
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530448static const struct of_device_id exynos_tmu_match[] = {
449 {
Chanwoo Choi1fe56dc2014-07-01 09:33:19 +0900450 .compatible = "samsung,exynos3250-tmu",
451 .data = (void *)EXYNOS3250_TMU_DRV_DATA,
452 },
453 {
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530454 .compatible = "samsung,exynos4210-tmu",
455 .data = (void *)EXYNOS4210_TMU_DRV_DATA,
456 },
457 {
Sachin Kamatb6cee532013-04-18 11:37:59 +0000458 .compatible = "samsung,exynos4412-tmu",
Lukasz Majewski14ddfae2013-10-09 08:29:51 +0200459 .data = (void *)EXYNOS4412_TMU_DRV_DATA,
Sachin Kamatb6cee532013-04-18 11:37:59 +0000460 },
461 {
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530462 .compatible = "samsung,exynos5250-tmu",
Amit Daniel Kachhape6b79912013-06-24 16:20:28 +0530463 .data = (void *)EXYNOS5250_TMU_DRV_DATA,
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530464 },
Amit Daniel Kachhap90542542013-06-24 16:20:44 +0530465 {
Naveen Krishna Chatradhi923488a2013-12-20 17:49:10 +0530466 .compatible = "samsung,exynos5260-tmu",
467 .data = (void *)EXYNOS5260_TMU_DRV_DATA,
468 },
469 {
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530470 .compatible = "samsung,exynos5420-tmu",
471 .data = (void *)EXYNOS5420_TMU_DRV_DATA,
472 },
473 {
474 .compatible = "samsung,exynos5420-tmu-ext-triminfo",
475 .data = (void *)EXYNOS5420_TMU_DRV_DATA,
476 },
477 {
Amit Daniel Kachhap90542542013-06-24 16:20:44 +0530478 .compatible = "samsung,exynos5440-tmu",
479 .data = (void *)EXYNOS5440_TMU_DRV_DATA,
480 },
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530481 {},
482};
483MODULE_DEVICE_TABLE(of, exynos_tmu_match);
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530484
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530485static inline struct exynos_tmu_platform_data *exynos_get_driver_data(
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530486 struct platform_device *pdev, int id)
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530487{
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530488 struct exynos_tmu_init_data *data_table;
489 struct exynos_tmu_platform_data *tmu_data;
Sachin Kamat73b5b1d2013-08-19 11:58:43 +0530490 const struct of_device_id *match;
491
492 match = of_match_node(exynos_tmu_match, pdev->dev.of_node);
493 if (!match)
494 return NULL;
495 data_table = (struct exynos_tmu_init_data *) match->data;
496 if (!data_table || id >= data_table->tmu_count)
497 return NULL;
498 tmu_data = data_table->tmu_data;
499 return (struct exynos_tmu_platform_data *) (tmu_data + id);
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530500}
Jonghwa Leebbf63be2012-11-21 13:31:01 +0900501
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530502static int exynos_map_dt_data(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900503{
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530504 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
505 struct exynos_tmu_platform_data *pdata;
506 struct resource res;
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530507 int ret;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900508
Sachin Kamat73b5b1d2013-08-19 11:58:43 +0530509 if (!data || !pdev->dev.of_node)
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530510 return -ENODEV;
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +0530511
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530512 /*
513 * Try enabling the regulator if found
514 * TODO: Add regulator as an SOC feature, so that regulator enable
515 * is a compulsory call.
516 */
517 data->regulator = devm_regulator_get(&pdev->dev, "vtmu");
518 if (!IS_ERR(data->regulator)) {
519 ret = regulator_enable(data->regulator);
520 if (ret) {
521 dev_err(&pdev->dev, "failed to enable vtmu\n");
522 return ret;
523 }
524 } else {
525 dev_info(&pdev->dev, "Regulator node (vtmu) not found\n");
526 }
527
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530528 data->id = of_alias_get_id(pdev->dev.of_node, "tmuctrl");
529 if (data->id < 0)
530 data->id = 0;
531
532 data->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
533 if (data->irq <= 0) {
534 dev_err(&pdev->dev, "failed to get IRQ\n");
535 return -ENODEV;
536 }
537
538 if (of_address_to_resource(pdev->dev.of_node, 0, &res)) {
539 dev_err(&pdev->dev, "failed to get Resource 0\n");
540 return -ENODEV;
541 }
542
543 data->base = devm_ioremap(&pdev->dev, res.start, resource_size(&res));
544 if (!data->base) {
545 dev_err(&pdev->dev, "Failed to ioremap memory\n");
546 return -EADDRNOTAVAIL;
547 }
548
549 pdata = exynos_get_driver_data(pdev, data->id);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900550 if (!pdata) {
551 dev_err(&pdev->dev, "No platform init data supplied.\n");
552 return -ENODEV;
553 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530554 data->pdata = pdata;
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530555 /*
556 * Check if the TMU shares some registers and then try to map the
557 * memory of common registers.
558 */
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530559 if (!TMU_SUPPORTS(pdata, ADDRESS_MULTIPLE))
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530560 return 0;
561
562 if (of_address_to_resource(pdev->dev.of_node, 1, &res)) {
563 dev_err(&pdev->dev, "failed to get Resource 1\n");
564 return -ENODEV;
565 }
566
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530567 data->base_second = devm_ioremap(&pdev->dev, res.start,
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530568 resource_size(&res));
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530569 if (!data->base_second) {
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +0530570 dev_err(&pdev->dev, "Failed to ioremap memory\n");
571 return -ENOMEM;
572 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530573
574 return 0;
575}
576
577static int exynos_tmu_probe(struct platform_device *pdev)
578{
579 struct exynos_tmu_data *data;
580 struct exynos_tmu_platform_data *pdata;
581 struct thermal_sensor_conf *sensor_conf;
582 int ret, i;
583
Amit Daniel Kachhap79e093c2012-08-16 05:41:45 -0600584 data = devm_kzalloc(&pdev->dev, sizeof(struct exynos_tmu_data),
585 GFP_KERNEL);
Jingoo Han2a9675b2014-05-07 15:04:48 +0900586 if (!data)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900587 return -ENOMEM;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900588
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530589 platform_set_drvdata(pdev, data);
590 mutex_init(&data->lock);
591
592 ret = exynos_map_dt_data(pdev);
593 if (ret)
594 return ret;
595
596 pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900597
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530598 INIT_WORK(&data->irq_work, exynos_tmu_work);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900599
Sachin Kamat2a162792013-04-18 11:37:58 +0000600 data->clk = devm_clk_get(&pdev->dev, "tmu_apbif");
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900601 if (IS_ERR(data->clk)) {
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900602 dev_err(&pdev->dev, "Failed to get clock\n");
Amit Daniel Kachhap79e093c2012-08-16 05:41:45 -0600603 return PTR_ERR(data->clk);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900604 }
605
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530606 data->clk_sec = devm_clk_get(&pdev->dev, "tmu_triminfo_apbif");
607 if (IS_ERR(data->clk_sec)) {
608 if (data->soc == SOC_ARCH_EXYNOS5420_TRIMINFO) {
609 dev_err(&pdev->dev, "Failed to get triminfo clock\n");
610 return PTR_ERR(data->clk_sec);
611 }
612 } else {
613 ret = clk_prepare(data->clk_sec);
614 if (ret) {
615 dev_err(&pdev->dev, "Failed to get clock\n");
616 return ret;
617 }
618 }
619
Sachin Kamat2a162792013-04-18 11:37:58 +0000620 ret = clk_prepare(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530621 if (ret) {
622 dev_err(&pdev->dev, "Failed to get clock\n");
623 goto err_clk_sec;
624 }
Sachin Kamat2a162792013-04-18 11:37:58 +0000625
Chanwoo Choi1fe56dc2014-07-01 09:33:19 +0900626 if (pdata->type == SOC_ARCH_EXYNOS3250 ||
627 pdata->type == SOC_ARCH_EXYNOS4210 ||
Lukasz Majewski14ddfae2013-10-09 08:29:51 +0200628 pdata->type == SOC_ARCH_EXYNOS4412 ||
629 pdata->type == SOC_ARCH_EXYNOS5250 ||
Naveen Krishna Chatradhi923488a2013-12-20 17:49:10 +0530630 pdata->type == SOC_ARCH_EXYNOS5260 ||
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530631 pdata->type == SOC_ARCH_EXYNOS5420_TRIMINFO ||
Lukasz Majewski14ddfae2013-10-09 08:29:51 +0200632 pdata->type == SOC_ARCH_EXYNOS5440)
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530633 data->soc = pdata->type;
634 else {
635 ret = -EINVAL;
636 dev_err(&pdev->dev, "Platform not supported\n");
637 goto err_clk;
638 }
639
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530640 ret = exynos_tmu_initialize(pdev);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900641 if (ret) {
642 dev_err(&pdev->dev, "Failed to initialize TMU\n");
643 goto err_clk;
644 }
645
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530646 exynos_tmu_control(pdev, true);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900647
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530648 /* Allocate a structure to register with the exynos core thermal */
649 sensor_conf = devm_kzalloc(&pdev->dev,
650 sizeof(struct thermal_sensor_conf), GFP_KERNEL);
651 if (!sensor_conf) {
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530652 ret = -ENOMEM;
653 goto err_clk;
654 }
655 sprintf(sensor_conf->name, "therm_zone%d", data->id);
656 sensor_conf->read_temperature = (int (*)(void *))exynos_tmu_read;
657 sensor_conf->write_emul_temp =
658 (int (*)(void *, unsigned long))exynos_tmu_set_emulation;
659 sensor_conf->driver_data = data;
660 sensor_conf->trip_data.trip_count = pdata->trigger_enable[0] +
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530661 pdata->trigger_enable[1] + pdata->trigger_enable[2]+
662 pdata->trigger_enable[3];
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530663
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530664 for (i = 0; i < sensor_conf->trip_data.trip_count; i++) {
665 sensor_conf->trip_data.trip_val[i] =
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530666 pdata->threshold + pdata->trigger_levels[i];
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530667 sensor_conf->trip_data.trip_type[i] =
Amit Daniel Kachhap5c3cf552013-06-24 16:20:37 +0530668 pdata->trigger_type[i];
669 }
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530670
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530671 sensor_conf->trip_data.trigger_falling = pdata->threshold_falling;
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000672
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530673 sensor_conf->cooling_data.freq_clip_count = pdata->freq_tab_count;
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530674 for (i = 0; i < pdata->freq_tab_count; i++) {
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530675 sensor_conf->cooling_data.freq_data[i].freq_clip_max =
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530676 pdata->freq_tab[i].freq_clip_max;
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530677 sensor_conf->cooling_data.freq_data[i].temp_level =
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530678 pdata->freq_tab[i].temp_level;
679 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530680 sensor_conf->dev = &pdev->dev;
681 /* Register the sensor with thermal management interface */
682 ret = exynos_register_thermal(sensor_conf);
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530683 if (ret) {
684 dev_err(&pdev->dev, "Failed to register thermal interface\n");
685 goto err_clk;
686 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530687 data->reg_conf = sensor_conf;
688
689 ret = devm_request_irq(&pdev->dev, data->irq, exynos_tmu_irq,
690 IRQF_TRIGGER_RISING | IRQF_SHARED, dev_name(&pdev->dev), data);
691 if (ret) {
692 dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq);
693 goto err_clk;
694 }
Jonghwa Leebbf63be2012-11-21 13:31:01 +0900695
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900696 return 0;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900697err_clk:
Sachin Kamat2a162792013-04-18 11:37:58 +0000698 clk_unprepare(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530699err_clk_sec:
700 if (!IS_ERR(data->clk_sec))
701 clk_unprepare(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900702 return ret;
703}
704
Greg Kroah-Hartman4eab7a92012-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 Kachhapcebe7372013-06-24 16:20:39 +0530709 exynos_unregister_thermal(data->reg_conf);
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530710
Bartlomiej Zolnierkiewicz42156882014-07-08 15:09:56 +0200711 exynos_tmu_control(pdev, false);
712
Sachin Kamat2a162792013-04-18 11:37:58 +0000713 clk_unprepare(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530714 if (!IS_ERR(data->clk_sec))
715 clk_unprepare(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900716
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530717 if (!IS_ERR(data->regulator))
718 regulator_disable(data->regulator);
719
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900720 return 0;
721}
722
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +0200723#ifdef CONFIG_PM_SLEEP
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530724static int exynos_tmu_suspend(struct device *dev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900725{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530726 exynos_tmu_control(to_platform_device(dev), false);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900727
728 return 0;
729}
730
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530731static int exynos_tmu_resume(struct device *dev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900732{
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +0200733 struct platform_device *pdev = to_platform_device(dev);
734
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530735 exynos_tmu_initialize(pdev);
736 exynos_tmu_control(pdev, true);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900737
738 return 0;
739}
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +0200740
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530741static SIMPLE_DEV_PM_OPS(exynos_tmu_pm,
742 exynos_tmu_suspend, exynos_tmu_resume);
743#define EXYNOS_TMU_PM (&exynos_tmu_pm)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900744#else
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530745#define EXYNOS_TMU_PM NULL
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900746#endif
747
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530748static struct platform_driver exynos_tmu_driver = {
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900749 .driver = {
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530750 .name = "exynos-tmu",
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900751 .owner = THIS_MODULE,
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530752 .pm = EXYNOS_TMU_PM,
Sachin Kamat73b5b1d2013-08-19 11:58:43 +0530753 .of_match_table = exynos_tmu_match,
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900754 },
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530755 .probe = exynos_tmu_probe,
Greg Kroah-Hartman4eab7a92012-12-21 13:15:52 -0800756 .remove = exynos_tmu_remove,
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900757};
758
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530759module_platform_driver(exynos_tmu_driver);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900760
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530761MODULE_DESCRIPTION("EXYNOS TMU Driver");
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900762MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
763MODULE_LICENSE("GPL");
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530764MODULE_ALIAS("platform:exynos-tmu");