thermal: exynos: Remove check for thermal device pointer at exynos_report_trigger()
[deliverable/linux.git] / drivers / thermal / samsung / exynos_tmu.h
CommitLineData
9d97e5c8 1/*
0c1836a6 2 * exynos_tmu.h - Samsung EXYNOS TMU (Thermal Management Unit)
9d97e5c8
DK
3 *
4 * Copyright (C) 2011 Samsung Electronics
5 * Donggeun Kim <dg77.kim@samsung.com>
0c1836a6 6 * Amit Daniel Kachhap <amit.daniel@samsung.com>
9d97e5c8
DK
7 *
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
0c1836a6
ADK
23#ifndef _EXYNOS_TMU_H
24#define _EXYNOS_TMU_H
7e0b55e6 25#include <linux/cpu_cooling.h>
9d97e5c8 26
0c1836a6
ADK
27#include "exynos_thermal_common.h"
28
9d97e5c8
DK
29enum calibration_type {
30 TYPE_ONE_POINT_TRIMMING,
1928457e
ADK
31 TYPE_ONE_POINT_TRIMMING_25,
32 TYPE_ONE_POINT_TRIMMING_85,
9d97e5c8
DK
33 TYPE_TWO_POINT_TRIMMING,
34 TYPE_NONE,
35};
36
bb34b4c8
ADK
37enum calibration_mode {
38 SW_MODE,
39 HW_MODE,
40};
41
f22d9c03
ADK
42enum soc_type {
43 SOC_ARCH_EXYNOS4210 = 1,
44 SOC_ARCH_EXYNOS,
a0395eee 45 SOC_ARCH_EXYNOS5440,
f22d9c03 46};
7e0b55e6 47
f4dae753
ADK
48/**
49 * EXYNOS TMU supported features.
50 * TMU_SUPPORT_EMULATION - This features is used to set user defined
51 * temperature to the TMU controller.
52 * TMU_SUPPORT_MULTI_INST - This features denotes that the soc
53 * has many instances of TMU.
54 * TMU_SUPPORT_TRIM_RELOAD - This features shows that trimming can
55 * be reloaded.
56 * TMU_SUPPORT_FALLING_TRIP - This features shows that interrupt can
57 * be registered for falling trips also.
58 * TMU_SUPPORT_READY_STATUS - This feature tells that the TMU current
59 * state(active/idle) can be checked.
60 * TMU_SUPPORT_EMUL_TIME - This features allows to set next temp emulation
61 * sample time.
62 * TMU_SUPPORT_SHARED_MEMORY - This feature tells that the different TMU
63 * sensors shares some common registers.
64 * TMU_SUPPORT - macro to compare the above features with the supplied.
65 */
66#define TMU_SUPPORT_EMULATION BIT(0)
67#define TMU_SUPPORT_MULTI_INST BIT(1)
68#define TMU_SUPPORT_TRIM_RELOAD BIT(2)
69#define TMU_SUPPORT_FALLING_TRIP BIT(3)
70#define TMU_SUPPORT_READY_STATUS BIT(4)
71#define TMU_SUPPORT_EMUL_TIME BIT(5)
72#define TMU_SUPPORT_SHARED_MEMORY BIT(6)
73
74#define TMU_SUPPORTS(a, b) (a->features & TMU_SUPPORT_ ## b)
75
b8d582b9
ADK
76/**
77 * struct exynos_tmu_register - register descriptors to access registers and
78 * bitfields. The register validity, offsets and bitfield values may vary
79 * slightly across different exynos SOC's.
80 * @triminfo_data: register containing 2 pont trimming data
81 * @triminfo_25_shift: shift bit of the 25 C trim value in triminfo_data reg.
82 * @triminfo_85_shift: shift bit of the 85 C trim value in triminfo_data reg.
83 * @triminfo_ctrl: trim info controller register.
84 * @triminfo_reload_shift: shift of triminfo reload enable bit in triminfo_ctrl
85 reg.
86 * @tmu_ctrl: TMU main controller register.
87 * @buf_vref_sel_shift: shift bits of reference voltage in tmu_ctrl register.
88 * @buf_vref_sel_mask: mask bits of reference voltage in tmu_ctrl register.
89 * @therm_trip_mode_shift: shift bits of tripping mode in tmu_ctrl register.
90 * @therm_trip_mode_mask: mask bits of tripping mode in tmu_ctrl register.
91 * @therm_trip_en_shift: shift bits of tripping enable in tmu_ctrl register.
92 * @buf_slope_sel_shift: shift bits of amplifier gain value in tmu_ctrl
93 register.
94 * @buf_slope_sel_mask: mask bits of amplifier gain value in tmu_ctrl register.
1928457e
ADK
95 * @calib_mode_shift: shift bits of calibration mode value in tmu_ctrl
96 register.
97 * @calib_mode_mask: mask bits of calibration mode value in tmu_ctrl
98 register.
b8d582b9
ADK
99 * @therm_trip_tq_en_shift: shift bits of thermal trip enable by TQ pin in
100 tmu_ctrl register.
101 * @core_en_shift: shift bits of TMU core enable bit in tmu_ctrl register.
102 * @tmu_status: register drescribing the TMU status.
103 * @tmu_cur_temp: register containing the current temperature of the TMU.
104 * @tmu_cur_temp_shift: shift bits of current temp value in tmu_cur_temp
105 register.
106 * @threshold_temp: register containing the base threshold level.
107 * @threshold_th0: Register containing first set of rising levels.
108 * @threshold_th0_l0_shift: shift bits of level0 threshold temperature.
109 * @threshold_th0_l1_shift: shift bits of level1 threshold temperature.
110 * @threshold_th0_l2_shift: shift bits of level2 threshold temperature.
111 * @threshold_th0_l3_shift: shift bits of level3 threshold temperature.
112 * @threshold_th1: Register containing second set of rising levels.
113 * @threshold_th1_l0_shift: shift bits of level0 threshold temperature.
114 * @threshold_th1_l1_shift: shift bits of level1 threshold temperature.
115 * @threshold_th1_l2_shift: shift bits of level2 threshold temperature.
116 * @threshold_th1_l3_shift: shift bits of level3 threshold temperature.
117 * @threshold_th2: Register containing third set of rising levels.
118 * @threshold_th2_l0_shift: shift bits of level0 threshold temperature.
119 * @threshold_th3: Register containing fourth set of rising levels.
120 * @threshold_th3_l0_shift: shift bits of level0 threshold temperature.
121 * @tmu_inten: register containing the different threshold interrupt
122 enable bits.
123 * @inten_rise_shift: shift bits of all rising interrupt bits.
124 * @inten_rise_mask: mask bits of all rising interrupt bits.
125 * @inten_fall_shift: shift bits of all rising interrupt bits.
126 * @inten_fall_mask: mask bits of all rising interrupt bits.
127 * @inten_rise0_shift: shift bits of rising 0 interrupt bits.
128 * @inten_rise1_shift: shift bits of rising 1 interrupt bits.
129 * @inten_rise2_shift: shift bits of rising 2 interrupt bits.
130 * @inten_rise3_shift: shift bits of rising 3 interrupt bits.
131 * @inten_fall0_shift: shift bits of falling 0 interrupt bits.
132 * @inten_fall1_shift: shift bits of falling 1 interrupt bits.
133 * @inten_fall2_shift: shift bits of falling 2 interrupt bits.
134 * @inten_fall3_shift: shift bits of falling 3 interrupt bits.
135 * @tmu_intstat: Register containing the interrupt status values.
136 * @tmu_intclear: Register for clearing the raised interrupt status.
137 * @emul_con: TMU emulation controller register.
138 * @emul_temp_shift: shift bits of emulation temperature.
139 * @emul_time_shift: shift bits of emulation time.
140 * @emul_time_mask: mask bits of emulation time.
a0395eee
ADK
141 * @tmu_irqstatus: register to find which TMU generated interrupts.
142 * @tmu_pmin: register to get/set the Pmin value.
b8d582b9
ADK
143 */
144struct exynos_tmu_registers {
145 u32 triminfo_data;
146 u32 triminfo_25_shift;
147 u32 triminfo_85_shift;
148
149 u32 triminfo_ctrl;
150 u32 triminfo_reload_shift;
151
152 u32 tmu_ctrl;
153 u32 buf_vref_sel_shift;
154 u32 buf_vref_sel_mask;
155 u32 therm_trip_mode_shift;
156 u32 therm_trip_mode_mask;
157 u32 therm_trip_en_shift;
158 u32 buf_slope_sel_shift;
159 u32 buf_slope_sel_mask;
1928457e
ADK
160 u32 calib_mode_shift;
161 u32 calib_mode_mask;
b8d582b9
ADK
162 u32 therm_trip_tq_en_shift;
163 u32 core_en_shift;
164
165 u32 tmu_status;
166
167 u32 tmu_cur_temp;
168 u32 tmu_cur_temp_shift;
169
170 u32 threshold_temp;
171
172 u32 threshold_th0;
173 u32 threshold_th0_l0_shift;
174 u32 threshold_th0_l1_shift;
175 u32 threshold_th0_l2_shift;
176 u32 threshold_th0_l3_shift;
177
178 u32 threshold_th1;
179 u32 threshold_th1_l0_shift;
180 u32 threshold_th1_l1_shift;
181 u32 threshold_th1_l2_shift;
182 u32 threshold_th1_l3_shift;
183
184 u32 threshold_th2;
185 u32 threshold_th2_l0_shift;
186
187 u32 threshold_th3;
188 u32 threshold_th3_l0_shift;
189
190 u32 tmu_inten;
191 u32 inten_rise_shift;
192 u32 inten_rise_mask;
193 u32 inten_fall_shift;
194 u32 inten_fall_mask;
195 u32 inten_rise0_shift;
196 u32 inten_rise1_shift;
197 u32 inten_rise2_shift;
198 u32 inten_rise3_shift;
199 u32 inten_fall0_shift;
200 u32 inten_fall1_shift;
201 u32 inten_fall2_shift;
202 u32 inten_fall3_shift;
203
204 u32 tmu_intstat;
205
206 u32 tmu_intclear;
207
208 u32 emul_con;
209 u32 emul_temp_shift;
210 u32 emul_time_shift;
211 u32 emul_time_mask;
a0395eee
ADK
212
213 u32 tmu_irqstatus;
214 u32 tmu_pmin;
b8d582b9
ADK
215};
216
9d97e5c8 217/**
f22d9c03 218 * struct exynos_tmu_platform_data
9d97e5c8
DK
219 * @threshold: basic temperature for generating interrupt
220 * 25 <= threshold <= 125 [unit: degree Celsius]
4f0a6847
JL
221 * @threshold_falling: differntial value for setting threshold
222 * of temperature falling interrupt.
9d97e5c8
DK
223 * @trigger_levels: array for each interrupt levels
224 * [unit: degree Celsius]
225 * 0: temperature for trigger_level0 interrupt
226 * condition for trigger_level0 interrupt:
227 * current temperature > threshold + trigger_levels[0]
228 * 1: temperature for trigger_level1 interrupt
229 * condition for trigger_level1 interrupt:
230 * current temperature > threshold + trigger_levels[1]
231 * 2: temperature for trigger_level2 interrupt
232 * condition for trigger_level2 interrupt:
233 * current temperature > threshold + trigger_levels[2]
234 * 3: temperature for trigger_level3 interrupt
235 * condition for trigger_level3 interrupt:
236 * current temperature > threshold + trigger_levels[3]
bb34b4c8
ADK
237 * @trigger_type: defines the type of trigger. Possible values are,
238 * THROTTLE_ACTIVE trigger type
239 * THROTTLE_PASSIVE trigger type
240 * SW_TRIP trigger type
241 * HW_TRIP
242 * @trigger_enable[]: array to denote which trigger levels are enabled.
243 * 1 = enable trigger_level[] interrupt,
244 * 0 = disable trigger_level[] interrupt
245 * @max_trigger_level: max trigger level supported by the TMU
9d97e5c8
DK
246 * @gain: gain of amplifier in the positive-TC generator block
247 * 0 <= gain <= 15
248 * @reference_voltage: reference voltage of amplifier
249 * in the positive-TC generator block
250 * 0 <= reference_voltage <= 31
f22d9c03
ADK
251 * @noise_cancel_mode: noise cancellation mode
252 * 000, 100, 101, 110 and 111 can be different modes
253 * @type: determines the type of SOC
254 * @efuse_value: platform defined fuse value
bb34b4c8
ADK
255 * @min_efuse_value: minimum valid trimming data
256 * @max_efuse_value: maximum valid trimming data
257 * @first_point_trim: temp value of the first point trimming
258 * @second_point_trim: temp value of the second point trimming
259 * @default_temp_offset: default temperature offset in case of no trimming
9d97e5c8 260 * @cal_type: calibration type for temperature
bb34b4c8 261 * @cal_mode: calibration mode for temperature
7e0b55e6
ADK
262 * @freq_clip_table: Table representing frequency reduction percentage.
263 * @freq_tab_count: Count of the above table as frequency reduction may
264 * applicable to only some of the trigger levels.
b8d582b9
ADK
265 * @registers: Pointer to structure containing all the TMU controller registers
266 * and bitfields shifts and masks.
f4dae753
ADK
267 * @features: a bitfield value indicating the features supported in SOC like
268 * emulation, multi instance etc
9d97e5c8 269 *
f22d9c03 270 * This structure is required for configuration of exynos_tmu driver.
9d97e5c8 271 */
f22d9c03 272struct exynos_tmu_platform_data {
9d97e5c8 273 u8 threshold;
4f0a6847 274 u8 threshold_falling;
bb34b4c8
ADK
275 u8 trigger_levels[MAX_TRIP_COUNT];
276 enum trigger_type trigger_type[MAX_TRIP_COUNT];
277 bool trigger_enable[MAX_TRIP_COUNT];
278 u8 max_trigger_level;
9d97e5c8
DK
279 u8 gain;
280 u8 reference_voltage;
f22d9c03 281 u8 noise_cancel_mode;
bb34b4c8 282
f22d9c03 283 u32 efuse_value;
bb34b4c8
ADK
284 u32 min_efuse_value;
285 u32 max_efuse_value;
286 u8 first_point_trim;
287 u8 second_point_trim;
288 u8 default_temp_offset;
9d97e5c8
DK
289
290 enum calibration_type cal_type;
bb34b4c8 291 enum calibration_mode cal_mode;
f22d9c03 292 enum soc_type type;
7e0b55e6
ADK
293 struct freq_clip_table freq_tab[4];
294 unsigned int freq_tab_count;
b8d582b9 295 const struct exynos_tmu_registers *registers;
f4dae753 296 unsigned int features;
9d97e5c8 297};
cebe7373
ADK
298
299/**
300 * struct exynos_tmu_init_data
301 * @tmu_count: number of TMU instances.
302 * @tmu_data: platform data of all TMU instances.
303 * This structure is required to store data for multi-instance exynos tmu
304 * driver.
305 */
306struct exynos_tmu_init_data {
307 int tmu_count;
308 struct exynos_tmu_platform_data tmu_data[];
309};
310
0c1836a6 311#endif /* _EXYNOS_TMU_H */
This page took 0.235987 seconds and 5 git commands to generate.