aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/thermal
diff options
context:
space:
mode:
authorAmit Daniel Kachhap <amit.daniel@samsung.com>2013-06-24 06:50:44 -0400
committerEduardo Valentin <eduardo.valentin@ti.com>2013-08-13 09:52:03 -0400
commit90542546f057c3cd71601240f25e7f1e5d0eae7f (patch)
tree883a14cc208245d2ac22973e1f00af1bd9b4bf6b /drivers/thermal
parenta0395eee7ca19623f69f067cc8cfbd4385d85dad (diff)
thermal: exynos: Add thermal configuration data for exynos5440 TMU sensor
This patch adds configuration data for exynos5440 soc. Also register definations for the controller are added. Acked-by: Jonghwa Lee <jonghwa3.lee@samsung.com> Acked-by: Kukjin Kim <kgene.kim@samsung.com> Signed-off-by: Amit Daniel Kachhap <amit.daniel@samsung.com> Acked-by: Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r--drivers/thermal/samsung/exynos_tmu.c4
-rw-r--r--drivers/thermal/samsung/exynos_tmu_data.c71
-rw-r--r--drivers/thermal/samsung/exynos_tmu_data.h7
3 files changed, 82 insertions, 0 deletions
diff --git a/drivers/thermal/samsung/exynos_tmu.c b/drivers/thermal/samsung/exynos_tmu.c
index 6bc86f6f91e9..651f4609ebb5 100644
--- a/drivers/thermal/samsung/exynos_tmu.c
+++ b/drivers/thermal/samsung/exynos_tmu.c
@@ -456,6 +456,10 @@ static const struct of_device_id exynos_tmu_match[] = {
456 .compatible = "samsung,exynos5250-tmu", 456 .compatible = "samsung,exynos5250-tmu",
457 .data = (void *)EXYNOS5250_TMU_DRV_DATA, 457 .data = (void *)EXYNOS5250_TMU_DRV_DATA,
458 }, 458 },
459 {
460 .compatible = "samsung,exynos5440-tmu",
461 .data = (void *)EXYNOS5440_TMU_DRV_DATA,
462 },
459 {}, 463 {},
460}; 464};
461MODULE_DEVICE_TABLE(of, exynos_tmu_match); 465MODULE_DEVICE_TABLE(of, exynos_tmu_match);
diff --git a/drivers/thermal/samsung/exynos_tmu_data.c b/drivers/thermal/samsung/exynos_tmu_data.c
index 2612b452dafd..5952915d249c 100644
--- a/drivers/thermal/samsung/exynos_tmu_data.c
+++ b/drivers/thermal/samsung/exynos_tmu_data.c
@@ -175,3 +175,74 @@ struct exynos_tmu_init_data const exynos5250_default_tmu_data = {
175 .tmu_count = 1, 175 .tmu_count = 1,
176}; 176};
177#endif 177#endif
178
179#if defined(CONFIG_SOC_EXYNOS5440)
180static const struct exynos_tmu_registers exynos5440_tmu_registers = {
181 .triminfo_data = EXYNOS5440_TMU_S0_7_TRIM,
182 .triminfo_25_shift = EXYNOS_TRIMINFO_25_SHIFT,
183 .triminfo_85_shift = EXYNOS_TRIMINFO_85_SHIFT,
184 .tmu_ctrl = EXYNOS5440_TMU_S0_7_CTRL,
185 .buf_vref_sel_shift = EXYNOS_TMU_REF_VOLTAGE_SHIFT,
186 .buf_vref_sel_mask = EXYNOS_TMU_REF_VOLTAGE_MASK,
187 .therm_trip_mode_shift = EXYNOS_TMU_TRIP_MODE_SHIFT,
188 .therm_trip_mode_mask = EXYNOS_TMU_TRIP_MODE_MASK,
189 .therm_trip_en_shift = EXYNOS_TMU_THERM_TRIP_EN_SHIFT,
190 .buf_slope_sel_shift = EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT,
191 .buf_slope_sel_mask = EXYNOS_TMU_BUF_SLOPE_SEL_MASK,
192 .core_en_shift = EXYNOS_TMU_CORE_EN_SHIFT,
193 .tmu_status = EXYNOS5440_TMU_S0_7_STATUS,
194 .tmu_cur_temp = EXYNOS5440_TMU_S0_7_TEMP,
195 .threshold_th0 = EXYNOS5440_TMU_S0_7_TH0,
196 .threshold_th1 = EXYNOS5440_TMU_S0_7_TH1,
197 .threshold_th2 = EXYNOS5440_TMU_S0_7_TH2,
198 .threshold_th3_l0_shift = EXYNOS5440_TMU_TH_RISE4_SHIFT,
199 .tmu_inten = EXYNOS5440_TMU_S0_7_IRQEN,
200 .inten_rise_mask = EXYNOS5440_TMU_RISE_INT_MASK,
201 .inten_rise_shift = EXYNOS5440_TMU_RISE_INT_SHIFT,
202 .inten_fall_mask = EXYNOS5440_TMU_FALL_INT_MASK,
203 .inten_fall_shift = EXYNOS5440_TMU_FALL_INT_SHIFT,
204 .inten_rise0_shift = EXYNOS5440_TMU_INTEN_RISE0_SHIFT,
205 .inten_rise1_shift = EXYNOS5440_TMU_INTEN_RISE1_SHIFT,
206 .inten_rise2_shift = EXYNOS5440_TMU_INTEN_RISE2_SHIFT,
207 .inten_rise3_shift = EXYNOS5440_TMU_INTEN_RISE3_SHIFT,
208 .inten_fall0_shift = EXYNOS5440_TMU_INTEN_FALL0_SHIFT,
209 .tmu_intstat = EXYNOS5440_TMU_S0_7_IRQ,
210 .tmu_intclear = EXYNOS5440_TMU_S0_7_IRQ,
211 .tmu_irqstatus = EXYNOS5440_TMU_IRQ_STATUS,
212 .emul_con = EXYNOS5440_TMU_S0_7_DEBUG,
213 .emul_temp_shift = EXYNOS_EMUL_DATA_SHIFT,
214 .tmu_pmin = EXYNOS5440_TMU_PMIN,
215};
216
217#define EXYNOS5440_TMU_DATA \
218 .trigger_levels[0] = 100, \
219 .trigger_levels[4] = 105, \
220 .trigger_enable[0] = 1, \
221 .trigger_type[0] = SW_TRIP, \
222 .trigger_type[4] = HW_TRIP, \
223 .max_trigger_level = 5, \
224 .gain = 5, \
225 .reference_voltage = 16, \
226 .noise_cancel_mode = 4, \
227 .cal_type = TYPE_ONE_POINT_TRIMMING, \
228 .cal_mode = 0, \
229 .efuse_value = 0x5b2d, \
230 .min_efuse_value = 16, \
231 .max_efuse_value = 76, \
232 .first_point_trim = 25, \
233 .second_point_trim = 70, \
234 .default_temp_offset = 25, \
235 .type = SOC_ARCH_EXYNOS5440, \
236 .registers = &exynos5440_tmu_registers, \
237 .features = (TMU_SUPPORT_EMULATION | TMU_SUPPORT_FALLING_TRIP | \
238 TMU_SUPPORT_MULTI_INST | TMU_SUPPORT_SHARED_MEMORY),
239
240struct exynos_tmu_init_data const exynos5440_default_tmu_data = {
241 .tmu_data = {
242 { EXYNOS5440_TMU_DATA } ,
243 { EXYNOS5440_TMU_DATA } ,
244 { EXYNOS5440_TMU_DATA } ,
245 },
246 .tmu_count = 3,
247};
248#endif
diff --git a/drivers/thermal/samsung/exynos_tmu_data.h b/drivers/thermal/samsung/exynos_tmu_data.h
index ad263e9bb58f..43ce5fb428a8 100644
--- a/drivers/thermal/samsung/exynos_tmu_data.h
+++ b/drivers/thermal/samsung/exynos_tmu_data.h
@@ -143,4 +143,11 @@ extern struct exynos_tmu_init_data const exynos5250_default_tmu_data;
143#define EXYNOS5250_TMU_DRV_DATA (NULL) 143#define EXYNOS5250_TMU_DRV_DATA (NULL)
144#endif 144#endif
145 145
146#if defined(CONFIG_SOC_EXYNOS5440)
147extern struct exynos_tmu_init_data const exynos5440_default_tmu_data;
148#define EXYNOS5440_TMU_DRV_DATA (&exynos5440_default_tmu_data)
149#else
150#define EXYNOS5440_TMU_DRV_DATA (NULL)
151#endif
152
146#endif /*_EXYNOS_TMU_DATA_H*/ 153#endif /*_EXYNOS_TMU_DATA_H*/