blob: f67203bfd83c021a7e253af59666b6795b2d4a72 [file] [log] [blame]
Donggeun Kim9d97e5c2011-09-07 18:49:08 +09001/*
Amit Daniel Kachhap0c1836a2013-06-24 16:20:27 +05302 * exynos_tmu.h - 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 Kachhap0c1836a2013-06-24 16:20:27 +05306 * Amit Daniel Kachhap <amit.daniel@samsung.com>
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
Amit Daniel Kachhap0c1836a2013-06-24 16:20:27 +053023#ifndef _EXYNOS_TMU_H
24#define _EXYNOS_TMU_H
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +053025#include <linux/cpu_cooling.h>
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090026
Amit Daniel Kachhap0c1836a2013-06-24 16:20:27 +053027#include "exynos_thermal_common.h"
28
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090029enum calibration_type {
30 TYPE_ONE_POINT_TRIMMING,
Amit Daniel Kachhap19284572013-06-24 16:20:46 +053031 TYPE_ONE_POINT_TRIMMING_25,
32 TYPE_ONE_POINT_TRIMMING_85,
Donggeun Kim9d97e5c2011-09-07 18:49:08 +090033 TYPE_TWO_POINT_TRIMMING,
34 TYPE_NONE,
35};
36
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053037enum soc_type {
Chanwoo Choi1fe56dc2014-07-01 09:33:19 +090038 SOC_ARCH_EXYNOS3250 = 1,
39 SOC_ARCH_EXYNOS4210,
Lukasz Majewski14ddfae2013-10-09 08:29:51 +020040 SOC_ARCH_EXYNOS4412,
41 SOC_ARCH_EXYNOS5250,
Naveen Krishna Chatradhi923488a2013-12-20 17:49:10 +053042 SOC_ARCH_EXYNOS5260,
Naveen Krishna Chatradhi14a11dc2013-12-19 11:36:31 +053043 SOC_ARCH_EXYNOS5420_TRIMINFO,
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +053044 SOC_ARCH_EXYNOS5440,
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +053045};
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +053046
47/**
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +053048 * EXYNOS TMU supported features.
49 * TMU_SUPPORT_EMULATION - This features is used to set user defined
50 * temperature to the TMU controller.
51 * TMU_SUPPORT_MULTI_INST - This features denotes that the soc
52 * has many instances of TMU.
53 * TMU_SUPPORT_TRIM_RELOAD - This features shows that trimming can
54 * be reloaded.
55 * TMU_SUPPORT_FALLING_TRIP - This features shows that interrupt can
56 * be registered for falling trips also.
57 * TMU_SUPPORT_READY_STATUS - This feature tells that the TMU current
58 * state(active/idle) can be checked.
59 * TMU_SUPPORT_EMUL_TIME - This features allows to set next temp emulation
60 * sample time.
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +053061 * TMU_SUPPORT_ADDRESS_MULTIPLE - This feature tells that the different TMU
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +053062 * sensors shares some common registers.
63 * TMU_SUPPORT - macro to compare the above features with the supplied.
64 */
65#define TMU_SUPPORT_EMULATION BIT(0)
66#define TMU_SUPPORT_MULTI_INST BIT(1)
67#define TMU_SUPPORT_TRIM_RELOAD BIT(2)
68#define TMU_SUPPORT_FALLING_TRIP BIT(3)
69#define TMU_SUPPORT_READY_STATUS BIT(4)
70#define TMU_SUPPORT_EMUL_TIME BIT(5)
Naveen Krishna Chatradhi9025d562013-12-19 11:36:08 +053071#define TMU_SUPPORT_ADDRESS_MULTIPLE BIT(6)
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +053072
73#define TMU_SUPPORTS(a, b) (a->features & TMU_SUPPORT_ ## b)
74
75/**
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053076 * struct exynos_tmu_register - register descriptors to access registers and
77 * bitfields. The register validity, offsets and bitfield values may vary
78 * slightly across different exynos SOC's.
79 * @triminfo_data: register containing 2 pont trimming data
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053080 * @triminfo_ctrl: trim info controller register.
Chanwoo Choi56c64da2014-09-03 12:09:02 +090081 * @triminfo_ctrl_count: the number of trim info controller register.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053082 * @tmu_ctrl: TMU main controller register.
Lukasz Majewski86f53622013-10-09 08:29:52 +020083 * @test_mux_addr_shift: shift bits of test mux address.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053084 * @therm_trip_mode_shift: shift bits of tripping mode in tmu_ctrl register.
85 * @therm_trip_mode_mask: mask bits of tripping mode in tmu_ctrl register.
86 * @therm_trip_en_shift: shift bits of tripping enable in tmu_ctrl register.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053087 * @tmu_status: register drescribing the TMU status.
88 * @tmu_cur_temp: register containing the current temperature of the TMU.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053089 * @threshold_temp: register containing the base threshold level.
90 * @threshold_th0: Register containing first set of rising levels.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053091 * @threshold_th1: Register containing second set of rising levels.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053092 * @threshold_th2: Register containing third set of rising levels.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053093 * @threshold_th3_l0_shift: shift bits of level0 threshold temperature.
94 * @tmu_inten: register containing the different threshold interrupt
95 enable bits.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +053096 * @inten_rise0_shift: shift bits of rising 0 interrupt bits.
97 * @inten_rise1_shift: shift bits of rising 1 interrupt bits.
98 * @inten_rise2_shift: shift bits of rising 2 interrupt bits.
99 * @inten_rise3_shift: shift bits of rising 3 interrupt bits.
100 * @inten_fall0_shift: shift bits of falling 0 interrupt bits.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530101 * @tmu_intstat: Register containing the interrupt status values.
102 * @tmu_intclear: Register for clearing the raised interrupt status.
Naveen Krishna Chatradhi74429c22013-12-19 11:35:39 +0530103 * @intclr_fall_shift: shift bits for interrupt clear fall 0
104 * @intclr_rise_shift: shift bits of all rising interrupt bits.
105 * @intclr_rise_mask: mask bits of all rising interrupt bits.
106 * @intclr_fall_mask: mask bits of all rising interrupt bits.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530107 * @emul_con: TMU emulation controller register.
108 * @emul_temp_shift: shift bits of emulation temperature.
109 * @emul_time_shift: shift bits of emulation time.
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530110 * @tmu_irqstatus: register to find which TMU generated interrupts.
111 * @tmu_pmin: register to get/set the Pmin value.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530112 */
113struct exynos_tmu_registers {
114 u32 triminfo_data;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530115
Chanwoo Choi56c64da2014-09-03 12:09:02 +0900116 u32 triminfo_ctrl[MAX_TRIMINFO_CTRL_REG];
117 u32 triminfo_ctrl_count;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530118
119 u32 tmu_ctrl;
Lukasz Majewski86f53622013-10-09 08:29:52 +0200120 u32 test_mux_addr_shift;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530121 u32 therm_trip_mode_shift;
122 u32 therm_trip_mode_mask;
123 u32 therm_trip_en_shift;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530124
125 u32 tmu_status;
126
127 u32 tmu_cur_temp;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530128
129 u32 threshold_temp;
130
131 u32 threshold_th0;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530132 u32 threshold_th1;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530133 u32 threshold_th2;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530134 u32 threshold_th3_l0_shift;
135
136 u32 tmu_inten;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530137 u32 inten_rise0_shift;
138 u32 inten_rise1_shift;
139 u32 inten_rise2_shift;
140 u32 inten_rise3_shift;
141 u32 inten_fall0_shift;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530142
143 u32 tmu_intstat;
144
145 u32 tmu_intclear;
Naveen Krishna Chatradhi74429c22013-12-19 11:35:39 +0530146 u32 intclr_fall_shift;
147 u32 intclr_rise_shift;
148 u32 intclr_fall_mask;
149 u32 intclr_rise_mask;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530150
151 u32 emul_con;
152 u32 emul_temp_shift;
153 u32 emul_time_shift;
Amit Daniel Kachhapa0395ee2013-06-24 16:20:43 +0530154
155 u32 tmu_irqstatus;
156 u32 tmu_pmin;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530157};
158
159/**
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530160 * struct exynos_tmu_platform_data
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900161 * @threshold: basic temperature for generating interrupt
162 * 25 <= threshold <= 125 [unit: degree Celsius]
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000163 * @threshold_falling: differntial value for setting threshold
164 * of temperature falling interrupt.
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900165 * @trigger_levels: array for each interrupt levels
166 * [unit: degree Celsius]
167 * 0: temperature for trigger_level0 interrupt
168 * condition for trigger_level0 interrupt:
169 * current temperature > threshold + trigger_levels[0]
170 * 1: temperature for trigger_level1 interrupt
171 * condition for trigger_level1 interrupt:
172 * current temperature > threshold + trigger_levels[1]
173 * 2: temperature for trigger_level2 interrupt
174 * condition for trigger_level2 interrupt:
175 * current temperature > threshold + trigger_levels[2]
176 * 3: temperature for trigger_level3 interrupt
177 * condition for trigger_level3 interrupt:
178 * current temperature > threshold + trigger_levels[3]
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530179 * @trigger_type: defines the type of trigger. Possible values are,
180 * THROTTLE_ACTIVE trigger type
181 * THROTTLE_PASSIVE trigger type
182 * SW_TRIP trigger type
183 * HW_TRIP
184 * @trigger_enable[]: array to denote which trigger levels are enabled.
185 * 1 = enable trigger_level[] interrupt,
186 * 0 = disable trigger_level[] interrupt
187 * @max_trigger_level: max trigger level supported by the TMU
Bartlomiej Zolnierkiewiczac951af2014-07-31 19:11:04 +0200188 * @non_hw_trigger_levels: number of defined non-hardware trigger levels
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900189 * @gain: gain of amplifier in the positive-TC generator block
Bartlomiej Zolnierkiewicz9c7a87f2014-07-31 19:11:05 +0200190 * 0 < gain <= 15
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900191 * @reference_voltage: reference voltage of amplifier
192 * in the positive-TC generator block
Bartlomiej Zolnierkiewicz9c7a87f2014-07-31 19:11:05 +0200193 * 0 < reference_voltage <= 31
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530194 * @noise_cancel_mode: noise cancellation mode
195 * 000, 100, 101, 110 and 111 can be different modes
196 * @type: determines the type of SOC
197 * @efuse_value: platform defined fuse value
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530198 * @min_efuse_value: minimum valid trimming data
199 * @max_efuse_value: maximum valid trimming data
200 * @first_point_trim: temp value of the first point trimming
201 * @second_point_trim: temp value of the second point trimming
202 * @default_temp_offset: default temperature offset in case of no trimming
Lukasz Majewski86f53622013-10-09 08:29:52 +0200203 * @test_mux; information if SoC supports test MUX
Chanwoo Choi56c64da2014-09-03 12:09:02 +0900204 * @triminfo_reload: reload value to read TRIMINFO register
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900205 * @cal_type: calibration type for temperature
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530206 * @freq_clip_table: Table representing frequency reduction percentage.
207 * @freq_tab_count: Count of the above table as frequency reduction may
208 * applicable to only some of the trigger levels.
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530209 * @registers: Pointer to structure containing all the TMU controller registers
210 * and bitfields shifts and masks.
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530211 * @features: a bitfield value indicating the features supported in SOC like
212 * emulation, multi instance etc
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900213 *
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530214 * This structure is required for configuration of exynos_tmu driver.
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900215 */
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530216struct exynos_tmu_platform_data {
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900217 u8 threshold;
Jonghwa Lee4f0a6842013-02-08 01:13:06 +0000218 u8 threshold_falling;
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530219 u8 trigger_levels[MAX_TRIP_COUNT];
220 enum trigger_type trigger_type[MAX_TRIP_COUNT];
221 bool trigger_enable[MAX_TRIP_COUNT];
222 u8 max_trigger_level;
Bartlomiej Zolnierkiewiczac951af2014-07-31 19:11:04 +0200223 u8 non_hw_trigger_levels;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900224 u8 gain;
225 u8 reference_voltage;
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530226 u8 noise_cancel_mode;
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530227
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530228 u32 efuse_value;
Amit Daniel Kachhapbb34b4c2013-06-24 16:20:30 +0530229 u32 min_efuse_value;
230 u32 max_efuse_value;
231 u8 first_point_trim;
232 u8 second_point_trim;
233 u8 default_temp_offset;
Lukasz Majewski86f53622013-10-09 08:29:52 +0200234 u8 test_mux;
Chanwoo Choi56c64da2014-09-03 12:09:02 +0900235 u8 triminfo_reload[MAX_TRIMINFO_CTRL_REG];
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900236
237 enum calibration_type cal_type;
Amit Daniel Kachhapf22d9c02012-08-16 17:11:42 +0530238 enum soc_type type;
Amit Daniel Kachhap7e0b55e2012-08-16 17:11:43 +0530239 struct freq_clip_table freq_tab[4];
240 unsigned int freq_tab_count;
Amit Daniel Kachhapb8d582b2013-06-24 16:20:31 +0530241 const struct exynos_tmu_registers *registers;
Amit Daniel Kachhapf4dae752013-06-24 16:20:40 +0530242 unsigned int features;
Donggeun Kim9d97e5c2011-09-07 18:49:08 +0900243};
Amit Daniel Kachhapcebe7372013-06-24 16:20:39 +0530244
245/**
246 * struct exynos_tmu_init_data
247 * @tmu_count: number of TMU instances.
248 * @tmu_data: platform data of all TMU instances.
249 * This structure is required to store data for multi-instance exynos tmu
250 * driver.
251 */
252struct exynos_tmu_init_data {
253 int tmu_count;
254 struct exynos_tmu_platform_data tmu_data[];
255};
256
Amit Daniel Kachhap0c1836a2013-06-24 16:20:27 +0530257#endif /* _EXYNOS_TMU_H */