HID: wacom: check for wacom->shared before following the pointer
[firefly-linux-kernel-4.4.55.git] / drivers / thermal / samsung / exynos_thermal_common.h
1 /*
2  * exynos_thermal_common.h - Samsung EXYNOS common header file
3  *
4  *  Copyright (C) 2013 Samsung Electronics
5  *  Amit Daniel Kachhap <amit.daniel@samsung.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22
23 #ifndef _EXYNOS_THERMAL_COMMON_H
24 #define _EXYNOS_THERMAL_COMMON_H
25
26 /* In-kernel thermal framework related macros & definations */
27 #define SENSOR_NAME_LEN 16
28 #define MAX_TRIP_COUNT  8
29 #define MAX_COOLING_DEVICE 4
30
31 #define ACTIVE_INTERVAL 500
32 #define IDLE_INTERVAL 10000
33 #define MCELSIUS        1000
34
35 /* CPU Zone information */
36 #define PANIC_ZONE      4
37 #define WARN_ZONE       3
38 #define MONITOR_ZONE    2
39 #define SAFE_ZONE       1
40
41 #define GET_ZONE(trip) (trip + 2)
42 #define GET_TRIP(zone) (zone - 2)
43
44 enum trigger_type {
45         THROTTLE_ACTIVE = 1,
46         THROTTLE_PASSIVE,
47         SW_TRIP,
48         HW_TRIP,
49 };
50
51 /**
52  * struct freq_clip_table
53  * @freq_clip_max: maximum frequency allowed for this cooling state.
54  * @temp_level: Temperature level at which the temperature clipping will
55  *      happen.
56  * @mask_val: cpumask of the allowed cpu's where the clipping will take place.
57  *
58  * This structure is required to be filled and passed to the
59  * cpufreq_cooling_unregister function.
60  */
61 struct freq_clip_table {
62         unsigned int freq_clip_max;
63         unsigned int temp_level;
64         const struct cpumask *mask_val;
65 };
66
67 struct  thermal_trip_point_conf {
68         int trip_val[MAX_TRIP_COUNT];
69         int trip_type[MAX_TRIP_COUNT];
70         int trip_count;
71         unsigned char trigger_falling;
72 };
73
74 struct  thermal_cooling_conf {
75         struct freq_clip_table freq_data[MAX_TRIP_COUNT];
76         int freq_clip_count;
77 };
78
79 struct thermal_sensor_conf {
80         char name[SENSOR_NAME_LEN];
81         int (*read_temperature)(void *data);
82         int (*write_emul_temp)(void *drv_data, unsigned long temp);
83         struct thermal_trip_point_conf trip_data;
84         struct thermal_cooling_conf cooling_data;
85         void *driver_data;
86         void *pzone_data;
87         struct device *dev;
88 };
89
90 /*Functions used exynos based thermal sensor driver*/
91 #ifdef CONFIG_EXYNOS_THERMAL_CORE
92 void exynos_unregister_thermal(struct thermal_sensor_conf *sensor_conf);
93 int exynos_register_thermal(struct thermal_sensor_conf *sensor_conf);
94 void exynos_report_trigger(struct thermal_sensor_conf *sensor_conf);
95 #else
96 static inline void
97 exynos_unregister_thermal(struct thermal_sensor_conf *sensor_conf) { return; }
98
99 static inline int
100 exynos_register_thermal(struct thermal_sensor_conf *sensor_conf) { return 0; }
101
102 static inline void
103 exynos_report_trigger(struct thermal_sensor_conf *sensor_conf) { return; }
104
105 #endif /* CONFIG_EXYNOS_THERMAL_CORE */
106 #endif /* _EXYNOS_THERMAL_COMMON_H */