097abee346337f9eb50688987ee6c73d3614b113
[linux-2.6-microblaze.git] / drivers / thermal / thermal_core.h
1 /*
2  *  thermal_core.h
3  *
4  *  Copyright (C) 2012  Intel Corp
5  *  Author: Durgadoss R <durgadoss.r@intel.com>
6  *
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; version 2 of the License.
11  *
12  *  This program is distributed in the hope that it will be useful, but
13  *  WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *  General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License along
18  *  with this program; if not, write to the Free Software Foundation, Inc.,
19  *  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20  *
21  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22  */
23
24 #ifndef __THERMAL_CORE_H__
25 #define __THERMAL_CORE_H__
26
27 #include <linux/device.h>
28 #include <linux/thermal.h>
29
30 /* Initial state of a cooling device during binding */
31 #define THERMAL_NO_TARGET -1UL
32
33 /*
34  * This structure is used to describe the behavior of
35  * a certain cooling device on a certain trip point
36  * in a certain thermal zone
37  */
38 struct thermal_instance {
39         int id;
40         char name[THERMAL_NAME_LENGTH];
41         struct thermal_zone_device *tz;
42         struct thermal_cooling_device *cdev;
43         int trip;
44         bool initialized;
45         unsigned long upper;    /* Highest cooling state for this trip point */
46         unsigned long lower;    /* Lowest cooling state for this trip point */
47         unsigned long target;   /* expected cooling state */
48         char attr_name[THERMAL_NAME_LENGTH];
49         struct device_attribute attr;
50         char weight_attr_name[THERMAL_NAME_LENGTH];
51         struct device_attribute weight_attr;
52         struct list_head tz_node; /* node in tz->thermal_instances */
53         struct list_head cdev_node; /* node in cdev->thermal_instances */
54         unsigned int weight; /* The weight of the cooling device */
55 };
56
57 #define to_thermal_zone(_dev) \
58         container_of(_dev, struct thermal_zone_device, device)
59
60 int thermal_register_governor(struct thermal_governor *);
61 void thermal_unregister_governor(struct thermal_governor *);
62 void thermal_zone_device_rebind_exception(struct thermal_zone_device *,
63                                           const char *, size_t);
64 void thermal_zone_device_unbind_exception(struct thermal_zone_device *,
65                                           const char *, size_t);
66 int thermal_zone_device_set_policy(struct thermal_zone_device *, char *);
67 int thermal_build_list_of_policies(char *buf);
68
69 #ifdef CONFIG_THERMAL_GOV_STEP_WISE
70 int thermal_gov_step_wise_register(void);
71 void thermal_gov_step_wise_unregister(void);
72 #else
73 static inline int thermal_gov_step_wise_register(void) { return 0; }
74 static inline void thermal_gov_step_wise_unregister(void) {}
75 #endif /* CONFIG_THERMAL_GOV_STEP_WISE */
76
77 #ifdef CONFIG_THERMAL_GOV_FAIR_SHARE
78 int thermal_gov_fair_share_register(void);
79 void thermal_gov_fair_share_unregister(void);
80 #else
81 static inline int thermal_gov_fair_share_register(void) { return 0; }
82 static inline void thermal_gov_fair_share_unregister(void) {}
83 #endif /* CONFIG_THERMAL_GOV_FAIR_SHARE */
84
85 #ifdef CONFIG_THERMAL_GOV_BANG_BANG
86 int thermal_gov_bang_bang_register(void);
87 void thermal_gov_bang_bang_unregister(void);
88 #else
89 static inline int thermal_gov_bang_bang_register(void) { return 0; }
90 static inline void thermal_gov_bang_bang_unregister(void) {}
91 #endif /* CONFIG_THERMAL_GOV_BANG_BANG */
92
93 #ifdef CONFIG_THERMAL_GOV_USER_SPACE
94 int thermal_gov_user_space_register(void);
95 void thermal_gov_user_space_unregister(void);
96 #else
97 static inline int thermal_gov_user_space_register(void) { return 0; }
98 static inline void thermal_gov_user_space_unregister(void) {}
99 #endif /* CONFIG_THERMAL_GOV_USER_SPACE */
100
101 #ifdef CONFIG_THERMAL_GOV_POWER_ALLOCATOR
102 int thermal_gov_power_allocator_register(void);
103 void thermal_gov_power_allocator_unregister(void);
104 #else
105 static inline int thermal_gov_power_allocator_register(void) { return 0; }
106 static inline void thermal_gov_power_allocator_unregister(void) {}
107 #endif /* CONFIG_THERMAL_GOV_POWER_ALLOCATOR */
108
109 /* device tree support */
110 #ifdef CONFIG_THERMAL_OF
111 int of_parse_thermal_zones(void);
112 void of_thermal_destroy_zones(void);
113 int of_thermal_get_ntrips(struct thermal_zone_device *);
114 bool of_thermal_is_trip_valid(struct thermal_zone_device *, int);
115 const struct thermal_trip *
116 of_thermal_get_trip_points(struct thermal_zone_device *);
117 #else
118 static inline int of_parse_thermal_zones(void) { return 0; }
119 static inline void of_thermal_destroy_zones(void) { }
120 static inline int of_thermal_get_ntrips(struct thermal_zone_device *tz)
121 {
122         return 0;
123 }
124 static inline bool of_thermal_is_trip_valid(struct thermal_zone_device *tz,
125                                             int trip)
126 {
127         return false;
128 }
129 static inline const struct thermal_trip *
130 of_thermal_get_trip_points(struct thermal_zone_device *tz)
131 {
132         return NULL;
133 }
134 #endif
135
136 #endif /* __THERMAL_CORE_H__ */