blob: ad1186dd6132c3ca74f7df209605a25745b16cac [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 *
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01004 * Copyright (C) 2014 Samsung Electronics
5 * Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6 * Lukasz Majewski <l.majewski@samsung.com>
7 *
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09008 * Copyright (C) 2011 Samsung Electronics
9 * Donggeun Kim <dg77.kim@samsung.com>
Amit Daniel Kachhapc48cbba2012-08-16 17:11:41 +053010 * Amit Daniel Kachhap <amit.kachhap@linaro.org>
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
26 */
27
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090028#include <linux/clk.h>
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090029#include <linux/io.h>
Amit Daniel Kachhap1b678642013-06-24 16:20:25 +053030#include <linux/interrupt.h>
31#include <linux/module.h>
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053032#include <linux/of.h>
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +053033#include <linux/of_address.h>
34#include <linux/of_irq.h>
Amit Daniel Kachhap1b678642013-06-24 16:20:25 +053035#include <linux/platform_device.h>
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +053036#include <linux/regulator/consumer.h>
Amit Daniel Kachhap1b678642013-06-24 16:20:25 +053037
Amit Daniel Kachhap0c1836a2013-06-24 16:20:27 +053038#include "exynos_tmu.h"
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +010039#include "../thermal_core.h"
Bartlomiej Zolnierkiewicz2845f6ec2014-11-13 16:01:28 +010040
41/* Exynos generic registers */
42#define EXYNOS_TMU_REG_TRIMINFO 0x0
43#define EXYNOS_TMU_REG_CONTROL 0x20
44#define EXYNOS_TMU_REG_STATUS 0x28
45#define EXYNOS_TMU_REG_CURRENT_TEMP 0x40
46#define EXYNOS_TMU_REG_INTEN 0x70
47#define EXYNOS_TMU_REG_INTSTAT 0x74
48#define EXYNOS_TMU_REG_INTCLEAR 0x78
49
50#define EXYNOS_TMU_TEMP_MASK 0xff
51#define EXYNOS_TMU_REF_VOLTAGE_SHIFT 24
52#define EXYNOS_TMU_REF_VOLTAGE_MASK 0x1f
53#define EXYNOS_TMU_BUF_SLOPE_SEL_MASK 0xf
54#define EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT 8
55#define EXYNOS_TMU_CORE_EN_SHIFT 0
56
57/* Exynos3250 specific registers */
58#define EXYNOS_TMU_TRIMINFO_CON1 0x10
59
60/* Exynos4210 specific registers */
61#define EXYNOS4210_TMU_REG_THRESHOLD_TEMP 0x44
62#define EXYNOS4210_TMU_REG_TRIG_LEVEL0 0x50
63
64/* Exynos5250, Exynos4412, Exynos3250 specific registers */
65#define EXYNOS_TMU_TRIMINFO_CON2 0x14
66#define EXYNOS_THD_TEMP_RISE 0x50
67#define EXYNOS_THD_TEMP_FALL 0x54
68#define EXYNOS_EMUL_CON 0x80
69
70#define EXYNOS_TRIMINFO_RELOAD_ENABLE 1
71#define EXYNOS_TRIMINFO_25_SHIFT 0
72#define EXYNOS_TRIMINFO_85_SHIFT 8
73#define EXYNOS_TMU_TRIP_MODE_SHIFT 13
74#define EXYNOS_TMU_TRIP_MODE_MASK 0x7
75#define EXYNOS_TMU_THERM_TRIP_EN_SHIFT 12
76
77#define EXYNOS_TMU_INTEN_RISE0_SHIFT 0
78#define EXYNOS_TMU_INTEN_RISE1_SHIFT 4
79#define EXYNOS_TMU_INTEN_RISE2_SHIFT 8
80#define EXYNOS_TMU_INTEN_RISE3_SHIFT 12
81#define EXYNOS_TMU_INTEN_FALL0_SHIFT 16
82
83#define EXYNOS_EMUL_TIME 0x57F0
84#define EXYNOS_EMUL_TIME_MASK 0xffff
85#define EXYNOS_EMUL_TIME_SHIFT 16
86#define EXYNOS_EMUL_DATA_SHIFT 8
87#define EXYNOS_EMUL_DATA_MASK 0xFF
88#define EXYNOS_EMUL_ENABLE 0x1
89
90/* Exynos5260 specific */
91#define EXYNOS5260_TMU_REG_INTEN 0xC0
92#define EXYNOS5260_TMU_REG_INTSTAT 0xC4
93#define EXYNOS5260_TMU_REG_INTCLEAR 0xC8
94#define EXYNOS5260_EMUL_CON 0x100
95
96/* Exynos4412 specific */
97#define EXYNOS4412_MUX_ADDR_VALUE 6
98#define EXYNOS4412_MUX_ADDR_SHIFT 20
99
Chanwoo Choi488c7452015-03-10 11:23:44 +0900100/* Exynos5433 specific registers */
101#define EXYNOS5433_TMU_REG_CONTROL1 0x024
102#define EXYNOS5433_TMU_SAMPLING_INTERVAL 0x02c
103#define EXYNOS5433_TMU_COUNTER_VALUE0 0x030
104#define EXYNOS5433_TMU_COUNTER_VALUE1 0x034
105#define EXYNOS5433_TMU_REG_CURRENT_TEMP1 0x044
106#define EXYNOS5433_THD_TEMP_RISE3_0 0x050
107#define EXYNOS5433_THD_TEMP_RISE7_4 0x054
108#define EXYNOS5433_THD_TEMP_FALL3_0 0x060
109#define EXYNOS5433_THD_TEMP_FALL7_4 0x064
110#define EXYNOS5433_TMU_REG_INTEN 0x0c0
111#define EXYNOS5433_TMU_REG_INTPEND 0x0c8
112#define EXYNOS5433_TMU_EMUL_CON 0x110
113#define EXYNOS5433_TMU_PD_DET_EN 0x130
114
115#define EXYNOS5433_TRIMINFO_SENSOR_ID_SHIFT 16
116#define EXYNOS5433_TRIMINFO_CALIB_SEL_SHIFT 23
117#define EXYNOS5433_TRIMINFO_SENSOR_ID_MASK \
118 (0xf << EXYNOS5433_TRIMINFO_SENSOR_ID_SHIFT)
119#define EXYNOS5433_TRIMINFO_CALIB_SEL_MASK BIT(23)
120
121#define EXYNOS5433_TRIMINFO_ONE_POINT_TRIMMING 0
122#define EXYNOS5433_TRIMINFO_TWO_POINT_TRIMMING 1
123
124#define EXYNOS5433_PD_DET_EN 1
125
Bartlomiej Zolnierkiewicz2845f6ec2014-11-13 16:01:28 +0100126/*exynos5440 specific registers*/
127#define EXYNOS5440_TMU_S0_7_TRIM 0x000
128#define EXYNOS5440_TMU_S0_7_CTRL 0x020
129#define EXYNOS5440_TMU_S0_7_DEBUG 0x040
130#define EXYNOS5440_TMU_S0_7_TEMP 0x0f0
131#define EXYNOS5440_TMU_S0_7_TH0 0x110
132#define EXYNOS5440_TMU_S0_7_TH1 0x130
133#define EXYNOS5440_TMU_S0_7_TH2 0x150
134#define EXYNOS5440_TMU_S0_7_IRQEN 0x210
135#define EXYNOS5440_TMU_S0_7_IRQ 0x230
136/* exynos5440 common registers */
137#define EXYNOS5440_TMU_IRQ_STATUS 0x000
138#define EXYNOS5440_TMU_PMIN 0x004
139
140#define EXYNOS5440_TMU_INTEN_RISE0_SHIFT 0
141#define EXYNOS5440_TMU_INTEN_RISE1_SHIFT 1
142#define EXYNOS5440_TMU_INTEN_RISE2_SHIFT 2
143#define EXYNOS5440_TMU_INTEN_RISE3_SHIFT 3
144#define EXYNOS5440_TMU_INTEN_FALL0_SHIFT 4
145#define EXYNOS5440_TMU_TH_RISE4_SHIFT 24
146#define EXYNOS5440_EFUSE_SWAP_OFFSET 8
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900147
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530148/* Exynos7 specific registers */
149#define EXYNOS7_THD_TEMP_RISE7_6 0x50
150#define EXYNOS7_THD_TEMP_FALL7_6 0x60
151#define EXYNOS7_TMU_REG_INTEN 0x110
152#define EXYNOS7_TMU_REG_INTPEND 0x118
153#define EXYNOS7_TMU_REG_EMUL_CON 0x160
154
155#define EXYNOS7_TMU_TEMP_MASK 0x1ff
156#define EXYNOS7_PD_DET_EN_SHIFT 23
157#define EXYNOS7_TMU_INTEN_RISE0_SHIFT 0
158#define EXYNOS7_TMU_INTEN_RISE1_SHIFT 1
159#define EXYNOS7_TMU_INTEN_RISE2_SHIFT 2
160#define EXYNOS7_TMU_INTEN_RISE3_SHIFT 3
161#define EXYNOS7_TMU_INTEN_RISE4_SHIFT 4
162#define EXYNOS7_TMU_INTEN_RISE5_SHIFT 5
163#define EXYNOS7_TMU_INTEN_RISE6_SHIFT 6
164#define EXYNOS7_TMU_INTEN_RISE7_SHIFT 7
165#define EXYNOS7_EMUL_DATA_SHIFT 7
166#define EXYNOS7_EMUL_DATA_MASK 0x1ff
167
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100168#define MCELSIUS 1000
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530169/**
170 * struct exynos_tmu_data : A structure to hold the private data of the TMU
171 driver
172 * @id: identifier of the one instance of the TMU controller.
173 * @pdata: pointer to the tmu platform/configuration data
174 * @base: base address of the single instance of the TMU controller.
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530175 * @base_second: base address of the common registers of the TMU controller.
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530176 * @irq: irq number of the TMU controller.
177 * @soc: id of the SOC type.
178 * @irq_work: pointer to the irq work structure.
179 * @lock: lock to implement synchronization.
180 * @clk: pointer to the clock structure.
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530181 * @clk_sec: pointer to the clock structure for accessing the base_second.
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530182 * @sclk: pointer to the clock structure for accessing the tmu special clk.
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530183 * @temp_error1: fused value of the first point trim.
184 * @temp_error2: fused value of the second point trim.
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530185 * @regulator: pointer to the TMU regulator structure.
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530186 * @reg_conf: pointer to structure to register with core thermal.
Krzysztof Kozlowski3a3a5f12016-02-18 14:14:20 +0900187 * @ntrip: number of supported trip points.
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100188 * @tmu_initialize: SoC specific TMU initialization method
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100189 * @tmu_control: SoC specific TMU control method
Bartlomiej Zolnierkiewiczb79985c2014-11-13 16:01:16 +0100190 * @tmu_read: SoC specific TMU temperature read method
Bartlomiej Zolnierkiewicz285d9942014-11-13 16:01:18 +0100191 * @tmu_set_emulation: SoC specific TMU emulation setting method
Bartlomiej Zolnierkiewicza7331f72014-11-13 16:01:19 +0100192 * @tmu_clear_irqs: SoC specific TMU interrupts clearing method
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530193 */
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530194struct exynos_tmu_data {
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530195 int id;
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530196 struct exynos_tmu_platform_data *pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900197 void __iomem *base;
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +0530198 void __iomem *base_second;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900199 int irq;
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530200 enum soc_type soc;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900201 struct work_struct irq_work;
202 struct mutex lock;
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530203 struct clk *clk, *clk_sec, *sclk;
204 u16 temp_error1, temp_error2;
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +0530205 struct regulator *regulator;
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100206 struct thermal_zone_device *tzd;
Krzysztof Kozlowski3a3a5f12016-02-18 14:14:20 +0900207 unsigned int ntrip;
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100208
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100209 int (*tmu_initialize)(struct platform_device *pdev);
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100210 void (*tmu_control)(struct platform_device *pdev, bool on);
Bartlomiej Zolnierkiewiczb79985c2014-11-13 16:01:16 +0100211 int (*tmu_read)(struct exynos_tmu_data *data);
Sascha Hauer17e83512015-07-24 08:12:54 +0200212 void (*tmu_set_emulation)(struct exynos_tmu_data *data, int temp);
Bartlomiej Zolnierkiewicza7331f72014-11-13 16:01:19 +0100213 void (*tmu_clear_irqs)(struct exynos_tmu_data *data);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900214};
215
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100216static void exynos_report_trigger(struct exynos_tmu_data *p)
217{
218 char data[10], *envp[] = { data, NULL };
219 struct thermal_zone_device *tz = p->tzd;
Sascha Hauer17e83512015-07-24 08:12:54 +0200220 int temp;
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100221 unsigned int i;
222
Lukasz Majewskieccb6012015-01-28 16:25:22 +0100223 if (!tz) {
224 pr_err("No thermal zone device defined\n");
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100225 return;
226 }
227
Srinivas Pandruvada0e70f462016-08-26 16:21:16 -0700228 thermal_zone_device_update(tz, THERMAL_EVENT_UNSPECIFIED);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100229
230 mutex_lock(&tz->lock);
231 /* Find the level for which trip happened */
232 for (i = 0; i < of_thermal_get_ntrips(tz); i++) {
233 tz->ops->get_trip_temp(tz, i, &temp);
234 if (tz->last_temperature < temp)
235 break;
236 }
237
238 snprintf(data, sizeof(data), "%u", i);
239 kobject_uevent_env(&tz->device.kobj, KOBJ_CHANGE, envp);
240 mutex_unlock(&tz->lock);
241}
242
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900243/*
244 * TMU treats temperature as a mapped temperature code.
245 * The temperature is converted differently depending on the calibration type.
246 */
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530247static int temp_to_code(struct exynos_tmu_data *data, u8 temp)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900248{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530249 struct exynos_tmu_platform_data *pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900250 int temp_code;
251
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900252 switch (pdata->cal_type) {
253 case TYPE_TWO_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530254 temp_code = (temp - pdata->first_point_trim) *
255 (data->temp_error2 - data->temp_error1) /
256 (pdata->second_point_trim - pdata->first_point_trim) +
257 data->temp_error1;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900258 break;
259 case TYPE_ONE_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530260 temp_code = temp + data->temp_error1 - pdata->first_point_trim;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900261 break;
262 default:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530263 temp_code = temp + pdata->default_temp_offset;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900264 break;
265 }
Bartlomiej Zolnierkiewiczddb31d42014-07-31 19:11:03 +0200266
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900267 return temp_code;
268}
269
270/*
271 * Calculate a temperature value from a temperature code.
272 * The unit of the temperature is degree Celsius.
273 */
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530274static int code_to_temp(struct exynos_tmu_data *data, u16 temp_code)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900275{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530276 struct exynos_tmu_platform_data *pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900277 int temp;
278
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900279 switch (pdata->cal_type) {
280 case TYPE_TWO_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530281 temp = (temp_code - data->temp_error1) *
282 (pdata->second_point_trim - pdata->first_point_trim) /
283 (data->temp_error2 - data->temp_error1) +
284 pdata->first_point_trim;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900285 break;
286 case TYPE_ONE_POINT_TRIMMING:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530287 temp = temp_code - data->temp_error1 + pdata->first_point_trim;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900288 break;
289 default:
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530290 temp = temp_code - pdata->default_temp_offset;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900291 break;
292 }
Bartlomiej Zolnierkiewiczddb31d42014-07-31 19:11:03 +0200293
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900294 return temp;
295}
296
Bartlomiej Zolnierkiewicz8328a4b2014-11-13 16:01:11 +0100297static void sanitize_temp_error(struct exynos_tmu_data *data, u32 trim_info)
Bartlomiej Zolnierkiewiczb835ced2014-10-03 18:17:17 +0200298{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530299 struct exynos_tmu_platform_data *pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900300
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530301 data->temp_error1 = trim_info & EXYNOS_TMU_TEMP_MASK;
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200302 data->temp_error2 = ((trim_info >> EXYNOS_TRIMINFO_85_SHIFT) &
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530303 EXYNOS_TMU_TEMP_MASK);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900304
Amit Daniel Kachhap50008062013-06-24 16:20:45 +0530305 if (!data->temp_error1 ||
306 (pdata->min_efuse_value > data->temp_error1) ||
307 (data->temp_error1 > pdata->max_efuse_value))
308 data->temp_error1 = pdata->efuse_value & EXYNOS_TMU_TEMP_MASK;
309
310 if (!data->temp_error2)
311 data->temp_error2 =
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200312 (pdata->efuse_value >> EXYNOS_TRIMINFO_85_SHIFT) &
Amit Daniel Kachhap50008062013-06-24 16:20:45 +0530313 EXYNOS_TMU_TEMP_MASK;
Bartlomiej Zolnierkiewicz8328a4b2014-11-13 16:01:11 +0100314}
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900315
Bartlomiej Zolnierkiewiczfe877892014-11-13 16:01:12 +0100316static u32 get_th_reg(struct exynos_tmu_data *data, u32 threshold, bool falling)
317{
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100318 struct thermal_zone_device *tz = data->tzd;
319 const struct thermal_trip * const trips =
320 of_thermal_get_trip_points(tz);
321 unsigned long temp;
Bartlomiej Zolnierkiewiczfe877892014-11-13 16:01:12 +0100322 int i;
Tushar Beherac65d3472014-04-14 11:08:15 +0530323
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100324 if (!trips) {
325 pr_err("%s: Cannot get trip points from of-thermal.c!\n",
326 __func__);
327 return 0;
328 }
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530329
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100330 for (i = 0; i < of_thermal_get_ntrips(tz); i++) {
331 if (trips[i].type == THERMAL_TRIP_CRITICAL)
332 continue;
333
334 temp = trips[i].temperature / MCELSIUS;
Bartlomiej Zolnierkiewiczfe877892014-11-13 16:01:12 +0100335 if (falling)
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100336 temp -= (trips[i].hysteresis / MCELSIUS);
Bartlomiej Zolnierkiewiczfe877892014-11-13 16:01:12 +0100337 else
338 threshold &= ~(0xff << 8 * i);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530339
Bartlomiej Zolnierkiewiczfe877892014-11-13 16:01:12 +0100340 threshold |= temp_to_code(data, temp) << 8 * i;
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530341 }
Bartlomiej Zolnierkiewiczfe877892014-11-13 16:01:12 +0100342
343 return threshold;
344}
345
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900346static int exynos_tmu_initialize(struct platform_device *pdev)
347{
348 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100349 int ret;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900350
Krzysztof Kozlowski3a3a5f12016-02-18 14:14:20 +0900351 if (of_thermal_get_ntrips(data->tzd) > data->ntrip) {
352 dev_info(&pdev->dev,
353 "More trip points than supported by this TMU.\n");
354 dev_info(&pdev->dev,
355 "%d trip points should be configured in polling mode.\n",
356 (of_thermal_get_ntrips(data->tzd) - data->ntrip));
357 }
358
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900359 mutex_lock(&data->lock);
360 clk_enable(data->clk);
361 if (!IS_ERR(data->clk_sec))
362 clk_enable(data->clk_sec);
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100363 ret = data->tmu_initialize(pdev);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900364 clk_disable(data->clk);
365 mutex_unlock(&data->lock);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +0530366 if (!IS_ERR(data->clk_sec))
367 clk_disable(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900368
369 return ret;
370}
371
Bartlomiej Zolnierkiewiczd00671c2014-11-13 16:01:14 +0100372static u32 get_con_reg(struct exynos_tmu_data *data, u32 con)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900373{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530374 struct exynos_tmu_platform_data *pdata = data->pdata;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900375
Bartlomiej Zolnierkiewicz75759832014-11-13 16:01:25 +0100376 if (data->soc == SOC_ARCH_EXYNOS4412 ||
377 data->soc == SOC_ARCH_EXYNOS3250)
378 con |= (EXYNOS4412_MUX_ADDR_VALUE << EXYNOS4412_MUX_ADDR_SHIFT);
Lukasz Majewski86f53622013-10-09 08:29:52 +0200379
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200380 con &= ~(EXYNOS_TMU_REF_VOLTAGE_MASK << EXYNOS_TMU_REF_VOLTAGE_SHIFT);
381 con |= pdata->reference_voltage << EXYNOS_TMU_REF_VOLTAGE_SHIFT;
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530382
Bartlomiej Zolnierkiewicz99d67fb2014-07-31 19:11:06 +0200383 con &= ~(EXYNOS_TMU_BUF_SLOPE_SEL_MASK << EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT);
384 con |= (pdata->gain << EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT);
Amit Daniel Kachhapd0a0ce32013-06-24 16:20:29 +0530385
386 if (pdata->noise_cancel_mode) {
Bartlomiej Zolnierkiewiczb9504a62014-11-13 16:01:01 +0100387 con &= ~(EXYNOS_TMU_TRIP_MODE_MASK << EXYNOS_TMU_TRIP_MODE_SHIFT);
388 con |= (pdata->noise_cancel_mode << EXYNOS_TMU_TRIP_MODE_SHIFT);
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530389 }
390
Bartlomiej Zolnierkiewiczd00671c2014-11-13 16:01:14 +0100391 return con;
392}
393
394static void exynos_tmu_control(struct platform_device *pdev, bool on)
395{
396 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Bartlomiej Zolnierkiewiczd00671c2014-11-13 16:01:14 +0100397
398 mutex_lock(&data->lock);
399 clk_enable(data->clk);
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100400 data->tmu_control(pdev, on);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900401 clk_disable(data->clk);
402 mutex_unlock(&data->lock);
403}
404
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100405static int exynos4210_tmu_initialize(struct platform_device *pdev)
406{
407 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100408 struct thermal_zone_device *tz = data->tzd;
409 const struct thermal_trip * const trips =
410 of_thermal_get_trip_points(tz);
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100411 int ret = 0, threshold_code, i;
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100412 unsigned long reference, temp;
413 unsigned int status;
414
415 if (!trips) {
416 pr_err("%s: Cannot get trip points from of-thermal.c!\n",
417 __func__);
418 ret = -ENODEV;
419 goto out;
420 }
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100421
422 status = readb(data->base + EXYNOS_TMU_REG_STATUS);
423 if (!status) {
424 ret = -EBUSY;
425 goto out;
426 }
427
428 sanitize_temp_error(data, readl(data->base + EXYNOS_TMU_REG_TRIMINFO));
429
430 /* Write temperature code for threshold */
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100431 reference = trips[0].temperature / MCELSIUS;
432 threshold_code = temp_to_code(data, reference);
433 if (threshold_code < 0) {
434 ret = threshold_code;
435 goto out;
436 }
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100437 writeb(threshold_code, data->base + EXYNOS4210_TMU_REG_THRESHOLD_TEMP);
438
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100439 for (i = 0; i < of_thermal_get_ntrips(tz); i++) {
440 temp = trips[i].temperature / MCELSIUS;
441 writeb(temp - reference, data->base +
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100442 EXYNOS4210_TMU_REG_TRIG_LEVEL0 + i * 4);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100443 }
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100444
Bartlomiej Zolnierkiewicza7331f72014-11-13 16:01:19 +0100445 data->tmu_clear_irqs(data);
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100446out:
447 return ret;
448}
449
450static int exynos4412_tmu_initialize(struct platform_device *pdev)
451{
452 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100453 const struct thermal_trip * const trips =
454 of_thermal_get_trip_points(data->tzd);
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100455 unsigned int status, trim_info, con, ctrl, rising_threshold;
456 int ret = 0, threshold_code, i;
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100457 unsigned long crit_temp = 0;
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100458
459 status = readb(data->base + EXYNOS_TMU_REG_STATUS);
460 if (!status) {
461 ret = -EBUSY;
462 goto out;
463 }
464
465 if (data->soc == SOC_ARCH_EXYNOS3250 ||
466 data->soc == SOC_ARCH_EXYNOS4412 ||
467 data->soc == SOC_ARCH_EXYNOS5250) {
468 if (data->soc == SOC_ARCH_EXYNOS3250) {
469 ctrl = readl(data->base + EXYNOS_TMU_TRIMINFO_CON1);
470 ctrl |= EXYNOS_TRIMINFO_RELOAD_ENABLE;
471 writel(ctrl, data->base + EXYNOS_TMU_TRIMINFO_CON1);
472 }
473 ctrl = readl(data->base + EXYNOS_TMU_TRIMINFO_CON2);
474 ctrl |= EXYNOS_TRIMINFO_RELOAD_ENABLE;
475 writel(ctrl, data->base + EXYNOS_TMU_TRIMINFO_CON2);
476 }
477
478 /* On exynos5420 the triminfo register is in the shared space */
479 if (data->soc == SOC_ARCH_EXYNOS5420_TRIMINFO)
480 trim_info = readl(data->base_second + EXYNOS_TMU_REG_TRIMINFO);
481 else
482 trim_info = readl(data->base + EXYNOS_TMU_REG_TRIMINFO);
483
484 sanitize_temp_error(data, trim_info);
485
486 /* Write temperature code for rising and falling threshold */
487 rising_threshold = readl(data->base + EXYNOS_THD_TEMP_RISE);
488 rising_threshold = get_th_reg(data, rising_threshold, false);
489 writel(rising_threshold, data->base + EXYNOS_THD_TEMP_RISE);
490 writel(get_th_reg(data, 0, true), data->base + EXYNOS_THD_TEMP_FALL);
491
Bartlomiej Zolnierkiewicza7331f72014-11-13 16:01:19 +0100492 data->tmu_clear_irqs(data);
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100493
494 /* if last threshold limit is also present */
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100495 for (i = 0; i < of_thermal_get_ntrips(data->tzd); i++) {
496 if (trips[i].type == THERMAL_TRIP_CRITICAL) {
497 crit_temp = trips[i].temperature;
498 break;
499 }
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100500 }
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100501
502 if (i == of_thermal_get_ntrips(data->tzd)) {
503 pr_err("%s: No CRITICAL trip point defined at of-thermal.c!\n",
504 __func__);
505 ret = -EINVAL;
506 goto out;
507 }
508
509 threshold_code = temp_to_code(data, crit_temp / MCELSIUS);
510 /* 1-4 level to be assigned in th0 reg */
511 rising_threshold &= ~(0xff << 8 * i);
512 rising_threshold |= threshold_code << 8 * i;
513 writel(rising_threshold, data->base + EXYNOS_THD_TEMP_RISE);
514 con = readl(data->base + EXYNOS_TMU_REG_CONTROL);
515 con |= (1 << EXYNOS_TMU_THERM_TRIP_EN_SHIFT);
516 writel(con, data->base + EXYNOS_TMU_REG_CONTROL);
517
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100518out:
519 return ret;
520}
521
Chanwoo Choi488c7452015-03-10 11:23:44 +0900522static int exynos5433_tmu_initialize(struct platform_device *pdev)
523{
524 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
525 struct exynos_tmu_platform_data *pdata = data->pdata;
526 struct thermal_zone_device *tz = data->tzd;
527 unsigned int status, trim_info;
528 unsigned int rising_threshold = 0, falling_threshold = 0;
Sascha Hauer17e83512015-07-24 08:12:54 +0200529 int temp, temp_hist;
Chanwoo Choi488c7452015-03-10 11:23:44 +0900530 int ret = 0, threshold_code, i, sensor_id, cal_type;
531
532 status = readb(data->base + EXYNOS_TMU_REG_STATUS);
533 if (!status) {
534 ret = -EBUSY;
535 goto out;
536 }
537
538 trim_info = readl(data->base + EXYNOS_TMU_REG_TRIMINFO);
539 sanitize_temp_error(data, trim_info);
540
541 /* Read the temperature sensor id */
542 sensor_id = (trim_info & EXYNOS5433_TRIMINFO_SENSOR_ID_MASK)
543 >> EXYNOS5433_TRIMINFO_SENSOR_ID_SHIFT;
544 dev_info(&pdev->dev, "Temperature sensor ID: 0x%x\n", sensor_id);
545
546 /* Read the calibration mode */
547 writel(trim_info, data->base + EXYNOS_TMU_REG_TRIMINFO);
548 cal_type = (trim_info & EXYNOS5433_TRIMINFO_CALIB_SEL_MASK)
549 >> EXYNOS5433_TRIMINFO_CALIB_SEL_SHIFT;
550
551 switch (cal_type) {
552 case EXYNOS5433_TRIMINFO_ONE_POINT_TRIMMING:
553 pdata->cal_type = TYPE_ONE_POINT_TRIMMING;
554 break;
555 case EXYNOS5433_TRIMINFO_TWO_POINT_TRIMMING:
556 pdata->cal_type = TYPE_TWO_POINT_TRIMMING;
557 break;
558 default:
559 pdata->cal_type = TYPE_ONE_POINT_TRIMMING;
560 break;
Krzysztof Kozlowskibaba1eb2015-10-08 14:34:05 +0900561 }
Chanwoo Choi488c7452015-03-10 11:23:44 +0900562
563 dev_info(&pdev->dev, "Calibration type is %d-point calibration\n",
564 cal_type ? 2 : 1);
565
566 /* Write temperature code for rising and falling threshold */
567 for (i = 0; i < of_thermal_get_ntrips(tz); i++) {
568 int rising_reg_offset, falling_reg_offset;
569 int j = 0;
570
571 switch (i) {
572 case 0:
573 case 1:
574 case 2:
575 case 3:
576 rising_reg_offset = EXYNOS5433_THD_TEMP_RISE3_0;
577 falling_reg_offset = EXYNOS5433_THD_TEMP_FALL3_0;
578 j = i;
579 break;
580 case 4:
581 case 5:
582 case 6:
583 case 7:
584 rising_reg_offset = EXYNOS5433_THD_TEMP_RISE7_4;
585 falling_reg_offset = EXYNOS5433_THD_TEMP_FALL7_4;
586 j = i - 4;
587 break;
588 default:
589 continue;
590 }
591
592 /* Write temperature code for rising threshold */
593 tz->ops->get_trip_temp(tz, i, &temp);
594 temp /= MCELSIUS;
595 threshold_code = temp_to_code(data, temp);
596
597 rising_threshold = readl(data->base + rising_reg_offset);
598 rising_threshold |= (threshold_code << j * 8);
599 writel(rising_threshold, data->base + rising_reg_offset);
600
601 /* Write temperature code for falling threshold */
602 tz->ops->get_trip_hyst(tz, i, &temp_hist);
603 temp_hist = temp - (temp_hist / MCELSIUS);
604 threshold_code = temp_to_code(data, temp_hist);
605
606 falling_threshold = readl(data->base + falling_reg_offset);
607 falling_threshold &= ~(0xff << j * 8);
608 falling_threshold |= (threshold_code << j * 8);
609 writel(falling_threshold, data->base + falling_reg_offset);
610 }
611
612 data->tmu_clear_irqs(data);
613out:
614 return ret;
615}
616
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100617static int exynos5440_tmu_initialize(struct platform_device *pdev)
618{
619 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100620 unsigned int trim_info = 0, con, rising_threshold;
Krzysztof Kozlowskie35dbb42015-10-08 14:34:06 +0900621 int threshold_code;
Sascha Hauer17e83512015-07-24 08:12:54 +0200622 int crit_temp = 0;
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100623
624 /*
625 * For exynos5440 soc triminfo value is swapped between TMU0 and
626 * TMU2, so the below logic is needed.
627 */
628 switch (data->id) {
629 case 0:
630 trim_info = readl(data->base + EXYNOS5440_EFUSE_SWAP_OFFSET +
631 EXYNOS5440_TMU_S0_7_TRIM);
632 break;
633 case 1:
634 trim_info = readl(data->base + EXYNOS5440_TMU_S0_7_TRIM);
635 break;
636 case 2:
637 trim_info = readl(data->base - EXYNOS5440_EFUSE_SWAP_OFFSET +
638 EXYNOS5440_TMU_S0_7_TRIM);
639 }
640 sanitize_temp_error(data, trim_info);
641
642 /* Write temperature code for rising and falling threshold */
643 rising_threshold = readl(data->base + EXYNOS5440_TMU_S0_7_TH0);
644 rising_threshold = get_th_reg(data, rising_threshold, false);
645 writel(rising_threshold, data->base + EXYNOS5440_TMU_S0_7_TH0);
646 writel(0, data->base + EXYNOS5440_TMU_S0_7_TH1);
647
Bartlomiej Zolnierkiewicza7331f72014-11-13 16:01:19 +0100648 data->tmu_clear_irqs(data);
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100649
650 /* if last threshold limit is also present */
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100651 if (!data->tzd->ops->get_crit_temp(data->tzd, &crit_temp)) {
652 threshold_code = temp_to_code(data, crit_temp / MCELSIUS);
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100653 /* 5th level to be assigned in th2 reg */
654 rising_threshold =
655 threshold_code << EXYNOS5440_TMU_TH_RISE4_SHIFT;
656 writel(rising_threshold, data->base + EXYNOS5440_TMU_S0_7_TH2);
657 con = readl(data->base + EXYNOS5440_TMU_S0_7_CTRL);
658 con |= (1 << EXYNOS_TMU_THERM_TRIP_EN_SHIFT);
659 writel(con, data->base + EXYNOS5440_TMU_S0_7_CTRL);
660 }
661 /* Clear the PMIN in the common TMU register */
662 if (!data->id)
663 writel(0, data->base_second + EXYNOS5440_TMU_PMIN);
Krzysztof Kozlowskie35dbb42015-10-08 14:34:06 +0900664
665 return 0;
Bartlomiej Zolnierkiewicz72d11002014-11-13 16:01:13 +0100666}
667
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530668static int exynos7_tmu_initialize(struct platform_device *pdev)
669{
670 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
671 struct thermal_zone_device *tz = data->tzd;
672 struct exynos_tmu_platform_data *pdata = data->pdata;
673 unsigned int status, trim_info;
674 unsigned int rising_threshold = 0, falling_threshold = 0;
675 int ret = 0, threshold_code, i;
Sascha Hauer17e83512015-07-24 08:12:54 +0200676 int temp, temp_hist;
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530677 unsigned int reg_off, bit_off;
678
679 status = readb(data->base + EXYNOS_TMU_REG_STATUS);
680 if (!status) {
681 ret = -EBUSY;
682 goto out;
683 }
684
685 trim_info = readl(data->base + EXYNOS_TMU_REG_TRIMINFO);
686
687 data->temp_error1 = trim_info & EXYNOS7_TMU_TEMP_MASK;
688 if (!data->temp_error1 ||
689 (pdata->min_efuse_value > data->temp_error1) ||
690 (data->temp_error1 > pdata->max_efuse_value))
691 data->temp_error1 = pdata->efuse_value & EXYNOS_TMU_TEMP_MASK;
692
693 /* Write temperature code for rising and falling threshold */
694 for (i = (of_thermal_get_ntrips(tz) - 1); i >= 0; i--) {
695 /*
696 * On exynos7 there are 4 rising and 4 falling threshold
697 * registers (0x50-0x5c and 0x60-0x6c respectively). Each
698 * register holds the value of two threshold levels (at bit
699 * offsets 0 and 16). Based on the fact that there are atmost
700 * eight possible trigger levels, calculate the register and
701 * bit offsets where the threshold levels are to be written.
702 *
703 * e.g. EXYNOS7_THD_TEMP_RISE7_6 (0x50)
704 * [24:16] - Threshold level 7
705 * [8:0] - Threshold level 6
706 * e.g. EXYNOS7_THD_TEMP_RISE5_4 (0x54)
707 * [24:16] - Threshold level 5
708 * [8:0] - Threshold level 4
709 *
710 * and similarly for falling thresholds.
711 *
712 * Based on the above, calculate the register and bit offsets
713 * for rising/falling threshold levels and populate them.
714 */
715 reg_off = ((7 - i) / 2) * 4;
716 bit_off = ((8 - i) % 2);
717
718 tz->ops->get_trip_temp(tz, i, &temp);
719 temp /= MCELSIUS;
720
721 tz->ops->get_trip_hyst(tz, i, &temp_hist);
722 temp_hist = temp - (temp_hist / MCELSIUS);
723
724 /* Set 9-bit temperature code for rising threshold levels */
725 threshold_code = temp_to_code(data, temp);
726 rising_threshold = readl(data->base +
727 EXYNOS7_THD_TEMP_RISE7_6 + reg_off);
728 rising_threshold &= ~(EXYNOS7_TMU_TEMP_MASK << (16 * bit_off));
729 rising_threshold |= threshold_code << (16 * bit_off);
730 writel(rising_threshold,
731 data->base + EXYNOS7_THD_TEMP_RISE7_6 + reg_off);
732
733 /* Set 9-bit temperature code for falling threshold levels */
734 threshold_code = temp_to_code(data, temp_hist);
735 falling_threshold &= ~(EXYNOS7_TMU_TEMP_MASK << (16 * bit_off));
736 falling_threshold |= threshold_code << (16 * bit_off);
737 writel(falling_threshold,
738 data->base + EXYNOS7_THD_TEMP_FALL7_6 + reg_off);
739 }
740
741 data->tmu_clear_irqs(data);
742out:
743 return ret;
744}
745
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100746static void exynos4210_tmu_control(struct platform_device *pdev, bool on)
747{
748 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100749 struct thermal_zone_device *tz = data->tzd;
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100750 unsigned int con, interrupt_en;
751
752 con = get_con_reg(data, readl(data->base + EXYNOS_TMU_REG_CONTROL));
753
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900754 if (on) {
755 con |= (1 << EXYNOS_TMU_CORE_EN_SHIFT);
756 interrupt_en =
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100757 (of_thermal_is_trip_valid(tz, 3)
758 << EXYNOS_TMU_INTEN_RISE3_SHIFT) |
759 (of_thermal_is_trip_valid(tz, 2)
760 << EXYNOS_TMU_INTEN_RISE2_SHIFT) |
761 (of_thermal_is_trip_valid(tz, 1)
762 << EXYNOS_TMU_INTEN_RISE1_SHIFT) |
763 (of_thermal_is_trip_valid(tz, 0)
764 << EXYNOS_TMU_INTEN_RISE0_SHIFT);
765
Bartlomiej Zolnierkiewicze0761532014-11-13 16:01:20 +0100766 if (data->soc != SOC_ARCH_EXYNOS4210)
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000767 interrupt_en |=
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100768 interrupt_en << EXYNOS_TMU_INTEN_FALL0_SHIFT;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000769 } else {
770 con &= ~(1 << EXYNOS_TMU_CORE_EN_SHIFT);
771 interrupt_en = 0; /* Disable all interrupts */
772 }
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100773 writel(interrupt_en, data->base + EXYNOS_TMU_REG_INTEN);
774 writel(con, data->base + EXYNOS_TMU_REG_CONTROL);
775}
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900776
Chanwoo Choi488c7452015-03-10 11:23:44 +0900777static void exynos5433_tmu_control(struct platform_device *pdev, bool on)
778{
779 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
780 struct thermal_zone_device *tz = data->tzd;
781 unsigned int con, interrupt_en, pd_det_en;
782
783 con = get_con_reg(data, readl(data->base + EXYNOS_TMU_REG_CONTROL));
784
785 if (on) {
786 con |= (1 << EXYNOS_TMU_CORE_EN_SHIFT);
787 interrupt_en =
788 (of_thermal_is_trip_valid(tz, 7)
789 << EXYNOS7_TMU_INTEN_RISE7_SHIFT) |
790 (of_thermal_is_trip_valid(tz, 6)
791 << EXYNOS7_TMU_INTEN_RISE6_SHIFT) |
792 (of_thermal_is_trip_valid(tz, 5)
793 << EXYNOS7_TMU_INTEN_RISE5_SHIFT) |
794 (of_thermal_is_trip_valid(tz, 4)
795 << EXYNOS7_TMU_INTEN_RISE4_SHIFT) |
796 (of_thermal_is_trip_valid(tz, 3)
797 << EXYNOS7_TMU_INTEN_RISE3_SHIFT) |
798 (of_thermal_is_trip_valid(tz, 2)
799 << EXYNOS7_TMU_INTEN_RISE2_SHIFT) |
800 (of_thermal_is_trip_valid(tz, 1)
801 << EXYNOS7_TMU_INTEN_RISE1_SHIFT) |
802 (of_thermal_is_trip_valid(tz, 0)
803 << EXYNOS7_TMU_INTEN_RISE0_SHIFT);
804
805 interrupt_en |=
806 interrupt_en << EXYNOS_TMU_INTEN_FALL0_SHIFT;
807 } else {
808 con &= ~(1 << EXYNOS_TMU_CORE_EN_SHIFT);
809 interrupt_en = 0; /* Disable all interrupts */
810 }
811
812 pd_det_en = on ? EXYNOS5433_PD_DET_EN : 0;
813
814 writel(pd_det_en, data->base + EXYNOS5433_TMU_PD_DET_EN);
815 writel(interrupt_en, data->base + EXYNOS5433_TMU_REG_INTEN);
816 writel(con, data->base + EXYNOS_TMU_REG_CONTROL);
817}
818
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100819static void exynos5440_tmu_control(struct platform_device *pdev, bool on)
820{
821 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100822 struct thermal_zone_device *tz = data->tzd;
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100823 unsigned int con, interrupt_en;
824
825 con = get_con_reg(data, readl(data->base + EXYNOS5440_TMU_S0_7_CTRL));
826
827 if (on) {
828 con |= (1 << EXYNOS_TMU_CORE_EN_SHIFT);
829 interrupt_en =
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100830 (of_thermal_is_trip_valid(tz, 3)
831 << EXYNOS5440_TMU_INTEN_RISE3_SHIFT) |
832 (of_thermal_is_trip_valid(tz, 2)
833 << EXYNOS5440_TMU_INTEN_RISE2_SHIFT) |
834 (of_thermal_is_trip_valid(tz, 1)
835 << EXYNOS5440_TMU_INTEN_RISE1_SHIFT) |
836 (of_thermal_is_trip_valid(tz, 0)
837 << EXYNOS5440_TMU_INTEN_RISE0_SHIFT);
838 interrupt_en |=
839 interrupt_en << EXYNOS5440_TMU_INTEN_FALL0_SHIFT;
Bartlomiej Zolnierkiewicz37f90342014-11-13 16:01:15 +0100840 } else {
841 con &= ~(1 << EXYNOS_TMU_CORE_EN_SHIFT);
842 interrupt_en = 0; /* Disable all interrupts */
843 }
844 writel(interrupt_en, data->base + EXYNOS5440_TMU_S0_7_IRQEN);
845 writel(con, data->base + EXYNOS5440_TMU_S0_7_CTRL);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900846}
847
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530848static void exynos7_tmu_control(struct platform_device *pdev, bool on)
849{
850 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
851 struct thermal_zone_device *tz = data->tzd;
852 unsigned int con, interrupt_en;
853
854 con = get_con_reg(data, readl(data->base + EXYNOS_TMU_REG_CONTROL));
855
856 if (on) {
857 con |= (1 << EXYNOS_TMU_CORE_EN_SHIFT);
Chanwoo Choi42b696e2015-02-24 13:56:54 +0900858 con |= (1 << EXYNOS7_PD_DET_EN_SHIFT);
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530859 interrupt_en =
860 (of_thermal_is_trip_valid(tz, 7)
861 << EXYNOS7_TMU_INTEN_RISE7_SHIFT) |
862 (of_thermal_is_trip_valid(tz, 6)
863 << EXYNOS7_TMU_INTEN_RISE6_SHIFT) |
864 (of_thermal_is_trip_valid(tz, 5)
865 << EXYNOS7_TMU_INTEN_RISE5_SHIFT) |
866 (of_thermal_is_trip_valid(tz, 4)
867 << EXYNOS7_TMU_INTEN_RISE4_SHIFT) |
868 (of_thermal_is_trip_valid(tz, 3)
869 << EXYNOS7_TMU_INTEN_RISE3_SHIFT) |
870 (of_thermal_is_trip_valid(tz, 2)
871 << EXYNOS7_TMU_INTEN_RISE2_SHIFT) |
872 (of_thermal_is_trip_valid(tz, 1)
873 << EXYNOS7_TMU_INTEN_RISE1_SHIFT) |
874 (of_thermal_is_trip_valid(tz, 0)
875 << EXYNOS7_TMU_INTEN_RISE0_SHIFT);
876
877 interrupt_en |=
878 interrupt_en << EXYNOS_TMU_INTEN_FALL0_SHIFT;
879 } else {
880 con &= ~(1 << EXYNOS_TMU_CORE_EN_SHIFT);
Chanwoo Choi42b696e2015-02-24 13:56:54 +0900881 con &= ~(1 << EXYNOS7_PD_DET_EN_SHIFT);
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530882 interrupt_en = 0; /* Disable all interrupts */
883 }
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530884
885 writel(interrupt_en, data->base + EXYNOS7_TMU_REG_INTEN);
886 writel(con, data->base + EXYNOS_TMU_REG_CONTROL);
887}
888
Sascha Hauer17e83512015-07-24 08:12:54 +0200889static int exynos_get_temp(void *p, int *temp)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900890{
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100891 struct exynos_tmu_data *data = p;
892
Lukasz Majewski4531fa12015-02-06 14:07:10 +0100893 if (!data || !data->tmu_read)
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100894 return -EINVAL;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900895
896 mutex_lock(&data->lock);
897 clk_enable(data->clk);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100898
899 *temp = code_to_temp(data, data->tmu_read(data)) * MCELSIUS;
900
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900901 clk_disable(data->clk);
902 mutex_unlock(&data->lock);
903
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +0100904 return 0;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900905}
906
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000907#ifdef CONFIG_THERMAL_EMULATION
Bartlomiej Zolnierkiewicz154013e2014-11-13 16:01:17 +0100908static u32 get_emul_con_reg(struct exynos_tmu_data *data, unsigned int val,
Sascha Hauer17e83512015-07-24 08:12:54 +0200909 int temp)
Bartlomiej Zolnierkiewicz154013e2014-11-13 16:01:17 +0100910{
Bartlomiej Zolnierkiewicz154013e2014-11-13 16:01:17 +0100911 if (temp) {
912 temp /= MCELSIUS;
913
Bartlomiej Zolnierkiewiczd564b552014-11-13 16:01:21 +0100914 if (data->soc != SOC_ARCH_EXYNOS5440) {
Bartlomiej Zolnierkiewicz154013e2014-11-13 16:01:17 +0100915 val &= ~(EXYNOS_EMUL_TIME_MASK << EXYNOS_EMUL_TIME_SHIFT);
916 val |= (EXYNOS_EMUL_TIME << EXYNOS_EMUL_TIME_SHIFT);
917 }
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530918 if (data->soc == SOC_ARCH_EXYNOS7) {
919 val &= ~(EXYNOS7_EMUL_DATA_MASK <<
920 EXYNOS7_EMUL_DATA_SHIFT);
921 val |= (temp_to_code(data, temp) <<
922 EXYNOS7_EMUL_DATA_SHIFT) |
923 EXYNOS_EMUL_ENABLE;
924 } else {
925 val &= ~(EXYNOS_EMUL_DATA_MASK <<
926 EXYNOS_EMUL_DATA_SHIFT);
927 val |= (temp_to_code(data, temp) <<
928 EXYNOS_EMUL_DATA_SHIFT) |
929 EXYNOS_EMUL_ENABLE;
930 }
Bartlomiej Zolnierkiewicz154013e2014-11-13 16:01:17 +0100931 } else {
932 val &= ~EXYNOS_EMUL_ENABLE;
933 }
934
935 return val;
936}
937
Bartlomiej Zolnierkiewicz285d9942014-11-13 16:01:18 +0100938static void exynos4412_tmu_set_emulation(struct exynos_tmu_data *data,
Sascha Hauer17e83512015-07-24 08:12:54 +0200939 int temp)
Bartlomiej Zolnierkiewicz285d9942014-11-13 16:01:18 +0100940{
941 unsigned int val;
942 u32 emul_con;
943
944 if (data->soc == SOC_ARCH_EXYNOS5260)
945 emul_con = EXYNOS5260_EMUL_CON;
Sudip Mukherjeeb28fec12015-10-17 08:08:56 +0900946 else if (data->soc == SOC_ARCH_EXYNOS5433)
Chanwoo Choi488c7452015-03-10 11:23:44 +0900947 emul_con = EXYNOS5433_TMU_EMUL_CON;
Abhilash Kesavan6c247392015-01-27 11:18:22 +0530948 else if (data->soc == SOC_ARCH_EXYNOS7)
949 emul_con = EXYNOS7_TMU_REG_EMUL_CON;
Bartlomiej Zolnierkiewicz285d9942014-11-13 16:01:18 +0100950 else
951 emul_con = EXYNOS_EMUL_CON;
952
953 val = readl(data->base + emul_con);
954 val = get_emul_con_reg(data, val, temp);
955 writel(val, data->base + emul_con);
956}
957
958static void exynos5440_tmu_set_emulation(struct exynos_tmu_data *data,
Sascha Hauer17e83512015-07-24 08:12:54 +0200959 int temp)
Bartlomiej Zolnierkiewicz285d9942014-11-13 16:01:18 +0100960{
961 unsigned int val;
962
963 val = readl(data->base + EXYNOS5440_TMU_S0_7_DEBUG);
964 val = get_emul_con_reg(data, val, temp);
965 writel(val, data->base + EXYNOS5440_TMU_S0_7_DEBUG);
966}
967
Sascha Hauer17e83512015-07-24 08:12:54 +0200968static int exynos_tmu_set_emulation(void *drv_data, int temp)
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000969{
970 struct exynos_tmu_data *data = drv_data;
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000971 int ret = -EINVAL;
972
Bartlomiej Zolnierkiewiczef3f80f2014-11-13 16:01:22 +0100973 if (data->soc == SOC_ARCH_EXYNOS4210)
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000974 goto out;
975
976 if (temp && temp < MCELSIUS)
977 goto out;
978
979 mutex_lock(&data->lock);
980 clk_enable(data->clk);
Bartlomiej Zolnierkiewicz285d9942014-11-13 16:01:18 +0100981 data->tmu_set_emulation(data, temp);
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000982 clk_disable(data->clk);
983 mutex_unlock(&data->lock);
984 return 0;
985out:
986 return ret;
987}
988#else
Bartlomiej Zolnierkiewicz285d9942014-11-13 16:01:18 +0100989#define exynos4412_tmu_set_emulation NULL
990#define exynos5440_tmu_set_emulation NULL
Sascha Hauer17e83512015-07-24 08:12:54 +0200991static int exynos_tmu_set_emulation(void *drv_data, int temp)
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000992 { return -EINVAL; }
Lukasz Majewskiafae1442015-01-23 13:09:54 +0100993#endif /* CONFIG_THERMAL_EMULATION */
Amit Daniel Kachhapbffd1f82013-02-11 03:54:23 +0000994
Bartlomiej Zolnierkiewiczb79985c2014-11-13 16:01:16 +0100995static int exynos4210_tmu_read(struct exynos_tmu_data *data)
996{
997 int ret = readb(data->base + EXYNOS_TMU_REG_CURRENT_TEMP);
998
999 /* "temp_code" should range between 75 and 175 */
1000 return (ret < 75 || ret > 175) ? -ENODATA : ret;
1001}
1002
1003static int exynos4412_tmu_read(struct exynos_tmu_data *data)
1004{
1005 return readb(data->base + EXYNOS_TMU_REG_CURRENT_TEMP);
1006}
1007
1008static int exynos5440_tmu_read(struct exynos_tmu_data *data)
1009{
1010 return readb(data->base + EXYNOS5440_TMU_S0_7_TEMP);
1011}
1012
Abhilash Kesavan6c247392015-01-27 11:18:22 +05301013static int exynos7_tmu_read(struct exynos_tmu_data *data)
1014{
1015 return readw(data->base + EXYNOS_TMU_REG_CURRENT_TEMP) &
1016 EXYNOS7_TMU_TEMP_MASK;
1017}
1018
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301019static void exynos_tmu_work(struct work_struct *work)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001020{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301021 struct exynos_tmu_data *data = container_of(work,
1022 struct exynos_tmu_data, irq_work);
Bartlomiej Zolnierkiewiczb835ced2014-10-03 18:17:17 +02001023 unsigned int val_type;
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +05301024
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +05301025 if (!IS_ERR(data->clk_sec))
1026 clk_enable(data->clk_sec);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +05301027 /* Find which sensor generated this interrupt */
Bartlomiej Zolnierkiewicz421d5d12014-11-13 16:01:05 +01001028 if (data->soc == SOC_ARCH_EXYNOS5440) {
1029 val_type = readl(data->base_second + EXYNOS5440_TMU_IRQ_STATUS);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +05301030 if (!((val_type >> data->id) & 0x1))
1031 goto out;
1032 }
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +05301033 if (!IS_ERR(data->clk_sec))
1034 clk_disable(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001035
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001036 exynos_report_trigger(data);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001037 mutex_lock(&data->lock);
1038 clk_enable(data->clk);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +05301039
Amit Daniel Kachhapa4463c42013-06-24 16:20:33 +05301040 /* TODO: take action based on particular interrupt */
Bartlomiej Zolnierkiewicza7331f72014-11-13 16:01:19 +01001041 data->tmu_clear_irqs(data);
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +05301042
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001043 clk_disable(data->clk);
1044 mutex_unlock(&data->lock);
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +05301045out:
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301046 enable_irq(data->irq);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001047}
1048
Bartlomiej Zolnierkiewicza7331f72014-11-13 16:01:19 +01001049static void exynos4210_tmu_clear_irqs(struct exynos_tmu_data *data)
1050{
1051 unsigned int val_irq;
1052 u32 tmu_intstat, tmu_intclear;
1053
1054 if (data->soc == SOC_ARCH_EXYNOS5260) {
1055 tmu_intstat = EXYNOS5260_TMU_REG_INTSTAT;
1056 tmu_intclear = EXYNOS5260_TMU_REG_INTCLEAR;
Abhilash Kesavan6c247392015-01-27 11:18:22 +05301057 } else if (data->soc == SOC_ARCH_EXYNOS7) {
1058 tmu_intstat = EXYNOS7_TMU_REG_INTPEND;
1059 tmu_intclear = EXYNOS7_TMU_REG_INTPEND;
Chanwoo Choi488c7452015-03-10 11:23:44 +09001060 } else if (data->soc == SOC_ARCH_EXYNOS5433) {
1061 tmu_intstat = EXYNOS5433_TMU_REG_INTPEND;
1062 tmu_intclear = EXYNOS5433_TMU_REG_INTPEND;
Bartlomiej Zolnierkiewicza7331f72014-11-13 16:01:19 +01001063 } else {
1064 tmu_intstat = EXYNOS_TMU_REG_INTSTAT;
1065 tmu_intclear = EXYNOS_TMU_REG_INTCLEAR;
1066 }
1067
1068 val_irq = readl(data->base + tmu_intstat);
1069 /*
1070 * Clear the interrupts. Please note that the documentation for
1071 * Exynos3250, Exynos4412, Exynos5250 and Exynos5260 incorrectly
1072 * states that INTCLEAR register has a different placing of bits
1073 * responsible for FALL IRQs than INTSTAT register. Exynos5420
1074 * and Exynos5440 documentation is correct (Exynos4210 doesn't
1075 * support FALL IRQs at all).
1076 */
1077 writel(val_irq, data->base + tmu_intclear);
1078}
1079
1080static void exynos5440_tmu_clear_irqs(struct exynos_tmu_data *data)
1081{
1082 unsigned int val_irq;
1083
1084 val_irq = readl(data->base + EXYNOS5440_TMU_S0_7_IRQ);
1085 /* clear the interrupts */
1086 writel(val_irq, data->base + EXYNOS5440_TMU_S0_7_IRQ);
1087}
1088
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301089static irqreturn_t exynos_tmu_irq(int irq, void *id)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001090{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301091 struct exynos_tmu_data *data = id;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001092
1093 disable_irq_nosync(irq);
1094 schedule_work(&data->irq_work);
1095
1096 return IRQ_HANDLED;
1097}
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +05301098
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +05301099static const struct of_device_id exynos_tmu_match[] = {
Chanwoo Choib71d3992015-02-24 13:56:55 +09001100 { .compatible = "samsung,exynos3250-tmu", },
1101 { .compatible = "samsung,exynos4210-tmu", },
1102 { .compatible = "samsung,exynos4412-tmu", },
1103 { .compatible = "samsung,exynos5250-tmu", },
1104 { .compatible = "samsung,exynos5260-tmu", },
1105 { .compatible = "samsung,exynos5420-tmu", },
1106 { .compatible = "samsung,exynos5420-tmu-ext-triminfo", },
Chanwoo Choi488c7452015-03-10 11:23:44 +09001107 { .compatible = "samsung,exynos5433-tmu", },
Chanwoo Choib71d3992015-02-24 13:56:55 +09001108 { .compatible = "samsung,exynos5440-tmu", },
1109 { .compatible = "samsung,exynos7-tmu", },
1110 { /* sentinel */ },
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +05301111};
1112MODULE_DEVICE_TABLE(of, exynos_tmu_match);
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +05301113
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001114static int exynos_of_get_soc_type(struct device_node *np)
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +05301115{
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001116 if (of_device_is_compatible(np, "samsung,exynos3250-tmu"))
1117 return SOC_ARCH_EXYNOS3250;
1118 else if (of_device_is_compatible(np, "samsung,exynos4210-tmu"))
1119 return SOC_ARCH_EXYNOS4210;
1120 else if (of_device_is_compatible(np, "samsung,exynos4412-tmu"))
1121 return SOC_ARCH_EXYNOS4412;
1122 else if (of_device_is_compatible(np, "samsung,exynos5250-tmu"))
1123 return SOC_ARCH_EXYNOS5250;
1124 else if (of_device_is_compatible(np, "samsung,exynos5260-tmu"))
1125 return SOC_ARCH_EXYNOS5260;
1126 else if (of_device_is_compatible(np, "samsung,exynos5420-tmu"))
1127 return SOC_ARCH_EXYNOS5420;
1128 else if (of_device_is_compatible(np,
1129 "samsung,exynos5420-tmu-ext-triminfo"))
1130 return SOC_ARCH_EXYNOS5420_TRIMINFO;
Chanwoo Choi488c7452015-03-10 11:23:44 +09001131 else if (of_device_is_compatible(np, "samsung,exynos5433-tmu"))
1132 return SOC_ARCH_EXYNOS5433;
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001133 else if (of_device_is_compatible(np, "samsung,exynos5440-tmu"))
1134 return SOC_ARCH_EXYNOS5440;
Abhilash Kesavan6c247392015-01-27 11:18:22 +05301135 else if (of_device_is_compatible(np, "samsung,exynos7-tmu"))
1136 return SOC_ARCH_EXYNOS7;
Sachin Kamat73b5b1d2013-08-19 11:58:43 +05301137
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001138 return -EINVAL;
1139}
1140
1141static int exynos_of_sensor_conf(struct device_node *np,
1142 struct exynos_tmu_platform_data *pdata)
1143{
1144 u32 value;
1145 int ret;
1146
1147 of_node_get(np);
1148
1149 ret = of_property_read_u32(np, "samsung,tmu_gain", &value);
1150 pdata->gain = (u8)value;
1151 of_property_read_u32(np, "samsung,tmu_reference_voltage", &value);
1152 pdata->reference_voltage = (u8)value;
1153 of_property_read_u32(np, "samsung,tmu_noise_cancel_mode", &value);
1154 pdata->noise_cancel_mode = (u8)value;
1155
1156 of_property_read_u32(np, "samsung,tmu_efuse_value",
1157 &pdata->efuse_value);
1158 of_property_read_u32(np, "samsung,tmu_min_efuse_value",
1159 &pdata->min_efuse_value);
1160 of_property_read_u32(np, "samsung,tmu_max_efuse_value",
1161 &pdata->max_efuse_value);
1162
1163 of_property_read_u32(np, "samsung,tmu_first_point_trim", &value);
1164 pdata->first_point_trim = (u8)value;
1165 of_property_read_u32(np, "samsung,tmu_second_point_trim", &value);
1166 pdata->second_point_trim = (u8)value;
1167 of_property_read_u32(np, "samsung,tmu_default_temp_offset", &value);
1168 pdata->default_temp_offset = (u8)value;
1169
1170 of_property_read_u32(np, "samsung,tmu_cal_type", &pdata->cal_type);
1171 of_property_read_u32(np, "samsung,tmu_cal_mode", &pdata->cal_mode);
1172
1173 of_node_put(np);
1174 return 0;
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +05301175}
Jonghwa Leebbf63be2012-11-21 13:31:01 +09001176
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301177static int exynos_map_dt_data(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001178{
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301179 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
1180 struct exynos_tmu_platform_data *pdata;
1181 struct resource res;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001182
Sachin Kamat73b5b1d2013-08-19 11:58:43 +05301183 if (!data || !pdev->dev.of_node)
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301184 return -ENODEV;
Amit Daniel Kachhap17be8682012-08-16 17:11:44 +05301185
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301186 data->id = of_alias_get_id(pdev->dev.of_node, "tmuctrl");
1187 if (data->id < 0)
1188 data->id = 0;
1189
1190 data->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
1191 if (data->irq <= 0) {
1192 dev_err(&pdev->dev, "failed to get IRQ\n");
1193 return -ENODEV;
1194 }
1195
1196 if (of_address_to_resource(pdev->dev.of_node, 0, &res)) {
1197 dev_err(&pdev->dev, "failed to get Resource 0\n");
1198 return -ENODEV;
1199 }
1200
1201 data->base = devm_ioremap(&pdev->dev, res.start, resource_size(&res));
1202 if (!data->base) {
1203 dev_err(&pdev->dev, "Failed to ioremap memory\n");
1204 return -EADDRNOTAVAIL;
1205 }
1206
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001207 pdata = devm_kzalloc(&pdev->dev,
1208 sizeof(struct exynos_tmu_platform_data),
1209 GFP_KERNEL);
1210 if (!pdata)
1211 return -ENOMEM;
Bartlomiej Zolnierkiewicz56adb9e2014-11-13 16:01:23 +01001212
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001213 exynos_of_sensor_conf(pdev->dev.of_node, pdata);
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301214 data->pdata = pdata;
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001215 data->soc = exynos_of_get_soc_type(pdev->dev.of_node);
Bartlomiej Zolnierkiewicz56adb9e2014-11-13 16:01:23 +01001216
1217 switch (data->soc) {
1218 case SOC_ARCH_EXYNOS4210:
1219 data->tmu_initialize = exynos4210_tmu_initialize;
1220 data->tmu_control = exynos4210_tmu_control;
1221 data->tmu_read = exynos4210_tmu_read;
1222 data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
Krzysztof Kozlowski3a3a5f12016-02-18 14:14:20 +09001223 data->ntrip = 4;
Bartlomiej Zolnierkiewicz56adb9e2014-11-13 16:01:23 +01001224 break;
1225 case SOC_ARCH_EXYNOS3250:
1226 case SOC_ARCH_EXYNOS4412:
1227 case SOC_ARCH_EXYNOS5250:
1228 case SOC_ARCH_EXYNOS5260:
1229 case SOC_ARCH_EXYNOS5420:
1230 case SOC_ARCH_EXYNOS5420_TRIMINFO:
1231 data->tmu_initialize = exynos4412_tmu_initialize;
1232 data->tmu_control = exynos4210_tmu_control;
1233 data->tmu_read = exynos4412_tmu_read;
1234 data->tmu_set_emulation = exynos4412_tmu_set_emulation;
1235 data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
Krzysztof Kozlowski3a3a5f12016-02-18 14:14:20 +09001236 data->ntrip = 4;
Bartlomiej Zolnierkiewicz56adb9e2014-11-13 16:01:23 +01001237 break;
Chanwoo Choi488c7452015-03-10 11:23:44 +09001238 case SOC_ARCH_EXYNOS5433:
1239 data->tmu_initialize = exynos5433_tmu_initialize;
1240 data->tmu_control = exynos5433_tmu_control;
1241 data->tmu_read = exynos4412_tmu_read;
1242 data->tmu_set_emulation = exynos4412_tmu_set_emulation;
1243 data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
Krzysztof Kozlowski3a3a5f12016-02-18 14:14:20 +09001244 data->ntrip = 8;
Chanwoo Choi488c7452015-03-10 11:23:44 +09001245 break;
Bartlomiej Zolnierkiewicz56adb9e2014-11-13 16:01:23 +01001246 case SOC_ARCH_EXYNOS5440:
1247 data->tmu_initialize = exynos5440_tmu_initialize;
1248 data->tmu_control = exynos5440_tmu_control;
1249 data->tmu_read = exynos5440_tmu_read;
1250 data->tmu_set_emulation = exynos5440_tmu_set_emulation;
1251 data->tmu_clear_irqs = exynos5440_tmu_clear_irqs;
Krzysztof Kozlowski3a3a5f12016-02-18 14:14:20 +09001252 data->ntrip = 4;
Bartlomiej Zolnierkiewicz56adb9e2014-11-13 16:01:23 +01001253 break;
Abhilash Kesavan6c247392015-01-27 11:18:22 +05301254 case SOC_ARCH_EXYNOS7:
1255 data->tmu_initialize = exynos7_tmu_initialize;
1256 data->tmu_control = exynos7_tmu_control;
1257 data->tmu_read = exynos7_tmu_read;
1258 data->tmu_set_emulation = exynos4412_tmu_set_emulation;
1259 data->tmu_clear_irqs = exynos4210_tmu_clear_irqs;
Krzysztof Kozlowski3a3a5f12016-02-18 14:14:20 +09001260 data->ntrip = 8;
Abhilash Kesavan6c247392015-01-27 11:18:22 +05301261 break;
Bartlomiej Zolnierkiewicz56adb9e2014-11-13 16:01:23 +01001262 default:
1263 dev_err(&pdev->dev, "Platform not supported\n");
1264 return -EINVAL;
1265 }
1266
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +05301267 /*
1268 * Check if the TMU shares some registers and then try to map the
1269 * memory of common registers.
1270 */
Bartlomiej Zolnierkiewicz56adb9e2014-11-13 16:01:23 +01001271 if (data->soc != SOC_ARCH_EXYNOS5420_TRIMINFO &&
1272 data->soc != SOC_ARCH_EXYNOS5440)
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +05301273 return 0;
1274
1275 if (of_address_to_resource(pdev->dev.of_node, 1, &res)) {
1276 dev_err(&pdev->dev, "failed to get Resource 1\n");
1277 return -ENODEV;
1278 }
1279
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +05301280 data->base_second = devm_ioremap(&pdev->dev, res.start,
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +05301281 resource_size(&res));
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +05301282 if (!data->base_second) {
Amit Daniel Kachhapd9b6ee12013-06-24 16:20:42 +05301283 dev_err(&pdev->dev, "Failed to ioremap memory\n");
1284 return -ENOMEM;
1285 }
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301286
1287 return 0;
1288}
1289
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001290static struct thermal_zone_of_device_ops exynos_sensor_ops = {
1291 .get_temp = exynos_get_temp,
1292 .set_emul_temp = exynos_tmu_set_emulation,
1293};
1294
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301295static int exynos_tmu_probe(struct platform_device *pdev)
1296{
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001297 struct exynos_tmu_data *data;
1298 int ret;
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301299
Amit Daniel Kachhap79e093c2012-08-16 05:41:45 -06001300 data = devm_kzalloc(&pdev->dev, sizeof(struct exynos_tmu_data),
1301 GFP_KERNEL);
Jingoo Han2a9675b2014-05-07 15:04:48 +09001302 if (!data)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001303 return -ENOMEM;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001304
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301305 platform_set_drvdata(pdev, data);
1306 mutex_init(&data->lock);
1307
Krzysztof Kozlowski824ead02015-10-08 14:34:02 +09001308 /*
1309 * Try enabling the regulator if found
1310 * TODO: Add regulator as an SOC feature, so that regulator enable
1311 * is a compulsory call.
1312 */
Javier Martinez Canillas4d3583c2016-02-18 15:19:10 -03001313 data->regulator = devm_regulator_get_optional(&pdev->dev, "vtmu");
Krzysztof Kozlowski824ead02015-10-08 14:34:02 +09001314 if (!IS_ERR(data->regulator)) {
1315 ret = regulator_enable(data->regulator);
1316 if (ret) {
1317 dev_err(&pdev->dev, "failed to enable vtmu\n");
1318 return ret;
1319 }
1320 } else {
Javier Martinez Canillasccb361d2016-02-18 15:19:11 -03001321 if (PTR_ERR(data->regulator) == -EPROBE_DEFER)
1322 return -EPROBE_DEFER;
Krzysztof Kozlowski824ead02015-10-08 14:34:02 +09001323 dev_info(&pdev->dev, "Regulator node (vtmu) not found\n");
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001324 }
Krzysztof Kozlowski824ead02015-10-08 14:34:02 +09001325
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301326 ret = exynos_map_dt_data(pdev);
1327 if (ret)
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001328 goto err_sensor;
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301329
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301330 INIT_WORK(&data->irq_work, exynos_tmu_work);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001331
Sachin Kamat2a162792013-04-18 11:37:58 +00001332 data->clk = devm_clk_get(&pdev->dev, "tmu_apbif");
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001333 if (IS_ERR(data->clk)) {
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001334 dev_err(&pdev->dev, "Failed to get clock\n");
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001335 ret = PTR_ERR(data->clk);
1336 goto err_sensor;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001337 }
1338
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +05301339 data->clk_sec = devm_clk_get(&pdev->dev, "tmu_triminfo_apbif");
1340 if (IS_ERR(data->clk_sec)) {
1341 if (data->soc == SOC_ARCH_EXYNOS5420_TRIMINFO) {
1342 dev_err(&pdev->dev, "Failed to get triminfo clock\n");
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001343 ret = PTR_ERR(data->clk_sec);
1344 goto err_sensor;
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +05301345 }
1346 } else {
1347 ret = clk_prepare(data->clk_sec);
1348 if (ret) {
1349 dev_err(&pdev->dev, "Failed to get clock\n");
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001350 goto err_sensor;
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +05301351 }
1352 }
1353
Sachin Kamat2a162792013-04-18 11:37:58 +00001354 ret = clk_prepare(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +05301355 if (ret) {
1356 dev_err(&pdev->dev, "Failed to get clock\n");
1357 goto err_clk_sec;
1358 }
Sachin Kamat2a162792013-04-18 11:37:58 +00001359
Chanwoo Choi488c7452015-03-10 11:23:44 +09001360 switch (data->soc) {
1361 case SOC_ARCH_EXYNOS5433:
1362 case SOC_ARCH_EXYNOS7:
Abhilash Kesavan6c247392015-01-27 11:18:22 +05301363 data->sclk = devm_clk_get(&pdev->dev, "tmu_sclk");
1364 if (IS_ERR(data->sclk)) {
1365 dev_err(&pdev->dev, "Failed to get sclk\n");
1366 goto err_clk;
1367 } else {
1368 ret = clk_prepare_enable(data->sclk);
1369 if (ret) {
1370 dev_err(&pdev->dev, "Failed to enable sclk\n");
1371 goto err_clk;
1372 }
1373 }
Chanwoo Choi488c7452015-03-10 11:23:44 +09001374 break;
1375 default:
1376 break;
Krzysztof Kozlowskibaba1eb2015-10-08 14:34:05 +09001377 }
Abhilash Kesavan6c247392015-01-27 11:18:22 +05301378
Krzysztof Kozlowski9e4249b2015-10-08 14:34:03 +09001379 /*
1380 * data->tzd must be registered before calling exynos_tmu_initialize(),
1381 * requesting irq and calling exynos_tmu_control().
1382 */
1383 data->tzd = thermal_zone_of_sensor_register(&pdev->dev, 0, data,
1384 &exynos_sensor_ops);
1385 if (IS_ERR(data->tzd)) {
1386 ret = PTR_ERR(data->tzd);
1387 dev_err(&pdev->dev, "Failed to register sensor: %d\n", ret);
1388 goto err_sclk;
1389 }
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001390
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301391 ret = exynos_tmu_initialize(pdev);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001392 if (ret) {
1393 dev_err(&pdev->dev, "Failed to initialize TMU\n");
Krzysztof Kozlowski9e4249b2015-10-08 14:34:03 +09001394 goto err_thermal;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001395 }
1396
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301397 ret = devm_request_irq(&pdev->dev, data->irq, exynos_tmu_irq,
1398 IRQF_TRIGGER_RISING | IRQF_SHARED, dev_name(&pdev->dev), data);
1399 if (ret) {
1400 dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq);
Krzysztof Kozlowski9e4249b2015-10-08 14:34:03 +09001401 goto err_thermal;
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +05301402 }
Jonghwa Leebbf63be2012-11-21 13:31:01 +09001403
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001404 exynos_tmu_control(pdev, true);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001405 return 0;
Krzysztof Kozlowski9e4249b2015-10-08 14:34:03 +09001406
1407err_thermal:
1408 thermal_zone_of_sensor_unregister(&pdev->dev, data->tzd);
Abhilash Kesavan6c247392015-01-27 11:18:22 +05301409err_sclk:
1410 clk_disable_unprepare(data->sclk);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001411err_clk:
Sachin Kamat2a162792013-04-18 11:37:58 +00001412 clk_unprepare(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +05301413err_clk_sec:
1414 if (!IS_ERR(data->clk_sec))
1415 clk_unprepare(data->clk_sec);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001416err_sensor:
Krzysztof Kozlowskibfa26832015-10-08 14:34:04 +09001417 if (!IS_ERR(data->regulator))
Krzysztof Kozlowski5f09a5c2015-06-08 10:35:49 +09001418 regulator_disable(data->regulator);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001419
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001420 return ret;
1421}
1422
Greg Kroah-Hartman4eab7a92012-12-21 13:15:52 -08001423static int exynos_tmu_remove(struct platform_device *pdev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001424{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301425 struct exynos_tmu_data *data = platform_get_drvdata(pdev);
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001426 struct thermal_zone_device *tzd = data->tzd;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001427
Lukasz Majewski3b6a1a82015-01-23 13:10:08 +01001428 thermal_zone_of_sensor_unregister(&pdev->dev, tzd);
Bartlomiej Zolnierkiewicz42156882014-07-08 15:09:56 +02001429 exynos_tmu_control(pdev, false);
1430
Abhilash Kesavan6c247392015-01-27 11:18:22 +05301431 clk_disable_unprepare(data->sclk);
Sachin Kamat2a162792013-04-18 11:37:58 +00001432 clk_unprepare(data->clk);
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +05301433 if (!IS_ERR(data->clk_sec))
1434 clk_unprepare(data->clk_sec);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001435
Amit Daniel Kachhap498d22f2013-06-24 16:20:47 +05301436 if (!IS_ERR(data->regulator))
1437 regulator_disable(data->regulator);
1438
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001439 return 0;
1440}
1441
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +02001442#ifdef CONFIG_PM_SLEEP
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301443static int exynos_tmu_suspend(struct device *dev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001444{
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301445 exynos_tmu_control(to_platform_device(dev), false);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001446
1447 return 0;
1448}
1449
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301450static int exynos_tmu_resume(struct device *dev)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001451{
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +02001452 struct platform_device *pdev = to_platform_device(dev);
1453
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301454 exynos_tmu_initialize(pdev);
1455 exynos_tmu_control(pdev, true);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001456
1457 return 0;
1458}
Rafael J. Wysocki08cd6752012-07-08 21:48:15 +02001459
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301460static SIMPLE_DEV_PM_OPS(exynos_tmu_pm,
1461 exynos_tmu_suspend, exynos_tmu_resume);
1462#define EXYNOS_TMU_PM (&exynos_tmu_pm)
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001463#else
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301464#define EXYNOS_TMU_PM NULL
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001465#endif
1466
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301467static struct platform_driver exynos_tmu_driver = {
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001468 .driver = {
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301469 .name = "exynos-tmu",
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301470 .pm = EXYNOS_TMU_PM,
Sachin Kamat73b5b1d2013-08-19 11:58:43 +05301471 .of_match_table = exynos_tmu_match,
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001472 },
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301473 .probe = exynos_tmu_probe,
Greg Kroah-Hartman4eab7a92012-12-21 13:15:52 -08001474 .remove = exynos_tmu_remove,
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001475};
1476
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301477module_platform_driver(exynos_tmu_driver);
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001478
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301479MODULE_DESCRIPTION("EXYNOS TMU Driver");
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001480MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
1481MODULE_LICENSE("GPL");
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +05301482MODULE_ALIAS("platform:exynos-tmu");