2011-09-07 18:49:08 +09:00
|
|
|
/*
|
2013-06-24 16:20:27 +05:30
|
|
|
* exynos_tmu.h - Samsung EXYNOS TMU (Thermal Management Unit)
|
2011-09-07 18:49:08 +09:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Samsung Electronics
|
|
|
|
* Donggeun Kim <dg77.kim@samsung.com>
|
2013-06-24 16:20:27 +05:30
|
|
|
* Amit Daniel Kachhap <amit.daniel@samsung.com>
|
2011-09-07 18:49:08 +09:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2013-06-24 16:20:27 +05:30
|
|
|
#ifndef _EXYNOS_TMU_H
|
|
|
|
#define _EXYNOS_TMU_H
|
2012-08-16 17:11:43 +05:30
|
|
|
#include <linux/cpu_cooling.h>
|
2015-01-23 13:10:08 +01:00
|
|
|
#include <dt-bindings/thermal/thermal_exynos.h>
|
2013-06-24 16:20:27 +05:30
|
|
|
|
2012-08-16 17:11:42 +05:30
|
|
|
enum soc_type {
|
2014-07-01 09:33:19 +09:00
|
|
|
SOC_ARCH_EXYNOS3250 = 1,
|
|
|
|
SOC_ARCH_EXYNOS4210,
|
2013-10-09 08:29:51 +02:00
|
|
|
SOC_ARCH_EXYNOS4412,
|
|
|
|
SOC_ARCH_EXYNOS5250,
|
2013-12-20 17:49:10 +05:30
|
|
|
SOC_ARCH_EXYNOS5260,
|
2014-11-13 16:01:10 +01:00
|
|
|
SOC_ARCH_EXYNOS5420,
|
2013-12-19 11:36:31 +05:30
|
|
|
SOC_ARCH_EXYNOS5420_TRIMINFO,
|
2015-03-10 11:23:44 +09:00
|
|
|
SOC_ARCH_EXYNOS5433,
|
2013-06-24 16:20:43 +05:30
|
|
|
SOC_ARCH_EXYNOS5440,
|
2015-01-27 11:18:22 +05:30
|
|
|
SOC_ARCH_EXYNOS7,
|
2012-08-16 17:11:42 +05:30
|
|
|
};
|
2012-08-16 17:11:43 +05:30
|
|
|
|
2011-09-07 18:49:08 +09:00
|
|
|
/**
|
2012-08-16 17:11:42 +05:30
|
|
|
* struct exynos_tmu_platform_data
|
2011-09-07 18:49:08 +09:00
|
|
|
* @gain: gain of amplifier in the positive-TC generator block
|
2014-07-31 19:11:05 +02:00
|
|
|
* 0 < gain <= 15
|
2011-09-07 18:49:08 +09:00
|
|
|
* @reference_voltage: reference voltage of amplifier
|
|
|
|
* in the positive-TC generator block
|
2014-07-31 19:11:05 +02:00
|
|
|
* 0 < reference_voltage <= 31
|
2012-08-16 17:11:42 +05:30
|
|
|
* @noise_cancel_mode: noise cancellation mode
|
|
|
|
* 000, 100, 101, 110 and 111 can be different modes
|
|
|
|
* @type: determines the type of SOC
|
|
|
|
* @efuse_value: platform defined fuse value
|
2013-06-24 16:20:30 +05:30
|
|
|
* @min_efuse_value: minimum valid trimming data
|
|
|
|
* @max_efuse_value: maximum valid trimming data
|
|
|
|
* @default_temp_offset: default temperature offset in case of no trimming
|
2011-09-07 18:49:08 +09:00
|
|
|
* @cal_type: calibration type for temperature
|
|
|
|
*
|
2012-08-16 17:11:42 +05:30
|
|
|
* This structure is required for configuration of exynos_tmu driver.
|
2011-09-07 18:49:08 +09:00
|
|
|
*/
|
2012-08-16 17:11:42 +05:30
|
|
|
struct exynos_tmu_platform_data {
|
2011-09-07 18:49:08 +09:00
|
|
|
u8 gain;
|
|
|
|
u8 reference_voltage;
|
2012-08-16 17:11:42 +05:30
|
|
|
u8 noise_cancel_mode;
|
2013-06-24 16:20:30 +05:30
|
|
|
|
2012-08-16 17:11:42 +05:30
|
|
|
u32 efuse_value;
|
2013-06-24 16:20:30 +05:30
|
|
|
u32 min_efuse_value;
|
|
|
|
u32 max_efuse_value;
|
|
|
|
u8 first_point_trim;
|
|
|
|
u8 second_point_trim;
|
|
|
|
u8 default_temp_offset;
|
2011-09-07 18:49:08 +09:00
|
|
|
|
2012-08-16 17:11:42 +05:30
|
|
|
enum soc_type type;
|
2015-01-23 13:09:55 +01:00
|
|
|
u32 cal_type;
|
|
|
|
u32 cal_mode;
|
2011-09-07 18:49:08 +09:00
|
|
|
};
|
2013-06-24 16:20:39 +05:30
|
|
|
|
2013-06-24 16:20:27 +05:30
|
|
|
#endif /* _EXYNOS_TMU_H */
|